commit c5f25901e1381c0d2a8465a0b59eee3709c64492 Author: Rasmus Rosendahl-Kaa Date: Wed Nov 26 13:56:55 2025 +0100 first commit diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/.gitignore b/Hjemmeopgaver/Hjemmeopgave nr 3/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.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/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/.gitignore b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/intellij-javadocs-4.0.1.xml b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/intellij-javadocs-4.0.1.xml new file mode 100644 index 0000000..673e4c5 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/intellij-javadocs-4.0.1.xml @@ -0,0 +1,204 @@ + + + + + UPDATE + false + true + + TYPE + FIELD + METHOD + + + PROTECTED + PUBLIC + DEFAULT + + + + + + ^.*(public|protected|private)*.+interface\s+\w+.* + /**\n + * The interface ${name}.\n +<#if element.typeParameters?has_content> * \n +</#if> +<#list element.typeParameters as typeParameter> + * @param <${typeParameter.name}> the type parameter\n +</#list> + */ + + + ^.*(public|protected|private)*.+enum\s+\w+.* + /**\n + * The enum ${name}.\n + */ + + + ^.*(public|protected|private)*.+class\s+\w+.* + /**\n + * The type ${name}.\n +<#if element.typeParameters?has_content> * \n +</#if> +<#list element.typeParameters as typeParameter> + * @param <${typeParameter.name}> the type parameter\n +</#list> + */ + + + .+ + /**\n + * The type ${name}.\n + */ + + + + + .+ + /**\n + * Instantiates a new ${name}.\n +<#if element.parameterList.parameters?has_content> + *\n +</#if> +<#list element.parameterList.parameters as parameter> + * @param ${parameter.name} the ${paramNames[parameter.name]}\n +</#list> +<#if element.throwsList.referenceElements?has_content> + *\n +</#if> +<#list element.throwsList.referenceElements as exception> + * @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n +</#list> + */ + + + + + ^.*(public|protected|private)*\s*.*(\w(\s*<.+>)*)+\s+get\w+\s*\(.*\).+ + /**\n + * Gets ${partName}.\n +<#if element.typeParameters?has_content> * \n +</#if> +<#list element.typeParameters as typeParameter> + * @param <${typeParameter.name}> the type parameter\n +</#list> +<#if element.parameterList.parameters?has_content> + *\n +</#if> +<#list element.parameterList.parameters as parameter> + * @param ${parameter.name} the ${paramNames[parameter.name]}\n +</#list> +<#if isNotVoid> + *\n + * @return the ${partName}\n +</#if> +<#if element.throwsList.referenceElements?has_content> + *\n +</#if> +<#list element.throwsList.referenceElements as exception> + * @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n +</#list> + */ + + + ^.*(public|protected|private)*\s*.*(void|\w(\s*<.+>)*)+\s+set\w+\s*\(.*\).+ + /**\n + * Sets ${partName}.\n +<#if element.typeParameters?has_content> * \n +</#if> +<#list element.typeParameters as typeParameter> + * @param <${typeParameter.name}> the type parameter\n +</#list> +<#if element.parameterList.parameters?has_content> + *\n +</#if> +<#list element.parameterList.parameters as parameter> + * @param ${parameter.name} the ${paramNames[parameter.name]}\n +</#list> +<#if isNotVoid> + *\n + * @return the ${partName}\n +</#if> +<#if element.throwsList.referenceElements?has_content> + *\n +</#if> +<#list element.throwsList.referenceElements as exception> + * @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n +</#list> + */ + + + ^.*((public\s+static)|(static\s+public))\s+void\s+main\s*\(\s*String\s*(\[\s*\]|\.\.\.)\s+\w+\s*\).+ + /**\n + * The entry point of application.\n + + <#if element.parameterList.parameters?has_content> + *\n +</#if> + * @param ${element.parameterList.parameters[0].name} the input arguments\n +<#if element.throwsList.referenceElements?has_content> + *\n +</#if> +<#list element.throwsList.referenceElements as exception> + * @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n +</#list> + */ + + + .+ + /**\n + * ${name}<#if isNotVoid> ${return}</#if>.\n +<#if element.typeParameters?has_content> * \n +</#if> +<#list element.typeParameters as typeParameter> + * @param <${typeParameter.name}> the type parameter\n +</#list> +<#if element.parameterList.parameters?has_content> + *\n +</#if> +<#list element.parameterList.parameters as parameter> + * @param ${parameter.name} the ${paramNames[parameter.name]}\n +</#list> +<#if isNotVoid> + *\n + * @return the ${return}\n +</#if> +<#if element.throwsList.referenceElements?has_content> + *\n +</#if> +<#list element.throwsList.referenceElements as exception> + * @throws ${exception.referenceName} the ${exceptionNames[exception.referenceName]}\n +</#list> + */ + + + + + ^.*(public|protected|private)*.+static.*(\w\s\w)+.+ + /**\n + * The constant ${element.getName()}.\n + */ + + + ^.*(public|protected|private)*.*(\w\s\w)+.+ + /**\n + <#if element.parent.isInterface()> + * The constant ${element.getName()}.\n +<#else> + * The ${name}.\n +</#if> */ + + + .+ + /**\n + <#if element.parent.isEnum()> + *${name} ${typeName}.\n +<#else> + * The ${name}.\n +</#if>*/ + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/misc.xml b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/misc.xml new file mode 100644 index 0000000..2eca8b2 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/misc.xml @@ -0,0 +1,7 @@ + + + {} + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/modules.xml b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/modules.xml new file mode 100644 index 0000000..4f60034 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/GameOfLifeMain.html b/Hjemmeopgaver/Hjemmeopgave nr 3/GameOfLifeMain.html new file mode 100644 index 0000000..4a335ed --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/GameOfLifeMain.html @@ -0,0 +1,218 @@ + + + + +GameOfLifeMain + + + + + + + + + + + + + + +
+ +
+
+ +
+

Class GameOfLifeMain

+
+
java.lang.Object +
GameOfLifeMain
+
+
+
+
public class GameOfLifeMain +extends Object
+
Game of life class.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      GameOfLifeMain

      +
      public GameOfLifeMain()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      public static void main(String[] args) + throws IOException
      +
      The entry point of application.
      +
      +
      Parameters:
      +
      args - the input arguments
      +
      Throws:
      +
      IOException - the io exception
      +
      +
      +
    • +
    • +
      +

      runIteration

      +
      public static void runIteration(GameOfLife gameOfLife)
      +
      Run iteration.
      +
      +
      Parameters:
      +
      gameOfLife - the game of life
      +
      +
      +
    • +
    • +
      +

      importFromFile

      +
      public static GameOfLife importFromFile(File file) + throws FileNotFoundException
      +
      Import from file game of life.
      +
      +
      Parameters:
      +
      file - the file
      +
      Returns:
      +
      the game of life
      +
      Throws:
      +
      FileNotFoundException - the file not found exception
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/Gruppeaflevering 3.pdf b/Hjemmeopgaver/Hjemmeopgave nr 3/Gruppeaflevering 3.pdf new file mode 100644 index 0000000..1585be9 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr 3/Gruppeaflevering 3.pdf differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/Hjemmeopgave nr 3.iml b/Hjemmeopgaver/Hjemmeopgave nr 3/Hjemmeopgave nr 3.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/Hjemmeopgave nr 3.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/allclasses-index.html b/Hjemmeopgaver/Hjemmeopgave nr 3/allclasses-index.html new file mode 100644 index 0000000..191fef0 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/allclasses-index.html @@ -0,0 +1,67 @@ + + + + +All Classes and Interfaces + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
Classes
+
+
Class
+
Description
+ +
+
Game of life class.
+
+
+
+
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/allpackages-index.html b/Hjemmeopgaver/Hjemmeopgave nr 3/allpackages-index.html new file mode 100644 index 0000000..6bee066 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/allpackages-index.html @@ -0,0 +1,63 @@ + + + + +All Packages + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+
+
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/copy.svg b/Hjemmeopgaver/Hjemmeopgave nr 3/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/element-list b/Hjemmeopgaver/Hjemmeopgave nr 3/element-list new file mode 100644 index 0000000..147af06 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/element-list @@ -0,0 +1 @@ +unnamed package diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/help-doc.html b/Hjemmeopgaver/Hjemmeopgave nr 3/help-doc.html new file mode 100644 index 0000000..80e1a98 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/help-doc.html @@ -0,0 +1,177 @@ + + + + +API Help + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enum Classes
  • +
  • Exception Classes
  • +
  • Annotation Interfaces
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/index-all.html b/Hjemmeopgaver/Hjemmeopgave nr 3/index-all.html new file mode 100644 index 0000000..22a35cd --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/index-all.html @@ -0,0 +1,87 @@ + + + + +Index + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+G I M R 
All Classes and Interfaces|All Packages +

G

+
+
GameOfLifeMain - Class in Unnamed Package
+
+
Game of life class.
+
+
GameOfLifeMain() - Constructor for class GameOfLifeMain
+
 
+
+

I

+
+
importFromFile(File) - Static method in class GameOfLifeMain
+
+
Import from file game of life.
+
+
+

M

+
+
main(String[]) - Static method in class GameOfLifeMain
+
+
The entry point of application.
+
+
+

R

+
+
runIteration(GameOfLife) - Static method in class GameOfLifeMain
+
+
Run iteration.
+
+
+G I M R 
All Classes and Interfaces|All Packages
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/index.html b/Hjemmeopgaver/Hjemmeopgave nr 3/index.html new file mode 100644 index 0000000..9db0931 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/index.html @@ -0,0 +1,26 @@ + + + + +Generated Documentation (Untitled) + + + + + + + + + + + +
+ +

package-summary.html

+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ADDITIONAL_LICENSE_INFO b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ASSEMBLY_EXCEPTION b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/legal/LICENSE b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jquery.md b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jqueryUI.md b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/link.svg b/Hjemmeopgaver/Hjemmeopgave nr 3/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/member-search-index.js b/Hjemmeopgaver/Hjemmeopgave nr 3/member-search-index.js new file mode 100644 index 0000000..e490731 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"","c":"GameOfLifeMain","l":"GameOfLifeMain()","u":"%3Cinit%3E()"},{"p":"","c":"GameOfLifeMain","l":"importFromFile(File)","u":"importFromFile(java.io.File)"},{"p":"","c":"GameOfLifeMain","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"","c":"GameOfLifeMain","l":"runIteration(GameOfLife)"}];updateSearchResults(); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/module-search-index.js b/Hjemmeopgaver/Hjemmeopgave nr 3/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/overview-tree.html b/Hjemmeopgaver/Hjemmeopgave nr 3/overview-tree.html new file mode 100644 index 0000000..e849959 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/overview-tree.html @@ -0,0 +1,66 @@ + + + + +Class Hierarchy + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/package-search-index.js b/Hjemmeopgaver/Hjemmeopgave nr 3/package-search-index.js new file mode 100644 index 0000000..747229e --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"}];updateSearchResults(); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/package-summary.html b/Hjemmeopgaver/Hjemmeopgave nr 3/package-summary.html new file mode 100644 index 0000000..8a07b12 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/package-summary.html @@ -0,0 +1,91 @@ + + + + +Unnamed Package + + + + + + + + + + + + + + +
+ +
+
+
+

Unnamed Package

+
+
+
+
    +
  • +
    +
    Classes
    +
    +
    Class
    +
    Description
    + +
    +
    Game of life class.
    +
    +
    +
    +
  • +
+
+
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/package-tree.html b/Hjemmeopgaver/Hjemmeopgave nr 3/package-tree.html new file mode 100644 index 0000000..f9aabce --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/package-tree.html @@ -0,0 +1,66 @@ + + + + + Class Hierarchy + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Unnamed Package

+
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/resources/glass.png b/Hjemmeopgaver/Hjemmeopgave nr 3/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr 3/resources/glass.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/resources/x.png b/Hjemmeopgaver/Hjemmeopgave nr 3/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr 3/resources/x.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/script-dir/jquery-3.6.1.min.js b/Hjemmeopgaver/Hjemmeopgave nr 3/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/script.js b/Hjemmeopgaver/Hjemmeopgave nr 3/script.js new file mode 100644 index 0000000..bb9c8a2 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/script.js @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; + +var oddRowColor = "odd-row-color"; +var evenRowColor = "even-row-color"; +var sortAsc = "sort-asc"; +var sortDesc = "sort-desc"; +var tableTab = "table-tab"; +var activeTableTab = "active-table-tab"; + +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +// Helper for making content containing release names comparable lexicographically +function makeComparable(s) { + return s.toLowerCase().replace(/(\d+)/g, + function(n, m) { + return ("000" + m).slice(-4); + }); +} + +// Switches between two styles depending on a condition +function toggleStyle(classList, condition, trueStyle, falseStyle) { + if (condition) { + classList.remove(falseStyle); + classList.add(trueStyle); + } else { + classList.remove(trueStyle); + classList.add(falseStyle); + } +} + +// Sorts the rows in a table lexicographically by the content of a specific column +function sortTable(header, columnIndex, columns) { + var container = header.parentElement; + var descending = header.classList.contains(sortAsc); + container.querySelectorAll("div.table-header").forEach( + function(header) { + header.classList.remove(sortAsc); + header.classList.remove(sortDesc); + } + ) + var cells = container.children; + var rows = []; + for (var i = columns; i < cells.length; i += columns) { + rows.push(Array.prototype.slice.call(cells, i, i + columns)); + } + var comparator = function(a, b) { + var ka = makeComparable(a[columnIndex].textContent); + var kb = makeComparable(b[columnIndex].textContent); + if (ka < kb) + return descending ? 1 : -1; + if (ka > kb) + return descending ? -1 : 1; + return 0; + }; + var sorted = rows.sort(comparator); + var visible = 0; + sorted.forEach(function(row) { + if (row[0].style.display !== 'none') { + var isEvenRow = visible++ % 2 === 0; + } + row.forEach(function(cell) { + toggleStyle(cell.classList, isEvenRow, evenRowColor, oddRowColor); + container.appendChild(cell); + }) + }); + toggleStyle(header.classList, descending, sortDesc, sortAsc); +} + +// Toggles the visibility of a table category in all tables in a page +function toggleGlobal(checkbox, selected, columns) { + var display = checkbox.checked ? '' : 'none'; + document.querySelectorAll("div.table-tabs").forEach(function(t) { + var id = t.parentElement.getAttribute("id"); + var selectedClass = id + "-tab" + selected; + // if selected is empty string it selects all uncategorized entries + var selectUncategorized = !Boolean(selected); + var visible = 0; + document.querySelectorAll('div.' + id) + .forEach(function(elem) { + if (selectUncategorized) { + if (elem.className.indexOf(selectedClass) === -1) { + elem.style.display = display; + } + } else if (elem.classList.contains(selectedClass)) { + elem.style.display = display; + } + if (elem.style.display === '') { + var isEvenRow = visible++ % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + } + }); + var displaySection = visible === 0 ? 'none' : ''; + t.parentElement.style.display = displaySection; + document.querySelector("li#contents-" + id).style.display = displaySection; + }) +} + +// Shows the elements of a table belonging to a specific category +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + toggleStyle(elem.classList, isEvenRow, evenRowColor, oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.getElementById(tableId + '.tabpanel') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} +// Copy the contents of the local snippet to the clipboard +function copySnippet(button) { + copyToClipboard(button.nextElementSibling.innerText); + switchCopyLabel(button, button.firstElementChild); +} +function copyToClipboard(content) { + var textarea = document.createElement("textarea"); + textarea.style.height = 0; + document.body.appendChild(textarea); + textarea.value = content; + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +} +function switchCopyLabel(button, span) { + var copied = span.getAttribute("data-copied"); + button.classList.add("visible"); + var initialLabel = span.innerHTML; + span.innerHTML = copied; + setTimeout(function() { + button.classList.remove("visible"); + setTimeout(function() { + if (initialLabel !== copied) { + span.innerHTML = initialLabel; + } + }, 100); + }, 1900); +} +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + var timeoutId; + contentDiv.addEventListener("scroll", function(e) { + if (timeoutId) { + clearTimeout(timeoutId); + } + timeoutId = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + }, 100); + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/search-page.js b/Hjemmeopgaver/Hjemmeopgave nr 3/search-page.js new file mode 100644 index 0000000..540c90f --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/search-page.js @@ -0,0 +1,284 @@ +/* + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +"use strict"; +$(function() { + var copy = $("#page-search-copy"); + var expand = $("#page-search-expand"); + var searchLink = $("span#page-search-link"); + var redirect = $("input#search-redirect"); + function setSearchUrlTemplate() { + var href = document.location.href.split(/[#?]/)[0]; + href += "?q=" + "%s"; + if (redirect.is(":checked")) { + href += "&r=1"; + } + searchLink.html(href); + copy[0].onmouseenter(); + } + function copyLink(e) { + copyToClipboard(this.previousSibling.innerText); + switchCopyLabel(this, this.lastElementChild); + } + copy.click(copyLink); + copy[0].onmouseenter = function() {}; + redirect.click(setSearchUrlTemplate); + setSearchUrlTemplate(); + copy.prop("disabled", false); + redirect.prop("disabled", false); + expand.click(function (e) { + var searchInfo = $("div.page-search-info"); + if(this.parentElement.hasAttribute("open")) { + searchInfo.attr("style", "border-width: 0;"); + } else { + searchInfo.attr("style", "border-width: 1px;").height(searchInfo.prop("scrollHeight")); + } + }); +}); +$(window).on("load", function() { + var input = $("#page-search-input"); + var reset = $("#page-search-reset"); + var notify = $("#page-search-notify"); + var resultSection = $("div#result-section"); + var resultContainer = $("div#result-container"); + var searchTerm = ""; + var activeTab = ""; + var fixedTab = false; + var visibleTabs = []; + var feelingLucky = false; + function renderResults(result) { + if (!result.length) { + notify.html(messages.noResult); + } else if (result.length === 1) { + notify.html(messages.oneResult); + } else { + notify.html(messages.manyResults.replace("{0}", result.length)); + } + resultContainer.empty(); + var r = { + "types": [], + "members": [], + "packages": [], + "modules": [], + "searchTags": [] + }; + for (var i in result) { + var item = result[i]; + var arr = r[item.category]; + arr.push(item); + } + if (!activeTab || r[activeTab].length === 0 || !fixedTab) { + Object.keys(r).reduce(function(prev, curr) { + if (r[curr].length > 0 && r[curr][0].score > prev) { + activeTab = curr; + return r[curr][0].score; + } + return prev; + }, 0); + } + if (feelingLucky && activeTab) { + notify.html(messages.redirecting) + var firstItem = r[activeTab][0]; + window.location = getURL(firstItem.indexItem, firstItem.category); + return; + } + if (result.length > 20) { + if (searchTerm[searchTerm.length - 1] === ".") { + if (activeTab === "types" && r["members"].length > r["types"].length) { + activeTab = "members"; + } else if (activeTab === "packages" && r["types"].length > r["packages"].length) { + activeTab = "types"; + } + } + } + var categoryCount = Object.keys(r).reduce(function(prev, curr) { + return prev + (r[curr].length > 0 ? 1 : 0); + }, 0); + visibleTabs = []; + var tabContainer = $("
    ").appendTo(resultContainer); + for (var key in r) { + var id = "#result-tab-" + key.replace("searchTags", "search_tags"); + if (r[key].length) { + var count = r[key].length >= 1000 ? "999+" : r[key].length; + if (result.length > 20 && categoryCount > 1) { + var button = $("").appendTo(tabContainer); + button.click(key, function(e) { + fixedTab = true; + renderResult(e.data, $(this)); + }); + visibleTabs.push(key); + } else { + $("" + categories[key] + + " (" + count + ")").appendTo(tabContainer); + renderTable(key, r[key]).appendTo(resultContainer); + tabContainer = $("
    ").appendTo(resultContainer); + + } + } + } + if (activeTab && result.length > 20 && categoryCount > 1) { + $("button#result-tab-" + activeTab).addClass("active-table-tab"); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + } + resultSection.show(); + function renderResult(category, button) { + activeTab = category; + setSearchUrl(); + resultContainer.find("div.summary-table").remove(); + renderTable(activeTab, r[activeTab]).appendTo(resultContainer); + button.siblings().removeClass("active-table-tab"); + button.addClass("active-table-tab"); + } + } + function selectTab(category) { + $("button#result-tab-" + category).click(); + } + function renderTable(category, items) { + var table = $("
    ") + .addClass(category === "modules" + ? "one-column-search-results" + : "two-column-search-results"); + var col1, col2; + if (category === "modules") { + col1 = "Module"; + } else if (category === "packages") { + col1 = "Module"; + col2 = "Package"; + } else if (category === "types") { + col1 = "Package"; + col2 = "Class" + } else if (category === "members") { + col1 = "Class"; + col2 = "Member"; + } else if (category === "searchTags") { + col1 = "Location"; + col2 = "Name"; + } + $("
    " + col1 + "
    ").appendTo(table); + if (category !== "modules") { + $("
    " + col2 + "
    ").appendTo(table); + } + $.each(items, function(index, item) { + var rowColor = index % 2 ? "odd-row-color" : "even-row-color"; + renderItem(item, table, rowColor); + }); + return table; + } + function renderItem(item, table, rowColor) { + var label = getHighlightedText(item.input, item.boundaries, item.prefix.length, item.input.length); + var link = $("") + .attr("href", getURL(item.indexItem, item.category)) + .attr("tabindex", "0") + .addClass("search-result-link") + .html(label); + var container = getHighlightedText(item.input, item.boundaries, 0, item.prefix.length - 1); + if (item.category === "searchTags") { + container = item.indexItem.h || ""; + } + if (item.category !== "modules") { + $("
    ").html(container).addClass("col-plain").addClass(rowColor).appendTo(table); + } + $("
    ").html(link).addClass("col-last").addClass(rowColor).appendTo(table); + } + var timeout; + function schedulePageSearch() { + if (timeout) { + clearTimeout(timeout); + } + timeout = setTimeout(function () { + doPageSearch() + }, 100); + } + function doPageSearch() { + setSearchUrl(); + var term = searchTerm = input.val().trim(); + if (term === "") { + notify.html(messages.enterTerm); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + resultSection.hide(); + } else { + notify.html(messages.searching); + doSearch({ term: term, maxResults: 1200 }, renderResults); + } + } + function setSearchUrl() { + var query = input.val().trim(); + var url = document.location.pathname; + if (query) { + url += "?q=" + encodeURI(query); + if (activeTab && fixedTab) { + url += "&c=" + activeTab; + } + } + history.replaceState({query: query}, "", url); + } + input.on("input", function(e) { + feelingLucky = false; + schedulePageSearch(); + }); + $(document).keydown(function(e) { + if ((e.ctrlKey || e.metaKey) && (e.key === "ArrowLeft" || e.key === "ArrowRight")) { + if (activeTab && visibleTabs.length > 1) { + var idx = visibleTabs.indexOf(activeTab); + idx += e.key === "ArrowLeft" ? visibleTabs.length - 1 : 1; + selectTab(visibleTabs[idx % visibleTabs.length]); + return false; + } + } + }); + reset.click(function() { + notify.html(messages.enterTerm); + resultSection.hide(); + activeTab = ""; + fixedTab = false; + resultContainer.empty(); + input.val('').focus(); + setSearchUrl(); + }); + input.prop("disabled", false); + reset.prop("disabled", false); + + var urlParams = new URLSearchParams(window.location.search); + if (urlParams.has("q")) { + input.val(urlParams.get("q")) + } + if (urlParams.has("c")) { + activeTab = urlParams.get("c"); + fixedTab = true; + } + if (urlParams.get("r")) { + feelingLucky = true; + } + if (input.val()) { + doPageSearch(); + } else { + notify.html(messages.enterTerm); + } + input.select().focus(); +}); diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/search.html b/Hjemmeopgaver/Hjemmeopgave nr 3/search.html new file mode 100644 index 0000000..b1bd39e --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/search.html @@ -0,0 +1,71 @@ + + + + +Search + + + + + + + + + + + + + + +
    + +
    +
    +

    Search

    +
    + + +
    +Additional resources +
    +
    +
    +

    The help page provides an introduction to the scope and syntax of JavaDoc search.

    +

    You can use the <ctrl> or <cmd> keys in combination with the left and right arrow keys to switch between result tabs in this page.

    +

    The URL template below may be used to configure this page as a search engine in browsers that support this feature. It has been tested to work in Google Chrome and Mozilla Firefox. Note that other browsers may not support this feature or require a different URL format.

    +link +

    + +

    +
    +

    Loading search index...

    + +
    +
    +
    + + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/search.js b/Hjemmeopgaver/Hjemmeopgave nr 3/search.js new file mode 100644 index 0000000..d398670 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/search.js @@ -0,0 +1,458 @@ +/* + * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +"use strict"; +const messages = { + enterTerm: "Enter a search term", + noResult: "No results found", + oneResult: "Found one result", + manyResults: "Found {0} results", + loading: "Loading search index...", + searching: "Searching...", + redirecting: "Redirecting to first result...", + linkIcon: "Link icon", + linkToSection: "Link to this section" +} +const categories = { + modules: "Modules", + packages: "Packages", + types: "Classes and Interfaces", + members: "Members", + searchTags: "Search Tags" +}; +const highlight = "$&"; +const NO_MATCH = {}; +const MAX_RESULTS = 300; +function checkUnnamed(name, separator) { + return name === "" || !name ? "" : name + separator; +} +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(str, boundaries, from, to) { + var start = from; + var text = ""; + for (var i = 0; i < boundaries.length; i += 2) { + var b0 = boundaries[i]; + var b1 = boundaries[i + 1]; + if (b0 >= to || b1 <= from) { + continue; + } + text += escapeHtml(str.slice(start, Math.max(start, b0))); + text += ""; + text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1))); + text += ""; + start = Math.min(to, b1); + } + text += escapeHtml(str.slice(start, to)); + return text; +} +function getURLPrefix(item, category) { + var urlPrefix = ""; + var slash = "/"; + if (category === "modules") { + return item.l + slash; + } else if (category === "packages" && item.m) { + return item.m + slash; + } else if (category === "types" || category === "members") { + if (item.m) { + urlPrefix = item.m + slash; + } else { + $.each(packageSearchIndex, function(index, it) { + if (it.m && item.p === it.l) { + urlPrefix = it.m + slash; + } + }); + } + } + return urlPrefix; +} +function getURL(item, category) { + if (item.url) { + return item.url; + } + var url = getURLPrefix(item, category); + if (category === "modules") { + url += "module-summary.html"; + } else if (category === "packages") { + if (item.u) { + url = item.u; + } else { + url += item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (category === "types") { + if (item.u) { + url = item.u; + } else { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + ".html"; + } + } else if (category === "members") { + url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + ".html" + "#"; + if (item.u) { + url += item.u; + } else { + url += item.l; + } + } else if (category === "searchTags") { + url += item.u; + } + item.url = url; + return url; +} +function createMatcher(term, camelCase) { + if (camelCase && !isUpperCase(term)) { + return null; // no need for camel-case matcher for lower case query + } + var pattern = ""; + var upperCase = []; + term.trim().split(/\s+/).forEach(function(w, index, array) { + var tokens = w.split(/(?=[A-Z,.()<>?[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + // ',' and '?' are the only delimiters commonly followed by space in java signatures + pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, "$&\\s*?") + ")"; + upperCase.push(false); + var isWordToken = /\w$/.test(s); + if (isWordToken) { + if (i === tokens.length - 1 && index < array.length - 1) { + // space in query string matches all delimiters + pattern += "(.*?)"; + upperCase.push(isUpperCase(s[0])); + } else { + if (!camelCase && isUpperCase(s) && s.length === 1) { + pattern += "()"; + } else { + pattern += "([a-z0-9$<>?[\\]]*?)"; + } + upperCase.push(isUpperCase(s[0])); + } + } else { + pattern += "()"; + upperCase.push(false); + } + } + }); + var re = new RegExp(pattern, "gi"); + re.upperCase = upperCase; + return re; +} +function findMatch(matcher, input, startOfName, endOfName) { + var from = startOfName; + matcher.lastIndex = from; + var match = matcher.exec(input); + // Expand search area until we get a valid result or reach the beginning of the string + while (!match || match.index + match[0].length < startOfName || endOfName < match.index) { + if (from === 0) { + return NO_MATCH; + } + from = input.lastIndexOf(".", from - 2) + 1; + matcher.lastIndex = from; + match = matcher.exec(input); + } + var boundaries = []; + var matchEnd = match.index + match[0].length; + var score = 5; + var start = match.index; + var prevEnd = -1; + for (var i = 1; i < match.length; i += 2) { + var isUpper = isUpperCase(input[start]); + var isMatcherUpper = matcher.upperCase[i]; + // capturing groups come in pairs, match and non-match + boundaries.push(start, start + match[i].length); + // make sure groups are anchored on a left word boundary + var prevChar = input[start - 1] || ""; + var nextChar = input[start + 1] || ""; + if (start !== 0 && !/[\W_]/.test(prevChar) && !/[\W_]/.test(input[start])) { + if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) { + score -= 0.1; + } else if (isMatcherUpper && start === prevEnd) { + score -= isUpper ? 0.1 : 1.0; + } else { + return NO_MATCH; + } + } + prevEnd = start + match[i].length; + start += match[i].length + match[i + 1].length; + + // lower score for parts of the name that are missing + if (match[i + 1] && prevEnd < endOfName) { + score -= rateNoise(match[i + 1]); + } + } + // lower score if a type name contains unmatched camel-case parts + if (input[matchEnd - 1] !== "." && endOfName > matchEnd) + score -= rateNoise(input.slice(matchEnd, endOfName)); + score -= rateNoise(input.slice(0, Math.max(startOfName, match.index))); + + if (score <= 0) { + return NO_MATCH; + } + return { + input: input, + score: score, + boundaries: boundaries + }; +} +function isUpperCase(s) { + return s !== s.toLowerCase(); +} +function isLowerCase(s) { + return s !== s.toUpperCase(); +} +function rateNoise(str) { + return (str.match(/([.(])/g) || []).length / 5 + + (str.match(/([A-Z]+)/g) || []).length / 10 + + str.length / 20; +} +function doSearch(request, response) { + var term = request.term.trim(); + var maxResults = request.maxResults || MAX_RESULTS; + if (term.length === 0) { + return this.close(); + } + var matcher = { + plainMatcher: createMatcher(term, false), + camelCaseMatcher: createMatcher(term, true) + } + var indexLoaded = indexFilesLoaded(); + + function getPrefix(item, category) { + switch (category) { + case "packages": + return checkUnnamed(item.m, "/"); + case "types": + return checkUnnamed(item.p, "."); + case "members": + return checkUnnamed(item.p, ".") + item.c + "."; + default: + return ""; + } + } + function useQualifiedName(category) { + switch (category) { + case "packages": + return /[\s/]/.test(term); + case "types": + case "members": + return /[\s.]/.test(term); + default: + return false; + } + } + function searchIndex(indexArray, category) { + var matches = []; + if (!indexArray) { + if (!indexLoaded) { + matches.push({ l: messages.loading, category: category }); + } + return matches; + } + $.each(indexArray, function (i, item) { + var prefix = getPrefix(item, category); + var simpleName = item.l; + var qualifiedName = prefix + simpleName; + var useQualified = useQualifiedName(category); + var input = useQualified ? qualifiedName : simpleName; + var startOfName = useQualified ? prefix.length : 0; + var endOfName = category === "members" && input.indexOf("(", startOfName) > -1 + ? input.indexOf("(", startOfName) : input.length; + var m = findMatch(matcher.plainMatcher, input, startOfName, endOfName); + if (m === NO_MATCH && matcher.camelCaseMatcher) { + m = findMatch(matcher.camelCaseMatcher, input, startOfName, endOfName); + } + if (m !== NO_MATCH) { + m.indexItem = item; + m.prefix = prefix; + m.category = category; + if (!useQualified) { + m.input = qualifiedName; + m.boundaries = m.boundaries.map(function(b) { + return b + prefix.length; + }); + } + matches.push(m); + } + return true; + }); + return matches.sort(function(e1, e2) { + return e2.score - e1.score; + }).slice(0, maxResults); + } + + var result = searchIndex(moduleSearchIndex, "modules") + .concat(searchIndex(packageSearchIndex, "packages")) + .concat(searchIndex(typeSearchIndex, "types")) + .concat(searchIndex(memberSearchIndex, "members")) + .concat(searchIndex(tagSearchIndex, "searchTags")); + + if (!indexLoaded) { + updateSearchResults = function() { + doSearch(request, response); + } + } else { + updateSearchResults = function() {}; + } + response(result); +} +// JQuery search menu implementation +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> .result-item"); + // workaround for search result scrolling + this.menu._scrollIntoView = function _scrollIntoView( item ) { + var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; + if ( this._hasScroll() ) { + borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0; + paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0; + offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; + scroll = this.activeMenu.scrollTop(); + elementHeight = this.activeMenu.height() - 26; + itemHeight = item.outerHeight(); + + if ( offset < 0 ) { + this.activeMenu.scrollTop( scroll + offset ); + } else if ( offset + itemHeight > elementHeight ) { + this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); + } + } + }; + }, + _renderMenu: function(ul, items) { + var currentCategory = ""; + var widget = this; + widget.menu.bindings = $(); + $.each(items, function(index, item) { + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + categories[item.category] + "
  • "); + currentCategory = item.category; + } + var li = widget._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", categories[item.category] + " : " + item.l); + } else { + li.attr("aria-label", item.l); + } + li.attr("class", "result-item"); + }); + ul.append(""); + }, + _renderItem: function(ul, item) { + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + var label = item.l + ? item.l + : getHighlightedText(item.input, item.boundaries, 0, item.input.length); + var idx = item.indexItem; + if (item.category === "searchTags" && idx && idx.h) { + if (idx.d) { + div.html(label + " (" + idx.h + ")
    " + + idx.d + "
    "); + } else { + div.html(label + " (" + idx.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + var expanded = false; + var windowWidth; + function collapse() { + if (expanded) { + $("div#navbar-top").removeAttr("style"); + $("button#navbar-toggle-button") + .removeClass("expanded") + .attr("aria-expanded", "false"); + expanded = false; + } + } + $("button#navbar-toggle-button").click(function (e) { + if (expanded) { + collapse(); + } else { + var navbar = $("div#navbar-top"); + navbar.height(navbar.prop("scrollHeight")); + $("button#navbar-toggle-button") + .addClass("expanded") + .attr("aria-expanded", "true"); + expanded = true; + windowWidth = window.innerWidth; + } + }); + $("ul.sub-nav-list-small li a").click(collapse); + $("input#search-input").focus(collapse); + $("main").click(collapse); + $("section[id] > :header, :header[id], :header:has(a[id])").each(function(idx, el) { + // Create anchor links for headers with an associated id attribute + var hdr = $(el); + var id = hdr.attr("id") || hdr.parent("section").attr("id") || hdr.children("a").attr("id"); + if (id) { + hdr.append(" " + messages.linkIcon +""); + } + }); + $(window).on("orientationchange", collapse).on("resize", function(e) { + if (expanded && windowWidth !== window.innerWidth) collapse(); + }); + var search = $("#search-input"); + var reset = $("#reset-button"); + search.catcomplete({ + minLength: 1, + delay: 200, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push({ l: messages.noResult }); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.indexItem) { + var url = getURL(ui.item.indexItem, ui.item.category); + window.location.href = pathtoroot + url; + $("#search-input").focus(); + } + } + }); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + reset.click(function() { + search.val('').focus(); + }); + search.focus(); +}); diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/GameOfLifeMain.java b/Hjemmeopgaver/Hjemmeopgave nr 3/src/GameOfLifeMain.java new file mode 100644 index 0000000..b7be7d8 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/GameOfLifeMain.java @@ -0,0 +1,366 @@ +import javafx.scene.input.KeyCode; + +import java.io.*; +import java.util.Arrays; +import java.util.Scanner; +import java.util.Random; +import java.util.ArrayList; + +/** + * Game of life class. + * + * @author rasmus + * @version 4.2 + */ +public class GameOfLifeMain { + /** + * The Is periodic. + */ + static boolean isPeriodic = false; + /** + * The Auto run. + */ + static boolean autoRun = false; + /** + * The Key pressed. + */ + static boolean keyPressed = false; + /** + * The Board size. + */ + static int boardSize; + /** + * The Text position. + */ + static double[] textPosition; + /** + * The Jump to iteration. + */ + static int jumpToIteration = -1; // When it's < 0, it is to be ignored. + + /** + * The entry point of application. + * + * @param args the input arguments + * @throws IOException the io exception + */ + public static void main(String[] args) throws IOException { + StdDraw.setCanvasSize(1000, 1050); + Scanner console = new Scanner(System.in); + System.out.print("Please enter the size of the board (enter -1 to input file that should be imported): "); + boardSize = console.nextInt(); + GameOfLife gameOfLife = new GameOfLife(Math.max(boardSize, 1)); + if (boardSize < 0) { + System.out.print("Please enter path of file: "); + String filePath = console.next(); + File file = new File(filePath); + gameOfLife = importFromFile(file); + boardSize = gameOfLife.size; + } + textPosition = new double[] {10.0 / 1000 * boardSize,(Math.ceil(boardSize * 1.05)-boardSize)/2+boardSize}; + StdDraw.setPenRadius(1.3 / (boardSize + 1)); + StdDraw.show(0); + StdDraw.setXscale(-1, boardSize); + StdDraw.setYscale(-1, (int) Math.ceil(boardSize*1.05)); + StdDraw.clear(); + gameOfLife.draw(); + StdDraw.textLeft(textPosition[0], textPosition[1], "Iteration nr.: " + gameOfLife.iteration + " Period is not found yet."); + StdDraw.show(0); + while (true) { + if (!keyPressed && jumpToIteration < 0) { + if (StdDraw.isKeyPressed(39)) { // Right arrow key is pressed. Go forward 1 iteration + runIteration(gameOfLife); + keyPressed = true; + } else if (StdDraw.isKeyPressed(37) && gameOfLife.iteration > 0) { // Left arrow key is pressed. Go back 1 iteration + gameOfLife.previousState(); + StdDraw.clear(); + gameOfLife.draw(); + StdDraw.textLeft(textPosition[0], textPosition[1], "Iteration nr.: " + gameOfLife.iteration + + (isPeriodic ? " Period is: " + gameOfLife.period : " Period is not found yet")); + StdDraw.show(0); + keyPressed = true; + } else if (StdDraw.isKeyPressed(32)) { // If space is pressed. Autoruns or pauses game + autoRun = !autoRun; + keyPressed = true; + } else if (StdDraw.isKeyPressed(73)) { // If "i" is pressed. Goes to inputted iteration. + /* + When a iteration nr. is given to be jumped to. The simulation will run in the background not updating the board + until it reaches that iteration, in which case it will pause running and update board again. + */ + System.out.print("Enter iteration to jump to: "); + jumpToIteration = Integer.parseInt(console.nextLine()); + StdDraw.setPenRadius(50); + StdDraw.text((double) (boardSize + 1) /2, (double) ((int) Math.ceil(boardSize * 1.05) + 1) /2, "RUNNING SIMULATION. WAIT"); + StdDraw.show(0); + StdDraw.setPenRadius(1.3 / (boardSize + 1)); + autoRun = true; + keyPressed = true; + } else if (StdDraw.isKeyPressed(83)) { // If "s" is pressed. Saves board + System.out.print("Enter filename (and path): "); + String savedFile = console.next(); + gameOfLife.exportStateToFile(savedFile); + } + } else if (!StdDraw.isKeyPressed(39) && !StdDraw.isKeyPressed(37) && !StdDraw.isKeyPressed(32) && !StdDraw.isKeyPressed(73)) { + // This is to make sure, that when a key is pressed, it is only acted upon once until it is pressed again. + keyPressed = false; + } + if (autoRun) { + runIteration(gameOfLife); + } + } + } + + /** + * Run iteration. + * + * @param gameOfLife the game of life + */ + public static void runIteration(GameOfLife gameOfLife) { + gameOfLife.nextState(); + int periodic = (isPeriodic ? -1 : gameOfLife.checkPeriodic()); // Only check if board is periodic if it hasnt already been found to be. + if (periodic >= 0) { + int period = gameOfLife.iteration - periodic; + System.out.println("The simulation is periodic. The period is: " + period); + isPeriodic = true; + autoRun = gameOfLife.iteration <= jumpToIteration; // Game should autoRun if iteration nr. is below iteration nr. it should run until. + } + if (gameOfLife.iteration >= jumpToIteration) { + StdDraw.clear(); + gameOfLife.draw(); + StdDraw.textLeft(textPosition[0], textPosition[1], "Iteration nr.: " + gameOfLife.iteration + + (isPeriodic ? " Period is: " + gameOfLife.period : " Period is not found yet")); + StdDraw.show(0); + if (gameOfLife.iteration == jumpToIteration) { + jumpToIteration = -1; + autoRun = false; + } + } + } + + + /** + * Import from file game of life. + * + * @param file the file + * @return the game of life + * @throws FileNotFoundException the file not found exception + */ + public static GameOfLife importFromFile(File file) throws FileNotFoundException { + /* + Imports a simulation-state from a file with example file format: + 0 1 0 0 + 1 0 0 0 + 1 1 1 1 + 0 0 1 1 + First goes through first line of file (and defines length) and the rest of the lines. Returns a GameOfLife object with imported board. + */ + Scanner importedFile = new Scanner(file); + String firstLine = importedFile.nextLine(); + String[] firstLineSplit = firstLine.split(" "); + int length = firstLineSplit.length; + int[][] grid = new int[length][length]; + for (int i = 0; i < length; i++) { + grid[0][i] = Integer.parseInt(firstLineSplit[i]); + } + int rowNum = 1; + while (importedFile.hasNextLine()) { + String Line = importedFile.nextLine(); + String[] lineSplit = Line.split(" "); + for (int i = 0; i < length; i++) { + grid[rowNum][i] = Integer.parseInt(lineSplit[i]); + } + rowNum++; + } + importedFile.close(); + return new GameOfLife(grid); + } +} + +/** + * The type Game of life. + */ +class GameOfLife { + private int[][] state; + /** + * The Size. + */ + int size; + /** + * The Iteration. + */ + int iteration = 0; + /** + * The Period. + */ + int period = -1; + /** + * The First periodic state. + */ + int firstPeriodicState; // The index of the state when the simulations periodic nature begins. + /** + * The Previous boards list. + */ + ArrayList previousBoardsList = new ArrayList<>(); // A list containing all the previous arrays of this.state. + /** + * The Previous boards list hash. + */ + ArrayList previousBoardsListHash = new ArrayList<>(); // A list containing all the previous array-hashes of this.state. Both lists used for checking if periodic + + /** + * Instantiates a new Game of life. + * + * @param n the n + */ + public GameOfLife(int n) { + /* + Create a random board of 1's and 0's based on array size n * n + */ + Random rand = new Random(); + this.size = n; + this.state = new int[n][n]; + for (int i = 0; i < n; i++) { + for (int j = 0; j < n; j++) { + this.state[i][j] = rand.nextInt(2); + } + } + this.previousBoardsList.add(this.state); + this.previousBoardsListHash.add(Arrays.deepHashCode(this.state)); + } + + /** + * Instantiates a new Game of life. + * + * @param initialState the initial state + */ + public GameOfLife(int[][] initialState) { + this.state = initialState; + this.size = initialState.length; + this.previousBoardsList.add(this.state); + this.previousBoardsListHash.add(Arrays.deepHashCode(this.state)); + } + + public String toString() { + return Arrays.deepToString(this.state); + } + + /** + * Draw. + */ + public void draw() { + for (int i = 0; i < state.length; i++) { + for (int j = 0; j < state[i].length; j++) { + if (this.state[i][j] == 1) { + StdDraw.point(j, this.size-i-1); + } + } + } + } + + /** + * Next state. + */ + public void nextState() { + /* + Goes through the current state-array and builds/calculates next state. Also adds current state and state-hash to lists + */ + int[][] newState = new int[this.size][this.size]; + for (int i = 0; i < state.length; i++) { + for (int j = 0; j < state[i].length; j++) { + int aliveNeighbors = this.aliveNeighbours(i, j); + if (this.state[i][j] == 1 && (aliveNeighbors < 2 || aliveNeighbors > 3)) { // If current cell is alive, and it should die of boredom or overcrowding + newState[i][j] = 0; + } else if (this.state[i][j] == 0 && aliveNeighbors == 3) { // Dead cell with 3 neighbors returns to life + newState[i][j] = 1; + } else { + newState[i][j] = this.state[i][j]; + } + } + } + this.previousBoardsList.add(this.state); + this.previousBoardsListHash.add(Arrays.deepHashCode(this.state)); + this.state = newState; + this.iteration++; + } + + /** + * Previous state. + */ + public void previousState() { + /* + Makes current state the previous one, and removes it from the lists + */ + this.state = this.previousBoardsList.getLast(); + this.previousBoardsList.removeLast(); + this.previousBoardsListHash.removeLast(); + this.iteration--; + } + + /** + * Alive neighbours int. + * + * @param x the x + * @param y the y + * @return the int + */ + public int aliveNeighbours(int x, int y) { + /* + Returns the amount of alive neighbors. It does this by adding the values of the surrounding squares. + In easier to read format, its built like this: + If not at the top of the array: + Add together: + Value of above left square, if not at the left edge of array, else 0 + Value of square above + Value of above right square, if not at top right edge of array, else 0 + Else: 0 + And then the sum of that plus the same for left and right squares and square below. + */ + return (y > 0 ? (x > 0 ? this.state[x-1][y-1] : 0) + this.state[x][y-1] + (x < this.size - 1 ? this.state[x+1][y-1] : 0) : 0) + // Neighbors above + (x > 0 ? this.state[x-1][y] : 0) + (x < this.size - 1 ? this.state[x+1][y] : 0) + // Neighbors on same row + (y < this.size - 1 ? (x > 0 ? this.state[x-1][y+1] : 0) + this.state[x][y+1] + (x < this.size - 1 ? this.state[x+1][y+1] : 0) : 0); // Neighbors below + } + + /** + * Check periodic int. + * + * @return the int + */ + public int checkPeriodic() { + /* + Uses the indexOf array-function to search for matches in the list of array-state-hashes, returns > 0 if theres a match. + If there's a match, compares the arrays using Array-function deepEquals to make sure arrays match as only using + hashes can lead to false positives. + */ + int matches = this.previousBoardsListHash.indexOf(Arrays.deepHashCode(this.state)); + if (matches >= 0 && Arrays.deepEquals(this.previousBoardsList.get(matches), this.state)) { + this.period = this.iteration - matches; + this.firstPeriodicState = matches; + return matches; + } + return -1; + } + + /** + * Export state to file. + * + * @param filename the filename + * @throws IOException the io exception + */ + public void exportStateToFile(String filename) throws IOException { + /* + Goes through this.state array and saves it to a file. Example format its saved as: + 0 1 0 0 + 1 0 0 0 + 1 1 1 1 + 0 0 1 1 + */ + FileWriter fileName = new FileWriter(filename); + PrintWriter writer = new PrintWriter(fileName); + for (int i = 0; i < this.state.length; i++) { + for (int j = 0; j < this.state[i].length; j++) { + writer.print(this.state[i][j] + (j < this.state[i].length - 1 ? " " : "")); + } + writer.println(); + } + writer.close(); + } +} \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/StdDraw.java b/Hjemmeopgaver/Hjemmeopgave nr 3/src/StdDraw.java new file mode 100644 index 0000000..db82ee0 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/StdDraw.java @@ -0,0 +1,1124 @@ +/************************************************************************* + * Compilation: javac StdDraw.java + * Execution: java StdDraw + * + * Standard drawing library. This class provides a basic capability for + * creating drawings with your programs. It uses a simple graphics model that + * allows you to create drawings consisting of points, lines, and curves + * in a window on your computer and to save the drawings to a file. + * + * Todo + * ---- + * - Add support for gradient fill, etc. + * - Fix setCanvasSize() so that it can only be called once. + * - On some systems, drawing a line (or other shape) that extends way + * beyond canvas (e.g., to infinity) dimensions does not get drawn. + * + * Remarks + * ------- + * - don't use AffineTransform for rescaling since it inverts + * images and strings + * - careful using setFont in inner loop within an animation - + * it can cause flicker + * + *************************************************************************/ + +import java.awt.*; +import java.awt.event.*; +import java.awt.geom.*; +import java.awt.image.*; +import java.io.*; +import java.net.*; +import java.util.LinkedList; +import java.util.TreeSet; +import javax.imageio.ImageIO; +import javax.swing.*; + +/** + * Standard draw. This class provides a basic capability for + * creating drawings with your programs. It uses a simple graphics model that + * allows you to create drawings consisting of points, lines, and curves + * in a window on your computer and to save the drawings to a file. + *

    + * For additional documentation, see Section 1.5 of + * Introduction to Programming in Java: An Interdisciplinary Approach by Robert Sedgewick and Kevin Wayne. + * + * @author Robert Sedgewick + * @author Kevin Wayne + */ +public final class StdDraw implements ActionListener, MouseListener, MouseMotionListener, KeyListener { + + // pre-defined colors + public static final Color BLACK = Color.BLACK; + public static final Color BLUE = Color.BLUE; + public static final Color CYAN = Color.CYAN; + public static final Color DARK_GRAY = Color.DARK_GRAY; + public static final Color GRAY = Color.GRAY; + public static final Color GREEN = Color.GREEN; + public static final Color LIGHT_GRAY = Color.LIGHT_GRAY; + public static final Color MAGENTA = Color.MAGENTA; + public static final Color ORANGE = Color.ORANGE; + public static final Color PINK = Color.PINK; + public static final Color RED = Color.RED; + public static final Color WHITE = Color.WHITE; + public static final Color YELLOW = Color.YELLOW; + + /** + * Shade of blue used in Introduction to Programming in Java. + * It is Pantone 300U. The RGB values are approximately (9, 90, 166). + */ + public static final Color BOOK_BLUE = new Color( 9, 90, 166); + public static final Color BOOK_LIGHT_BLUE = new Color(103, 198, 243); + + /** + * Shade of red used in Algorithms 4th edition. + * It is Pantone 1805U. The RGB values are approximately (150, 35, 31). + */ + public static final Color BOOK_RED = new Color(150, 35, 31); + + // default colors + private static final Color DEFAULT_PEN_COLOR = BLACK; + private static final Color DEFAULT_CLEAR_COLOR = WHITE; + + // current pen color + private static Color penColor; + + // default canvas size is DEFAULT_SIZE-by-DEFAULT_SIZE + private static final int DEFAULT_SIZE = 512; + private static int width = DEFAULT_SIZE; + private static int height = DEFAULT_SIZE; + + // default pen radius + private static final double DEFAULT_PEN_RADIUS = 0.002; + + // current pen radius + private static double penRadius; + + // show we draw immediately or wait until next show? + private static boolean defer = false; + + // boundary of drawing canvas, 0% border + // private static final double BORDER = 0.05; + private static final double BORDER = 0.00; + private static final double DEFAULT_XMIN = 0.0; + private static final double DEFAULT_XMAX = 1.0; + private static final double DEFAULT_YMIN = 0.0; + private static final double DEFAULT_YMAX = 1.0; + private static double xmin, ymin, xmax, ymax; + + // for synchronization + private static Object mouseLock = new Object(); + private static Object keyLock = new Object(); + + // default font + private static final Font DEFAULT_FONT = new Font("SansSerif", Font.PLAIN, 16); + + // current font + private static Font font; + + // double buffered graphics + private static BufferedImage offscreenImage, onscreenImage; + private static Graphics2D offscreen, onscreen; + + // singleton for callbacks: avoids generation of extra .class files + private static StdDraw std = new StdDraw(); + + // the frame for drawing to the screen + private static JFrame frame; + + // mouse state + private static boolean mousePressed = false; + private static double mouseX = 0; + private static double mouseY = 0; + + // queue of typed key characters + private static LinkedList keysTyped = new LinkedList(); + + // set of key codes currently pressed down + private static TreeSet keysDown = new TreeSet(); + + + // singleton pattern: client can't instantiate + private StdDraw() { } + + + // static initializer + static { init(); } + + /** + * Set the window size to the default size 512-by-512 pixels. + * This method must be called before any other commands. + */ + public static void setCanvasSize() { + setCanvasSize(DEFAULT_SIZE, DEFAULT_SIZE); + } + + /** + * Set the window size to w-by-h pixels. + * This method must be called before any other commands. + * + * @param w the width as a number of pixels + * @param h the height as a number of pixels + * @throws a IllegalArgumentException if the width or height is 0 or negative + */ + public static void setCanvasSize(int w, int h) { + if (w < 1 || h < 1) throw new IllegalArgumentException("width and height must be positive"); + width = w; + height = h; + init(); + } + + // init + private static void init() { + if (frame != null) frame.setVisible(false); + frame = new JFrame(); + offscreenImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); + onscreenImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); + offscreen = offscreenImage.createGraphics(); + onscreen = onscreenImage.createGraphics(); + setXscale(); + setYscale(); + offscreen.setColor(DEFAULT_CLEAR_COLOR); + offscreen.fillRect(0, 0, width, height); + setPenColor(); + setPenRadius(); + setFont(); + clear(); + + // add antialiasing + RenderingHints hints = new RenderingHints(RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); + hints.put(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY); + offscreen.addRenderingHints(hints); + + // frame stuff + ImageIcon icon = new ImageIcon(onscreenImage); + JLabel draw = new JLabel(icon); + + draw.addMouseListener(std); + draw.addMouseMotionListener(std); + + frame.setContentPane(draw); + frame.addKeyListener(std); // JLabel cannot get keyboard focus + frame.setResizable(false); + frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // closes all windows + // frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); // closes only current window + frame.setTitle("Standard Draw"); + frame.setJMenuBar(createMenuBar()); + frame.pack(); + frame.requestFocusInWindow(); + frame.setVisible(true); + } + + // create the menu bar (changed to private) + private static JMenuBar createMenuBar() { + JMenuBar menuBar = new JMenuBar(); + JMenu menu = new JMenu("File"); + menuBar.add(menu); + JMenuItem menuItem1 = new JMenuItem(" Save... "); + menuItem1.addActionListener(std); + menuItem1.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S, + Toolkit.getDefaultToolkit().getMenuShortcutKeyMask())); + menu.add(menuItem1); + return menuBar; + } + + + /************************************************************************* + * User and screen coordinate systems + *************************************************************************/ + + /** + * Set the x-scale to be the default (between 0.0 and 1.0). + */ + public static void setXscale() { setXscale(DEFAULT_XMIN, DEFAULT_XMAX); } + + /** + * Set the y-scale to be the default (between 0.0 and 1.0). + */ + public static void setYscale() { setYscale(DEFAULT_YMIN, DEFAULT_YMAX); } + + /** + * Set the x-scale + * @param min the minimum value of the x-scale + * @param max the maximum value of the x-scale + */ + public static void setXscale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + xmin = min - BORDER * size; + xmax = max + BORDER * size; + } + } + + /** + * Set the y-scale + * @param min the minimum value of the y-scale + * @param max the maximum value of the y-scale + */ + public static void setYscale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + ymin = min - BORDER * size; + ymax = max + BORDER * size; + } + } + + /** + * Set the x-scale and y-scale + * @param min the minimum value of the x- and y-scales + * @param max the maximum value of the x- and y-scales + */ + public static void setScale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + xmin = min - BORDER * size; + xmax = max + BORDER * size; + ymin = min - BORDER * size; + ymax = max + BORDER * size; + } + } + + // helper functions that scale from user coordinates to screen coordinates and back + private static double scaleX(double x) { return width * (x - xmin) / (xmax - xmin); } + private static double scaleY(double y) { return height * (ymax - y) / (ymax - ymin); } + private static double factorX(double w) { return w * width / Math.abs(xmax - xmin); } + private static double factorY(double h) { return h * height / Math.abs(ymax - ymin); } + private static double userX(double x) { return xmin + x * (xmax - xmin) / width; } + private static double userY(double y) { return ymax - y * (ymax - ymin) / height; } + + + /** + * Clear the screen to the default color (white). + */ + public static void clear() { clear(DEFAULT_CLEAR_COLOR); } + /** + * Clear the screen to the given color. + * @param color the Color to make the background + */ + public static void clear(Color color) { + offscreen.setColor(color); + offscreen.fillRect(0, 0, width, height); + offscreen.setColor(penColor); + draw(); + } + + /** + * Get the current pen radius. + */ + public static double getPenRadius() { return penRadius; } + + /** + * Set the pen size to the default (.002). + */ + public static void setPenRadius() { setPenRadius(DEFAULT_PEN_RADIUS); } + /** + * Set the radius of the pen to the given size. + * @param r the radius of the pen + * @throws IllegalArgumentException if r is negative + */ + public static void setPenRadius(double r) { + if (r < 0) throw new IllegalArgumentException("pen radius must be nonnegative"); + penRadius = r; + float scaledPenRadius = (float) (r * DEFAULT_SIZE); + BasicStroke stroke = new BasicStroke(scaledPenRadius, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND); + // BasicStroke stroke = new BasicStroke(scaledPenRadius); + offscreen.setStroke(stroke); + } + + /** + * Get the current pen color. + */ + public static Color getPenColor() { return penColor; } + + /** + * Set the pen color to the default color (black). + */ + public static void setPenColor() { setPenColor(DEFAULT_PEN_COLOR); } + + /** + * Set the pen color to the given color. The available pen colors are + * BLACK, BLUE, CYAN, DARK_GRAY, GRAY, GREEN, LIGHT_GRAY, MAGENTA, + * ORANGE, PINK, RED, WHITE, and YELLOW. + * @param color the Color to make the pen + */ + public static void setPenColor(Color color) { + penColor = color; + offscreen.setColor(penColor); + } + + /** + * Set the pen color to the given RGB color. + * @param red the amount of red (between 0 and 255) + * @param green the amount of green (between 0 and 255) + * @param blue the amount of blue (between 0 and 255) + * @throws IllegalArgumentException if the amount of red, green, or blue are outside prescribed range + */ + public static void setPenColor(int red, int green, int blue) { + if (red < 0 || red >= 256) throw new IllegalArgumentException("amount of red must be between 0 and 255"); + if (green < 0 || green >= 256) throw new IllegalArgumentException("amount of green must be between 0 and 255"); + if (blue < 0 || blue >= 256) throw new IllegalArgumentException("amount of blue must be between 0 and 255"); + setPenColor(new Color(red, green, blue)); + } + + /** + * Get the current font. + */ + public static Font getFont() { return font; } + + /** + * Set the font to the default font (sans serif, 16 point). + */ + public static void setFont() { setFont(DEFAULT_FONT); } + + /** + * Set the font to the given value. + * @param f the font to make text + */ + public static void setFont(Font f) { font = f; } + + + /************************************************************************* + * Drawing geometric shapes. + *************************************************************************/ + + /** + * Draw a line from (x0, y0) to (x1, y1). + * @param x0 the x-coordinate of the starting point + * @param y0 the y-coordinate of the starting point + * @param x1 the x-coordinate of the destination point + * @param y1 the y-coordinate of the destination point + */ + public static void line(double x0, double y0, double x1, double y1) { + offscreen.draw(new Line2D.Double(scaleX(x0), scaleY(y0), scaleX(x1), scaleY(y1))); + draw(); + } + + /** + * Draw one pixel at (x, y). + * @param x the x-coordinate of the pixel + * @param y the y-coordinate of the pixel + */ + private static void pixel(double x, double y) { + offscreen.fillRect((int) Math.round(scaleX(x)), (int) Math.round(scaleY(y)), 1, 1); + } + + /** + * Draw a point at (x, y). + * @param x the x-coordinate of the point + * @param y the y-coordinate of the point + */ + public static void point(double x, double y) { + double xs = scaleX(x); + double ys = scaleY(y); + double r = penRadius; + float scaledPenRadius = (float) (r * DEFAULT_SIZE); + + // double ws = factorX(2*r); + // double hs = factorY(2*r); + // if (ws <= 1 && hs <= 1) pixel(x, y); + if (scaledPenRadius <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - scaledPenRadius/2, ys - scaledPenRadius/2, + scaledPenRadius, scaledPenRadius)); + draw(); + } + + /** + * Draw a circle of radius r, centered on (x, y). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void circle(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("circle radius must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw filled circle of radius r, centered on (x, y). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void filledCircle(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("circle radius must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw an ellipse with given semimajor and semiminor axes, centered on (x, y). + * @param x the x-coordinate of the center of the ellipse + * @param y the y-coordinate of the center of the ellipse + * @param semiMajorAxis is the semimajor axis of the ellipse + * @param semiMinorAxis is the semiminor axis of the ellipse + * @throws IllegalArgumentException if either of the axes are negative + */ + public static void ellipse(double x, double y, double semiMajorAxis, double semiMinorAxis) { + if (semiMajorAxis < 0) throw new IllegalArgumentException("ellipse semimajor axis must be nonnegative"); + if (semiMinorAxis < 0) throw new IllegalArgumentException("ellipse semiminor axis must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*semiMajorAxis); + double hs = factorY(2*semiMinorAxis); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw an ellipse with given semimajor and semiminor axes, centered on (x, y). + * @param x the x-coordinate of the center of the ellipse + * @param y the y-coordinate of the center of the ellipse + * @param semiMajorAxis is the semimajor axis of the ellipse + * @param semiMinorAxis is the semiminor axis of the ellipse + * @throws IllegalArgumentException if either of the axes are negative + */ + public static void filledEllipse(double x, double y, double semiMajorAxis, double semiMinorAxis) { + if (semiMajorAxis < 0) throw new IllegalArgumentException("ellipse semimajor axis must be nonnegative"); + if (semiMinorAxis < 0) throw new IllegalArgumentException("ellipse semiminor axis must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*semiMajorAxis); + double hs = factorY(2*semiMinorAxis); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw an arc of radius r, centered on (x, y), from angle1 to angle2 (in degrees). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @param angle1 the starting angle. 0 would mean an arc beginning at 3 o'clock. + * @param angle2 the angle at the end of the arc. For example, if + * you want a 90 degree arc, then angle2 should be angle1 + 90. + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void arc(double x, double y, double r, double angle1, double angle2) { + if (r < 0) throw new IllegalArgumentException("arc radius must be nonnegative"); + while (angle2 < angle1) angle2 += 360; + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Arc2D.Double(xs - ws/2, ys - hs/2, ws, hs, angle1, angle2 - angle1, Arc2D.OPEN)); + draw(); + } + + /** + * Draw a square of side length 2r, centered on (x, y). + * @param x the x-coordinate of the center of the square + * @param y the y-coordinate of the center of the square + * @param r radius is half the length of any side of the square + * @throws IllegalArgumentException if r is negative + */ + public static void square(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("square side length must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw a filled square of side length 2r, centered on (x, y). + * @param x the x-coordinate of the center of the square + * @param y the y-coordinate of the center of the square + * @param r radius is half the length of any side of the square + * @throws IllegalArgumentException if r is negative + */ + public static void filledSquare(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("square side length must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw a rectangle of given half width and half height, centered on (x, y). + * @param x the x-coordinate of the center of the rectangle + * @param y the y-coordinate of the center of the rectangle + * @param halfWidth is half the width of the rectangle + * @param halfHeight is half the height of the rectangle + * @throws IllegalArgumentException if halfWidth or halfHeight is negative + */ + public static void rectangle(double x, double y, double halfWidth, double halfHeight) { + if (halfWidth < 0) throw new IllegalArgumentException("half width must be nonnegative"); + if (halfHeight < 0) throw new IllegalArgumentException("half height must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*halfWidth); + double hs = factorY(2*halfHeight); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw a filled rectangle of given half width and half height, centered on (x, y). + * @param x the x-coordinate of the center of the rectangle + * @param y the y-coordinate of the center of the rectangle + * @param halfWidth is half the width of the rectangle + * @param halfHeight is half the height of the rectangle + * @throws IllegalArgumentException if halfWidth or halfHeight is negative + */ + public static void filledRectangle(double x, double y, double halfWidth, double halfHeight) { + if (halfWidth < 0) throw new IllegalArgumentException("half width must be nonnegative"); + if (halfHeight < 0) throw new IllegalArgumentException("half height must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*halfWidth); + double hs = factorY(2*halfHeight); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw a polygon with the given (x[i], y[i]) coordinates. + * @param x an array of all the x-coordindates of the polygon + * @param y an array of all the y-coordindates of the polygon + */ + public static void polygon(double[] x, double[] y) { + int N = x.length; + GeneralPath path = new GeneralPath(); + path.moveTo((float) scaleX(x[0]), (float) scaleY(y[0])); + for (int i = 0; i < N; i++) + path.lineTo((float) scaleX(x[i]), (float) scaleY(y[i])); + path.closePath(); + offscreen.draw(path); + draw(); + } + + /** + * Draw a filled polygon with the given (x[i], y[i]) coordinates. + * @param x an array of all the x-coordindates of the polygon + * @param y an array of all the y-coordindates of the polygon + */ + public static void filledPolygon(double[] x, double[] y) { + int N = x.length; + GeneralPath path = new GeneralPath(); + path.moveTo((float) scaleX(x[0]), (float) scaleY(y[0])); + for (int i = 0; i < N; i++) + path.lineTo((float) scaleX(x[i]), (float) scaleY(y[i])); + path.closePath(); + offscreen.fill(path); + draw(); + } + + + + /************************************************************************* + * Drawing images. + *************************************************************************/ + + // get an image from the given filename + private static Image getImage(String filename) { + + // to read from file + ImageIcon icon = new ImageIcon(filename); + + // try to read from URL + if ((icon == null) || (icon.getImageLoadStatus() != MediaTracker.COMPLETE)) { + try { + URL url = new URL(filename); + icon = new ImageIcon(url); + } catch (Exception e) { /* not a url */ } + } + + // in case file is inside a .jar + if ((icon == null) || (icon.getImageLoadStatus() != MediaTracker.COMPLETE)) { + URL url = StdDraw.class.getResource(filename); + if (url == null) throw new IllegalArgumentException("image " + filename + " not found"); + icon = new ImageIcon(url); + } + + return icon.getImage(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y). + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = image.getWidth(null); + int hs = image.getHeight(null); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), (int) Math.round(ys - hs/2.0), null); + draw(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), + * rotated given number of degrees + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param degrees is the number of degrees to rotate counterclockwise + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double degrees) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = image.getWidth(null); + int hs = image.getHeight(null); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), (int) Math.round(ys - hs/2.0), null); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + + draw(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), rescaled to w-by-h. + * @param x the center x coordinate of the image + * @param y the center y coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param w the width of the image + * @param h the height of the image + * @throws IllegalArgumentException if the width height are negative + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double w, double h) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + if (w < 0) throw new IllegalArgumentException("width is negative: " + w); + if (h < 0) throw new IllegalArgumentException("height is negative: " + h); + double ws = factorX(w); + double hs = factorY(h); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + if (ws <= 1 && hs <= 1) pixel(x, y); + else { + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), + (int) Math.round(ys - hs/2.0), + (int) Math.round(ws), + (int) Math.round(hs), null); + } + draw(); + } + + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), rotated + * given number of degrees, rescaled to w-by-h. + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param w the width of the image + * @param h the height of the image + * @param degrees is the number of degrees to rotate counterclockwise + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double w, double h, double degrees) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(w); + double hs = factorY(h); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + if (ws <= 1 && hs <= 1) pixel(x, y); + + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), + (int) Math.round(ys - hs/2.0), + (int) Math.round(ws), + (int) Math.round(hs), null); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + + draw(); + } + + + /************************************************************************* + * Drawing text. + *************************************************************************/ + + /** + * Write the given text string in the current font, centered on (x, y). + * @param x the center x-coordinate of the text + * @param y the center y-coordinate of the text + * @param s the text + */ + public static void text(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = metrics.stringWidth(s); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs - ws/2.0), (float) (ys + hs)); + draw(); + } + + /** + * Write the given text string in the current font, centered on (x, y) and + * rotated by the specified number of degrees + * @param x the center x-coordinate of the text + * @param y the center y-coordinate of the text + * @param s the text + * @param degrees is the number of degrees to rotate counterclockwise + */ + public static void text(double x, double y, String s, double degrees) { + double xs = scaleX(x); + double ys = scaleY(y); + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + text(x, y, s); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + } + + + /** + * Write the given text string in the current font, left-aligned at (x, y). + * @param x the x-coordinate of the text + * @param y the y-coordinate of the text + * @param s the text + */ + public static void textLeft(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs), (float) (ys + hs)); + draw(); + } + + /** + * Write the given text string in the current font, right-aligned at (x, y). + * @param x the x-coordinate of the text + * @param y the y-coordinate of the text + * @param s the text + */ + public static void textRight(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = metrics.stringWidth(s); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs - ws), (float) (ys + hs)); + draw(); + } + + + + /** + * Display on screen, pause for t milliseconds, and turn on + * animation mode: subsequent calls to + * drawing methods such as line(), circle(), and square() + * will not be displayed on screen until the next call to show(). + * This is useful for producing animations (clear the screen, draw a bunch of shapes, + * display on screen for a fixed amount of time, and repeat). It also speeds up + * drawing a huge number of shapes (call show(0) to defer drawing + * on screen, draw the shapes, and call show(0) to display them all + * on screen at once). + * @param t number of milliseconds + */ + public static void show(int t) { + defer = false; + draw(); + try { Thread.sleep(t); } + catch (InterruptedException e) { System.out.println("Error sleeping"); } + defer = true; + } + + /** + * Display on-screen and turn off animation mode: + * subsequent calls to + * drawing methods such as line(), circle(), and square() + * will be displayed on screen when called. This is the default. + */ + public static void show() { + defer = false; + draw(); + } + + // draw onscreen if defer is false + private static void draw() { + if (defer) return; + onscreen.drawImage(offscreenImage, 0, 0, null); + frame.repaint(); + } + + + /************************************************************************* + * Save drawing to a file. + *************************************************************************/ + + /** + * Save onscreen image to file - suffix must be png, jpg, or gif. + * @param filename the name of the file with one of the required suffixes + */ + public static void save(String filename) { + File file = new File(filename); + String suffix = filename.substring(filename.lastIndexOf('.') + 1); + + // png files + if (suffix.toLowerCase().equals("png")) { + try { ImageIO.write(onscreenImage, suffix, file); } + catch (IOException e) { e.printStackTrace(); } + } + + // need to change from ARGB to RGB for jpeg + // reference: http://archives.java.sun.com/cgi-bin/wa?A2=ind0404&L=java2d-interest&D=0&P=2727 + else if (suffix.toLowerCase().equals("jpg")) { + WritableRaster raster = onscreenImage.getRaster(); + WritableRaster newRaster; + newRaster = raster.createWritableChild(0, 0, width, height, 0, 0, new int[] {0, 1, 2}); + DirectColorModel cm = (DirectColorModel) onscreenImage.getColorModel(); + DirectColorModel newCM = new DirectColorModel(cm.getPixelSize(), + cm.getRedMask(), + cm.getGreenMask(), + cm.getBlueMask()); + BufferedImage rgbBuffer = new BufferedImage(newCM, newRaster, false, null); + try { ImageIO.write(rgbBuffer, suffix, file); } + catch (IOException e) { e.printStackTrace(); } + } + + else { + System.out.println("Invalid image file type: " + suffix); + } + } + + + /** + * This method cannot be called directly. + */ + public void actionPerformed(ActionEvent e) { + FileDialog chooser = new FileDialog(StdDraw.frame, "Use a .png or .jpg extension", FileDialog.SAVE); + chooser.setVisible(true); + String filename = chooser.getFile(); + if (filename != null) { + StdDraw.save(chooser.getDirectory() + File.separator + chooser.getFile()); + } + } + + + /************************************************************************* + * Mouse interactions. + *************************************************************************/ + + /** + * Is the mouse being pressed? + * @return true or false + */ + public static boolean mousePressed() { + synchronized (mouseLock) { + return mousePressed; + } + } + + /** + * What is the x-coordinate of the mouse? + * @return the value of the x-coordinate of the mouse + */ + public static double mouseX() { + synchronized (mouseLock) { + return mouseX; + } + } + + /** + * What is the y-coordinate of the mouse? + * @return the value of the y-coordinate of the mouse + */ + public static double mouseY() { + synchronized (mouseLock) { + return mouseY; + } + } + + + /** + * This method cannot be called directly. + */ + public void mouseClicked(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mouseEntered(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mouseExited(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mousePressed(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + mousePressed = true; + } + } + + /** + * This method cannot be called directly. + */ + public void mouseReleased(MouseEvent e) { + synchronized (mouseLock) { + mousePressed = false; + } + } + + /** + * This method cannot be called directly. + */ + public void mouseDragged(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + } + } + + /** + * This method cannot be called directly. + */ + public void mouseMoved(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + } + } + + + /************************************************************************* + * Keyboard interactions. + *************************************************************************/ + + /** + * Has the user typed a key? + * @return true if the user has typed a key, false otherwise + */ + public static boolean hasNextKeyTyped() { + synchronized (keyLock) { + return !keysTyped.isEmpty(); + } + } + + /** + * What is the next key that was typed by the user? This method returns + * a Unicode character corresponding to the key typed (such as 'a' or 'A'). + * It cannot identify action keys (such as F1 + * and arrow keys) or modifier keys (such as control). + * @return the next Unicode key typed + */ + public static char nextKeyTyped() { + synchronized (keyLock) { + return keysTyped.removeLast(); + } + } + + /** + * Is the keycode currently being pressed? This method takes as an argument + * the keycode (corresponding to a physical key). It can handle action keys + * (such as F1 and arrow keys) and modifier keys (such as shift and control). + * See KeyEvent.java + * for a description of key codes. + * @return true if keycode is currently being pressed, false otherwise + */ + public static boolean isKeyPressed(int keycode) { + synchronized (keyLock) { + return keysDown.contains(keycode); + } + } + + + /** + * This method cannot be called directly. + */ + public void keyTyped(KeyEvent e) { + synchronized (keyLock) { + keysTyped.addFirst(e.getKeyChar()); + } + } + + /** + * This method cannot be called directly. + */ + public void keyPressed(KeyEvent e) { + synchronized (keyLock) { + keysDown.add(e.getKeyCode()); + } + } + + /** + * This method cannot be called directly. + */ + public void keyReleased(KeyEvent e) { + synchronized (keyLock) { + keysDown.remove(e.getKeyCode()); + } + } + + + + + /** + * Test client. + */ + public static void main(String[] args) { + StdDraw.square(.2, .8, .1); + StdDraw.filledSquare(.8, .8, .2); + StdDraw.circle(.8, .2, .2); + + StdDraw.setPenColor(StdDraw.BOOK_RED); + StdDraw.setPenRadius(.02); + StdDraw.arc(.8, .2, .1, 200, 45); + + // draw a blue diamond + StdDraw.setPenRadius(); + StdDraw.setPenColor(StdDraw.BOOK_BLUE); + double[] x = { .1, .2, .3, .2 }; + double[] y = { .2, .3, .2, .1 }; + StdDraw.filledPolygon(x, y); + + // text + StdDraw.setPenColor(StdDraw.BLACK); + StdDraw.text(0.2, 0.5, "black text"); + StdDraw.setPenColor(StdDraw.WHITE); + StdDraw.text(0.8, 0.8, "white text"); + } + +} diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/acorn.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/acorn.gol new file mode 100644 index 0000000..6a11b90 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/acorn.gol @@ -0,0 +1,250 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/glider_gun.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/glider_gun.gol new file mode 100644 index 0000000..c01d337 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/glider_gun.gol @@ -0,0 +1,40 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 +1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pentadecathlon.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pentadecathlon.gol new file mode 100644 index 0000000..2a0e4c0 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pentadecathlon.gol @@ -0,0 +1,16 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 +0 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 +0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar.gol new file mode 100644 index 0000000..7019f8d --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar.gol @@ -0,0 +1,15 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 +0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 +0 1 0 0 1 0 1 0 1 0 1 0 0 1 0 +0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 +0 0 1 0 1 0 1 0 1 0 1 0 1 0 0 +0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 +0 0 1 0 1 0 1 0 1 0 1 0 1 0 0 +0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 +0 1 0 0 1 0 1 0 1 0 1 0 0 1 0 +0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 +0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar2.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar2.gol new file mode 100644 index 0000000..f17316e --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/pulsar2.gol @@ -0,0 +1,15 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 +0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 +0 1 0 0 1 0 1 0 1 0 1 0 0 1 0 +0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 +0 0 1 0 1 0 1 0 1 0 1 0 1 0 0 +0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 +0 0 1 0 1 0 1 0 1 0 1 0 1 0 0 +0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 +0 1 0 0 1 0 1 0 1 0 1 0 0 1 0 +0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 +0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/toad.gol b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/toad.gol new file mode 100644 index 0000000..086ce96 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/toad.gol @@ -0,0 +1,4 @@ +0 0 0 0 +0 1 1 1 +1 1 1 0 +0 0 0 0 diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes new file mode 100644 index 0000000..31b360e --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes @@ -0,0 +1,8 @@ +1 1 1 1 1 1 1 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 1 \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes2 b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes2 new file mode 100644 index 0000000..b389ede --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/src/gol/yes2 @@ -0,0 +1,10 @@ +1 1 1 1 1 1 1 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 1 + + diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/stylesheet.css b/Hjemmeopgaver/Hjemmeopgave nr 3/stylesheet.css new file mode 100644 index 0000000..f71489f --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/stylesheet.css @@ -0,0 +1,1272 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * These CSS custom properties (variables) define the core color and font + * properties used in this stylesheet. + */ +:root { + /* body, block and code fonts */ + --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + --code-font-family: 'DejaVu Sans Mono', monospace; + /* Base font sizes for body and code elements */ + --body-font-size: 14px; + --code-font-size: 14px; + /* Text colors for body and block elements */ + --body-text-color: #353833; + --block-text-color: #474747; + /* Background colors for various structural elements */ + --body-background-color: #ffffff; + --section-background-color: #f8f8f8; + --detail-background-color: #ffffff; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #4D7A97; + --navbar-text-color: #ffffff; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #dee3e9; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #f8981d; + --selected-text-color: #253441; + --selected-link-color: #1f389c; + /* Background colors for generated tables */ + --even-row-color: #ffffff; + --odd-row-color: #eeeeef; + /* Text color for page title */ + --title-color: #2c4557; + /* Text colors for links */ + --link-color: #4A6782; + --link-color-active: #bb7a2a; + /* Snippet colors */ + --snippet-background-color: #ebecee; + --snippet-text-color: var(--block-text-color); + --snippet-highlight-color: #f7c590; + /* Border colors for structural elements and user defined tables */ + --border-color: #ededed; + --table-border-color: #000000; + /* Search input colors */ + --search-input-background-color: #ffffff; + --search-input-text-color: #000000; + --search-input-placeholder-color: #909090; + /* Highlight color for active search tag target */ + --search-tag-highlight-color: #ffff00; + /* Adjustments for icon and active background colors of copy-to-clipboard buttons */ + --copy-icon-brightness: 100%; + --copy-button-background-color-active: rgba(168, 168, 176, 0.3); + /* Colors for invalid tag notifications */ + --invalid-tag-background-color: #ffe6e6; + --invalid-tag-text-color: #000000; +} +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ +body { + background-color:var(--body-background-color); + color:var(--body-text-color); + font-family:var(--body-font-family); + font-size:var(--body-font-size); + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:var(--link-color); +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:var(--link-color-active); +} +pre { + font-family:var(--code-font-family); + font-size:1em; +} +h1 { + font-size:1.428em; +} +h2 { + font-size:1.285em; +} +h3 { + font-size:1.14em; +} +h4 { + font-size:1.072em; +} +h5 { + font-size:1.001em; +} +h6 { + font-size:0.93em; +} +/* Disable font boosting for selected elements */ +h1, h2, h3, h4, h5, h6, div.member-signature { + max-height: 1000em; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:var(--code-font-family); +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:var(--code-font-size); + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:var(--code-font-family); + font-size:1em; + padding-top:4px; +} +.summary-table dt code { + font-family:var(--code-font-family); + font-size:1em; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: var(--body-font-family); + font-size: 1em; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:0.915em; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +/* + * Styles for navigation bar. + */ +@media screen { + div.flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + header.flex-header { + flex: 0 0 auto; + } + div.flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + float:left; + width:100%; + clear:right; + min-height:2.8em; + padding:10px 0 0 0; + overflow:hidden; + font-size:0.857em; +} +button#navbar-toggle-button { + display:none; +} +ul.sub-nav-list-small { + display: none; +} +.sub-nav { + background-color:var(--subnav-background-color); + float:left; + width:100%; + overflow:hidden; + font-size:0.857em; +} +.sub-nav div { + clear:left; + float:left; + padding:6px; + text-transform:uppercase; +} +.sub-nav .sub-nav-list { + padding-top:4px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0; + padding:6px; + clear:none; + text-align:right; + position:relative; +} +ul.sub-nav-list li { + list-style:none; + float:left; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:var(--navbar-text-color); + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + color:var(--link-color-active); +} +.nav-bar-cell1-rev { + background-color:var(--selected-background-color); + color:var(--selected-text-color); + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header. + */ +.title { + color:var(--title-color); + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +ul.contents-list { + margin: 0 0 15px 0; + padding: 0; + list-style: none; +} +ul.contents-list li { + font-size:0.93em; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:var(--subnav-background-color); + border:1px solid var(--border-color); + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: var(--body-font-family); + font-size:0.856em; + font-weight:bold; + margin:10px 0 0 0; + color:var(--body-text-color); +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:1em; + font-family:var(--block-font-family) +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.ref-list { + padding:0; + margin:0; +} +ul.ref-list > li { + list-style:none; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.tag-list, ul.tag-list-long { + padding-left: 0; + list-style: none; +} +ul.tag-list li { + display: inline; +} +ul.tag-list li:not(:last-child):after, +ul.tag-list-long li:not(:last-child):after +{ + content: ", "; + white-space: pre-wrap; +} +ul.preview-feature-list { + list-style: none; + margin:0; + padding:0.1em; + line-height: 1.6em; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border:1px solid var(--border-color); + border-top:0; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:var(--selected-text-color); + clear:none; + overflow:hidden; + padding: 10px 0 0 1px; + margin:0; +} +.caption a:link, .caption a:visited { + color:var(--selected-link-color); +} +.caption a:hover, +.caption a:active { + color:var(--navbar-text-color); +} +.caption span { + font-weight:bold; + white-space:nowrap; + padding:5px 12px 7px 12px; + display:inline-block; + float:left; + background-color:var(--selected-background-color); + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:10px 0 0 0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 8px; +} +div.table-tabs > .active-table-tab { + background: var(--selected-background-color); + color: var(--selected-text-color); +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.two-column-search-results { + display: grid; + grid-template-columns: minmax(400px, max-content) minmax(400px, auto); +} +div.checkboxes { + line-height: 2em; +} +div.checkboxes > span { + margin-left: 10px; +} +div.checkboxes > label { + margin-left: 8px; + white-space: nowrap; +} +div.checkboxes > label > input { + margin: 0 2px; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(25%, max-content) minmax(25%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto); +} +.three-column-release-summary { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +@media screen and (max-width: 800px) { + .two-column-search-results { + display: grid; + grid-template-columns: minmax(40%, max-content) minmax(40%, auto); + } + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-release-summary { + display: grid; + grid-template-columns: minmax(70%, max-content) minmax(30%, max-content) + } + .three-column-summary .col-last, + .three-column-release-summary .col-last{ + grid-column-end: span 2; + } +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; + overflow-x: auto; + scrollbar-width: thin; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:var(--subnav-background-color); + font-weight: bold; +} +/* Sortable table columns */ +.table-header[onclick] { + cursor: pointer; +} +.table-header[onclick]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + '); + background-size:100% 100%; + width:9px; + height:14px; + margin-left:4px; + margin-bottom:-3px; +} +.table-header[onclick].sort-asc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + +} +.table-header[onclick].sort-desc::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +.col-first, .col-first { + font-size:0.93em; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:0.93em; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited { + font-weight:bold; +} +.even-row-color, .even-row-color .table-header { + background-color:var(--even-row-color); +} +.odd-row-color, .odd-row-color .table-header { + background-color:var(--odd-row-color); +} +/* + * Styles for contents. + */ +div.block { + font-size:var(--body-font-size); + font-family:var(--block-font-family); +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:var(--code-font-family); + font-size:1em; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + /* Color of line numbers in source pages can be set via custom property below */ + color:var(--source-linenumber-color, green); + padding:0 30px 0 0; +} +.block { + display:block; + margin:0 10px 5px 0; + color:var(--block-text-color); +} +.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:1em; + font-family:var(--block-font-family); + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +details.invalid-tag, span.invalid-tag { + font-size:1em; + font-family:var(--block-font-family); + color: var(--invalid-tag-text-color); + background: var(--invalid-tag-background-color); + border: thin solid var(--table-border-color); + border-radius:2px; + padding: 2px 4px; + display:inline-block; +} +details summary { + cursor: pointer; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-state-active { + /* Overrides the color of selection used in jQuery UI */ + background: var(--selected-background-color); + border: 1px solid var(--selected-background-color); + color: var(--selected-text-color); +} +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:auto; + overflow-x:auto; + scrollbar-width: thin; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:1; + background-color: var(--body-background-color); +} +ul.ui-autocomplete li { + float:left; + clear:both; + min-width:100%; +} +ul.ui-autocomplete li.ui-static-link { + position:sticky; + bottom:0; + left:0; + background: var(--subnav-background-color); + padding: 5px 0; + font-family: var(--body-font-family); + font-size: 0.93em; + font-weight: bolder; + z-index: 2; +} +li.ui-static-link a, li.ui-static-link a:visited { + text-decoration:none; + color:var(--link-color); + float:right; + margin-right:20px; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +.ui-autocomplete .result-highlight { + font-weight:bold; +} +#search-input, #page-search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + background-color: var(--search-input-background-color); + color: var(--search-input-text-color); + border-color: var(--border-color); + padding-left:20px; + width: 250px; + margin: 0; +} +#search-input { + margin-left: 4px; +} +#reset-button { + background-color: transparent; + background-image:url('resources/x.png'); + background-repeat:no-repeat; + background-size:contain; + border:0; + border-radius:0; + width:12px; + height:12px; + position:absolute; + right:12px; + top:10px; + font-size:0; +} +::placeholder { + color:var(--search-input-placeholder-color); + opacity: 1; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:var(--search-tag-highlight-color); +} +details.page-search-details { + display: inline-block; +} +div#result-container { + font-size: 1em; +} +div#result-container a.search-result-link { + padding: 0; + margin: 4px 0; + width: 100%; +} +#result-container .result-highlight { + font-weight:bolder; +} +.page-search-info { + background-color: var(--subnav-background-color); + border-radius: 3px; + border: 0 solid var(--border-color); + padding: 0 8px; + overflow: hidden; + height: 0; + transition: all 0.2s ease; +} +div.table-tabs > button.table-tab { + background: var(--navbar-background-color); + color: var(--navbar-text-color); +} +.page-search-header { + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; + background-color:var(--navbar-background-color); + color:var(--navbar-text-color); + display: inline-block; +} +button.page-search-header { + border: none; + cursor: pointer; +} +span#page-search-link { + text-decoration: underline; +} +.module-graph span, .sealed-graph span { + display:none; + position:absolute; +} +.module-graph:hover span, .sealed-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0 20px 5px 10px; + border: 1px solid var(--border-color); + background-color: var(--section-background-color); +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:var(--detail-background-color); + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} +/* + * Styles for header/section anchor links + */ +a.anchor-link { + opacity: 0; + transition: opacity 0.1s; +} +:hover > a.anchor-link { + opacity: 80%; +} +a.anchor-link:hover, +a.anchor-link:focus-visible, +a.anchor-link.visible { + opacity: 100%; +} +a.anchor-link > img { + width: 0.9em; + height: 0.9em; +} +/* + * Styles for copy-to-clipboard buttons + */ +button.copy { + opacity: 70%; + border: none; + border-radius: 3px; + position: relative; + background:none; + transition: opacity 0.3s; + cursor: pointer; +} +:hover > button.copy { + opacity: 80%; +} +button.copy:hover, +button.copy:active, +button.copy:focus-visible, +button.copy.visible { + opacity: 100%; +} +button.copy img { + position: relative; + background: none; + filter: brightness(var(--copy-icon-brightness)); +} +button.copy:active { + background-color: var(--copy-button-background-color-active); +} +button.copy span { + color: var(--body-text-color); + position: relative; + top: -0.1em; + transition: all 0.1s; + font-size: 0.76rem; + line-height: 1.2em; + opacity: 0; +} +button.copy:hover span, +button.copy:focus-visible span, +button.copy.visible span { + opacity: 100%; +} +/* search page copy button */ +button#page-search-copy { + margin-left: 0.4em; + padding:0.3em; + top:0.13em; +} +button#page-search-copy img { + width: 1.2em; + height: 1.2em; + padding: 0.01em 0; + top: 0.15em; +} +button#page-search-copy span { + color: var(--body-text-color); + line-height: 1.2em; + padding: 0.2em; + top: -0.18em; +} +div.page-search-info:hover button#page-search-copy span { + opacity: 100%; +} +/* snippet copy button */ +button.snippet-copy { + position: absolute; + top: 6px; + right: 6px; + height: 1.7em; + padding: 2px; +} +button.snippet-copy img { + width: 18px; + height: 18px; + padding: 0.05em 0; +} +button.snippet-copy span { + line-height: 1.2em; + padding: 0.2em; + position: relative; + top: -0.5em; +} +div.snippet-container:hover button.snippet-copy span { + opacity: 100%; +} +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped { + border-collapse: collapse; + border: 1px solid var(--table-border-color); +} +table.striped > thead { + background-color: var(--subnav-background-color); +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid var(--table-border-color); +} +table.striped > tbody > tr:nth-child(even) { + background-color: var(--odd-row-color) +} +table.striped > tbody > tr:nth-child(odd) { + background-color: var(--even-row-color) +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid var(--table-border-color); + border-right: 1px solid var(--table-border-color); +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak style for small screens. + */ +@media screen and (max-width: 920px) { + header.flex-header { + max-height: 100vh; + overflow-y: auto; + } + div#navbar-top { + height: 2.8em; + transition: height 0.35s ease; + } + ul.nav-list { + display: block; + width: 40%; + float:left; + clear: left; + margin: 10px 0 0 0; + padding: 0; + } + ul.nav-list li { + float: none; + padding: 6px; + margin-left: 10px; + margin-top: 2px; + } + ul.sub-nav-list-small { + display:block; + height: 100%; + width: 50%; + float: right; + clear: right; + background-color: var(--subnav-background-color); + color: var(--body-text-color); + margin: 6px 0 0 0; + padding: 0; + } + ul.sub-nav-list-small ul { + padding-left: 20px; + } + ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { + color:var(--link-color); + } + ul.sub-nav-list-small a:hover { + color:var(--link-color-active); + } + ul.sub-nav-list-small li { + list-style:none; + float:none; + padding: 6px; + margin-top: 1px; + text-transform:uppercase; + } + ul.sub-nav-list-small > li { + margin-left: 10px; + } + ul.sub-nav-list-small li p { + margin: 5px 0; + } + div#navbar-sub-list { + display: none; + } + .top-nav a:link, .top-nav a:active, .top-nav a:visited { + display: block; + } + button#navbar-toggle-button { + width: 3.4em; + height: 2.8em; + background-color: transparent; + display: block; + float: left; + border: 0; + margin: 0 10px; + cursor: pointer; + font-size: 10px; + } + button#navbar-toggle-button .nav-bar-toggle-icon { + display: block; + width: 24px; + height: 3px; + margin: 1px 0 4px 0; + border-radius: 2px; + transition: all 0.1s; + background-color: var(--navbar-text-color); + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { + transform: rotate(45deg); + transform-origin: 10% 10%; + width: 26px; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { + opacity: 0; + } + button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { + transform: rotate(-45deg); + transform-origin: 10% 90%; + width: 26px; + } +} +@media screen and (max-width: 800px) { + .about-language { + padding-right: 16px; + } + ul.nav-list li { + margin-left: 5px; + } + ul.sub-nav-list-small > li { + margin-left: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 400px) { + .about-language { + font-size: 10px; + padding-right: 12px; + } +} +@media screen and (max-width: 400px) { + .nav-list-search { + width: 94%; + } + #search-input, #page-search-input { + width: 70%; + } +} +@media screen and (max-width: 320px) { + .nav-list-search > label { + display: none; + } + .nav-list-search { + width: 90%; + } + #search-input, #page-search-input { + width: 80%; + } +} + +pre.snippet { + background-color: var(--snippet-background-color); + color: var(--snippet-text-color); + padding: 10px; + margin: 12px 0; + overflow: auto; + white-space: pre; +} +div.snippet-container { + position: relative; +} +@media screen and (max-width: 800px) { + pre.snippet { + padding-top: 26px; + } + button.snippet-copy { + top: 4px; + right: 4px; + } +} +pre.snippet .italic { + font-style: italic; +} +pre.snippet .bold { + font-weight: bold; +} +pre.snippet .highlighted { + background-color: var(--snippet-highlight-color); + border-radius: 10%; +} diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/tag-search-index.js b/Hjemmeopgaver/Hjemmeopgave nr 3/tag-search-index.js new file mode 100644 index 0000000..0367dae --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr 3/type-search-index.js b/Hjemmeopgaver/Hjemmeopgave nr 3/type-search-index.js new file mode 100644 index 0000000..76b716a --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr 3/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"","l":"GameOfLifeMain"}];updateSearchResults(); \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/-100-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/-100-gridSize.png new file mode 100644 index 0000000..51576d8 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/-100-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/.gitignore b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/libraries/Gruppeaflevering_2___Gruppe_13___kode.xml b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/libraries/Gruppeaflevering_2___Gruppe_13___kode.xml new file mode 100644 index 0000000..07e6881 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/libraries/Gruppeaflevering_2___Gruppe_13___kode.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/misc.xml b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/misc.xml new file mode 100644 index 0000000..33bc2dd --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/modules.xml b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/modules.xml new file mode 100644 index 0000000..19abc9e --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/0-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/0-gridSize.png new file mode 100644 index 0000000..f5006af Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/0-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/100-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/100-gridSize.png new file mode 100644 index 0000000..e735260 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/100-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/1000-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/1000-gridSize.png new file mode 100644 index 0000000..0906ea0 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/1000-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/10000-gridsize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/10000-gridsize.png new file mode 100644 index 0000000..9943c9e Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/10000-gridsize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/25-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/25-gridSize.png new file mode 100644 index 0000000..4c76b2f Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/25-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/50-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/50-gridSize.png new file mode 100644 index 0000000..55180b5 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/50-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/75-gridSize.png b/Hjemmeopgaver/Hjemmeopgave nr. 2/75-gridSize.png new file mode 100644 index 0000000..76b2c8a Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/75-gridSize.png differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering 2 - Gruppe 13 - kode.zip b/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering 2 - Gruppe 13 - kode.zip new file mode 100644 index 0000000..205e552 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering 2 - Gruppe 13 - kode.zip differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering-2 - Gruppe 13.pdf b/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering-2 - Gruppe 13.pdf new file mode 100644 index 0000000..40efb59 Binary files /dev/null and b/Hjemmeopgaver/Hjemmeopgave nr. 2/Gruppeaflevering-2 - Gruppe 13.pdf differ diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/Hjemmeopgave nr. 2.iml b/Hjemmeopgaver/Hjemmeopgave nr. 2/Hjemmeopgave nr. 2.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/Hjemmeopgave nr. 2.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/RandomWalk.java b/Hjemmeopgaver/Hjemmeopgave nr. 2/RandomWalk.java new file mode 100644 index 0000000..6871859 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/RandomWalk.java @@ -0,0 +1,37 @@ +import java.util.Random; +import java.util.Scanner; + +public class RandomWalk { + + public static void main(String[] args) { + Scanner console = new Scanner(System.in); + Random random = new Random(); + System.out.print("Enter size of grid: "); + int gridSize = 0; + if (!console.hasNextInt()) { + throw new IllegalArgumentException("Not a number"); + } else { + gridSize = Math.abs(console.nextInt()); + } + StdDraw.setXscale(-gridSize, gridSize); // Opsætning af StdDraw, sætter størelse på felt til -gridSize, gridSize i x og y. + StdDraw.setYscale(-gridSize, gridSize); + StdDraw.setPenRadius(2.0 / (gridSize*4)); + int x = 0; + int y = 0; + int numSteps = 0; + while ( + x >= -gridSize && x <= gridSize && y >= -gridSize && y <= gridSize // Mens punktet er inde for -gridSize, gridSize i både x og y. + ) { + int direction = random.nextInt(4); // Random værdi (0, 1, 2 eller 3). 0 = op. 1 = ned. 2 = venstre. 3 = højre. + if (direction >= 2) { + x += (direction == 3 ? 1 : -1); // Bevæg sig venstre eller højre + } else { + y += (direction == 1 ? 1 : -1); // Bevæg sig op eller ned + } + System.out.println("Position: (" + x + ", " + y + ")"); + numSteps++; + StdDraw.point(x,y); + } + System.out.println("Total number of steps: " + numSteps); + } +} diff --git a/Hjemmeopgaver/Hjemmeopgave nr. 2/StdDraw.java b/Hjemmeopgaver/Hjemmeopgave nr. 2/StdDraw.java new file mode 100644 index 0000000..db82ee0 --- /dev/null +++ b/Hjemmeopgaver/Hjemmeopgave nr. 2/StdDraw.java @@ -0,0 +1,1124 @@ +/************************************************************************* + * Compilation: javac StdDraw.java + * Execution: java StdDraw + * + * Standard drawing library. This class provides a basic capability for + * creating drawings with your programs. It uses a simple graphics model that + * allows you to create drawings consisting of points, lines, and curves + * in a window on your computer and to save the drawings to a file. + * + * Todo + * ---- + * - Add support for gradient fill, etc. + * - Fix setCanvasSize() so that it can only be called once. + * - On some systems, drawing a line (or other shape) that extends way + * beyond canvas (e.g., to infinity) dimensions does not get drawn. + * + * Remarks + * ------- + * - don't use AffineTransform for rescaling since it inverts + * images and strings + * - careful using setFont in inner loop within an animation - + * it can cause flicker + * + *************************************************************************/ + +import java.awt.*; +import java.awt.event.*; +import java.awt.geom.*; +import java.awt.image.*; +import java.io.*; +import java.net.*; +import java.util.LinkedList; +import java.util.TreeSet; +import javax.imageio.ImageIO; +import javax.swing.*; + +/** + * Standard draw. This class provides a basic capability for + * creating drawings with your programs. It uses a simple graphics model that + * allows you to create drawings consisting of points, lines, and curves + * in a window on your computer and to save the drawings to a file. + *

    + * For additional documentation, see Section 1.5 of + * Introduction to Programming in Java: An Interdisciplinary Approach by Robert Sedgewick and Kevin Wayne. + * + * @author Robert Sedgewick + * @author Kevin Wayne + */ +public final class StdDraw implements ActionListener, MouseListener, MouseMotionListener, KeyListener { + + // pre-defined colors + public static final Color BLACK = Color.BLACK; + public static final Color BLUE = Color.BLUE; + public static final Color CYAN = Color.CYAN; + public static final Color DARK_GRAY = Color.DARK_GRAY; + public static final Color GRAY = Color.GRAY; + public static final Color GREEN = Color.GREEN; + public static final Color LIGHT_GRAY = Color.LIGHT_GRAY; + public static final Color MAGENTA = Color.MAGENTA; + public static final Color ORANGE = Color.ORANGE; + public static final Color PINK = Color.PINK; + public static final Color RED = Color.RED; + public static final Color WHITE = Color.WHITE; + public static final Color YELLOW = Color.YELLOW; + + /** + * Shade of blue used in Introduction to Programming in Java. + * It is Pantone 300U. The RGB values are approximately (9, 90, 166). + */ + public static final Color BOOK_BLUE = new Color( 9, 90, 166); + public static final Color BOOK_LIGHT_BLUE = new Color(103, 198, 243); + + /** + * Shade of red used in Algorithms 4th edition. + * It is Pantone 1805U. The RGB values are approximately (150, 35, 31). + */ + public static final Color BOOK_RED = new Color(150, 35, 31); + + // default colors + private static final Color DEFAULT_PEN_COLOR = BLACK; + private static final Color DEFAULT_CLEAR_COLOR = WHITE; + + // current pen color + private static Color penColor; + + // default canvas size is DEFAULT_SIZE-by-DEFAULT_SIZE + private static final int DEFAULT_SIZE = 512; + private static int width = DEFAULT_SIZE; + private static int height = DEFAULT_SIZE; + + // default pen radius + private static final double DEFAULT_PEN_RADIUS = 0.002; + + // current pen radius + private static double penRadius; + + // show we draw immediately or wait until next show? + private static boolean defer = false; + + // boundary of drawing canvas, 0% border + // private static final double BORDER = 0.05; + private static final double BORDER = 0.00; + private static final double DEFAULT_XMIN = 0.0; + private static final double DEFAULT_XMAX = 1.0; + private static final double DEFAULT_YMIN = 0.0; + private static final double DEFAULT_YMAX = 1.0; + private static double xmin, ymin, xmax, ymax; + + // for synchronization + private static Object mouseLock = new Object(); + private static Object keyLock = new Object(); + + // default font + private static final Font DEFAULT_FONT = new Font("SansSerif", Font.PLAIN, 16); + + // current font + private static Font font; + + // double buffered graphics + private static BufferedImage offscreenImage, onscreenImage; + private static Graphics2D offscreen, onscreen; + + // singleton for callbacks: avoids generation of extra .class files + private static StdDraw std = new StdDraw(); + + // the frame for drawing to the screen + private static JFrame frame; + + // mouse state + private static boolean mousePressed = false; + private static double mouseX = 0; + private static double mouseY = 0; + + // queue of typed key characters + private static LinkedList keysTyped = new LinkedList(); + + // set of key codes currently pressed down + private static TreeSet keysDown = new TreeSet(); + + + // singleton pattern: client can't instantiate + private StdDraw() { } + + + // static initializer + static { init(); } + + /** + * Set the window size to the default size 512-by-512 pixels. + * This method must be called before any other commands. + */ + public static void setCanvasSize() { + setCanvasSize(DEFAULT_SIZE, DEFAULT_SIZE); + } + + /** + * Set the window size to w-by-h pixels. + * This method must be called before any other commands. + * + * @param w the width as a number of pixels + * @param h the height as a number of pixels + * @throws a IllegalArgumentException if the width or height is 0 or negative + */ + public static void setCanvasSize(int w, int h) { + if (w < 1 || h < 1) throw new IllegalArgumentException("width and height must be positive"); + width = w; + height = h; + init(); + } + + // init + private static void init() { + if (frame != null) frame.setVisible(false); + frame = new JFrame(); + offscreenImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); + onscreenImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); + offscreen = offscreenImage.createGraphics(); + onscreen = onscreenImage.createGraphics(); + setXscale(); + setYscale(); + offscreen.setColor(DEFAULT_CLEAR_COLOR); + offscreen.fillRect(0, 0, width, height); + setPenColor(); + setPenRadius(); + setFont(); + clear(); + + // add antialiasing + RenderingHints hints = new RenderingHints(RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); + hints.put(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY); + offscreen.addRenderingHints(hints); + + // frame stuff + ImageIcon icon = new ImageIcon(onscreenImage); + JLabel draw = new JLabel(icon); + + draw.addMouseListener(std); + draw.addMouseMotionListener(std); + + frame.setContentPane(draw); + frame.addKeyListener(std); // JLabel cannot get keyboard focus + frame.setResizable(false); + frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // closes all windows + // frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); // closes only current window + frame.setTitle("Standard Draw"); + frame.setJMenuBar(createMenuBar()); + frame.pack(); + frame.requestFocusInWindow(); + frame.setVisible(true); + } + + // create the menu bar (changed to private) + private static JMenuBar createMenuBar() { + JMenuBar menuBar = new JMenuBar(); + JMenu menu = new JMenu("File"); + menuBar.add(menu); + JMenuItem menuItem1 = new JMenuItem(" Save... "); + menuItem1.addActionListener(std); + menuItem1.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S, + Toolkit.getDefaultToolkit().getMenuShortcutKeyMask())); + menu.add(menuItem1); + return menuBar; + } + + + /************************************************************************* + * User and screen coordinate systems + *************************************************************************/ + + /** + * Set the x-scale to be the default (between 0.0 and 1.0). + */ + public static void setXscale() { setXscale(DEFAULT_XMIN, DEFAULT_XMAX); } + + /** + * Set the y-scale to be the default (between 0.0 and 1.0). + */ + public static void setYscale() { setYscale(DEFAULT_YMIN, DEFAULT_YMAX); } + + /** + * Set the x-scale + * @param min the minimum value of the x-scale + * @param max the maximum value of the x-scale + */ + public static void setXscale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + xmin = min - BORDER * size; + xmax = max + BORDER * size; + } + } + + /** + * Set the y-scale + * @param min the minimum value of the y-scale + * @param max the maximum value of the y-scale + */ + public static void setYscale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + ymin = min - BORDER * size; + ymax = max + BORDER * size; + } + } + + /** + * Set the x-scale and y-scale + * @param min the minimum value of the x- and y-scales + * @param max the maximum value of the x- and y-scales + */ + public static void setScale(double min, double max) { + double size = max - min; + synchronized (mouseLock) { + xmin = min - BORDER * size; + xmax = max + BORDER * size; + ymin = min - BORDER * size; + ymax = max + BORDER * size; + } + } + + // helper functions that scale from user coordinates to screen coordinates and back + private static double scaleX(double x) { return width * (x - xmin) / (xmax - xmin); } + private static double scaleY(double y) { return height * (ymax - y) / (ymax - ymin); } + private static double factorX(double w) { return w * width / Math.abs(xmax - xmin); } + private static double factorY(double h) { return h * height / Math.abs(ymax - ymin); } + private static double userX(double x) { return xmin + x * (xmax - xmin) / width; } + private static double userY(double y) { return ymax - y * (ymax - ymin) / height; } + + + /** + * Clear the screen to the default color (white). + */ + public static void clear() { clear(DEFAULT_CLEAR_COLOR); } + /** + * Clear the screen to the given color. + * @param color the Color to make the background + */ + public static void clear(Color color) { + offscreen.setColor(color); + offscreen.fillRect(0, 0, width, height); + offscreen.setColor(penColor); + draw(); + } + + /** + * Get the current pen radius. + */ + public static double getPenRadius() { return penRadius; } + + /** + * Set the pen size to the default (.002). + */ + public static void setPenRadius() { setPenRadius(DEFAULT_PEN_RADIUS); } + /** + * Set the radius of the pen to the given size. + * @param r the radius of the pen + * @throws IllegalArgumentException if r is negative + */ + public static void setPenRadius(double r) { + if (r < 0) throw new IllegalArgumentException("pen radius must be nonnegative"); + penRadius = r; + float scaledPenRadius = (float) (r * DEFAULT_SIZE); + BasicStroke stroke = new BasicStroke(scaledPenRadius, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND); + // BasicStroke stroke = new BasicStroke(scaledPenRadius); + offscreen.setStroke(stroke); + } + + /** + * Get the current pen color. + */ + public static Color getPenColor() { return penColor; } + + /** + * Set the pen color to the default color (black). + */ + public static void setPenColor() { setPenColor(DEFAULT_PEN_COLOR); } + + /** + * Set the pen color to the given color. The available pen colors are + * BLACK, BLUE, CYAN, DARK_GRAY, GRAY, GREEN, LIGHT_GRAY, MAGENTA, + * ORANGE, PINK, RED, WHITE, and YELLOW. + * @param color the Color to make the pen + */ + public static void setPenColor(Color color) { + penColor = color; + offscreen.setColor(penColor); + } + + /** + * Set the pen color to the given RGB color. + * @param red the amount of red (between 0 and 255) + * @param green the amount of green (between 0 and 255) + * @param blue the amount of blue (between 0 and 255) + * @throws IllegalArgumentException if the amount of red, green, or blue are outside prescribed range + */ + public static void setPenColor(int red, int green, int blue) { + if (red < 0 || red >= 256) throw new IllegalArgumentException("amount of red must be between 0 and 255"); + if (green < 0 || green >= 256) throw new IllegalArgumentException("amount of green must be between 0 and 255"); + if (blue < 0 || blue >= 256) throw new IllegalArgumentException("amount of blue must be between 0 and 255"); + setPenColor(new Color(red, green, blue)); + } + + /** + * Get the current font. + */ + public static Font getFont() { return font; } + + /** + * Set the font to the default font (sans serif, 16 point). + */ + public static void setFont() { setFont(DEFAULT_FONT); } + + /** + * Set the font to the given value. + * @param f the font to make text + */ + public static void setFont(Font f) { font = f; } + + + /************************************************************************* + * Drawing geometric shapes. + *************************************************************************/ + + /** + * Draw a line from (x0, y0) to (x1, y1). + * @param x0 the x-coordinate of the starting point + * @param y0 the y-coordinate of the starting point + * @param x1 the x-coordinate of the destination point + * @param y1 the y-coordinate of the destination point + */ + public static void line(double x0, double y0, double x1, double y1) { + offscreen.draw(new Line2D.Double(scaleX(x0), scaleY(y0), scaleX(x1), scaleY(y1))); + draw(); + } + + /** + * Draw one pixel at (x, y). + * @param x the x-coordinate of the pixel + * @param y the y-coordinate of the pixel + */ + private static void pixel(double x, double y) { + offscreen.fillRect((int) Math.round(scaleX(x)), (int) Math.round(scaleY(y)), 1, 1); + } + + /** + * Draw a point at (x, y). + * @param x the x-coordinate of the point + * @param y the y-coordinate of the point + */ + public static void point(double x, double y) { + double xs = scaleX(x); + double ys = scaleY(y); + double r = penRadius; + float scaledPenRadius = (float) (r * DEFAULT_SIZE); + + // double ws = factorX(2*r); + // double hs = factorY(2*r); + // if (ws <= 1 && hs <= 1) pixel(x, y); + if (scaledPenRadius <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - scaledPenRadius/2, ys - scaledPenRadius/2, + scaledPenRadius, scaledPenRadius)); + draw(); + } + + /** + * Draw a circle of radius r, centered on (x, y). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void circle(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("circle radius must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw filled circle of radius r, centered on (x, y). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void filledCircle(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("circle radius must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw an ellipse with given semimajor and semiminor axes, centered on (x, y). + * @param x the x-coordinate of the center of the ellipse + * @param y the y-coordinate of the center of the ellipse + * @param semiMajorAxis is the semimajor axis of the ellipse + * @param semiMinorAxis is the semiminor axis of the ellipse + * @throws IllegalArgumentException if either of the axes are negative + */ + public static void ellipse(double x, double y, double semiMajorAxis, double semiMinorAxis) { + if (semiMajorAxis < 0) throw new IllegalArgumentException("ellipse semimajor axis must be nonnegative"); + if (semiMinorAxis < 0) throw new IllegalArgumentException("ellipse semiminor axis must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*semiMajorAxis); + double hs = factorY(2*semiMinorAxis); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw an ellipse with given semimajor and semiminor axes, centered on (x, y). + * @param x the x-coordinate of the center of the ellipse + * @param y the y-coordinate of the center of the ellipse + * @param semiMajorAxis is the semimajor axis of the ellipse + * @param semiMinorAxis is the semiminor axis of the ellipse + * @throws IllegalArgumentException if either of the axes are negative + */ + public static void filledEllipse(double x, double y, double semiMajorAxis, double semiMinorAxis) { + if (semiMajorAxis < 0) throw new IllegalArgumentException("ellipse semimajor axis must be nonnegative"); + if (semiMinorAxis < 0) throw new IllegalArgumentException("ellipse semiminor axis must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*semiMajorAxis); + double hs = factorY(2*semiMinorAxis); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Ellipse2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw an arc of radius r, centered on (x, y), from angle1 to angle2 (in degrees). + * @param x the x-coordinate of the center of the circle + * @param y the y-coordinate of the center of the circle + * @param r the radius of the circle + * @param angle1 the starting angle. 0 would mean an arc beginning at 3 o'clock. + * @param angle2 the angle at the end of the arc. For example, if + * you want a 90 degree arc, then angle2 should be angle1 + 90. + * @throws IllegalArgumentException if the radius of the circle is negative + */ + public static void arc(double x, double y, double r, double angle1, double angle2) { + if (r < 0) throw new IllegalArgumentException("arc radius must be nonnegative"); + while (angle2 < angle1) angle2 += 360; + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Arc2D.Double(xs - ws/2, ys - hs/2, ws, hs, angle1, angle2 - angle1, Arc2D.OPEN)); + draw(); + } + + /** + * Draw a square of side length 2r, centered on (x, y). + * @param x the x-coordinate of the center of the square + * @param y the y-coordinate of the center of the square + * @param r radius is half the length of any side of the square + * @throws IllegalArgumentException if r is negative + */ + public static void square(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("square side length must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw a filled square of side length 2r, centered on (x, y). + * @param x the x-coordinate of the center of the square + * @param y the y-coordinate of the center of the square + * @param r radius is half the length of any side of the square + * @throws IllegalArgumentException if r is negative + */ + public static void filledSquare(double x, double y, double r) { + if (r < 0) throw new IllegalArgumentException("square side length must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*r); + double hs = factorY(2*r); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw a rectangle of given half width and half height, centered on (x, y). + * @param x the x-coordinate of the center of the rectangle + * @param y the y-coordinate of the center of the rectangle + * @param halfWidth is half the width of the rectangle + * @param halfHeight is half the height of the rectangle + * @throws IllegalArgumentException if halfWidth or halfHeight is negative + */ + public static void rectangle(double x, double y, double halfWidth, double halfHeight) { + if (halfWidth < 0) throw new IllegalArgumentException("half width must be nonnegative"); + if (halfHeight < 0) throw new IllegalArgumentException("half height must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*halfWidth); + double hs = factorY(2*halfHeight); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.draw(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + /** + * Draw a filled rectangle of given half width and half height, centered on (x, y). + * @param x the x-coordinate of the center of the rectangle + * @param y the y-coordinate of the center of the rectangle + * @param halfWidth is half the width of the rectangle + * @param halfHeight is half the height of the rectangle + * @throws IllegalArgumentException if halfWidth or halfHeight is negative + */ + public static void filledRectangle(double x, double y, double halfWidth, double halfHeight) { + if (halfWidth < 0) throw new IllegalArgumentException("half width must be nonnegative"); + if (halfHeight < 0) throw new IllegalArgumentException("half height must be nonnegative"); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(2*halfWidth); + double hs = factorY(2*halfHeight); + if (ws <= 1 && hs <= 1) pixel(x, y); + else offscreen.fill(new Rectangle2D.Double(xs - ws/2, ys - hs/2, ws, hs)); + draw(); + } + + + /** + * Draw a polygon with the given (x[i], y[i]) coordinates. + * @param x an array of all the x-coordindates of the polygon + * @param y an array of all the y-coordindates of the polygon + */ + public static void polygon(double[] x, double[] y) { + int N = x.length; + GeneralPath path = new GeneralPath(); + path.moveTo((float) scaleX(x[0]), (float) scaleY(y[0])); + for (int i = 0; i < N; i++) + path.lineTo((float) scaleX(x[i]), (float) scaleY(y[i])); + path.closePath(); + offscreen.draw(path); + draw(); + } + + /** + * Draw a filled polygon with the given (x[i], y[i]) coordinates. + * @param x an array of all the x-coordindates of the polygon + * @param y an array of all the y-coordindates of the polygon + */ + public static void filledPolygon(double[] x, double[] y) { + int N = x.length; + GeneralPath path = new GeneralPath(); + path.moveTo((float) scaleX(x[0]), (float) scaleY(y[0])); + for (int i = 0; i < N; i++) + path.lineTo((float) scaleX(x[i]), (float) scaleY(y[i])); + path.closePath(); + offscreen.fill(path); + draw(); + } + + + + /************************************************************************* + * Drawing images. + *************************************************************************/ + + // get an image from the given filename + private static Image getImage(String filename) { + + // to read from file + ImageIcon icon = new ImageIcon(filename); + + // try to read from URL + if ((icon == null) || (icon.getImageLoadStatus() != MediaTracker.COMPLETE)) { + try { + URL url = new URL(filename); + icon = new ImageIcon(url); + } catch (Exception e) { /* not a url */ } + } + + // in case file is inside a .jar + if ((icon == null) || (icon.getImageLoadStatus() != MediaTracker.COMPLETE)) { + URL url = StdDraw.class.getResource(filename); + if (url == null) throw new IllegalArgumentException("image " + filename + " not found"); + icon = new ImageIcon(url); + } + + return icon.getImage(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y). + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = image.getWidth(null); + int hs = image.getHeight(null); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), (int) Math.round(ys - hs/2.0), null); + draw(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), + * rotated given number of degrees + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param degrees is the number of degrees to rotate counterclockwise + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double degrees) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = image.getWidth(null); + int hs = image.getHeight(null); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), (int) Math.round(ys - hs/2.0), null); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + + draw(); + } + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), rescaled to w-by-h. + * @param x the center x coordinate of the image + * @param y the center y coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param w the width of the image + * @param h the height of the image + * @throws IllegalArgumentException if the width height are negative + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double w, double h) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + if (w < 0) throw new IllegalArgumentException("width is negative: " + w); + if (h < 0) throw new IllegalArgumentException("height is negative: " + h); + double ws = factorX(w); + double hs = factorY(h); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + if (ws <= 1 && hs <= 1) pixel(x, y); + else { + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), + (int) Math.round(ys - hs/2.0), + (int) Math.round(ws), + (int) Math.round(hs), null); + } + draw(); + } + + + /** + * Draw picture (gif, jpg, or png) centered on (x, y), rotated + * given number of degrees, rescaled to w-by-h. + * @param x the center x-coordinate of the image + * @param y the center y-coordinate of the image + * @param s the name of the image/picture, e.g., "ball.gif" + * @param w the width of the image + * @param h the height of the image + * @param degrees is the number of degrees to rotate counterclockwise + * @throws IllegalArgumentException if the image is corrupt + */ + public static void picture(double x, double y, String s, double w, double h, double degrees) { + Image image = getImage(s); + double xs = scaleX(x); + double ys = scaleY(y); + double ws = factorX(w); + double hs = factorY(h); + if (ws < 0 || hs < 0) throw new IllegalArgumentException("image " + s + " is corrupt"); + if (ws <= 1 && hs <= 1) pixel(x, y); + + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + offscreen.drawImage(image, (int) Math.round(xs - ws/2.0), + (int) Math.round(ys - hs/2.0), + (int) Math.round(ws), + (int) Math.round(hs), null); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + + draw(); + } + + + /************************************************************************* + * Drawing text. + *************************************************************************/ + + /** + * Write the given text string in the current font, centered on (x, y). + * @param x the center x-coordinate of the text + * @param y the center y-coordinate of the text + * @param s the text + */ + public static void text(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = metrics.stringWidth(s); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs - ws/2.0), (float) (ys + hs)); + draw(); + } + + /** + * Write the given text string in the current font, centered on (x, y) and + * rotated by the specified number of degrees + * @param x the center x-coordinate of the text + * @param y the center y-coordinate of the text + * @param s the text + * @param degrees is the number of degrees to rotate counterclockwise + */ + public static void text(double x, double y, String s, double degrees) { + double xs = scaleX(x); + double ys = scaleY(y); + offscreen.rotate(Math.toRadians(-degrees), xs, ys); + text(x, y, s); + offscreen.rotate(Math.toRadians(+degrees), xs, ys); + } + + + /** + * Write the given text string in the current font, left-aligned at (x, y). + * @param x the x-coordinate of the text + * @param y the y-coordinate of the text + * @param s the text + */ + public static void textLeft(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs), (float) (ys + hs)); + draw(); + } + + /** + * Write the given text string in the current font, right-aligned at (x, y). + * @param x the x-coordinate of the text + * @param y the y-coordinate of the text + * @param s the text + */ + public static void textRight(double x, double y, String s) { + offscreen.setFont(font); + FontMetrics metrics = offscreen.getFontMetrics(); + double xs = scaleX(x); + double ys = scaleY(y); + int ws = metrics.stringWidth(s); + int hs = metrics.getDescent(); + offscreen.drawString(s, (float) (xs - ws), (float) (ys + hs)); + draw(); + } + + + + /** + * Display on screen, pause for t milliseconds, and turn on + * animation mode: subsequent calls to + * drawing methods such as line(), circle(), and square() + * will not be displayed on screen until the next call to show(). + * This is useful for producing animations (clear the screen, draw a bunch of shapes, + * display on screen for a fixed amount of time, and repeat). It also speeds up + * drawing a huge number of shapes (call show(0) to defer drawing + * on screen, draw the shapes, and call show(0) to display them all + * on screen at once). + * @param t number of milliseconds + */ + public static void show(int t) { + defer = false; + draw(); + try { Thread.sleep(t); } + catch (InterruptedException e) { System.out.println("Error sleeping"); } + defer = true; + } + + /** + * Display on-screen and turn off animation mode: + * subsequent calls to + * drawing methods such as line(), circle(), and square() + * will be displayed on screen when called. This is the default. + */ + public static void show() { + defer = false; + draw(); + } + + // draw onscreen if defer is false + private static void draw() { + if (defer) return; + onscreen.drawImage(offscreenImage, 0, 0, null); + frame.repaint(); + } + + + /************************************************************************* + * Save drawing to a file. + *************************************************************************/ + + /** + * Save onscreen image to file - suffix must be png, jpg, or gif. + * @param filename the name of the file with one of the required suffixes + */ + public static void save(String filename) { + File file = new File(filename); + String suffix = filename.substring(filename.lastIndexOf('.') + 1); + + // png files + if (suffix.toLowerCase().equals("png")) { + try { ImageIO.write(onscreenImage, suffix, file); } + catch (IOException e) { e.printStackTrace(); } + } + + // need to change from ARGB to RGB for jpeg + // reference: http://archives.java.sun.com/cgi-bin/wa?A2=ind0404&L=java2d-interest&D=0&P=2727 + else if (suffix.toLowerCase().equals("jpg")) { + WritableRaster raster = onscreenImage.getRaster(); + WritableRaster newRaster; + newRaster = raster.createWritableChild(0, 0, width, height, 0, 0, new int[] {0, 1, 2}); + DirectColorModel cm = (DirectColorModel) onscreenImage.getColorModel(); + DirectColorModel newCM = new DirectColorModel(cm.getPixelSize(), + cm.getRedMask(), + cm.getGreenMask(), + cm.getBlueMask()); + BufferedImage rgbBuffer = new BufferedImage(newCM, newRaster, false, null); + try { ImageIO.write(rgbBuffer, suffix, file); } + catch (IOException e) { e.printStackTrace(); } + } + + else { + System.out.println("Invalid image file type: " + suffix); + } + } + + + /** + * This method cannot be called directly. + */ + public void actionPerformed(ActionEvent e) { + FileDialog chooser = new FileDialog(StdDraw.frame, "Use a .png or .jpg extension", FileDialog.SAVE); + chooser.setVisible(true); + String filename = chooser.getFile(); + if (filename != null) { + StdDraw.save(chooser.getDirectory() + File.separator + chooser.getFile()); + } + } + + + /************************************************************************* + * Mouse interactions. + *************************************************************************/ + + /** + * Is the mouse being pressed? + * @return true or false + */ + public static boolean mousePressed() { + synchronized (mouseLock) { + return mousePressed; + } + } + + /** + * What is the x-coordinate of the mouse? + * @return the value of the x-coordinate of the mouse + */ + public static double mouseX() { + synchronized (mouseLock) { + return mouseX; + } + } + + /** + * What is the y-coordinate of the mouse? + * @return the value of the y-coordinate of the mouse + */ + public static double mouseY() { + synchronized (mouseLock) { + return mouseY; + } + } + + + /** + * This method cannot be called directly. + */ + public void mouseClicked(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mouseEntered(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mouseExited(MouseEvent e) { } + + /** + * This method cannot be called directly. + */ + public void mousePressed(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + mousePressed = true; + } + } + + /** + * This method cannot be called directly. + */ + public void mouseReleased(MouseEvent e) { + synchronized (mouseLock) { + mousePressed = false; + } + } + + /** + * This method cannot be called directly. + */ + public void mouseDragged(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + } + } + + /** + * This method cannot be called directly. + */ + public void mouseMoved(MouseEvent e) { + synchronized (mouseLock) { + mouseX = StdDraw.userX(e.getX()); + mouseY = StdDraw.userY(e.getY()); + } + } + + + /************************************************************************* + * Keyboard interactions. + *************************************************************************/ + + /** + * Has the user typed a key? + * @return true if the user has typed a key, false otherwise + */ + public static boolean hasNextKeyTyped() { + synchronized (keyLock) { + return !keysTyped.isEmpty(); + } + } + + /** + * What is the next key that was typed by the user? This method returns + * a Unicode character corresponding to the key typed (such as 'a' or 'A'). + * It cannot identify action keys (such as F1 + * and arrow keys) or modifier keys (such as control). + * @return the next Unicode key typed + */ + public static char nextKeyTyped() { + synchronized (keyLock) { + return keysTyped.removeLast(); + } + } + + /** + * Is the keycode currently being pressed? This method takes as an argument + * the keycode (corresponding to a physical key). It can handle action keys + * (such as F1 and arrow keys) and modifier keys (such as shift and control). + * See KeyEvent.java + * for a description of key codes. + * @return true if keycode is currently being pressed, false otherwise + */ + public static boolean isKeyPressed(int keycode) { + synchronized (keyLock) { + return keysDown.contains(keycode); + } + } + + + /** + * This method cannot be called directly. + */ + public void keyTyped(KeyEvent e) { + synchronized (keyLock) { + keysTyped.addFirst(e.getKeyChar()); + } + } + + /** + * This method cannot be called directly. + */ + public void keyPressed(KeyEvent e) { + synchronized (keyLock) { + keysDown.add(e.getKeyCode()); + } + } + + /** + * This method cannot be called directly. + */ + public void keyReleased(KeyEvent e) { + synchronized (keyLock) { + keysDown.remove(e.getKeyCode()); + } + } + + + + + /** + * Test client. + */ + public static void main(String[] args) { + StdDraw.square(.2, .8, .1); + StdDraw.filledSquare(.8, .8, .2); + StdDraw.circle(.8, .2, .2); + + StdDraw.setPenColor(StdDraw.BOOK_RED); + StdDraw.setPenRadius(.02); + StdDraw.arc(.8, .2, .1, 200, 45); + + // draw a blue diamond + StdDraw.setPenRadius(); + StdDraw.setPenColor(StdDraw.BOOK_BLUE); + double[] x = { .1, .2, .3, .2 }; + double[] y = { .2, .3, .2, .1 }; + StdDraw.filledPolygon(x, y); + + // text + StdDraw.setPenColor(StdDraw.BLACK); + StdDraw.text(0.2, 0.5, "black text"); + StdDraw.setPenColor(StdDraw.WHITE); + StdDraw.text(0.8, 0.8, "white text"); + } + +} diff --git a/Programering afleveringsopgave nr. 1/.idea/.gitignore b/Programering afleveringsopgave nr. 1/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Programering afleveringsopgave nr. 1/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Programering afleveringsopgave nr. 1/.idea/misc.xml b/Programering afleveringsopgave nr. 1/.idea/misc.xml new file mode 100644 index 0000000..8253e27 --- /dev/null +++ b/Programering afleveringsopgave nr. 1/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/.idea/modules.xml b/Programering afleveringsopgave nr. 1/.idea/modules.xml new file mode 100644 index 0000000..c71320b --- /dev/null +++ b/Programering afleveringsopgave nr. 1/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/Hjemmeopgave.java b/Programering afleveringsopgave nr. 1/Hjemmeopgave.java new file mode 100644 index 0000000..e1d205f --- /dev/null +++ b/Programering afleveringsopgave nr. 1/Hjemmeopgave.java @@ -0,0 +1,46 @@ +public class Hjemmeopgave { + public static void main(String[] args) { + Opgave2.opgave2(); + Opgave3.opgave3(); + Opgave4.opgave4(); + } +} + +class Opgave1 { + public static void opgave1() { + + } +} + +class Opgave2 { + public static void opgave2() { + double x = 7.2; + System.out.println(1 + 3 + x + x + x + x + x + 5 / 4 * 2); + } +} + +class Opgave3 { + public static final int LINES = 3; + public static void opgave3() { + for (int i = 1; i <= LINES ; i++) { + for (int j = 1; j <= LINES; j++) { + System.out.print("+-"); + } + System.out.println("+"); + } + } +} + +class Opgave4 { + public static void opgave4() { + for (int i = 0; i <= 30; i++) { + if (i % 5 == 0) { + System.out.println((i % 3 == 0 ? "Fizz" : "") + "Buzz"); + } else if (i % 3 == 0) { + System.out.println("Fizz"); + } else { + System.out.println(i); + } + } + } +} \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml b/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/.gitignore b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/misc.xml b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/misc.xml new file mode 100644 index 0000000..8253e27 --- /dev/null +++ b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/modules.xml b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/modules.xml new file mode 100644 index 0000000..c71320b --- /dev/null +++ b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Hjemmeopgave.class b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Hjemmeopgave.class new file mode 100644 index 0000000..5e4b038 Binary files /dev/null and b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Hjemmeopgave.class differ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave1.class b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave1.class new file mode 100644 index 0000000..838bc16 Binary files /dev/null and b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave1.class differ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave2.class b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave2.class new file mode 100644 index 0000000..06ff169 Binary files /dev/null and b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave2.class differ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave3.class b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave3.class new file mode 100644 index 0000000..0cfb0a0 Binary files /dev/null and b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave3.class differ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave4.class b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave4.class new file mode 100644 index 0000000..b149f36 Binary files /dev/null and b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Opgave4.class differ diff --git a/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Programering afleveringsopgave nr. 1/out/production/Programering afleveringsopgave nr. 1/Programering afleveringsopgave nr. 1.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Programmering/.vscode/settings.json b/Programmering/.vscode/settings.json new file mode 100644 index 0000000..0ac215c --- /dev/null +++ b/Programmering/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/Programmering/README.md b/Programmering/README.md new file mode 100644 index 0000000..a43b9f6 --- /dev/null +++ b/Programmering/README.md @@ -0,0 +1,18 @@ +## Getting Started + +Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code. + +## Folder Structure + +The workspace contains two folders by default, where: + +- `src`: the folder to maintain sources +- `lib`: the folder to maintain dependencies + +Meanwhile, the compiled output files will be generated in the `bin` folder by default. + +> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there. + +## Dependency Management + +The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies). diff --git a/Programmering/bin/App.class b/Programmering/bin/App.class new file mode 100644 index 0000000..c9aa5f2 Binary files /dev/null and b/Programmering/bin/App.class differ diff --git a/Programmering/src/App.java b/Programmering/src/App.java new file mode 100644 index 0000000..e063da0 --- /dev/null +++ b/Programmering/src/App.java @@ -0,0 +1,40 @@ +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; + +public class App { + public static void main(String[] args) { + + } + public static int sum() { + int sum = 0; + int isInputting = 1; + System.out.println("Enter numbers to get sum. Enter blank to stop and get result"); + while (isInputting == 1) { + BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); + try { + int number = 1; + int numberIndex = 1; + String[] numberString = {"st","nd","rd","th","th","th","th","th","th","th",}; + if (number >= 10) { + number = number - 10; + if (numberIndex == 1) { + numberIndex = 10; + } + else { + numberIndex = numberIndex + 10; + } + System.out.println("Enter the " + number + numberString[number-1] + "number:"); + } + + } catch (Exception e) { + return sum; + } + } + + return sum; + } +} + + + diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/modules.xml new file mode 100644 index 0000000..2ff97c9 --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgave2.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave2.class new file mode 100644 index 0000000..27bc1cf Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave2.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgave3.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave3.class new file mode 100644 index 0000000..b4b4d39 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave3.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgave4.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave4.class new file mode 100644 index 0000000..5cfb14e Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave4.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgave5.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave5.class new file mode 100644 index 0000000..f910233 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave5.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgave6.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave6.class new file mode 100644 index 0000000..2335d3c Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgave6.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver.class b/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver.class new file mode 100644 index 0000000..4165ad2 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver030925.java b/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver030925.java new file mode 100644 index 0000000..2d332a6 --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/Opgaver030925.java @@ -0,0 +1,180 @@ +/* +Kursus 02100 — Ugeseddel-Uge-01-Formiddag +For nogle af jer vil det sikkert være ganske let at gennemføre denne første øvelsesgang, men for andre +kan det være noget mere vanskeligt. Men det er meningen at alle skal kunne være med uafhængigt +af den erfaring man m˚atte have i forvejen! Derfor kan det nu godt alligevel være s˚adan at nogle +har brug for mere hjælp end andre, især denne første øvelsesgang. Hvis du har problemer med at f˚a +tingene til at virke, s˚a sørg for at f˚a hjælp fra sidemanden eller hjælpelæreren. Det er ikke pinligt at +spørge, selv ikke om de mest trivielle ting. Og frem for alt: G˚a ikke i panik, selvom tingene kan virke +uoverskuelige i begyndelsen. Det skal nok komme efterh˚anden... +Opgave 1 +Læs og udfør de ting som er beskrevet i dokumentet IDE.pdf under ‘Vigtige filer’ p˚a DTU Learn. +Dette bringer dig igennem de introducerende ting hvor du f˚ar det integrerede udviklingsmiljø op at +køre og skriver dit første Java-program. +Opgave 2 +Løs nedenst˚aende opgave. +Write a complete Java program that prints the following output: +////////////////////// +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +Opgave 3 +Løs nedenst˚aende opgave. +Write a complete Java program that prints the following output. Use at least one static method +besides main to help you. +1 +////////////////////// +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +|| Victory is mine! || +\\\\\\\\\\\\\\\\\\\\\\ +Opgave 4 +Løs nedenst˚aende opgave. +Write a Java program that generates the following output. Use static methods to show structure and +eliminate redundancy in your solution. Note that there are two rocket ships next to each other. What +redundancy can you eliminate using static methods? What redundancy cannot be eliminated? +/\ /\ +/ \ / \ +/ \ / \ ++------+ +------+ +| | | | +| | | | ++------+ +------+ +|United| |United| +|States| |States| ++------+ +------+ +| | | | +| | | | ++------+ +------+ +/\ /\ +/ \ / \ +/ \ / \ +Opgave 5 +Løs nedenst˚aende opgave. +Sometimes we want to write similar letters to different people. For example, you might write to your +parents to tell them about your classes and your friends, and to ask for money; you might write to a +friend about your love life, your classes, and your hobbies; and you might write to your brother about +your hobbies and your friends and to ask for money. Write a program that prints similar letters such +as these to three people of your choice. Each letter should have at least one paragraph in common +2 +with each of the other. Your main program should have three method calls: one for each of the people +to whom you are writing. Try to isolate repeated tasks into methods. +Opgave 6 +Skriv et program, der udskriver følgende linje 50 gange: +DTU - Det bli’r til noget! +Prøv at gøre programmet s˚a simpelt som muligt, men du m˚a kun bruge de faciliteter i Java, som er +gennemg˚aet i bogens kapitel 1. Du kan m˚aske finde inspiration til en god procedural dekomposition +i bogens beskrivelse af binære tal (eng. binary numbers). Bed eventuelt hjælpelæreren om hjælp. +3 + */ + +public class Opgaver030925 { + public static void main(String[] args) { + System.out.println("\nOPGAVE 2:\n"); + Opgave2.opgave2(); + System.out.println("\nOPGAVE 3:\n"); + Opgave3.opgave3(); + System.out.println("\nOPGAVE 4:\n"); + Opgave4.opgave4(); + System.out.println("\nOPGAVE 5:\n"); + Opgave5.opgave5(); + System.out.println("\nOPGAVE 6:\n"); + Opgave6.opgave6(); + } +} + + +class Opgave2 { + public static void opgave2() { + System.out.println("//////////////////////"); + System.out.println("|| Victory is mine! ||"); + System.out.println("\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"); + } +} + +class Opgave3 { + public static void opgave3() { + Opgave2.opgave2(); + Opgave2.opgave2(); + Opgave2.opgave2(); + Opgave2.opgave2(); + Opgave2.opgave2(); + } +} + +class Opgave4 { + public static void opgave4() { + trekant(); + linjeTing(); + vægTing(); + vægTingUSA(); + linjeTing(); + vægTing(); + linjeTing(); + trekant(); + } + public static void trekant() { + System.out.println(" /\\ /\\ "); + System.out.println(" / \\ / \\ "); + System.out.println(" / \\ / \\ "); + } + public static void linjeTing() { + System.out.println("+------+ +------+"); + } + public static void vægTing() { + System.out.println("| | | |"); + System.out.println("| | | |"); + } + public static void vægTingUSA() { + System.out.println("|United| |United|"); + System.out.println("|States| |States|"); + } +} + +class Opgave5 { + public static void opgave5() { + System.out.println("Kære mor,"); + askMoney(); + tellAboutClasses(); + System.out.println("\nKære bror,"); + tellAboutClasses(); + tellAboutHobbies(); + tellAboutFriends(); + System.out.println("\nKære ven,"); + tellAboutHobbies(); + tellAboutFriends(); + askMoney(); + tellAboutClasses(); + } + public static void askMoney() { + System.out.println("Jeg har meget få pengene lige nu faktisk, hvis du lige kunne sende mig 1 mil ville det være dejligt, tak <3."); + } + public static void tellAboutClasses() { + System.out.println("Jeg er started på uni, er chill nok indtil videre. Dog er vores programmeringslære meget kedeligt cause det er meget simple ting han fortæller om"); + } + public static void tellAboutHobbies() { + System.out.println("Jeg kan godt lide at spille TerraFirmaGreg-modern med en af mine gym-venner. Vi har en server og spiller nogle gange sammen."); + } + public static void tellAboutFriends() { + System.out.println("Jeg har både gym-venner og uni venner. Nogle af mine gym venner går også på uni og er started samtidig med mig."); + } +} + +class Opgave6 { + static int count = 0; + public static void opgave6() { + System.out.println("DTU - Det bli’r til noget!"); + if (count < 50) { + count += 1; + opgave6(); + } + else { + return; + } + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/Programmeringsopgaver 03-09-2025.iml b/Ugesedler/Ugeseddel-1 03-09-2025/Programmeringsopgaver 03-09-2025.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/Programmeringsopgaver 03-09-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/modules.xml new file mode 100644 index 0000000..2ff97c9 --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave2.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave2.class new file mode 100644 index 0000000..9ce81f8 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave2.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave3.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave3.class new file mode 100644 index 0000000..aa79002 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave3.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave4.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave4.class new file mode 100644 index 0000000..16f7306 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave4.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave5.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave5.class new file mode 100644 index 0000000..be4eacb Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave5.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave6.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave6.class new file mode 100644 index 0000000..34b9946 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgave6.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgaver.class b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgaver.class new file mode 100644 index 0000000..9e10fc3 Binary files /dev/null and b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Opgaver.class differ diff --git a/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Programmeringsopgaver 03-09-2025.iml b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Programmeringsopgaver 03-09-2025.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Ugesedler/Ugeseddel-1 03-09-2025/out/production/Programmeringsopgaver 03-09-2025/Programmeringsopgaver 03-09-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/.gitignore b/Ugesedler/Ugeseddel-11-19-11-2025/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.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/Ugesedler/Ugeseddel-11-19-11-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/misc.xml new file mode 100644 index 0000000..2c206c1 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/modules.xml new file mode 100644 index 0000000..2c676a0 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/Ugeseddel-11-19-11-2025.iml b/Ugesedler/Ugeseddel-11-19-11-2025/Ugeseddel-11-19-11-2025.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/Ugeseddel-11-19-11-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/src/HelloWorld.java b/Ugesedler/Ugeseddel-11-19-11-2025/src/HelloWorld.java new file mode 100644 index 0000000..a455f74 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/src/HelloWorld.java @@ -0,0 +1,36 @@ + +import javafx.application.Application; +import javafx.event.ActionEvent; +import javafx.event.EventHandler; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.layout.StackPane; +import javafx.stage.Stage; + +public class HelloWorld extends Application { + + @Override + public void start(Stage primaryStage) { + Button btn = new Button(); + btn.setText("Say 'Hello World'"); + btn.setOnAction(new EventHandler() { + + @Override + public void handle(ActionEvent event) { + System.out.println("Hello World!"); + } + }); + + StackPane root = new StackPane(); + root.getChildren().add(btn); + Scene scene = new Scene(root, 300, 250); + + primaryStage.setTitle("Hello World!"); + primaryStage.setScene(scene); + primaryStage.show(); + } + + public static void main(String[] args) { + launch(args); + } +} diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/src/StackPaneDemo.java b/Ugesedler/Ugeseddel-11-19-11-2025/src/StackPaneDemo.java new file mode 100644 index 0000000..d9dc32b --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/src/StackPaneDemo.java @@ -0,0 +1,86 @@ + +import javafx.application.Application; +import javafx.collections.ObservableList; +import javafx.event.ActionEvent; +import javafx.event.EventHandler; +import javafx.geometry.Insets; +import javafx.geometry.Pos; +import javafx.scene.Node; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.control.CheckBox; +import javafx.scene.control.Label; +import javafx.scene.layout.StackPane; +import javafx.scene.layout.VBox; +import javafx.stage.Stage; + +public class StackPaneDemo extends Application { + + private StackPane stackPane; + + @Override + public void start(Stage primaryStage) throws Exception { + + VBox root = new VBox(); + + // StackPane + stackPane = new StackPane(); + + // add label to StackPane + Label label = new Label("I'm a Label"); + label.setStyle("-fx-background-color:yellow"); + label.setPadding(new Insets(5,5,5,5)); + stackPane.getChildren().add(label); + + // add Button to StackPane + Button button = new Button("I'm a Button"); + button.setStyle("-fx-background-color: cyan"); + button.setPadding(new Insets(5,5,5,5)); + stackPane.getChildren().add(button); + + // add CheckBox to StackPane + CheckBox checkBox = new CheckBox("I'm a CheckBox"); + checkBox.setOpacity(1); + checkBox.setStyle("-fx-background-color:olive"); + checkBox.setPadding(new Insets(5,5,5,5)); + stackPane.getChildren().add(checkBox); + + stackPane.setPrefSize(300, 150); + root.getChildren().add(stackPane); + + Button controlButton = new Button("Change Top"); + + root.getChildren().add(controlButton); + root.setAlignment(Pos.CENTER); + VBox.setMargin(stackPane, new Insets(10, 10, 10, 10)); + VBox.setMargin(controlButton, new Insets(10, 10, 10, 10)); + + Scene scene = new Scene(root, 550, 250); + primaryStage.setTitle("StackPane Layout Demo"); + primaryStage.setScene(scene); + + controlButton.setOnAction(new EventHandler() { + @Override + public void handle(ActionEvent event) { + changeTop(); + } + }); + + primaryStage.show(); + } + + private void changeTop() { + ObservableList children = this.stackPane.getChildren(); + + if (children.size() > 1) { + // + Node topNode = (Node) (children.get(children.size()-1)); + topNode.toBack(); + } + } + + public static void main(String[] args) { + launch(args); + } + +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/src/TestJavaFX.java b/Ugesedler/Ugeseddel-11-19-11-2025/src/TestJavaFX.java new file mode 100644 index 0000000..e92d327 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/src/TestJavaFX.java @@ -0,0 +1,47 @@ +// author: Benjamin Bogø +import javafx.application.Application; +import javafx.event.*; +import javafx.scene.control.Button; +import javafx.scene.input.*; +import javafx.scene.layout.StackPane; +import javafx.scene.Scene; +import javafx.stage.Stage; + +public class TestJavaFX extends Application { + + public static void main(String[] args) { + launch(args); + } + + private int counter = 0; + private Button button = new Button(); + + @Override + public void start(Stage primaryStage) { + primaryStage.setTitle("Hello World!"); + this.button.setText("Im a counter! Click ME!!!"); + this.button.setOnAction(this::handleClick); + StackPane root = new StackPane(); + root.getChildren().add(this.button); + Scene scene = new Scene(root, 300, 250); + scene.addEventHandler(KeyEvent.KEY_PRESSED, this::handleKey); + primaryStage.setScene(scene); + primaryStage.show(); + } + + private void handleClick(ActionEvent event) { + this.counter++; + this.button.setText("" + this.counter); + } + + private void handleKey(KeyEvent event) { + if (event.getCode() == KeyCode.UP) { + this.counter++; + } else if (event.getCode() == KeyCode.DOWN) { + this.counter--; + } else { + return; + } + this.button.setText("" + this.counter); + } +} diff --git a/Ugesedler/Ugeseddel-11-19-11-2025/src/UgeseddelFormiddag.java b/Ugesedler/Ugeseddel-11-19-11-2025/src/UgeseddelFormiddag.java new file mode 100644 index 0000000..88d8785 --- /dev/null +++ b/Ugesedler/Ugeseddel-11-19-11-2025/src/UgeseddelFormiddag.java @@ -0,0 +1,21 @@ +import javafx.application.Application; +import javafx.event.*; +import javafx.scene.control.Button; +import javafx.scene.input.*; +import javafx.scene.layout.StackPane; +import javafx.scene.Scene; +import javafx.stage.Stage; + +public class UgeseddelFormiddag extends Application { + public static void main(String[] args) {launch(args);} + + @Override + public void start(Stage primaryStage) { + primaryStage.setTitle("Hello"); + StackPane root = new StackPane(); + root.getChildren().add(new Button("Button 1")); + Scene scene = new Scene(root, 300, 250); + primaryStage.setScene(scene); + primaryStage.show(); + } +} diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/.gitignore b/Ugesedler/Ugeseddel-12 26-11-2025/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.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/Ugesedler/Ugeseddel-12 26-11-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/misc.xml new file mode 100644 index 0000000..2c206c1 --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/modules.xml new file mode 100644 index 0000000..611282e --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/CounterGUI.zip b/Ugesedler/Ugeseddel-12 26-11-2025/CounterGUI.zip new file mode 100644 index 0000000..c27d9c7 Binary files /dev/null and b/Ugesedler/Ugeseddel-12 26-11-2025/CounterGUI.zip differ diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/Ugeseddel-12 26-11-2025.iml b/Ugesedler/Ugeseddel-12 26-11-2025/Ugeseddel-12 26-11-2025.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/Ugeseddel-12 26-11-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/iLoveJavaFX.tex b/Ugesedler/Ugeseddel-12 26-11-2025/iLoveJavaFX.tex new file mode 100644 index 0000000..7780665 --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/iLoveJavaFX.tex @@ -0,0 +1,27 @@ +\documentclass[12pt,a4paper]{article} + +\usepackage[cm,empty]{fullpage} +\usepackage{parskip} +\usepackage{url} + +\begin{document} + +\emph{\LARGE Individuel aflevering - Opgave med JavaFX (uge 11)} + +Skriv et JavaFX-program \verb+RandomWalk+, der indeholder et vindue med en knap midtpå og en label i bunden, der viser et heltal initialiseret med 0. På knappen skal der enten stå "Up" eller "Down" -- der startes med en tilfældig mulighed (50\,\% sandsynlighed hver), og hver gang der trykkes på knappen, skal der eksekveres en optælling ($+1$) eller nedtælling ($-1$) på labelen afhængig af knappens tekst. Efter klikket skal knappens tekst igen ændres tilfældigt. Du skal bruge \verb+BorderPane+ til layoutet og lambda-udtryk til at håndtere museklik på knappen. + +Udover at aflevere en PDF-fil med JavaFX-programmet skal du lave en videooptagelse, der viser, hvordan du kompilerer og starter programmet fra kommandolinjen og hvordan labelen ændrer sig, mens du klikker mindst 10 gange på knappen. Videoen må maks.\ vare 30 sekunder og skal lægges op i \verb+.mp4+-format. + +\emph{Hint:} Man kan bruge det indbyggede \emph{Snipping Tool} i Windows (Windows+Shift+R) eller \emph{Screen Recording Tool} på Mac (Shift+Command+5) til at lave videoen. + + +% INDSÆT KILDEKODEN AF DIT JAVA-PROGRAM HERUNDER MELLEM \begin{verbatim} og \end{verbatim} + +% Slet den givne opgavetekst i dokumentet (altså alt bortset fra selve løsningen); LaTeX-præamblen og document-miljøet beholdes selvfølgelig. +% Der skal afleveres en PDF-fil genereret af LaTeX (benyt fx Overleaf) samt den ovennævnte videooptagelse +% LaTeX-filen skal ikke afleveres (men den bør dog gemmes) + +\begin{verbatim} +\end{verbatim} + +\end{document} diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/src/RandomWalk.java b/Ugesedler/Ugeseddel-12 26-11-2025/src/RandomWalk.java new file mode 100644 index 0000000..e9faacc --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/src/RandomWalk.java @@ -0,0 +1,46 @@ +import javafx.application.Application; +import javafx.collections.ObservableList; +import javafx.event.ActionEvent; +import javafx.event.EventHandler; +import javafx.geometry.Insets; +import javafx.geometry.Pos; +import javafx.scene.Node; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.control.CheckBox; +import javafx.scene.control.Label; +import javafx.scene.layout.BorderPane; +import javafx.scene.layout.StackPane; +import javafx.scene.layout.VBox; +import javafx.stage.Stage; +import java.util.Random; + +public class RandomWalk extends Application { + private Button button = new Button(); + private int counter = 0; + private Label label = new Label("" + this.counter); + private final Random random = new Random(); + @Override + public void start(Stage primaryStage) throws Exception { + primaryStage.setTitle("Random Walk"); + this.button.setText((random.nextBoolean() ? "Up" : "Down")); + BorderPane borderPane = new BorderPane(); + borderPane.setPadding(new Insets(20, 20,20,20)); + borderPane.setCenter(this.button); + BorderPane.setAlignment(this.button, Pos.CENTER); + borderPane.setBottom(label); + BorderPane.setAlignment(label, Pos.BOTTOM_CENTER); + Scene scene = new Scene(borderPane, 300, 250); + primaryStage.setScene(scene); + this.button.setOnAction(e -> { + counter += (button.getText().equals("Up") ? 1 : -1); + button.setText((random.nextBoolean() ? "Up" : "Down")); + label.setText("" + counter); + }); + primaryStage.show(); + } + + public static void main(String[] args) { + launch(args); + } +} diff --git a/Ugesedler/Ugeseddel-12 26-11-2025/src/TicTacToe.java b/Ugesedler/Ugeseddel-12 26-11-2025/src/TicTacToe.java new file mode 100644 index 0000000..8a7ab62 --- /dev/null +++ b/Ugesedler/Ugeseddel-12 26-11-2025/src/TicTacToe.java @@ -0,0 +1,24 @@ +import javafx.application.Application; +import javafx.collections.ObservableList; +import javafx.event.ActionEvent; +import javafx.event.EventHandler; +import javafx.geometry.Insets; +import javafx.geometry.Pos; +import javafx.scene.Node; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.control.CheckBox; +import javafx.scene.control.Label; +import javafx.scene.layout.BorderPane; +import javafx.scene.layout.StackPane; +import javafx.scene.layout.VBox; +import javafx.stage.Stage; +import java.util.Random; + +public class TicTacToe extends Application { + public void start(Stage primaryStage) throws Exception { + primaryStage.setTitle("Tic Tac Toe"); + + } + public static void main(String[] args) {launch(args);} +} diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/.idea/Programmeringsopgaver 10-09-2025.iml b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/Programmeringsopgaver 10-09-2025.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/Programmeringsopgaver 10-09-2025.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/modules.xml new file mode 100644 index 0000000..75554a0 --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/Opgaver.iml b/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/Opgaver.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/Opgaver.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/src/Opgaver.java b/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/src/Opgaver.java new file mode 100644 index 0000000..3045da2 --- /dev/null +++ b/Ugesedler/Ugeseddel-2 10-09-2025/Opgaver/src/Opgaver.java @@ -0,0 +1,126 @@ +public class Opgaver { + public static void main(String[] args) { + System.out.println(Opgave1.opgave1(10.0,20.0,4.0,2.0)); + /*Opgave2.opgave2(); + Opgave3.opgave3a(); + Opgave3.opgave3b(); + Opgave3.opgave3c(); + Opgave4.opgave4(); + Opgave5.opgave5();*/ + Opgave6.opgave6(); + } +} + +class Opgave1 { + public static double opgave1(double v0, double t, double a, double s0) { + System.out.println("\nOPGAVE 1:\n"); + double s = s0 + v0*t+(0.5*a*(t*t)); + return s; + } +} + +class Opgave2 { + public static void opgave2() { + System.out.println("\nOPGAVE 2\n"); + for (int i = 1; i <= 10; i++) { + System.out.print(" " + i*i); + } + System.out.println(); + } +} + +class Opgave3 { + public static void opgave3a() { + System.out.println("\nOPGAVE 3\n"); + System.out.println("3a:"); + for (int g = 1; g <= 3; g++) { + for (int i = 0; i < 10; i++) { + for (int j = 1; j <= 3; j++) { + System.out.print(i); + } + } + System.out.println(); + } + } + public static void opgave3b() { + System.out.println("\n3b"); + for (int g = 1; g <= 3; g++) { + for (int i = 9; i >= 0; i--) { + for (int j = 1; j <= 5; j++) { + System.out.print(i); + } + } + System.out.println(); + } + } + public static void opgave3c() { + System.out.println("\n3c:"); + for (int g = 1; g <= 3; g++) { + for (int i = 9; i >= 0; i--) { + for (int j = 1; j <= i; j++) { + System.out.print(i); + } + } + System.out.println(); + } + } +} + +class Opgave4 { + public static void opgave4() { + System.out.println("\nOPGAVE 4:\n"); + int a = 1; + int b = 1; + System.out.print(a + ", " + b + ", "); + for (int i = 2; i<12; i++) { + int c = a + b; + System.out.print(c + ", "); + a = b; + b = c; + } + } +} + +class Opgave5 { + public static void opgave5() { + int number = 1; + for (int i = 0; i <= 5; i++) { + printLines(6-number); + for (int j = 1; j <= number; j++) { + System.out.print(2*i-1); + } + printLines(6-number); + number++; + System.out.println(); + } + } + public static void printLines(int amount) { + for (int j = amount; j >= 0; j--) { + System.out.print("-"); + } + } +} + +class Opgave6 { + public static void opgave6() { + System.out.println("\nOPGAVE 6\n"); + printStairs(5); + + } + public static void printStairs(int repeatAmount) { + for (int i = repeatAmount-1; i >= 0; i--) { + System.out.print("\n" + repeatString(i*5, " ") + " o ******" + repeatString((repeatAmount-i-1)*5, " ") + "*"); + System.out.print("\n" + repeatString(i*5, " ") + " /|\\ *" + repeatString((repeatAmount-i)*5, " ") + "*"); + System.out.print("\n" + repeatString(i*5, " ") + " / \\ *" + repeatString((repeatAmount-i)*5, " ") + "*"); + } + System.out.println("\n" + repeatString((repeatAmount+1)*5+2, "*")); + } + + public static String repeatString(int amount, String string) { + String returnString = ""; + for (int i = 0; i < amount; i++) { + returnString = returnString + string; + } + return returnString; + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/Ugeseddel-Uge-02-Formiddag.pdf b/Ugesedler/Ugeseddel-2 10-09-2025/Ugeseddel-Uge-02-Formiddag.pdf new file mode 100644 index 0000000..b0e3a6d Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/Ugeseddel-Uge-02-Formiddag.pdf differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave1.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave1.class new file mode 100644 index 0000000..04cd70f Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave1.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave2.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave2.class new file mode 100644 index 0000000..2b3d38d Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave2.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave3.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave3.class new file mode 100644 index 0000000..21eb982 Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave3.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave4.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave4.class new file mode 100644 index 0000000..3c91799 Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave4.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave5.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave5.class new file mode 100644 index 0000000..7854976 Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave5.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave6.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave6.class new file mode 100644 index 0000000..e693e9f Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgave6.class differ diff --git a/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgaver.class b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgaver.class new file mode 100644 index 0000000..49e9eb9 Binary files /dev/null and b/Ugesedler/Ugeseddel-2 10-09-2025/out/production/Opgaver/Opgaver.class differ diff --git a/Ugesedler/Ugeseddel-3 17-09-2025/.gitignore b/Ugesedler/Ugeseddel-3 17-09-2025/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### 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/Ugesedler/Ugeseddel-3 17-09-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Ugesedler/Ugeseddel-3 17-09-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/misc.xml new file mode 100644 index 0000000..8253e27 --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-3 17-09-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/modules.xml new file mode 100644 index 0000000..a31ccb8 --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-3 17-09-2025/Programmeringsopgaver 17-09-2025.iml b/Ugesedler/Ugeseddel-3 17-09-2025/Programmeringsopgaver 17-09-2025.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/Programmeringsopgaver 17-09-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-3 17-09-2025/src/Main.java b/Ugesedler/Ugeseddel-3 17-09-2025/src/Main.java new file mode 100644 index 0000000..231e6dc --- /dev/null +++ b/Ugesedler/Ugeseddel-3 17-09-2025/src/Main.java @@ -0,0 +1,96 @@ +import java.util.Arrays; +import java.util.Scanner; + +public class Main { + public static void main(String[] args) { + /*Opgave1.printNumbers(15); + Opgave2.processName(); + Opgave3.repl("Hello", 3); + Opgave4.printPowersOf2(10); + Opgave4.printPowersOf2NoMath(10); + Opgave5.Opgave5();*/ + Opgave6.quadratic(1,3,2); + } +} + +class Opgave1 { + public static void printNumbers(int n) { + for (int i = 1; i <= n; i++) { + System.out.print("["+i+"] "); + } + System.out.println(); + } +} + +class Opgave2 { + public static void processName() { + Scanner scanner = new Scanner(System.in); + System.out.print("\n Skriv dit navn: "); + String name = scanner.nextLine(); + String[] splitName = name.split(" "); + System.out.print("Dit navn i omvendt rækkefølge er: "+splitName[splitName.length-1]+", "); + for (int i = 0; i <= splitName.length-2; i++) { + System.out.print(splitName[i]+" "); + } + System.out.println(); + } +} + +class Opgave3 { + public static void repl(String input, int n) { + for (int i = 1; i <= n; i++) { + System.out.print(input); + } + System.out.println(); + } +} + +class Opgave4 { + public static void printPowersOf2(int n) { + for (int i = 0; i <= n; i++) { + System.out.print((long)Math.pow(2, i)+" "); + } + System.out.println(); + } + + public static void printPowersOf2NoMath(int n) { + for (int i = 0; i <= n; i++) { + System.out.print(calculatePowerOf2(2, i)+" "); + } + System.out.println(); + } + + public static int calculatePowerOf2(int n, int repeat) { + if (repeat == 0) { + return 1; + } else { + return calculatePowerOf2(n, repeat - 1) * n; + } + } +} + +class Opgave5 { + public static void Opgave5() { + System.out.printf("%-5s %-15s %-15s %-10s %-10s%n", "Year", "Balance", "Interest", "Deposit", "New Balance"); + double balance = 1000.0; + double interest = 0.065; + double deposit = 100; + for (int i = 1; i <= 25; i++) { + double oldBalance = balance; + balance += balance * interest; + double newBalance = balance + deposit; + System.out.printf("%-5d $%-14.2f $%-9.2f $%-9.2f $%-14.2f%n", i, oldBalance, oldBalance * interest, deposit, newBalance); + balance = newBalance; + } + } +} + +class Opgave6 { + public static void quadratic(double a, double b, double c) { + double[] x = {0.0,0.0}; + for (int i = -1; i <= 1; i += 2) { + x[(i <= 0 ? 0 : 1)] = (-b-(Math.sqrt(Math.pow(b,2)-(4*a*c))*i))/(2*a); + } + System.out.println(Arrays.toString(x)); + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.java b/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.java new file mode 100644 index 0000000..9073e9b --- /dev/null +++ b/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.java @@ -0,0 +1,144 @@ +import java.util.Scanner; + +public class Opgaver { + + public static void main(String[] args) { + Opgave1.opgave1(); + Scanner console = new Scanner(System.in); + Opgave2.opgave2(console); + Opgave3.printBogstaver("Julemanden var sej"); + sOpgave4.printFaktorer(24); + Opgave5.quadratic(console); + } +} + +class Opgave1 { + + public static void opgave1() { + System.out.println("\n OPGAVE 1: \n"); + for (int i = 0; i <= 13; i++) { + System.out.println("i = " + i); + omregnKarakter(i); + } + } + + public static void omregnKarakter(int karakter) { + String nyeKarakter; + String gamleKarakter = Integer.toString(karakter); + if (karakter == 11 || karakter == 13) { + nyeKarakter = "12"; + } else if (karakter == 10) { + nyeKarakter = "10"; + } else if (karakter == 8 || karakter == 9) { + nyeKarakter = "7"; + } else if (karakter == 7) { + nyeKarakter = "4"; + } else if (karakter == 6) { + nyeKarakter = "02"; + } else if (karakter == 5 || karakter == 03) { + nyeKarakter = "00"; + gamleKarakter = "03"; + } else if (karakter == 0) { + nyeKarakter = "-3"; + gamleKarakter = "00"; + } else { + System.out.println("Ugyldig karakter indtastet"); + return; + } + System.out.println( + "Karakteren " + + gamleKarakter + + " i 13-skalaen svarer til " + + nyeKarakter + + " i 7-trinsskalaen" + ); + } +} + +class Opgave2 { + + public static void opgave2(Scanner console) { + System.out.print("How many numbers do you want to enter? "); + int numbersCount = console.nextInt(); + System.out.print("Number 1: "); + int smallestNumber = console.nextInt(); + int largestNumber = smallestNumber; + for (int i = 2; i <= numbersCount; i++) { + System.out.print("Number " + i + ": "); + int nextNumber = console.nextInt(); + largestNumber = (nextNumber > largestNumber) + ? nextNumber + : largestNumber; + smallestNumber = (nextNumber < smallestNumber) + ? nextNumber + : smallestNumber; + } + System.out.println( + "Smallest: " + smallestNumber + "\nLargest: " + largestNumber + ); + } +} + +class Opgave3 { + + public static void printBogstaver(String inputStreng) { + if (inputStreng == "") { + throw new IllegalArgumentException("Fejl: Fået tomt input"); + } + System.out.print(inputStreng.charAt(0)); + for (int i = 1; i < inputStreng.length(); i++) { + System.out.print(" _ " + inputStreng.charAt(i)); + } + System.out.println(""); + } +} + +class Opgave4 { + + public static void printFaktorer(int n) { + if (n <= 0) { + throw new IllegalArgumentException( + "Fejl: n skal være et positivt heltal" + ); + } + System.out.print(1); + for (int i = 2; i <= n; i++) { + if (n % i == 0) { + System.out.print(" _ " + i); + } + } + System.out.println(""); + } +} + +class Opgave5 { + + public static void quadratic(Scanner console) { + System.out.print("Indtast værdien for a: "); + double a = console.nextDouble(); + System.out.print("Indtast værdien for b: "); + double b = console.nextDouble(); + System.out.print("Indtast værdien for c: "); + double c = console.nextDouble(); + double determinant = (b * b) - (4 * a * c); + if (a == 0) { + if (b == 0) { + throw new IllegalArgumentException("Både a og b er nul"); + } + System.out.println("Roden er: " + (-c / b)); + return; + } else if (determinant < 0) { + throw new IllegalArgumentException( + "Determinanten kan ikke være negativ" + ); + } + double rod1 = (-b - Math.sqrt(determinant)) / (2 * a); + double rod2 = (-b + Math.sqrt(determinant)) / (2 * a); + + System.out.println( + (rod1 != rod2) + ? "Første rod: " + rod1 + "\nAnden rod: " + rod2 + : "Roden: " + rod1 + ); + } +} diff --git a/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.py b/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.py new file mode 100644 index 0000000..50036f1 --- /dev/null +++ b/Ugesedler/Ugeseddel-4 24-09-2025/Opgaver.py @@ -0,0 +1,65 @@ +import random + +def figure(n): + for i in range(1,n + 1): + print(" " * (n - i), end = "") + for j in range(1, i * 2): + print(j, end = "") + print() + +def Opgave4(): + figure(1) + figure(2) + figure(3) + figure(4) + figure(5) + +print("Opgave 4:") +#Opgave4() +print("Opgave 5:") + +def giveIntro(): + print("Try to guess my two-digit") + print("number, and I'll tell you how") + print("many digits from your guess") + print("appear in my number.") + print() + +def is_number(s): + try: + i = int(s) + return 0 <= i <= 99 + except ValueError: + return False + +def get_number(prompt): + s = input(prompt) + while not is_number(s): + s = input(prompt) + return int(s) + +def matches(number, guess): + numMatches = 0 + if guess // 10 == number // 10 or guess // 10 == number % 10: + numMatches += 1 + if (guess // 10 != guess % 10) and (guess % 10 == number // 10 or guess % 10 == number % 10): + numMatches += 1 + return numMatches + +def Opgave5(): + giveIntro() + + number = random.randint(0,99) # Pick random number between 0 and 99 + print(number) + guess = get_number("Your guess? ") + + numGuesses = 1 + + while (guess != number): + numMatches = matches(number, guess) + print(f"Incorrect (hint: {numMatches} digits matches).") + guess = get_number("Your guess? ") + numGuesses += 1 + + print(f"You got it right in {numGuesses} tries") +Opgave5() diff --git a/Ugesedler/Ugeseddel-4 24-09-2025/OpgaverEftermiddag.java b/Ugesedler/Ugeseddel-4 24-09-2025/OpgaverEftermiddag.java new file mode 100644 index 0000000..c236888 --- /dev/null +++ b/Ugesedler/Ugeseddel-4 24-09-2025/OpgaverEftermiddag.java @@ -0,0 +1,93 @@ +import java.util.Scanner; + +public class OpgaverEftermiddag { + + public static void main(String[] args) { + Scanner console = new Scanner(System.in); + Opgave1.opgave1(console); + Opgave2.opgave2(console); + Opgave4.opgave4(console); + } +} + +class Opgave1 { + + public static void opgave1(Scanner console) { + int running = 1; + double sum = 0; + double amount = 0; + System.out.println( + "Indtast tal, der skal tages gennemsnit fra. Indtast \"-1\" for at stoppe." + ); + while (running == 1) { + System.out.print("Indtast tal: "); + double input = console.nextInt(); + if (input == -1) { + break; + } + sum += input; + amount++; + } + double average = sum / amount; + System.out.println("Gennemsnittet blev " + average); + } +} + +class Opgave2 { + + public static void opgave2(Scanner console) { + System.out.print("Indtast Brugernavn: "); + String brugernavn = console.nextLine(); + if (brugernavn.equals("admin") && tjekAdgangskode(console)) { + System.out.println("Adgang givet"); + } else { + System.out.println("Adgang nægtet"); + } + } + + public static boolean tjekAdgangskode(Scanner console) { + System.out.print("Indtast adgangskode: "); + String adgangskode = console.nextLine(); + + return adgangskode.equals("wKzsP9A\\JWY!"); + } +} + +class Opgave3 { + // Laves i Python, se Opgaver.py-filen +} + +class Opgave4 { + + public static void opgave4(Scanner console) { + System.out.println("Tell me about the person applying for a loan."); + int age = get_number(console, "What age is the person? "); + int money = get_number( + console, + "How many dollars does the person have? " + ); + + boolean working_age = (age >= 18 && age < 70); + boolean rich = (money >= 100000); + + if (working_age && rich) { + System.out.println("Loan granted."); + } else { + System.out.println("Loan denied"); + } + } + + public static int get_number(Scanner console, String prompt) { + System.out.print(prompt); + while (!console.hasNextInt()) { + console.next(); + System.out.println("Not an integer; try again."); + System.out.print(prompt); + } + return console.nextInt(); + } +} + +class Opgave5 { + // Laves i Python. Kig i Opgaver.py-filen +} diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/misc.xml new file mode 100644 index 0000000..33bc2dd --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/modules.xml new file mode 100644 index 0000000..18829d6 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/Opgaver.java b/Ugesedler/Ugeseddel-5 01-10-2025/Opgaver.java new file mode 100644 index 0000000..2988541 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/Opgaver.java @@ -0,0 +1,82 @@ +import java.io.*; +import java.util.Scanner; + +public class Opgaver { + + public static void main(String[] args) throws FileNotFoundException { + Opgave1.opgave1(); + //Opgave2.opgave2(); + } +} + +class Opgave1 { + + public static void opgave1() throws FileNotFoundException { + Scanner file = new Scanner(new File("problem2.html")); + boolean inTag = false; + while (file.hasNextLine()) { + Scanner currentLine = new Scanner(file.nextLine()); + String stringInTag = ""; + String textOnLine = ""; + inTag = false; + while (currentLine.hasNext()) { + String token = currentLine.next(); + for (int i = 0; i < token.length(); i++) { + if (inTag == false && token.charAt(i) == '<') { + inTag = true; + } else if (inTag == true && token.charAt(i) == '>') { + inTag = false; + stringInTag = ""; + continue; + } + if (inTag == false) { + textOnLine += token.charAt(i); + } else { + stringInTag += token.charAt(i); + } + } + textOnLine += (inTag ? "" : " "); + } + System.out.println(textOnLine + stringInTag); + } + } + + public static String readEntireFile(Scanner input) { + String stringFile = ""; + while (input.hasNextLine()) { + stringFile += input.nextLine() + "\n"; + } + return stringFile; + } +} + +class Opgave2 { + + public static void opgave2() throws FileNotFoundException { + Scanner console = new Scanner(System.in); + System.out.print("Indtast filnavn/sti: "); + String fileName = console.next(); + Scanner file = new Scanner(new File(fileName)); + int sum = 0; + int amount = 0; + int max = 0; + int min = 0; + while (file.hasNext()) { + if (file.hasNextInt()) { + int token = file.nextInt(); + amount++; + sum += token; + min = (amount == 1 ? token : min); // Min-værdien skal defineres som første tal. + min = (token < min ? token : min); // Min-værdien opdateres hvis token er større end den. + max = (amount == 1 ? token : max); // Samme som min. + max = (token > max ? token : max); + } else { + file.next(); + } + } + System.out.println("Gennemsnittet er: " + (double) sum / amount); + System.out.println( + "Min.-værdien er : " + min + " og Maks-værdien er: " + max + ); + } +} diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/Ugeseddel-5 01-10-2025.iml b/Ugesedler/Ugeseddel-5 01-10-2025/Ugeseddel-5 01-10-2025.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/Ugeseddel-5 01-10-2025.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/index.html b/Ugesedler/Ugeseddel-5 01-10-2025/index.html new file mode 100644 index 0000000..faf1be7 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/index.html @@ -0,0 +1,13 @@ + + +My web page + + +

    There are many pictures of my cat here, +as well as my very cool blog page, +which contains awesome +stuff about my trip to Vegas.

    + +Here's my cat now: + + diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/numberinput.dat b/Ugesedler/Ugeseddel-5 01-10-2025/numberinput.dat new file mode 100644 index 0000000..462ca04 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/numberinput.dat @@ -0,0 +1,4 @@ +4 -2 18 +15 31 + +27 diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/numberinput2.dat b/Ugesedler/Ugeseddel-5 01-10-2025/numberinput2.dat new file mode 100644 index 0000000..5f6ed39 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/numberinput2.dat @@ -0,0 +1,4 @@ +4 billy bob -2 18 2.54 +15 31 NotANumber + +true 'c' 27 diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/problem.dat b/Ugesedler/Ugeseddel-5 01-10-2025/problem.dat new file mode 100644 index 0000000..d2b9057 --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/problem.dat @@ -0,0 +1,2 @@ +no numbers here +BAD END \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-5 01-10-2025/problem.html b/Ugesedler/Ugeseddel-5 01-10-2025/problem.html new file mode 100644 index 0000000..488d9bb --- /dev/null +++ b/Ugesedler/Ugeseddel-5 01-10-2025/problem.html @@ -0,0 +1,12 @@ + + +My web page + + +

    There are many pictures of my cat here, +as well as my very cool blog page, +which contains awesome +stuff about my trip to Vegas.

    + +Here's my cat now: + +My web page + + +

    There are many pictures of my cat here, +as well as my very cool blog page, +which contains awesome +stuff about my trip to Vegas.

    + +Here's my cat now:img src="cat.jpg"> +MISSING START TAG IN LINE ABOVE diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/.gitignore b/Ugesedler/Ugeseddel-6 08-10-2025/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### 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/Ugesedler/Ugeseddel-6 08-10-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/.idea/IntelliLang.xml b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/IntelliLang.xml new file mode 100644 index 0000000..7bbf35e --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/IntelliLang.xml @@ -0,0 +1,310 @@ + + + + + Apache HttpClient 4 HTTP Header (org.apache.http) + + + + + + Apache HttpClient 5 HTTP Header (org.apache.hc.core5) + + + + + + + + + AsyncQueryRunner (org.apache.commons.dbutils) + + + + + + + + + + + + + + + + + + Jodd (jodd.db) + + + + + + + + MockServer Header (org.mockserver) + + + + + + + MyBatis @Select/@Delete/@Insert/@Update + + + + + + + + QueryProducer (org.hibernate.query) + + + + + + QueryRunner (org.apache.commons.dbutils) + + + + + + + + + + + + + + + + + + R2DBC (io.r2dbc) + + + + + + Reactiverse Postgres Client (io.reactiverse) + + + + + + + + + + + + + RestAssured HTTP Header (io.restassured) + + + + + + + + Session.createNativeQuery (org.hibernate) + + + + + + + + Session.createQuery (org.hibernate) + + + + + + + + + + SmallRye Axle SqlClient (io.vertx.axle.sqlclient) + + + + + + SmallRye Mutiny SqlClient (io.vertx.mutiny.sqlclient) + + + + + + SmallRye Mutiny SqlConnection (io.vertx.mutiny.sqlclient) + + + + + + + + Spring @Cacheable and @CacheEvict + + + + + + + + + + + + Spring HttpHeaders (org.springframework.http) + + + + + + + Spring Integration/Messaging + + + + + + + Spring JDBC (org.springframework.jdbc.core.JdbcOperations) + + + + + + + + + + + + + + + + Spring JDBC (org.springframework.jdbc.core.PreparedStatementCreatorFactory) + + + + + + + Spring JDBC (org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator) + + + + + + + + Spring Security @PostAuthorize/@PostFilter/@PreAuthorize/@PreFilter/@AuthenticationPrincipal + + + + + + + + + + Spring State Machine + + + + + + + + Vert.x SQL Extensions (io.vertx.ext.sql) + + + + + + + Vert.x SQL Reactive Extensions (io.vertx.reactivex.ext.sql) + + + + + + + + + + Vert.x SqlClient (io.vertx.sqlclient) + + + + + + + + + + + Vert.x SqlClient RxJava2 (io.vertx.reactivex.sqlclient) + + + + + + + + + + + + WireMock (com.github.tomakehurst.wiremock.client) + + + + + + + + WireMock (com.github.tomakehurst.wiremock.client) + + + + + + + WireMock (com.github.tomakehurst.wiremock.client) + + + + + + + + jOOQ (org.jooq.DSLContext) + + + + + + + + rxjava2-jdbc (org.davidmoten.rx.jdbc) + + + + + + + SpEL for Spring Cache + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/misc.xml new file mode 100644 index 0000000..1d3ce46 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/modules.xml new file mode 100644 index 0000000..dbd1f66 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/Opgave-6-ZipLookup.py b/Ugesedler/Ugeseddel-6 08-10-2025/Opgave-6-ZipLookup.py new file mode 100644 index 0000000..4b01a28 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/Opgave-6-ZipLookup.py @@ -0,0 +1,19 @@ +import math +RADIUS = 3956.6 + +def distance(lat1, long1, lat2, long2): + lat1 = math.radians(lat1) + long1 = math.radians(long1) + lat2 = math.radians(lat2) + long2 = math.radians(long2) + the_cos = math.sin(lat1) * math.sin(lat2) + math.cos(lat1) * math.cos(lat2) * math.cos(long1 - long2) + arc_length = math.acos(the_cos) + return arc_length * RADIUS + +def find(target, file): + + +def main(): + zip = input("What Zip code are you interested in? ") + target = float(input("And what proximity (in miles)? ")) + with open("zipcodes.txt") as file: diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/Slides-Uge-06-Eftermiddag.pdf b/Ugesedler/Ugeseddel-6 08-10-2025/Slides-Uge-06-Eftermiddag.pdf new file mode 100644 index 0000000..110cd4c Binary files /dev/null and b/Ugesedler/Ugeseddel-6 08-10-2025/Slides-Uge-06-Eftermiddag.pdf differ diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-6 08-10-2025.iml b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-6 08-10-2025.iml new file mode 100644 index 0000000..719d182 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-6 08-10-2025.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Eftermiddag.pdf b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Eftermiddag.pdf new file mode 100644 index 0000000..a197036 Binary files /dev/null and b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Eftermiddag.pdf differ diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Formiddag.pdf b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Formiddag.pdf new file mode 100644 index 0000000..eb146cc Binary files /dev/null and b/Ugesedler/Ugeseddel-6 08-10-2025/Ugeseddel-Uge-06-Formiddag.pdf differ diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/src/Main.java b/Ugesedler/Ugeseddel-6 08-10-2025/src/Main.java new file mode 100644 index 0000000..930198c --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/src/Main.java @@ -0,0 +1,15 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverEftermiddag.java b/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverEftermiddag.java new file mode 100644 index 0000000..63d50c1 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverEftermiddag.java @@ -0,0 +1,46 @@ +class OpgaverEftermiddag { + public static void main(String args[]) { + Bil honda_95 = new Bil(1995, "Honda"); + System.out.println(honda_95); + Bil bmw_19 = new Bil(1995, "BMW"); + System.out.println(bmw_19.getAargang() + " " + bmw_19.getMaerke()); + bmw_19.changeAargang(2024); + honda_95.changeMaerke("Mercedes"); + Bil vw = new Bil("VW"); + + } +} + +class Bil { + private int aargang; + private String maerke; + + public Bil(int aargang, String maerke) { + this.aargang = Math.max(aargang, 1860); + this.maerke = maerke; + } + + public Bil(String maerke) { + this(2025, maerke); + } + + public void changeAargang(int aargang) { + this.aargang = Math.max(aargang, 1860); + } + + public void changeMaerke(String maerke) { + this.maerke = maerke; + } + + public int getAargang() { + return this.aargang; + } + + public String getMaerke() { + return this.maerke; + } + + public String toString() { + return this.maerke + " fra " + this.aargang; + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverFormiddag.java b/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverFormiddag.java new file mode 100644 index 0000000..96c2fe0 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/src/OpgaverFormiddag.java @@ -0,0 +1,121 @@ +import java.util.Arrays; +import java.util.Random; +import java.util.Scanner; + +public class OpgaverFormiddag { + + public static void main(String[] args) { + Random random = new Random(); + int[] opgave1 = {47,89,85,28,95,47,98,89,38,38,48,28,49,5900,2,47,47,47,89,89,89,89,20,1,4,55,66,3,2,123,4214,12312,512,12,41,24,124,12,123,12,31,54,534,534,34,65,765,7,5,47,1202,4,5868,123123,41,43}; + int indexValue = 47; + System.out.println("\nOPGAVE 1: \n"+Opgave1.lastIndexOf(opgave1,indexValue)+" " + opgave1[Opgave1.lastIndexOf(opgave1,indexValue)]); + System.out.println("\nOPGAVE 2: \n" + Opgave2.countInRange(opgave1,500,2000)); + int opgave3ArrayLength = 500; + int[] opgave3Array = new int[opgave3ArrayLength]; + for (int i = 0; i < opgave3ArrayLength; i++) { + opgave3Array[i] = random.nextInt(101); + } + System.out.println("\nOPGAVE 3A: \n" + Opgave3.mode(opgave3Array)); + int opgave3BArrayLength = random.nextInt(1000); + int[] opgave3BArray = new int[opgave3BArrayLength]; + for (int i = 0; i < opgave3BArrayLength; i++) { + opgave3BArray[i] = random.nextInt(opgave3BArrayLength); + } + System.out.println("\nOPGAVE 3B: \n" + Opgave3.modeHighValue(opgave3BArray)); + + System.out.println("\nOPGAVE 4: \n"); + Opgave4.addLargeInteger(); + } +} + +class Opgave1 { + public static int lastIndexOf(int[] array, int value) { + int index = -1; + for (int i = 0; i < array.length; i++) { + if (array[i] == value) { + index = i; + } + } + return index; + } +} + +class Opgave2 { + public static int countInRange(int[] array, int low, int high) { + int count = 0; + for (int i = 0; i < array.length; i++) { + if (array[i] >= low && array[i] <= high) { + count++; + } + } + return count; + } +} + +class Opgave3 { + public static int mode(int[] array) { + int[] counts = new int[101]; + for (int i = 0; i < array.length; i++) { + counts[array[i]]++; + } + int highestCount = 0; + for (int i = 0; i < counts.length; i++) { + if (counts[i] > highestCount) { + highestCount = counts[i]; + } + } + return highestCount; + } + + public static int modeHighValue(int[] array2) { + if (array2.length == 0) { + return 0; + } + Arrays.sort(array2); + int[] counts2 = new int[array2[array2.length-1]+1]; + for (int i = 0; i < array2.length; i++) { + counts2[array2[i]]++; + } + int highestCount = 0; + for (int i = 0; i < counts2.length; i++) { + if (counts2[i] > highestCount) { + highestCount = counts2[i]; + } + } + return highestCount; + } +} + +class Opgave4 { + public static void addLargeInteger() { + final int DIGITS = 50; + int[] sum = new int[DIGITS]; + Scanner input = new Scanner(System.in); + System.out.print("First non-negative integer: "); + String int1 = input.nextLine(); + System.out.print("Second non-negative integer: "); + String int2 = input.nextLine(); + boolean skipZero = false; + String sumString = ""; + for (int i = 0; i < DIGITS; i++) { + int int1Value = (i < 50-int1.length() ? 0 : int1.charAt(int1.length()+i-50) - '0'); + int int2Value = (i < 50-int2.length() ? 0 : int2.charAt(int2.length()+i-50) - '0'); + int tempSum = int1Value + int2Value; + if (tempSum >= 10) { + if (i == 0) { + throw new RuntimeException("Sum bliver over 50 cifre"); + } + sum[i-1]++; + tempSum -= 10; + } + sum[i] = tempSum; + } + for (int i = 0; i < sum.length; i++) { + if (skipZero || sum[i] != 0) { + sumString += sum[i]; + skipZero = true; + } + } + System.out.println("Sum: " + sumString); + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/zip_lookup_skeleton.py b/Ugesedler/Ugeseddel-6 08-10-2025/zip_lookup_skeleton.py new file mode 100644 index 0000000..2ac594f --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/zip_lookup_skeleton.py @@ -0,0 +1,39 @@ +import math + +RADIUS = 3956.6 + +def give_intro(): + pass + +def find(file, target_zip): + for line in file: + zip, lat, lng, city = line.rstrip().split(" : ") + if zip == target_zip: + print(zip + ":", city) + return float(lat), float(lng) + return 0, 0 + +def show_matches(file, lat1, lng1, miles): + pass + +def distance(lat1, lng1, lat2, lng2): + lat1 = math.radians(lat1) + lng1 = math.radians(lng1) + lat2 = math.radians(lat2) + lng2 = math.radians(lng2) + the_cos = math.sin(lat1) * math.sin(lat2) \ + + math.cos(lat1) * math.cos(lat2) * math.cos(lng1 - lng2) + arc_length = math.acos(the_cos) + return arc_length * RADIUS + +def main(): + give_intro() + zip = input("What zip code are you interested in? ") + miles = float(input("And what proximity (in miles)? ")) + print() + with open("zipcode.txt") as file: + lat, lng = find(file, zip) + file.seek(0) + show_matches(file, lat, lng, miles) + +main() diff --git a/Ugesedler/Ugeseddel-6 08-10-2025/zipcode.txt b/Ugesedler/Ugeseddel-6 08-10-2025/zipcode.txt new file mode 100644 index 0000000..dafc524 --- /dev/null +++ b/Ugesedler/Ugeseddel-6 08-10-2025/zipcode.txt @@ -0,0 +1,43191 @@ +00210 : 43.005895 : -71.013202 : Portsmouth, NH +00211 : 43.005895 : -71.013202 : Portsmouth, NH +00212 : 43.005895 : -71.013202 : Portsmouth, NH +00213 : 43.005895 : -71.013202 : Portsmouth, NH +00214 : 43.005895 : -71.013202 : Portsmouth, NH +00215 : 43.005895 : -71.013202 : Portsmouth, NH +00501 : 40.922326 : -72.637078 : Holtsville, NY +00544 : 40.922326 : -72.637078 : Holtsville, NY +00601 : 18.180103 : -66.74947 : Adjuntas, PR +00602 : 18.363285 : -67.18024 : Aguada, PR +00603 : 18.448619 : -67.13422 : Aguadilla, PR +00604 : 18.498987 : -67.13699 : Aguadilla, PR +00605 : 18.465162 : -67.141486 : Aguadilla, PR +00606 : 18.182151 : -66.9588 : Maricao, PR +00607 : 18.256995 : -66.104657 : Aguas Buenas, PR +00609 : 18.142002 : -66.273278 : Aibonito, PR +00610 : 18.288319 : -67.13604 : Anasco, PR +00611 : 18.279531 : -66.80217 : Angeles, PR +00612 : 18.449732 : -66.69879 : Arecibo, PR +00613 : 18.458093 : -66.732732 : Arecibo, PR +00614 : 18.429675 : -66.674506 : Arecibo, PR +00615 : 17.96977 : -66.061459 : Arroyo, PR +00616 : 18.426748 : -66.67669 : Bajadero, PR +00617 : 18.455499 : -66.55575 : Barceloneta, PR +00618 : 18.185463 : -66.305827 : Barranquitas, PR +00622 : 18.003125 : -67.16745 : Boqueron, PR +00623 : 18.08643 : -67.15222 : Cabo Rojo, PR +00624 : 18.055399 : -66.72602 : Penuelas, PR +00625 : 18.232109 : -66.039087 : Caguas, PR +00626 : 18.235003 : -66.037318 : Caguas, PR +00627 : 18.435246 : -66.85644 : Camuy, PR +00631 : 18.186739 : -66.85174 : Castaner, PR +00633 : 18.194527 : -66.183467 : Cayey, PR +00634 : 18.111528 : -66.177083 : Cayey, PR +00635 : 18.262902 : -65.646529 : Ceiba, PR +00636 : 18.113284 : -67.039706 : Rosario, PR +00637 : 18.073078 : -66.94864 : Sabana Grande, PR +00638 : 18.308139 : -66.49835 : Ciales, PR +00639 : 18.176094 : -66.158728 : Cidra, PR +00640 : 18.077197 : -66.359104 : Coamo, PR +00641 : 18.268896 : -66.70519 : Utuado, PR +00643 : 18.341254 : -66.315194 : Corozal, PR +00644 : 18.049577 : -66.55218 : Coto Laurel, PR +00645 : 18.308508 : -65.304732 : Culebra, PR +00646 : 18.442798 : -66.27689 : Dorado, PR +00647 : 17.964529 : -66.93993 : Ensenada, PR +00648 : 18.333038 : -65.656182 : Fajardo, PR +00650 : 18.363331 : -66.56773 : Florida, PR +00652 : 18.457453 : -66.61217 : Garrochales, PR +00653 : 17.992112 : -66.90097 : Guanica, PR +00654 : 17.979518 : -66.117219 : Jobos, PR +00655 : 17.976371 : -66.116795 : Olimpo, PR +00656 : 18.038866 : -66.79168 : Guayanilla, PR +00658 : 18.254137 : -65.973605 : Gurabo, PR +00659 : 18.432956 : -66.80039 : Hatillo, PR +00660 : 18.139108 : -67.12085 : Hormigueros, PR +00661 : 18.150829 : -65.826595 : Humacao, PR +00662 : 18.478855 : -67.01973 : Isabela, PR +00664 : 18.212565 : -66.59243 : Jayuya, PR +00665 : 18.044224 : -66.502103 : Ponce, PR +00666 : 18.228952 : -65.921356 : Juncos, PR +00667 : 18.017819 : -67.04226 : Lajas, PR +00669 : 18.288418 : -66.87503 : Lares, PR +00670 : 18.241343 : -66.97604 : Las Marias, PR +00671 : 18.1789 : -65.869939 : Las Piedras, PR +00674 : 18.426137 : -66.48697 : Manati, PR +00676 : 18.37956 : -67.08424 : Moca, PR +00677 : 18.336121 : -67.23675 : Rincon, PR +00678 : 18.442334 : -66.93275 : Quebradillas, PR +00680 : 18.205232 : -67.12655 : Mayaguez, PR +00681 : 18.219023 : -67.508068 : Mayaguez, PR +00682 : 18.208402 : -67.15428 : Mayaguez, PR +00683 : 18.092807 : -67.04524 : San German, PR +00685 : 18.332595 : -66.98104 : San Sebastian, PR +00687 : 18.31708 : -66.41528 : Morovis, PR +00688 : 18.40415 : -66.61348 : Sabana Hoyos, PR +00690 : 18.495369 : -67.09867 : San Antonio, PR +00692 : 18.419666 : -66.33186 : Vega Alta, PR +00693 : 18.440667 : -66.3921 : Vega Baja, PR +00694 : 18.443109 : -66.398302 : Vega Baja, PR +00698 : 18.06547 : -66.85587 : Yauco, PR +00703 : 18.246205 : -66.12827 : Aguas Buenas, PR +00704 : 17.970112 : -66.22291 : Aguirre, PR +00705 : 18.12942 : -66.26541 : Aibonito, PR +00707 : 18.014505 : -65.91018 : Maunabo, PR +00714 : 17.987288 : -66.05552 : Arroyo, PR +00715 : 18.003492 : -66.55868 : Mercedita, PR +00716 : 17.999066 : -66.59965 : Ponce, PR +00717 : 18.004303 : -66.61374 : Ponce, PR +00718 : 18.22048 : -65.74293 : Naguabo, PR +00719 : 18.294571 : -66.25098 : Naranjito, PR +00720 : 18.217827 : -66.42265 : Orocovis, PR +00721 : 18.364161 : -65.778288 : Palmer, PR +00723 : 18.023196 : -66.0131 : Patillas, PR +00725 : 18.233927 : -66.04502 : Caguas, PR +00726 : 18.212965 : -66.058033 : Caguas, PR +00728 : 18.013353 : -66.65218 : Ponce, PR +00729 : 18.35615 : -65.89089 : Canovanas, PR +00730 : 18.022626 : -66.61727 : Ponce, PR +00731 : 18.077329 : -66.61192 : Ponce, PR +00732 : 18.021781 : -66.613742 : Ponce, PR +00733 : 18.019331 : -66.619165 : Ponce, PR +00734 : 17.999499 : -66.643934 : Ponce, PR +00735 : 18.258444 : -65.65987 : Ceiba, PR +00736 : 18.112895 : -66.15377 : Cayey, PR +00737 : 18.102967 : -66.139274 : Cayey, PR +00738 : 18.32265 : -65.66116 : Fajardo, PR +00739 : 18.16984 : -66.16271 : Cidra, PR +00740 : 18.331711 : -65.62761 : Puerto Real, PR +00741 : 18.160755 : -65.75765 : Punta Santiago, PR +00742 : 18.264872 : -65.594769 : Roosevelt Roads, PR +00744 : 18.206329 : -65.743058 : Rio Blanco, PR +00745 : 18.366213 : -65.82277 : Rio Grande, PR +00747 : 18.069474 : -66.952589 : Lluveras, PR +00748 : 18.326732 : -65.652484 : Fajardo, PR +00751 : 17.993803 : -66.26534 : Salinas, PR +00752 : 18.493745 : -67.097726 : San Antonio, PR +00754 : 18.15633 : -65.96831 : San Lorenzo, PR +00757 : 17.98631 : -66.39457 : Santa Isabel, PR +00761 : 18.265445 : -66.702364 : Utuado, PR +00762 : 18.420218 : -66.324284 : Vega Alta, PR +00763 : 18.452175 : -66.399836 : Monserrate, PR +00764 : 18.452084 : -66.397138 : Vega Baja, PR +00765 : 18.125664 : -65.45603 : Vieques, PR +00766 : 18.126023 : -66.48208 : Villalba, PR +00767 : 18.072752 : -65.89703 : Yabucoa, PR +00768 : 18.030715 : -66.856181 : Yauco, PR +00769 : 18.092813 : -66.3611 : Coamo, PR +00771 : 18.18744 : -65.87088 : Las Piedras, PR +00772 : 18.427674 : -65.87605 : Loiza, PR +00773 : 18.361344 : -65.72133 : Luquillo, PR +00775 : 18.311149 : -65.29257 : Culebra, PR +00777 : 18.224088 : -65.91316 : Juncos, PR +00778 : 18.258628 : -65.97791 : Gurabo, PR +00780 : 18.068538 : -66.55939 : Coto Laurel, PR +00782 : 18.223348 : -66.2267 : Comerio, PR +00783 : 18.304874 : -66.32305 : Corozal, PR +00784 : 17.984137 : -66.12779 : Guayama, PR +00785 : 18.018822 : -66.795603 : Guayama, PR +00786 : 18.128092 : -66.268717 : La Plata, PR +00791 : 18.147257 : -65.82269 : Humacao, PR +00792 : 18.138029 : -65.788499 : Humacao, PR +00794 : 18.204294 : -66.31058 : Barranquitas, PR +00795 : 18.036253 : -66.50289 : Juana Diaz, PR +00801 : 18.322285 : -64.963715 : St Thomas, VI +00802 : 18.322285 : -64.963715 : St Thomas, VI +00803 : 18.322285 : -64.963715 : St Thomas, VI +00804 : 18.322285 : -64.963715 : St Thomas, VI +00805 : 18.322285 : -64.963715 : St Thomas, VI +00820 : 17.734211 : -64.734694 : Christiansted, VI +00821 : 17.734211 : -64.734694 : Christiansted, VI +00822 : 17.734211 : -64.734694 : Christiansted, VI +00823 : 17.734211 : -64.734694 : Christiansted, VI +00824 : 17.734211 : -64.734694 : Christiansted, VI +00830 : 18.32816 : -64.740737 : St John, VI +00831 : 18.32816 : -64.740737 : St John, VI +00840 : 17.734211 : -64.734694 : Frederiksted, VI +00841 : 17.734211 : -64.734694 : Frederiksted, VI +00850 : 17.734211 : -64.734694 : Kingshill, VI +00851 : 17.734211 : -64.734694 : Kingshill, VI +00901 : 18.465426 : -66.10786 : San Juan, PR +00902 : 18.410462 : -66.060533 : San Juan, PR +00906 : 18.46454 : -66.10079 : San Juan, PR +00907 : 18.451131 : -66.07798 : San Juan, PR +00908 : 18.410462 : -66.060533 : San Juan, PR +00909 : 18.442282 : -66.06764 : San Juan, PR +00910 : 18.410462 : -66.060533 : San Juan, PR +00911 : 18.45009 : -66.0577 : San Juan, PR +00912 : 18.445946 : -66.05928 : San Juan, PR +00913 : 18.450907 : -66.04256 : San Juan, PR +00914 : 18.410462 : -66.060533 : San Juan, PR +00915 : 18.436995 : -66.04888 : San Juan, PR +00916 : 18.410462 : -66.060533 : San Juan, PR +00917 : 18.422263 : -66.0513 : San Juan, PR +00918 : 18.417668 : -66.06494 : San Juan, PR +00919 : 18.410462 : -66.060533 : San Juan, PR +00920 : 18.41242 : -66.09069 : San Juan, PR +00921 : 18.394019 : -66.08633 : San Juan, PR +00922 : 18.410462 : -66.060533 : San Juan, PR +00923 : 18.410681 : -66.03806 : San Juan, PR +00924 : 18.401917 : -66.01194 : San Juan, PR +00925 : 18.400006 : -66.05028 : San Juan, PR +00926 : 18.361363 : -66.0562 : San Juan, PR +00927 : 18.39184 : -66.06867 : San Juan, PR +00928 : 18.410462 : -66.060533 : San Juan, PR +00929 : 18.410462 : -66.060533 : San Juan, PR +00930 : 18.410462 : -66.060533 : San Juan, PR +00931 : 18.410462 : -66.060533 : San Juan, PR +00933 : 18.410462 : -66.060533 : San Juan, PR +00934 : 18.413511 : -66.12198 : Fort Buchanan, PR +00935 : 18.410462 : -66.060533 : San Juan, PR +00936 : 18.410462 : -66.060533 : San Juan, PR +00937 : 18.410462 : -66.060533 : San Juan, PR +00938 : 18.410462 : -66.060533 : San Juan, PR +00939 : 18.410462 : -66.060533 : San Juan, PR +00940 : 18.410462 : -66.060533 : San Juan, PR +00949 : 18.433173 : -66.2042 : Toa Baja, PR +00950 : 18.457761 : -66.196503 : Toa Baja, PR +00951 : 18.457761 : -66.196503 : Toa Baja, PR +00952 : 18.429218 : -66.18014 : Sabana Seca, PR +00953 : 18.36802 : -66.23414 : Toa Alta, PR +00954 : 18.358939 : -66.258108 : Toa Alta, PR +00955 : 18.410462 : -66.060533 : San Juan, PR +00956 : 18.34216 : -66.16643 : Bayamon, PR +00957 : 18.369674 : -66.18669 : Bayamon, PR +00958 : 18.34487 : -66.166014 : Bayamon, PR +00959 : 18.387063 : -66.15943 : Bayamon, PR +00960 : 18.34487 : -66.166014 : Bayamon, PR +00961 : 18.412462 : -66.16033 : Bayamon, PR +00962 : 18.437683 : -66.13847 : Catano, PR +00963 : 18.443217 : -66.139293 : Catano, PR +00965 : 18.431453 : -66.11703 : Guaynabo, PR +00966 : 18.398507 : -66.11522 : Guaynabo, PR +00968 : 18.408479 : -66.1025 : Guaynabo, PR +00969 : 18.366981 : -66.10889 : Guaynabo, PR +00970 : 18.359143 : -66.112295 : Guaynabo, PR +00971 : 18.329688 : -66.11876 : Guaynabo, PR +00975 : 18.410462 : -66.060533 : San Juan, PR +00976 : 18.346767 : -66.00561 : Trujillo Alto, PR +00977 : 18.337004 : -65.990099 : Trujillo Alto, PR +00978 : 18.337004 : -65.990099 : St Just, PR +00979 : 18.431885 : -66.0127 : Carolina, PR +00981 : 18.410462 : -66.060533 : Carolina, PR +00982 : 18.409345 : -65.99313 : Carolina, PR +00983 : 18.414408 : -65.97582 : Carolina, PR +00984 : 18.393355 : -65.972495 : Carolina, PR +00985 : 18.374896 : -65.94691 : Carolina, PR +00986 : 18.393355 : -65.972495 : Carolina, PR +00987 : 18.372228 : -65.96275 : Carolina, PR +00988 : 18.393355 : -65.972495 : Carolina, PR +01001 : 42.07061 : -72.62029 : Agawam, MA +01002 : 42.377651 : -72.50323 : Amherst, MA +01003 : 42.369562 : -72.63599 : Amherst, MA +01004 : 42.384494 : -72.513183 : Amherst, MA +01005 : 42.412094 : -72.10443 : Barre, MA +01007 : 42.278424 : -72.411 : Belchertown, MA +01008 : 42.174313 : -72.94828 : Blandford, MA +01009 : 42.206092 : -72.340486 : Bondsville, MA +01010 : 42.126038 : -72.20552 : Brimfield, MA +01011 : 42.271442 : -73.01958 : Chester, MA +01012 : 42.390836 : -72.84356 : Chesterfield, MA +01013 : 42.161492 : -72.60316 : Chicopee, MA +01014 : 42.170731 : -72.604842 : Chicopee, MA +01020 : 42.175992 : -72.57265 : Chicopee, MA +01021 : 42.170731 : -72.604842 : Chicopee, MA +01022 : 42.196666 : -72.55606 : Chicopee, MA +01026 : 42.465041 : -72.91813 : Cummington, MA +01027 : 42.27279 : -72.68677 : Easthampton, MA +01028 : 42.066795 : -72.5102 : East Longmeadow, MA +01029 : 42.175896 : -73.04204 : East Otis, MA +01030 : 42.070774 : -72.67248 : Feeding Hills, MA +01031 : 42.33071 : -72.18833 : Gilbertville, MA +01032 : 42.45792 : -72.81551 : Goshen, MA +01033 : 42.254563 : -72.51831 : Granby, MA +01034 : 42.086224 : -72.94464 : Granville, MA +01035 : 42.35549 : -72.5733 : Hadley, MA +01036 : 42.064703 : -72.41735 : Hampden, MA +01037 : 42.374202 : -72.19524 : Hardwick, MA +01038 : 42.375155 : -72.60832 : Hatfield, MA +01039 : 42.381475 : -72.69259 : Haydenville, MA +01040 : 42.201891 : -72.6242 : Holyoke, MA +01041 : 42.170731 : -72.604842 : Holyoke, MA +01050 : 42.290209 : -72.87942 : Huntington, MA +01053 : 42.353105 : -72.70206 : Leeds, MA +01054 : 42.479839 : -72.49879 : Leverett, MA +01056 : 42.174893 : -72.47068 : Ludlow, MA +01057 : 42.089269 : -72.317 : Monson, MA +01059 : 42.369562 : -72.63599 : North Amherst, MA +01060 : 42.324539 : -72.63561 : Northampton, MA +01061 : 42.369562 : -72.63599 : Northampton, MA +01062 : 42.324232 : -72.67915 : Florence, MA +01063 : 42.317939 : -72.640234 : Northampton, MA +01066 : 42.406697 : -72.633901 : North Hatfield, MA +01068 : 42.349769 : -72.04413 : Oakham, MA +01069 : 42.176401 : -72.32646 : Palmer, MA +01070 : 42.515853 : -72.91661 : Plainfield, MA +01071 : 42.165931 : -72.85153 : Russell, MA +01072 : 42.486027 : -72.42208 : Shutesbury, MA +01073 : 42.223885 : -72.72777 : Southampton, MA +01074 : 42.375998 : -72.149388 : South Barre, MA +01075 : 42.234891 : -72.58243 : South Hadley, MA +01077 : 42.05283 : -72.76966 : Southwick, MA +01079 : 42.192892 : -72.329574 : Thorndike, MA +01080 : 42.180563 : -72.36518 : Three Rivers, MA +01081 : 42.058024 : -72.22517 : Wales, MA +01082 : 42.270611 : -72.26067 : Ware, MA +01083 : 42.20468 : -72.20259 : Warren, MA +01084 : 42.379807 : -72.89043 : West Chesterfield, MA +01085 : 42.133642 : -72.75029 : Westfield, MA +01086 : 42.173428 : -72.847964 : Westfield, MA +01088 : 42.388831 : -72.6321 : West Hatfield, MA +01089 : 42.112793 : -72.64066 : West Springfield, MA +01090 : 42.170731 : -72.604842 : West Springfield, MA +01092 : 42.210777 : -72.23904 : West Warren, MA +01093 : 42.442673 : -72.652511 : Whately, MA +01094 : 42.358201 : -72.140846 : Wheelwright, MA +01095 : 42.12531 : -72.44057 : Wilbraham, MA +01096 : 42.415236 : -72.78271 : Williamsburg, MA +01097 : 42.161743 : -72.845912 : Woronoco, MA +01098 : 42.399054 : -72.93871 : Worthington, MA +01101 : 42.170731 : -72.604842 : Springfield, MA +01102 : 42.170731 : -72.604842 : Springfield, MA +01103 : 42.103294 : -72.59112 : Springfield, MA +01104 : 42.130343 : -72.57338 : Springfield, MA +01105 : 42.096644 : -72.5798 : Springfield, MA +01106 : 42.050395 : -72.5712 : Longmeadow, MA +01107 : 42.120193 : -72.6061 : Springfield, MA +01108 : 42.084094 : -72.55523 : Springfield, MA +01109 : 42.116277 : -72.55031 : Springfield, MA +01111 : 42.170731 : -72.604842 : Springfield, MA +01114 : 42.170731 : -72.604842 : Springfield, MA +01115 : 42.102894 : -72.591633 : Springfield, MA +01116 : 42.170731 : -72.604842 : Longmeadow, MA +01118 : 42.093144 : -72.5291 : Springfield, MA +01119 : 42.128442 : -72.50932 : Springfield, MA +01128 : 42.095344 : -72.48857 : Springfield, MA +01129 : 42.121031 : -72.4896 : Springfield, MA +01133 : 42.170731 : -72.604842 : Springfield, MA +01138 : 42.170731 : -72.604842 : Springfield, MA +01139 : 42.170731 : -72.604842 : Springfield, MA +01144 : 42.101796 : -72.59151 : Springfield, MA +01151 : 42.153926 : -72.50531 : Indian Orchard, MA +01152 : 42.170731 : -72.604842 : Springfield, MA +01199 : 42.119943 : -72.604983 : Springfield, MA +01201 : 42.45384 : -73.254 : Pittsfield, MA +01202 : 42.3929 : -73.228483 : Pittsfield, MA +01203 : 42.3929 : -73.228483 : Pittsfield, MA +01220 : 42.619727 : -73.11842 : Adams, MA +01222 : 42.057496 : -73.32177 : Ashley Falls, MA +01223 : 42.314449 : -73.09335 : Becket, MA +01224 : 42.3929 : -73.228483 : Berkshire, MA +01225 : 42.551731 : -73.1653 : Cheshire, MA +01226 : 42.476575 : -73.11547 : Dalton, MA +01227 : 42.516145 : -73.092852 : Dalton, MA +01229 : 42.279292 : -73.343545 : Glendale, MA +01230 : 42.189715 : -73.35249 : Great Barrington, MA +01231 : 42.153001 : -73.298131 : Sheffield, MA +01235 : 42.433661 : -73.09278 : Hinsdale, MA +01236 : 42.266874 : -73.36236 : Housatonic, MA +01237 : 42.557346 : -73.24364 : Lanesboro, MA +01238 : 42.299263 : -73.2327 : Lee, MA +01240 : 42.36237 : -73.27683 : Lenox, MA +01242 : 42.336557 : -73.24599 : Lenox Dale, MA +01243 : 42.356088 : -73.010448 : Middlefield, MA +01244 : 42.139104 : -73.20312 : Mill River, MA +01245 : 42.180659 : -73.20849 : Monterey, MA +01247 : 42.696064 : -73.10145 : North Adams, MA +01252 : 42.198648 : -73.446234 : North Egremont, MA +01253 : 42.198403 : -73.10205 : Otis, MA +01254 : 42.374711 : -73.36336 : Richmond, MA +01255 : 42.088973 : -73.12444 : Sandisfield, MA +01256 : 42.592506 : -73.01123 : Savoy, MA +01257 : 42.102694 : -73.36591 : Sheffield, MA +01258 : 42.103122 : -73.45734 : South Egremont, MA +01259 : 42.0645 : -73.24674 : Southfield, MA +01260 : 42.286586 : -73.313274 : South Lee, MA +01262 : 42.283216 : -73.31423 : Stockbridge, MA +01263 : 42.3929 : -73.228483 : Stockbridge, MA +01264 : 42.224905 : -73.20394 : Tyringham, MA +01266 : 42.328535 : -73.36407 : West Stockbridge, MA +01267 : 42.689962 : -73.22355 : Williamstown, MA +01270 : 42.443726 : -73.116127 : Windsor, MA +01301 : 42.605524 : -72.60098 : Greenfield, MA +01302 : 42.522178 : -72.624164 : Greenfield, MA +01330 : 42.521131 : -72.81116 : Ashfield, MA +01331 : 42.579931 : -72.20836 : Athol, MA +01337 : 42.678023 : -72.55569 : Bernardston, MA +01338 : 42.569498 : -72.802 : Buckland, MA +01339 : 42.626858 : -72.87939 : Charlemont, MA +01340 : 42.673371 : -72.73104 : Colrain, MA +01341 : 42.508313 : -72.70403 : Conway, MA +01342 : 42.542322 : -72.6091 : Deerfield, MA +01343 : 42.642666 : -72.986231 : Drury, MA +01344 : 42.607051 : -72.41396 : Erving, MA +01346 : 42.669255 : -72.80494 : Heath, MA +01347 : 42.556558 : -72.518104 : Lake Pleasant, MA +01349 : 42.5737 : -72.50525 : Turners Falls, MA +01350 : 42.712257 : -72.97629 : Monroe Bridge, MA +01351 : 42.534976 : -72.52522 : Montague, MA +01354 : 42.522178 : -72.624164 : Northfield, MA +01355 : 42.485899 : -72.33345 : New Salem, MA +01360 : 42.682285 : -72.45649 : Northfield, MA +01364 : 42.599614 : -72.29263 : Orange, MA +01366 : 42.474718 : -72.21226 : Petersham, MA +01367 : 42.694883 : -72.90962 : Rowe, MA +01368 : 42.671012 : -72.16999 : Royalston, MA +01369 : 42.522178 : -72.624164 : Shattuckville, MA +01370 : 42.603447 : -72.72754 : Shelburne Falls, MA +01373 : 42.472734 : -72.62452 : South Deerfield, MA +01374 : 42.636459 : -72.798742 : Charlemont, MA +01375 : 42.449978 : -72.56302 : Sunderland, MA +01376 : 42.609425 : -72.54438 : Turners Falls, MA +01378 : 42.667152 : -72.32729 : Warwick, MA +01379 : 42.547274 : -72.41724 : Wendell, MA +01380 : 42.594455 : -72.36314 : Wendell Depot, MA +01393 : 42.459814 : -72.593626 : Whately, MA +01420 : 42.578689 : -71.80338 : Fitchburg, MA +01427 : 42.286575 : -71.585753 : Westborough, MA +01430 : 42.658768 : -71.93287 : Ashburnham, MA +01431 : 42.672005 : -71.8137 : Ashby, MA +01432 : 42.549821 : -71.59136 : Ayer, MA +01436 : 42.608903 : -72.08021 : Baldwinville, MA +01438 : 42.563367 : -72.03498 : East Templeton, MA +01440 : 42.575355 : -71.99183 : Gardner, MA +01441 : 42.364807 : -71.896868 : Gardner, MA +01450 : 42.609887 : -71.55722 : Groton, MA +01451 : 42.505928 : -71.5888 : Harvard, MA +01452 : 42.477515 : -71.99654 : Hubbardston, MA +01453 : 42.526523 : -71.75358 : Leominster, MA +01460 : 42.540052 : -71.49085 : Littleton, MA +01462 : 42.582839 : -71.72051 : Lunenburg, MA +01463 : 42.665686 : -71.5929 : Pepperell, MA +01464 : 42.559289 : -71.64555 : Shirley, MA +01467 : 42.488666 : -71.62412 : Still River, MA +01468 : 42.557796 : -72.06824 : Templeton, MA +01469 : 42.658738 : -71.69204 : Townsend, MA +01470 : 42.446396 : -71.459405 : Groton, MA +01471 : 42.446396 : -71.459405 : Groton, MA +01472 : 42.446396 : -71.459405 : West Groton, MA +01473 : 42.544622 : -71.9021 : Westminster, MA +01474 : 42.669408 : -71.74578 : West Townsend, MA +01475 : 42.675441 : -72.0467 : Winchendon, MA +01477 : 42.364807 : -71.896868 : Winchendon Springs, MA +01501 : 42.20361 : -71.83843 : Auburn, MA +01503 : 42.380562 : -71.62665 : Berlin, MA +01504 : 42.028147 : -71.52999 : Blackstone, MA +01505 : 42.338392 : -71.73026 : Boylston, MA +01506 : 42.200374 : -72.09787 : Brookfield, MA +01507 : 42.135142 : -71.96961 : Charlton, MA +01508 : 42.109748 : -72.079455 : Charlton City, MA +01509 : 42.364807 : -71.896868 : Charlton Depot, MA +01510 : 42.418836 : -71.68482 : Clinton, MA +01515 : 42.212777 : -72.05311 : East Brookfield, MA +01516 : 42.061437 : -71.72887 : Douglas, MA +01517 : 42.364807 : -71.896868 : East Princeton, MA +01518 : 42.12515 : -72.12393 : Fiskdale, MA +01519 : 42.201674 : -71.68771 : Grafton, MA +01520 : 42.338962 : -71.84434 : Holden, MA +01521 : 42.054676 : -72.16137 : Holland, MA +01522 : 42.369658 : -71.87418 : Jefferson, MA +01523 : 42.473131 : -71.67946 : Lancaster, MA +01524 : 42.238942 : -71.91908 : Leicester, MA +01525 : 42.364807 : -71.896868 : Linwood, MA +01526 : 42.364807 : -71.896868 : Manchaug, MA +01527 : 42.196144 : -71.76272 : Millbury, MA +01529 : 42.036396 : -71.57798 : Millville, MA +01531 : 42.317121 : -72.12248 : New Braintree, MA +01532 : 42.321917 : -71.64692 : Northborough, MA +01534 : 42.140741 : -71.64376 : Northbridge, MA +01535 : 42.267274 : -72.07823 : North Brookfield, MA +01536 : 42.231444 : -71.70523 : North Grafton, MA +01537 : 42.170846 : -71.88989 : North Oxford, MA +01538 : 42.364807 : -71.896868 : North Uxbridge, MA +01540 : 42.117527 : -71.8657 : Oxford, MA +01541 : 42.451569 : -71.882 : Princeton, MA +01542 : 42.194793 : -71.90651 : Rochdale, MA +01543 : 42.380877 : -71.96427 : Rutland, MA +01545 : 42.286643 : -71.72502 : Shrewsbury, MA +01546 : 42.364807 : -71.896868 : Shrewsbury, MA +01550 : 42.070827 : -72.03533 : Southbridge, MA +01560 : 42.177462 : -71.69382 : South Grafton, MA +01561 : 42.443539 : -71.686137 : South Lancaster, MA +01562 : 42.247212 : -71.99227 : Spencer, MA +01564 : 42.436875 : -71.77333 : Sterling, MA +01566 : 42.104581 : -72.08584 : Sturbridge, MA +01568 : 42.17382 : -71.60971 : Upton, MA +01569 : 42.064978 : -71.62992 : Uxbridge, MA +01570 : 42.047728 : -71.86108 : Webster, MA +01571 : 42.049864 : -71.9173 : Dudley, MA +01580 : 42.364807 : -71.896868 : Westborough, MA +01581 : 42.269845 : -71.61408 : Westborough, MA +01582 : 42.364807 : -71.896868 : Westborough, MA +01583 : 42.359842 : -71.787 : West Boylston, MA +01585 : 42.242965 : -72.16734 : West Brookfield, MA +01586 : 42.364807 : -71.896868 : West Millbury, MA +01588 : 42.114195 : -71.67225 : Whitinsville, MA +01590 : 42.131028 : -71.75121 : Sutton, MA +01601 : 42.265275 : -71.879415 : Worcester, MA +01602 : 42.272359 : -71.84482 : Worcester, MA +01603 : 42.240526 : -71.83776 : Worcester, MA +01604 : 42.255393 : -71.77459 : Worcester, MA +01605 : 42.286543 : -71.78846 : Worcester, MA +01606 : 42.311342 : -71.79531 : Worcester, MA +01607 : 42.229543 : -71.79501 : Worcester, MA +01608 : 42.261343 : -71.80173 : Worcester, MA +01609 : 42.271743 : -71.81348 : Worcester, MA +01610 : 42.248493 : -71.80793 : Worcester, MA +01611 : 42.238449 : -71.87139 : Cherry Valley, MA +01612 : 42.307591 : -71.91929 : Paxton, MA +01613 : 42.293316 : -71.801971 : Worcester, MA +01614 : 42.364807 : -71.896868 : Worcester, MA +01615 : 42.364807 : -71.896868 : Worcester, MA +01634 : 42.069484 : -72.999433 : Tolland, MA +01653 : 42.364807 : -71.896868 : Worcester, MA +01654 : 42.364807 : -71.896868 : Worcester, MA +01655 : 42.364807 : -71.896868 : Worcester, MA +01701 : 42.318695 : -71.42344 : Framingham, MA +01702 : 42.283995 : -71.42161 : Framingham, MA +01703 : 42.446396 : -71.459405 : Framingham, MA +01704 : 42.446396 : -71.459405 : Framingham, MA +01705 : 42.446396 : -71.459405 : Framingham, MA +01718 : 42.519739 : -71.42721 : Village Of Nagog Woods, MA +01719 : 42.486259 : -71.51244 : Boxborough, MA +01720 : 42.477142 : -71.4422 : Acton, MA +01721 : 42.257956 : -71.45886 : Ashland, MA +01730 : 42.496679 : -71.27504 : Bedford, MA +01731 : 42.459085 : -71.27556 : Hanscom AFB, MA +01740 : 42.437086 : -71.61266 : Bolton, MA +01741 : 42.5286 : -71.35084 : Carlisle, MA +01742 : 42.457201 : -71.37478 : Concord, MA +01745 : 42.295544 : -71.50468 : Fayville, MA +01746 : 42.196065 : -71.43797 : Holliston, MA +01747 : 42.125536 : -71.53662 : Hopedale, MA +01748 : 42.220447 : -71.53418 : Hopkinton, MA +01749 : 42.389813 : -71.55791 : Hudson, MA +01750 : 42.273817 : -71.378157 : Natick, MA +01752 : 42.350909 : -71.54753 : Marlborough, MA +01754 : 42.430781 : -71.45594 : Maynard, MA +01756 : 42.092006 : -71.54474 : Mendon, MA +01757 : 42.149176 : -71.52149 : Milford, MA +01760 : 42.290763 : -71.35368 : Natick, MA +01770 : 42.231025 : -71.37202 : Sherborn, MA +01772 : 42.297643 : -71.53369 : Southborough, MA +01773 : 42.425537 : -71.30316 : Lincoln, MA +01775 : 42.423882 : -71.51086 : Stow, MA +01776 : 42.38532 : -71.42989 : Sudbury, MA +01778 : 42.345583 : -71.35643 : Wayland, MA +01784 : 42.446396 : -71.459405 : Woodville, MA +01801 : 42.484545 : -71.15206 : Woburn, MA +01803 : 42.506362 : -71.20008 : Burlington, MA +01805 : 42.446396 : -71.459405 : Burlington, MA +01806 : 42.446396 : -71.459405 : Woburn, MA +01807 : 42.446396 : -71.459405 : Woburn, MA +01808 : 42.446396 : -71.459405 : Woburn, MA +01810 : 42.646942 : -71.1513 : Andover, MA +01812 : 42.647191 : -71.184202 : Andover, MA +01813 : 42.446396 : -71.459405 : Woburn, MA +01815 : 42.446396 : -71.459405 : Woburn, MA +01820 : 42.540779 : -71.238175 : Pinehurst, MA +01821 : 42.54805 : -71.25054 : Billerica, MA +01822 : 42.446396 : -71.459405 : Billerica, MA +01823 : 42.800429 : -71.11087 : Haverhill, MA +01824 : 42.595491 : -71.3544 : Chelmsford, MA +01826 : 42.677772 : -71.316 : Dracut, MA +01827 : 42.671356 : -71.50292 : Dunstable, MA +01830 : 42.78519 : -71.07011 : Haverhill, MA +01831 : 42.771095 : -71.122054 : Haverhill, MA +01832 : 42.781357 : -71.11023 : Haverhill, MA +01833 : 42.729437 : -70.98291 : Georgetown, MA +01834 : 42.750691 : -71.02487 : Groveland, MA +01835 : 42.757767 : -71.08518 : Haverhill, MA +01840 : 42.706941 : -71.16181 : Lawrence, MA +01841 : 42.71159 : -71.16667 : Lawrence, MA +01842 : 42.635443 : -70.879123 : Lawrence, MA +01843 : 42.691091 : -71.16078 : Lawrence, MA +01844 : 42.73004 : -71.17935 : Methuen, MA +01845 : 42.683841 : -71.11171 : North Andover, MA +01850 : 42.655791 : -71.30504 : Lowell, MA +01851 : 42.630915 : -71.33238 : Lowell, MA +01852 : 42.634112 : -71.29849 : Lowell, MA +01853 : 42.446396 : -71.459405 : Lowell, MA +01854 : 42.649758 : -71.33348 : Lowell, MA +01856 : 42.641779 : -71.303488 : Lowell, MA +01860 : 42.834246 : -71.00207 : Merrimac, MA +01862 : 42.573592 : -71.2911 : North Billerica, MA +01863 : 42.634199 : -71.39322 : North Chelmsford, MA +01864 : 42.583436 : -71.0982 : North Reading, MA +01865 : 42.446396 : -71.459405 : Nutting Lake, MA +01866 : 42.446396 : -71.459405 : Pinehurst, MA +01867 : 42.52585 : -71.10993 : Reading, MA +01876 : 42.601684 : -71.22071 : Tewksbury, MA +01879 : 42.671589 : -71.41694 : Tyngsboro, MA +01880 : 42.501345 : -71.07132 : Wakefield, MA +01885 : 42.635443 : -70.879123 : West Boxford, MA +01886 : 42.592086 : -71.43754 : Westford, MA +01887 : 42.558576 : -71.17031 : Wilmington, MA +01888 : 42.446396 : -71.459405 : Woburn, MA +01889 : 42.571633 : -71.109646 : North Reading, MA +01890 : 42.451945 : -71.14276 : Winchester, MA +01899 : 42.635443 : -70.879123 : Andover, MA +01901 : 42.461246 : -70.946743 : Lynn, MA +01902 : 42.469946 : -70.94113 : Lynn, MA +01903 : 42.635443 : -70.879123 : Lynn, MA +01904 : 42.490421 : -70.96579 : Lynn, MA +01905 : 42.464879 : -70.97411 : Lynn, MA +01906 : 42.462796 : -71.0098 : Saugus, MA +01907 : 42.474409 : -70.90588 : Swampscott, MA +01908 : 42.427096 : -70.92809 : Nahant, MA +01910 : 42.454796 : -70.974694 : Lynn, MA +01913 : 42.854423 : -70.93547 : Amesbury, MA +01915 : 42.560995 : -70.8757 : Beverly, MA +01921 : 42.677869 : -71.00844 : Boxford, MA +01922 : 42.76087 : -70.92648 : Byfield, MA +01923 : 42.569756 : -70.94322 : Danvers, MA +01929 : 42.631753 : -70.77925 : Essex, MA +01930 : 42.624015 : -70.67552 : Gloucester, MA +01931 : 42.635443 : -70.879123 : Gloucester, MA +01936 : 42.635443 : -70.879123 : Hamilton, MA +01937 : 42.635443 : -70.879123 : Hathorne, MA +01938 : 42.682965 : -70.84007 : Ipswich, MA +01940 : 42.527895 : -71.02834 : Lynnfield, MA +01944 : 42.580033 : -70.76462 : Manchester, MA +01945 : 42.497146 : -70.86323 : Marblehead, MA +01947 : 42.642845 : -70.873647 : Salem, MA +01949 : 42.602278 : -71.01356 : Middleton, MA +01950 : 42.809891 : -70.86363 : Newburyport, MA +01951 : 42.780141 : -70.86866 : Newbury, MA +01952 : 42.85048 : -70.86153 : Salisbury, MA +01960 : 42.534045 : -70.96146 : Peabody, MA +01961 : 42.635443 : -70.879123 : Peabody, MA +01965 : 42.558113 : -70.825743 : Prides Crossing, MA +01966 : 42.659936 : -70.61727 : Rockport, MA +01969 : 42.716708 : -70.90899 : Rowley, MA +01970 : 42.516845 : -70.8985 : Salem, MA +01971 : 42.635443 : -70.879123 : Salem, MA +01982 : 42.616643 : -70.86513 : South Hamilton, MA +01983 : 42.642471 : -70.94424 : Topsfield, MA +01984 : 42.600518 : -70.87618 : Wenham, MA +01985 : 42.790736 : -70.97286 : West Newbury, MA +02018 : 41.970474 : -70.701357 : Accord, MA +02019 : 42.075122 : -71.47953 : Bellingham, MA +02020 : 42.081825 : -70.643868 : Brant Rock, MA +02021 : 42.166776 : -71.1343 : Canton, MA +02025 : 42.241908 : -70.81223 : Cohasset, MA +02026 : 42.244609 : -71.16553 : Dedham, MA +02027 : 42.180048 : -71.08923 : Dedham, MA +02029 : 41.817398 : -71.453674 : Providence, RI +02030 : 42.23888 : -71.28241 : Dover, MA +02031 : 41.998799 : -71.200894 : East Mansfield, MA +02032 : 42.153912 : -71.21362 : East Walpole, MA +02035 : 42.061427 : -71.24232 : Foxboro, MA +02038 : 42.089104 : -71.4069 : Franklin, MA +02040 : 41.970474 : -70.701357 : Greenbush, MA +02041 : 42.069642 : -70.649075 : Green Harbor, MA +02043 : 42.225708 : -70.88764 : Hingham, MA +02044 : 41.970474 : -70.701357 : Hingham, MA +02045 : 42.286347 : -70.87663 : Hull, MA +02047 : 42.142836 : -70.69353 : Humarock, MA +02048 : 42.019982 : -71.2191 : Mansfield, MA +02050 : 42.109763 : -70.69172 : Marshfield, MA +02051 : 42.151202 : -70.734146 : Marshfield Hills, MA +02052 : 42.185571 : -71.30476 : Medfield, MA +02053 : 42.151526 : -71.42315 : Medway, MA +02054 : 42.166398 : -71.36178 : Millis, MA +02055 : 41.970474 : -70.701357 : Minot, MA +02056 : 42.111836 : -71.32855 : Norfolk, MA +02059 : 41.970474 : -70.701357 : North Marshfield, MA +02060 : 41.970474 : -70.701357 : North Scituate, MA +02061 : 42.15243 : -70.8205 : Norwell, MA +02062 : 42.185974 : -71.20166 : Norwood, MA +02065 : 42.097219 : -70.651567 : Ocean Bluff, MA +02066 : 42.205038 : -70.7513 : Scituate, MA +02067 : 42.113749 : -71.17923 : Sharon, MA +02070 : 42.180048 : -71.08923 : Sheldonville, MA +02071 : 42.101406 : -71.27239 : South Walpole, MA +02072 : 42.125432 : -71.10627 : Stoughton, MA +02081 : 42.145237 : -71.25375 : Walpole, MA +02085 : 42.075995 : -71.286055 : Foxborough, MA +02090 : 42.212949 : -71.20735 : Westwood, MA +02093 : 42.0597 : -71.34617 : Wrentham, MA +02101 : 42.370567 : -71.026964 : Boston, MA +02102 : 42.338947 : -70.919635 : Boston, MA +02103 : 42.338947 : -70.919635 : Boston, MA +02104 : 42.338947 : -70.919635 : Boston, MA +02105 : 42.338947 : -70.919635 : Boston, MA +02106 : 42.354318 : -71.073449 : Boston, MA +02107 : 42.338947 : -70.919635 : Boston, MA +02108 : 42.357903 : -71.06408 : Boston, MA +02109 : 42.361477 : -71.05417 : Boston, MA +02110 : 42.356532 : -71.05365 : Boston, MA +02111 : 42.349838 : -71.06101 : Boston, MA +02112 : 42.338947 : -70.919635 : Boston, MA +02113 : 42.365028 : -71.05636 : Boston, MA +02114 : 42.361792 : -71.06774 : Boston, MA +02115 : 42.34308 : -71.09268 : Boston, MA +02116 : 42.349622 : -71.07372 : Boston, MA +02117 : 42.338947 : -70.919635 : Boston, MA +02118 : 42.338724 : -71.07276 : Boston, MA +02119 : 42.324511 : -71.08455 : Boston, MA +02120 : 42.332099 : -71.09651 : Boston, MA +02121 : 42.307448 : -71.08127 : Boston, MA +02122 : 42.296298 : -71.05454 : Boston, MA +02123 : 42.338947 : -70.919635 : Boston, MA +02124 : 42.28713 : -71.07156 : Boston, MA +02125 : 42.316852 : -71.05811 : Boston, MA +02126 : 42.272098 : -71.09426 : Mattapan, MA +02127 : 42.33499 : -71.04562 : Boston, MA +02128 : 42.378297 : -71.0255 : Boston, MA +02129 : 42.378619 : -71.06495 : Charlestown, MA +02130 : 42.309998 : -71.11171 : Jamaica Plain, MA +02131 : 42.284678 : -71.13052 : Roslindale, MA +02132 : 42.279432 : -71.1598 : West Roxbury, MA +02133 : 42.338947 : -70.919635 : Boston, MA +02134 : 42.355147 : -71.13164 : Allston, MA +02135 : 42.348418 : -71.15349 : Brighton, MA +02136 : 42.252198 : -71.12593 : Hyde Park, MA +02137 : 42.338947 : -70.919635 : Readville, MA +02138 : 42.379146 : -71.12803 : Cambridge, MA +02139 : 42.364347 : -71.10431 : Cambridge, MA +02140 : 42.393327 : -71.12837 : Cambridge, MA +02141 : 42.370519 : -71.08443 : Cambridge, MA +02142 : 42.362297 : -71.08412 : Cambridge, MA +02143 : 42.381929 : -71.09908 : Somerville, MA +02144 : 42.399546 : -71.12165 : Somerville, MA +02145 : 42.390846 : -71.09225 : Somerville, MA +02146 : 42.308198 : -71.088745 : Brookline, MA +02147 : 42.180048 : -71.08923 : Brookline Village, MA +02148 : 42.428549 : -71.06059 : Malden, MA +02149 : 42.409916 : -71.0522 : Everett, MA +02150 : 42.396382 : -71.03352 : Chelsea, MA +02151 : 42.416247 : -71.00525 : Revere, MA +02152 : 42.373047 : -70.97803 : Winthrop, MA +02153 : 42.446396 : -71.459405 : Medford, MA +02154 : 42.388938 : -71.2398 : Waltham, MA +02155 : 42.419846 : -71.10942 : Medford, MA +02156 : 42.446396 : -71.459405 : West Medford, MA +02157 : 42.173933 : -71.185494 : Babson Park, MA +02158 : 42.353696 : -71.188149 : Newton, MA +02159 : 42.316097 : -71.191248 : Newton, MA +02160 : 42.446396 : -71.459405 : Newton, MA +02161 : 42.446396 : -71.459405 : Newton, MA +02162 : 42.331896 : -71.25405 : Newton, MA +02163 : 42.367946 : -71.12056 : Boston, MA +02164 : 42.446396 : -71.459405 : Newton, MA +02165 : 42.446396 : -71.459405 : Newton, MA +02166 : 42.346146 : -71.243057 : Auburndale, MA +02167 : 42.320797 : -71.169847 : Chestnut Hill, MA +02168 : 42.446396 : -71.459405 : Waban, MA +02169 : 42.250739 : -70.99593 : Quincy, MA +02170 : 42.267049 : -71.01834 : Quincy, MA +02171 : 42.284498 : -71.02316 : Quincy, MA +02172 : 42.372596 : -71.177998 : Watertown, MA +02173 : 42.446396 : -71.459405 : Lexington, MA +02174 : 42.417695 : -71.167083 : Arlington, MA +02175 : 42.446396 : -71.459405 : Arlington Heights, MA +02176 : 42.459045 : -71.06233 : Melrose, MA +02177 : 42.446396 : -71.459405 : Melrose, MA +02178 : 42.446396 : -71.459405 : Belmont, MA +02179 : 42.446396 : -71.459405 : Waverley, MA +02180 : 42.480145 : -71.09835 : Stoneham, MA +02181 : 42.300596 : -71.27875 : Wellesley, MA +02184 : 42.209555 : -70.99968 : Braintree, MA +02185 : 42.180048 : -71.08923 : Braintree, MA +02186 : 42.253074 : -71.07496 : Milton, MA +02187 : 42.180048 : -71.08923 : Milton Village, MA +02188 : 42.212866 : -70.95872 : Weymouth, MA +02189 : 42.2112 : -70.93111 : Weymouth, MA +02190 : 42.1711 : -70.94597 : Weymouth, MA +02191 : 42.242749 : -70.94434 : Weymouth, MA +02192 : 42.180048 : -71.08923 : Needham, MA +02193 : 42.446396 : -71.459405 : Weston, MA +02194 : 42.292547 : -71.225799 : Needham, MA +02195 : 42.446396 : -71.459405 : Newton, MA +02196 : 42.338947 : -70.919635 : Boston, MA +02199 : 42.34713 : -71.08234 : Boston, MA +02201 : 42.338947 : -70.919635 : Boston, MA +02202 : 42.361094 : -71.061814 : Boston, MA +02203 : 42.361485 : -71.060364 : Boston, MA +02204 : 42.338947 : -70.919635 : Boston, MA +02205 : 42.350334 : -71.053877 : Boston, MA +02206 : 42.338947 : -70.919635 : Boston, MA +02207 : 42.338947 : -70.919635 : Boston, MA +02208 : 42.338947 : -70.919635 : Boston, MA +02209 : 42.338947 : -70.919635 : Boston, MA +02210 : 42.347974 : -71.04463 : Boston, MA +02211 : 42.338947 : -70.919635 : Boston, MA +02212 : 42.446396 : -71.459405 : Boston, MA +02215 : 42.346997 : -71.10215 : Boston, MA +02216 : 42.338947 : -70.919635 : Boston, MA +02217 : 42.338947 : -70.919635 : Boston, MA +02222 : 42.367797 : -71.06282 : Boston, MA +02238 : 42.446396 : -71.459405 : Cambridge, MA +02239 : 42.446396 : -71.459405 : Cambridge, MA +02241 : 42.338947 : -70.919635 : Boston, MA +02254 : 42.446396 : -71.459405 : Waltham, MA +02258 : 42.446396 : -71.459405 : Newton, MA +02266 : 42.338947 : -70.919635 : Boston, MA +02269 : 42.180048 : -71.08923 : Quincy, MA +02272 : 42.446396 : -71.459405 : Watertown, MA +02277 : 42.446396 : -71.459405 : Watertown, MA +02283 : 42.338947 : -70.919635 : Boston, MA +02284 : 42.338947 : -70.919635 : Boston, MA +02293 : 42.338947 : -70.919635 : Boston, MA +02295 : 42.338947 : -70.919635 : Boston, MA +02297 : 42.338947 : -70.919635 : Boston, MA +02301 : 42.0794 : -71.03441 : Brockton, MA +02302 : 42.08715 : -71.00222 : Brockton, MA +02303 : 41.970474 : -70.701357 : Brockton, MA +02304 : 41.970474 : -70.701357 : Brockton, MA +02305 : 41.970474 : -70.701357 : Brockton, MA +02322 : 42.121932 : -71.04522 : Avon, MA +02324 : 41.979501 : -70.97215 : Bridgewater, MA +02325 : 41.98725 : -70.972786 : Bridgewater, MA +02327 : 42.040708 : -70.827245 : Bryantville, MA +02330 : 41.873697 : -70.7656 : Carver, MA +02331 : 41.970474 : -70.701357 : Duxbury, MA +02332 : 42.031371 : -70.70105 : Duxbury, MA +02333 : 42.029083 : -70.95227 : East Bridgewater, MA +02334 : 42.023528 : -71.132397 : Easton, MA +02337 : 42.022225 : -70.931588 : Elmwood, MA +02338 : 41.999851 : -70.85395 : Halifax, MA +02339 : 42.12867 : -70.85913 : Hanover, MA +02341 : 42.059434 : -70.86205 : Hanson, MA +02343 : 42.148351 : -71.01037 : Holbrook, MA +02344 : 41.970474 : -70.701357 : Middleboro, MA +02345 : 41.888198 : -70.581029 : Manomet, MA +02346 : 41.889582 : -70.89406 : Middleboro, MA +02347 : 41.835094 : -70.95973 : Lakeville, MA +02348 : 41.970474 : -70.701357 : Middleboro, MA +02349 : 41.970474 : -70.701357 : Middleboro, MA +02350 : 42.018525 : -70.847486 : Monponsett, MA +02351 : 42.119534 : -70.94787 : Abington, MA +02355 : 41.916918 : -70.801331 : North Carver, MA +02356 : 42.058507 : -71.11309 : North Easton, MA +02357 : 42.064499 : -71.087091 : North Easton, MA +02358 : 41.805219 : -70.62642 : North Pembroke, MA +02359 : 42.065554 : -70.80426 : Pembroke, MA +02360 : 41.894676 : -70.61999 : Plymouth, MA +02361 : 41.970474 : -70.701357 : Plymouth, MA +02362 : 41.970474 : -70.701357 : Plymouth, MA +02363 : 41.959094 : -70.706774 : Plymouth, MA +02364 : 41.993102 : -70.73827 : Kingston, MA +02366 : 41.854063 : -70.66088 : South Carver, MA +02367 : 41.968987 : -70.80452 : Plympton, MA +02368 : 42.173417 : -71.04912 : Randolph, MA +02369 : 41.662531 : -70.14021 : Dennis Port, MA +02370 : 42.129513 : -70.91189 : Rockland, MA +02375 : 42.029749 : -71.10191 : South Easton, MA +02379 : 42.02195 : -71.01878 : West Bridgewater, MA +02381 : 41.931602 : -70.561051 : White Horse Beach, MA +02382 : 42.08235 : -70.93734 : Whitman, MA +02401 : 42.079399 : -71.03459 : Brockton, MA +02402 : 42.0863 : -70.999339 : Brockton, MA +02403 : 41.970474 : -70.701357 : Brockton, MA +02404 : 41.970474 : -70.701357 : Brockton, MA +02405 : 41.970474 : -70.701357 : Brockton, MA +02407 : 42.136086 : -70.688251 : Scituate, MA +02420 : 42.452895 : -71.21619 : Lexington, MA +02421 : 42.439295 : -71.23553 : Lexington, MA +02445 : 42.324397 : -71.13933 : Brookline, MA +02446 : 42.344747 : -71.12141 : Brookline, MA +02447 : 42.180048 : -71.08923 : Brookline Village, MA +02451 : 42.393029 : -71.24771 : Waltham, MA +02452 : 42.392496 : -71.22153 : Waltham, MA +02453 : 42.370446 : -71.23563 : Waltham, MA +02454 : 42.356719 : -71.250479 : Waltham, MA +02456 : 42.446396 : -71.459405 : New Town, MA +02457 : 42.180048 : -71.08923 : Babson Park, MA +02458 : 42.354727 : -71.18809 : Newton, MA +02459 : 42.321197 : -71.193 : Newton Center, MA +02460 : 42.352996 : -71.20907 : Newtonville, MA +02461 : 42.31883 : -71.20822 : Newton Highlands, MA +02462 : 42.331646 : -71.25761 : Newton Lower Falls, MA +02464 : 42.311997 : -71.22046 : Newton Upper Falls, MA +02465 : 42.351046 : -71.22677 : West Newton, MA +02466 : 42.345833 : -71.24735 : Auburndale, MA +02467 : 42.321997 : -71.17314 : Chestnut Hill, MA +02468 : 42.325247 : -71.2319 : Waban, MA +02471 : 42.446396 : -71.459405 : Watertown, MA +02472 : 42.371296 : -71.18196 : Watertown, MA +02474 : 42.419496 : -71.15635 : Arlington, MA +02475 : 42.446396 : -71.459405 : Arlington Heights, MA +02476 : 42.416745 : -71.17761 : Arlington, MA +02477 : 42.446396 : -71.459405 : Watertown, MA +02478 : 42.391546 : -71.17471 : Belmont, MA +02479 : 42.446396 : -71.459405 : Waverley, MA +02481 : 42.313329 : -71.27649 : Wellesley Hills, MA +02482 : 42.300096 : -71.30336 : Wellesley, MA +02492 : 42.278247 : -71.23388 : Needham, MA +02493 : 42.358663 : -71.28831 : Weston, MA +02494 : 42.29813 : -71.23154 : Needham, MA +02495 : 42.446396 : -71.459405 : Nonantum, MA +02532 : 41.751841 : -70.59764 : Buzzards Bay, MA +02534 : 41.66566 : -70.616 : Cataumet, MA +02535 : 41.345578 : -70.75145 : Chilmark, MA +02536 : 41.578992 : -70.5614 : East Falmouth, MA +02537 : 41.733837 : -70.43754 : East Sandwich, MA +02538 : 41.782915 : -70.64881 : East Wareham, MA +02539 : 41.380479 : -70.52453 : Edgartown, MA +02540 : 41.56105 : -70.61968 : Falmouth, MA +02541 : 41.799312 : -70.308662 : Falmouth, MA +02542 : 41.665605 : -70.52456 : Buzzards Bay, MA +02543 : 41.526791 : -70.66505 : Woods Hole, MA +02549 : 41.621779 : -70.504349 : Mashpee, MA +02551 : 41.453321 : -70.558023 : Oak Bluffs, MA +02552 : 41.379836 : -70.643092 : Menemsha, MA +02553 : 41.67336 : -70.608047 : Monument Beach, MA +02554 : 41.276758 : -70.09089 : Nantucket, MA +02556 : 41.6403 : -70.63036 : North Falmouth, MA +02557 : 41.417376 : -70.560032 : Oak Bluffs, MA +02558 : 41.746424 : -70.65956 : Onset, MA +02559 : 41.694132 : -70.61706 : Pocasset, MA +02561 : 41.770254 : -70.533664 : Sagamore, MA +02562 : 41.793263 : -70.519584 : Sagamore Beach, MA +02563 : 41.735645 : -70.48866 : Sandwich, MA +02564 : 41.273949 : -70.015545 : Siasconset, MA +02565 : 41.799312 : -70.308662 : Silver Beach, MA +02567 : 41.79197 : -70.530852 : Sagamore, MA +02568 : 41.451263 : -70.60872 : Vineyard Haven, MA +02571 : 41.751554 : -70.71059 : Wareham, MA +02573 : 41.379836 : -70.643092 : Vineyard Haven, MA +02574 : 41.603946 : -70.638189 : West Falmouth, MA +02575 : 41.378807 : -70.66376 : West Tisbury, MA +02576 : 41.776042 : -70.75783 : West Wareham, MA +02584 : 41.277794 : -70.046019 : Nantucket, MA +02595 : 41.381585 : -70.66351 : West Tisbury, MA +02601 : 41.654741 : -70.2895 : Hyannis, MA +02625 : 41.640528 : -70.433279 : Barnstable Town, MA +02630 : 41.700327 : -70.29568 : Barnstable, MA +02631 : 41.746647 : -70.07773 : Brewster, MA +02632 : 41.658718 : -70.34658 : Centerville, MA +02633 : 41.686534 : -69.97746 : Chatham, MA +02634 : 41.799312 : -70.308662 : Centerville, MA +02635 : 41.625037 : -70.44317 : Cotuit, MA +02636 : 41.799312 : -70.308662 : Centerville, MA +02637 : 41.701438 : -70.277212 : Cummaquid, MA +02638 : 41.736684 : -70.19183 : Dennis, MA +02639 : 41.661115 : -70.13348 : Dennis Port, MA +02641 : 41.734713 : -70.20467 : East Dennis, MA +02642 : 41.844087 : -69.98921 : Eastham, MA +02643 : 41.784308 : -69.962034 : East Orleans, MA +02644 : 41.683462 : -70.51211 : Forestdale, MA +02645 : 41.707332 : -70.05679 : Harwich, MA +02646 : 41.669219 : -70.07419 : Harwich Port, MA +02647 : 41.63275 : -70.30435 : Hyannis Port, MA +02648 : 41.667689 : -70.4168 : Marstons Mills, MA +02649 : 41.613743 : -70.48754 : Mashpee, MA +02650 : 41.702265 : -69.96958 : North Chatham, MA +02651 : 41.824264 : -69.98176 : North Eastham, MA +02652 : 42.02889 : -70.07938 : North Truro, MA +02653 : 41.777647 : -69.97312 : Orleans, MA +02654 : 41.543967 : -69.987203 : Nantucket, MA +02655 : 41.632935 : -70.38693 : Osterville, MA +02657 : 42.053355 : -70.18947 : Provincetown, MA +02659 : 41.678628 : -70.02495 : South Chatham, MA +02660 : 41.712338 : -70.16165 : South Dennis, MA +02661 : 41.675799 : -70.0396 : South Harwich, MA +02662 : 41.756694 : -69.984123 : South Orleans, MA +02663 : 41.800531 : -70.076776 : South Wellfleet, MA +02664 : 41.670981 : -70.19797 : South Yarmouth, MA +02666 : 41.992804 : -70.05427 : Truro, MA +02667 : 41.922412 : -70.01484 : Wellfleet, MA +02668 : 41.70631 : -70.37048 : West Barnstable, MA +02669 : 41.673635 : -69.99494 : West Chatham, MA +02670 : 41.659749 : -70.17089 : West Dennis, MA +02671 : 41.665589 : -70.11152 : West Harwich, MA +02672 : 41.636077 : -70.31962 : West Hyannisport, MA +02673 : 41.656883 : -70.23726 : West Yarmouth, MA +02675 : 41.703205 : -70.22395 : Yarmouth Port, MA +02702 : 41.792192 : -71.06446 : Assonet, MA +02703 : 41.928099 : -71.31456 : Attleboro, MA +02712 : 41.756214 : -71.067062 : Chartley, MA +02713 : 41.429673 : -70.8954 : Cuttyhunk, MA +02714 : 41.756214 : -71.067062 : Dartmouth, MA +02715 : 41.811514 : -71.13633 : Dighton, MA +02717 : 41.765934 : -70.95332 : East Freetown, MA +02718 : 41.876249 : -71.01827 : East Taunton, MA +02719 : 41.634152 : -70.8814 : Fairhaven, MA +02720 : 41.716952 : -71.13986 : Fall River, MA +02721 : 41.685452 : -71.15425 : Fall River, MA +02722 : 41.756214 : -71.067062 : Fall River, MA +02723 : 41.691369 : -71.13234 : Fall River, MA +02724 : 41.684152 : -71.17436 : Fall River, MA +02725 : 41.721652 : -71.17482 : Somerset, MA +02726 : 41.754828 : -71.14894 : Somerset, MA +02735 : 41.999346 : -71.113582 : Easton, MA +02738 : 41.706599 : -70.75086 : Marion, MA +02739 : 41.654776 : -70.80087 : Mattapoisett, MA +02740 : 41.634754 : -70.93752 : New Bedford, MA +02741 : 41.756214 : -71.067062 : New Bedford, MA +02742 : 41.619557 : -70.956346 : New Bedford, MA +02743 : 41.697015 : -70.91019 : Acushnet, MA +02744 : 41.610754 : -70.91453 : New Bedford, MA +02745 : 41.692806 : -70.93264 : New Bedford, MA +02746 : 41.659336 : -70.93347 : New Bedford, MA +02747 : 41.637916 : -70.99076 : North Dartmouth, MA +02748 : 41.59156 : -70.9494 : South Dartmouth, MA +02760 : 41.975495 : -71.33086 : North Attleboro, MA +02761 : 41.756214 : -71.067062 : North Attleboro, MA +02762 : 42.011848 : -71.32392 : Plainville, MA +02763 : 41.967949 : -71.31024 : Attleboro Falls, MA +02764 : 41.851557 : -71.15125 : North Dighton, MA +02766 : 41.969185 : -71.1854 : Norton, MA +02767 : 41.934586 : -71.04905 : Raynham, MA +02768 : 41.756214 : -71.067062 : Raynham Center, MA +02769 : 41.835067 : -71.26115 : Rehoboth, MA +02770 : 41.760783 : -70.83848 : Rochester, MA +02771 : 41.84345 : -71.32343 : Seekonk, MA +02777 : 41.741551 : -71.21433 : Swansea, MA +02779 : 41.825252 : -71.07799 : Berkley, MA +02780 : 41.904888 : -71.10288 : Taunton, MA +02781 : 41.522877 : -71.069344 : Westport, MA +02783 : 41.756214 : -71.067062 : Taunton, MA +02789 : 41.487831 : -71.457592 : South Kingstown, RI +02790 : 41.602517 : -71.08904 : Westport, MA +02791 : 41.519104 : -71.085137 : Westport Point, MA +02801 : 41.530131 : -71.284066 : Adamsville, RI +02802 : 41.954098 : -71.462053 : Albion, RI +02804 : 41.430068 : -71.78101 : Ashaway, RI +02805 : 41.830469 : -71.711713 : Foster, RI +02806 : 41.746834 : -71.32031 : Barrington, RI +02807 : 41.171389 : -71.58358 : Block Island, RI +02808 : 41.402009 : -71.74785 : Bradford, RI +02809 : 41.6842 : -71.26866 : Bristol, RI +02812 : 41.46603 : -71.66408 : Carolina, RI +02813 : 41.385256 : -71.66813 : Charlestown, RI +02814 : 41.896002 : -71.70335 : Chepachet, RI +02815 : 41.777861 : -71.67009 : Clayville, RI +02816 : 41.69105 : -71.57462 : Coventry, RI +02817 : 41.625874 : -71.67023 : West Greenwich, RI +02818 : 41.649733 : -71.46815 : East Greenwich, RI +02822 : 41.563937 : -71.60547 : Exeter, RI +02823 : 41.7312 : -71.546756 : Fiskeville, RI +02824 : 42.000248 : -71.563057 : Forestdale, RI +02825 : 41.785151 : -71.72021 : Foster, RI +02826 : 41.982417 : -71.600848 : Glendale, RI +02827 : 41.695419 : -71.74472 : Greene, RI +02828 : 41.870799 : -71.5539 : Greenville, RI +02829 : 41.879298 : -71.589357 : Harmony, RI +02830 : 41.976659 : -71.64969 : Harrisville, RI +02831 : 41.73865 : -71.57482 : Hope, RI +02832 : 41.511414 : -71.72737 : Hope Valley, RI +02833 : 41.470822 : -71.77722 : Hopkinton, RI +02835 : 41.520312 : -71.3718 : Jamestown, RI +02836 : 41.448844 : -71.62145 : Kenyon, RI +02837 : 41.518038 : -71.16548 : Little Compton, RI +02838 : 41.968698 : -71.47503 : Manville, RI +02839 : 41.948108 : -71.64003 : Mapleville, RI +02840 : 41.488002 : -71.31262 : Newport, RI +02841 : 41.498977 : -71.299004 : Newport, RI +02842 : 41.511739 : -71.28658 : Middletown, RI +02852 : 41.589701 : -71.454 : North Kingstown, RI +02854 : 41.375317 : -71.64393 : North Kingstown, RI +02857 : 41.83902 : -71.6257 : North Scituate, RI +02858 : 41.96186 : -71.64661 : Oakland, RI +02859 : 41.964896 : -71.72311 : Pascoag, RI +02860 : 41.872099 : -71.39007 : Pawtucket, RI +02861 : 41.881632 : -71.35583 : Pawtucket, RI +02862 : 41.86125 : -71.369099 : Pawtucket, RI +02863 : 41.889863 : -71.3926 : Central Falls, RI +02864 : 41.949099 : -71.41181 : Cumberland, RI +02865 : 41.905666 : -71.43023 : Lincoln, RI +02871 : 41.603929 : -71.26099 : Portsmouth, RI +02872 : 41.707119 : -71.286834 : Prudence Island, RI +02873 : 41.519922 : -71.774023 : Rockville, RI +02874 : 41.515135 : -71.45692 : Saunderstown, RI +02875 : 41.447642 : -71.63877 : Shannock, RI +02876 : 41.998398 : -71.576307 : Slatersville, RI +02877 : 41.5289 : -71.529854 : Slocum, RI +02878 : 41.629413 : -71.18724 : Tiverton, RI +02879 : 41.423601 : -71.52322 : Wakefield, RI +02880 : 41.375317 : -71.64393 : Wakefield, RI +02881 : 41.481001 : -71.52689 : Kingston, RI +02882 : 41.432452 : -71.46352 : Narragansett, RI +02883 : 41.375317 : -71.64393 : Peace Dale, RI +02885 : 41.726184 : -71.27049 : Warren, RI +02886 : 41.705478 : -71.45119 : Warwick, RI +02887 : 41.682455 : -71.557732 : Warwick, RI +02888 : 41.74805 : -71.40982 : Warwick, RI +02889 : 41.706814 : -71.3911 : Warwick, RI +02891 : 41.354881 : -71.80387 : Westerly, RI +02892 : 41.50155 : -71.58465 : West Kingston, RI +02893 : 41.70375 : -71.51857 : West Warwick, RI +02894 : 41.444078 : -71.69556 : Wood River Junction, RI +02895 : 42.001731 : -71.50722 : Woonsocket, RI +02896 : 41.988166 : -71.55188 : North Smithfield, RI +02898 : 41.51495 : -71.68484 : Wyoming, RI +02901 : 41.82275 : -71.414451 : Providence, RI +02902 : 41.81835 : -71.424851 : Providence, RI +02903 : 41.8208 : -71.41306 : Providence, RI +02904 : 41.859199 : -71.43142 : Providence, RI +02905 : 41.7883 : -71.40431 : Providence, RI +02906 : 41.83635 : -71.39427 : Providence, RI +02907 : 41.79855 : -71.42449 : Providence, RI +02908 : 41.839296 : -71.43802 : Providence, RI +02909 : 41.8191 : -71.44775 : Providence, RI +02910 : 41.776867 : -71.43672 : Cranston, RI +02911 : 41.853699 : -71.47354 : North Providence, RI +02912 : 41.826737 : -71.397699 : Providence, RI +02914 : 41.8124 : -71.36834 : East Providence, RI +02915 : 41.7695 : -71.35564 : Riverside, RI +02916 : 41.84325 : -71.35391 : Rumford, RI +02917 : 41.894499 : -71.51646 : Smithfield, RI +02918 : 41.841499 : -71.440352 : Providence, RI +02919 : 41.825132 : -71.49468 : Johnston, RI +02920 : 41.7715 : -71.46485 : Cranston, RI +02921 : 41.76435 : -71.50972 : Cranston, RI +02940 : 41.871766 : -71.558518 : Providence, RI +03004 : 43.001762 : -71.154866 : Fremont, NH +03030 : 42.749988 : -71.46431 : Nashua, NH +03031 : 42.854886 : -71.6082 : Amherst, NH +03032 : 43.000345 : -71.35141 : Auburn, NH +03033 : 42.742587 : -71.66605 : Brookline, NH +03034 : 43.048372 : -71.3078 : Candia, NH +03036 : 42.967823 : -71.23453 : Chester, NH +03037 : 43.141746 : -71.2488 : Deerfield, NH +03038 : 42.886486 : -71.30019 : Derry, NH +03040 : 43.005895 : -71.013202 : East Candia, NH +03041 : 43.005895 : -71.013202 : East Derry, NH +03042 : 43.045076 : -71.07095 : Epping, NH +03043 : 42.976901 : -71.81007 : Francestown, NH +03044 : 42.986119 : -71.12524 : Fremont, NH +03045 : 43.037495 : -71.57023 : Goffstown, NH +03046 : 43.102146 : -71.602132 : Dunbarton, NH +03047 : 42.935709 : -71.86645 : Greenfield, NH +03048 : 42.747024 : -71.77591 : Greenville, NH +03049 : 42.739909 : -71.58044 : Hollis, NH +03051 : 42.759821 : -71.42079 : Hudson, NH +03052 : 42.85059 : -71.45379 : Litchfield, NH +03053 : 42.880481 : -71.38205 : Londonderry, NH +03054 : 42.858053 : -71.51216 : Merrimack, NH +03055 : 42.831686 : -71.66743 : Milford, NH +03057 : 42.899434 : -71.68057 : Mont Vernon, NH +03058 : 42.798995 : -71.950759 : Sharon, NH +03060 : 42.748888 : -71.46492 : Nashua, NH +03061 : 42.952124 : -71.653939 : Nashua, NH +03062 : 42.724822 : -71.49238 : Nashua, NH +03063 : 42.770738 : -71.51047 : Nashua, NH +03064 : 42.774171 : -71.47306 : Nashua, NH +03070 : 42.978267 : -71.69414 : New Boston, NH +03071 : 42.753726 : -71.86706 : New Ipswich, NH +03073 : 43.005895 : -71.013202 : North Salem, NH +03076 : 42.734182 : -71.32359 : Pelham, NH +03077 : 43.031491 : -71.19598 : Raymond, NH +03079 : 42.792456 : -71.21316 : Salem, NH +03082 : 42.902259 : -71.78452 : Lyndeborough, NH +03084 : 42.81949 : -71.85063 : Temple, NH +03086 : 42.830184 : -71.78177 : Wilton, NH +03087 : 42.805194 : -71.29878 : Windham, NH +03091 : 43.319125 : -70.818318 : Berwick, ME +03097 : 43.269137 : -70.598303 : Ogunquit, ME +03101 : 42.989984 : -71.46376 : Manchester, NH +03102 : 42.990684 : -71.4868 : Manchester, NH +03103 : 42.967684 : -71.44828 : Manchester, NH +03104 : 43.006033 : -71.44716 : Manchester, NH +03105 : 42.952124 : -71.653939 : Manchester, NH +03106 : 43.058785 : -71.44412 : Hooksett, NH +03107 : 42.952124 : -71.653939 : Manchester, NH +03108 : 42.952124 : -71.653939 : Manchester, NH +03109 : 42.972584 : -71.41349 : Manchester, NH +03110 : 42.942551 : -71.51993 : Bedford, NH +03111 : 42.952124 : -71.653939 : Manchester, NH +03215 : 43.951304 : -71.50336 : Waterville Valley, NH +03216 : 43.444702 : -71.78401 : Andover, NH +03217 : 43.705061 : -71.62778 : Ashland, NH +03218 : 43.338347 : -71.29305 : Barnstead, NH +03220 : 43.459555 : -71.47352 : Belmont, NH +03221 : 43.256053 : -71.95405 : Bradford, NH +03222 : 43.615799 : -71.75006 : Bristol, NH +03223 : 43.887682 : -71.65161 : Campton, NH +03224 : 43.346137 : -71.54434 : Canterbury, NH +03225 : 43.354005 : -71.22819 : Center Barnstead, NH +03226 : 43.721094 : -71.49652 : Center Harbor, NH +03227 : 43.802936 : -71.45126 : Center Sandwich, NH +03229 : 43.204192 : -71.70711 : Contoocook, NH +03230 : 43.506405 : -71.87281 : Danbury, NH +03231 : 43.466172 : -71.736518 : East Andover, NH +03232 : 43.967542 : -71.840883 : East Hebron, NH +03233 : 43.423484 : -71.93648 : Elkins, NH +03234 : 43.228594 : -71.3611 : Epsom, NH +03235 : 43.444456 : -71.66034 : Franklin, NH +03237 : 43.42975 : -71.37517 : Gilmanton, NH +03238 : 43.967542 : -71.840883 : Glencliff, NH +03240 : 43.568328 : -71.96422 : Grafton, NH +03241 : 43.713794 : -71.80642 : Hebron, NH +03242 : 43.173469 : -71.81722 : Henniker, NH +03243 : 43.521669 : -71.73815 : Hill, NH +03244 : 43.119417 : -71.92108 : Hillsboro, NH +03245 : 43.737831 : -71.604406 : Holderness, NH +03246 : 43.557153 : -71.43842 : Laconia, NH +03247 : 43.588972 : -71.445452 : Laconia, NH +03249 : 43.555878 : -71.398521 : Laconia, NH +03251 : 44.051981 : -71.6606 : Lincoln, NH +03252 : 43.468562 : -71.537145 : Lochmere, NH +03253 : 43.644559 : -71.50488 : Meredith, NH +03254 : 43.712184 : -71.39299 : Moultonborough, NH +03255 : 43.32582 : -72.02654 : Newbury, NH +03256 : 43.60768 : -71.64372 : New Hampton, NH +03257 : 43.418863 : -72.00004 : New London, NH +03258 : 43.255881 : -71.397599 : Chichester, NH +03259 : 43.880005 : -71.39475 : North Sandwich, NH +03260 : 43.356838 : -71.9255 : North Sutton, NH +03261 : 43.216633 : -71.2079 : Northwood, NH +03262 : 44.0285 : -71.68701 : North Woodstock, NH +03263 : 43.30368 : -71.3215 : Pittsfield, NH +03264 : 43.753837 : -71.64503 : Plymouth, NH +03266 : 43.806365 : -71.87952 : Rumney, NH +03268 : 43.388571 : -71.74199 : Salisbury, NH +03269 : 43.523175 : -71.5876 : Sanbornton, NH +03270 : 43.203614 : -71.550864 : New Boston, NH +03272 : 43.310279 : -71.662928 : South Newbury, NH +03273 : 43.317257 : -71.92709 : South Sutton, NH +03274 : 43.967542 : -71.840883 : Stinson Lake, NH +03275 : 43.152469 : -71.43654 : Suncook, NH +03276 : 43.446729 : -71.5785 : Tilton, NH +03278 : 43.283838 : -71.82537 : Warner, NH +03279 : 43.938224 : -71.88853 : Warren, NH +03280 : 43.173046 : -72.09755 : Washington, NH +03281 : 43.080986 : -71.72329 : Weare, NH +03282 : 43.874357 : -71.91765 : Wentworth, NH +03284 : 43.501755 : -72.01296 : Springfield, NH +03287 : 43.430018 : -71.90457 : Wilmot, NH +03289 : 43.496372 : -71.519728 : Winnisquam, NH +03290 : 43.115874 : -71.11081 : Nottingham, NH +03291 : 43.179984 : -71.1392 : West Nottingham, NH +03293 : 43.967542 : -71.840883 : Woodstock, NH +03298 : 43.524872 : -71.445841 : Tilton, NH +03299 : 43.524872 : -71.445841 : Tilton, NH +03301 : 43.213705 : -71.53774 : Concord, NH +03302 : 43.310279 : -71.662928 : Concord, NH +03303 : 43.283796 : -71.63832 : Concord, NH +03304 : 43.144614 : -71.53576 : Bow, NH +03305 : 43.2134 : -71.517151 : Concord, NH +03307 : 43.31773 : -71.4534 : Loudon, NH +03342 : 43.01428 : -71.881017 : Bennington, NH +03386 : 43.89715 : -71.30915 : Tamworth, NH +03431 : 42.946418 : -72.28616 : Keene, NH +03435 : 42.947098 : -72.243029 : Keene, NH +03438 : 42.921791 : -72.00547 : Harrisville, NH +03440 : 43.060424 : -71.95068 : Antrim, NH +03441 : 42.791069 : -72.4352 : Ashuelot, NH +03442 : 43.005429 : -71.91635 : Bennington, NH +03443 : 42.871815 : -72.47163 : Chesterfield, NH +03444 : 42.899874 : -72.06334 : Dublin, NH +03445 : 43.009728 : -72.19383 : Sullivan, NH +03446 : 42.870578 : -72.29978 : Swanzey, NH +03447 : 42.754744 : -72.14838 : Fitzwilliam, NH +03448 : 43.055293 : -72.26149 : Gilsum, NH +03449 : 42.975105 : -71.98913 : Hancock, NH +03450 : 42.941175 : -72.06043 : Harrisville, NH +03451 : 42.797633 : -72.49518 : Hinsdale, NH +03452 : 42.827096 : -72.03418 : Jaffrey, NH +03455 : 42.932177 : -72.16219 : Marlborough, NH +03456 : 43.125523 : -72.21382 : Marlow, NH +03457 : 43.025227 : -72.14365 : Munsonville, NH +03458 : 42.884919 : -71.95133 : Peterborough, NH +03461 : 42.749835 : -72.01034 : Rindge, NH +03462 : 42.913966 : -72.41522 : Spofford, NH +03464 : 43.078658 : -72.0959 : Stoddard, NH +03465 : 42.822155 : -72.17618 : Troy, NH +03466 : 42.899338 : -72.51629 : West Chesterfield, NH +03467 : 42.971069 : -72.42512 : Westmoreland, NH +03468 : 42.890804 : -71.933396 : West Peterborough, NH +03469 : 42.87341 : -72.31509 : West Swanzey, NH +03470 : 42.775629 : -72.33893 : Winchester, NH +03477 : 42.74513 : -72.150882 : Fitzwilliam, NH +03552 : 45.085717 : -71.345714 : Pittsburg, NH +03561 : 44.313606 : -71.79751 : Littleton, NH +03570 : 44.463337 : -71.19092 : Berlin, NH +03572 : 43.28616 : -72.148784 : Goshen, NH +03574 : 44.28177 : -71.69225 : Bethlehem, NH +03575 : 44.695648 : -71.387387 : Bretton Woods, NH +03576 : 44.893888 : -71.44766 : Colebrook, NH +03578 : 44.101208 : -71.854211 : Landaff, NH +03579 : 44.789296 : -71.15394 : Errol, NH +03580 : 44.200124 : -71.69959 : Franconia, NH +03581 : 44.386557 : -71.16273 : Gorham, NH +03582 : 44.610605 : -71.48147 : Groveton, NH +03583 : 44.376866 : -71.46436 : Jefferson, NH +03584 : 44.483756 : -71.54999 : Lancaster, NH +03585 : 44.225864 : -71.87371 : Lisbon, NH +03587 : 44.695648 : -71.387387 : Meadows, NH +03588 : 44.608332 : -71.24335 : Milan, NH +03589 : 44.695648 : -71.387387 : Mount Washington, NH +03590 : 44.719769 : -71.59395 : North Stratford, NH +03592 : 45.085547 : -71.30724 : Pittsburg, NH +03595 : 44.271516 : -71.51746 : Twin Mountain, NH +03597 : 44.695648 : -71.387387 : West Stewartstown, NH +03598 : 44.378771 : -71.62248 : Whitefield, NH +03601 : 43.242719 : -72.30269 : Acworth, NH +03602 : 43.142384 : -72.32575 : Alstead, NH +03603 : 43.249468 : -72.39026 : Charlestown, NH +03604 : 42.947098 : -72.243029 : Drewsville, NH +03605 : 43.231807 : -72.17556 : Lempster, NH +03607 : 43.195329 : -72.26894 : South Acworth, NH +03608 : 43.075411 : -72.41902 : Walpole, NH +03609 : 43.142254 : -72.4483 : North Walpole, NH +03638 : 43.822389 : -71.092797 : Freedom, NH +03648 : 43.630276 : -72.135352 : Enfield, NH +03678 : 43.827375 : -72.139036 : Lyme, NH +03688 : 43.341381 : -70.955693 : Lebanon, ME +03733 : 43.38807 : -72.243666 : Newport, NH +03740 : 44.114163 : -71.948852 : Bath, NH +03741 : 43.659172 : -72.01333 : Canaan, NH +03743 : 43.374562 : -72.34152 : Claremont, NH +03745 : 43.476337 : -72.33337 : Cornish, NH +03746 : 43.364504 : -72.193966 : Cornish Flat, NH +03747 : 43.581769 : -72.097366 : Enfield, NH +03748 : 43.614847 : -72.12058 : Enfield, NH +03749 : 43.579573 : -72.08541 : Enfield Center, NH +03750 : 43.701003 : -72.20056 : Etna, NH +03751 : 43.437503 : -72.07185 : Georges Mills, NH +03752 : 43.304058 : -72.13525 : Goshen, NH +03753 : 43.516383 : -72.12954 : Grantham, NH +03754 : 43.365618 : -72.125562 : Guild, NH +03755 : 43.719756 : -72.2507 : Hanover, NH +03756 : 43.967542 : -71.840883 : Lebanon, NH +03757 : 43.444147 : -72.088709 : Sunapee, NH +03765 : 44.037125 : -72.05658 : Haverhill, NH +03766 : 43.642945 : -72.24403 : Lebanon, NH +03768 : 43.823864 : -72.13297 : Lyme, NH +03769 : 43.786267 : -72.120468 : Lyme Center, NH +03770 : 43.525462 : -72.28072 : Meriden, NH +03771 : 44.281722 : -72.02789 : Monroe, NH +03773 : 43.358339 : -72.18321 : Newport, NH +03774 : 44.08541 : -71.9943 : North Haverhill, NH +03777 : 43.908925 : -72.07831 : Orford, NH +03779 : 43.976427 : -72.04409 : Piermont, NH +03780 : 44.029684 : -71.98612 : Pike, NH +03781 : 43.53357 : -72.30353 : Plainfield, NH +03782 : 43.381133 : -72.09028 : Sunapee, NH +03784 : 43.649781 : -72.30594 : West Lebanon, NH +03785 : 44.133215 : -71.96306 : Woodsville, NH +03801 : 43.070188 : -70.77684 : Portsmouth, NH +03802 : 43.005895 : -71.013202 : Portsmouth, NH +03803 : 42.92703 : -71.444752 : Portsmouth, NH +03804 : 43.005895 : -71.013202 : Portsmouth, NH +03805 : 43.285282 : -70.930684 : Rollinsford, NH +03809 : 43.478364 : -71.22377 : Alton, NH +03810 : 43.478917 : -71.28776 : Alton Bay, NH +03811 : 42.836245 : -71.16246 : Atkinson, NH +03812 : 44.081906 : -71.29729 : Bartlett, NH +03813 : 44.041089 : -71.0627 : Center Conway, NH +03814 : 43.767878 : -71.12926 : Center Ossipee, NH +03815 : 43.256254 : -71.10317 : Center Strafford, NH +03816 : 43.685171 : -71.28404 : Center Tuftonboro, NH +03817 : 43.878112 : -71.22069 : Chocorua, NH +03818 : 43.966958 : -71.15892 : Conway, NH +03819 : 42.927682 : -71.12034 : Danville, NH +03820 : 43.190984 : -70.88787 : Dover, NH +03821 : 43.326734 : -71.028427 : Dover, NH +03822 : 43.326734 : -71.028427 : Dover, NH +03824 : 43.128085 : -70.96035 : Durham, NH +03825 : 43.208136 : -71.04356 : Barrington, NH +03826 : 42.890357 : -71.12296 : East Hampstead, NH +03827 : 42.91574 : -70.98459 : East Kingston, NH +03830 : 43.640621 : -70.98935 : East Wakefield, NH +03832 : 43.907045 : -71.04716 : Eaton Center, NH +03833 : 42.973783 : -70.97665 : Exeter, NH +03835 : 43.395688 : -71.06217 : Farmington, NH +03836 : 43.814201 : -71.0803 : Freedom, NH +03837 : 43.435913 : -71.32971 : Gilmanton Iron Works, NH +03838 : 44.116958 : -71.20354 : Glen, NH +03839 : 43.267581 : -70.98552 : Rochester, NH +03840 : 43.038279 : -70.84714 : Greenland, NH +03841 : 42.880837 : -71.18252 : Hampstead, NH +03842 : 42.93569 : -70.82514 : Hampton, NH +03843 : 43.005895 : -71.013202 : Hampton, NH +03844 : 42.923946 : -70.88666 : Hampton Falls, NH +03845 : 44.086488 : -71.13865 : Intervale, NH +03846 : 44.166268 : -71.18089 : Jackson, NH +03847 : 43.883871 : -71.257726 : Kearsarge, NH +03848 : 42.923643 : -71.06236 : Kingston, NH +03849 : 43.930805 : -71.14311 : Madison, NH +03850 : 43.707657 : -71.301681 : Melvin Village, NH +03851 : 43.422942 : -71.011369 : Milton, NH +03852 : 43.500126 : -70.96931 : Milton Mills, NH +03853 : 43.642398 : -71.28614 : Mirror Lake, NH +03854 : 43.068338 : -70.72353 : New Castle, NH +03855 : 43.443682 : -71.14628 : New Durham, NH +03856 : 43.03833 : -70.95076 : Newfields, NH +03857 : 43.072738 : -70.94336 : Newmarket, NH +03858 : 42.871322 : -71.04807 : Newton, NH +03859 : 42.861915 : -71.04002 : Newton Junction, NH +03860 : 44.035684 : -71.13084 : North Conway, NH +03862 : 42.97778 : -70.83055 : North Hampton, NH +03864 : 43.672636 : -71.10266 : Ossipee, NH +03865 : 42.837189 : -71.09445 : Plaistow, NH +03866 : 43.41176 : -71.027303 : Rochester, NH +03867 : 43.304163 : -70.99816 : Rochester, NH +03868 : 43.340581 : -70.96311 : Rochester, NH +03869 : 43.221234 : -70.83207 : Rollinsford, NH +03870 : 43.000003 : -70.76517 : Rye, NH +03871 : 42.980639 : -70.771896 : Rye Beach, NH +03872 : 43.564008 : -71.03405 : Sanbornville, NH +03873 : 42.929588 : -71.18444 : Sandown, NH +03874 : 42.88439 : -70.85466 : Seabrook, NH +03875 : 43.868287 : -71.18267 : Silver Lake, NH +03878 : 43.253783 : -70.87549 : Somersworth, NH +03882 : 43.721239 : -71.00006 : South Effingham, NH +03883 : 43.828696 : -71.32104 : South Tamworth, NH +03884 : 43.257919 : -71.17701 : Strafford, NH +03885 : 43.015756 : -70.90192 : Stratham, NH +03886 : 43.857079 : -71.25988 : Tamworth, NH +03887 : 43.448064 : -71.02823 : Union, NH +03890 : 43.811782 : -71.194586 : West Ossipee, NH +03891 : 42.906495 : -71.140537 : Danville, NH +03894 : 43.596233 : -71.19552 : Wolfeboro, NH +03896 : 43.589157 : -71.218894 : Wolfeboro Falls, NH +03897 : 43.908738 : -71.34507 : Wonalancet, NH +03901 : 43.29016 : -70.84559 : Berwick, ME +03902 : 43.216251 : -70.62856 : Cape Neddick, ME +03903 : 43.135435 : -70.79348 : Eliot, ME +03904 : 43.101538 : -70.73611 : Kittery, ME +03905 : 43.08512 : -70.69607 : Kittery Point, ME +03906 : 43.327517 : -70.7646 : North Berwick, ME +03907 : 43.247931 : -70.59952 : Ogunquit, ME +03908 : 43.234782 : -70.77876 : South Berwick, ME +03909 : 43.159537 : -70.65239 : York, ME +03910 : 43.211674 : -70.73201 : York Beach, ME +03911 : 43.155465 : -70.635702 : York Harbor, ME +04001 : 43.548123 : -70.93189 : Acton, ME +04002 : 43.490939 : -70.6884 : Alfred, ME +04003 : 43.730791 : -69.99448 : Bailey Island, ME +04004 : 43.365658 : -70.604379 : Bar Mills, ME +04005 : 43.480704 : -70.45871 : Biddeford, ME +04006 : 43.436049 : -70.3598 : Biddeford Pool, ME +04007 : 43.45813 : -70.505301 : Biddeford, ME +04008 : 44.023057 : -69.88369 : Bowdoinham, ME +04009 : 44.059192 : -70.72552 : Bridgton, ME +04010 : 43.938741 : -70.90049 : Brownfield, ME +04011 : 43.8992 : -69.95894 : Brunswick, ME +04013 : 44.408078 : -70.470703 : Bustins Island, ME +04014 : 43.365658 : -70.604379 : Cape Porpoise, ME +04015 : 43.952597 : -70.51377 : Casco, ME +04016 : 44.180965 : -70.891727 : Center Lovell, ME +04017 : 43.736628 : -70.11522 : Chebeague Island, ME +04019 : 43.696875 : -70.09448 : Cliff Island, ME +04020 : 43.773606 : -70.80878 : Cornish, ME +04021 : 43.798251 : -70.26554 : Cumberland Center, ME +04022 : 43.969 : -70.78804 : Denmark, ME +04024 : 43.823849 : -70.68482 : East Baldwin, ME +04027 : 43.403349 : -70.91719 : Lebanon, ME +04028 : 43.732391 : -70.845114 : East Parsonfield, ME +04029 : 43.887356 : -70.67755 : Sebago, ME +04030 : 43.585861 : -70.6793 : East Waterboro, ME +04031 : 43.916912 : -70.43911 : Raymond, ME +04032 : 43.843778 : -70.10172 : Freeport, ME +04033 : 44.408078 : -70.470703 : Freeport, ME +04034 : 44.408078 : -70.470703 : Freeport, ME +04037 : 44.050856 : -70.95648 : Fryeburg, ME +04038 : 43.697118 : -70.46301 : Gorham, ME +04039 : 43.879576 : -70.3533 : Gray, ME +04040 : 44.103892 : -70.65327 : Harrison, ME +04041 : 43.871738 : -70.83391 : Hiram, ME +04042 : 43.611238 : -70.63265 : Hollis Center, ME +04043 : 43.38551 : -70.54707 : Kennebunk, ME +04046 : 43.399494 : -70.4769 : Kennebunkport, ME +04047 : 43.755002 : -70.8983 : Parsonsfield, ME +04048 : 43.682791 : -70.77178 : Limerick, ME +04049 : 43.733814 : -70.70263 : Limington, ME +04050 : 43.692683 : -70.15475 : Long Island, ME +04051 : 44.172276 : -70.87231 : Lovell, ME +04053 : 44.408078 : -70.470703 : Merepoint, ME +04054 : 43.276341 : -70.597752 : Moody, ME +04055 : 43.959974 : -70.60312 : Naples, ME +04056 : 43.658378 : -70.868871 : Newfield, ME +04057 : 44.408078 : -70.470703 : North Bridgton, ME +04061 : 43.643195 : -70.73033 : North Waterboro, ME +04062 : 43.810673 : -70.41697 : Windham, ME +04063 : 43.504889 : -70.385703 : Ocean Park, ME +04064 : 43.514864 : -70.3856 : Old Orchard Beach, ME +04065 : 44.540983 : -68.423297 : Ellsworth, ME +04066 : 43.763403 : -69.97038 : Orrs Island, ME +04068 : 43.833831 : -70.93094 : Porter, ME +04069 : 43.912616 : -70.17893 : Pownal, ME +04070 : 43.576983 : -70.273642 : Scarborough, ME +04071 : 43.917206 : -70.47233 : Raymond, ME +04072 : 43.527322 : -70.45171 : Saco, ME +04073 : 43.426792 : -70.75245 : Sanford, ME +04074 : 43.583224 : -70.35268 : Scarborough, ME +04075 : 43.796053 : -70.552183 : Sebago Lake, ME +04076 : 43.553076 : -70.84515 : Shapleigh, ME +04077 : 43.910029 : -70.524524 : South Casco, ME +04078 : 43.820774 : -70.120781 : South Freeport, ME +04079 : 43.797398 : -69.95217 : Harpswell, ME +04081 : 44.566156 : -70.661557 : South Waterford, ME +04082 : 44.408078 : -70.470703 : South Windham, ME +04083 : 43.467037 : -70.80275 : Springvale, ME +04084 : 43.761599 : -70.56433 : Standish, ME +04085 : 43.770432 : -70.63812 : Steep Falls, ME +04086 : 43.94674 : -69.96163 : Topsham, ME +04087 : 43.56066 : -70.75497 : Waterboro, ME +04088 : 44.190761 : -70.70757 : Waterford, ME +04090 : 43.320211 : -70.61178 : Wells, ME +04091 : 43.824885 : -70.75038 : West Baldwin, ME +04092 : 43.682148 : -70.35823 : Westbrook, ME +04093 : 43.660386 : -70.57492 : West Buxton, ME +04094 : 43.406101 : -70.573255 : West Kennebunk, ME +04095 : 43.642631 : -70.91218 : West Newfield, ME +04096 : 43.801773 : -70.17932 : Yarmouth, ME +04097 : 43.842797 : -70.22985 : North Yarmouth, ME +04098 : 44.408078 : -70.470703 : Westbrook, ME +04101 : 43.660525 : -70.25862 : Portland, ME +04102 : 43.658632 : -70.2911 : Portland, ME +04103 : 43.685882 : -70.2903 : Portland, ME +04104 : 43.84649 : -70.464839 : Portland, ME +04105 : 43.736732 : -70.26027 : Falmouth, ME +04106 : 43.631549 : -70.27272 : South Portland, ME +04107 : 43.604739 : -70.22617 : Cape Elizabeth, ME +04108 : 43.665177 : -70.19475 : Peaks Island, ME +04109 : 43.678339 : -70.198742 : Portland, ME +04110 : 43.760369 : -70.19681 : Cumberland Foreside, ME +04112 : 44.408078 : -70.470703 : Portland, ME +04116 : 44.408078 : -70.470703 : South Portland, ME +04122 : 44.408078 : -70.470703 : Portland, ME +04123 : 44.408078 : -70.470703 : Portland, ME +04124 : 44.408078 : -70.470703 : Portland, ME +04210 : 44.089173 : -70.24143 : Auburn, ME +04211 : 44.197009 : -70.239485 : Auburn, ME +04212 : 44.197009 : -70.239485 : Auburn, ME +04216 : 44.661894 : -70.79952 : Andover, ME +04217 : 44.372129 : -70.8175 : Bethel, ME +04219 : 44.386951 : -70.63082 : Bryant Pond, ME +04220 : 44.295264 : -70.3671 : Buckfield, ME +04221 : 44.423658 : -70.31378 : Canton, ME +04222 : 43.972505 : -70.12291 : Durham, ME +04223 : 44.023873 : -70.285748 : Danville, ME +04224 : 44.555583 : -70.41383 : Dixfield, ME +04225 : 44.602705 : -70.22651 : Dryden, ME +04226 : 44.614134 : -70.69882 : East Andover, ME +04227 : 44.579135 : -70.326337 : East Dixfield, ME +04228 : 44.400997 : -70.13383 : East Livermore, ME +04230 : 44.062672 : -70.327049 : East Poland, ME +04231 : 44.261562 : -70.87044 : Stoneham, ME +04234 : 44.617509 : -70.182012 : East Wilton, ME +04236 : 44.194404 : -70.14181 : Greene, ME +04237 : 44.49281 : -70.7356 : Hanover, ME +04238 : 44.197418 : -70.36975 : Hebron, ME +04239 : 44.516475 : -70.21933 : Jay, ME +04240 : 44.094773 : -70.19141 : Lewiston, ME +04241 : 44.197009 : -70.239485 : Lewiston, ME +04243 : 44.197009 : -70.239485 : Lewiston, ME +04250 : 44.027509 : -70.1097 : Lisbon, ME +04252 : 44.009827 : -70.05631 : Lisbon Falls, ME +04253 : 44.408579 : -70.22452 : Livermore, ME +04254 : 44.470961 : -70.17486 : Livermore Falls, ME +04255 : 44.35976 : -70.67231 : Locke Mills, ME +04256 : 44.10472 : -70.39197 : Mechanic Falls, ME +04257 : 44.556984 : -70.53351 : Mexico, ME +04258 : 44.154921 : -70.33319 : Minot, ME +04259 : 44.231811 : -69.99897 : Monmouth, ME +04260 : 43.957375 : -70.29488 : New Gloucester, ME +04261 : 44.570532 : -70.87599 : Newry, ME +04262 : 45.063384 : -70.381639 : North Jay, ME +04263 : 44.283844 : -70.11254 : Leeds, ME +04265 : 44.281993 : -70.04027 : North Monmouth, ME +04266 : 44.357987 : -70.255783 : North Turner, ME +04267 : 44.566156 : -70.661557 : North Waterford, ME +04268 : 44.223589 : -70.58366 : Norway, ME +04270 : 44.114612 : -70.50506 : Oxford, ME +04271 : 44.264111 : -70.498513 : Paris, ME +04273 : 44.498193 : -70.697022 : Hanover, ME +04274 : 44.049157 : -70.39077 : Poland, ME +04275 : 44.727073 : -70.6478 : Roxbury, ME +04276 : 44.53599 : -70.56609 : Rumford, ME +04278 : 44.377031 : -70.568041 : Rumford Center, ME +04279 : 44.56421 : -70.715864 : Rumford, ME +04280 : 44.119007 : -70.07568 : Sabattus, ME +04281 : 44.235141 : -70.50508 : South Paris, ME +04282 : 44.266842 : -70.24563 : Turner, ME +04283 : 44.197009 : -70.239485 : Turner Center, ME +04284 : 44.349542 : -70.05698 : Wayne, ME +04285 : 44.697077 : -70.43275 : Weld, ME +04286 : 44.40205 : -70.860094 : West Bethel, ME +04287 : 44.048154 : -69.96847 : Bowdoin, ME +04288 : 44.197009 : -70.239485 : West Minot, ME +04289 : 44.325285 : -70.52451 : West Paris, ME +04290 : 44.494624 : -70.43726 : Peru, ME +04291 : 44.040857 : -70.453006 : West Poland, ME +04292 : 44.38382 : -70.43533 : Sumner, ME +04294 : 44.602261 : -70.22906 : Wilton, ME +04321 : 44.209214 : -70.818045 : Stoneham, ME +04327 : 44.09156 : -69.804077 : Richmond, ME +04330 : 44.344406 : -69.76345 : Augusta, ME +04332 : 44.414056 : -69.751913 : Augusta, ME +04333 : 44.414056 : -69.751913 : Augusta, ME +04336 : 44.315693 : -69.818009 : Augusta, ME +04338 : 44.414056 : -69.751913 : Augusta, ME +04341 : 44.258771 : -69.551024 : Coopers Mills, ME +04342 : 44.07685 : -69.75012 : Dresden, ME +04343 : 44.414056 : -69.751913 : East Winthrop, ME +04344 : 44.26043 : -69.80122 : Farmingdale, ME +04345 : 44.211491 : -69.80866 : Gardiner, ME +04346 : 44.234914 : -69.75722 : Randolph, ME +04347 : 44.286802 : -69.79788 : Hallowell, ME +04348 : 44.212785 : -69.4971 : Jefferson, ME +04349 : 44.42977 : -70.06456 : Kents Hill, ME +04350 : 44.174052 : -69.93363 : Litchfield, ME +04351 : 44.306955 : -69.87518 : Manchester, ME +04352 : 44.46599 : -69.96073 : Mount Vernon, ME +04353 : 44.209878 : -69.60427 : Whitefield, ME +04354 : 44.384901 : -69.4136 : Palermo, ME +04355 : 44.376802 : -69.96353 : Readfield, ME +04357 : 44.117232 : -69.82947 : Richmond, ME +04358 : 44.428911 : -69.52679 : South China, ME +04359 : 44.183266 : -69.777196 : South Gardiner, ME +04360 : 44.548458 : -69.985 : Vienna, ME +04363 : 44.300247 : -69.5744 : Windsor, ME +04364 : 44.31842 : -69.95997 : Winthrop, ME +04401 : 44.81777 : -68.78952 : Bangor, ME +04402 : 45.519867 : -68.647416 : Bangor, ME +04406 : 45.221933 : -69.49039 : Abbot, ME +04408 : 44.87332 : -68.23311 : Aurora, ME +04410 : 45.088295 : -68.90997 : Bradford, ME +04411 : 44.911733 : -68.621 : Bradley, ME +04412 : 44.78696 : -68.7547 : Brewer, ME +04413 : 45.53866 : -67.75295 : Brookton, ME +04414 : 45.369216 : -69.03431 : Brownville, ME +04415 : 45.351184 : -69.058062 : Brownville Junction, ME +04416 : 44.609813 : -68.78303 : Bucksport, ME +04417 : 45.264114 : -68.42087 : Burlington, ME +04418 : 45.110336 : -68.62103 : Cardville, ME +04419 : 44.7896 : -69.00587 : Carmel, ME +04420 : 44.412968 : -68.798047 : Castine, ME +04421 : 44.405928 : -68.79341 : Castine, ME +04422 : 45.060941 : -69.03527 : Charleston, ME +04423 : 45.01895 : -68.48987 : Costigan, ME +04424 : 45.679453 : -67.86208 : Danforth, ME +04426 : 45.195052 : -69.18861 : Dover Foxcroft, ME +04427 : 44.979986 : -69.00746 : Corinth, ME +04428 : 44.798289 : -68.5694 : Eddington, ME +04429 : 44.700606 : -68.59682 : Holden, ME +04430 : 45.631824 : -68.58178 : East Millinocket, ME +04431 : 44.56801 : -68.68116 : East Orland, ME +04434 : 44.802184 : -69.14212 : Etna, ME +04435 : 44.961913 : -69.12214 : Exeter, ME +04438 : 44.61165 : -68.91965 : Frankfort, ME +04441 : 45.517693 : -69.5223 : Greenville, ME +04442 : 45.479835 : -69.62773 : Greenville Junction, ME +04443 : 45.245781 : -69.37191 : Guilford, ME +04444 : 44.735745 : -68.92518 : Hampden, ME +04448 : 45.241091 : -68.67025 : Howland, ME +04449 : 44.999621 : -68.88431 : Hudson, ME +04450 : 44.921758 : -68.93125 : Kenduskeag, ME +04451 : 45.548818 : -68.20841 : Kingman, ME +04453 : 45.184949 : -68.78881 : Lagrange, ME +04454 : 45.002969 : -67.495548 : Lambert Lake, ME +04455 : 45.333971 : -68.29313 : Lee, ME +04456 : 44.876282 : -68.98712 : Levant, ME +04457 : 45.368934 : -68.48354 : Lincoln, ME +04459 : 45.518535 : -68.33623 : Mattawamkeag, ME +04460 : 45.638612 : -68.52012 : Medway, ME +04461 : 44.956776 : -68.62199 : Milford, ME +04462 : 45.646916 : -68.74801 : Millinocket, ME +04463 : 45.241618 : -68.95101 : Milo, ME +04464 : 45.303916 : -69.51368 : Monson, ME +04465 : 45.961338 : -67.824005 : Cary, ME +04467 : 45.519867 : -68.647416 : Olamon, ME +04468 : 44.951551 : -68.67889 : Old Town, ME +04469 : 45.002798 : -68.63343 : Orono, ME +04471 : 45.909516 : -67.85856 : Orient, ME +04472 : 44.560479 : -68.69084 : Orland, ME +04473 : 44.889249 : -68.68177 : Orono, ME +04474 : 44.721393 : -68.78905 : Orrington, ME +04475 : 45.191812 : -68.58953 : Passadumkeag, ME +04476 : 44.444707 : -68.73576 : Penobscot, ME +04478 : 45.704599 : -69.80879 : Rockwood, ME +04479 : 45.129817 : -69.32571 : Sangerville, ME +04481 : 45.792364 : -69.30463 : Sebec, ME +04485 : 45.792364 : -69.30463 : Shirley Mills, ME +04487 : 45.386188 : -68.08163 : Springfield, ME +04488 : 44.891869 : -69.1108 : Stetson, ME +04489 : 44.922368 : -68.686796 : Stillwater, ME +04490 : 45.426462 : -67.76009 : Topsfield, ME +04491 : 45.002969 : -67.495548 : Vanceboro, ME +04492 : 45.002969 : -67.495548 : Waite, ME +04493 : 45.247401 : -68.51819 : West Enfield, ME +04495 : 45.484389 : -68.37662 : Winn, ME +04496 : 44.657697 : -68.8957 : Winterport, ME +04497 : 45.733543 : -68.05875 : Wytopitlock, ME +04530 : 43.900651 : -69.83405 : Bath, ME +04535 : 44.084989 : -69.62535 : Alna, ME +04536 : 44.021333 : -69.523263 : Bayville, ME +04537 : 43.907812 : -69.64608 : Boothbay, ME +04538 : 43.85424 : -69.63217 : Boothbay Harbor, ME +04539 : 43.965125 : -69.50529 : Bristol, ME +04541 : 43.885681 : -69.4795 : Chamberlain, ME +04543 : 44.036533 : -69.48841 : Damariscotta, ME +04544 : 43.832642 : -69.58903 : East Boothbay, ME +04546 : 43.767018 : -69.749812 : Georgetown, ME +04547 : 43.983665 : -69.33885 : Friendship, ME +04548 : 43.810548 : -69.74325 : Georgetown, ME +04549 : 44.021333 : -69.523263 : Isle Of Springs, ME +04551 : 43.999618 : -69.43738 : Bremen, ME +04552 : 44.021333 : -69.523263 : Newagen, ME +04553 : 44.048714 : -69.54335 : Newcastle, ME +04554 : 43.863028 : -69.51314 : New Harbor, ME +04555 : 44.096194 : -69.47857 : Nobleboro, ME +04556 : 43.973476 : -69.63516 : Edgecomb, ME +04557 : 44.090471 : -69.803936 : Richmond, ME +04558 : 43.893848 : -69.52041 : Pemaquid, ME +04562 : 43.793136 : -69.81778 : Phippsburg, ME +04563 : 43.993356 : -69.26819 : Cushing, ME +04564 : 43.937468 : -69.45721 : Round Pond, ME +04565 : 43.773312 : -69.863461 : Sebasco Estates, ME +04567 : 43.900856 : -69.859541 : Small Point, ME +04568 : 43.863902 : -69.55874 : South Bristol, ME +04570 : 44.021333 : -69.523263 : Squirrel Island, ME +04571 : 43.88261 : -69.680144 : Trevett, ME +04572 : 44.10637 : -69.37177 : Waldoboro, ME +04573 : 43.949672 : -69.55133 : Walpole, ME +04574 : 44.274007 : -69.38896 : Washington, ME +04575 : 43.854534 : -69.660795 : West Boothbay Harbor, ME +04576 : 43.823008 : -69.66661 : Southport, ME +04578 : 43.974367 : -69.68366 : Wiscasset, ME +04579 : 43.949901 : -69.78298 : Woolwich, ME +04600 : 44.396951 : -68.081184 : Winter Harbor, ME +04605 : 44.614885 : -68.43626 : Ellsworth, ME +04606 : 44.556073 : -67.70122 : Addison, ME +04607 : 44.49569 : -68.09467 : Gouldsboro, ME +04609 : 44.402596 : -68.26204 : Bar Harbor, ME +04611 : 44.507801 : -67.6025 : Beals, ME +04612 : 44.247391 : -68.37104 : Bernard, ME +04613 : 44.378868 : -68.02915 : Birch Harbor, ME +04614 : 44.413056 : -68.58156 : Blue Hill, ME +04615 : 44.354477 : -68.54781 : Blue Hill Falls, ME +04616 : 44.275325 : -68.55956 : Brooklin, ME +04617 : 44.363587 : -68.74399 : Brooksville, ME +04619 : 45.166045 : -67.24243 : Calais, ME +04621 : 44.904789 : -66.990529 : Eastport, ME +04622 : 44.686731 : -67.99166 : Cherryfield, ME +04623 : 44.695493 : -67.7395 : Columbia Falls, ME +04624 : 44.428044 : -67.98828 : Corea, ME +04625 : 44.248715 : -68.25991 : Cranberry Isles, ME +04626 : 44.673285 : -67.23946 : Cutler, ME +04627 : 44.221142 : -68.66894 : Deer Isle, ME +04628 : 44.894562 : -67.2324 : Dennysville, ME +04629 : 44.414095 : -68.51313 : East Blue Hill, ME +04630 : 44.753992 : -67.3786 : East Machias, ME +04631 : 44.913741 : -67.00391 : Eastport, ME +04634 : 44.617844 : -68.23546 : Franklin, ME +04635 : 44.124476 : -68.34995 : Frenchboro, ME +04637 : 45.185635 : -67.601026 : Grand Lake Stream, ME +04640 : 44.524526 : -68.28298 : Hancock, ME +04642 : 44.322421 : -68.80933 : Harborside, ME +04643 : 44.599134 : -67.82533 : Harrington, ME +04644 : 44.641873 : -68.391481 : Hulls Cove, ME +04645 : 44.058801 : -68.61685 : Isle Au Haut, ME +04646 : 44.258201 : -68.2277 : Islesford, ME +04648 : 44.663206 : -67.59538 : Jonesboro, ME +04649 : 44.554662 : -67.57808 : Jonesport, ME +04650 : 44.286462 : -68.71098 : Little Deer Isle, ME +04652 : 44.818733 : -67.04996 : Lubec, ME +04653 : 44.248615 : -68.3521 : Bass Harbor, ME +04654 : 44.802637 : -67.54727 : Machias, ME +04655 : 44.632707 : -67.39416 : Machiasport, ME +04656 : 44.641873 : -68.391481 : Manset, ME +04657 : 44.971091 : -67.38549 : Meddybemps, ME +04658 : 44.512003 : -67.87827 : Milbridge, ME +04660 : 44.34629 : -68.34317 : Mount Desert, ME +04662 : 44.291076 : -68.28143 : Northeast Harbor, ME +04664 : 44.528094 : -68.22333 : Sullivan, ME +04665 : 44.641873 : -68.391481 : Otter Creek, ME +04666 : 44.975116 : -67.1946 : Pembroke, ME +04667 : 44.972969 : -67.08697 : Perry, ME +04668 : 45.188555 : -67.59063 : Princeton, ME +04669 : 44.408699 : -68.01142 : Prospect Harbor, ME +04671 : 45.076626 : -67.14057 : Robbinston, ME +04672 : 44.430435 : -68.2849 : Salsbury Cove, ME +04673 : 44.305681 : -68.67842 : Sargentville, ME +04674 : 44.295719 : -68.40092 : Seal Cove, ME +04675 : 44.298106 : -68.24075 : Seal Harbor, ME +04676 : 44.333099 : -68.65693 : Sedgwick, ME +04677 : 44.482607 : -68.18185 : Sorrento, ME +04679 : 44.278453 : -68.32186 : Southwest Harbor, ME +04680 : 44.510306 : -67.94879 : Steuben, ME +04681 : 44.168214 : -68.66405 : Stonington, ME +04683 : 44.214927 : -68.7769 : Sunset, ME +04684 : 44.490635 : -68.50085 : Surry, ME +04685 : 44.161589 : -68.44607 : Swans Island, ME +04686 : 45.002969 : -67.495548 : Wesley, ME +04690 : 44.641873 : -68.391481 : West Tremont, ME +04691 : 44.790082 : -67.24789 : Whiting, ME +04693 : 44.384841 : -68.09458 : Winter Harbor, ME +04694 : 45.116525 : -67.42484 : Baileyville, ME +04724 : 43.995965 : -70.41037 : Poland, ME +04730 : 46.12672 : -67.87798 : Houlton, ME +04732 : 46.64005 : -68.42804 : Ashland, ME +04733 : 45.810781 : -68.39974 : Benedicta, ME +04734 : 46.516166 : -68.886826 : Blaine, ME +04735 : 46.421799 : -67.89417 : Bridgewater, ME +04736 : 46.878869 : -68.01128 : Caribou, ME +04737 : 46.516166 : -68.886826 : Clayton Lake, ME +04738 : 46.516166 : -68.886826 : Crouseville, ME +04739 : 47.042226 : -68.61588 : Eagle Lake, ME +04740 : 46.657001 : -67.86338 : Easton, ME +04741 : 46.516166 : -68.886826 : Estcourt Station, ME +04742 : 46.774757 : -67.85012 : Fort Fairfield, ME +04743 : 47.209541 : -68.57238 : Fort Kent, ME +04744 : 46.516166 : -68.886826 : Fort Kent Mills, ME +04745 : 47.285196 : -68.38716 : Frenchville, ME +04746 : 47.281126 : -68.14277 : Grand Isle, ME +04747 : 46.004523 : -68.27004 : Island Falls, ME +04750 : 46.936616 : -67.86471 : Limestone, ME +04751 : 46.892918 : -67.9643 : Limestone, ME +04752 : 46.602477 : -68.410131 : Ashland, ME +04756 : 47.345936 : -68.32256 : Madawaska, ME +04757 : 46.68619 : -68.147 : Mapleton, ME +04758 : 46.512409 : -67.86655 : Mars Hill, ME +04759 : 46.497891 : -68.37251 : Masardis, ME +04760 : 46.311845 : -67.85518 : Monticello, ME +04761 : 46.100442 : -68.003376 : New Limerick, ME +04762 : 46.953804 : -68.1204 : New Sweden, ME +04763 : 46.104734 : -68.11398 : Oakfield, ME +04764 : 46.416656 : -68.47646 : Oxbow, ME +04765 : 46.024219 : -68.49241 : Patten, ME +04766 : 46.869762 : -68.2929 : Perham, ME +04768 : 46.778192 : -68.4992 : Portage, ME +04769 : 46.679321 : -68.00216 : Presque Isle, ME +04770 : 46.516166 : -68.886826 : Quimby, ME +04772 : 47.241717 : -68.33931 : Saint Agatha, ME +04773 : 47.281953 : -68.23959 : Saint David, ME +04774 : 47.119796 : -69.00258 : Saint Francis, ME +04775 : 46.516166 : -68.886826 : Sheridan, ME +04776 : 45.864106 : -68.33986 : Sherman Mills, ME +04777 : 45.880436 : -68.45173 : Sherman Station, ME +04779 : 47.165256 : -68.27288 : Sinclair, ME +04780 : 46.164163 : -68.23232 : Smyrna Mills, ME +04781 : 47.163149 : -68.58915 : Soldier Pond, ME +04782 : 45.519867 : -68.647416 : Stacyville, ME +04783 : 47.049301 : -68.20823 : Stockholm, ME +04785 : 47.14685 : -67.94718 : Van Buren, ME +04786 : 46.78551 : -68.16871 : Washburn, ME +04787 : 46.574691 : -67.96531 : Westfield, ME +04788 : 46.516166 : -68.886826 : Winterville, ME +04840 : 44.210119 : -69.113626 : Camden, ME +04841 : 44.108735 : -69.11366 : Rockland, ME +04842 : 44.086989 : -69.104234 : Owls Head, ME +04843 : 44.218159 : -69.08184 : Camden, ME +04846 : 44.131005 : -69.091111 : Glen Cove, ME +04847 : 44.232721 : -69.19254 : Hope, ME +04848 : 44.305981 : -68.90883 : Islesboro, ME +04849 : 44.325944 : -69.03065 : Lincolnville, ME +04850 : 44.478694 : -69.149559 : Lincolnville Center, ME +04851 : 43.856129 : -68.88847 : Matinicus, ME +04852 : 43.764862 : -69.32016 : Monhegan, ME +04853 : 44.154189 : -68.8781 : North Haven, ME +04854 : 44.065748 : -69.07536 : Owls Head, ME +04855 : 44.032196 : -69.148017 : Port Clyde, ME +04856 : 44.180867 : -69.09812 : Rockport, ME +04857 : 44.008875 : -69.20629 : Saint George, ME +04858 : 44.024605 : -69.12781 : South Thomaston, ME +04859 : 43.999827 : -69.15608 : Spruce Head, ME +04860 : 43.9464 : -69.23524 : Tenants Harbor, ME +04861 : 44.082602 : -69.17598 : Thomaston, ME +04862 : 44.240765 : -69.27048 : Union, ME +04863 : 44.061051 : -68.83819 : Vinalhaven, ME +04864 : 44.135936 : -69.24907 : Warren, ME +04865 : 44.192369 : -69.121139 : West Rockport, ME +04901 : 44.554965 : -69.61297 : Waterville, ME +04903 : 44.549225 : -69.713178 : Waterville, ME +04910 : 44.513491 : -69.43496 : Albion, ME +04911 : 44.78029 : -69.93424 : Anson, ME +04912 : 44.949136 : -69.64968 : Athens, ME +04915 : 44.445295 : -69.02257 : Belfast, ME +04917 : 44.493133 : -69.83348 : Belgrade, ME +04918 : 44.414056 : -69.751913 : Belgrade Lakes, ME +04920 : 45.07952 : -69.84723 : Bingham, ME +04921 : 44.554501 : -69.12604 : Brooks, ME +04922 : 44.667844 : -69.37398 : Burnham, ME +04923 : 45.031691 : -69.44672 : Cambridge, ME +04924 : 44.765617 : -69.55694 : Canaan, ME +04925 : 45.249363 : -69.9433 : Caratunk, ME +04926 : 44.391167 : -69.538257 : China, ME +04927 : 44.659486 : -69.53064 : Clinton, ME +04928 : 44.949001 : -69.27327 : Corinna, ME +04929 : 44.785927 : -69.30376 : Detroit, ME +04930 : 45.023476 : -69.29725 : Dexter, ME +04932 : 44.689677 : -69.1248 : Dixmont, ME +04933 : 45.519867 : -68.647416 : East Newport, ME +04935 : 44.414056 : -69.751913 : East Vassalboro, ME +04936 : 45.325768 : -70.54062 : Eustis, ME +04937 : 44.603329 : -69.63627 : Fairfield, ME +04938 : 44.66776 : -70.12362 : Farmington, ME +04939 : 45.046491 : -69.14747 : Garland, ME +04940 : 44.622563 : -70.075178 : Farmington Falls, ME +04941 : 44.466012 : -69.31337 : Freedom, ME +04942 : 44.985047 : -69.56523 : Harmony, ME +04943 : 44.861365 : -69.49934 : Hartland, ME +04944 : 44.684737 : -69.6425 : Hinckley, ME +04945 : 45.587713 : -70.27257 : Jackman, ME +04947 : 45.018122 : -70.2669 : Kingfield, ME +04949 : 44.371109 : -69.32744 : Liberty, ME +04950 : 44.819206 : -69.82782 : Madison, ME +04951 : 44.599607 : -69.04542 : Monroe, ME +04952 : 44.417725 : -69.15196 : Morrill, ME +04953 : 44.85549 : -69.26397 : Newport, ME +04954 : 44.904101 : -70.10453 : New Portland, ME +04955 : 44.638255 : -70.01525 : New Sharon, ME +04956 : 44.79781 : -70.12443 : New Vineyard, ME +04957 : 44.700173 : -69.82554 : Norridgewock, ME +04958 : 44.926344 : -69.93521 : North Anson, ME +04961 : 45.056328 : -70.08652 : North New Portland, ME +04962 : 44.464439 : -69.61699 : North Vassalboro, ME +04963 : 44.560495 : -69.76938 : Oakland, ME +04964 : 44.924121 : -70.76786 : Oquossoc, ME +04965 : 44.845899 : -69.36775 : Palmyra, ME +04966 : 44.840352 : -70.37235 : Phillips, ME +04967 : 44.774328 : -69.40616 : Pittsfield, ME +04969 : 44.767975 : -69.21191 : Plymouth, ME +04970 : 44.966701 : -70.6576 : Rangeley, ME +04971 : 44.927382 : -69.38752 : Saint Albans, ME +04972 : 44.478694 : -69.149559 : Sandy Point, ME +04973 : 44.369557 : -69.1882 : Searsmont, ME +04974 : 44.500622 : -68.92829 : Searsport, ME +04975 : 44.624515 : -69.586852 : Shawmut, ME +04976 : 44.782568 : -69.69212 : Skowhegan, ME +04978 : 44.624821 : -69.81117 : Smithfield, ME +04979 : 44.940536 : -69.80759 : Solon, ME +04981 : 44.499082 : -68.85667 : Stockton Springs, ME +04982 : 45.137607 : -70.44606 : Stratton, ME +04983 : 44.822625 : -70.21778 : Strong, ME +04984 : 44.688292 : -70.23773 : Temple, ME +04985 : 45.380034 : -69.90892 : West Forks, ME +04986 : 44.555643 : -69.23241 : Thorndike, ME +04987 : 44.678838 : -69.26918 : Troy, ME +04988 : 44.60509 : -69.33022 : Unity, ME +04989 : 44.398851 : -69.65181 : Vassalboro, ME +04992 : 44.662822 : -70.153049 : West Farmington, ME +05001 : 43.662892 : -72.36825 : White River Junction, VT +05009 : 43.592039 : -72.588407 : White River Junction, VT +05030 : 43.410672 : -72.429777 : Ascutney, VT +05031 : 43.735816 : -72.6026 : Barnard, VT +05032 : 43.811958 : -72.64493 : Bethel, VT +05033 : 43.994064 : -72.15534 : Bradford, VT +05034 : 43.577762 : -72.61789 : Bridgewater, VT +05035 : 43.608849 : -72.6799 : Bridgewater Corners, VT +05036 : 44.02591 : -72.58502 : Brookfield, VT +05037 : 43.461468 : -72.48743 : Brownsville, VT +05038 : 43.989583 : -72.46276 : Chelsea, VT +05039 : 44.026521 : -72.29347 : Corinth, VT +05040 : 44.070771 : -72.21275 : East Corinth, VT +05041 : 43.966821 : -72.54784 : East Randolph, VT +05042 : 44.213499 : -72.08037 : East Ryegate, VT +05043 : 43.795686 : -72.21325 : East Thetford, VT +05045 : 43.919887 : -72.20655 : Fairlee, VT +05046 : 44.254302 : -72.22669 : Groton, VT +05047 : 43.672103 : -72.355539 : Hartford, VT +05048 : 43.566105 : -72.39941 : Hartland, VT +05049 : 43.592039 : -72.588407 : Hartland Four Corners, VT +05050 : 44.46239 : -72.135804 : McIndoe Falls, VT +05051 : 44.075132 : -72.07174 : Newbury, VT +05052 : 43.598261 : -72.351 : North Hartland, VT +05053 : 43.714887 : -72.49886 : North Pomfret, VT +05054 : 43.852619 : -72.18798 : North Thetford, VT +05055 : 43.735335 : -72.29086 : Norwich, VT +05056 : 43.531612 : -72.72179 : Plymouth, VT +05058 : 43.884626 : -72.26075 : Post Mills, VT +05059 : 43.649153 : -72.42943 : Quechee, VT +05060 : 43.954353 : -72.66916 : Randolph, VT +05061 : 43.928369 : -72.5731 : Randolph Center, VT +05062 : 43.485715 : -72.5536 : Reading, VT +05065 : 43.775807 : -72.42387 : Sharon, VT +05067 : 43.687515 : -72.54272 : South Pomfret, VT +05068 : 43.808623 : -72.53208 : South Royalton, VT +05069 : 44.168111 : -72.14245 : South Ryegate, VT +05070 : 43.830375 : -72.36228 : South Strafford, VT +05071 : 43.568095 : -72.55327 : South Woodstock, VT +05072 : 43.890244 : -72.39364 : Strafford, VT +05073 : 43.625216 : -72.47756 : Taftsville, VT +05074 : 43.815621 : -72.22275 : Thetford, VT +05075 : 43.83178 : -72.27125 : Thetford Center, VT +05076 : 44.128666 : -72.2345 : East Corinth, VT +05077 : 43.897183 : -72.4848 : Tunbridge, VT +05079 : 43.948258 : -72.32092 : Vershire, VT +05080 : 43.716375 : -72.403244 : Hartford, VT +05081 : 44.135828 : -72.09061 : Wells River, VT +05083 : 43.910089 : -72.26637 : West Fairlee, VT +05084 : 43.720826 : -72.43372 : West Hartford, VT +05085 : 44.062646 : -72.13946 : West Newbury, VT +05086 : 44.116731 : -72.31915 : West Topsham, VT +05088 : 43.676947 : -72.3082 : Wilder, VT +05089 : 43.486791 : -72.42611 : Windsor, VT +05091 : 43.631076 : -72.53739 : Woodstock, VT +05101 : 43.156451 : -72.4729 : Bellows Falls, VT +05124 : 43.441399 : -72.533124 : Cavendish, VT +05141 : 42.99467 : -72.720362 : Cambridgeport, VT +05142 : 43.40422 : -72.59048 : Cavendish, VT +05143 : 43.26449 : -72.61831 : Chester, VT +05144 : 43.592039 : -72.588407 : Chester Depot, VT +05146 : 43.186044 : -72.61661 : Grafton, VT +05148 : 43.238921 : -72.80106 : Londonderry, VT +05149 : 43.416827 : -72.70416 : Ludlow, VT +05150 : 43.334787 : -72.53053 : North Springfield, VT +05151 : 43.380411 : -72.49397 : Perkinsville, VT +05152 : 43.24283 : -72.88309 : Peru, VT +05153 : 43.439302 : -72.63738 : Proctorsville, VT +05154 : 43.139961 : -72.50844 : Saxtons River, VT +05155 : 43.158484 : -72.84497 : South Londonderry, VT +05156 : 43.300126 : -72.47767 : Springfield, VT +05158 : 43.093695 : -72.45054 : Westminster, VT +05159 : 43.093972 : -72.456492 : Westminster Station, VT +05161 : 43.303613 : -72.79134 : Weston, VT +05201 : 42.882231 : -73.17873 : Bennington, VT +05210 : 42.886696 : -73.012715 : Woodford, VT +05219 : 44.352579 : -72.031815 : Barnet, VT +05233 : 43.761499 : -73.187699 : Sudbury, VT +05250 : 43.106492 : -73.17405 : Arlington, VT +05251 : 43.266886 : -73.11308 : Dorset, VT +05252 : 43.065891 : -73.07824 : East Arlington, VT +05253 : 43.243449 : -73.00758 : East Dorset, VT +05254 : 43.162074 : -73.07155 : Manchester, VT +05255 : 43.172699 : -73.05261 : Manchester Center, VT +05257 : 42.936801 : -73.24838 : North Bennington, VT +05260 : 42.797636 : -73.25716 : North Pownal, VT +05261 : 42.776384 : -73.21395 : Pownal, VT +05262 : 42.977018 : -73.16602 : Shaftsbury, VT +05267 : 44.6877 : -72.011815 : Sutton, VT +05286 : 44.627698 : -72.434398 : Craftsbury, VT +05301 : 42.849957 : -72.62328 : Brattleboro, VT +05302 : 42.99467 : -72.720362 : Brattleboro, VT +05303 : 42.99467 : -72.720362 : Brattleboro, VT +05304 : 42.99467 : -72.720362 : Brattleboro, VT +05340 : 43.15601 : -72.91347 : Bondville, VT +05341 : 42.952754 : -72.79694 : East Dover, VT +05342 : 42.781648 : -72.80609 : Jacksonville, VT +05343 : 43.103191 : -72.7925 : Jamaica, VT +05344 : 42.851149 : -72.74073 : Marlboro, VT +05345 : 43.003271 : -72.65777 : Newfane, VT +05346 : 43.02419 : -72.51725 : Putney, VT +05350 : 42.779542 : -72.96146 : Readsboro, VT +05351 : 42.934798 : -72.75062 : South Newfane, VT +05352 : 42.765401 : -73.06025 : Readsboro, VT +05353 : 43.04943 : -72.66643 : Townshend, VT +05354 : 42.768143 : -72.51835 : Vernon, VT +05355 : 43.034152 : -72.80748 : Wardsboro, VT +05356 : 42.952974 : -72.87237 : West Dover, VT +05357 : 42.957233 : -72.62408 : West Dummerston, VT +05358 : 42.77448 : -72.71702 : West Halifax, VT +05359 : 43.149377 : -72.72492 : West Townshend, VT +05360 : 43.028157 : -72.87914 : West Wardsboro, VT +05361 : 42.782281 : -72.86962 : Whitingham, VT +05362 : 42.9445 : -72.69222 : Williamsville, VT +05363 : 42.886921 : -72.86457 : Wilmington, VT +05364 : 43.061436 : -72.51888 : Westminster, VT +05401 : 44.484038 : -73.22126 : Burlington, VT +05402 : 44.442117 : -73.082525 : Burlington, VT +05403 : 44.451941 : -73.17941 : South Burlington, VT +05404 : 44.494999 : -73.18259 : Winooski, VT +05405 : 44.442117 : -73.082525 : Burlington, VT +05406 : 44.442117 : -73.082525 : Burlington, VT +05407 : 44.442117 : -73.082525 : South Burlington, VT +05418 : 44.738007 : -72.87814 : Fletcher, VT +05433 : 44.039878 : -73.015358 : Lincoln, VT +05439 : 44.49518 : -73.165092 : Colchester, VT +05440 : 44.966836 : -73.27028 : Alburg, VT +05441 : 44.772886 : -72.78854 : Bakersfield, VT +05442 : 44.755398 : -72.68029 : Belvidere Center, VT +05443 : 44.129002 : -73.05258 : Bristol, VT +05444 : 44.645649 : -72.90151 : Cambridge, VT +05445 : 44.309241 : -73.23504 : Charlotte, VT +05446 : 44.541902 : -73.19659 : Colchester, VT +05447 : 44.824855 : -72.895849 : East Berkshire, VT +05448 : 44.751801 : -72.88247 : East Fairfield, VT +05449 : 44.442117 : -73.082525 : Colchester, VT +05450 : 44.885689 : -72.78992 : Enosburg Falls, VT +05451 : 44.50835 : -73.050271 : Essex, VT +05452 : 44.501991 : -73.09376 : Essex Junction, VT +05453 : 44.442117 : -73.082525 : Essex Junction, VT +05454 : 44.693805 : -73.04099 : Fairfax, VT +05455 : 44.801734 : -72.96213 : Fairfield, VT +05456 : 44.204926 : -73.25143 : Ferrisburg, VT +05457 : 44.961552 : -72.89351 : Franklin, VT +05458 : 44.712593 : -73.30526 : Grand Isle, VT +05459 : 44.941617 : -73.03056 : Highgate Center, VT +05460 : 44.974765 : -73.105205 : Highgate Springs, VT +05461 : 44.332217 : -73.09254 : Hinesburg, VT +05462 : 44.304004 : -72.97999 : Huntington, VT +05463 : 44.866344 : -73.33081 : Isle La Motte, VT +05464 : 44.636283 : -72.82257 : Jeffersonville, VT +05465 : 44.486113 : -72.96317 : Jericho, VT +05466 : 44.362504 : -73.019801 : Jonesville, VT +05468 : 44.641974 : -73.13469 : Milton, VT +05469 : 44.240375 : -73.134702 : Monkton, VT +05470 : 44.824855 : -72.895849 : Montgomery, VT +05471 : 44.874895 : -72.58798 : Montgomery Center, VT +05472 : 44.121825 : -73.166 : New Haven, VT +05473 : 44.255574 : -73.22253 : North Ferrisburg, VT +05474 : 44.831101 : -73.27354 : North Hero, VT +05476 : 44.970417 : -72.66316 : Richford, VT +05477 : 44.392443 : -72.95936 : Richmond, VT +05478 : 44.807555 : -73.09077 : Saint Albans, VT +05479 : 44.824855 : -72.895849 : Saint Albans, VT +05481 : 44.824855 : -72.895849 : Saint Albans Bay, VT +05482 : 44.388556 : -73.22318 : Shelburne, VT +05483 : 44.884125 : -72.9751 : Sheldon, VT +05485 : 44.905573 : -72.963154 : Sheldon Springs, VT +05486 : 44.645192 : -73.31452 : South Hero, VT +05487 : 44.224103 : -73.03164 : Starksboro, VT +05488 : 44.930163 : -73.12099 : Swanton, VT +05489 : 44.546538 : -72.92649 : Underhill, VT +05490 : 44.504656 : -72.885253 : Underhill Center, VT +05491 : 44.12753 : -73.28437 : Vergennes, VT +05492 : 44.708468 : -72.7585 : Waterville, VT +05494 : 44.608283 : -73.00979 : Westford, VT +05495 : 44.44524 : -73.09917 : Williston, VT +05501 : 42.647191 : -71.184202 : Andover, MA +05544 : 42.647191 : -71.184202 : Andover, MA +05601 : 44.19906 : -72.559638 : Montpelier, VT +05602 : 44.265633 : -72.59686 : Montpelier, VT +05603 : 44.156554 : -72.655892 : Montpelier, VT +05604 : 44.259518 : -72.585018 : Montpelier, VT +05609 : 44.259518 : -72.585018 : Montpelier, VT +05620 : 44.259518 : -72.585018 : Montpelier, VT +05626 : 44.352339 : -72.779614 : Waterbury, VT +05633 : 44.259518 : -72.585018 : Montpelier, VT +05640 : 44.354296 : -72.49053 : Adamant, VT +05641 : 44.194307 : -72.49443 : Barre, VT +05647 : 44.414576 : -72.28652 : Cabot, VT +05648 : 44.375726 : -72.49509 : Calais, VT +05649 : 44.152477 : -72.43328 : East Barre, VT +05650 : 44.403899 : -72.44328 : East Calais, VT +05651 : 44.282269 : -72.48983 : East Montpelier, VT +05652 : 44.715079 : -72.5717 : Eden, VT +05653 : 44.711083 : -72.50846 : Eden Mills, VT +05654 : 44.140716 : -72.47675 : Graniteville, VT +05655 : 44.610931 : -72.59971 : Hyde Park, VT +05656 : 44.645219 : -72.67941 : Johnson, VT +05657 : 44.541415 : -72.52693 : Lake Elmore, VT +05658 : 44.353823 : -72.34925 : Marshfield, VT +05660 : 44.248198 : -72.78525 : Moretown, VT +05661 : 44.549391 : -72.60332 : Morrisville, VT +05662 : 44.442001 : -72.718759 : Moscow, VT +05663 : 44.141056 : -72.66443 : Northfield, VT +05664 : 44.171238 : -72.64976 : Northfield Falls, VT +05665 : 44.67307 : -72.597057 : North Hyde Park, VT +05666 : 44.33865 : -72.44382 : North Montpelier, VT +05667 : 44.295577 : -72.42365 : Plainfield, VT +05669 : 44.062311 : -72.74364 : Roxbury, VT +05670 : 44.175744 : -72.50247 : South Barre, VT +05671 : 44.259518 : -72.585018 : Waterbury, VT +05672 : 44.475387 : -72.70225 : Stowe, VT +05673 : 44.184704 : -72.8367 : Waitsfield, VT +05674 : 44.106922 : -72.85816 : Warren, VT +05675 : 44.083457 : -72.422 : Washington, VT +05676 : 44.348486 : -72.77081 : Waterbury, VT +05677 : 44.375144 : -72.71362 : Waterbury Center, VT +05678 : 44.158979 : -72.46942 : Websterville, VT +05679 : 44.109793 : -72.54155 : Williamstown, VT +05680 : 44.551056 : -72.4739 : Wolcott, VT +05681 : 44.457481 : -72.40659 : Woodbury, VT +05682 : 44.383559 : -72.55088 : Worcester, VT +05701 : 43.617302 : -72.96325 : Rutland, VT +05702 : 43.412792 : -72.990632 : Rutland, VT +05730 : 43.416666 : -72.83445 : Belmont, VT +05731 : 43.687677 : -73.291868 : Benson, VT +05732 : 43.644208 : -73.20284 : Bomoseen, VT +05733 : 43.810371 : -73.09998 : Brandon, VT +05734 : 43.987529 : -73.35144 : Bridport, VT +05735 : 43.640503 : -73.16118 : Castleton, VT +05736 : 43.602211 : -73.01298 : Center Rutland, VT +05737 : 43.735819 : -72.93145 : Chittenden, VT +05738 : 43.507854 : -72.8642 : Cuttingsville, VT +05739 : 43.341177 : -73.01602 : Danby, VT +05740 : 43.97153 : -73.091416 : East Middlebury, VT +05741 : 43.592039 : -72.818121 : East Poultney, VT +05742 : 43.441404 : -72.88507 : East Wallingford, VT +05743 : 43.666758 : -73.2857 : Fair Haven, VT +05744 : 43.68805 : -73.06783 : Florence, VT +05745 : 43.592039 : -72.818121 : Forest Dale, VT +05746 : 43.785433 : -72.71366 : Gaysville, VT +05747 : 43.999811 : -72.83927 : Granville, VT +05748 : 43.926595 : -72.87143 : Hancock, VT +05750 : 43.619787 : -73.23273 : Hydeville, VT +05751 : 43.659839 : -72.79419 : Killington, VT +05752 : 43.225264 : -73.141318 : Poultney, VT +05753 : 44.006024 : -73.172 : Middlebury, VT +05757 : 43.477827 : -73.12311 : Middletown Springs, VT +05758 : 43.452914 : -72.79647 : Mount Holly, VT +05759 : 43.553904 : -72.96168 : North Clarendon, VT +05760 : 43.801501 : -73.2869 : Orwell, VT +05761 : 43.357161 : -73.13467 : Pawlet, VT +05762 : 43.768578 : -72.83138 : Pittsfield, VT +05763 : 43.719898 : -73.00087 : Pittsford, VT +05764 : 43.521021 : -73.21603 : Poultney, VT +05765 : 43.657716 : -73.0328 : Proctor, VT +05766 : 43.981681 : -73.0155 : Ripton, VT +05767 : 43.876046 : -72.81212 : Rochester, VT +05768 : 43.026984 : -73.055156 : Rupert, VT +05769 : 43.914026 : -73.10703 : Salisbury, VT +05770 : 43.892373 : -73.31583 : Shoreham, VT +05772 : 43.761779 : -72.73703 : Stockbridge, VT +05773 : 43.444268 : -72.98732 : Wallingford, VT +05774 : 43.43357 : -73.19578 : Wells, VT +05775 : 43.365073 : -73.23612 : West Pawlet, VT +05776 : 43.235771 : -73.2489 : West Rupert, VT +05777 : 43.574326 : -73.04215 : West Rutland, VT +05778 : 43.864419 : -73.21148 : Whiting, VT +05801 : 43.898246 : -72.183633 : White River Junction, VT +05819 : 44.412413 : -72.00996 : Saint Johnsbury, VT +05820 : 44.733624 : -72.38308 : Albany, VT +05821 : 44.311706 : -72.10346 : Barnet, VT +05822 : 44.750509 : -72.16376 : Barton, VT +05823 : 45.005783 : -72.138347 : Beebe Plain, VT +05824 : 44.428537 : -71.87212 : Concord, VT +05825 : 44.863351 : -72.26649 : Coventry, VT +05826 : 44.647068 : -72.3887 : Craftsbury, VT +05827 : 44.678879 : -72.35975 : Craftsbury Common, VT +05828 : 44.424043 : -72.12808 : Danville, VT +05829 : 44.945925 : -72.09864 : Derby, VT +05830 : 44.985004 : -72.05857 : Derby Line, VT +05832 : 44.588911 : -71.92705 : East Burke, VT +05833 : 44.82446 : -71.969 : East Charleston, VT +05836 : 44.529915 : -72.26819 : East Hardwick, VT +05837 : 44.643171 : -71.86394 : East Haven, VT +05838 : 44.468494 : -71.930077 : East Saint Johnsbury, VT +05839 : 44.684488 : -72.20936 : Glover, VT +05840 : 44.612521 : -71.71536 : Granby, VT +05841 : 44.599177 : -72.31179 : Greensboro, VT +05842 : 44.574196 : -72.24333 : Greensboro Bend, VT +05843 : 44.504593 : -72.35822 : Hardwick, VT +05845 : 44.800462 : -72.28964 : Irasburg, VT +05846 : 44.803005 : -71.84683 : Island Pond, VT +05847 : 44.799008 : -72.45025 : Lowell, VT +05848 : 44.382103 : -71.919518 : Lower Waterford, VT +05849 : 44.497557 : -71.950519 : Lyndon, VT +05850 : 44.481915 : -71.988258 : Lyndon Center, VT +05851 : 44.541352 : -72.02686 : Lyndonville, VT +05852 : 44.951093 : -72.303696 : Newport, VT +05853 : 44.881758 : -71.96653 : Morgan, VT +05855 : 44.936237 : -72.19921 : Newport, VT +05857 : 44.944231 : -72.30054 : Newport Center, VT +05858 : 44.498374 : -71.83773 : North Concord, VT +05859 : 44.963802 : -72.41782 : North Troy, VT +05860 : 44.815511 : -72.15478 : Orleans, VT +05861 : 44.46239 : -72.135804 : Passumpsic, VT +05862 : 44.46239 : -72.135804 : Peacham, VT +05863 : 44.503403 : -71.972088 : Saint Johnsbury Center, VT +05864 : 44.562138 : -72.244107 : Stannard, VT +05866 : 44.632918 : -72.13245 : Sheffield, VT +05867 : 44.653046 : -72.04372 : Sutton, VT +05868 : 44.902837 : -72.408 : Troy, VT +05871 : 44.673586 : -71.95414 : West Burke, VT +05872 : 44.865723 : -72.04647 : West Charleston, VT +05873 : 44.411321 : -72.2123 : West Danville, VT +05874 : 44.876447 : -72.42902 : Westfield, VT +05875 : 44.722453 : -72.25602 : West Glover, VT +05892 : 44.91454 : -72.112619 : Derby, VT +05901 : 44.680771 : -71.719436 : Averill, VT +05902 : 45.008398 : -71.50628 : Beecher Falls, VT +05903 : 44.972508 : -71.59275 : Canaan, VT +05904 : 44.413715 : -71.70906 : Gilman, VT +05905 : 44.682269 : -71.66238 : Guildhall, VT +05906 : 44.458803 : -71.7162 : Lunenburg, VT +05907 : 44.959647 : -71.81134 : Norton, VT +05928 : 44.95282 : -72.135369 : Derby Center, VT +05958 : 43.476669 : -72.821555 : Mount Holly, VT +06001 : 41.789698 : -72.86431 : Avon, CT +06002 : 41.832798 : -72.72642 : Bloomfield, CT +06006 : 41.879637 : -72.734271 : Windsor, CT +06010 : 41.682249 : -72.93365 : Bristol, CT +06011 : 41.791776 : -72.718832 : Bristol, CT +06013 : 41.758415 : -72.94642 : Burlington, CT +06016 : 41.909097 : -72.54393 : Broad Brook, CT +06018 : 42.02351 : -73.31103 : Canaan, CT +06019 : 41.834247 : -72.89174 : Canton, CT +06020 : 41.864597 : -72.91003 : Canton Center, CT +06021 : 42.027797 : -73.11835 : Colebrook, CT +06022 : 41.832842 : -72.92526 : Collinsville, CT +06023 : 41.612748 : -72.72017 : East Berlin, CT +06024 : 42.010733 : -73.26877 : East Canaan, CT +06025 : 41.688896 : -72.534482 : East Glastonbury, CT +06026 : 41.935501 : -72.72718 : East Granby, CT +06027 : 42.002345 : -72.90922 : East Hartland, CT +06028 : 41.859248 : -72.603033 : East Windsor Hill, CT +06029 : 41.909147 : -72.45026 : Ellington, CT +06030 : 41.791776 : -72.718832 : Farmington, CT +06031 : 41.948694 : -73.3296 : Falls Village, CT +06032 : 41.725195 : -72.83032 : Farmington, CT +06033 : 41.707932 : -72.57085 : Glastonbury, CT +06034 : 41.791776 : -72.718832 : Farmington, CT +06035 : 41.959713 : -72.79826 : Granby, CT +06037 : 41.619048 : -72.76734 : Kensington, CT +06039 : 41.951783 : -73.43722 : Lakeville, CT +06040 : 41.778888 : -72.52384 : Manchester, CT +06041 : 41.794681 : -72.564832 : Manchester, CT +06043 : 41.771265 : -72.43669 : Bolton, CT +06045 : 41.791776 : -72.718832 : Manchester, CT +06049 : 41.791776 : -72.718832 : Melrose, CT +06050 : 41.666049 : -72.778391 : New Britain, CT +06051 : 41.666249 : -72.76996 : New Britain, CT +06052 : 41.659099 : -72.80129 : New Britain, CT +06053 : 41.686949 : -72.7908 : New Britain, CT +06057 : 41.852712 : -73.00492 : New Hartford, CT +06058 : 41.986861 : -73.19437 : Norfolk, CT +06059 : 41.937513 : -72.92017 : North Canton, CT +06060 : 42.012195 : -72.8445 : North Granby, CT +06061 : 41.874382 : -72.967958 : Pine Meadow, CT +06062 : 41.671548 : -72.86294 : Plainville, CT +06063 : 41.926696 : -72.96783 : Pleasant Valley, CT +06064 : 41.791776 : -72.718832 : Poquonock, CT +06065 : 41.961127 : -73.01859 : Riverton, CT +06066 : 41.841615 : -72.46708 : Vernon Rockville, CT +06067 : 41.660949 : -72.66098 : Rocky Hill, CT +06068 : 42.014673 : -73.42408 : Salisbury, CT +06069 : 41.866222 : -73.46331 : Sharon, CT +06070 : 41.874064 : -72.81644 : Simsbury, CT +06071 : 41.995851 : -72.45336 : Somers, CT +06072 : 41.976466 : -72.490593 : Somersville, CT +06073 : 41.660899 : -72.56887 : South Glastonbury, CT +06074 : 41.836665 : -72.56076 : South Windsor, CT +06075 : 41.81152 : -72.308779 : Stafford, CT +06076 : 41.979871 : -72.27863 : Stafford Springs, CT +06077 : 41.991645 : -72.257735 : Staffordville, CT +06078 : 41.985946 : -72.63897 : Suffield, CT +06079 : 42.032012 : -73.403763 : Taconic, CT +06080 : 41.948597 : -72.628802 : Suffield, CT +06081 : 41.907114 : -72.76831 : Tariffville, CT +06082 : 41.987238 : -72.56365 : Enfield, CT +06083 : 41.791776 : -72.718832 : Enfield, CT +06084 : 41.87688 : -72.36806 : Tolland, CT +06085 : 41.749832 : -72.8898 : Unionville, CT +06087 : 41.757616 : -72.884953 : Unionville, CT +06088 : 41.908464 : -72.60547 : East Windsor, CT +06089 : 41.839731 : -72.81974 : Weatogue, CT +06090 : 41.953596 : -72.85242 : West Granby, CT +06091 : 42.002748 : -72.98906 : West Hartland, CT +06092 : 41.861297 : -72.86055 : West Simsbury, CT +06093 : 42.019907 : -72.73357 : West Suffield, CT +06094 : 41.896321 : -73.146312 : Winchester Center, CT +06095 : 41.857303 : -72.66654 : Windsor, CT +06096 : 41.926997 : -72.64688 : Windsor Locks, CT +06098 : 41.925967 : -73.06944 : Winsted, CT +06101 : 41.78007 : -72.677099 : Hartford, CT +06102 : 41.791776 : -72.718832 : Hartford, CT +06103 : 41.767049 : -72.67433 : Hartford, CT +06104 : 41.791776 : -72.718832 : Hartford, CT +06105 : 41.771166 : -72.70255 : Hartford, CT +06106 : 41.7469 : -72.69593 : Hartford, CT +06107 : 41.75275 : -72.7546 : W Hartford, CT +06108 : 41.778316 : -72.62313 : East Hartford, CT +06109 : 41.702049 : -72.6747 : Wethersfield, CT +06110 : 41.7313 : -72.73374 : W Hartford, CT +06111 : 41.688899 : -72.73101 : Newington, CT +06112 : 41.793299 : -72.6954 : Hartford, CT +06114 : 41.7387 : -72.67889 : Hartford, CT +06115 : 41.758849 : -72.679387 : Hartford, CT +06117 : 41.791399 : -72.74853 : W Hartford, CT +06118 : 41.745349 : -72.60807 : East Hartford, CT +06119 : 41.76255 : -72.72839 : W Hartford, CT +06120 : 41.784794 : -72.67378 : Hartford, CT +06123 : 41.791776 : -72.718832 : Hartford, CT +06126 : 41.791776 : -72.718832 : Hartford, CT +06127 : 41.791776 : -72.718832 : W Hartford, CT +06128 : 41.791776 : -72.718832 : East Hartford, CT +06129 : 41.791776 : -72.718832 : Wethersfield, CT +06131 : 41.791776 : -72.718832 : Newington, CT +06132 : 41.791776 : -72.718832 : Hartford, CT +06133 : 41.791776 : -72.718832 : W Hartford, CT +06134 : 41.791776 : -72.718832 : Hartford, CT +06137 : 41.791776 : -72.718832 : W Hartford, CT +06138 : 41.791776 : -72.718832 : East Hartford, CT +06140 : 41.791776 : -72.718832 : Hartford, CT +06141 : 41.791776 : -72.718832 : Hartford, CT +06142 : 41.791776 : -72.718832 : Hartford, CT +06143 : 41.791776 : -72.718832 : Hartford, CT +06144 : 41.791776 : -72.718832 : Hartford, CT +06145 : 41.791776 : -72.718832 : Hartford, CT +06146 : 41.791776 : -72.718832 : Hartford, CT +06147 : 41.791776 : -72.718832 : Hartford, CT +06150 : 41.791776 : -72.718832 : Hartford, CT +06151 : 41.791776 : -72.718832 : Hartford, CT +06152 : 41.791776 : -72.718832 : Hartford, CT +06153 : 41.791776 : -72.718832 : Hartford, CT +06154 : 41.771499 : -72.686687 : Hartford, CT +06155 : 41.76928 : -72.686465 : Hartford, CT +06156 : 41.767949 : -72.690687 : Hartford, CT +06160 : 41.766499 : -72.693337 : Hartford, CT +06161 : 41.766049 : -72.671837 : Hartford, CT +06167 : 41.791776 : -72.718832 : Hartford, CT +06176 : 41.791776 : -72.718832 : Hartford, CT +06180 : 41.791776 : -72.718832 : Hartford, CT +06183 : 41.763849 : -72.673037 : Hartford, CT +06199 : 41.927447 : -72.680386 : Hartford, CT +06226 : 41.714867 : -72.20934 : Willimantic, CT +06230 : 41.847302 : -72.02528 : Abington, CT +06231 : 41.629818 : -72.36419 : Amston, CT +06232 : 41.737015 : -72.37151 : Andover, CT +06233 : 41.831565 : -72.020137 : Ballouville, CT +06234 : 41.782474 : -71.95989 : Brooklyn, CT +06235 : 41.809166 : -72.11274 : Chaplin, CT +06237 : 41.702777 : -72.29349 : Columbia, CT +06238 : 41.778651 : -72.33137 : Coventry, CT +06239 : 41.799111 : -71.87594 : Danielson, CT +06241 : 41.850225 : -71.85749 : Dayville, CT +06242 : 41.90913 : -72.09527 : Eastford, CT +06243 : 41.844885 : -71.818941 : East Killingly, CT +06244 : 41.984327 : -71.981045 : East Woodstock, CT +06245 : 42.019776 : -71.941669 : Fabyan, CT +06246 : 41.971116 : -71.891732 : Grosvenor Dale, CT +06247 : 41.767929 : -72.06127 : Hampton, CT +06248 : 41.683399 : -72.40144 : Hebron, CT +06249 : 41.618403 : -72.24215 : Lebanon, CT +06250 : 41.768455 : -72.20007 : Mansfield Center, CT +06251 : 41.799326 : -72.306526 : Mansfield Depot, CT +06254 : 41.609066 : -72.14439 : North Franklin, CT +06255 : 41.989579 : -71.89659 : North Grosvenordale, CT +06256 : 41.758713 : -72.13964 : North Windham, CT +06258 : 41.889048 : -71.968232 : Pomfret, CT +06259 : 41.876565 : -71.98252 : Pomfret Center, CT +06260 : 41.913816 : -71.88434 : Putnam, CT +06262 : 42.022904 : -71.94671 : Quinebaug, CT +06263 : 41.839051 : -71.90634 : Rogers, CT +06264 : 41.693435 : -72.09891 : Scotland, CT +06265 : 41.81152 : -72.308779 : South Willington, CT +06266 : 41.670349 : -72.16028 : South Windham, CT +06267 : 41.943902 : -71.945253 : South Woodstock, CT +06268 : 41.806041 : -72.26127 : Storrs Mansfield, CT +06269 : 41.80743 : -72.25025 : Storrs Mansfield, CT +06277 : 41.972782 : -71.83969 : Thompson, CT +06278 : 41.895108 : -72.17674 : Ashford, CT +06279 : 41.896875 : -72.27456 : Willington, CT +06280 : 41.697765 : -72.14671 : Windham, CT +06281 : 41.971403 : -71.99872 : Woodstock, CT +06282 : 41.943199 : -72.0728 : Woodstock Valley, CT +06320 : 41.352498 : -72.10338 : New London, CT +06330 : 41.634556 : -72.06549 : Baltic, CT +06331 : 41.697123 : -72.0029 : Canterbury, CT +06332 : 41.725694 : -71.909019 : Central Village, CT +06333 : 41.371913 : -72.2269 : East Lyme, CT +06334 : 41.543559 : -72.17684 : Bozrah, CT +06335 : 41.426775 : -72.07227 : Gales Ferry, CT +06336 : 41.577198 : -72.20036 : Gilman, CT +06337 : 41.559873 : -71.889199 : Glasgo, CT +06339 : 41.449482 : -71.98233 : Ledyard, CT +06340 : 41.345331 : -72.04524 : Groton, CT +06349 : 41.39973 : -72.090357 : Groton, CT +06350 : 41.644546 : -72.06769 : Hanover, CT +06351 : 41.604341 : -71.97599 : Jewett City, CT +06353 : 41.452548 : -72.137471 : Montville, CT +06354 : 41.71836 : -71.87098 : Moosup, CT +06355 : 41.360798 : -71.97281 : Mystic, CT +06357 : 41.319649 : -72.21064 : Niantic, CT +06359 : 41.456189 : -71.86813 : North Stonington, CT +06360 : 41.533848 : -72.06232 : Norwich, CT +06365 : 41.509586 : -71.96621 : Preston, CT +06370 : 41.464274 : -72.19551 : Oakdale, CT +06371 : 41.339421 : -72.31008 : Old Lyme, CT +06372 : 41.388216 : -71.949548 : Old Mystic, CT +06373 : 41.678897 : -71.79952 : Oneco, CT +06374 : 41.684777 : -71.91911 : Plainfield, CT +06375 : 41.401398 : -72.11444 : Quaker Hill, CT +06376 : 41.294797 : -72.25602 : South Lyme, CT +06377 : 41.730575 : -71.81845 : Sterling, CT +06378 : 41.351307 : -71.91317 : Stonington, CT +06379 : 41.375701 : -71.84876 : Pawcatuck, CT +06380 : 41.566298 : -72.05148 : Taftville, CT +06382 : 41.457198 : -72.11459 : Uncasville, CT +06383 : 41.601648 : -72.04037 : Versailles, CT +06384 : 41.5787 : -71.85668 : Voluntown, CT +06385 : 41.347948 : -72.14762 : Waterford, CT +06386 : 41.464758 : -72.127301 : Waterford, CT +06387 : 41.744527 : -71.913339 : Wauregan, CT +06388 : 41.344098 : -71.976467 : West Mystic, CT +06389 : 41.559648 : -72.122672 : Yantic, CT +06390 : 41.261936 : -72.00708 : Fishers Island, NY +06401 : 41.34269 : -73.07446 : Ansonia, CT +06403 : 41.432936 : -73.06453 : Beacon Falls, CT +06404 : 41.165097 : -73.129186 : Botsford, CT +06405 : 41.277763 : -72.80542 : Branford, CT +06408 : 41.365709 : -72.927507 : Cheshire, CT +06409 : 41.353453 : -72.41604 : Centerbrook, CT +06410 : 41.507049 : -72.90489 : Cheshire, CT +06411 : 41.550097 : -72.922235 : Cheshire, CT +06412 : 41.408775 : -72.47213 : Chester, CT +06413 : 41.288599 : -72.52728 : Clinton, CT +06414 : 41.566668 : -72.558055 : Cobalt, CT +06415 : 41.56033 : -72.33795 : Colchester, CT +06416 : 41.612046 : -72.66998 : Cromwell, CT +06417 : 41.37934 : -72.44578 : Deep River, CT +06418 : 41.323005 : -73.08433 : Derby, CT +06419 : 41.380594 : -72.57637 : Killingworth, CT +06420 : 41.485469 : -72.25445 : Salem, CT +06422 : 41.461639 : -72.68733 : Durham, CT +06423 : 41.468451 : -72.40615 : East Haddam, CT +06424 : 41.573008 : -72.5078 : East Hampton, CT +06426 : 41.351598 : -72.39787 : Essex, CT +06430 : 41.163445 : -73.2629 : Fairfield, CT +06431 : 41.219093 : -73.252696 : Fairfield, CT +06432 : 41.189646 : -73.23576 : Fairfield, CT +06436 : 41.308873 : -73.363661 : Greens Farms, CT +06437 : 41.31353 : -72.69791 : Guilford, CT +06438 : 41.45307 : -72.50345 : Haddam, CT +06439 : 41.421198 : -72.414095 : Hadlyme, CT +06440 : 41.308873 : -73.363661 : Hawleyville, CT +06441 : 41.468654 : -72.57956 : Higganum, CT +06442 : 41.345099 : -72.44392 : Ivoryton, CT +06443 : 41.298648 : -72.60938 : Madison, CT +06444 : 41.791776 : -72.718832 : Marion, CT +06447 : 41.637066 : -72.46252 : Marlborough, CT +06450 : 41.532048 : -72.78145 : Meriden, CT +06451 : 41.536048 : -72.81973 : Meriden, CT +06454 : 41.365709 : -72.927507 : Meriden, CT +06455 : 41.514383 : -72.7183 : Middlefield, CT +06456 : 41.538017 : -72.525208 : Middle Haddam, CT +06457 : 41.553672 : -72.6632 : Middletown, CT +06459 : 41.556463 : -72.658179 : Middletown, CT +06460 : 41.21953 : -73.0554 : Milford, CT +06467 : 41.565697 : -72.903746 : Milldale, CT +06468 : 41.336046 : -73.22241 : Monroe, CT +06469 : 41.506499 : -72.44479 : Moodus, CT +06470 : 41.398462 : -73.31474 : Newtown, CT +06471 : 41.332197 : -72.77214 : North Branford, CT +06472 : 41.399873 : -72.77975 : Northford, CT +06473 : 41.378447 : -72.85897 : North Haven, CT +06474 : 41.464758 : -72.127301 : North Westchester, CT +06475 : 41.289348 : -72.38285 : Old Saybrook, CT +06477 : 41.279547 : -73.02541 : Orange, CT +06478 : 41.428163 : -73.12729 : Oxford, CT +06479 : 41.575847 : -72.89696 : Plantsville, CT +06480 : 41.588297 : -72.60384 : Portland, CT +06481 : 41.536643 : -72.69782 : Rockfall, CT +06482 : 41.411536 : -73.24888 : Sandy Hook, CT +06483 : 41.386584 : -73.0792 : Seymour, CT +06484 : 41.306396 : -73.1292 : Shelton, CT +06487 : 41.365709 : -72.927507 : South Britain, CT +06488 : 41.475263 : -73.22184 : Southbury, CT +06489 : 41.612298 : -72.87103 : Southington, CT +06490 : 41.140646 : -73.28791 : Southport, CT +06491 : 41.386646 : -73.187207 : Stevenson, CT +06492 : 41.457711 : -72.81704 : Wallingford, CT +06493 : 41.365709 : -72.927507 : Wallingford, CT +06494 : 41.365709 : -72.927507 : Wallingford, CT +06497 : 41.207146 : -73.130503 : Stratford, CT +06498 : 41.289499 : -72.46087 : Westbrook, CT +06501 : 41.365709 : -72.927507 : New Haven, CT +06502 : 41.365709 : -72.927507 : New Haven, CT +06503 : 41.365709 : -72.927507 : New Haven, CT +06504 : 41.304697 : -72.93561 : New Haven, CT +06505 : 41.305721 : -72.779901 : New Haven, CT +06506 : 41.365709 : -72.927507 : New Haven, CT +06507 : 41.365709 : -72.927507 : New Haven, CT +06508 : 41.365709 : -72.927507 : New Haven, CT +06509 : 41.365709 : -72.927507 : New Haven, CT +06510 : 41.306197 : -72.92479 : New Haven, CT +06511 : 41.317197 : -72.92798 : New Haven, CT +06512 : 41.276497 : -72.87412 : East Haven, CT +06513 : 41.315797 : -72.8803 : New Haven, CT +06514 : 41.357947 : -72.93765 : Hamden, CT +06515 : 41.327997 : -72.96902 : New Haven, CT +06516 : 41.272147 : -72.96496 : West Haven, CT +06517 : 41.348297 : -72.90712 : Hamden, CT +06518 : 41.413114 : -72.90409 : Hamden, CT +06519 : 41.295197 : -72.93673 : New Haven, CT +06520 : 41.365709 : -72.927507 : New Haven, CT +06521 : 41.365709 : -72.927507 : New Haven, CT +06524 : 41.417896 : -73.00356 : Bethany, CT +06525 : 41.352964 : -73.01212 : Woodbridge, CT +06530 : 41.365709 : -72.927507 : New Haven, CT +06531 : 41.365709 : -72.927507 : New Haven, CT +06532 : 41.365709 : -72.927507 : New Haven, CT +06533 : 41.365709 : -72.927507 : New Haven, CT +06534 : 41.365709 : -72.927507 : New Haven, CT +06535 : 41.365709 : -72.927507 : New Haven, CT +06536 : 41.365709 : -72.927507 : New Haven, CT +06537 : 41.365709 : -72.927507 : New Haven, CT +06538 : 41.365709 : -72.927507 : New Haven, CT +06540 : 41.299647 : -72.918846 : New Haven, CT +06601 : 41.308873 : -73.363661 : Bridgeport, CT +06602 : 41.179846 : -73.189006 : Bridgeport, CT +06604 : 41.178696 : -73.20004 : Bridgeport, CT +06605 : 41.163596 : -73.21633 : Bridgeport, CT +06606 : 41.209496 : -73.20771 : Bridgeport, CT +06607 : 41.177646 : -73.16649 : Bridgeport, CT +06608 : 41.188746 : -73.1813 : Bridgeport, CT +06610 : 41.202091 : -73.1708 : Bridgeport, CT +06611 : 41.256129 : -73.21227 : Trumbull, CT +06612 : 41.253946 : -73.28842 : Easton, CT +06614 : 41.219246 : -73.13221 : Stratford, CT +06615 : 41.175947 : -73.13515 : Stratford, CT +06650 : 41.308873 : -73.363661 : Bridgeport, CT +06673 : 41.308873 : -73.363661 : Bridgeport, CT +06699 : 41.308873 : -73.363661 : Bridgeport, CT +06701 : 41.365709 : -72.927507 : Waterbury, CT +06702 : 41.555846 : -73.0431 : Waterbury, CT +06703 : 41.365709 : -72.927507 : Waterbury, CT +06704 : 41.57693 : -73.03488 : Waterbury, CT +06705 : 41.54903 : -72.99861 : Waterbury, CT +06706 : 41.537896 : -73.02827 : Waterbury, CT +06708 : 41.551601 : -73.06262 : Waterbury, CT +06710 : 41.569496 : -73.04484 : Waterbury, CT +06712 : 41.501856 : -72.97799 : Prospect, CT +06716 : 41.594785 : -72.97889 : Wolcott, CT +06720 : 41.365709 : -72.927507 : Waterbury, CT +06721 : 41.365709 : -72.927507 : Waterbury, CT +06722 : 41.365709 : -72.927507 : Waterbury, CT +06723 : 41.365709 : -72.927507 : Waterbury, CT +06724 : 41.365709 : -72.927507 : Waterbury, CT +06725 : 41.365709 : -72.927507 : Waterbury, CT +06726 : 41.365709 : -72.927507 : Waterbury, CT +06731 : 41.933257 : -73.363028 : Salisbury, CT +06748 : 41.586368 : -73.43657 : Oxford, CT +06749 : 41.365709 : -72.927507 : Waterbury, CT +06750 : 41.721024 : -73.24774 : Bantam, CT +06751 : 41.639235 : -73.20864 : Bethlehem, CT +06752 : 41.52599 : -73.36092 : Bridgewater, CT +06753 : 41.828067 : -73.332345 : Cornwall, CT +06754 : 41.786035 : -73.35774 : Cornwall Bridge, CT +06755 : 41.655998 : -73.47692 : Gaylordsville, CT +06756 : 41.836049 : -73.24506 : Goshen, CT +06757 : 41.729239 : -73.45553 : Kent, CT +06758 : 41.739889 : -73.222981 : Lakeside, CT +06759 : 41.754255 : -73.21268 : Litchfield, CT +06762 : 41.532992 : -73.11555 : Middlebury, CT +06763 : 41.693856 : -73.21056 : Morris, CT +06770 : 41.493763 : -73.05173 : Naugatuck, CT +06776 : 41.581494 : -73.41313 : New Milford, CT +06777 : 41.697487 : -73.3435 : New Preston Marble Dale, CT +06778 : 41.694945 : -73.10942 : Northfield, CT +06779 : 41.592046 : -73.08543 : Oakville, CT +06781 : 41.669898 : -72.99145 : Pequabuck, CT +06782 : 41.662281 : -73.0482 : Plymouth, CT +06783 : 41.557711 : -73.30816 : Roxbury, CT +06784 : 41.566534 : -73.4915 : Sherman, CT +06785 : 41.69971 : -73.44024 : South Kent, CT +06786 : 41.676415 : -73.00836 : Terryville, CT +06787 : 41.677982 : -73.08979 : Thomaston, CT +06790 : 41.820274 : -73.11787 : Torrington, CT +06791 : 41.754872 : -73.06927 : Harwinton, CT +06793 : 41.633422 : -73.28946 : Washington, CT +06794 : 41.644096 : -73.32437 : Washington Depot, CT +06795 : 41.608196 : -73.12099 : Watertown, CT +06796 : 41.875075 : -73.33673 : West Cornwall, CT +06798 : 41.554112 : -73.20539 : Woodbury, CT +06801 : 41.379978 : -73.40105 : Bethel, CT +06804 : 41.465811 : -73.39982 : Brookfield, CT +06807 : 41.047627 : -73.59508 : Cos Cob, CT +06810 : 41.390194 : -73.45441 : Danbury, CT +06811 : 41.425594 : -73.47006 : Danbury, CT +06812 : 41.472227 : -73.49673 : New Fairfield, CT +06813 : 41.308873 : -73.363661 : Danbury, CT +06814 : 41.308873 : -73.363661 : Danbury, CT +06815 : 41.390625 : -72.900757 : Hamden, CT +06816 : 41.308873 : -73.363661 : Danbury, CT +06817 : 41.308873 : -73.363661 : Danbury, CT +06819 : 41.391956 : -73.475844 : Danbury, CT +06820 : 41.075663 : -73.48294 : Darien, CT +06824 : 41.163879 : -73.265744 : Fairfield, CT +06825 : 41.191685 : -73.238012 : Bridgeport, CT +06829 : 41.25553 : -73.427915 : Georgetown, CT +06830 : 41.03073 : -73.62985 : Greenwich, CT +06831 : 41.061296 : -73.65866 : Greenwich, CT +06832 : 41.308873 : -73.363661 : Greenwich, CT +06836 : 41.308873 : -73.363661 : Greenwich, CT +06840 : 41.150146 : -73.49178 : New Canaan, CT +06842 : 41.147096 : -73.495366 : New Canaan, CT +06850 : 41.124546 : -73.43658 : Norwalk, CT +06851 : 41.134896 : -73.4053 : Norwalk, CT +06852 : 41.308873 : -73.363661 : Norwalk, CT +06853 : 41.066196 : -73.43819 : Norwalk, CT +06854 : 41.092196 : -73.42869 : Norwalk, CT +06855 : 41.100496 : -73.39918 : Norwalk, CT +06856 : 41.111196 : -73.420363 : Norwalk, CT +06857 : 41.308873 : -73.363661 : Norwalk, CT +06858 : 41.110496 : -73.416213 : Norwalk, CT +06859 : 41.308873 : -73.363661 : Norwalk, CT +06860 : 41.308873 : -73.363661 : Norwalk, CT +06870 : 41.033347 : -73.56804 : Old Greenwich, CT +06875 : 41.308873 : -73.363661 : Redding Center, CT +06876 : 41.032647 : -73.583569 : Redding Ridge, CT +06877 : 41.297911 : -73.49178 : Ridgefield, CT +06878 : 41.034264 : -73.5842 : Riverside, CT +06879 : 41.308873 : -73.363661 : Ridgefield, CT +06880 : 41.140896 : -73.35178 : Westport, CT +06881 : 41.308873 : -73.363661 : Westport, CT +06883 : 41.216454 : -73.37308 : Weston, CT +06888 : 41.308873 : -73.363661 : Westport, CT +06889 : 41.141005 : -73.34689 : Westport, CT +06890 : 41.142754 : -73.288247 : Fairfield, CT +06896 : 41.301007 : -73.39857 : Redding, CT +06897 : 41.201446 : -73.43758 : Wilton, CT +06901 : 41.051996 : -73.53903 : Stamford, CT +06902 : 41.047996 : -73.53688 : Stamford, CT +06903 : 41.132096 : -73.56423 : Stamford, CT +06904 : 41.308873 : -73.363661 : Stamford, CT +06905 : 41.081396 : -73.54506 : Stamford, CT +06906 : 41.069298 : -73.52182 : Stamford, CT +06907 : 41.096846 : -73.52128 : Stamford, CT +06910 : 41.039147 : -73.559118 : Stamford, CT +06911 : 41.308873 : -73.363661 : Stamford, CT +06912 : 41.308873 : -73.363661 : Stamford, CT +06913 : 41.308873 : -73.363661 : Stamford, CT +06914 : 41.308873 : -73.363661 : Stamford, CT +06920 : 41.308873 : -73.363661 : Stamford, CT +06921 : 41.049866 : -73.53796 : Stamford, CT +06922 : 41.051551 : -73.514344 : Stamford, CT +06925 : 41.308873 : -73.363661 : Stamford, CT +06926 : 41.041197 : -73.538567 : Stamford, CT +06927 : 41.308873 : -73.363661 : Stamford, CT +06928 : 41.308873 : -73.363661 : Stamford, CT +06993 : 41.234395 : -73.402714 : Weston, CT +07001 : 40.578996 : -74.27987 : Avenel, NJ +07002 : 40.666552 : -74.11768 : Bayonne, NJ +07003 : 40.803 : -74.18895 : Bloomfield, NJ +07004 : 40.879049 : -74.29378 : Fairfield, NJ +07005 : 40.912798 : -74.41516 : Boonton, NJ +07006 : 40.848999 : -74.27917 : Caldwell, NJ +07007 : 40.79185 : -74.245241 : Caldwell, NJ +07008 : 40.582504 : -74.22997 : Carteret, NJ +07009 : 40.855854 : -74.22898 : Cedar Grove, NJ +07010 : 40.82154 : -73.98949 : Cliffside Park, NJ +07011 : 40.879699 : -74.14263 : Clifton, NJ +07012 : 40.847922 : -74.1579 : Clifton, NJ +07013 : 40.868699 : -74.17102 : Clifton, NJ +07014 : 40.834049 : -74.13669 : Clifton, NJ +07015 : 41.011428 : -74.304793 : Clifton, NJ +07016 : 40.656302 : -74.30371 : Cranford, NJ +07017 : 40.770933 : -74.20589 : East Orange, NJ +07018 : 40.75555 : -74.21897 : East Orange, NJ +07019 : 40.79185 : -74.245241 : East Orange, NJ +07020 : 40.830733 : -73.97334 : Edgewater, NJ +07021 : 40.827499 : -74.28091 : Essex Fells, NJ +07022 : 40.816737 : -74.00082 : Fairview, NJ +07023 : 40.641852 : -74.38533 : Fanwood, NJ +07024 : 40.849879 : -73.97501 : Fort Lee, NJ +07026 : 40.879858 : -74.10807 : Garfield, NJ +07027 : 40.650802 : -74.32351 : Garwood, NJ +07028 : 40.80495 : -74.2047 : Glen Ridge, NJ +07029 : 40.745951 : -74.15509 : Harrison, NJ +07030 : 40.744851 : -74.03294 : Hoboken, NJ +07031 : 40.791895 : -74.13254 : North Arlington, NJ +07032 : 40.763051 : -74.13718 : Kearny, NJ +07033 : 40.674652 : -74.2908 : Kenilworth, NJ +07034 : 40.881149 : -74.38112 : Lake Hiawatha, NJ +07035 : 40.923233 : -74.29376 : Lincoln Park, NJ +07036 : 40.633953 : -74.25339 : Linden, NJ +07039 : 40.788733 : -74.32134 : Livingston, NJ +07040 : 40.728901 : -74.26821 : Maplewood, NJ +07041 : 40.724168 : -74.29913 : Millburn, NJ +07042 : 40.81315 : -74.21576 : Montclair, NJ +07043 : 40.844199 : -74.20218 : Montclair, NJ +07044 : 40.832449 : -74.24227 : Verona, NJ +07045 : 40.906152 : -74.36742 : Montville, NJ +07046 : 40.892021 : -74.44022 : Mountain Lakes, NJ +07047 : 40.7946 : -74.01963 : North Bergen, NJ +07050 : 40.7683 : -74.23603 : Orange, NJ +07051 : 40.79185 : -74.245241 : Orange, NJ +07052 : 40.78865 : -74.25541 : West Orange, NJ +07054 : 40.860149 : -74.4171 : Parsippany, NJ +07055 : 40.857384 : -74.12899 : Passaic, NJ +07057 : 40.852931 : -74.10925 : Wallington, NJ +07058 : 40.871299 : -74.34331 : Pine Brook, NJ +07059 : 40.633652 : -74.5008 : Warren, NJ +07060 : 40.620102 : -74.42481 : Plainfield, NJ +07061 : 40.665651 : -74.299692 : Plainfield, NJ +07062 : 40.631252 : -74.40383 : Plainfield, NJ +07063 : 40.604252 : -74.44612 : Plainfield, NJ +07064 : 40.569504 : -74.24774 : Port Reading, NJ +07065 : 40.607103 : -74.28099 : Rahway, NJ +07066 : 40.620336 : -74.30934 : Clark, NJ +07067 : 40.591653 : -74.31341 : Colonia, NJ +07068 : 40.821799 : -74.30477 : Roseland, NJ +07069 : 40.641207 : -74.443695 : Watchung, NJ +07070 : 40.828922 : -74.11064 : Rutherford, NJ +07071 : 40.808416 : -74.12111 : Lyndhurst, NJ +07072 : 40.836555 : -74.08466 : Carlstadt, NJ +07073 : 40.830158 : -74.09707 : East Rutherford, NJ +07074 : 40.841668 : -74.059 : Moonachie, NJ +07075 : 40.847638 : -74.08754 : Wood Ridge, NJ +07076 : 40.637152 : -74.37493 : Scotch Plains, NJ +07077 : 40.553971 : -74.25938 : Sewaren, NJ +07078 : 40.73915 : -74.32749 : Short Hills, NJ +07079 : 40.74765 : -74.25881 : South Orange, NJ +07080 : 40.580703 : -74.41401 : South Plainfield, NJ +07081 : 40.701801 : -74.32216 : Springfield, NJ +07082 : 40.92241 : -74.34625 : Towaco, NJ +07083 : 40.695401 : -74.26933 : Union, NJ +07086 : 40.769796 : -74.022351 : Union City, NJ +07087 : 40.767751 : -74.0302 : Union City, NJ +07088 : 40.718401 : -74.28416 : Vauxhall, NJ +07090 : 40.649202 : -74.34567 : Westfield, NJ +07091 : 40.665651 : -74.299692 : Westfield, NJ +07092 : 40.680301 : -74.35601 : Mountainside, NJ +07093 : 40.7895 : -74.01223 : West New York, NJ +07094 : 40.7885 : -74.06 : Secaucus, NJ +07095 : 40.557104 : -74.28316 : Woodbridge, NJ +07096 : 40.73276 : -74.075485 : Secaucus, NJ +07097 : 40.73276 : -74.075485 : Jersey City, NJ +07099 : 40.73276 : -74.075485 : Kearny, NJ +07101 : 40.736101 : -74.22509 : Newark, NJ +07102 : 40.735257 : -74.17326 : Newark, NJ +07103 : 40.738501 : -74.19507 : Newark, NJ +07104 : 40.767702 : -74.16831 : Newark, NJ +07105 : 40.725801 : -74.15206 : Newark, NJ +07106 : 40.742251 : -74.23006 : Newark, NJ +07107 : 40.760667 : -74.1879 : Newark, NJ +07108 : 40.722751 : -74.2014 : Newark, NJ +07109 : 40.7935 : -74.16144 : Belleville, NJ +07110 : 40.8196 : -74.15877 : Nutley, NJ +07111 : 40.725651 : -74.23207 : Irvington, NJ +07112 : 40.711651 : -74.21303 : Newark, NJ +07114 : 40.707553 : -74.17883 : Newark, NJ +07115 : 40.718772 : -74.170091 : Newark, NJ +07175 : 40.79185 : -74.245241 : Newark, NJ +07182 : 40.79185 : -74.245241 : Newark, NJ +07184 : 40.79185 : -74.245241 : Newark, NJ +07188 : 40.79185 : -74.245241 : Newark, NJ +07189 : 40.79185 : -74.245241 : Newark, NJ +07191 : 40.79185 : -74.245241 : Newark, NJ +07192 : 40.79185 : -74.245241 : Newark, NJ +07193 : 40.79185 : -74.245241 : Newark, NJ +07194 : 40.79185 : -74.245241 : Newark, NJ +07195 : 40.79185 : -74.245241 : Newark, NJ +07197 : 40.79185 : -74.245241 : Newark, NJ +07198 : 40.79185 : -74.245241 : Newark, NJ +07199 : 40.79185 : -74.245241 : Newark, NJ +07201 : 40.669502 : -74.19889 : Elizabeth, NJ +07202 : 40.652302 : -74.21692 : Elizabeth, NJ +07203 : 40.653502 : -74.26058 : Roselle, NJ +07204 : 40.665552 : -74.26768 : Roselle Park, NJ +07205 : 40.695552 : -74.22856 : Hillside, NJ +07206 : 40.653189 : -74.19158 : Elizabeth, NJ +07207 : 40.665651 : -74.299692 : Elizabeth, NJ +07208 : 40.673102 : -74.22834 : Elizabeth, NJ +07290 : 40.664351 : -74.573051 : Bernards, NJ +07301 : 40.729234 : -74.032506 : Jersey City, NJ +07302 : 40.721602 : -74.04703 : Jersey City, NJ +07303 : 40.73276 : -74.075485 : Jersey City, NJ +07304 : 40.716452 : -74.07253 : Jersey City, NJ +07305 : 40.701302 : -74.08843 : Jersey City, NJ +07306 : 40.733751 : -74.06582 : Jersey City, NJ +07307 : 40.748001 : -74.04943 : Jersey City, NJ +07308 : 40.73276 : -74.075485 : Jersey City, NJ +07309 : 40.73276 : -74.075485 : Jersey City, NJ +07310 : 40.731901 : -74.0402 : Jersey City, NJ +07311 : 40.73235 : -74.075391 : Jersey City, NJ +07399 : 40.73235 : -74.075391 : Jersey City, NJ +07401 : 41.031505 : -74.13409 : Allendale, NJ +07403 : 41.014497 : -74.33021 : Bloomingdale, NJ +07405 : 40.99313 : -74.35893 : Butler, NJ +07407 : 40.905639 : -74.1199 : Elmwood Park, NJ +07410 : 40.933943 : -74.11671 : Fair Lawn, NJ +07416 : 41.11736 : -74.58784 : Franklin, NJ +07417 : 41.010433 : -74.20847 : Franklin Lakes, NJ +07418 : 41.232344 : -74.48688 : Glenwood, NJ +07419 : 41.156187 : -74.57094 : Hamburg, NJ +07420 : 41.026747 : -74.29742 : Haskell, NJ +07421 : 41.173445 : -74.37404 : Hewitt, NJ +07422 : 41.180137 : -74.45489 : Highland Lakes, NJ +07423 : 41.001695 : -74.10239 : Ho Ho Kus, NJ +07424 : 40.886628 : -74.21405 : Little Falls, NJ +07427 : 40.875949 : -74.201489 : West Paterson, NJ +07428 : 41.181052 : -74.51796 : McAfee, NJ +07430 : 41.077102 : -74.16147 : Mahwah, NJ +07432 : 40.99312 : -74.14286 : Midland Park, NJ +07435 : 41.045897 : -74.43677 : Newfoundland, NJ +07436 : 41.028884 : -74.23727 : Oakland, NJ +07438 : 41.029555 : -74.5071 : Oak Ridge, NJ +07439 : 41.080066 : -74.5972 : Ogdensburg, NJ +07440 : 40.946748 : -74.29575 : Pequannock, NJ +07442 : 40.99948 : -74.28807 : Pompton Lakes, NJ +07444 : 40.964548 : -74.29813 : Pompton Plains, NJ +07446 : 41.058819 : -74.14238 : Ramsey, NJ +07450 : 40.983997 : -74.11438 : Ridgewood, NJ +07451 : 40.948054 : -74.083231 : Ridgewood, NJ +07452 : 40.961109 : -74.12576 : Glen Rock, NJ +07456 : 41.096095 : -74.26012 : Ringwood, NJ +07457 : 40.990032 : -74.31023 : Riverdale, NJ +07458 : 41.054568 : -74.09616 : Saddle River, NJ +07460 : 41.091254 : -74.52081 : Stockholm, NJ +07461 : 41.229754 : -74.60203 : Sussex, NJ +07462 : 41.193708 : -74.5089 : Vernon, NJ +07463 : 41.013109 : -74.12231 : Waldwick, NJ +07465 : 41.052958 : -74.28236 : Wanaque, NJ +07470 : 40.943608 : -74.25004 : Wayne, NJ +07474 : 41.011428 : -74.304793 : Wayne, NJ +07477 : 41.011428 : -74.304793 : Wayne, NJ +07480 : 41.102569 : -74.37047 : West Milford, NJ +07481 : 40.998583 : -74.1671 : Wyckoff, NJ +07495 : 40.948054 : -74.083231 : Mahwah, NJ +07498 : 40.948054 : -74.083231 : Mahwah, NJ +07501 : 40.912198 : -74.16863 : Paterson, NJ +07502 : 40.918948 : -74.1939 : Paterson, NJ +07503 : 40.896798 : -74.15731 : Paterson, NJ +07504 : 40.912148 : -74.14271 : Paterson, NJ +07505 : 40.916165 : -74.17129 : Paterson, NJ +07506 : 40.957498 : -74.15627 : Hawthorne, NJ +07507 : 41.011428 : -74.304793 : Hawthorne, NJ +07508 : 40.945198 : -74.18286 : Haledon, NJ +07509 : 41.011428 : -74.304793 : Paterson, NJ +07510 : 41.011428 : -74.304793 : Paterson, NJ +07511 : 41.011428 : -74.304793 : Totowa, NJ +07512 : 40.903348 : -74.21763 : Totowa, NJ +07513 : 40.906598 : -74.14944 : Paterson, NJ +07514 : 40.923648 : -74.14321 : Paterson, NJ +07522 : 40.925778 : -74.17784 : Paterson, NJ +07524 : 40.930398 : -74.15829 : Paterson, NJ +07530 : 41.011428 : -74.304793 : Paterson, NJ +07533 : 41.011428 : -74.304793 : Paterson, NJ +07538 : 41.011428 : -74.304793 : Haledon, NJ +07543 : 41.011428 : -74.304793 : Paterson, NJ +07544 : 41.011428 : -74.304793 : Paterson, NJ +07571 : 40.899873 : -74.23019 : Totowa, NJ +07601 : 40.888678 : -74.0488 : Hackensack, NJ +07602 : 40.948054 : -74.083231 : Hackensack, NJ +07603 : 40.873876 : -74.02769 : Bogota, NJ +07604 : 40.86289 : -74.07506 : Hasbrouck Heights, NJ +07605 : 40.862685 : -73.98551 : Leonia, NJ +07606 : 40.863699 : -74.04643 : South Hackensack, NJ +07607 : 40.90503 : -74.06279 : Maywood, NJ +07608 : 40.853723 : -74.05987 : Teterboro, NJ +07610 : 40.951348 : -74.041234 : Oradell, NJ +07620 : 40.952814 : -73.93064 : Alpine, NJ +07621 : 40.923748 : -73.99879 : Bergenfield, NJ +07624 : 40.971956 : -73.96166 : Closter, NJ +07626 : 40.942074 : -73.96504 : Cresskill, NJ +07627 : 40.955603 : -73.96044 : Demarest, NJ +07628 : 40.945173 : -73.99342 : Dumont, NJ +07630 : 40.97514 : -74.02725 : Emerson, NJ +07631 : 40.893343 : -73.9758 : Englewood, NJ +07632 : 40.883749 : -73.95173 : Englewood Cliffs, NJ +07640 : 40.989357 : -73.97958 : Harrington Park, NJ +07641 : 40.958573 : -73.98659 : Haworth, NJ +07642 : 41.007389 : -74.04247 : Hillsdale, NJ +07643 : 40.850621 : -74.04112 : Little Ferry, NJ +07644 : 40.877999 : -74.08265 : Lodi, NJ +07645 : 41.048997 : -74.04052 : Montvale, NJ +07646 : 40.936211 : -74.0188 : New Milford, NJ +07647 : 41.009414 : -73.94849 : Northvale, NJ +07648 : 40.994442 : -73.95586 : Norwood, NJ +07649 : 40.953126 : -74.03379 : Oradell, NJ +07650 : 40.845742 : -73.99479 : Palisades Park, NJ +07652 : 40.947107 : -74.07047 : Paramus, NJ +07653 : 40.948054 : -74.083231 : Paramus, NJ +07656 : 41.034672 : -74.04065 : Park Ridge, NJ +07657 : 40.832421 : -74.00399 : Ridgefield, NJ +07660 : 40.856749 : -74.02278 : Ridgefield Park, NJ +07661 : 40.927579 : -74.03739 : River Edge, NJ +07662 : 40.906553 : -74.07797 : Rochelle Park, NJ +07663 : 40.904131 : -74.09474 : Saddle Brook, NJ +07666 : 40.890964 : -74.01115 : Teaneck, NJ +07670 : 40.92169 : -73.96482 : Tenafly, NJ +07675 : 40.99904 : -74.03291 : Westwood, NJ +07676 : 40.989508 : -74.061302 : Ho-Ho-Kus, NJ +07677 : 41.025101 : -74.059762 : Woodcliff Lake, NJ +07688 : 40.948054 : -74.083231 : Teaneck, NJ +07701 : 40.352953 : -74.07703 : Red Bank, NJ +07702 : 40.329128 : -74.06315 : Shrewsbury, NJ +07703 : 40.309121 : -74.0486 : Fort Monmouth, NJ +07704 : 40.360581 : -74.03738 : Fair Haven, NJ +07709 : 40.302718 : -74.24928 : Allenhurst, NJ +07710 : 40.302718 : -74.24928 : Adelphia, NJ +07711 : 40.236916 : -74.0069 : Allenhurst, NJ +07712 : 40.232713 : -74.03143 : Asbury Park, NJ +07715 : 40.302718 : -74.24928 : Belmar, NJ +07716 : 40.407958 : -74.03483 : Atlantic Highlands, NJ +07717 : 40.191809 : -74.01688 : Avon By The Sea, NJ +07718 : 40.415902 : -74.08689 : Belford, NJ +07719 : 40.175357 : -74.04694 : Belmar, NJ +07720 : 40.202113 : -74.01353 : Bradley Beach, NJ +07721 : 40.435961 : -74.23734 : Cliffwood, NJ +07722 : 40.300226 : -74.18306 : Colts Neck, NJ +07723 : 40.250104 : -74.00153 : Deal, NJ +07724 : 40.301979 : -74.06889 : Eatontown, NJ +07726 : 40.294244 : -74.34213 : Englishtown, NJ +07727 : 40.205367 : -74.15767 : Farmingdale, NJ +07728 : 40.241036 : -74.27629 : Freehold, NJ +07730 : 40.423298 : -74.179 : Hazlet, NJ +07731 : 40.146597 : -74.20815 : Howell, NJ +07732 : 40.404474 : -73.9904 : Highlands, NJ +07733 : 40.384832 : -74.17194 : Holmdel, NJ +07734 : 40.444407 : -74.13298 : Keansburg, NJ +07735 : 40.439714 : -74.19374 : Keyport, NJ +07737 : 40.416772 : -74.06058 : Leonardo, NJ +07738 : 40.337374 : -74.12059 : Lincroft, NJ +07739 : 40.33517 : -74.04059 : Little Silver, NJ +07740 : 40.297932 : -73.99097 : Long Branch, NJ +07746 : 40.316876 : -74.26112 : Marlboro, NJ +07747 : 40.411102 : -74.23767 : Matawan, NJ +07748 : 40.410213 : -74.11718 : Middletown, NJ +07750 : 40.332877 : -73.97986 : Monmouth Beach, NJ +07751 : 40.361014 : -74.26595 : Morganville, NJ +07752 : 40.402277 : -74.027285 : Navesink, NJ +07753 : 40.208945 : -74.05261 : Neptune, NJ +07754 : 40.302718 : -74.24928 : Neptune, NJ +07755 : 40.263575 : -74.02176 : Oakhurst, NJ +07756 : 40.211982 : -74.00916 : Ocean Grove, NJ +07757 : 40.318115 : -74.01239 : Oceanport, NJ +07758 : 40.427561 : -74.1069 : Port Monmouth, NJ +07760 : 40.369145 : -73.99576 : Rumson, NJ +07762 : 40.153024 : -74.03372 : Spring Lake, NJ +07763 : 40.302718 : -74.24928 : Tennent, NJ +07764 : 40.289985 : -74.01671 : West Long Branch, NJ +07765 : 40.302718 : -74.24928 : Wickatunk, NJ +07777 : 40.302718 : -74.24928 : Holmdel, NJ +07799 : 40.302718 : -74.24928 : Eatontown, NJ +07801 : 40.889166 : -74.55462 : Dover, NJ +07802 : 40.867331 : -74.578269 : Dover, NJ +07803 : 40.878785 : -74.60098 : Mine Hill, NJ +07806 : 40.867331 : -74.578269 : Picatinny Arsenal, NJ +07819 : 41.162053 : -74.580886 : Hardyston, NJ +07820 : 40.869648 : -74.849661 : Allamuchy, NJ +07821 : 40.966308 : -74.74298 : Andover, NJ +07822 : 41.139545 : -74.6993 : Augusta, NJ +07823 : 40.82383 : -75.04585 : Belvidere, NJ +07825 : 40.96035 : -74.96243 : Blairstown, NJ +07826 : 41.177457 : -74.75904 : Branchville, NJ +07827 : 41.300062 : -74.76058 : Montague, NJ +07828 : 40.878198 : -74.73875 : Budd Lake, NJ +07829 : 40.84335 : -74.985914 : Buttzville, NJ +07830 : 40.723778 : -74.81866 : Califon, NJ +07831 : 40.739382 : -74.944756 : Changewater, NJ +07832 : 40.92976 : -75.06193 : Columbia, NJ +07833 : 40.895451 : -75.06752 : Delaware, NJ +07834 : 40.886149 : -74.48704 : Denville, NJ +07836 : 40.84405 : -74.70134 : Flanders, NJ +07837 : 41.12831 : -74.678956 : Glasser, NJ +07838 : 40.886474 : -74.90089 : Great Meadows, NJ +07839 : 41.12831 : -74.678956 : Greendell, NJ +07840 : 40.861748 : -74.83054 : Hackettstown, NJ +07841 : 40.863567 : -74.869538 : Great Meadows-Vienna, NJ +07842 : 40.940301 : -74.49617 : Hibernia, NJ +07843 : 40.937206 : -74.66147 : Hopatcong, NJ +07844 : 40.919658 : -74.984628 : Hope, NJ +07845 : 40.867331 : -74.578269 : Ironia, NJ +07846 : 40.966266 : -74.87979 : Johnsonburg, NJ +07847 : 40.88038 : -74.62009 : Kenvil, NJ +07848 : 41.094159 : -74.69036 : Lafayette, NJ +07849 : 40.963959 : -74.61414 : Lake Hopatcong, NJ +07850 : 40.908198 : -74.65749 : Landing, NJ +07851 : 41.172968 : -74.88301 : Layton, NJ +07852 : 40.876349 : -74.65769 : Ledgewood, NJ +07853 : 40.788599 : -74.78295 : Long Valley, NJ +07855 : 41.12831 : -74.678956 : Middleville, NJ +07856 : 40.919498 : -74.63559 : Mount Arlington, NJ +07857 : 40.897398 : -74.70301 : Netcong, NJ +07860 : 41.0714 : -74.80199 : Newton, NJ +07863 : 40.815107 : -74.96802 : Oxford, NJ +07865 : 40.783175 : -74.90934 : Port Murray, NJ +07866 : 40.926798 : -74.50624 : Rockaway, NJ +07869 : 40.847649 : -74.5748 : Randolph, NJ +07870 : 40.810362 : -74.819318 : Schooleys Mountain, NJ +07871 : 41.035384 : -74.63557 : Sparta, NJ +07874 : 40.917054 : -74.71053 : Stanhope, NJ +07875 : 41.043858 : -74.871981 : Stillwater, NJ +07876 : 40.855549 : -74.65251 : Succasunna, NJ +07877 : 41.10289 : -74.850759 : Swartswood, NJ +07878 : 40.872866 : -74.47843 : Mount Tabor, NJ +07879 : 40.955934 : -74.788108 : Tranquility, NJ +07880 : 40.864844 : -74.897002 : Vienna, NJ +07881 : 41.125646 : -74.917711 : Wallpack Center, NJ +07882 : 40.753753 : -74.99617 : Washington, NJ +07885 : 40.913298 : -74.58246 : Wharton, NJ +07890 : 41.12831 : -74.678956 : Branchville, NJ +07901 : 40.714501 : -74.3633 : Summit, NJ +07902 : 40.665651 : -74.299692 : Summit, NJ +07919 : 41.152239 : -74.581948 : Hardyston, NJ +07920 : 40.6789 : -74.57039 : Basking Ridge, NJ +07921 : 40.652301 : -74.653 : Bedminster, NJ +07922 : 40.675112 : -74.43459 : Berkeley Heights, NJ +07924 : 40.72344 : -74.57753 : Bernardsville, NJ +07926 : 40.800353 : -74.571785 : Brookside, NJ +07927 : 40.821149 : -74.45121 : Cedar Knolls, NJ +07928 : 40.7332 : -74.39736 : Chatham, NJ +07930 : 40.786549 : -74.68799 : Chester, NJ +07931 : 40.696601 : -74.63781 : Far Hills, NJ +07932 : 40.77835 : -74.39009 : Florham Park, NJ +07933 : 40.683934 : -74.47079 : Gillette, NJ +07934 : 40.72265 : -74.67432 : Gladstone, NJ +07935 : 40.739333 : -74.45631 : Green Village, NJ +07936 : 40.820012 : -74.36474 : East Hanover, NJ +07938 : 40.655399 : -74.586151 : Liberty Corner, NJ +07939 : 40.566553 : -74.599801 : Lyons, NJ +07940 : 40.75875 : -74.41609 : Madison, NJ +07945 : 40.782767 : -74.59529 : Mendham, NJ +07946 : 40.672823 : -74.52011 : Millington, NJ +07950 : 40.842399 : -74.48223 : Morris Plains, NJ +07952 : 40.733863 : -74.585653 : Bernardsville, NJ +07960 : 40.79215 : -74.48559 : Morristown, NJ +07961 : 40.77975 : -74.442797 : Morristown, NJ +07962 : 40.867331 : -74.578269 : Morristown, NJ +07963 : 40.867331 : -74.578269 : Morristown, NJ +07969 : 40.631652 : -74.454547 : Watchung, NJ +07970 : 40.813281 : -74.57267 : Mount Freedom, NJ +07974 : 40.698268 : -74.40225 : New Providence, NJ +07976 : 40.733739 : -74.48851 : New Vernon, NJ +07977 : 40.707505 : -74.65657 : Peapack, NJ +07978 : 40.642491 : -74.639597 : Pluckemin, NJ +07979 : 40.713675 : -74.72465 : Pottersville, NJ +07980 : 40.672968 : -74.49171 : Stirling, NJ +07981 : 40.821482 : -74.42648 : Whippany, NJ +07983 : 40.867331 : -74.578269 : Whippany, NJ +07997 : 40.728195 : -74.665549 : Peapack and Gladstone, NJ +07999 : 40.867331 : -74.578269 : Whippany, NJ +08001 : 39.559426 : -75.3631 : Alloway, NJ +08002 : 39.932279 : -75.02266 : Cherry Hill, NJ +08003 : 39.879713 : -74.9719 : Cherry Hill, NJ +08004 : 39.769357 : -74.87264 : Atco, NJ +08005 : 39.759581 : -74.27398 : Barnegat, NJ +08006 : 39.75196 : -74.11074 : Barnegat Light, NJ +08007 : 39.868013 : -75.05424 : Barrington, NJ +08008 : 39.614596 : -74.2005 : Beach Haven, NJ +08009 : 39.779582 : -74.9365 : Berlin, NJ +08010 : 40.058211 : -74.91404 : Beverly, NJ +08011 : 39.978635 : -74.71323 : Birmingham, NJ +08012 : 39.784614 : -75.05678 : Blackwood, NJ +08014 : 39.803646 : -75.34421 : Bridgeport, NJ +08015 : 39.960596 : -74.5606 : Browns Mills, NJ +08016 : 40.06834 : -74.84463 : Burlington, NJ +08017 : 39.574175 : -74.719502 : Elwood-Magnolia, NJ +08018 : 39.80237 : -74.938259 : Cedar Brook, NJ +08019 : 39.777314 : -74.5354 : Chatsworth, NJ +08020 : 39.800958 : -75.2211 : Clarksboro, NJ +08021 : 39.810485 : -74.99574 : Clementon, NJ +08022 : 40.079952 : -74.70684 : Columbus, NJ +08023 : 39.683577 : -75.48932 : Deepwater, NJ +08025 : 39.701526 : -75.162903 : Ewan, NJ +08026 : 39.833847 : -74.96899 : Gibbsboro, NJ +08027 : 39.824159 : -75.28187 : Gibbstown, NJ +08028 : 39.700008 : -75.11951 : Glassboro, NJ +08029 : 39.840463 : -75.0687 : Glendora, NJ +08030 : 39.891113 : -75.11836 : Gloucester City, NJ +08031 : 39.867013 : -75.09162 : Bellmawr, NJ +08032 : 39.781264 : -75.0609 : Grenloch, NJ +08033 : 39.895213 : -75.04019 : Haddonfield, NJ +08034 : 39.908613 : -74.99951 : Cherry Hill, NJ +08035 : 39.87913 : -75.06599 : Haddon Heights, NJ +08036 : 39.985662 : -74.83044 : Hainesport, NJ +08037 : 39.625291 : -74.77705 : Hammonton, NJ +08038 : 39.481009 : -75.50618 : Hancocks Bridge, NJ +08039 : 39.685445 : -75.2669 : Harrisonville, NJ +08041 : 40.038339 : -74.6806 : Jobstown, NJ +08042 : 40.018503 : -74.66656 : Juliustown, NJ +08043 : 39.851969 : -74.96128 : Voorhees, NJ +08045 : 39.866513 : -75.03197 : Lawnside, NJ +08046 : 40.029011 : -74.88257 : Willingboro, NJ +08048 : 39.967013 : -74.80666 : Lumberton, NJ +08049 : 39.85478 : -75.03671 : Magnolia, NJ +08050 : 39.707575 : -74.25933 : Manahawkin, NJ +08051 : 39.785785 : -75.17761 : Mantua, NJ +08052 : 39.952212 : -74.99464 : Maple Shade, NJ +08053 : 39.88488 : -74.90416 : Marlton, NJ +08054 : 39.949446 : -74.90342 : Mount Laurel, NJ +08055 : 39.865272 : -74.8185 : Medford, NJ +08056 : 39.785219 : -75.25304 : Mickleton, NJ +08057 : 39.968962 : -74.9489 : Moorestown, NJ +08059 : 39.884263 : -75.0923 : Mount Ephraim, NJ +08060 : 39.991562 : -74.79747 : Mount Holly, NJ +08061 : 39.807684 : -75.20496 : Mount Royal, NJ +08062 : 39.716939 : -75.21987 : Mullica Hill, NJ +08063 : 39.867158 : -75.1802 : National Park, NJ +08064 : 39.961921 : -74.63687 : New Lisbon, NJ +08065 : 40.00278 : -75.02626 : Palmyra, NJ +08066 : 39.833156 : -75.23773 : Paulsboro, NJ +08067 : 39.740353 : -75.41262 : Pedricktown, NJ +08068 : 39.961183 : -74.66266 : Pemberton, NJ +08069 : 39.712593 : -75.46906 : Penns Grove, NJ +08070 : 39.645377 : -75.51923 : Pennsville, NJ +08071 : 39.730964 : -75.13009 : Pitman, NJ +08072 : 39.546172 : -75.41367 : Quinton, NJ +08073 : 40.010461 : -74.86762 : Rancocas, NJ +08074 : 39.716194 : -75.17326 : Richwood, NJ +08075 : 40.029361 : -74.9541 : Riverside, NJ +08076 : 39.862433 : -74.725079 : Riverton, NJ +08077 : 39.997379 : -74.99805 : Riverton, NJ +08078 : 39.850013 : -75.0767 : Runnemede, NJ +08079 : 39.549912 : -75.43943 : Salem, NJ +08080 : 39.74953 : -75.10637 : Sewell, NJ +08081 : 39.741385 : -74.99035 : Sicklerville, NJ +08083 : 39.842613 : -75.02496 : Somerdale, NJ +08084 : 39.829014 : -75.01371 : Stratford, NJ +08085 : 39.753088 : -75.32687 : Swedesboro, NJ +08086 : 39.849156 : -75.18159 : Thorofare, NJ +08087 : 39.59899 : -74.36573 : Tuckerton, NJ +08088 : 39.871699 : -74.70528 : Vincentown, NJ +08089 : 39.722622 : -74.8503 : Waterford Works, NJ +08090 : 39.799347 : -75.15202 : Wenonah, NJ +08091 : 39.807695 : -74.93392 : West Berlin, NJ +08092 : 39.658781 : -74.28673 : West Creek, NJ +08093 : 39.861413 : -75.13284 : Westville, NJ +08094 : 39.647598 : -74.95927 : Williamstown, NJ +08095 : 39.656976 : -74.86043 : Winslow, NJ +08096 : 39.830313 : -75.13221 : Woodbury, NJ +08097 : 39.816063 : -75.15321 : Woodbury Heights, NJ +08098 : 39.637838 : -75.32396 : Woodstown, NJ +08099 : 39.779179 : -74.962071 : Bellmawr, NJ +08101 : 39.80237 : -74.938259 : Camden, NJ +08102 : 39.949579 : -75.118 : Camden, NJ +08103 : 39.936179 : -75.11513 : Camden, NJ +08104 : 39.918663 : -75.10976 : Camden, NJ +08105 : 39.949812 : -75.08616 : Camden, NJ +08106 : 39.892213 : -75.07212 : Audubon, NJ +08107 : 39.908163 : -75.08618 : Oaklyn, NJ +08108 : 39.915263 : -75.06401 : Collingswood, NJ +08109 : 39.949979 : -75.05024 : Merchantville, NJ +08110 : 39.966812 : -75.05681 : Pennsauken, NJ +08201 : 39.457517 : -74.50914 : Absecon, NJ +08202 : 39.092928 : -74.72688 : Avalon, NJ +08203 : 39.401801 : -74.38017 : Brigantine, NJ +08204 : 38.963652 : -74.92319 : Cape May, NJ +08205 : 39.471263 : -74.502457 : Absecon, NJ +08210 : 39.081754 : -74.83658 : Cape May Court House, NJ +08212 : 38.936896 : -74.96526 : Cape May Point, NJ +08213 : 39.509208 : -74.608557 : Cologne, NJ +08214 : 39.056521 : -74.816619 : Dennisville, NJ +08215 : 39.548049 : -74.62171 : Egg Harbor City, NJ +08217 : 39.575273 : -74.72103 : Elwood, NJ +08218 : 39.056521 : -74.816619 : Goshen, NJ +08219 : 39.056521 : -74.816619 : Green Creek, NJ +08220 : 39.509208 : -74.608557 : Leeds Point, NJ +08221 : 39.348616 : -74.57387 : Linwood, NJ +08223 : 39.264412 : -74.64986 : Marmora, NJ +08224 : 39.595957 : -74.45628 : New Gretna, NJ +08225 : 39.370083 : -74.55211 : Northfield, NJ +08226 : 39.265371 : -74.59381 : Ocean City, NJ +08227 : 39.588665 : -74.466214 : Bass River, NJ +08230 : 39.20877 : -74.70438 : Ocean View, NJ +08231 : 39.509208 : -74.608557 : Oceanville, NJ +08232 : 39.394616 : -74.52212 : Pleasantville, NJ +08234 : 39.398172 : -74.59667 : Egg Harbor Township, NJ +08237 : 39.258089 : -74.974344 : Maurice River, NJ +08240 : 39.487717 : -74.554334 : Pomona, NJ +08241 : 39.527903 : -74.4917 : Port Republic, NJ +08242 : 39.017837 : -74.87515 : Rio Grande, NJ +08243 : 39.145755 : -74.69865 : Sea Isle City, NJ +08244 : 39.319901 : -74.5999 : Somers Point, NJ +08245 : 39.176208 : -74.81723 : South Dennis, NJ +08246 : 39.056521 : -74.816619 : South Seaville, NJ +08247 : 39.051289 : -74.76204 : Stone Harbor, NJ +08248 : 39.197394 : -74.65699 : Strathmere, NJ +08250 : 39.056521 : -74.816619 : Tuckahoe, NJ +08251 : 39.022256 : -74.93616 : Villas, NJ +08252 : 39.037404 : -74.85749 : Whitesboro, NJ +08253 : 39.458714 : -75.298235 : Shiloh, NJ +08260 : 38.987556 : -74.822 : Wildwood, NJ +08270 : 39.275059 : -74.80041 : Woodbine, NJ +08283 : 39.16076 : -74.696498 : Sea Isle City, NJ +08302 : 39.445164 : -75.24215 : Bridgeton, NJ +08310 : 39.522686 : -74.89684 : Buena, NJ +08311 : 39.337205 : -75.18577 : Cedarville, NJ +08312 : 39.655964 : -75.08736 : Clayton, NJ +08313 : 39.530314 : -75.22901 : Deerfield Street, NJ +08314 : 39.219301 : -74.94016 : Delmont, NJ +08315 : 39.273214 : -75.095025 : Dividing Creek, NJ +08316 : 39.274714 : -74.97546 : Dorchester, NJ +08317 : 39.406518 : -74.82706 : Dorothy, NJ +08318 : 39.553504 : -75.16843 : Elmer, NJ +08319 : 39.376099 : -74.81456 : Estell Manor, NJ +08320 : 39.379906 : -75.221681 : Fairton, NJ +08321 : 39.239649 : -75.17225 : Fortescue, NJ +08322 : 39.618222 : -75.0618 : Franklinville, NJ +08323 : 39.402763 : -75.3574 : Greenwich, NJ +08324 : 39.218484 : -74.99001 : Heislerville, NJ +08326 : 39.524179 : -74.9385 : Landisville, NJ +08327 : 39.254836 : -74.97767 : Leesburg, NJ +08328 : 39.572449 : -75.0543 : Malaga, NJ +08329 : 39.285464 : -74.99687 : Mauricetown, NJ +08330 : 39.478771 : -74.7581 : Mays Landing, NJ +08332 : 39.379382 : -75.03923 : Millville, NJ +08334 : 39.241686 : -75.17465 : Downe, NJ +08340 : 39.437265 : -74.87926 : Milmay, NJ +08341 : 39.517539 : -74.94972 : Minotola, NJ +08342 : 39.50208 : -74.833469 : Mizpah, NJ +08343 : 39.633964 : -75.15643 : Monroeville, NJ +08344 : 39.562763 : -75.00955 : Newfield, NJ +08345 : 39.28341 : -75.15464 : Newport, NJ +08346 : 39.562719 : -74.85853 : Newtonville, NJ +08347 : 39.499765 : -75.082022 : Norma, NJ +08348 : 39.314084 : -74.97889 : Port Elizabeth, NJ +08349 : 39.25682 : -75.06683 : Port Norris, NJ +08350 : 39.490774 : -74.87045 : Richland, NJ +08352 : 39.475565 : -75.12933 : Rosenhayn, NJ +08353 : 39.458114 : -75.29761 : Shiloh, NJ +08360 : 39.492265 : -75.01887 : Vineland, NJ +08361 : 39.464582 : -74.96994 : Vineland, NJ +08362 : 39.271264 : -75.027671 : Vineland, NJ +08370 : 39.862433 : -74.725079 : Riverside, NJ +08401 : 39.364966 : -74.43903 : Atlantic City, NJ +08402 : 39.329416 : -74.50661 : Margate City, NJ +08403 : 39.314766 : -74.52675 : Longport, NJ +08404 : 39.509208 : -74.608557 : Atlantic City, NJ +08405 : 39.509208 : -74.608557 : Atlantic City, NJ +08406 : 39.342299 : -74.48192 : Ventnor City, NJ +08501 : 40.164556 : -74.57785 : Allentown, NJ +08502 : 40.460137 : -74.63592 : Belle Mead, NJ +08504 : 40.425369 : -74.668753 : Blawenburg, NJ +08505 : 40.132784 : -74.71778 : Bordentown, NJ +08510 : 40.18238 : -74.42134 : Clarksburg, NJ +08511 : 40.050128 : -74.55611 : Cookstown, NJ +08512 : 40.306286 : -74.52627 : Cranbury, NJ +08514 : 40.134892 : -74.48688 : Cream Ridge, NJ +08515 : 40.14821 : -74.65125 : Crosswicks, NJ +08518 : 40.11791 : -74.8047 : Florence, NJ +08520 : 40.262809 : -74.53246 : Hightstown, NJ +08525 : 40.386902 : -74.78112 : Hopewell, NJ +08526 : 40.162275 : -74.475936 : Imlaystown, NJ +08527 : 40.11597 : -74.32251 : Jackson, NJ +08528 : 40.377173 : -74.61538 : Kingston, NJ +08530 : 40.375039 : -74.93184 : Lambertville, NJ +08533 : 40.075185 : -74.48433 : New Egypt, NJ +08534 : 40.32315 : -74.78364 : Pennington, NJ +08535 : 40.228497 : -74.45064 : Perrineville, NJ +08536 : 40.33371 : -74.58512 : Plainsboro, NJ +08540 : 40.357439 : -74.64922 : Princeton, NJ +08541 : 40.280531 : -74.712018 : Princeton, NJ +08542 : 40.354424 : -74.65943 : Princeton, NJ +08543 : 40.280531 : -74.712018 : Princeton, NJ +08544 : 40.349206 : -74.652811 : Princeton, NJ +08550 : 40.292358 : -74.60902 : Princeton Junction, NJ +08551 : 40.449171 : -74.84979 : Ringoes, NJ +08553 : 40.400406 : -74.63895 : Rocky Hill, NJ +08554 : 40.113883 : -74.77977 : Roebling, NJ +08555 : 40.22142 : -74.47378 : Roosevelt, NJ +08556 : 40.419965 : -74.988619 : Rosemont, NJ +08557 : 40.563654 : -74.949409 : Sergeantsville, NJ +08558 : 40.410155 : -74.70726 : Skillman, NJ +08559 : 40.435878 : -74.96511 : Stockton, NJ +08560 : 40.31049 : -74.85947 : Titusville, NJ +08561 : 40.242009 : -74.58006 : Windsor, NJ +08562 : 40.062215 : -74.58893 : Wrightstown, NJ +08570 : 40.430006 : -74.417344 : Cranbury, NJ +08601 : 40.280531 : -74.712018 : Trenton, NJ +08602 : 40.280531 : -74.712018 : Trenton, NJ +08603 : 40.280531 : -74.712018 : Trenton, NJ +08604 : 40.280531 : -74.712018 : Trenton, NJ +08605 : 40.280531 : -74.712018 : Trenton, NJ +08606 : 40.280531 : -74.712018 : Trenton, NJ +08607 : 40.280531 : -74.712018 : Trenton, NJ +08608 : 40.219158 : -74.76481 : Trenton, NJ +08609 : 40.224441 : -74.7421 : Trenton, NJ +08610 : 40.199859 : -74.72005 : Trenton, NJ +08611 : 40.206959 : -74.75136 : Trenton, NJ +08618 : 40.238258 : -74.7805 : Trenton, NJ +08619 : 40.240558 : -74.69588 : Trenton, NJ +08620 : 40.17296 : -74.66915 : Trenton, NJ +08625 : 40.206709 : -74.75643 : Trenton, NJ +08628 : 40.264708 : -74.82295 : Trenton, NJ +08629 : 40.219358 : -74.73334 : Trenton, NJ +08638 : 40.249908 : -74.75953 : Trenton, NJ +08640 : 40.003861 : -74.61775 : Trenton, NJ +08641 : 40.04492 : -74.58916 : Trenton, NJ +08645 : 40.280531 : -74.712018 : Trenton, NJ +08646 : 40.280531 : -74.712018 : Trenton, NJ +08647 : 40.280531 : -74.712018 : Trenton, NJ +08648 : 40.276782 : -74.72951 : Trenton, NJ +08650 : 40.280531 : -74.712018 : Trenton, NJ +08666 : 40.280531 : -74.712018 : Trenton, NJ +08677 : 40.280531 : -74.712018 : Trenton, NJ +08690 : 40.225409 : -74.65918 : Trenton, NJ +08691 : 40.207034 : -74.59364 : Trenton, NJ +08695 : 40.280531 : -74.712018 : Trenton, NJ +08701 : 40.082782 : -74.2094 : Lakewood, NJ +08720 : 40.14386 : -74.10286 : Allenwood, NJ +08721 : 39.902851 : -74.16037 : Bayville, NJ +08722 : 39.931068 : -74.19618 : Beachwood, NJ +08723 : 40.042479 : -74.123 : Brick, NJ +08724 : 40.087794 : -74.10981 : Brick, NJ +08730 : 40.108433 : -74.06226 : Brielle, NJ +08731 : 39.848035 : -74.21297 : Forked River, NJ +08732 : 39.942616 : -74.14689 : Island Heights, NJ +08733 : 40.017117 : -74.30491 : Lakehurst, NJ +08734 : 39.862864 : -74.16624 : Lanoka Harbor, NJ +08735 : 39.982101 : -74.06768 : Lavallette, NJ +08736 : 40.120261 : -74.05765 : Manasquan, NJ +08738 : 40.025258 : -74.05579 : Mantoloking, NJ +08739 : 40.000759 : -74.24928 : Normandy Beach, NJ +08740 : 39.925301 : -74.13488 : Ocean Gate, NJ +08741 : 39.934318 : -74.16773 : Pine Beach, NJ +08742 : 40.081165 : -74.06003 : Point Pleasant Beach, NJ +08750 : 40.133754 : -74.04123 : Sea Girt, NJ +08751 : 39.948518 : -74.0759 : Seaside Heights, NJ +08752 : 39.920268 : -74.07967 : Seaside Park, NJ +08753 : 39.974584 : -74.15141 : Toms River, NJ +08754 : 40.000759 : -74.24928 : Toms River, NJ +08755 : 40.010092 : -74.23032 : Toms River, NJ +08756 : 39.787966 : -74.191058 : Toms River, NJ +08757 : 39.975967 : -74.25296 : Toms River, NJ +08758 : 39.784513 : -74.22376 : Waretown, NJ +08759 : 39.943541 : -74.36949 : Whiting, NJ +08792 : 39.907488 : -74.081074 : Berkeley, NJ +08801 : 40.624538 : -74.89118 : Annandale, NJ +08802 : 40.661172 : -75.0321 : Asbury, NJ +08803 : 40.563654 : -74.949409 : Baptistown, NJ +08804 : 40.652484 : -75.08959 : Bloomsbury, NJ +08805 : 40.567953 : -74.54034 : Bound Brook, NJ +08807 : 40.588097 : -74.62253 : Bridgewater, NJ +08808 : 40.737213 : -75.046926 : Broadway, NJ +08809 : 40.639546 : -74.91292 : Clinton, NJ +08810 : 40.372881 : -74.51363 : Dayton, NJ +08812 : 40.594502 : -74.47166 : Dunellen, NJ +08816 : 40.434239 : -74.40504 : East Brunswick, NJ +08817 : 40.516104 : -74.39754 : Edison, NJ +08818 : 40.430006 : -74.417344 : Edison, NJ +08820 : 40.575503 : -74.35781 : Edison, NJ +08821 : 40.518578 : -74.68545 : Flagtown, NJ +08822 : 40.515645 : -74.85319 : Flemington, NJ +08823 : 40.439412 : -74.55565 : Franklin Park, NJ +08824 : 40.423055 : -74.55352 : Kendall Park, NJ +08825 : 40.509998 : -75.03239 : Frenchtown, NJ +08826 : 40.716332 : -74.91405 : Glen Gardner, NJ +08827 : 40.677404 : -74.96875 : Hampton, NJ +08828 : 40.37594 : -74.41955 : Helmetta, NJ +08829 : 40.668594 : -74.89241 : High Bridge, NJ +08830 : 40.571504 : -74.3183 : Iselin, NJ +08831 : 40.336508 : -74.43302 : Jamesburg, NJ +08832 : 40.517855 : -74.30325 : Keasbey, NJ +08833 : 40.643314 : -74.82345 : Lebanon, NJ +08834 : 40.563654 : -74.949409 : Little York, NJ +08835 : 40.538903 : -74.59222 : Manville, NJ +08836 : 40.595552 : -74.55174 : Martinsville, NJ +08837 : 40.529355 : -74.33844 : Edison, NJ +08840 : 40.543354 : -74.3587 : Metuchen, NJ +08844 : 40.502477 : -74.650023 : Millstone, NJ +08846 : 40.574552 : -74.50187 : Middlesex, NJ +08848 : 40.587606 : -75.10402 : Milford, NJ +08850 : 40.451105 : -74.43938 : Milltown, NJ +08851 : 40.436394 : -74.884741 : East Amwell, NJ +08852 : 40.389428 : -74.54329 : Monmouth Junction, NJ +08853 : 40.51057 : -74.72472 : Neshanic Station, NJ +08854 : 40.555355 : -74.46094 : Piscataway, NJ +08855 : 40.430006 : -74.417344 : Piscataway, NJ +08857 : 40.397507 : -74.3298 : Old Bridge, NJ +08858 : 40.681694 : -74.73624 : Oldwick, NJ +08859 : 40.461851 : -74.30343 : Parlin, NJ +08861 : 40.520105 : -74.27708 : Perth Amboy, NJ +08862 : 40.430006 : -74.417344 : Perth Amboy, NJ +08863 : 40.535304 : -74.31104 : Fords, NJ +08865 : 40.689123 : -75.17243 : Phillipsburg, NJ +08867 : 40.583035 : -74.96224 : Pittstown, NJ +08868 : 40.565493 : -74.938931 : Quakertown, NJ +08869 : 40.571302 : -74.6374 : Raritan, NJ +08870 : 40.563654 : -74.949409 : Readington, NJ +08871 : 40.430006 : -74.417344 : Sayreville, NJ +08872 : 40.461605 : -74.3474 : Sayreville, NJ +08873 : 40.505253 : -74.50723 : Somerset, NJ +08875 : 40.580918 : -74.711731 : Somerset, NJ +08876 : 40.545853 : -74.63592 : Somerville, NJ +08877 : 40.430006 : -74.417344 : South River, NJ +08878 : 40.436865 : -74.250942 : South Amboy, NJ +08879 : 40.469606 : -74.27669 : South Amboy, NJ +08880 : 40.553803 : -74.52976 : South Bound Brook, NJ +08882 : 40.445006 : -74.38179 : South River, NJ +08884 : 40.39159 : -74.39329 : Spotswood, NJ +08885 : 40.576372 : -74.831105 : Stanton, NJ +08886 : 40.694938 : -75.11181 : Stewartsville, NJ +08887 : 40.525361 : -74.79632 : Three Bridges, NJ +08888 : 40.619412 : -74.740597 : Whitehouse, NJ +08889 : 40.612851 : -74.76682 : Whitehouse Station, NJ +08890 : 40.536069 : -74.578872 : Zarephath, NJ +08896 : 40.566553 : -74.599801 : Raritan, NJ +08899 : 40.520254 : -74.420545 : Edison, NJ +08901 : 40.488304 : -74.44775 : New Brunswick, NJ +08902 : 40.453131 : -74.48287 : North Brunswick, NJ +08903 : 40.513854 : -74.445098 : New Brunswick, NJ +08904 : 40.500254 : -74.4257 : Highland Park, NJ +08905 : 40.430006 : -74.417344 : New Brunswick, NJ +08906 : 40.430006 : -74.417344 : New Brunswick, NJ +08907 : 40.482029 : -74.479547 : New Brunswick, NJ +08922 : 40.430006 : -74.417344 : New Brunswick, NJ +08933 : 40.430006 : -74.417344 : New Brunswick, NJ +08988 : 40.430006 : -74.417344 : New Brunswick, NJ +08989 : 40.430006 : -74.417344 : New Brunswick, NJ +10001 : 40.750742 : -73.99653 : New York, NY +10002 : 40.71704 : -73.987 : New York, NY +10003 : 40.732509 : -73.98935 : New York, NY +10004 : 40.699226 : -74.04118 : New York, NJ +10005 : 40.706019 : -74.00858 : New York, NY +10006 : 40.707904 : -74.01342 : New York, NY +10007 : 40.714754 : -74.00721 : New York, NY +10008 : 40.780751 : -73.977182 : New York, NY +10009 : 40.727093 : -73.97864 : New York, NY +10010 : 40.739022 : -73.98205 : New York, NY +10011 : 40.741012 : -74.00012 : New York, NY +10012 : 40.72596 : -73.99834 : New York, NY +10013 : 40.720666 : -74.00526 : New York, NY +10014 : 40.734718 : -74.00532 : New York, NY +10015 : 40.780751 : -73.977182 : New York, NY +10016 : 40.74618 : -73.97759 : New York, NY +10017 : 40.752159 : -73.97231 : New York, NY +10018 : 40.755101 : -73.99337 : New York, NY +10019 : 40.765714 : -73.9856 : New York, NY +10020 : 40.758667 : -73.98024 : New York, NY +10021 : 40.76842 : -73.96045 : New York, NY +10022 : 40.759015 : -73.96732 : New York, NY +10023 : 40.776099 : -73.98285 : New York, NY +10024 : 40.786387 : -73.97709 : New York, NY +10025 : 40.798502 : -73.96811 : New York, NY +10026 : 40.802853 : -73.95471 : New York, NY +10027 : 40.812665 : -73.95499 : New York, NY +10028 : 40.776777 : -73.9541 : New York, NY +10029 : 40.791586 : -73.94575 : New York, NY +10030 : 40.818151 : -73.94351 : New York, NY +10031 : 40.826201 : -73.94879 : New York, NY +10032 : 40.840686 : -73.94154 : New York, NY +10033 : 40.848764 : -73.93496 : New York, NY +10034 : 40.867653 : -73.92 : New York, NY +10035 : 40.802395 : -73.93359 : New York, NY +10036 : 40.759511 : -73.99019 : New York, NY +10037 : 40.813385 : -73.93616 : New York, NY +10038 : 40.709677 : -74.00365 : New York, NY +10039 : 40.826181 : -73.9371 : New York, NY +10040 : 40.858704 : -73.92853 : New York, NY +10041 : 40.703042 : -74.01009 : New York, NY +10043 : 40.780751 : -73.977182 : New York, NY +10044 : 40.762174 : -73.94917 : New York, NY +10045 : 40.70859 : -74.008687 : New York, NY +10046 : 40.780751 : -73.977182 : New York, NY +10047 : 40.780751 : -73.977182 : New York, NY +10048 : 40.712086 : -74.01227 : New York, NY +10055 : 40.780751 : -73.977182 : New York, NY +10060 : 40.780751 : -73.977182 : New York, NY +10069 : 40.775477 : -73.9905 : New York, NY +10072 : 40.780751 : -73.977182 : New York, NY +10079 : 40.780751 : -73.977182 : New York, NY +10080 : 40.780751 : -73.977182 : New York, NY +10081 : 40.780751 : -73.977182 : New York, NY +10082 : 40.780751 : -73.977182 : New York, NY +10087 : 40.780751 : -73.977182 : New York, NY +10090 : 40.780751 : -73.977182 : New York, NY +10094 : 40.780751 : -73.977182 : New York, NY +10095 : 40.748181 : -73.988421 : New York, NY +10096 : 40.780751 : -73.977182 : New York, NY +10098 : 40.748181 : -73.988421 : New York, NY +10099 : 40.780751 : -73.977182 : New York, NY +10101 : 40.780751 : -73.977182 : New York, NY +10102 : 40.780751 : -73.977182 : New York, NY +10103 : 40.760915 : -73.97785 : New York, NY +10104 : 40.760943 : -73.979908 : New York, NY +10105 : 40.762808 : -73.978534 : New York, NY +10106 : 40.765243 : -73.980438 : New York, NY +10107 : 40.766429 : -73.982728 : New York, NY +10108 : 40.780751 : -73.977182 : New York, NY +10109 : 40.780751 : -73.977182 : New York, NY +10110 : 40.753987 : -73.980811 : New York, NY +10111 : 40.759235 : -73.97775 : New York, NY +10112 : 40.759291 : -73.97979 : New York, NY +10113 : 40.780751 : -73.977182 : New York, NY +10114 : 40.780751 : -73.977182 : New York, NY +10115 : 40.810906 : -73.96375 : New York, NY +10116 : 40.780751 : -73.977182 : New York, NY +10117 : 40.780751 : -73.977182 : New York, NY +10118 : 40.748998 : -73.986467 : New York, NY +10119 : 40.750824 : -73.99289 : New York, NY +10120 : 40.750629 : -73.989426 : New York, NY +10121 : 40.74964 : -73.991889 : New York, NY +10122 : 40.751757 : -73.992171 : New York, NY +10123 : 40.751489 : -73.990537 : New York, NY +10124 : 40.780751 : -73.977182 : New York, NY +10125 : 40.780751 : -73.977182 : New York, NY +10126 : 40.780751 : -73.977182 : New York, NY +10128 : 40.781894 : -73.95039 : New York, NY +10129 : 40.780751 : -73.977182 : New York, NY +10130 : 40.780751 : -73.977182 : New York, NY +10131 : 40.780751 : -73.977182 : New York, NY +10132 : 40.780751 : -73.977182 : New York, NY +10133 : 40.780751 : -73.977182 : New York, NY +10138 : 40.780751 : -73.977182 : New York, NY +10149 : 40.780751 : -73.977182 : New York, NY +10150 : 40.780751 : -73.977182 : New York, NY +10151 : 40.763419 : -73.973971 : New York, NY +10152 : 40.758611 : -73.97223 : New York, NY +10153 : 40.763742 : -73.97268 : New York, NY +10154 : 40.757986 : -73.97267 : New York, NY +10155 : 40.761104 : -73.968036 : New York, NY +10156 : 40.780751 : -73.977182 : New York, NY +10157 : 40.780751 : -73.977182 : New York, NY +10158 : 40.749435 : -73.9758 : New York, NY +10159 : 40.780751 : -73.977182 : New York, NY +10160 : 40.780751 : -73.977182 : New York, NY +10161 : 40.780751 : -73.977182 : New York, NY +10162 : 40.769334 : -73.94893 : New York, NY +10163 : 40.780751 : -73.977182 : New York, NY +10164 : 40.780751 : -73.977182 : New York, NY +10165 : 40.752354 : -73.9789 : New York, NY +10166 : 40.754591 : -73.976238 : New York, NY +10167 : 40.754862 : -73.97495 : New York, NY +10168 : 40.751933 : -73.976794 : New York, NY +10169 : 40.754463 : -73.97606 : New York, NY +10170 : 40.752859 : -73.97608 : New York, NY +10171 : 40.756099 : -73.97401 : New York, NY +10172 : 40.755494 : -73.97447 : New York, NY +10173 : 40.754302 : -73.97955 : New York, NY +10174 : 40.751656 : -73.97516 : New York, NY +10175 : 40.754305 : -73.979782 : New York, NY +10176 : 40.75557 : -73.978877 : New York, NY +10177 : 40.755345 : -73.97609 : New York, NY +10178 : 40.751378 : -73.978507 : New York, NY +10179 : 40.780751 : -73.977182 : New York, NY +10184 : 40.780751 : -73.977182 : New York, NY +10185 : 40.780751 : -73.977182 : New York, NY +10196 : 40.780751 : -73.977182 : New York, NY +10197 : 40.780751 : -73.977182 : New York, NY +10199 : 40.750308 : -74.00058 : New York, NY +10203 : 40.780751 : -73.977182 : New York, NY +10211 : 40.780751 : -73.977182 : New York, NY +10212 : 40.780751 : -73.977182 : New York, NY +10213 : 40.780751 : -73.977182 : New York, NY +10242 : 40.780751 : -73.977182 : New York, NY +10249 : 40.780751 : -73.977182 : New York, NY +10250 : 40.709387 : -74.016529 : New York, NY +10256 : 40.780751 : -73.977182 : New York, NY +10257 : 40.780751 : -73.977182 : New York, NY +10258 : 40.780751 : -73.977182 : New York, NY +10259 : 40.780751 : -73.977182 : New York, NY +10260 : 40.780751 : -73.977182 : New York, NY +10261 : 40.780751 : -73.977182 : New York, NY +10265 : 40.780751 : -73.977182 : New York, NY +10268 : 40.780751 : -73.977182 : New York, NY +10269 : 40.780751 : -73.977182 : New York, NY +10270 : 40.706925 : -74.008154 : New York, NY +10271 : 40.708669 : -74.01043 : New York, NY +10272 : 40.780751 : -73.977182 : New York, NY +10273 : 40.780751 : -73.977182 : New York, NY +10274 : 40.780751 : -73.977182 : New York, NY +10275 : 40.780751 : -73.977182 : New York, NY +10276 : 40.780751 : -73.977182 : New York, NY +10277 : 40.780751 : -73.977182 : New York, NY +10278 : 40.715721 : -74.00395 : New York, NY +10279 : 40.713062 : -74.00857 : New York, NY +10280 : 40.707467 : -74.0178 : New York, NY +10281 : 40.714643 : -74.014958 : New York, NY +10282 : 40.717179 : -74.01433 : New York, NY +10285 : 40.71533 : -74.016306 : New York, NY +10286 : 40.714231 : -74.011895 : New York, NY +10292 : 40.780751 : -73.977182 : New York, NY +10301 : 40.631775 : -74.09432 : Staten Island, NY +10302 : 40.631127 : -74.13715 : Staten Island, NY +10303 : 40.629448 : -74.16239 : Staten Island, NY +10304 : 40.60787 : -74.08991 : Staten Island, NY +10305 : 40.599021 : -74.07503 : Staten Island, NY +10306 : 40.569394 : -74.11785 : Staten Island, NY +10307 : 40.508274 : -74.24387 : Staten Island, NY +10308 : 40.551353 : -74.15098 : Staten Island, NY +10309 : 40.529749 : -74.21304 : Staten Island, NY +10310 : 40.63212 : -74.11551 : Staten Island, NY +10311 : 40.605245 : -74.179485 : Staten Island, NY +10312 : 40.543117 : -74.17628 : Staten Island, NY +10313 : 40.564393 : -74.146836 : Staten Island, NY +10314 : 40.606337 : -74.14513 : Staten Island, NY +10422 : 40.828279 : -73.869454 : New York, NY +10451 : 40.819729 : -73.9223 : Bronx, NY +10452 : 40.838745 : -73.92234 : Bronx, NY +10453 : 40.853017 : -73.91214 : Bronx, NY +10454 : 40.805968 : -73.91628 : Bronx, NY +10455 : 40.815559 : -73.90771 : Bronx, NY +10456 : 40.829676 : -73.90856 : Bronx, NY +10457 : 40.846745 : -73.89861 : Bronx, NY +10458 : 40.864166 : -73.88881 : Bronx, NY +10459 : 40.825432 : -73.89327 : Bronx, NY +10460 : 40.84095 : -73.88036 : Bronx, NY +10461 : 40.842917 : -73.83819 : Bronx, NY +10462 : 40.842173 : -73.85862 : Bronx, NY +10463 : 40.881086 : -73.90749 : Bronx, NY +10464 : 40.857017 : -73.78903 : Bronx, NY +10465 : 40.825727 : -73.81752 : Bronx, NY +10466 : 40.89095 : -73.84702 : Bronx, NY +10467 : 40.872265 : -73.86937 : Bronx, NY +10468 : 40.867107 : -73.89916 : Bronx, NY +10469 : 40.868643 : -73.84735 : Bronx, NY +10470 : 40.900629 : -73.86072 : Bronx, NY +10471 : 40.900819 : -73.90347 : Bronx, NY +10472 : 40.830409 : -73.86845 : Bronx, NY +10473 : 40.818514 : -73.85893 : Bronx, NY +10474 : 40.81321 : -73.88755 : Bronx, NY +10475 : 40.878522 : -73.82541 : Bronx, NY +10499 : 40.851549 : -73.840908 : Bronx, NY +10501 : 41.289939 : -73.76493 : Amawalk, NY +10502 : 41.011324 : -73.84152 : Ardsley, NY +10503 : 41.024855 : -73.87513 : Ardsley On Hudson, NY +10504 : 41.129908 : -73.70352 : Armonk, NY +10505 : 41.33431 : -73.749244 : Baldwin Place, NY +10506 : 41.195778 : -73.62777 : Bedford, NY +10507 : 41.236931 : -73.69018 : Bedford Hills, NY +10509 : 41.41362 : -73.59556 : Brewster, NY +10510 : 41.146297 : -73.83311 : Briarcliff Manor, NY +10511 : 41.260283 : -73.94033 : Buchanan, NY +10512 : 41.444833 : -73.6845 : Carmel, NY +10514 : 41.167455 : -73.77597 : Chappaqua, NY +10516 : 41.440695 : -73.9314 : Cold Spring, NY +10517 : 41.300561 : -73.861217 : Crompond, NY +10518 : 41.269072 : -73.60493 : Cross River, NY +10519 : 41.34598 : -73.66199 : Croton Falls, NY +10520 : 41.215541 : -73.88543 : Croton On Hudson, NY +10521 : 41.234256 : -73.926165 : Croton On Hudson, NY +10522 : 41.012729 : -73.86602 : Dobbs Ferry, NY +10523 : 41.057089 : -73.81658 : Elmsford, NY +10524 : 41.363063 : -73.92154 : Garrison, NY +10526 : 41.294561 : -73.66701 : Goldens Bridge, NY +10527 : 41.319026 : -73.7576 : Granite Springs, NY +10528 : 40.972667 : -73.71886 : Harrison, NY +10530 : 41.025114 : -73.80635 : Hartsdale, NY +10532 : 41.103664 : -73.7958 : Hawthorne, NY +10533 : 41.039005 : -73.8635 : Irvington, NY +10535 : 41.331173 : -73.80208 : Jefferson Valley, NY +10536 : 41.265478 : -73.68512 : Katonah, NY +10537 : 41.337335 : -73.88689 : Lake Peekskill, NY +10538 : 40.933089 : -73.75615 : Larchmont, NY +10540 : 41.333398 : -73.724257 : Lincolndale, NY +10541 : 41.372419 : -73.75367 : Mahopac, NY +10542 : 41.372581 : -73.760132 : Mahopac Falls, NY +10543 : 40.952892 : -73.7346 : Mamaroneck, NY +10545 : 41.119008 : -73.732996 : Maryknoll, NY +10546 : 41.199502 : -73.79269 : Millwood, NY +10547 : 41.314676 : -73.85118 : Mohegan Lake, NY +10548 : 41.248359 : -73.94147 : Montrose, NY +10549 : 41.204027 : -73.73045 : Mount Kisco, NY +10550 : 40.907607 : -73.83709 : Mount Vernon, NY +10551 : 41.119008 : -73.732996 : Mount Vernon, NY +10552 : 40.924195 : -73.82614 : Mount Vernon, NY +10553 : 40.909288 : -73.8215 : Mount Vernon, NY +10557 : 41.119008 : -73.732996 : Mount Vernon, NY +10558 : 41.119008 : -73.732996 : Mount Vernon, NY +10559 : 41.119008 : -73.732996 : Mount Vernon, NY +10560 : 41.32797 : -73.61306 : North Salem, NY +10562 : 41.176837 : -73.84741 : Ossining, NY +10566 : 41.288258 : -73.91928 : Peekskill, NY +10567 : 41.300813 : -73.8908 : Cortlandt Manor, NY +10570 : 41.132367 : -73.78922 : Pleasantville, NY +10571 : 41.119008 : -73.732996 : Pleasantville, NY +10572 : 41.119008 : -73.732996 : Pleasantville, NY +10573 : 41.010376 : -73.67326 : Port Chester, NY +10576 : 41.212954 : -73.58409 : Pound Ridge, NY +10577 : 41.037203 : -73.71588 : Purchase, NY +10578 : 41.3252 : -73.66906 : Purdys, NY +10579 : 41.390356 : -73.8377 : Putnam Valley, NY +10580 : 40.976579 : -73.69002 : Rye, NY +10581 : 41.119008 : -73.732996 : Rye, NY +10583 : 40.98845 : -73.79716 : Scarsdale, NY +10586 : 40.997751 : -73.820321 : Greenville, NY +10587 : 41.328737 : -73.742268 : Shenorock, NY +10588 : 41.330178 : -73.82973 : Shrub Oak, NY +10589 : 41.331587 : -73.69234 : Somers, NY +10590 : 41.256639 : -73.54076 : South Salem, NY +10591 : 41.080196 : -73.85721 : Tarrytown, NY +10592 : 41.119008 : -73.732996 : Tarrytown, NY +10594 : 41.120025 : -73.77687 : Thornwood, NY +10595 : 41.083848 : -73.77785 : Valhalla, NY +10596 : 41.254823 : -73.958727 : Verplanck, NY +10597 : 41.289162 : -73.58834 : Waccabuc, NY +10598 : 41.296874 : -73.78934 : Yorktown Heights, NY +10601 : 41.032489 : -73.76454 : White Plains, NY +10602 : 41.119008 : -73.732996 : White Plains, NY +10603 : 41.053182 : -73.77672 : White Plains, NY +10604 : 41.045387 : -73.74451 : West Harrison, NY +10605 : 41.01002 : -73.75158 : White Plains, NY +10606 : 41.024107 : -73.77808 : White Plains, NY +10607 : 41.041191 : -73.80953 : White Plains, NY +10610 : 41.119008 : -73.732996 : White Plains, NY +10625 : 41.119008 : -73.732996 : White Plains, NY +10629 : 41.119008 : -73.732996 : White Plains, NY +10633 : 41.119008 : -73.732996 : White Plains, NY +10650 : 41.013696 : -73.705975 : White Plains, NY +10701 : 40.943525 : -73.88176 : Yonkers, NY +10702 : 41.119008 : -73.732996 : Yonkers, NY +10703 : 40.956546 : -73.8799 : Yonkers, NY +10704 : 40.920273 : -73.8612 : Yonkers, NY +10705 : 40.917281 : -73.89142 : Yonkers, NY +10706 : 40.992084 : -73.8729 : Hastings On Hudson, NY +10707 : 40.958689 : -73.82363 : Tuckahoe, NY +10708 : 40.939049 : -73.83099 : Bronxville, NY +10709 : 40.953849 : -73.81143 : Eastchester, NY +10710 : 40.96555 : -73.84506 : Yonkers, NY +10730 : 41.358899 : -74.122951 : Woodbury, NY +10801 : 40.915845 : -73.78643 : New Rochelle, NY +10802 : 40.948274 : -73.795361 : New Rochelle, NY +10803 : 40.902221 : -73.80717 : Pelham, NY +10804 : 40.946805 : -73.78797 : Wykagyl, NY +10805 : 40.897783 : -73.77933 : New Rochelle, NY +10901 : 41.125695 : -74.12682 : Suffern, NY +10910 : 41.386195 : -74.125718 : Arden, NY +10911 : 41.160945 : -74.060826 : Bear Mountain, NY +10912 : 41.387822 : -74.354699 : Bellvale, NY +10913 : 41.062779 : -73.96016 : Blauvelt, NY +10914 : 41.464867 : -74.255646 : Blooming Grove, NY +10915 : 41.555634 : -74.328805 : Bullville, NY +10916 : 41.451074 : -74.24346 : Campbell Hall, NY +10917 : 41.322344 : -74.12354 : Central Valley, NY +10918 : 41.35648 : -74.26072 : Chester, NY +10919 : 41.525781 : -74.37907 : Circleville, NY +10920 : 41.149245 : -73.94287 : Congers, NY +10921 : 41.332519 : -74.35931 : Florida, NY +10922 : 41.334557 : -73.99175 : Fort Montgomery, NY +10923 : 41.204544 : -74.00161 : Garnerville, NY +10924 : 41.38928 : -74.3337 : Goshen, NY +10925 : 41.211794 : -74.29778 : Greenwood Lake, NY +10926 : 41.299334 : -74.14049 : Harriman, NY +10927 : 41.196044 : -73.96836 : Haverstraw, NY +10928 : 41.360336 : -73.97293 : Highland Falls, NY +10930 : 41.35805 : -74.12096 : Highland Mills, NY +10931 : 41.126395 : -74.16718 : Hillburn, NY +10932 : 41.485227 : -74.484249 : Howells, NY +10933 : 41.365286 : -74.510918 : Johnson, NY +10940 : 41.449364 : -74.43951 : Middletown, NY +10941 : 41.478028 : -74.35844 : Middletown, NY +10943 : 41.387822 : -74.354699 : Middletown, NY +10946 : 41.507236 : -74.412119 : Wallkill, NY +10950 : 41.323547 : -74.19531 : Monroe, NY +10952 : 41.116162 : -74.07556 : Monsey, NY +10953 : 41.409284 : -74.083045 : Mountainville, NY +10954 : 41.100182 : -74.0133 : Nanuet, NY +10956 : 41.145495 : -73.9949 : New City, NY +10957 : 41.308218 : -73.613803 : Lewisboro, NY +10958 : 41.384738 : -74.41571 : New Hampton, NY +10959 : 41.387822 : -74.354699 : New Milford, NY +10960 : 41.089746 : -73.9258 : Nyack, NY +10962 : 41.047996 : -73.96215 : Orangeburg, NY +10963 : 41.475197 : -74.53847 : Otisville, NY +10964 : 41.011464 : -73.92585 : Palisades, NY +10965 : 41.063329 : -74.01734 : Pearl River, NY +10968 : 41.040623 : -73.91878 : Piermont, NY +10969 : 41.295568 : -74.48935 : Pine Island, NY +10970 : 41.192394 : -74.04523 : Pomona, NY +10973 : 41.391172 : -74.47758 : Slate Hill, NY +10974 : 41.156095 : -74.19214 : Sloatsburg, NY +10975 : 41.246428 : -74.17141 : Southfields, NY +10976 : 41.028647 : -73.92817 : Sparkill, NY +10977 : 41.116795 : -74.04504 : Spring Valley, NY +10979 : 41.182344 : -74.318354 : Sterling Forest, NY +10980 : 41.231408 : -74.01157 : Stony Point, NY +10981 : 41.323172 : -74.288565 : Sugar Loaf, NY +10982 : 41.160945 : -74.060826 : Tallman, NY +10983 : 41.025897 : -73.95118 : Tappan, NY +10984 : 41.208327 : -74.02105 : Thiells, NY +10985 : 41.580793 : -74.37451 : Thompson Ridge, NY +10986 : 41.271543 : -73.98676 : Tomkins Cove, NY +10987 : 41.197123 : -74.21069 : Tuxedo Park, NY +10988 : 41.314931 : -74.550346 : Unionville, NY +10989 : 41.119788 : -73.94455 : Valley Cottage, NY +10990 : 41.259896 : -74.35837 : Warwick, NY +10992 : 41.428269 : -74.16178 : Washingtonville, NY +10993 : 41.207594 : -73.97772 : West Haverstraw, NY +10994 : 41.097529 : -73.96996 : West Nyack, NY +10995 : 41.160945 : -74.060826 : West Nyack, NY +10996 : 41.376109 : -73.9788 : West Point, NY +10997 : 41.387822 : -74.354699 : West Point, NY +10998 : 41.334034 : -74.54593 : Westtown, NY +11001 : 40.7232 : -73.70475 : Floral Park, NY +11002 : 40.754757 : -73.601772 : Floral Park, NY +11003 : 40.700529 : -73.70223 : Elmont, NY +11004 : 40.742944 : -73.70956 : Glen Oaks, NY +11005 : 40.756983 : -73.7148 : Floral Park, NY +11010 : 40.701702 : -73.67562 : Franklin Square, NY +11020 : 40.771082 : -73.71819 : Great Neck, NY +11021 : 40.787068 : -73.72577 : Great Neck, NY +11022 : 40.754757 : -73.601772 : Great Neck, NY +11023 : 40.798839 : -73.73352 : Great Neck, NY +11024 : 40.812887 : -73.74094 : Great Neck, NY +11025 : 40.754757 : -73.601772 : Great Neck, NY +11026 : 40.754757 : -73.601772 : Great Neck, NY +11027 : 40.754757 : -73.601772 : Great Neck, NY +11030 : 40.796752 : -73.68935 : Manhasset, NY +11040 : 40.742901 : -73.67895 : New Hyde Park, NY +11041 : 40.754757 : -73.601772 : New Hyde Park, NY +11042 : 40.760128 : -73.69379 : New Hyde Park, NY +11043 : 40.754757 : -73.601772 : New Hyde Park, NY +11044 : 40.754757 : -73.601772 : New Hyde Park, NY +11050 : 40.833246 : -73.69309 : Port Washington, NY +11051 : 40.754757 : -73.601772 : Port Washington, NY +11052 : 40.754757 : -73.601772 : Port Washington, NY +11053 : 40.754757 : -73.601772 : Port Washington, NY +11054 : 40.754757 : -73.601772 : Port Washington, NY +11055 : 40.754757 : -73.601772 : Port Washington, NY +11096 : 40.618206 : -73.74762 : Inwood, NY +11099 : 40.754757 : -73.601772 : New Hyde Park, NY +11101 : 40.745341 : -73.93907 : Long Island City, NY +11102 : 40.771286 : -73.92462 : Astoria, NY +11103 : 40.762968 : -73.91091 : Astoria, NY +11104 : 40.743796 : -73.91949 : Sunnyside, NY +11105 : 40.774686 : -73.90816 : Astoria, NY +11106 : 40.762012 : -73.93147 : Astoria, NY +11109 : 40.651378 : -73.870779 : Long Island City, NY +11120 : 40.651378 : -73.870779 : Long Island City, NY +11201 : 40.695286 : -73.98907 : Brooklyn, NY +11202 : 40.645099 : -73.945032 : Brooklyn, NY +11203 : 40.649059 : -73.93304 : Brooklyn, NY +11204 : 40.618944 : -73.98473 : Brooklyn, NY +11205 : 40.694214 : -73.96529 : Brooklyn, NY +11206 : 40.702348 : -73.94288 : Brooklyn, NY +11207 : 40.670874 : -73.89424 : Brooklyn, NY +11208 : 40.672666 : -73.87248 : Brooklyn, NY +11209 : 40.62327 : -74.0295 : Brooklyn, NY +11210 : 40.627946 : -73.94552 : Brooklyn, NY +11211 : 40.71209 : -73.95427 : Brooklyn, NY +11212 : 40.662191 : -73.91328 : Brooklyn, NY +11213 : 40.670937 : -73.93459 : Brooklyn, NY +11214 : 40.598994 : -73.99611 : Brooklyn, NY +11215 : 40.667508 : -73.9856 : Brooklyn, NY +11216 : 40.680398 : -73.94824 : Brooklyn, NY +11217 : 40.68209 : -73.97783 : Brooklyn, NY +11218 : 40.644552 : -73.97595 : Brooklyn, NY +11219 : 40.632449 : -73.99629 : Brooklyn, NY +11220 : 40.641436 : -74.01574 : Brooklyn, NY +11221 : 40.691234 : -73.92637 : Brooklyn, NY +11222 : 40.726302 : -73.94559 : Brooklyn, NY +11223 : 40.598142 : -73.97229 : Brooklyn, NY +11224 : 40.576589 : -73.99172 : Brooklyn, NY +11225 : 40.662892 : -73.95509 : Brooklyn, NY +11226 : 40.645256 : -73.95553 : Brooklyn, NY +11228 : 40.617563 : -74.01168 : Brooklyn, NY +11229 : 40.599256 : -73.94118 : Brooklyn, NY +11230 : 40.622994 : -73.96427 : Brooklyn, NY +11231 : 40.6788 : -74.00254 : Brooklyn, NY +11232 : 40.655481 : -74.00424 : Brooklyn, NY +11233 : 40.676938 : -73.91858 : Brooklyn, NY +11234 : 40.618561 : -73.9216 : Brooklyn, NY +11235 : 40.583803 : -73.95019 : Brooklyn, NY +11236 : 40.640527 : -73.90362 : Brooklyn, NY +11237 : 40.703355 : -73.91993 : Brooklyn, NY +11238 : 40.680145 : -73.96257 : Brooklyn, NY +11239 : 40.645848 : -73.87919 : Brooklyn, NY +11240 : 40.645099 : -73.945032 : Brooklyn, NY +11241 : 40.645099 : -73.945032 : Brooklyn, NY +11242 : 40.645099 : -73.945032 : Brooklyn, NY +11243 : 40.645099 : -73.945032 : Brooklyn, NY +11244 : 40.645099 : -73.945032 : Brooklyn, NY +11245 : 40.645099 : -73.945032 : Brooklyn, NY +11247 : 40.645099 : -73.945032 : Brooklyn, NY +11248 : 40.645099 : -73.945032 : Brooklyn, NY +11249 : 40.645099 : -73.945032 : Brooklyn, NY +11251 : 40.645099 : -73.945032 : Brooklyn, NY +11252 : 40.645099 : -73.945032 : Brooklyn, NY +11254 : 40.645099 : -73.945032 : Brooklyn, NY +11255 : 40.645099 : -73.945032 : Brooklyn, NY +11256 : 40.645099 : -73.945032 : Brooklyn, NY +11286 : 40.658825 : -74.004495 : New York, NY +11302 : 40.75945 : -73.715016 : New York, NY +11351 : 40.781703 : -73.831698 : Flushing, NY +11352 : 40.651378 : -73.870779 : Flushing, NY +11353 : 40.651378 : -73.870779 : Flushing, NY +11354 : 40.767969 : -73.82496 : Flushing, NY +11355 : 40.749463 : -73.81941 : Flushing, NY +11356 : 40.785462 : -73.84366 : College Point, NY +11357 : 40.784453 : -73.80922 : Whitestone, NY +11358 : 40.760522 : -73.79612 : Flushing, NY +11359 : 40.79278 : -73.776701 : Bayside, NY +11360 : 40.780386 : -73.78005 : Bayside, NY +11361 : 40.763177 : -73.77392 : Bayside, NY +11362 : 40.759686 : -73.73322 : Little Neck, NY +11363 : 40.772636 : -73.74644 : Little Neck, NY +11364 : 40.746718 : -73.75994 : Oakland Gardens, NY +11365 : 40.738983 : -73.79209 : Fresh Meadows, NY +11366 : 40.726137 : -73.79502 : Fresh Meadows, NY +11367 : 40.728614 : -73.82145 : Flushing, NY +11368 : 40.747106 : -73.85838 : Corona, NY +11369 : 40.762854 : -73.87051 : East Elmhurst, NY +11370 : 40.763015 : -73.89052 : East Elmhurst, NY +11371 : 40.772072 : -73.87509 : Flushing, NY +11372 : 40.750146 : -73.88433 : Jackson Heights, NY +11373 : 40.736076 : -73.87804 : Elmhurst, NY +11374 : 40.724945 : -73.8609 : Rego Park, NY +11375 : 40.720535 : -73.84582 : Forest Hills, NY +11377 : 40.742869 : -73.90377 : Woodside, NY +11378 : 40.724096 : -73.90271 : Maspeth, NY +11379 : 40.716028 : -73.87925 : Middle Village, NY +11380 : 40.651378 : -73.870779 : Elmhurst, NY +11381 : 40.651378 : -73.870779 : Flushing, NY +11385 : 40.703069 : -73.89285 : Ridgewood, NY +11386 : 40.651378 : -73.870779 : Ridgewood, NY +11388 : 40.651378 : -73.870779 : Flushing, NY +11390 : 40.651378 : -73.870779 : Flushing, NY +11405 : 40.651378 : -73.870779 : Jamaica, NY +11411 : 40.693538 : -73.73574 : Cambria Heights, NY +11412 : 40.697188 : -73.75948 : Saint Albans, NY +11413 : 40.670138 : -73.75141 : Springfield Gardens, NY +11414 : 40.658188 : -73.84321 : Howard Beach, NY +11415 : 40.706903 : -73.82973 : Kew Gardens, NY +11416 : 40.683301 : -73.8503 : Ozone Park, NY +11417 : 40.675534 : -73.84476 : Ozone Park, NY +11418 : 40.698485 : -73.83365 : Richmond Hill, NY +11419 : 40.688688 : -73.82216 : South Richmond Hill, NY +11420 : 40.673138 : -73.81443 : South Ozone Park, NY +11421 : 40.69087 : -73.85828 : Woodhaven, NY +11422 : 40.662538 : -73.73514 : Rosedale, NY +11423 : 40.714261 : -73.76824 : Hollis, NY +11424 : 40.651378 : -73.870779 : Jamaica, NY +11425 : 40.651378 : -73.870779 : Jamaica, NY +11426 : 40.732239 : -73.72108 : Bellerose, NY +11427 : 40.728235 : -73.74782 : Queens Village, NY +11428 : 40.719981 : -73.74127 : Queens Village, NY +11429 : 40.708833 : -73.73903 : Queens Village, NY +11430 : 40.650519 : -73.79567 : Jamaica, NY +11431 : 40.686903 : -73.850143 : Jamaica, NY +11432 : 40.714144 : -73.79324 : Jamaica, NY +11433 : 40.696538 : -73.78734 : Jamaica, NY +11434 : 40.674888 : -73.7727 : Jamaica, NY +11435 : 40.700068 : -73.80986 : Jamaica, NY +11436 : 40.674146 : -73.79687 : Jamaica, NY +11439 : 40.722008 : -73.790822 : Jamaica, NY +11451 : 40.651378 : -73.870779 : Jamaica, NY +11484 : 40.651378 : -73.870779 : Jamaica, NY +11499 : 40.651378 : -73.870779 : Jamaica, NY +11501 : 40.747188 : -73.63808 : Mineola, NY +11507 : 40.769942 : -73.65004 : Albertson, NY +11509 : 40.589538 : -73.72915 : Atlantic Beach, NY +11510 : 40.654112 : -73.6095 : Baldwin, NY +11514 : 40.750132 : -73.61328 : Carle Place, NY +11516 : 40.627386 : -73.72852 : Cedarhurst, NY +11517 : 40.679845 : -73.986415 : New York, NY +11518 : 40.639575 : -73.66703 : East Rockaway, NY +11520 : 40.653935 : -73.587 : Freeport, NY +11530 : 40.725257 : -73.64056 : Garden City, NY +11531 : 40.754757 : -73.601772 : Garden City, NY +11535 : 40.754757 : -73.601772 : Garden City, NY +11536 : 40.754757 : -73.601772 : Garden City, NY +11542 : 40.864757 : -73.62609 : Glen Cove, NY +11545 : 40.823957 : -73.60415 : Glen Head, NY +11547 : 40.828143 : -73.64401 : Glenwood Landing, NY +11548 : 40.813187 : -73.62561 : Greenvale, NY +11549 : 40.754757 : -73.601772 : Hempstead, NY +11550 : 40.702271 : -73.61741 : Hempstead, NY +11551 : 40.754757 : -73.601772 : Hempstead, NY +11552 : 40.6949 : -73.65394 : West Hempstead, NY +11553 : 40.703502 : -73.59306 : Uniondale, NY +11554 : 40.7143 : -73.55527 : East Meadow, NY +11555 : 40.754757 : -73.601772 : Uniondale, NY +11556 : 40.754757 : -73.601772 : Uniondale, NY +11557 : 40.639534 : -73.69253 : Hewlett, NY +11558 : 40.603159 : -73.65515 : Island Park, NY +11559 : 40.61579 : -73.73126 : Lawrence, NY +11560 : 40.881957 : -73.59417 : Locust Valley, NY +11561 : 40.588154 : -73.66517 : Long Beach, NY +11562 : 40.665202 : -73.668274 : Lynbrook, NY +11563 : 40.656974 : -73.67306 : Lynbrook, NY +11564 : 40.754757 : -73.601772 : Lynbrook, NY +11565 : 40.675249 : -73.67298 : Malverne, NY +11566 : 40.666575 : -73.55475 : Merrick, NY +11568 : 40.787368 : -73.60119 : Old Westbury, NY +11569 : 40.593996 : -73.58039 : Point Lookout, NY +11570 : 40.663935 : -73.63792 : Rockville Centre, NY +11571 : 40.754757 : -73.601772 : Rockville Centre, NY +11572 : 40.636286 : -73.6374 : Oceanside, NY +11575 : 40.679413 : -73.58694 : Roosevelt, NY +11576 : 40.793839 : -73.65156 : Roslyn, NY +11577 : 40.785642 : -73.64006 : Roslyn Heights, NY +11579 : 40.846388 : -73.64452 : Sea Cliff, NY +11580 : 40.673 : -73.70346 : Valley Stream, NY +11581 : 40.651733 : -73.71079 : Valley Stream, NY +11582 : 40.754757 : -73.601772 : Valley Stream, NY +11583 : 40.754757 : -73.601772 : Valley Stream, NY +11588 : 40.754757 : -73.601772 : Uniondale, NY +11590 : 40.756287 : -73.57536 : Westbury, NY +11592 : 40.621753 : -73.632673 : Rockville Centre, NY +11593 : 40.754757 : -73.601772 : Westbury, NY +11594 : 40.754757 : -73.601772 : Westbury, NY +11595 : 40.754757 : -73.601772 : Westbury, NY +11596 : 40.758283 : -73.64259 : Williston Park, NY +11597 : 40.754757 : -73.601772 : Westbury, NY +11598 : 40.633103 : -73.71404 : Woodmere, NY +11599 : 40.607574 : -73.742691 : Garden City, NY +11690 : 40.651378 : -73.870779 : Far Rockaway, NY +11691 : 40.60002 : -73.75962 : Far Rockaway, NY +11692 : 40.592939 : -73.79568 : Arverne, NY +11693 : 40.596959 : -73.81978 : Far Rockaway, NY +11694 : 40.57649 : -73.84721 : Rockaway Park, NY +11695 : 40.651378 : -73.870779 : Far Rockaway, NY +11696 : 40.651378 : -73.870779 : Inwood, NY +11697 : 40.560167 : -73.90891 : Breezy Point, NY +11701 : 40.6851 : -73.41317 : Amityville, NY +11702 : 40.687649 : -73.32549 : Babylon, NY +11703 : 40.733398 : -73.32257 : North Babylon, NY +11704 : 40.719249 : -73.35829 : West Babylon, NY +11705 : 40.74485 : -73.055 : Bayport, NY +11706 : 40.729098 : -73.25607 : Bay Shore, NY +11707 : 40.922326 : -72.637078 : West Babylon, NY +11708 : 40.922326 : -72.637078 : Amityville, NY +11709 : 40.907277 : -73.55713 : Bayville, NY +11710 : 40.673438 : -73.53382 : Bellmore, NY +11713 : 40.771447 : -72.94663 : Bellport, NY +11714 : 40.740662 : -73.48631 : Bethpage, NY +11715 : 40.74897 : -73.03436 : Blue Point, NY +11716 : 40.770042 : -73.11376 : Bohemia, NY +11717 : 40.783954 : -73.24517 : Brentwood, NY +11718 : 40.720746 : -73.26614 : Brightwaters, NY +11719 : 40.780058 : -72.91566 : Brookhaven, NY +11720 : 40.868946 : -73.08009 : Centereach, NY +11721 : 40.890598 : -73.37536 : Centerport, NY +11722 : 40.784874 : -73.19924 : Central Islip, NY +11724 : 40.865731 : -73.44645 : Cold Spring Harbor, NY +11725 : 40.841522 : -73.28001 : Commack, NY +11726 : 40.680892 : -73.39609 : Copiague, NY +11727 : 40.884895 : -73.00501 : Coram, NY +11729 : 40.760698 : -73.33007 : Deer Park, NY +11730 : 40.72921 : -73.18073 : East Islip, NY +11731 : 40.865998 : -73.31796 : East Northport, NY +11732 : 40.848766 : -73.53478 : East Norwich, NY +11733 : 40.932053 : -73.10666 : East Setauket, NY +11735 : 40.725968 : -73.44151 : Farmingdale, NY +11736 : 40.754757 : -73.601772 : Farmingdale, NY +11737 : 40.754757 : -73.601772 : Farmingdale, NY +11738 : 40.83469 : -73.0386 : Farmingville, NY +11739 : 40.922326 : -72.637078 : Great River, NY +11740 : 40.862565 : -73.36221 : Greenlawn, NY +11741 : 40.799706 : -73.07485 : Holbrook, NY +11742 : 40.810606 : -73.04036 : Holtsville, NY +11743 : 40.867498 : -73.41146 : Huntington, NY +11745 : 40.922326 : -72.637078 : Smithtown, NY +11746 : 40.821698 : -73.37553 : Huntington Station, NY +11747 : 40.791593 : -73.40543 : Melville, NY +11749 : 40.922326 : -72.637078 : Islandia, NY +11750 : 40.922326 : -72.637078 : Huntington Station, NY +11751 : 40.734212 : -73.21416 : Islip, NY +11752 : 40.754386 : -73.18326 : Islip Terrace, NY +11753 : 40.786544 : -73.53675 : Jericho, NY +11754 : 40.888497 : -73.24258 : Kings Park, NY +11755 : 40.855402 : -73.11839 : Lake Grove, NY +11756 : 40.724883 : -73.51739 : Levittown, NY +11757 : 40.690049 : -73.37442 : Lindenhurst, NY +11758 : 40.68085 : -73.46289 : Massapequa, NY +11760 : 40.810246 : -73.191789 : Hauppauge, NY +11762 : 40.68505 : -73.44681 : Massapequa Park, NY +11763 : 40.820786 : -72.98375 : Medford, NY +11764 : 40.946506 : -72.98837 : Miller Place, NY +11765 : 40.88889 : -73.55608 : Mill Neck, NY +11766 : 40.929242 : -73.01317 : Mount Sinai, NY +11767 : 40.842962 : -73.14303 : Nesconset, NY +11768 : 40.905647 : -73.33114 : Northport, NY +11769 : 40.736011 : -73.1296 : Oakdale, NY +11770 : 40.643951 : -73.16115 : Ocean Beach, NY +11771 : 40.868882 : -73.52292 : Oyster Bay, NY +11772 : 40.770898 : -73.00213 : Patchogue, NY +11773 : 40.754757 : -73.601772 : Syosset, NY +11774 : 40.754757 : -73.601772 : Farmingdale, NY +11775 : 40.922326 : -72.637078 : Melville, NY +11776 : 40.911082 : -73.04966 : Port Jefferson Station, NY +11777 : 40.946103 : -73.06222 : Port Jefferson, NY +11778 : 40.954093 : -72.92884 : Rocky Point, NY +11779 : 40.818826 : -73.1187 : Ronkonkoma, NY +11780 : 40.884394 : -73.15868 : Saint James, NY +11782 : 40.739869 : -73.07198 : Sayville, NY +11783 : 40.679752 : -73.48959 : Seaford, NY +11784 : 40.869274 : -73.04254 : Selden, NY +11786 : 40.94993 : -72.89533 : Shoreham, NY +11787 : 40.853343 : -73.20777 : Smithtown, NY +11788 : 40.819266 : -73.20967 : Hauppauge, NY +11789 : 40.955586 : -72.9733 : Sound Beach, NY +11790 : 40.906174 : -73.12748 : Stony Brook, NY +11791 : 40.815215 : -73.50057 : Syosset, NY +11792 : 40.953261 : -72.8368 : Wading River, NY +11793 : 40.676649 : -73.51122 : Wantagh, NY +11794 : 40.922326 : -72.637078 : Stony Brook, NY +11795 : 40.713459 : -73.3001 : West Islip, NY +11796 : 40.731954 : -73.10081 : West Sayville, NY +11797 : 40.813801 : -73.46912 : Woodbury, NY +11798 : 40.752098 : -73.36516 : Wyandanch, NY +11801 : 40.763355 : -73.52323 : Hicksville, NY +11802 : 40.754757 : -73.601772 : Hicksville, NY +11803 : 40.779911 : -73.47948 : Plainview, NY +11804 : 40.765378 : -73.45781 : Old Bethpage, NY +11805 : 40.922326 : -72.637078 : Mid Island, NY +11815 : 40.754757 : -73.601772 : Hicksville, NY +11819 : 40.754757 : -73.601772 : Hicksville, NY +11853 : 40.754757 : -73.601772 : Jericho, NY +11854 : 40.754757 : -73.601772 : Hicksville, NY +11855 : 40.754757 : -73.601772 : Hicksville, NY +11901 : 40.926595 : -72.65327 : Riverhead, NY +11930 : 40.985301 : -72.10411 : Amagansett, NY +11931 : 40.922326 : -72.637078 : Aquebogue, NY +11932 : 40.939075 : -72.30514 : Bridgehampton, NY +11933 : 40.933429 : -72.74646 : Calverton, NY +11934 : 40.797772 : -72.79719 : Center Moriches, NY +11935 : 41.012868 : -72.4723 : Cutchogue, NY +11937 : 40.995384 : -72.18564 : East Hampton, NY +11939 : 41.128923 : -72.34189 : East Marion, NY +11940 : 40.806287 : -72.75673 : East Moriches, NY +11941 : 40.824658 : -72.72356 : Eastport, NY +11942 : 40.84867 : -72.57794 : East Quogue, NY +11944 : 41.103838 : -72.36729 : Greenport, NY +11946 : 40.875897 : -72.52063 : Hampton Bays, NY +11947 : 40.943323 : -72.57996 : Jamesport, NY +11948 : 40.961916 : -72.55024 : Laurel, NY +11949 : 40.855861 : -72.79736 : Manorville, NY +11950 : 40.80481 : -72.84664 : Mastic, NY +11951 : 40.763634 : -72.84554 : Mastic Beach, NY +11952 : 40.994649 : -72.53731 : Mattituck, NY +11953 : 40.886267 : -72.9552 : Middle Island, NY +11954 : 41.03831 : -71.9506 : Montauk, NY +11955 : 40.805789 : -72.82092 : Moriches, NY +11956 : 40.991836 : -72.47505 : New Suffolk, NY +11957 : 41.151826 : -72.27511 : Orient, NY +11958 : 41.03687 : -72.45341 : Peconic, NY +11959 : 40.825411 : -72.60506 : Quogue, NY +11960 : 40.803923 : -72.70421 : Remsenburg, NY +11961 : 40.89609 : -72.87824 : Ridge, NY +11962 : 40.937683 : -72.26831 : Sagaponack, NY +11963 : 40.99628 : -72.31074 : Sag Harbor, NY +11964 : 41.060843 : -72.33159 : Shelter Island, NY +11965 : 41.07815 : -72.35093 : Shelter Island Heights, NY +11967 : 40.794317 : -72.87181 : Shirley, NY +11968 : 40.904348 : -72.40714 : Southampton, NY +11969 : 40.922326 : -72.637078 : Southampton, NY +11970 : 40.941363 : -72.57502 : South Jamesport, NY +11971 : 41.059209 : -72.42041 : Southold, NY +11972 : 40.8204 : -72.70113 : Speonk, NY +11973 : 40.922326 : -72.637078 : Upton, NY +11975 : 40.947419 : -72.24505 : Wainscott, NY +11976 : 40.919693 : -72.34407 : Water Mill, NY +11977 : 40.81819 : -72.67835 : Westhampton, NY +11978 : 40.816142 : -72.63449 : Westhampton Beach, NY +11980 : 40.832858 : -72.91611 : Yaphank, NY +12007 : 42.482455 : -73.936671 : Alcove, NY +12008 : 42.853043 : -73.9029 : Alplaus, NY +12009 : 42.698692 : -74.03148 : Altamont, NY +12010 : 42.940644 : -74.17899 : Amsterdam, NY +12015 : 42.279649 : -73.81701 : Athens, NY +12016 : 42.910206 : -74.423606 : Auriesville, NY +12017 : 42.323565 : -73.45257 : Austerlitz, NY +12018 : 42.62742 : -73.53494 : Averill Park, NY +12019 : 42.916343 : -73.86657 : Ballston Lake, NY +12020 : 43.006309 : -73.8604 : Ballston Spa, NY +12022 : 42.681107 : -73.3489 : Berlin, NY +12023 : 42.610306 : -74.15692 : Berne, NY +12024 : 42.494981 : -73.510676 : Brainard, NY +12025 : 43.07681 : -74.15332 : Broadalbin, NY +12027 : 42.912175 : -73.90355 : Burnt Hills, NY +12028 : 42.932315 : -73.44521 : Buskirk, NY +12029 : 42.399159 : -73.42757 : Canaan, NY +12031 : 42.770985 : -74.44694 : Carlisle, NY +12032 : 43.158567 : -74.49646 : Caroga Lake, NY +12033 : 42.534631 : -73.71327 : Castleton On Hudson, NY +12035 : 42.722477 : -74.35064 : Central Bridge, NY +12036 : 42.546034 : -74.67315 : Charlotteville, NY +12037 : 42.346758 : -73.57852 : Chatham, NY +12040 : 42.646742 : -73.371611 : Cherry Plain, NY +12041 : 42.543326 : -73.97403 : Clarksville, NY +12042 : 42.403719 : -73.90875 : Climax, NY +12043 : 42.696926 : -74.52436 : Cobleskill, NY +12045 : 42.474135 : -73.79335 : Coeymans, NY +12046 : 42.475609 : -73.92656 : Coeymans Hollow, NY +12047 : 42.773777 : -73.70793 : Cohoes, NY +12050 : 42.317154 : -73.748555 : Columbiaville, NY +12051 : 42.353773 : -73.82774 : Coxsackie, NY +12052 : 42.74891 : -73.49405 : Cropseyville, NY +12053 : 42.749499 : -74.18601 : Delanson, NY +12054 : 42.614979 : -73.84086 : Delmar, NY +12055 : 42.614852 : -73.970812 : Dormansville, NY +12056 : 42.767853 : -74.09083 : Duanesburg, NY +12057 : 42.959229 : -73.35236 : Eagle Bridge, NY +12058 : 42.350557 : -73.91978 : Earlton, NY +12059 : 42.621933 : -74.05574 : East Berne, NY +12060 : 42.41956 : -73.50412 : East Chatham, NY +12061 : 42.593047 : -73.67343 : East Greenbush, NY +12062 : 42.525531 : -73.50207 : East Nassau, NY +12063 : 42.559697 : -73.63335 : East Schodack, NY +12064 : 42.615422 : -74.6595 : East Worcester, NY +12065 : 42.853676 : -73.78445 : Clifton Park, NY +12066 : 42.784091 : -74.3116 : Esperance, NY +12067 : 42.561226 : -73.92528 : Feura Bush, NY +12068 : 42.953913 : -74.37883 : Fonda, NY +12069 : 42.945701 : -74.263312 : Fort Hunter, NY +12070 : 42.970827 : -74.24778 : Fort Johnson, NY +12071 : 42.565907 : -74.41457 : Fultonham, NY +12072 : 42.896974 : -74.37495 : Fultonville, NY +12073 : 42.592287 : -74.438129 : Gallupville, NY +12074 : 43.068203 : -74.05526 : Galway, NY +12075 : 42.305793 : -73.6514 : Ghent, NY +12076 : 42.425405 : -74.40616 : Gilboa, NY +12077 : 42.600551 : -73.79621 : Glenmont, NY +12078 : 43.069562 : -74.3436 : Gloversville, NY +12081 : 42.59362 : -73.566328 : Nassau, NY +12082 : 42.772624 : -73.446834 : Grafton, NY +12083 : 42.430684 : -74.03728 : Greenville, NY +12084 : 42.698231 : -73.89906 : Guilderland, NY +12085 : 42.694777 : -73.905271 : Guilderland Center, NY +12086 : 42.981745 : -74.14257 : Hagaman, NY +12087 : 42.434883 : -73.89271 : Hannacroix, NY +12089 : 42.866666 : -73.318113 : Hoosick, NY +12090 : 42.888816 : -73.3555 : Hoosick Falls, NY +12092 : 42.691779 : -74.37513 : Howes Cave, NY +12093 : 42.496939 : -74.62813 : Jefferson, NY +12094 : 42.899334 : -73.49006 : Johnsonville, NY +12095 : 43.014523 : -74.38473 : Johnstown, NY +12103 : 42.6464 : -74.130201 : Knox, NY +12106 : 42.388394 : -73.70726 : Kinderhook, NY +12107 : 42.660046 : -74.116812 : Knox, NY +12108 : 43.525388 : -74.40875 : Lake Pleasant, NY +12110 : 42.74964 : -73.76802 : Latham, NY +12111 : 42.614852 : -73.970812 : Latham, NY +12115 : 42.469991 : -73.58587 : Malden Bridge, NY +12116 : 42.538589 : -74.92185 : Maryland, NY +12117 : 43.146907 : -74.23466 : Mayfield, NY +12118 : 42.915904 : -73.70539 : Mechanicville, NY +12120 : 42.456127 : -74.14059 : Medusa, NY +12121 : 42.851106 : -73.61867 : Melrose, NY +12122 : 42.558318 : -74.31458 : Middleburgh, NY +12123 : 42.522197 : -73.60613 : Nassau, NY +12124 : 42.444198 : -73.788241 : New Baltimore, NY +12125 : 42.474028 : -73.4075 : New Lebanon, NY +12128 : 42.724978 : -73.764296 : Newtonville, NY +12130 : 42.442592 : -73.65778 : Niverville, NY +12131 : 42.482123 : -74.45715 : North Blenheim, NY +12132 : 42.466061 : -73.629296 : North Chatham, NY +12133 : 42.926121 : -73.346409 : North Hoosick, NY +12134 : 43.21892 : -74.14822 : Northville, NY +12136 : 42.437594 : -73.55599 : Old Chatham, NY +12137 : 42.862695 : -74.11759 : Pattersonville, NY +12138 : 42.760049 : -73.36801 : Petersburg, NY +12139 : 43.40276 : -74.56972 : Piseco, NY +12140 : 42.693228 : -73.56922 : Poestenkill, NY +12141 : 42.731771 : -74.185395 : Quaker Street, NY +12143 : 42.46915 : -73.82956 : Ravena, NY +12144 : 42.63738 : -73.72587 : Rensselaer, NY +12147 : 42.518386 : -74.15997 : Rensselaerville, NY +12148 : 42.842133 : -73.86828 : Rexford, NY +12149 : 42.63119 : -74.572 : Richmondville, NY +12150 : 42.876756 : -74.05452 : Rotterdam Junction, NY +12151 : 42.932326 : -73.79363 : Round Lake, NY +12153 : 42.638579 : -73.48051 : Sand Lake, NY +12154 : 42.925765 : -73.60664 : Schaghticoke, NY +12155 : 42.587708 : -74.83536 : Schenevus, NY +12156 : 42.479967 : -73.73647 : Schodack Landing, NY +12157 : 42.668825 : -74.30134 : Schoharie, NY +12158 : 42.539822 : -73.81545 : Selkirk, NY +12159 : 42.646978 : -73.87151 : Slingerlands, NY +12160 : 42.757815 : -74.34369 : Sloansville, NY +12161 : 42.521038 : -73.851898 : South Bethlehem, NY +12162 : 42.513906 : -73.702443 : South Schodack, NY +12164 : 43.515611 : -74.37431 : Speculator, NY +12165 : 42.317959 : -73.51802 : Spencertown, NY +12166 : 42.831683 : -74.45667 : Sprakers, NY +12167 : 42.414519 : -74.59577 : Stamford, NY +12168 : 42.552127 : -73.39593 : Stephentown, NY +12169 : 42.57612 : -73.44559 : Stephentown, NY +12170 : 42.975154 : -73.66576 : Stillwater, NY +12172 : 42.285749 : -73.733532 : Stottville, NY +12173 : 42.377829 : -73.75943 : Stuyvesant, NY +12174 : 42.343986 : -73.73477 : Stuyvesant Falls, NY +12175 : 42.559096 : -74.55282 : Summit, NY +12176 : 42.393192 : -73.96763 : Surprise, NY +12177 : 42.95002 : -74.296985 : Tribes Hill, NY +12179 : 42.71144 : -73.525561 : Troy, NY +12180 : 42.731628 : -73.66465 : Troy, NY +12181 : 42.738678 : -73.673862 : Troy, NY +12182 : 42.785887 : -73.66221 : Troy, NY +12183 : 42.743289 : -73.69482 : Troy, NY +12184 : 42.426901 : -73.66405 : Valatie, NY +12185 : 42.884779 : -73.53703 : Valley Falls, NY +12186 : 42.638481 : -73.95946 : Voorheesville, NY +12187 : 42.624507 : -74.46772 : Warnerville, NY +12188 : 42.80535 : -73.68976 : Waterford, NY +12189 : 42.729278 : -73.70913 : Watervliet, NY +12190 : 43.43305 : -74.2901 : Wells, NY +12192 : 42.413742 : -73.81773 : West Coxsackie, NY +12193 : 42.515818 : -74.04978 : Westerlo, NY +12194 : 42.529042 : -74.44937 : West Fulton, NY +12195 : 42.479384 : -73.474809 : West Lebanon, NY +12196 : 42.631625 : -73.61619 : West Sand Lake, NY +12197 : 42.610314 : -74.72401 : Worcester, NY +12198 : 42.685311 : -73.63801 : Wynantskill, NY +12201 : 42.614852 : -73.970812 : Albany, NY +12202 : 42.640129 : -73.76061 : Albany, NY +12203 : 42.678112 : -73.82983 : Albany, NY +12204 : 42.683727 : -73.73329 : Albany, NY +12205 : 42.713328 : -73.8179 : Albany, NY +12206 : 42.669645 : -73.77719 : Albany, NY +12207 : 42.653979 : -73.74833 : Albany, NY +12208 : 42.654978 : -73.80053 : Albany, NY +12209 : 42.640813 : -73.7856 : Albany, NY +12210 : 42.656679 : -73.75894 : Albany, NY +12211 : 42.705345 : -73.76924 : Albany, NY +12212 : 42.716774 : -73.810373 : Albany, NY +12214 : 42.614852 : -73.970812 : Albany, NY +12220 : 42.614852 : -73.970812 : Albany, NY +12222 : 42.692909 : -73.838035 : Albany, NY +12223 : 42.614852 : -73.970812 : Albany, NY +12224 : 42.614852 : -73.970812 : Albany, NY +12225 : 42.614852 : -73.970812 : Albany, NY +12226 : 42.614852 : -73.970812 : Albany, NY +12227 : 42.614852 : -73.970812 : Albany, NY +12228 : 42.614852 : -73.970812 : Albany, NY +12229 : 42.614852 : -73.970812 : Albany, NY +12230 : 42.614852 : -73.970812 : Albany, NY +12231 : 42.614852 : -73.970812 : Albany, NY +12232 : 42.614852 : -73.970812 : Albany, NY +12233 : 42.614852 : -73.970812 : Albany, NY +12234 : 42.614852 : -73.970812 : Albany, NY +12235 : 42.614852 : -73.970812 : Albany, NY +12236 : 42.614852 : -73.970812 : Albany, NY +12237 : 42.614852 : -73.970812 : Albany, NY +12238 : 42.614852 : -73.970812 : Albany, NY +12239 : 42.614852 : -73.970812 : Albany, NY +12240 : 42.614852 : -73.970812 : Albany, NY +12241 : 42.614852 : -73.970812 : Albany, NY +12242 : 42.614852 : -73.970812 : Albany, NY +12243 : 42.614852 : -73.970812 : Albany, NY +12244 : 42.614852 : -73.970812 : Albany, NY +12245 : 42.614852 : -73.970812 : Albany, NY +12246 : 42.647079 : -73.750314 : Albany, NY +12247 : 42.614852 : -73.970812 : Albany, NY +12248 : 42.614852 : -73.970812 : Albany, NY +12249 : 42.614852 : -73.970812 : Albany, NY +12250 : 42.614852 : -73.970812 : Albany, NY +12252 : 42.614852 : -73.970812 : Albany, NY +12255 : 42.614852 : -73.970812 : Albany, NY +12256 : 42.614852 : -73.970812 : Albany, NY +12257 : 42.614852 : -73.970812 : Albany, NY +12260 : 42.614852 : -73.970812 : Albany, NY +12261 : 42.614852 : -73.970812 : Albany, NY +12262 : 42.614852 : -73.970812 : Albany, NY +12288 : 42.614852 : -73.970812 : Albany, NY +12301 : 42.833261 : -74.058015 : Schenectady, NY +12302 : 42.862193 : -73.96317 : Schenectady, NY +12303 : 42.769009 : -73.93619 : Schenectady, NY +12304 : 42.779026 : -73.90507 : Schenectady, NY +12305 : 42.814476 : -73.94337 : Schenectady, NY +12306 : 42.793326 : -73.98942 : Schenectady, NY +12307 : 42.804076 : -73.93571 : Schenectady, NY +12308 : 42.820909 : -73.92002 : Schenectady, NY +12309 : 42.800276 : -73.88096 : Schenectady, NY +12325 : 42.833261 : -74.058015 : Schenectady, NY +12345 : 42.833261 : -74.058015 : Schenectady, NY +12401 : 41.932315 : -74.02259 : Kingston, NY +12402 : 41.878801 : -74.345684 : Kingston, NY +12404 : 41.811322 : -74.23471 : Accord, NY +12405 : 42.320081 : -74.07288 : Acra, NY +12406 : 42.130111 : -74.57574 : Arkville, NY +12407 : 42.321453 : -74.33926 : Ashland, NY +12409 : 42.061841 : -74.16063 : Bearsville, NY +12410 : 42.114646 : -74.4557 : Big Indian, NY +12411 : 41.87916 : -74.03995 : Bloomington, NY +12412 : 42.001351 : -74.2619 : Boiceville, NY +12413 : 42.307982 : -74.008 : Cairo, NY +12414 : 42.223002 : -73.90452 : Catskill, NY +12416 : 42.105611 : -74.29143 : Chichester, NY +12417 : 41.907604 : -73.989254 : Connelly, NY +12418 : 42.357579 : -74.15136 : Cornwallville, NY +12419 : 41.852449 : -74.10605 : Cottekill, NY +12420 : 41.674288 : -74.37833 : Cragsmoor, NY +12421 : 42.249541 : -74.54558 : Denver, NY +12422 : 42.390291 : -74.20164 : Durham, NY +12423 : 42.378679 : -74.10443 : East Durham, NY +12424 : 42.240343 : -74.15932 : East Jewett, NY +12427 : 42.167622 : -74.15306 : Elka Park, NY +12428 : 41.727588 : -74.42061 : Ellenville, NY +12429 : 41.816628 : -73.97824 : Esopus, NY +12430 : 42.183262 : -74.52154 : Fleischmanns, NY +12431 : 42.361838 : -74.02471 : Freehold, NY +12432 : 41.949795 : -74.003246 : Glasco, NY +12433 : 42.000093 : -74.15946 : Glenford, NY +12434 : 42.368009 : -74.50137 : Grand Gorge, NY +12435 : 41.725808 : -74.52106 : Greenfield Park, NY +12436 : 42.19551 : -74.102319 : Haines Falls, NY +12438 : 42.183045 : -74.925617 : Halcottsville, NY +12439 : 42.302596 : -74.22711 : Hensonville, NY +12440 : 41.801696 : -74.14187 : High Falls, NY +12441 : 41.878801 : -74.345684 : Highmount, NY +12442 : 42.222061 : -74.23418 : Hunter, NY +12443 : 41.92674 : -74.06797 : Hurley, NY +12444 : 42.260634 : -74.27527 : Jewett, NY +12446 : 41.790385 : -74.30413 : Kerhonkson, NY +12447 : 42.039355 : -74.067014 : Saugerties, NY +12448 : 42.073259 : -74.1893 : Lake Hill, NY +12449 : 41.993639 : -73.99843 : Lake Katrine, NY +12450 : 42.157937 : -74.23034 : Lanesville, NY +12451 : 42.281117 : -73.94006 : Leeds, NY +12452 : 42.223407 : -74.386635 : Lexington, NY +12453 : 42.098698 : -73.935418 : Malden On Hudson, NY +12454 : 42.280261 : -74.18349 : Maplecrest, NY +12455 : 42.151449 : -74.64261 : Margaretville, NY +12456 : 42.034256 : -73.99876 : Mount Marion, NY +12457 : 42.038539 : -74.23905 : Mount Tremper, NY +12458 : 41.802898 : -74.40025 : Napanoch, NY +12459 : 42.227987 : -74.68912 : New Kingston, NY +12460 : 42.406464 : -74.15692 : Oak Hill, NY +12461 : 41.912356 : -74.24724 : Olivebridge, NY +12463 : 42.174411 : -74.01599 : Palenville, NY +12464 : 42.081269 : -74.32629 : Phoenicia, NY +12465 : 42.136293 : -74.473639 : Pine Hill, NY +12466 : 41.905004 : -73.97957 : Port Ewen, NY +12468 : 42.297725 : -74.40063 : Prattsville, NY +12469 : 42.442592 : -74.24159 : Preston Hollow, NY +12470 : 42.284773 : -74.02388 : Purling, NY +12471 : 41.83962 : -74.04033 : Rifton, NY +12472 : 41.846938 : -74.07602 : Rosendale, NY +12473 : 42.260709 : -74.03078 : Round Top, NY +12474 : 42.285644 : -74.59011 : Roxbury, NY +12475 : 42.017632 : -74.007868 : Ruby, NY +12477 : 42.085634 : -73.97685 : Saugerties, NY +12480 : 42.142121 : -74.4065 : Shandaken, NY +12481 : 41.974857 : -74.20686 : Shokan, NY +12482 : 42.270559 : -73.95729 : South Cairo, NY +12483 : 41.663895 : -74.424533 : Spring Glen, NY +12484 : 41.850294 : -74.16619 : Stone Ridge, NY +12485 : 42.199479 : -74.12514 : Tannersville, NY +12486 : 41.831082 : -74.07207 : Tillson, NY +12487 : 41.855761 : -73.99207 : Ulster Park, NY +12489 : 41.757766 : -74.35392 : Wawarsing, NY +12490 : 42.108689 : -73.934577 : West Camp, NY +12491 : 41.998199 : -74.10967 : West Hurley, NY +12492 : 42.209414 : -74.34767 : West Kill, NY +12493 : 41.805576 : -73.96845 : West Park, NY +12494 : 41.961316 : -74.27687 : West Shokan, NY +12495 : 42.080232 : -74.24801 : Willow, NY +12496 : 42.326918 : -74.24657 : Windham, NY +12498 : 42.037356 : -74.11016 : Woodstock, NY +12501 : 41.852959 : -73.55727 : Amenia, NY +12502 : 42.086628 : -73.6642 : Ancram, NY +12503 : 42.045941 : -73.57792 : Ancramdale, NY +12504 : 42.035434 : -73.909234 : Annandale On Hudson, NY +12506 : 41.759905 : -73.743714 : Bangall, NY +12507 : 42.005984 : -73.92132 : Barrytown, NY +12508 : 41.505993 : -73.96198 : Beacon, NY +12509 : 41.643599 : -73.847176 : La Grange, NY +12510 : 41.759905 : -73.743714 : Billings, NY +12511 : 41.759905 : -73.743714 : Castle Point, NY +12512 : 41.552793 : -73.968183 : Chelsea, NY +12513 : 42.220962 : -73.71182 : Claverack, NY +12514 : 41.874183 : -73.76727 : Clinton Corners, NY +12515 : 41.681096 : -74.06421 : Clintondale, NY +12516 : 42.112895 : -73.56201 : Copake, NY +12517 : 42.144585 : -73.51463 : Copake Falls, NY +12518 : 41.434476 : -74.03584 : Cornwall, NY +12520 : 41.442589 : -74.01389 : Cornwall On Hudson, NY +12521 : 42.176216 : -73.65036 : Craryville, NY +12522 : 41.738853 : -73.58921 : Dover Plains, NY +12523 : 42.080964 : -73.77856 : Elizaville, NY +12524 : 41.537232 : -73.8972 : Fishkill, NY +12525 : 41.691524 : -74.18764 : Gardiner, NY +12526 : 42.123977 : -73.86199 : Germantown, NY +12527 : 41.520249 : -73.933259 : Glenham, NY +12528 : 41.713682 : -73.9965 : Highland, NY +12529 : 42.204681 : -73.54775 : Hillsdale, NY +12530 : 42.210991 : -73.687001 : Hollowville, NY +12531 : 41.519085 : -73.67241 : Holmes, NY +12533 : 41.573253 : -73.79347 : Hopewell Junction, NY +12534 : 42.22948 : -73.75846 : Hudson, NY +12537 : 41.582437 : -73.936281 : Hughsonville, NY +12538 : 41.779541 : -73.90155 : Hyde Park, NY +12540 : 41.656933 : -73.74539 : Lagrangeville, NY +12541 : 42.142068 : -73.757399 : Livingston, NY +12542 : 41.603333 : -73.98415 : Marlboro, NY +12543 : 41.484988 : -74.2161 : Maybrook, NY +12544 : 42.259623 : -73.667962 : Mellenville, NY +12545 : 41.785109 : -73.68075 : Millbrook, NY +12546 : 41.961002 : -73.52011 : Millerton, NY +12547 : 41.656805 : -73.96831 : Milton, NY +12548 : 41.664239 : -74.1106 : Modena, NY +12549 : 41.520396 : -74.24712 : Montgomery, NY +12550 : 41.521593 : -74.04072 : Newburgh, NY +12551 : 41.387822 : -74.354699 : Newburgh, NY +12552 : 41.387822 : -74.354699 : Newburgh, NY +12553 : 41.46359 : -74.05975 : New Windsor, NY +12555 : 41.387822 : -74.354699 : Mid Hudson, NY +12557 : 41.507368 : -74.061301 : Newburgh, NY +12561 : 41.751566 : -74.09475 : New Paltz, NY +12563 : 41.483689 : -73.57293 : Patterson, NY +12564 : 41.570328 : -73.59825 : Pawling, NY +12565 : 42.24862 : -73.6476 : Philmont, NY +12566 : 41.61134 : -74.32764 : Pine Bush, NY +12567 : 41.997807 : -73.66663 : Pine Plains, NY +12568 : 41.641207 : -74.07805 : Plattekill, NY +12569 : 41.746469 : -73.80414 : Pleasant Valley, NY +12570 : 41.614667 : -73.67709 : Poughquag, NY +12571 : 42.002691 : -73.8442 : Red Hook, NY +12572 : 41.930983 : -73.88271 : Rhinebeck, NY +12574 : 41.915068 : -73.95173 : Rhinecliff, NY +12575 : 41.478722 : -74.15626 : Rock Tavern, NY +12577 : 41.433856 : -74.11963 : Salisbury Mills, NY +12578 : 41.803384 : -73.78147 : Salt Point, NY +12580 : 41.854465 : -73.89922 : Staatsburg, NY +12581 : 41.89187 : -73.69888 : Stanfordville, NY +12582 : 41.549525 : -73.72745 : Stormville, NY +12583 : 42.060034 : -73.88393 : Tivoli, NY +12584 : 41.464073 : -74.059104 : Vails Gate, NY +12585 : 41.721384 : -73.7162 : Verbank, NY +12586 : 41.563701 : -74.1755 : Walden, NY +12588 : 41.878801 : -74.345684 : Walker Valley, NY +12589 : 41.615036 : -74.15461 : Wallkill, NY +12590 : 41.59466 : -73.89579 : Wappingers Falls, NY +12592 : 41.782781 : -73.55792 : Wassaic, NY +12593 : 42.243991 : -73.641076 : West Copake, NY +12594 : 41.646584 : -73.56209 : Wingdale, NY +12601 : 41.701443 : -73.91922 : Poughkeepsie, NY +12602 : 41.759905 : -73.743714 : Poughkeepsie, NY +12603 : 41.67086 : -73.88107 : Poughkeepsie, NY +12604 : 41.759905 : -73.743714 : Poughkeepsie, NY +12697 : 44.776061 : -74.596249 : Moira, NY +12701 : 41.653071 : -74.69748 : Monticello, NY +12710 : 41.818926 : -74.521638 : Neversink, NY +12719 : 41.480326 : -74.92694 : Barryville, NY +12720 : 41.66023 : -74.90438 : Bethel, NY +12721 : 41.564426 : -74.4265 : Bloomingburg, NY +12722 : 41.719016 : -74.755373 : Burlingham, NY +12723 : 41.769427 : -75.02808 : Callicoon, NY +12724 : 41.858278 : -74.95034 : Callicoon Center, NY +12725 : 41.926119 : -74.55675 : Claryville, NY +12726 : 41.694153 : -74.97593 : Cochecton, NY +12727 : 41.657225 : -74.98161 : Cochecton Center, NY +12729 : 41.475235 : -74.60276 : Cuddebackville, NY +12732 : 41.545318 : -74.87533 : Eldred, NY +12733 : 41.732505 : -74.60896 : Fallsburg, NY +12734 : 41.734913 : -74.75013 : Ferndale, NY +12736 : 41.848244 : -75.03878 : Fremont Center, NY +12737 : 41.48397 : -74.81186 : Glen Spey, NY +12738 : 41.648888 : -74.57064 : Glen Wild, NY +12739 : 41.437427 : -74.60322 : Godeffroy, NY +12740 : 41.85304 : -74.52915 : Grahamsville, NY +12741 : 41.838672 : -75.08718 : Hankins, NY +12742 : 41.720235 : -74.72901 : Harris, NY +12743 : 41.53481 : -74.84656 : Highland Lake, NY +12745 : 41.762944 : -75.030592 : Hortonville, NY +12746 : 41.436732 : -74.64558 : Huguenot, NY +12747 : 41.752458 : -74.66996 : Hurleyville, NY +12748 : 41.774223 : -74.92211 : Jeffersonville, NY +12749 : 41.6896 : -74.8272 : Kauneonga Lake, NY +12750 : 41.729581 : -74.961146 : Kenoza Lake, NY +12751 : 41.679152 : -74.657 : Kiamesha Lake, NY +12752 : 41.677243 : -74.99109 : Lake Huntington, NY +12754 : 41.798476 : -74.7361 : Liberty, NY +12755 : 44.842975 : -73.973533 : Ellenburg, NY +12756 : 41.900542 : -74.827587 : Livingston Manor, NY +12758 : 41.920201 : -74.7857 : Livingston Manor, NY +12759 : 41.780299 : -74.65618 : Loch Sheldrake, NY +12760 : 41.901849 : -75.10493 : Long Eddy, NY +12762 : 41.676676 : -74.80674 : Mongaup Valley, NY +12763 : 41.690795 : -74.52273 : Mountain Dale, NY +12764 : 41.588604 : -74.99385 : Narrowsburg, NY +12765 : 41.845381 : -74.61427 : Neversink, NY +12766 : 41.815316 : -74.97995 : North Branch, NY +12767 : 41.719016 : -74.755373 : Obernburg, NY +12768 : 41.864326 : -74.72961 : Parksville, NY +12769 : 41.651453 : -74.436159 : Phillipsport, NY +12770 : 41.44515 : -74.84003 : Pond Eddy, NY +12771 : 41.374734 : -74.66315 : Port Jervis, NY +12775 : 41.614218 : -74.58836 : Rock Hill, NY +12776 : 41.94836 : -74.94475 : Roscoe, NY +12777 : 41.562141 : -74.71252 : Forestburgh, NY +12778 : 41.65974 : -74.812 : Smallwood, NY +12779 : 41.705649 : -74.62985 : South Fallsburg, NY +12780 : 41.429425 : -74.72244 : Sparrow Bush, NY +12781 : 41.719016 : -74.755373 : Summitville, NY +12782 : 41.881485 : -74.430063 : Sundown, NY +12783 : 41.736523 : -74.82634 : Swan Lake, NY +12784 : 41.676139 : -74.6217 : Thompsonville, NY +12785 : 41.518125 : -74.57566 : Westbrookville, NY +12786 : 41.649008 : -74.85751 : White Lake, NY +12787 : 41.80854 : -74.84599 : White Sulphur Springs, NY +12788 : 41.784477 : -74.59109 : Woodbourne, NY +12789 : 41.708062 : -74.5698 : Woodridge, NY +12790 : 41.592087 : -74.50677 : Wurtsboro, NY +12791 : 41.807694 : -74.87957 : Youngsville, NY +12792 : 41.522825 : -74.93164 : Yulan, NY +12793 : 41.736963 : -74.797524 : Bethel, NY +12801 : 43.312104 : -73.64825 : Glens Falls, NY +12803 : 43.288818 : -73.63643 : South Glens Falls, NY +12804 : 43.330471 : -73.67816 : Queensbury, NY +12805 : 43.246117 : -73.455519 : Argyle, NY +12807 : 42.425733 : -73.899871 : New Baltimore, NY +12808 : 43.758733 : -73.76206 : Adirondack, NY +12809 : 43.229054 : -73.4674 : Argyle, NY +12810 : 43.484741 : -73.89151 : Athol, NY +12811 : 43.62422 : -74.061201 : Bakers Mills, NY +12812 : 43.865351 : -74.43366 : Blue Mountain Lake, NY +12814 : 43.582318 : -73.65515 : Bolton Landing, NY +12815 : 43.703484 : -73.71123 : Brant Lake, NY +12816 : 43.039226 : -73.38557 : Cambridge, NY +12817 : 43.638919 : -73.81782 : Chestertown, NY +12819 : 43.583211 : -73.47852 : Clemons, NY +12820 : 43.47181 : -73.639291 : Cleverdale, NY +12821 : 43.461692 : -73.40197 : Comstock, NY +12822 : 43.248892 : -73.85172 : Corinth, NY +12823 : 43.178983 : -73.40767 : Cossayuna, NY +12824 : 43.50964 : -73.69776 : Diamond Point, NY +12825 : 42.973468 : -74.406393 : Queensbury, NY +12827 : 43.414017 : -73.50464 : Fort Ann, NY +12828 : 43.253125 : -73.58549 : Fort Edward, NY +12830 : 43.12943 : -73.712415 : Wilton, NY +12831 : 43.174566 : -73.68848 : Gansevoort, NY +12832 : 43.376197 : -73.31153 : Granville, NY +12833 : 43.128878 : -73.8555 : Greenfield Center, NY +12834 : 43.095447 : -73.50177 : Greenwich, NY +12835 : 43.292593 : -73.978 : Hadley, NY +12836 : 43.750773 : -73.51881 : Hague, NY +12837 : 43.500423 : -73.26044 : Hampton, NY +12838 : 43.345875 : -73.40651 : Hartford, NY +12839 : 43.316622 : -73.5735 : Hudson Falls, NY +12841 : 43.642332 : -73.50948 : Huletts Landing, NY +12842 : 43.761451 : -74.26631 : Indian Lake, NY +12843 : 43.569961 : -73.98345 : Johnsburg, NY +12844 : 43.495335 : -73.62987 : Kattskill Bay, NY +12845 : 43.41928 : -73.70766 : Lake George, NY +12846 : 43.329851 : -73.82911 : Lake Luzerne, NY +12847 : 43.97643 : -74.56669 : Long Lake, NY +12848 : 43.100123 : -73.524554 : Middle Falls, NY +12849 : 43.433107 : -73.29152 : Middle Granville, NY +12850 : 43.092312 : -73.97033 : Middle Grove, NY +12851 : 43.841369 : -74.03747 : Minerva, NY +12852 : 43.972307 : -74.15321 : Newcomb, NY +12853 : 43.683067 : -73.97457 : North Creek, NY +12854 : 43.452517 : -73.34095 : North Granville, NY +12855 : 43.996303 : -73.72147 : North Hudson, NY +12856 : 43.722082 : -74.10546 : North River, NY +12857 : 43.795443 : -73.93994 : Olmstedville, NY +12858 : 43.888754 : -73.65812 : Paradox, NY +12859 : 43.182144 : -73.88689 : Porter Corners, NY +12860 : 43.719612 : -73.81116 : Pottersville, NY +12861 : 43.74531 : -73.41569 : Putnam Station, NY +12862 : 43.675377 : -73.932509 : Riparius, NY +12863 : 43.067531 : -73.93002 : Rock City Falls, NY +12864 : 43.667618 : -74.456913 : Sabael, NY +12865 : 43.200351 : -73.3526 : Salem, NY +12866 : 43.080399 : -73.77038 : Saratoga Springs, NY +12870 : 43.835376 : -73.75802 : Schroon Lake, NY +12871 : 43.088919 : -73.59633 : Schuylerville, NY +12872 : 44.145678 : -73.815204 : Severance, NY +12873 : 43.11595 : -73.31852 : Shushan, NY +12874 : 43.685475 : -73.50767 : Silver Bay, NY +12877 : 43.618466 : -73.354596 : Whitehall, NY +12878 : 43.426652 : -73.96174 : Stony Creek, NY +12879 : 44.145678 : -73.815204 : Newcomb, NY +12883 : 43.858226 : -73.45414 : Ticonderoga, NY +12884 : 43.088397 : -73.591652 : Victory Mills, NY +12885 : 43.538744 : -73.80527 : Warrensburg, NY +12886 : 43.638462 : -73.91693 : Wevertown, NY +12887 : 43.547822 : -73.38318 : Whitehall, NY +12901 : 44.693271 : -73.46617 : Plattsburgh, NY +12903 : 44.683468 : -73.44639 : Plattsburgh, NY +12910 : 44.879986 : -73.65694 : Altona, NY +12911 : 44.530527 : -73.46734 : Keeseville, NY +12912 : 44.466008 : -73.73441 : Au Sable Forks, NY +12913 : 44.421547 : -73.99256 : Bloomingdale, NY +12914 : 44.927856 : -74.60211 : Bombay, NY +12915 : 44.552725 : -74.317958 : Brainardsville, NY +12916 : 44.830736 : -74.51434 : Brushton, NY +12917 : 44.915973 : -74.16565 : Burke, NY +12918 : 44.692862 : -73.66667 : Cadyville, NY +12919 : 44.965887 : -73.43636 : Champlain, NY +12920 : 44.901543 : -74.06054 : Chateaugay, NY +12921 : 44.88821 : -73.43225 : Chazy, NY +12922 : 44.224185 : -74.76539 : Childwold, NY +12923 : 44.948894 : -73.96545 : Churubusco, NY +12924 : 44.706561 : -73.744555 : Keeseville, NY +12926 : 44.953782 : -74.32809 : Constable, NY +12927 : 44.220971 : -74.85053 : Cranberry Lake, NY +12928 : 43.95037 : -73.48357 : Crown Point, NY +12929 : 44.847709 : -73.582317 : Dannemora, NY +12930 : 44.731571 : -74.53485 : Dickinson Center, NY +12932 : 44.212623 : -73.59542 : Elizabethtown, NY +12933 : 44.881962 : -73.963279 : Ellenburg, NY +12934 : 44.865972 : -73.89584 : Ellenburg Center, NY +12935 : 44.83218 : -73.80001 : Ellenburg Depot, NY +12936 : 44.259479 : -73.40591 : Essex, NY +12937 : 44.972087 : -74.48703 : Fort Covington, NY +12938 : 41.773053 : -73.856116 : Pleasant Valley, NY +12939 : 44.552725 : -74.317958 : Gabriels, NY +12941 : 44.3919 : -73.73028 : Jay, NY +12942 : 44.25462 : -73.78934 : Keene, NY +12943 : 44.171625 : -73.78131 : Keene Valley, NY +12944 : 44.483465 : -73.4801 : Keeseville, NY +12945 : 44.360566 : -74.25801 : Lake Clear, NY +12946 : 44.292147 : -73.95985 : Lake Placid, NY +12949 : 44.746861 : -74.660413 : Lawrenceville, NY +12950 : 44.322102 : -73.5404 : Lewis, NY +12952 : 44.715159 : -73.91824 : Lyon Mountain, NY +12953 : 44.813419 : -74.2772 : Malone, NY +12955 : 44.787489 : -73.98702 : Lyon Mountain, NY +12956 : 44.088275 : -73.51745 : Mineville, NY +12957 : 44.833996 : -74.5716 : Moira, NY +12958 : 44.958106 : -73.58022 : Mooers, NY +12959 : 44.951443 : -73.68023 : Mooers Forks, NY +12960 : 44.025573 : -73.51287 : Moriah, NY +12961 : 44.061849 : -73.58384 : Moriah Center, NY +12962 : 44.711769 : -73.58219 : Morrisonville, NY +12964 : 44.129094 : -73.64792 : New Russia, NY +12965 : 44.698253 : -74.68843 : Nicholville, NY +12966 : 44.812315 : -74.40784 : North Bangor, NY +12967 : 44.784144 : -74.66213 : North Lawrence, NY +12969 : 44.711622 : -74.09679 : Owls Head, NY +12970 : 44.454639 : -74.28753 : Paul Smiths, NY +12972 : 44.563323 : -73.52307 : Peru, NY +12973 : 44.234289 : -74.555957 : Piercefield, NY +12974 : 44.041901 : -73.46132 : Port Henry, NY +12975 : 44.526437 : -73.409243 : Port Kent, NY +12976 : 44.552725 : -74.317958 : Rainbow Lake, NY +12977 : 44.145678 : -73.815204 : Ray Brook, NY +12978 : 44.664956 : -73.761204 : Redford, NY +12979 : 44.990606 : -73.37017 : Rouses Point, NY +12980 : 44.63091 : -74.53721 : Saint Regis Falls, NY +12981 : 44.617642 : -73.81196 : Saranac, NY +12983 : 44.324736 : -74.16843 : Saranac Lake, NY +12985 : 44.589583 : -73.71355 : Schuyler Falls, NY +12986 : 44.220344 : -74.46299 : Tupper Lake, NY +12987 : 44.329473 : -73.79282 : Upper Jay, NY +12989 : 44.519178 : -74.06053 : Vermontville, NY +12992 : 44.819829 : -73.51156 : West Chazy, NY +12993 : 44.195201 : -73.47194 : Westport, NY +12995 : 44.805681 : -74.252254 : Whippleville, NY +12996 : 44.373007 : -73.40668 : Willsboro, NY +12997 : 44.145678 : -73.815204 : Wilmington, NY +12998 : 44.08267 : -73.530601 : Witherbee, NY +13020 : 42.823968 : -76.062425 : Apulia Station, NY +13021 : 42.922273 : -76.55882 : Auburn, NY +13022 : 43.163364 : -76.509567 : Auburn, NY +13024 : 43.163364 : -76.509567 : Auburn, NY +13026 : 42.758088 : -76.66998 : Aurora, NY +13027 : 43.165134 : -76.33901 : Baldwinsville, NY +13028 : 43.279405 : -75.93107 : Bernhards Bay, NY +13029 : 43.225081 : -76.13966 : Brewerton, NY +13030 : 43.164297 : -75.96057 : Bridgeport, NY +13031 : 43.039916 : -76.28757 : Camillus, NY +13032 : 43.086439 : -75.76484 : Canastota, NY +13033 : 43.182054 : -76.57176 : Cato, NY +13034 : 42.912846 : -76.70818 : Cayuga, NY +13035 : 42.938816 : -75.83037 : Cazenovia, NY +13036 : 43.299689 : -76.15144 : Central Square, NY +13037 : 43.059992 : -75.87116 : Chittenango, NY +13039 : 43.171707 : -76.09505 : Cicero, NY +13040 : 42.560795 : -75.93241 : Cincinnatus, NY +13041 : 43.1835 : -76.18002 : Clay, NY +13042 : 43.252084 : -75.84853 : Cleveland, NY +13043 : 43.042044 : -75.740848 : Clockville, NY +13044 : 43.28547 : -76.00138 : Constantia, NY +13045 : 42.591109 : -76.19217 : Cortland, NY +13051 : 42.870698 : -75.91128 : Delphi Falls, NY +13052 : 42.728977 : -75.86633 : De Ruyter, NY +13053 : 42.483348 : -76.27901 : Dryden, NY +13054 : 43.165514 : -75.68091 : Durhamville, NY +13056 : 42.677155 : -76.105201 : East Homer, NY +13057 : 43.074266 : -76.05538 : East Syracuse, NY +13060 : 43.025843 : -76.42589 : Elbridge, NY +13061 : 42.859332 : -75.74261 : Erieville, NY +13062 : 42.484414 : -76.38271 : Etna, NY +13063 : 42.847248 : -75.97818 : Fabius, NY +13064 : 43.431311 : -76.200448 : Fair Haven, NY +13065 : 42.822662 : -76.80197 : Fayette, NY +13066 : 43.028516 : -76.00876 : Fayetteville, NY +13068 : 42.505075 : -76.35283 : Freeville, NY +13069 : 43.32347 : -76.40029 : Fulton, NY +13071 : 42.677418 : -76.54154 : Genoa, NY +13072 : 42.763823 : -75.75188 : Georgetown, NY +13073 : 42.591961 : -76.39345 : Groton, NY +13074 : 43.317683 : -76.56767 : Hannibal, NY +13076 : 43.354706 : -76.14871 : Hastings, NY +13077 : 42.680693 : -76.18566 : Homer, NY +13078 : 42.973991 : -76.07493 : Jamesville, NY +13080 : 43.07446 : -76.47874 : Jordan, NY +13081 : 42.667102 : -76.62939 : King Ferry, NY +13082 : 43.099547 : -75.9619 : Kirkville, NY +13083 : 43.647881 : -76.0167 : Lacona, NY +13084 : 42.883503 : -76.10983 : La Fayette, NY +13087 : 42.706981 : -76.156103 : Little York, NY +13088 : 43.105917 : -76.19365 : Liverpool, NY +13089 : 43.02143 : -76.197701 : Liverpool, NY +13090 : 43.152017 : -76.22068 : Liverpool, NY +13092 : 42.643214 : -76.42578 : Locke, NY +13093 : 43.431311 : -76.200448 : Lycoming, NY +13101 : 42.593363 : -76.07789 : McGraw, NY +13102 : 42.554215 : -76.292723 : McLean, NY +13103 : 43.339851 : -76.096357 : Mallory, NY +13104 : 42.987329 : -75.96763 : Manlius, NY +13107 : 43.457798 : -76.153442 : Maple View, NY +13108 : 42.979467 : -76.33811 : Marcellus, NY +13110 : 42.891595 : -76.28318 : Marietta, NY +13111 : 43.258952 : -76.61441 : Martville, NY +13112 : 43.105771 : -76.41482 : Memphis, NY +13113 : 43.089111 : -76.621747 : Meridian, NY +13114 : 43.468092 : -76.2382 : Mexico, NY +13115 : 43.397671 : -76.482365 : Minetto, NY +13116 : 43.077067 : -76.00695 : Minoa, NY +13117 : 43.002267 : -76.704722 : Montezuma, NY +13118 : 42.755698 : -76.41226 : Moravia, NY +13119 : 42.97446 : -76.440833 : Mottville, NY +13120 : 42.950501 : -76.15797 : Nedrow, NY +13121 : 43.483379 : -76.315044 : New Haven, NY +13122 : 42.837642 : -75.84778 : New Woodstock, NY +13123 : 43.236407 : -75.776918 : North Bay, NY +13124 : 42.639288 : -75.82012 : North Pitcher, NY +13126 : 43.449201 : -76.47992 : Oswego, NY +13129 : 42.712735 : -75.731391 : Georgetown, NY +13131 : 43.415157 : -76.11416 : Parish, NY +13132 : 43.262012 : -76.22912 : Pennellville, NY +13133 : 42.216968 : -75.724015 : Colesville, NY +13134 : 42.968619 : -75.679351 : Peterboro, NY +13135 : 43.235916 : -76.31339 : Phoenix, NY +13136 : 42.607076 : -75.85216 : Pitcher, NY +13137 : 43.157653 : -76.44698 : Plainville, NY +13138 : 42.89274 : -76.026459 : Pompey, NY +13139 : 42.742057 : -76.628454 : Poplar Ridge, NY +13140 : 43.049797 : -76.66055 : Port Byron, NY +13141 : 42.7707 : -76.18642 : Preble, NY +13142 : 43.559926 : -76.13619 : Pulaski, NY +13143 : 43.235909 : -76.71545 : Red Creek, NY +13144 : 43.560754 : -75.99069 : Richland, NY +13145 : 43.653475 : -76.13214 : Sandy Creek, NY +13146 : 43.09986 : -76.75716 : Savannah, NY +13147 : 42.774714 : -76.57045 : Scipio Center, NY +13148 : 42.924166 : -76.78366 : Seneca Falls, NY +13149 : 42.718259 : -76.149045 : Preble, NY +13152 : 42.897167 : -76.38963 : Skaneateles, NY +13153 : 42.991112 : -76.451147 : Skaneateles Falls, NY +13154 : 43.134425 : -76.765591 : South Butler, NY +13155 : 42.662648 : -75.76265 : South Otselic, NY +13156 : 43.337718 : -76.6729 : Sterling, NY +13157 : 43.209147 : -75.72307 : Sylvan Beach, NY +13158 : 42.717801 : -75.97209 : Truxton, NY +13159 : 42.802031 : -76.12717 : Tully, NY +13160 : 42.832007 : -76.66641 : Union Springs, NY +13162 : 43.18852 : -75.712551 : Verona Beach, NY +13163 : 43.078461 : -75.701639 : Wampsville, NY +13164 : 43.088699 : -76.31946 : Warners, NY +13165 : 42.911377 : -76.87027 : Waterloo, NY +13166 : 43.056292 : -76.5563 : Weedsport, NY +13167 : 43.309645 : -76.0552 : West Monroe, NY +13201 : 43.02143 : -76.197701 : Syracuse, NY +13202 : 43.045066 : -76.14994 : Syracuse, NY +13203 : 43.061116 : -76.13733 : Syracuse, NY +13204 : 43.048966 : -76.17536 : Syracuse, NY +13205 : 43.010916 : -76.14501 : Syracuse, NY +13206 : 43.069866 : -76.10724 : Syracuse, NY +13207 : 43.020116 : -76.16406 : Syracuse, NY +13208 : 43.074566 : -76.14747 : Syracuse, NY +13209 : 43.081324 : -76.23488 : Syracuse, NY +13210 : 43.037166 : -76.12653 : Syracuse, NY +13211 : 43.098917 : -76.13688 : Syracuse, NY +13212 : 43.128534 : -76.13931 : Syracuse, NY +13214 : 43.038099 : -76.07635 : Syracuse, NY +13215 : 42.996804 : -76.2177 : Syracuse, NY +13217 : 43.02143 : -76.197701 : Syracuse, NY +13218 : 43.02143 : -76.197701 : Syracuse, NY +13219 : 43.041566 : -76.22072 : Syracuse, NY +13220 : 43.123415 : -76.12823 : Syracuse, NY +13221 : 43.02143 : -76.197701 : Syracuse, NY +13224 : 43.041866 : -76.1032 : Syracuse, NY +13225 : 43.02143 : -76.197701 : Syracuse, NY +13244 : 43.037716 : -76.139646 : Syracuse, NY +13250 : 43.02143 : -76.197701 : Syracuse, NY +13251 : 43.02143 : -76.197701 : Syracuse, NY +13252 : 43.050966 : -76.156696 : Syracuse, NY +13260 : 43.02143 : -76.197701 : Syracuse, NY +13261 : 43.02143 : -76.197701 : Syracuse, NY +13290 : 43.075066 : -76.17411 : Syracuse, NY +13301 : 43.419132 : -75.21942 : Alder Creek, NY +13302 : 43.499843 : -75.97716 : Altmar, NY +13303 : 43.368235 : -75.4688 : Ava, NY +13304 : 43.242724 : -75.1659 : Barneveld, NY +13305 : 43.818705 : -75.480342 : Beaver Falls, NY +13308 : 43.236303 : -75.68087 : Blossvale, NY +13309 : 43.484783 : -75.33559 : Boonville, NY +13310 : 42.88821 : -75.5688 : Bouckville, NY +13312 : 43.689564 : -75.27252 : Brantingham, NY +13313 : 42.87896 : -75.25569 : Bridgewater, NY +13314 : 42.832184 : -75.32106 : Brookfield, NY +13315 : 42.728271 : -75.14144 : Burlington Flats, NY +13316 : 43.377083 : -75.74261 : Camden, NY +13317 : 42.86749 : -74.57435 : Canajoharie, NY +13318 : 42.937739 : -75.24946 : Cassville, NY +13319 : 43.029669 : -75.27211 : Chadwicks, NY +13320 : 42.772775 : -74.7359 : Cherry Valley, NY +13321 : 43.090027 : -75.387088 : Clark Mills, NY +13322 : 42.969624 : -75.22603 : Clayville, NY +13323 : 43.049536 : -75.37656 : Clinton, NY +13324 : 43.317064 : -74.97449 : Cold Brook, NY +13325 : 43.570028 : -75.49047 : Constableville, NY +13326 : 42.703091 : -74.91413 : Cooperstown, NY +13327 : 43.932489 : -75.29084 : Croghan, NY +13328 : 42.9843 : -75.4224 : Deansboro, NY +13329 : 43.11545 : -74.74379 : Dolgeville, NY +13331 : 43.822824 : -74.87283 : Eagle Bay, NY +13332 : 42.752447 : -75.56997 : Earlville, NY +13333 : 42.843048 : -74.80882 : East Springfield, NY +13334 : 42.83917 : -75.65482 : Eaton, NY +13335 : 42.694896 : -75.24214 : Edmeston, NY +13337 : 42.743186 : -74.98164 : Fly Creek, NY +13338 : 43.506153 : -75.07355 : Forestport, NY +13339 : 42.943602 : -74.64717 : Fort Plain, NY +13340 : 43.046471 : -75.10019 : Frankfort, NY +13341 : 43.036802 : -75.39115 : Franklin Springs, NY +13342 : 42.64743 : -75.17793 : Garrattsville, NY +13343 : 43.743932 : -75.34971 : Glenfield, NY +13345 : 43.818705 : -75.480342 : Greig, NY +13346 : 42.820826 : -75.54012 : Hamilton, NY +13348 : 42.708284 : -75.0588 : Hartwick, NY +13350 : 43.038149 : -74.9846 : Herkimer, NY +13352 : 43.328187 : -75.117319 : Hinckley, NY +13353 : 43.392434 : -74.72675 : Hoffmeister, NY +13354 : 43.261526 : -75.25705 : Holland Patent, NY +13355 : 42.81488 : -75.43424 : Hubbardsville, NY +13357 : 42.992323 : -75.0615 : Ilion, NY +13360 : 43.744906 : -74.77476 : Inlet, NY +13361 : 42.902922 : -74.89149 : Jordanville, NY +13362 : 42.980334 : -75.518569 : Knoxboro, NY +13363 : 43.311975 : -75.50677 : Lee Center, NY +13364 : 42.954541 : -75.616793 : Leonardsville, NY +13365 : 43.053176 : -74.84685 : Little Falls, NY +13367 : 43.794492 : -75.46905 : Lowville, NY +13368 : 43.637104 : -75.3483 : Lyons Falls, NY +13388 : 43.606444 : -75.103186 : Webb, NY +13396 : 42.839697 : -75.544322 : Madison, NY +13401 : 43.267243 : -75.688223 : McConnellsville, NY +13402 : 42.90777 : -75.4988 : Madison, NY +13403 : 43.162119 : -75.28435 : Marcy, NY +13404 : 43.818705 : -75.480342 : Martinsburg, NY +13406 : 43.137624 : -74.947 : Middleville, NY +13407 : 42.970099 : -74.96051 : Mohawk, NY +13408 : 42.923334 : -75.66314 : Morrisville, NY +13409 : 42.967906 : -75.59457 : Munnsville, NY +13410 : 42.937863 : -74.611711 : Nelliston, NY +13411 : 42.626177 : -75.31502 : New Berlin, NY +13413 : 43.067169 : -75.28767 : New Hartford, NY +13415 : 42.590419 : -75.195695 : New Lisbon, NY +13416 : 43.178528 : -74.98117 : Newport, NY +13417 : 43.102469 : -75.29566 : New York Mills, NY +13418 : 42.852808 : -75.39938 : North Brookfield, NY +13420 : 43.707331 : -74.94498 : Old Forge, NY +13421 : 43.079635 : -75.64678 : Oneida, NY +13424 : 43.158258 : -75.34281 : Oriskany, NY +13425 : 42.964774 : -75.47889 : Oriskany Falls, NY +13426 : 43.562757 : -75.996773 : Orwell, NY +13428 : 42.923583 : -74.55536 : Palatine Bridge, NY +13431 : 43.21574 : -75.08534 : Poland, NY +13433 : 43.580184 : -75.31757 : Port Leyden, NY +13435 : 43.305156 : -75.150183 : Prospect, NY +13436 : 43.807314 : -74.66771 : Raquette Lake, NY +13437 : 43.572876 : -75.81709 : Redfield, NY +13438 : 43.349682 : -75.15821 : Remsen, NY +13439 : 42.852372 : -74.99121 : Richfield Springs, NY +13440 : 43.217069 : -75.45531 : Rome, NY +13441 : 43.164312 : -75.511301 : Rome, NY +13442 : 43.239274 : -75.47796 : Rome, NY +13444 : 42.637549 : -75.672508 : Plymouth, NY +13449 : 43.239274 : -75.47796 : Rome, NY +13450 : 42.69983 : -74.81731 : Roseboom, NY +13452 : 43.021223 : -74.64537 : Saint Johnsville, NY +13453 : 43.436919 : -75.881404 : Williamstown, NY +13454 : 43.222171 : -74.80223 : Salisbury Center, NY +13455 : 42.916235 : -75.35448 : Sangerfield, NY +13456 : 43.005669 : -75.26202 : Sauquoit, NY +13457 : 42.775805 : -75.048502 : Schuyler Lake, NY +13459 : 42.774077 : -74.58404 : Sharon Springs, NY +13460 : 42.680051 : -75.46547 : Sherburne, NY +13461 : 43.070808 : -75.59912 : Sherrill, NY +13464 : 42.687757 : -75.61558 : Smyrna, NY +13465 : 42.954541 : -75.616793 : Solsville, NY +13468 : 42.843002 : -74.86479 : Springfield Center, NY +13469 : 43.220075 : -75.29542 : Stittville, NY +13470 : 43.180412 : -74.66524 : Stratford, NY +13471 : 43.346517 : -75.60493 : Taberg, NY +13472 : 43.460951 : -74.957099 : Thendara, NY +13473 : 43.654278 : -75.43828 : Turin, NY +13475 : 42.870799 : -74.84542 : Van Hornesville, NY +13476 : 43.079233 : -75.5134 : Vernon, NY +13477 : 43.035057 : -75.50381 : Vernon Center, NY +13478 : 43.141727 : -75.57702 : Verona, NY +13479 : 43.053769 : -75.271559 : Washington Mills, NY +13480 : 42.922823 : -75.36494 : Waterville, NY +13482 : 42.704333 : -75.184913 : West Burlington, NY +13483 : 43.399851 : -75.82785 : Westdale, NY +13484 : 42.854631 : -75.660462 : West Eaton, NY +13485 : 42.766057 : -75.32353 : West Edmeston, NY +13486 : 43.338878 : -75.35861 : Westernville, NY +13488 : 42.680906 : -74.76529 : Westford, NY +13489 : 43.453661 : -75.52172 : West Leyden, NY +13490 : 43.106801 : -75.41944 : Westmoreland, NY +13491 : 42.862696 : -75.17053 : West Winfield, NY +13492 : 43.11627 : -75.31182 : Whitesboro, NY +13493 : 43.421597 : -75.90529 : Williamstown, NY +13494 : 43.524904 : -75.142771 : Woodgate, NY +13495 : 43.110619 : -75.27716 : Yorkville, NY +13501 : 43.087669 : -75.22681 : Utica, NY +13502 : 43.114519 : -75.22284 : Utica, NY +13503 : 43.101869 : -75.231158 : Utica, NY +13504 : 43.136033 : -75.432486 : Utica, NY +13505 : 43.087169 : -75.260259 : Utica, NY +13550 : 43.026416 : -74.982271 : Herkimer, NY +13562 : 44.465307 : -75.230195 : Hermon, NY +13578 : 42.595426 : -75.757217 : Pharsalia, NY +13599 : 43.239274 : -75.47796 : Utica, NY +13601 : 43.976735 : -75.91199 : Watertown, NY +13602 : 44.03803 : -75.75793 : Fort Drum, NY +13603 : 44.030204 : -75.81845 : Watertown, NY +13605 : 43.807654 : -76.04936 : Adams, NY +13606 : 43.871728 : -76.00793 : Adams Center, NY +13607 : 44.328698 : -75.93103 : Alexandria Bay, NY +13608 : 44.243007 : -75.60331 : Antwerp, NY +13610 : 43.818705 : -75.480342 : Rodman, NY +13611 : 43.778046 : -76.125914 : Belleville, NY +13612 : 44.003136 : -75.77839 : Black River, NY +13613 : 44.864624 : -74.75386 : Brasher Falls, NY +13614 : 44.54141 : -75.70576 : Brier Hill, NY +13615 : 44.005613 : -75.98315 : Brownville, NY +13616 : 44.030831 : -75.85521 : Calcium, NY +13617 : 44.58249 : -75.14417 : Canton, NY +13618 : 44.114183 : -76.29288 : Cape Vincent, NY +13619 : 43.981245 : -75.61724 : Carthage, NY +13620 : 43.90707 : -75.44761 : Castorland, NY +13621 : 44.850439 : -75.06915 : Chase Mills, NY +13622 : 44.0958 : -76.11992 : Chaumont, NY +13623 : 44.440171 : -75.757938 : Chippewa Bay, NY +13624 : 44.230421 : -76.09312 : Clayton, NY +13625 : 44.537321 : -74.92847 : Colton, NY +13626 : 43.859025 : -75.72942 : Copenhagen, NY +13627 : 43.818705 : -75.480342 : Deer River, NY +13628 : 43.885519 : -75.798319 : Deferiet, NY +13630 : 44.494708 : -75.29944 : De Kalb Junction, NY +13631 : 43.818705 : -75.480342 : Denmark, NY +13632 : 44.139501 : -76.061552 : Depauville, NY +13633 : 44.469527 : -75.50293 : De Peyster, NY +13634 : 44.015332 : -76.05711 : Dexter, NY +13635 : 44.314998 : -75.26149 : Edwards, NY +13636 : 43.75965 : -76.152508 : Ellisburg, NY +13637 : 44.091494 : -75.82694 : Evans Mills, NY +13638 : 44.021094 : -75.76113 : Felts Mills, NY +13639 : 44.268403 : -75.13664 : Fine, NY +13640 : 44.318866 : -75.99068 : Wellesley Island, NY +13641 : 44.207681 : -75.914556 : Fishers Landing, NY +13642 : 44.319897 : -75.45537 : Gouverneur, NY +13643 : 44.014698 : -75.728357 : Great Bend, NY +13645 : 44.533125 : -75.192865 : Hailesboro, NY +13646 : 44.444242 : -75.69227 : Hammond, NY +13647 : 44.608735 : -74.973218 : Hannawa Falls, NY +13648 : 44.168224 : -75.29253 : Harrisville, NY +13649 : 44.921678 : -74.706763 : Helena, NY +13650 : 43.82212 : -76.2127 : Henderson, NY +13651 : 43.870842 : -76.180886 : Henderson Harbor, NY +13652 : 44.436004 : -75.22228 : Hermon, NY +13654 : 44.563604 : -75.48794 : Heuvelton, NY +13655 : 44.98184 : -74.67374 : Hogansburg, NY +13656 : 44.194126 : -75.95725 : La Fargeville, NY +13657 : 44.035703 : -76.090424 : Limerick, NY +13658 : 44.744462 : -75.28123 : Lisbon, NY +13659 : 43.743998 : -75.89354 : Lorraine, NY +13660 : 44.758378 : -75.14571 : Madrid, NY +13661 : 43.714545 : -76.10465 : Mannsville, NY +13662 : 44.937212 : -74.87693 : Massena, NY +13664 : 44.585561 : -75.64797 : Morristown, NY +13665 : 44.055436 : -75.46279 : Natural Bridge, NY +13666 : 44.533125 : -75.192865 : Newton Falls, NY +13667 : 44.823502 : -74.96875 : Norfolk, NY +13668 : 44.752355 : -74.98906 : Norwood, NY +13669 : 44.683636 : -75.49024 : Ogdensburg, NY +13670 : 44.210178 : -75.0697 : Oswegatchie, NY +13671 : 44.308475 : -75.66879 : Oxbow, NY +13672 : 44.4987 : -74.74685 : Parishville, NY +13673 : 44.160785 : -75.71159 : Philadelphia, NY +13674 : 43.73345 : -76.054313 : Pierrepont Manor, NY +13675 : 44.277365 : -75.84263 : Plessis, NY +13676 : 44.651265 : -74.95289 : Potsdam, NY +13677 : 44.673438 : -75.082041 : Pyrites, NY +13678 : 44.828685 : -74.979811 : Raymondville, NY +13679 : 44.323952 : -75.76895 : Redwood, NY +13680 : 44.593588 : -75.32389 : Rensselaer Falls, NY +13681 : 44.414762 : -75.37897 : Richville, NY +13682 : 43.842808 : -75.90347 : Rodman, NY +13683 : 44.533125 : -75.192865 : Rooseveltown, NY +13684 : 44.353607 : -75.0694 : Russell, NY +13685 : 43.936173 : -76.10295 : Sackets Harbor, NY +13687 : 44.501065 : -74.86633 : South Colton, NY +13688 : 43.951666 : -75.767772 : South Rutland, NY +13690 : 44.161058 : -74.99617 : Star Lake, NY +13691 : 44.216969 : -75.79671 : Theresa, NY +13692 : 44.289833 : -76.02621 : Thousand Island Park, NY +13693 : 44.064999 : -76.24023 : Three Mile Bay, NY +13694 : 44.866754 : -75.17201 : Waddington, NY +13695 : 44.140791 : -74.912493 : Wanakena, NY +13696 : 44.69563 : -74.89998 : West Stockholm, NY +13697 : 44.755383 : -74.81213 : Winthrop, NY +13698 : 43.775216 : -76.202658 : Ellisburg, NY +13699 : 44.496564 : -75.072951 : Potsdam, NY +13730 : 42.232991 : -75.53429 : Afton, NY +13731 : 42.152105 : -74.78184 : Andes, NY +13732 : 42.059433 : -76.14733 : Apalachin, NY +13733 : 42.292692 : -75.47528 : Bainbridge, NY +13734 : 42.063671 : -76.40638 : Barton, NY +13736 : 42.306877 : -76.204 : Berkshire, NY +13737 : 42.080494 : -76.097288 : Bible School Park, NY +13738 : 42.567313 : -76.123795 : Blodgett Mills, NY +13739 : 42.364673 : -74.78034 : Bloomville, NY +13740 : 42.274238 : -74.75464 : Bovina Center, NY +13743 : 42.213965 : -76.34099 : Candor, NY +13744 : 42.250715 : -75.91871 : Castle Creek, NY +13745 : 42.173775 : -75.872839 : Chenango Bridge, NY +13746 : 42.261923 : -75.84463 : Chenango Forks, NY +13747 : 42.505122 : -74.982056 : Colliersville, NY +13748 : 42.0553 : -75.81219 : Conklin, NY +13749 : 42.206745 : -75.74488 : Corbettsville, NY +13750 : 42.473691 : -74.8134 : Davenport, NY +13751 : 42.424859 : -74.900195 : Davenport Center, NY +13752 : 42.187835 : -74.89418 : De Lancey, NY +13753 : 42.302716 : -74.91667 : Delhi, NY +13754 : 42.076427 : -75.44551 : Deposit, NY +13755 : 42.086268 : -75.00691 : Downsville, NY +13756 : 42.018923 : -75.11339 : East Branch, NY +13757 : 42.411895 : -74.91372 : East Meredith, NY +13758 : 42.583518 : -75.721931 : East Pharsalia, NY +13760 : 42.113974 : -76.05256 : Endicott, NY +13761 : 42.206745 : -75.74488 : Endicott, NY +13762 : 42.206745 : -75.74488 : Endwell, NY +13763 : 42.206745 : -75.74488 : Endicott, NY +13766 : 42.155346 : -76.071767 : Maine, NY +13774 : 41.965435 : -75.17968 : Fishs Eddy, NY +13775 : 42.333285 : -75.16086 : Franklin, NY +13776 : 42.457398 : -75.33434 : Gilbertsville, NY +13777 : 42.254154 : -76.01194 : Glen Aubrey, NY +13778 : 42.336771 : -75.75964 : Greene, NY +13780 : 42.426583 : -75.48119 : Guilford, NY +13782 : 42.18942 : -74.99219 : Hamden, NY +13783 : 41.985839 : -75.28214 : Hancock, NY +13784 : 42.431068 : -76.159312 : Harford, NY +13786 : 42.445257 : -74.70189 : Harpersfield, NY +13787 : 42.197905 : -75.65578 : Harpursville, NY +13788 : 42.368357 : -74.66452 : Hobart, NY +13790 : 42.125725 : -75.96686 : Johnson City, NY +13792 : 42.509167 : -75.208242 : Morris, NY +13794 : 42.402816 : -76.036582 : Killawog, NY +13795 : 42.056312 : -75.79275 : Kirkwood, NY +13796 : 42.540359 : -75.14604 : Laurens, NY +13797 : 42.335102 : -76.02313 : Lisle, NY +13801 : 42.504765 : -75.77739 : McDonough, NY +13802 : 42.255624 : -76.05009 : Maine, NY +13803 : 42.453663 : -76.06983 : Marathon, NY +13804 : 42.215297 : -75.35815 : Masonville, NY +13806 : 42.183045 : -74.925617 : Meridale, NY +13807 : 42.606209 : -74.97261 : Milford, NY +13808 : 42.532969 : -75.25536 : Morris, NY +13809 : 42.392104 : -75.41093 : Mount Upton, NY +13810 : 42.609579 : -75.09464 : Mount Vision, NY +13811 : 42.222777 : -76.17822 : Newark Valley, NY +13812 : 42.024157 : -76.36558 : Nichols, NY +13813 : 42.163814 : -75.55149 : Nineveh, NY +13814 : 42.603574 : -75.528221 : North Norwich, NY +13815 : 42.541733 : -75.52612 : Norwich, NY +13820 : 42.469761 : -75.05192 : Oneonta, NY +13825 : 42.417489 : -75.18605 : Otego, NY +13826 : 42.112127 : -75.639586 : Ouaquaga, NY +13827 : 42.120274 : -76.25874 : Owego, NY +13830 : 42.428818 : -75.62459 : Oxford, NY +13832 : 42.650584 : -75.65761 : Plymouth, NY +13833 : 42.185196 : -75.7763 : Port Crane, NY +13834 : 42.536475 : -74.96218 : Portlandville, NY +13835 : 42.396659 : -76.15709 : Richford, NY +13837 : 42.183045 : -74.925617 : Shinhopple, NY +13838 : 42.304177 : -75.39563 : Sidney, NY +13839 : 42.236762 : -75.25901 : Sidney Center, NY +13840 : 42.039512 : -76.400376 : Smithboro, NY +13841 : 42.419896 : -75.83772 : Smithville Flats, NY +13842 : 42.376254 : -74.72258 : South Kortright, NY +13843 : 42.533274 : -75.38008 : South New Berlin, NY +13844 : 42.603506 : -75.67053 : South Plymouth, NY +13845 : 42.065842 : -76.381946 : Tioga Center, NY +13846 : 42.344248 : -75.05323 : Treadwell, NY +13847 : 42.183045 : -74.925617 : Trout Creek, NY +13848 : 42.214705 : -75.727699 : Tunnel, NY +13849 : 42.343576 : -75.3146 : Unadilla, NY +13850 : 42.075874 : -76.02837 : Vestal, NY +13851 : 42.206745 : -75.74488 : Vestal, NY +13856 : 42.182237 : -75.14627 : Walton, NY +13859 : 42.367765 : -75.24718 : Wells Bridge, NY +13860 : 42.183045 : -74.925617 : West Davenport, NY +13861 : 42.488953 : -75.12063 : West Oneonta, NY +13862 : 42.328284 : -75.95021 : Whitney Point, NY +13863 : 42.437964 : -75.89884 : Willet, NY +13864 : 42.298203 : -76.38844 : Willseyville, NY +13865 : 42.070228 : -75.63584 : Windsor, NY +13901 : 42.142575 : -75.88783 : Binghamton, NY +13902 : 42.105375 : -75.8876 : Binghamton, NY +13903 : 42.077258 : -75.90226 : Binghamton, NY +13904 : 42.110927 : -75.85223 : Binghamton, NY +13905 : 42.121443 : -75.93329 : Binghamton, NY +13942 : 43.114669 : -75.305811 : Whitestown, NY +14001 : 43.024559 : -78.50414 : Akron, NY +14003 : 42.998052 : -78.184813 : Alabama, NY +14004 : 42.898709 : -78.51652 : Alden, NY +14005 : 42.906765 : -78.24581 : Alexander, NY +14006 : 42.633375 : -79.04567 : Angola, NY +14008 : 43.318768 : -78.63328 : Appleton, NY +14009 : 42.582693 : -78.40069 : Arcade, NY +14010 : 42.768413 : -78.887094 : Athol Springs, NY +14011 : 42.844962 : -78.27803 : Attica, NY +14012 : 43.337798 : -78.52955 : Barker, NY +14013 : 43.074578 : -78.40345 : Basom, NY +14020 : 42.996507 : -78.19279 : Batavia, NY +14021 : 42.998052 : -78.184813 : Batavia, NY +14024 : 42.579516 : -78.24818 : Bliss, NY +14025 : 42.627312 : -78.73768 : Boston, NY +14026 : 42.941025 : -78.68548 : Bowmansville, NY +14027 : 42.57075 : -79.030785 : Brant, NY +14028 : 43.326155 : -78.71564 : Burt, NY +14029 : 42.474283 : -78.247413 : Centerville, NY +14030 : 42.562386 : -78.49087 : Chaffee, NY +14031 : 42.981558 : -78.61484 : Clarence, NY +14032 : 43.019908 : -78.63497 : Clarence Center, NY +14033 : 42.655098 : -78.68472 : Colden, NY +14034 : 42.498791 : -78.8835 : Collins, NY +14035 : 42.49064 : -78.849861 : Collins Center, NY +14036 : 42.974083 : -78.38961 : Corfu, NY +14037 : 42.814667 : -78.46076 : Cowlesville, NY +14038 : 42.947259 : -78.474444 : Crittenden, NY +14039 : 42.829129 : -78.17657 : Dale, NY +14040 : 42.891116 : -78.37872 : Darien Center, NY +14041 : 42.408583 : -78.984391 : Dayton, NY +14042 : 42.474779 : -78.47303 : Delevan, NY +14043 : 42.904958 : -78.7006 : Depew, NY +14047 : 42.694598 : -78.98151 : Derby, NY +14048 : 42.479471 : -79.32805 : Dunkirk, NY +14051 : 43.025217 : -78.70394 : East Amherst, NY +14052 : 42.770859 : -78.59804 : East Aurora, NY +14054 : 42.903676 : -78.13481 : East Bethany, NY +14055 : 42.554206 : -78.61829 : East Concord, NY +14056 : 42.991173 : -78.312171 : East Pembroke, NY +14057 : 42.651776 : -78.87634 : Eden, NY +14058 : 43.091886 : -78.15151 : Elba, NY +14059 : 42.834159 : -78.64246 : Elma, NY +14060 : 42.443406 : -78.32302 : Farmersville Station, NY +14061 : 42.594627 : -79.08404 : Farnham, NY +14062 : 42.450845 : -79.16528 : Forestville, NY +14063 : 42.425683 : -79.3371 : Fredonia, NY +14064 : 43.158013 : -77.607049 : Rochester, NY +14065 : 42.483508 : -78.30011 : Freedom, NY +14066 : 42.619549 : -78.16153 : Gainesville, NY +14067 : 43.20258 : -78.56868 : Gasport, NY +14068 : 43.02534 : -78.76241 : Getzville, NY +14069 : 42.601635 : -78.64273 : Glenwood, NY +14070 : 42.453234 : -78.9348 : Gowanda, NY +14072 : 43.011823 : -78.95914 : Grand Island, NY +14075 : 42.734051 : -78.8413 : Hamburg, NY +14080 : 42.640351 : -78.53494 : Holland, NY +14081 : 42.573552 : -79.09002 : Irving, NY +14082 : 42.661838 : -78.38309 : Java Center, NY +14083 : 42.676913 : -78.44075 : Java Village, NY +14085 : 42.718308 : -78.9372 : Lake View, NY +14086 : 42.904258 : -78.65519 : Lancaster, NY +14091 : 42.535917 : -78.88235 : Lawtons, NY +14092 : 43.169055 : -79.02426 : Lewiston, NY +14094 : 43.160857 : -78.68756 : Lockport, NY +14095 : 43.32684 : -78.830681 : Lockport, NY +14098 : 43.338755 : -78.3931 : Lyndonville, NY +14101 : 42.393206 : -78.52655 : Machias, NY +14102 : 42.838643 : -78.55601 : Marilla, NY +14103 : 43.217155 : -78.38746 : Medina, NY +14105 : 43.199665 : -78.48378 : Middleport, NY +14107 : 43.32684 : -78.830681 : Model City, NY +14108 : 43.264406 : -78.72634 : Newfane, NY +14109 : 43.32684 : -78.830681 : Niagara University, NY +14110 : 42.768413 : -78.887094 : North Boston, NY +14111 : 42.593148 : -78.91498 : North Collins, NY +14112 : 42.691742 : -78.992658 : North Evans, NY +14113 : 42.672162 : -78.33745 : North Java, NY +14120 : 43.048156 : -78.86338 : North Tonawanda, NY +14125 : 43.077433 : -78.27816 : Oakfield, NY +14126 : 43.330443 : -78.726661 : Olcott, NY +14127 : 42.759917 : -78.75294 : Orchard Park, NY +14129 : 42.469165 : -79.01069 : Perrysburg, NY +14130 : 42.543108 : -78.153849 : Pike, NY +14131 : 43.237855 : -78.90884 : Ransomville, NY +14132 : 43.140056 : -78.88297 : Sanborn, NY +14133 : 42.489129 : -78.366991 : Sandusky, NY +14134 : 42.534854 : -78.52113 : Sardinia, NY +14135 : 42.488983 : -79.238997 : Sheridan, NY +14136 : 42.535276 : -79.16539 : Silver Creek, NY +14138 : 42.372077 : -79.05552 : South Dayton, NY +14139 : 42.716919 : -78.53931 : South Wales, NY +14140 : 42.807159 : -78.667599 : Spring Brook, NY +14141 : 42.516248 : -78.68944 : Springville, NY +14143 : 42.977828 : -78.07934 : Stafford, NY +14144 : 43.199494 : -79.042477 : Stella Niagara, NY +14145 : 42.720756 : -78.43429 : Strykersville, NY +14150 : 43.001907 : -78.8631 : Tonawanda, NY +14151 : 42.768413 : -78.887094 : Tonawanda, NY +14166 : 42.4511 : -79.415421 : Van Buren Point, NY +14167 : 42.750175 : -78.32283 : Varysburg, NY +14168 : 42.509271 : -78.999471 : Versailles, NY +14169 : 42.767333 : -78.585646 : Wales Center, NY +14170 : 42.692304 : -78.67147 : West Falls, NY +14171 : 42.426278 : -78.6474 : West Valley, NY +14172 : 43.307288 : -78.83368 : Wilson, NY +14173 : 42.524691 : -78.475474 : Yorkshire, NY +14174 : 43.247054 : -79.02562 : Youngstown, NY +14201 : 42.896407 : -78.88515 : Buffalo, NY +14202 : 42.886357 : -78.8779 : Buffalo, NY +14203 : 42.880107 : -78.8699 : Buffalo, NY +14204 : 42.884008 : -78.86152 : Buffalo, NY +14205 : 42.768413 : -78.887094 : Buffalo, NY +14206 : 42.880105 : -78.81049 : Buffalo, NY +14207 : 42.94722 : -78.89694 : Buffalo, NY +14208 : 42.914307 : -78.85072 : Buffalo, NY +14209 : 42.913257 : -78.86612 : Buffalo, NY +14210 : 42.866708 : -78.83139 : Buffalo, NY +14211 : 42.907358 : -78.82355 : Buffalo, NY +14212 : 42.894758 : -78.82303 : Buffalo, NY +14213 : 42.916057 : -78.8915 : Buffalo, NY +14214 : 42.941407 : -78.83741 : Buffalo, NY +14215 : 42.934757 : -78.8118 : Buffalo, NY +14216 : 42.949707 : -78.85923 : Buffalo, NY +14217 : 42.968707 : -78.8745 : Buffalo, NY +14218 : 42.821008 : -78.82448 : Buffalo, NY +14219 : 42.790708 : -78.82717 : Buffalo, NY +14220 : 42.845758 : -78.8187 : Buffalo, NY +14221 : 42.977456 : -78.73356 : Buffalo, NY +14222 : 42.917657 : -78.8779 : Buffalo, NY +14223 : 42.972207 : -78.84234 : Buffalo, NY +14224 : 42.836858 : -78.75557 : Buffalo, NY +14225 : 42.929891 : -78.75813 : Buffalo, NY +14226 : 42.968057 : -78.80047 : Buffalo, NY +14227 : 42.881372 : -78.74466 : Buffalo, NY +14228 : 43.023347 : -78.79494 : Buffalo, NY +14231 : 42.768413 : -78.887094 : Buffalo, NY +14233 : 42.768413 : -78.887094 : Buffalo, NY +14240 : 42.768413 : -78.887094 : Buffalo, NY +14241 : 42.938258 : -78.744053 : Buffalo, NY +14260 : 42.768413 : -78.887094 : Buffalo, NY +14261 : 42.768413 : -78.887094 : Buffalo, NY +14263 : 42.768413 : -78.887094 : Buffalo, NY +14264 : 42.885568 : -78.873479 : Buffalo, NY +14265 : 42.768413 : -78.887094 : Buffalo, NY +14267 : 42.768413 : -78.887094 : Buffalo, NY +14269 : 42.768413 : -78.887094 : Buffalo, NY +14270 : 42.768413 : -78.887094 : Buffalo, NY +14272 : 42.768413 : -78.887094 : Buffalo, NY +14273 : 42.75495 : -78.784908 : Buffalo, NY +14276 : 42.768413 : -78.887094 : Buffalo, NY +14280 : 42.768413 : -78.887094 : Buffalo, NY +14301 : 43.096555 : -79.03925 : Niagara Falls, NY +14302 : 43.32684 : -78.830681 : Niagara Falls, NY +14303 : 43.086355 : -79.03736 : Niagara Falls, NY +14304 : 43.091106 : -78.96249 : Niagara Falls, NY +14305 : 43.115355 : -79.03769 : Niagara Falls, NY +14410 : 43.195261 : -77.855883 : Adams Basin, NY +14411 : 43.244034 : -78.2023 : Albion, NY +14413 : 43.222735 : -76.982149 : Alton, NY +14414 : 42.899233 : -77.73372 : Avon, NY +14415 : 42.757486 : -77.02311 : Bellona, NY +14416 : 43.067831 : -77.99024 : Bergen, NY +14417 : 42.834813 : -77.715406 : Geneseo, NY +14418 : 42.605481 : -77.20117 : Branchport, NY +14420 : 43.214261 : -77.93937 : Brockport, NY +14422 : 43.079217 : -78.06371 : Byron, NY +14423 : 42.937589 : -77.83528 : Caledonia, NY +14424 : 42.85297 : -77.29466 : Canandaigua, NY +14425 : 42.985007 : -77.346 : Farmington, NY +14427 : 42.63529 : -78.05135 : Castile, NY +14428 : 43.079181 : -77.87334 : Churchville, NY +14429 : 43.381027 : -78.231338 : Clarendon, NY +14430 : 43.286024 : -77.684264 : Clarkson, NY +14432 : 42.965372 : -77.14416 : Clifton Springs, NY +14433 : 43.07351 : -76.87557 : Clyde, NY +14435 : 42.706781 : -77.68103 : Conesus, NY +14437 : 42.576771 : -77.71925 : Dansville, NY +14441 : 42.684588 : -76.95775 : Dresden, NY +14443 : 42.900966 : -77.42331 : East Bloomfield, NY +14445 : 43.111663 : -77.48709 : East Rochester, NY +14449 : 43.235369 : -77.137642 : East Williamson, NY +14450 : 43.091714 : -77.43483 : Fairport, NY +14452 : 43.381027 : -78.231338 : Fancher, NY +14453 : 43.010908 : -77.47054 : Fishers, NY +14454 : 42.798159 : -77.77733 : Geneseo, NY +14456 : 42.853039 : -76.99394 : Geneva, NY +14458 : 42.855029 : -77.668326 : Lima, NY +14461 : 42.808127 : -77.287611 : Gorham, NY +14462 : 42.681361 : -77.75302 : Groveland, NY +14463 : 42.796578 : -77.063876 : Hall, NY +14464 : 43.319027 : -77.91991 : Hamlin, NY +14466 : 42.787276 : -77.58983 : Hemlock, NY +14467 : 43.048663 : -77.60843 : Henrietta, NY +14468 : 43.289787 : -77.79548 : Hilton, NY +14469 : 42.868609 : -77.4509 : Bloomfield, NY +14470 : 43.221689 : -78.04393 : Holley, NY +14471 : 42.762059 : -77.50488 : Honeoye, NY +14472 : 42.964593 : -77.5919 : Honeoye Falls, NY +14475 : 42.933105 : -77.49687 : Ionia, NY +14476 : 43.339304 : -78.02581 : Kendall, NY +14477 : 43.341512 : -78.14128 : Kent, NY +14478 : 42.589281 : -77.11824 : Keuka Park, NY +14479 : 43.241502 : -78.318828 : Knowlesville, NY +14480 : 42.837786 : -77.70625 : Lakeville, NY +14481 : 42.780121 : -77.91499 : Leicester, NY +14482 : 42.979887 : -77.97053 : Le Roy, NY +14484 : 42.558227 : -78.047214 : Portage, NY +14485 : 42.879208 : -77.60183 : Lima, NY +14486 : 42.915297 : -77.949818 : Linwood, NY +14487 : 42.809908 : -77.65301 : Livonia, NY +14488 : 42.729839 : -77.773919 : Livonia Center, NY +14489 : 43.076715 : -76.99231 : Lyons, NY +14502 : 43.08786 : -77.33068 : Macedon, NY +14504 : 42.970621 : -77.2298 : Manchester, NY +14505 : 43.160635 : -77.16948 : Marion, NY +14506 : 42.999201 : -77.50263 : Mendon, NY +14507 : 42.702921 : -77.27447 : Middlesex, NY +14508 : 43.381027 : -78.231338 : Morton, NY +14510 : 42.692608 : -77.87663 : Mount Morris, NY +14511 : 43.002612 : -77.86458 : Mumford, NY +14512 : 42.628515 : -77.39457 : Naples, NY +14513 : 43.052126 : -77.09424 : Newark, NY +14514 : 43.122386 : -77.80347 : North Chili, NY +14515 : 43.257819 : -77.735079 : North Greece, NY +14516 : 43.197378 : -76.91443 : North Rose, NY +14517 : 42.589984 : -77.9075 : Nunda, NY +14518 : 42.931873 : -77.011839 : Oaks Corners, NY +14519 : 43.227921 : -77.30097 : Ontario, NY +14520 : 43.348369 : -77.045288 : Ontario Center, NY +14521 : 42.699637 : -76.82964 : Ovid, NY +14522 : 43.063858 : -77.2223 : Palmyra, NY +14525 : 42.876222 : -78.00056 : Pavilion, NY +14526 : 43.145342 : -77.45849 : Penfield, NY +14527 : 42.664079 : -77.05664 : Penn Yan, NY +14529 : 42.535363 : -77.628857 : Perkinsville, NY +14530 : 42.724075 : -78.00361 : Perry, NY +14532 : 42.964535 : -77.02486 : Phelps, NY +14533 : 42.846509 : -77.88795 : Piffard, NY +14534 : 43.071131 : -77.51181 : Pittsford, NY +14536 : 42.54523 : -78.06929 : Portageville, NY +14537 : 43.033002 : -77.157465 : Port Gibson, NY +14538 : 43.283582 : -77.142027 : Pultneyville, NY +14539 : 42.834327 : -77.877876 : Retsof, NY +14541 : 42.75147 : -76.85353 : Romulus, NY +14542 : 43.144795 : -76.860779 : Rose, NY +14543 : 42.98723 : -77.67433 : Rush, NY +14544 : 42.75606 : -77.24024 : Rushville, NY +14545 : 42.664904 : -77.71275 : Scottsburg, NY +14546 : 43.030313 : -77.7836 : Scottsville, NY +14547 : 42.808127 : -77.287611 : Seneca Castle, NY +14548 : 42.97342 : -77.2434 : Shortsville, NY +14549 : 42.692874 : -78.022364 : Silver Lake, NY +14550 : 42.669499 : -78.09375 : Silver Springs, NY +14551 : 43.226024 : -77.03599 : Sodus, NY +14555 : 43.269332 : -76.9876 : Sodus Point, NY +14556 : 42.729839 : -77.773919 : Sonyea, NY +14557 : 43.041606 : -78.057252 : South Byron, NY +14558 : 42.855409 : -77.687643 : South Lima, NY +14559 : 43.189862 : -77.81809 : Spencerport, NY +14560 : 42.674773 : -77.58341 : Springwater, NY +14561 : 42.815171 : -77.1321 : Stanley, NY +14563 : 43.348369 : -77.045288 : Union Hill, NY +14564 : 42.980323 : -77.42022 : Victor, NY +14568 : 43.134783 : -77.28515 : Walworth, NY +14569 : 42.739447 : -78.15948 : Warsaw, NY +14571 : 43.34653 : -78.25412 : Waterport, NY +14572 : 42.569876 : -77.57637 : Wayland, NY +14580 : 43.220991 : -77.45364 : Webster, NY +14585 : 42.901162 : -77.54848 : West Bloomfield, NY +14586 : 43.040271 : -77.68215 : West Henrietta, NY +14588 : 42.683451 : -76.872442 : Willard, NY +14589 : 43.24816 : -77.18498 : Williamson, NY +14590 : 43.234753 : -76.8252 : Wolcott, NY +14591 : 42.829405 : -78.08887 : Wyoming, NY +14592 : 42.875685 : -77.883511 : York, NY +14601 : 43.286024 : -77.684264 : Rochester, NY +14602 : 43.286024 : -77.684264 : Rochester, NY +14603 : 43.161613 : -77.606774 : Rochester, NY +14604 : 43.156963 : -77.60375 : Rochester, NY +14605 : 43.167563 : -77.6012 : Rochester, NY +14606 : 43.168062 : -77.68132 : Rochester, NY +14607 : 43.149863 : -77.58962 : Rochester, NY +14608 : 43.155568 : -77.62401 : Rochester, NY +14609 : 43.175113 : -77.56272 : Rochester, NY +14610 : 43.142259 : -77.54587 : Rochester, NY +14611 : 43.147563 : -77.64162 : Rochester, NY +14612 : 43.256462 : -77.66183 : Rochester, NY +14613 : 43.182163 : -77.63794 : Rochester, NY +14614 : 43.155863 : -77.61519 : Rochester, NY +14615 : 43.204695 : -77.65194 : Rochester, NY +14616 : 43.232312 : -77.64905 : Rochester, NY +14617 : 43.223213 : -77.59721 : Rochester, NY +14618 : 43.116713 : -77.55904 : Rochester, NY +14619 : 43.136363 : -77.64685 : Rochester, NY +14620 : 43.132474 : -77.60377 : Rochester, NY +14621 : 43.185163 : -77.60368 : Rochester, NY +14622 : 43.21543 : -77.55638 : Rochester, NY +14623 : 43.087613 : -77.6352 : Rochester, NY +14624 : 43.127195 : -77.72465 : Rochester, NY +14625 : 43.143663 : -77.51114 : Rochester, NY +14626 : 43.214613 : -77.70626 : Rochester, NY +14627 : 43.127513 : -77.627674 : Rochester, NY +14638 : 43.286024 : -77.684264 : Rochester, NY +14639 : 43.286024 : -77.684264 : Rochester, NY +14642 : 43.286024 : -77.684264 : Rochester, NY +14643 : 43.286024 : -77.684264 : Rochester, NY +14644 : 43.286024 : -77.684264 : Rochester, NY +14645 : 43.286024 : -77.684264 : Rochester, NY +14646 : 43.286024 : -77.684264 : Rochester, NY +14647 : 43.286024 : -77.684264 : Rochester, NY +14649 : 43.286024 : -77.684264 : Rochester, NY +14650 : 43.286024 : -77.684264 : Rochester, NY +14651 : 43.286024 : -77.684264 : Rochester, NY +14652 : 43.286024 : -77.684264 : Rochester, NY +14653 : 43.286024 : -77.684264 : Rochester, NY +14660 : 43.286024 : -77.684264 : Rochester, NY +14664 : 43.286024 : -77.684264 : Rochester, NY +14673 : 43.286024 : -77.684264 : Rochester, NY +14683 : 43.286024 : -77.684264 : Rochester, NY +14692 : 43.286024 : -77.684264 : Rochester, NY +14694 : 43.286024 : -77.684264 : Rochester, NY +14701 : 42.09179 : -79.24459 : Jamestown, NY +14702 : 42.081657 : -79.294921 : Jamestown, NY +14703 : 42.342529 : -79.41091 : Jamestown, NY +14704 : 42.342529 : -79.41091 : Jamestown, NY +14706 : 42.10143 : -78.51587 : Allegany, NY +14707 : 42.073739 : -78.059374 : Allentown, NY +14708 : 42.016108 : -78.05768 : Alma, NY +14709 : 42.339925 : -77.99413 : Angelica, NY +14710 : 42.098227 : -79.40865 : Ashville, NY +14711 : 42.319654 : -78.13384 : Belfast, NY +14712 : 42.170787 : -79.37689 : Bemus Point, NY +14714 : 42.279786 : -78.23769 : Black Creek, NY +14715 : 42.076186 : -78.14489 : Bolivar, NY +14716 : 42.390802 : -79.43873 : Brocton, NY +14717 : 42.37074 : -78.19335 : Caneadea, NY +14718 : 42.343265 : -79.30101 : Cassadaga, NY +14719 : 42.329183 : -78.87436 : Cattaraugus, NY +14720 : 42.105907 : -79.27912 : Celoron, NY +14721 : 41.999435 : -78.27257 : Ceres, NY +14722 : 42.187468 : -79.450523 : Chautauqua, NY +14723 : 42.316386 : -79.1364 : Cherry Creek, NY +14724 : 42.066681 : -79.66612 : Clymer, NY +14726 : 42.251075 : -79.03785 : Conewango Valley, NY +14727 : 42.213216 : -78.28649 : Cuba, NY +14728 : 42.258967 : -79.43348 : Dewittville, NY +14729 : 42.382899 : -78.72101 : East Otto, NY +14730 : 42.174736 : -78.94734 : East Randolph, NY +14731 : 42.286037 : -78.65425 : Ellicottville, NY +14732 : 42.229098 : -79.11347 : Ellington, NY +14733 : 42.128469 : -79.19126 : Falconer, NY +14735 : 42.456047 : -78.0973 : Fillmore, NY +14736 : 42.130247 : -79.74933 : Findley Lake, NY +14737 : 42.335628 : -78.43114 : Franklinville, NY +14738 : 42.0385 : -79.07622 : Frewsburg, NY +14739 : 42.192384 : -78.14308 : Friendship, NY +14740 : 42.230692 : -79.17185 : Gerry, NY +14741 : 42.220602 : -78.6337 : Great Valley, NY +14742 : 42.120512 : -79.30958 : Greenhurst, NY +14743 : 42.203691 : -78.407 : Hinsdale, NY +14744 : 42.426885 : -78.19509 : Houghton, NY +14745 : 42.4777 : -78.140343 : Hume, NY +14747 : 42.154315 : -79.08905 : Kennedy, NY +14748 : 42.130224 : -78.64583 : Kill Buck, NY +14750 : 42.098657 : -79.32439 : Lakewood, NY +14751 : 42.298328 : -79.006231 : Leon, NY +14752 : 42.352416 : -79.323502 : Lily Dale, NY +14753 : 42.035792 : -78.61789 : Limestone, NY +14754 : 42.020028 : -78.20368 : Little Genesee, NY +14755 : 42.249436 : -78.80282 : Little Valley, NY +14756 : 42.19815 : -79.417353 : Maple Springs, NY +14757 : 42.226149 : -79.48396 : Mayville, NY +14758 : 42.342529 : -79.41091 : Niobe, NY +14760 : 42.076574 : -78.42744 : Olean, NY +14766 : 42.357543 : -78.807283 : Otto, NY +14767 : 42.043339 : -79.51361 : Panama, NY +14769 : 42.372864 : -79.47523 : Portland, NY +14770 : 42.047063 : -78.30659 : Portville, NY +14771 : 42.737181 : -77.519784 : Canadice, NY +14772 : 42.160787 : -78.95167 : Randolph, NY +14774 : 42.114385 : -78.168055 : Richburg, NY +14775 : 42.254906 : -79.69185 : Ripley, NY +14776 : 42.260012 : -78.016139 : Rossburg, NY +14777 : 42.385744 : -78.23754 : Rushford, NY +14778 : 42.270112 : -78.684684 : Saint Bonaventure, NY +14779 : 42.168508 : -78.7297 : Salamanca, NY +14781 : 42.160982 : -79.59738 : Sherman, NY +14782 : 42.265234 : -79.26035 : Sinclairville, NY +14783 : 42.100539 : -78.87967 : Steamburg, NY +14784 : 42.326844 : -79.3902 : Stockton, NY +14785 : 42.155693 : -79.412233 : Stow, NY +14786 : 42.12267 : -78.221332 : West Clarksville, NY +14787 : 42.327029 : -79.57301 : Westfield, NY +14788 : 42.062125 : -78.377974 : Westons Mills, NY +14801 : 42.104389 : -77.28857 : Addison, NY +14802 : 42.255694 : -77.78904 : Alfred, NY +14803 : 42.258793 : -77.77793 : Alfred Station, NY +14804 : 42.321173 : -77.82312 : Almond, NY +14805 : 42.366682 : -76.72562 : Alpine, NY +14806 : 42.157534 : -77.79265 : Andover, NY +14807 : 42.410387 : -77.71394 : Arkport, NY +14808 : 42.560553 : -77.47257 : Atlanta, NY +14809 : 42.419988 : -77.43392 : Avoca, NY +14810 : 42.351281 : -77.3361 : Bath, NY +14812 : 42.286649 : -76.9766 : Beaver Dams, NY +14813 : 42.238994 : -78.01907 : Belmont, NY +14814 : 42.150834 : -76.94805 : Big Flats, NY +14815 : 42.383304 : -77.08762 : Bradford, NY +14816 : 42.177039 : -76.73437 : Breesport, NY +14817 : 42.368 : -76.35407 : Brooktondale, NY +14818 : 42.444243 : -76.83274 : Burdett, NY +14819 : 42.20928 : -77.42796 : Cameron, NY +14820 : 42.192615 : -77.35979 : Cameron Mills, NY +14821 : 42.235058 : -77.20491 : Campbell, NY +14822 : 42.442261 : -77.84125 : Canaseraga, NY +14823 : 42.250187 : -77.58406 : Canisteo, NY +14824 : 42.265328 : -76.71263 : Cayuta, NY +14825 : 42.043018 : -76.62459 : Chemung, NY +14826 : 42.484672 : -77.49846 : Cohocton, NY +14827 : 42.178527 : -77.141357 : Coopers Plains, NY +14830 : 42.140881 : -77.04793 : Corning, NY +14831 : 42.145265 : -77.56683 : Corning, NY +14836 : 42.523195 : -77.93008 : Dalton, NY +14837 : 42.502293 : -76.9997 : Dundee, NY +14838 : 42.177019 : -76.66687 : Erin, NY +14839 : 42.129806 : -77.63705 : Greenwood, NY +14840 : 42.453547 : -77.18019 : Hammondsport, NY +14841 : 42.521501 : -76.86246 : Hector, NY +14842 : 42.595985 : -76.94713 : Himrod, NY +14843 : 42.331062 : -77.65536 : Hornell, NY +14844 : 42.160717 : -76.878456 : Horseheads, NY +14845 : 42.181584 : -76.83639 : Horseheads, NY +14846 : 42.542056 : -77.99501 : Hunt, NY +14847 : 42.614518 : -76.72405 : Interlaken, NY +14850 : 42.449454 : -76.49685 : Ithaca, NY +14851 : 42.460721 : -76.505435 : Ithaca, NY +14852 : 42.445074 : -76.467233 : Ithaca, NY +14853 : 42.447373 : -76.483703 : Ithaca, NY +14854 : 42.50632 : -76.608222 : Jacksonville, NY +14855 : 42.135945 : -77.5078 : Jasper, NY +14856 : 42.374218 : -77.364812 : Kanona, NY +14857 : 42.515233 : -76.92063 : Lakemont, NY +14858 : 42.03128 : -77.13413 : Lindley, NY +14859 : 42.116615 : -76.54806 : Lockwood, NY +14860 : 42.590355 : -76.84745 : Lodi, NY +14861 : 42.074742 : -76.69317 : Lowman, NY +14863 : 42.451569 : -76.706717 : Mecklenburg, NY +14864 : 42.271938 : -76.83926 : Millport, NY +14865 : 42.352725 : -76.84258 : Montour Falls, NY +14867 : 42.354851 : -76.60338 : Newfield, NY +14869 : 42.341316 : -76.77926 : Odessa, NY +14870 : 42.173481 : -77.11844 : Painted Post, NY +14871 : 42.048032 : -76.90521 : Pine City, NY +14872 : 42.218224 : -76.84694 : Pine Valley, NY +14873 : 42.525335 : -77.29673 : Prattsburgh, NY +14874 : 42.527075 : -77.16963 : Pulteney, NY +14876 : 42.429721 : -76.925846 : Reading Center, NY +14877 : 42.060154 : -77.68455 : Rexville, NY +14878 : 42.451153 : -76.93132 : Rock Stream, NY +14879 : 42.330602 : -77.19305 : Savona, NY +14880 : 42.170951 : -77.97556 : Scio, NY +14881 : 42.39534 : -76.35211 : Slaterville Springs, NY +14882 : 42.564191 : -76.54077 : Lansing, NY +14883 : 42.234865 : -76.48643 : Spencer, NY +14884 : 42.473556 : -77.89514 : Swain, NY +14885 : 42.041973 : -77.5632 : Troupsburg, NY +14886 : 42.51432 : -76.6689 : Trumansburg, NY +14887 : 42.399371 : -77.026768 : Tyrone, NY +14889 : 42.212809 : -76.58618 : Van Etten, NY +14891 : 42.374828 : -76.91606 : Watkins Glen, NY +14892 : 42.023442 : -76.53404 : Waverly, NY +14893 : 42.474143 : -77.097713 : Wayne, NY +14894 : 42.01359 : -76.75307 : Wellsburg, NY +14895 : 42.094855 : -77.94686 : Wellsville, NY +14897 : 42.034218 : -77.79269 : Whitesville, NY +14898 : 42.065376 : -77.42392 : Woodhull, NY +14901 : 42.091924 : -76.79217 : Elmira, NY +14902 : 42.147285 : -76.750888 : Elmira, NY +14903 : 42.129274 : -76.84497 : Elmira, NY +14904 : 42.072024 : -76.80393 : Elmira, NY +14905 : 42.087824 : -76.83686 : Elmira, NY +14925 : 42.147285 : -76.750888 : Elmira, NY +15001 : 40.603966 : -80.28776 : Aliquippa, PA +15003 : 40.593917 : -80.22181 : Ambridge, PA +15004 : 40.341487 : -80.38408 : Atlasburg, PA +15005 : 40.641066 : -80.20599 : Baden, PA +15006 : 40.630894 : -79.88057 : Bairdford, PA +15007 : 40.652311 : -79.93303 : Bakerstown, PA +15009 : 40.695281 : -80.3299 : Beaver, PA +15010 : 40.763899 : -80.33572 : Beaver Falls, PA +15012 : 40.140248 : -79.84251 : Belle Vernon, PA +15014 : 40.608403 : -79.74234 : Brackenridge, PA +15015 : 40.635147 : -80.08369 : Bradfordwoods, PA +15017 : 40.351802 : -80.11534 : Bridgeville, PA +15018 : 40.266358 : -79.79325 : Buena Vista, PA +15019 : 40.417545 : -80.33625 : Bulger, PA +15020 : 40.238657 : -79.94493 : Bunola, PA +15021 : 40.383884 : -80.41364 : Burgettstown, PA +15022 : 40.136537 : -79.91321 : Charleroi, PA +15024 : 40.569723 : -79.83242 : Cheswick, PA +15025 : 40.292974 : -79.90179 : Clairton, PA +15026 : 40.508376 : -80.35953 : Clinton, PA +15027 : 40.663816 : -80.23494 : Conway, PA +15028 : 40.297336 : -79.80192 : Coulters, PA +15030 : 40.583218 : -79.77947 : Creighton, PA +15031 : 40.347826 : -80.1656 : Cuddy, PA +15032 : 40.434436 : -80.024817 : Curtisville, PA +15033 : 40.176375 : -79.86138 : Donora, PA +15034 : 40.350519 : -79.89008 : Dravosburg, PA +15035 : 40.384223 : -79.80792 : East McKeesport, PA +15036 : 40.214896 : -80.179139 : Eldersville, PA +15037 : 40.258438 : -79.85946 : Elizabeth, PA +15038 : 40.251586 : -79.92474 : Elrama, PA +15042 : 40.682566 : -80.23208 : Freedom, PA +15043 : 40.582316 : -80.50182 : Georgetown, PA +15044 : 40.631011 : -79.95766 : Gibsonia, PA +15045 : 40.326919 : -79.88869 : Glassport, PA +15046 : 40.558477 : -80.2261 : Crescent, PA +15047 : 40.434436 : -80.024817 : Greenock, PA +15049 : 40.555627 : -79.8064 : Harwick, PA +15050 : 40.557889 : -80.44529 : Hookstown, PA +15051 : 40.565907 : -79.85848 : Indianola, PA +15052 : 40.665001 : -80.42534 : Industry, PA +15053 : 40.379884 : -80.36087 : Joffre, PA +15054 : 40.363006 : -80.40861 : Langeloth, PA +15055 : 40.304019 : -80.12246 : Lawrence, PA +15056 : 40.565367 : -80.20977 : Leetsdale, PA +15057 : 40.357286 : -80.23629 : McDonald, PA +15059 : 40.649081 : -80.47218 : Midland, PA +15060 : 40.368154 : -80.2924 : Midway, PA +15061 : 40.677132 : -80.28881 : Monaca, PA +15062 : 40.154271 : -79.88277 : Monessen, PA +15063 : 40.196694 : -79.92642 : Monongahela, PA +15064 : 40.352897 : -80.14529 : Morgan, PA +15065 : 40.628522 : -79.72566 : Natrona Heights, PA +15066 : 40.73998 : -80.29472 : New Brighton, PA +15067 : 40.207526 : -79.95304 : New Eagle, PA +15068 : 40.571108 : -79.74226 : New Kensington, PA +15069 : 40.360223 : -79.439801 : New Kensington, PA +15071 : 40.420319 : -80.18692 : Oakdale, PA +15072 : 40.13848 : -79.85575 : Pricedale, PA +15074 : 40.708166 : -80.2735 : Rochester, PA +15075 : 40.586408 : -79.82769 : Rural Ridge, PA +15076 : 40.61517 : -79.83394 : Russellton, PA +15077 : 40.602535 : -80.386344 : Shippingport, PA +15078 : 40.357926 : -80.38943 : Slovan, PA +15081 : 40.574634 : -80.23609 : South Heights, PA +15082 : 40.378997 : -80.21184 : Sturgeon, PA +15083 : 40.237582 : -79.80038 : Sutersville, PA +15084 : 40.61357 : -79.78095 : Tarentum, PA +15085 : 40.386968 : -79.74467 : Trafford, PA +15086 : 40.661431 : -80.09304 : Warrendale, PA +15087 : 40.186047 : -79.84994 : Webster, PA +15088 : 40.272901 : -79.89491 : West Elizabeth, PA +15089 : 40.211895 : -79.75483 : West Newton, PA +15090 : 40.617016 : -80.05916 : Wexford, PA +15091 : 40.434436 : -80.024817 : Wildwood, PA +15095 : 40.434436 : -80.024817 : Warrendale, PA +15096 : 40.434436 : -80.024817 : Warrendale, PA +15101 : 40.570915 : -79.96033 : Allison Park, PA +15102 : 40.324535 : -80.03864 : Bethel Park, PA +15104 : 40.404743 : -79.86439 : Braddock, PA +15106 : 40.404119 : -80.09014 : Carnegie, PA +15108 : 40.500665 : -80.18464 : Coraopolis, PA +15110 : 40.369969 : -79.85095 : Duquesne, PA +15112 : 40.399436 : -79.83794 : East Pittsburgh, PA +15116 : 40.533806 : -79.96303 : Glenshaw, PA +15120 : 40.395336 : -79.90635 : Homestead, PA +15122 : 40.366177 : -79.89418 : West Mifflin, PA +15123 : 40.434436 : -80.024817 : West Mifflin, PA +15126 : 40.454423 : -80.26324 : Imperial, PA +15127 : 40.434436 : -80.024817 : Ingomar, PA +15129 : 40.289752 : -80.00756 : Library, PA +15130 : 40.434436 : -80.024817 : McKeesport, PA +15131 : 40.341469 : -79.81105 : McKeesport, PA +15132 : 40.341919 : -79.84791 : McKeesport, PA +15133 : 40.332502 : -79.8646 : McKeesport, PA +15134 : 40.434436 : -80.024817 : McKeesport, PA +15135 : 40.306819 : -79.8145 : McKeesport, PA +15136 : 40.471618 : -80.07695 : McKees Rocks, PA +15137 : 40.380219 : -79.81017 : North Versailles, PA +15139 : 40.519518 : -79.83762 : Oakmont, PA +15140 : 40.405768 : -79.77643 : Pitcairn, PA +15142 : 40.379549 : -80.12451 : Presto, PA +15143 : 40.561091 : -80.15554 : Sewickley, PA +15144 : 40.543053 : -79.78223 : Springdale, PA +15145 : 40.408218 : -79.82339 : Turtle Creek, PA +15146 : 40.431034 : -79.76526 : Monroeville, PA +15147 : 40.498218 : -79.83426 : Verona, PA +15148 : 40.394268 : -79.80286 : Wilmerding, PA +15163 : 40.588257 : -79.554054 : North Apollo, PA +15189 : 40.434436 : -80.024817 : Sewickley, PA +15201 : 40.471468 : -79.95726 : Pittsburgh, PA +15202 : 40.502918 : -80.0704 : Pittsburgh, PA +15203 : 40.426211 : -79.97826 : Pittsburgh, PA +15204 : 40.455118 : -80.06008 : Pittsburgh, PA +15205 : 40.436618 : -80.07289 : Pittsburgh, PA +15206 : 40.468968 : -79.91863 : Pittsburgh, PA +15207 : 40.399355 : -79.93414 : Pittsburgh, PA +15208 : 40.455168 : -79.89709 : Pittsburgh, PA +15209 : 40.492618 : -79.97458 : Pittsburgh, PA +15210 : 40.409219 : -79.98948 : Pittsburgh, PA +15211 : 40.428369 : -80.01269 : Pittsburgh, PA +15212 : 40.460669 : -80.01144 : Pittsburgh, PA +15213 : 40.443269 : -79.95487 : Pittsburgh, PA +15214 : 40.479469 : -80.0115 : Pittsburgh, PA +15215 : 40.497701 : -79.9157 : Pittsburgh, PA +15216 : 40.400319 : -80.03566 : Pittsburgh, PA +15217 : 40.430919 : -79.92569 : Pittsburgh, PA +15218 : 40.424336 : -79.88725 : Pittsburgh, PA +15219 : 40.443819 : -79.98067 : Pittsburgh, PA +15220 : 40.430822 : -80.04453 : Pittsburgh, PA +15221 : 40.438035 : -79.87191 : Pittsburgh, PA +15222 : 40.447036 : -79.99313 : Pittsburgh, PA +15223 : 40.503768 : -79.95164 : Pittsburgh, PA +15224 : 40.463463 : -79.94612 : Pittsburgh, PA +15225 : 40.513778 : -80.13571 : Pittsburgh, PA +15226 : 40.394002 : -80.01655 : Pittsburgh, PA +15227 : 40.377869 : -79.97516 : Pittsburgh, PA +15228 : 40.372802 : -80.0448 : Pittsburgh, PA +15229 : 40.518368 : -80.03364 : Pittsburgh, PA +15230 : 40.434436 : -80.024817 : Pittsburgh, PA +15231 : 40.434436 : -80.024817 : Pittsburgh, PA +15232 : 40.454018 : -79.9325 : Pittsburgh, PA +15233 : 40.455919 : -80.02604 : Pittsburgh, PA +15234 : 40.369619 : -80.01831 : Pittsburgh, PA +15235 : 40.459518 : -79.83277 : Pittsburgh, PA +15236 : 40.342869 : -79.97929 : Pittsburgh, PA +15237 : 40.552768 : -80.03227 : Pittsburgh, PA +15238 : 40.518701 : -79.86744 : Pittsburgh, PA +15239 : 40.482655 : -79.74278 : Pittsburgh, PA +15240 : 40.434436 : -80.024817 : Pittsburgh, PA +15241 : 40.329619 : -80.07364 : Pittsburgh, PA +15242 : 40.434436 : -80.024817 : Pittsburgh, PA +15243 : 40.372669 : -80.0712 : Pittsburgh, PA +15244 : 40.434436 : -80.024817 : Pittsburgh, PA +15246 : 40.476524 : -79.899044 : Pittsburgh, PA +15250 : 40.434436 : -80.024817 : Pittsburgh, PA +15251 : 40.434436 : -80.024817 : Pittsburgh, PA +15252 : 40.434436 : -80.024817 : Pittsburgh, PA +15253 : 40.434436 : -80.024817 : Pittsburgh, PA +15254 : 40.434436 : -80.024817 : Pittsburgh, PA +15255 : 40.434436 : -80.024817 : Pittsburgh, PA +15257 : 40.434436 : -80.024817 : Pittsburgh, PA +15258 : 40.434436 : -80.024817 : Pittsburgh, PA +15259 : 40.434436 : -80.024817 : Pittsburgh, PA +15260 : 40.434436 : -80.024817 : Pittsburgh, PA +15261 : 40.434436 : -80.024817 : Pittsburgh, PA +15262 : 40.434436 : -80.024817 : Pittsburgh, PA +15263 : 40.434436 : -80.024817 : Pittsburgh, PA +15264 : 40.434436 : -80.024817 : Pittsburgh, PA +15265 : 40.434436 : -80.024817 : Pittsburgh, PA +15266 : 40.434436 : -80.024817 : Pittsburgh, PA +15267 : 40.434436 : -80.024817 : Pittsburgh, PA +15268 : 40.434436 : -80.024817 : Pittsburgh, PA +15270 : 40.434436 : -80.024817 : Pittsburgh, PA +15272 : 40.434436 : -80.024817 : Pittsburgh, PA +15274 : 40.434436 : -80.024817 : Pittsburgh, PA +15275 : 40.44952 : -80.179475 : Pittsburgh, PA +15276 : 40.434436 : -80.024817 : Pittsburgh, PA +15277 : 40.434436 : -80.024817 : Pittsburgh, PA +15278 : 40.434436 : -80.024817 : Pittsburgh, PA +15279 : 40.434436 : -80.024817 : Pittsburgh, PA +15281 : 40.434436 : -80.024817 : Pittsburgh, PA +15282 : 40.434436 : -80.024817 : Pittsburgh, PA +15283 : 40.434436 : -80.024817 : Pittsburgh, PA +15285 : 40.434436 : -80.024817 : Pittsburgh, PA +15286 : 40.434436 : -80.024817 : Pittsburgh, PA +15290 : 40.434436 : -80.024817 : Pittsburgh, PA +15298 : 40.420019 : -79.939473 : Pittsburgh, PA +15301 : 40.170663 : -80.25185 : Washington, PA +15310 : 39.792529 : -80.48584 : Aleppo, PA +15311 : 40.042851 : -80.18827 : Amity, PA +15312 : 40.264217 : -80.44199 : Avella, PA +15313 : 40.065384 : -80.02313 : Beallsville, PA +15314 : 40.127951 : -80.01226 : Bentleyville, PA +15315 : 39.760868 : -79.98315 : Bobtown, PA +15316 : 39.743424 : -80.26376 : Brave, PA +15317 : 40.26819 : -80.16222 : Canonsburg, PA +15320 : 39.883336 : -79.98393 : Carmichaels, PA +15321 : 40.322872 : -80.18745 : Cecil, PA +15322 : 39.976531 : -80.04218 : Clarksville, PA +15323 : 40.114204 : -80.40715 : Claysville, PA +15324 : 40.10012 : -80.06363 : Cokeburg, PA +15325 : 39.94821 : -79.96653 : Crucible, PA +15327 : 39.754889 : -79.95226 : Dilliner, PA +15329 : 40.030707 : -80.27353 : Prosperity, PA +15330 : 40.178679 : -80.10014 : Eighty Four, PA +15331 : 40.105887 : -80.02045 : Ellsworth, PA +15332 : 40.250299 : -79.99436 : Finleyville, PA +15333 : 40.010135 : -80.00537 : Fredericktown, PA +15334 : 39.809756 : -79.9969 : Garards Fort, PA +15336 : 40.260141 : -79.992678 : Gastonville, PA +15337 : 39.943552 : -80.37399 : Graysville, PA +15338 : 39.809161 : -79.93793 : Greensboro, PA +15339 : 40.301838 : -80.15431 : Hendersonville, PA +15340 : 40.290375 : -80.31845 : Hickory, PA +15341 : 39.82644 : -80.35051 : Holbrook, PA +15342 : 40.241854 : -80.21445 : Houston, PA +15344 : 39.92757 : -80.05491 : Jefferson, PA +15345 : 40.019657 : -80.10273 : Marianna, PA +15346 : 39.935562 : -80.07248 : Mather, PA +15347 : 40.214331 : -80.22872 : Meadow Lands, PA +15348 : 39.988369 : -79.99484 : Millsboro, PA +15349 : 39.741865 : -80.07999 : Mount Morris, PA +15350 : 40.292528 : -80.20022 : Muse, PA +15351 : 39.877676 : -79.92585 : Nemacolin, PA +15352 : 39.748534 : -80.39778 : New Freeport, PA +15353 : 39.961767 : -80.3069 : Nineveh, PA +15354 : 39.870635 : -80.211335 : Pine Bank, PA +15355 : 40.055216 : -80.009135 : Centerville, PA +15357 : 39.942802 : -79.99612 : Rices Landing, PA +15358 : 40.05604 : -79.9981 : Richeyville, PA +15359 : 39.880073 : -80.27332 : Rogersville, PA +15360 : 40.08708 : -80.07316 : Scenery Hill, PA +15361 : 40.32826 : -80.2596 : Southview, PA +15362 : 39.748302 : -80.21327 : Spraggs, PA +15363 : 40.251054 : -80.19917 : Strabane, PA +15364 : 39.956204 : -80.27779 : Sycamore, PA +15365 : 40.16113 : -80.378093 : Taylorstown, PA +15366 : 40.110068 : -80.031787 : Van Voorhis, PA +15367 : 40.261394 : -80.05254 : Venetia, PA +15368 : 40.015501 : -79.99019 : Vestaburg, PA +15370 : 39.892235 : -80.17983 : Waynesburg, PA +15376 : 40.101254 : -80.50229 : West Alexander, PA +15377 : 39.976027 : -80.44474 : West Finley, PA +15378 : 40.27758 : -80.27408 : Westland, PA +15379 : 40.240402 : -80.42414 : West Middletown, PA +15380 : 39.874975 : -80.46845 : Wind Ridge, PA +15401 : 39.89822 : -79.7311 : Uniontown, PA +15410 : 39.918848 : -79.90832 : Adah, PA +15411 : 39.751296 : -79.35113 : Addison, PA +15412 : 40.100345 : -79.846 : Allenport, PA +15413 : 39.987842 : -79.86681 : Allison, PA +15415 : 39.980787 : -79.850366 : Brier Hill, PA +15416 : 39.932084 : -79.65217 : Brownfield, PA +15417 : 40.01933 : -79.89869 : Brownsville, PA +15419 : 40.063977 : -79.89261 : California, PA +15420 : 39.958894 : -79.86798 : Cardale, PA +15421 : 39.845088 : -79.599126 : Chalk Hill, PA +15422 : 39.979032 : -79.81957 : Chestnut Ridge, PA +15423 : 40.082073 : -79.91911 : Coal Center, PA +15424 : 39.817148 : -79.34803 : Confluence, PA +15425 : 40.024138 : -79.58414 : Connellsville, PA +15427 : 40.061044 : -79.97336 : Daisytown, PA +15428 : 40.060912 : -79.65886 : Dawson, PA +15429 : 40.007062 : -79.9339 : Denbo, PA +15430 : 40.040653 : -79.66089 : Dickerson Run, PA +15431 : 39.968368 : -79.61815 : Dunbar, PA +15432 : 40.117368 : -79.86413 : Dunlevy, PA +15433 : 39.968503 : -79.95183 : East Millsboro, PA +15434 : 40.079185 : -79.87475 : Elco, PA +15435 : 39.950123 : -79.858471 : Fairbank, PA +15436 : 39.821336 : -79.75186 : Fairchance, PA +15437 : 39.793095 : -79.59465 : Farmington, PA +15438 : 40.093982 : -79.83787 : Fayette City, PA +15439 : 39.771324 : -79.635842 : Gans, PA +15440 : 39.72974 : -79.59124 : Gibbon Glade, PA +15442 : 40.013397 : -79.83113 : Grindstone, PA +15443 : 39.927312 : -79.88768 : Hibbs, PA +15444 : 40.011146 : -79.90541 : Hiller, PA +15445 : 39.876251 : -79.69296 : Hopwood, PA +15446 : 40.028267 : -79.39475 : Indian Head, PA +15447 : 39.945514 : -79.93869 : Isabella, PA +15448 : 40.134792 : -79.74272 : Jacobs Creek, PA +15449 : 39.963622 : -79.785349 : Keisterville, PA +15450 : 40.00666 : -79.96943 : La Belle, PA +15451 : 39.737104 : -79.83613 : Lake Lynn, PA +15454 : 39.863666 : -79.86378 : Leckrone, PA +15455 : 39.998299 : -79.64333 : Leisenring, PA +15456 : 39.923495 : -79.66014 : Lemont Furnace, PA +15458 : 39.879185 : -79.8618 : McClellandtown, PA +15459 : 39.757928 : -79.46514 : Markleysburg, PA +15460 : 39.804674 : -79.9102 : Martin, PA +15461 : 39.847077 : -79.90196 : Masontown, PA +15462 : 40.061931 : -79.38538 : Melcroft, PA +15463 : 39.882521 : -79.833585 : Merrittstown, PA +15464 : 39.926509 : -79.43272 : Mill Run, PA +15465 : 39.932084 : -79.65217 : Mount Braddock, PA +15466 : 40.075617 : -79.89611 : Newell, PA +15467 : 39.932084 : -79.65217 : New Geneva, PA +15468 : 39.936535 : -79.84669 : New Salem, PA +15469 : 40.006624 : -79.41616 : Normalville, PA +15470 : 39.854144 : -79.52989 : Ohiopyle, PA +15471 : 39.9783 : -79.856751 : German, PA +15472 : 39.916995 : -79.71589 : Oliver, PA +15473 : 40.080727 : -79.75697 : Perryopolis, PA +15474 : 39.74419 : -79.90126 : Point Marion, PA +15475 : 39.964486 : -79.87846 : Republic, PA +15476 : 39.869675 : -79.922 : Ronco, PA +15477 : 40.079169 : -79.86448 : Roscoe, PA +15478 : 39.791113 : -79.81247 : Smithfield, PA +15479 : 40.148576 : -79.72573 : Smithton, PA +15480 : 39.987054 : -79.77879 : Smock, PA +15482 : 40.062849 : -79.76338 : Star Junction, PA +15483 : 40.081257 : -79.85174 : Stockdale, PA +15484 : 39.89615 : -79.78956 : Uledi, PA +15485 : 39.816608 : -79.33009 : Ursina, PA +15486 : 40.034355 : -79.6819 : Vanderbilt, PA +15488 : 39.976316 : -79.768901 : Waltersburg, PA +15489 : 39.955933 : -79.69946 : West Leisenring, PA +15490 : 40.077289 : -79.42598 : White, PA +15492 : 40.120876 : -79.77089 : Wickhaven, PA +15493 : 40.091655 : -79.718512 : Perry, PA +15501 : 40.02847 : -79.1105 : Somerset, PA +15502 : 40.046023 : -79.258458 : Hidden Valley, PA +15510 : 39.963306 : -79.04089 : Somerset, PA +15520 : 40.112153 : -79.06772 : Acosta, PA +15521 : 40.188405 : -78.63027 : Alum Bank, PA +15522 : 39.998096 : -78.52204 : Bedford, PA +15530 : 39.937504 : -78.94183 : Berlin, PA +15531 : 40.173782 : -79.0629 : Boswell, PA +15532 : 39.766617 : -79.06594 : Boynton, PA +15533 : 39.989224 : -78.24245 : Breezewood, PA +15534 : 39.904209 : -78.70159 : Buffalo Mills, PA +15535 : 39.825578 : -78.4423 : Clearville, PA +15536 : 39.951222 : -78.20512 : Crystal Spring, PA +15537 : 40.003997 : -78.36456 : Everett, PA +15538 : 39.863486 : -78.84235 : Fairhope, PA +15539 : 40.128089 : -78.5839 : Fishertown, PA +15540 : 39.798343 : -79.22064 : Fort Hill, PA +15541 : 40.053525 : -78.99023 : Friedens, PA +15542 : 39.863543 : -79.06935 : Garrett, PA +15544 : 40.134685 : -79.09236 : Gray, PA +15545 : 39.776675 : -78.76286 : Hyndman, PA +15546 : 40.14376 : -79.04944 : Jenners, PA +15547 : 40.159054 : -79.06371 : Jennerstown, PA +15548 : 40.101106 : -78.938653 : Kantner, PA +15549 : 40.020764 : -79.012306 : Listie, PA +15550 : 40.003724 : -78.63685 : Manns Choice, PA +15551 : 39.886916 : -79.25388 : Markleton, PA +15552 : 39.805436 : -79.00013 : Meyersdale, PA +15553 : 39.983808 : -78.77215 : New Baltimore, PA +15554 : 40.121392 : -78.5877 : New Paris, PA +15555 : 40.091429 : -79.087198 : Quecreek, PA +15557 : 39.935728 : -79.22093 : Rockwood, PA +15558 : 39.742872 : -79.0868 : Salisbury, PA +15559 : 40.058077 : -78.66391 : Schellsburg, PA +15560 : 40.017182 : -78.90589 : Shanksville, PA +15561 : 40.096406 : -79.090158 : Sipesville, PA +15562 : 39.746182 : -79.13245 : Springs, PA +15563 : 40.099003 : -78.94801 : Stoystown, PA +15564 : 39.729896 : -78.844105 : Wellersburg, PA +15565 : 40.003476 : -79.037983 : West Salisbury, PA +15601 : 40.298765 : -79.54126 : Greensburg, PA +15605 : 40.360223 : -79.439801 : Greensburg, PA +15606 : 40.360223 : -79.439801 : Greensburg, PA +15610 : 40.138405 : -79.42425 : Acme, PA +15611 : 40.3044 : -79.65604 : Adamsburg, PA +15612 : 40.136883 : -79.59033 : Alverton, PA +15613 : 40.560849 : -79.57544 : Apollo, PA +15615 : 40.358962 : -79.73879 : Ardara, PA +15616 : 40.360223 : -79.439801 : Armbrust, PA +15617 : 40.26974 : -79.66042 : Arona, PA +15618 : 40.528929 : -79.48116 : Avonmore, PA +15619 : 40.360223 : -79.439801 : Bovard, PA +15620 : 40.321426 : -79.34079 : Bradenville, PA +15621 : 40.360223 : -79.439801 : Calumet, PA +15622 : 40.038201 : -79.30426 : Champion, PA +15623 : 40.366748 : -79.61645 : Claridge, PA +15624 : 40.362739 : -79.46886 : Crabtree, PA +15625 : 40.267005 : -79.67427 : Darragh, PA +15626 : 40.409992 : -79.57266 : Delmont, PA +15627 : 40.339547 : -79.30172 : Derry, PA +15628 : 40.108585 : -79.38106 : Donegal, PA +15629 : 40.598412 : -79.56196 : East Vandergrift, PA +15630 : 40.847829 : -79.451575 : Edmon, PA +15631 : 40.090582 : -79.58704 : Everson, PA +15632 : 40.430632 : -79.61837 : Export, PA +15633 : 40.355049 : -79.52297 : Forbes Road, PA +15634 : 40.324588 : -79.60693 : Grapeville, PA +15635 : 40.351619 : -79.49612 : Hannastown, PA +15636 : 40.359353 : -79.65576 : Harrison City, PA +15637 : 40.261878 : -79.71321 : Herminie, PA +15638 : 40.26106 : -79.14313 : Hostetter, PA +15639 : 40.201398 : -79.60071 : Hunker, PA +15640 : 40.22615 : -79.73165 : Hutchinson, PA +15641 : 40.631729 : -79.58961 : Hyde Park, PA +15642 : 40.325902 : -79.71324 : Irwin, PA +15643 : 40.322965 : -79.653388 : Hempfield, PA +15644 : 40.329238 : -79.61469 : Jeannette, PA +15646 : 40.087243 : -79.32665 : Jones Mills, PA +15647 : 40.344319 : -79.72574 : Larimer, PA +15650 : 40.299646 : -79.38845 : Latrobe, PA +15655 : 40.202095 : -79.19266 : Laughlintown, PA +15656 : 40.63071 : -79.61381 : Leechburg, PA +15658 : 40.247351 : -79.22882 : Ligonier, PA +15660 : 40.245378 : -79.77196 : Lowber, PA +15661 : 40.319956 : -79.35901 : Loyalhanna, PA +15662 : 40.333489 : -79.47547 : Luxor, PA +15663 : 40.244753 : -79.67839 : Madison, PA +15664 : 40.310772 : -79.617187 : Mammoth, PA +15665 : 40.333339 : -79.66646 : Manor, PA +15666 : 40.150143 : -79.52492 : Mount Pleasant, PA +15668 : 40.451664 : -79.67948 : Murrysville, PA +15670 : 40.408295 : -79.43967 : New Alexandria, PA +15671 : 40.356055 : -79.3194 : New Derry, PA +15672 : 40.231003 : -79.61611 : New Stanton, PA +15673 : 40.593301 : -79.55779 : North Apollo, PA +15674 : 40.2071 : -79.49619 : Norvelt, PA +15675 : 40.330326 : -79.64061 : Penn, PA +15676 : 40.243195 : -79.45737 : Pleasant Unity, PA +15677 : 40.175368 : -79.23651 : Rector, PA +15678 : 40.287869 : -79.72904 : Rillton, PA +15679 : 40.17462 : -79.63584 : Ruffs Dale, PA +15680 : 40.521015 : -79.49522 : Salina, PA +15681 : 40.500852 : -79.4463 : Saltsburg, PA +15682 : 40.847829 : -79.451575 : Schenley, PA +15683 : 40.103791 : -79.59396 : Scottdale, PA +15684 : 40.463572 : -79.51475 : Slickville, PA +15685 : 40.196455 : -79.52466 : Southwest, PA +15686 : 40.608969 : -79.42092 : Spring Church, PA +15687 : 40.134658 : -79.31493 : Stahlstown, PA +15688 : 40.172199 : -79.59265 : Tarrs, PA +15689 : 40.219344 : -79.49244 : United, PA +15690 : 40.612649 : -79.56708 : Vandergrift, PA +15691 : 40.294021 : -79.686626 : Wendel, PA +15692 : 40.332063 : -79.67632 : Westmoreland City, PA +15693 : 40.253086 : -79.40846 : Whitney, PA +15695 : 40.195407 : -79.69532 : Wyano, PA +15696 : 40.279151 : -79.36465 : Youngstown, PA +15697 : 40.238134 : -79.58172 : Youngwood, PA +15698 : 40.217118 : -79.68406 : Yukon, PA +15701 : 40.626307 : -79.16146 : Indiana, PA +15705 : 40.640031 : -79.129445 : Indiana, PA +15710 : 40.632966 : -78.85799 : Alverda, PA +15711 : 41.00232 : -78.96306 : Anita, PA +15712 : 40.786561 : -78.84707 : Arcadia, PA +15713 : 40.56265 : -79.25965 : Aultman, PA +15714 : 40.662676 : -78.7936 : Barnesboro, PA +15715 : 40.969945 : -78.87784 : Big Run, PA +15716 : 40.472335 : -79.19534 : Black Lick, PA +15717 : 40.446361 : -79.24611 : Blairsville, PA +15720 : 40.529238 : -79.0846 : Brush Valley, PA +15721 : 40.813203 : -78.78764 : Burnside, PA +15722 : 40.600375 : -78.72133 : Carrolltown, PA +15723 : 40.70673 : -79.16106 : Chambersville, PA +15724 : 40.734783 : -78.81275 : Cherry Tree, PA +15725 : 40.518067 : -79.34538 : Clarksburg, PA +15727 : 40.55027 : -79.323745 : Clune, PA +15728 : 40.674994 : -78.98999 : Clymer, PA +15729 : 40.710407 : -78.93008 : Commodore, PA +15730 : 41.040903 : -79.08486 : Coolspring, PA +15731 : 40.500385 : -79.17407 : Coral, PA +15732 : 40.721516 : -79.21224 : Creekside, PA +15733 : 40.98415 : -78.9622 : De Lancey, PA +15734 : 40.717399 : -79.00688 : Dixonville, PA +15736 : 40.694906 : -79.34332 : Elderton, PA +15737 : 40.607635 : -78.752415 : Elmora, PA +15738 : 40.693633 : -78.775076 : Emeigh, PA +15739 : 40.677609 : -79.16422 : Ernest, PA +15740 : 41.141079 : -78.962877 : Frostburg, PA +15741 : 40.804018 : -78.86765 : Gipsy, PA +15742 : 40.816706 : -78.8636 : Glen Campbell, PA +15744 : 40.916407 : -79.08397 : Hamilton, PA +15745 : 40.621037 : -78.91839 : Heilwood, PA +15746 : 40.767854 : -78.877331 : Hillsdale, PA +15747 : 40.763402 : -79.14759 : Home, PA +15748 : 40.529621 : -79.14264 : Homer City, PA +15750 : 40.482783 : -79.185048 : Josephine, PA +15751 : 40.640031 : -79.129445 : Juneau, PA +15752 : 40.541589 : -79.28315 : Kent, PA +15753 : 40.801942 : -78.66543 : La Jose, PA +15754 : 40.558928 : -79.1497 : Lucernemines, PA +15756 : 40.570149 : -79.29689 : McIntyre, PA +15757 : 40.890039 : -78.72404 : Mahaffey, PA +15758 : 40.640031 : -79.129445 : Marchand, PA +15759 : 40.771687 : -79.04221 : Marion Center, PA +15760 : 40.652164 : -78.79936 : Marsteller, PA +15761 : 40.625962 : -78.89325 : Mentcle, PA +15762 : 40.596681 : -78.83252 : Nicktown, PA +15763 : 40.906164 : -79.13757 : Northpoint, PA +15764 : 40.986389 : -79.02664 : Oliveburg, PA +15765 : 40.592854 : -78.98412 : Penn Run, PA +15767 : 40.954059 : -78.97017 : Punxsutawney, PA +15770 : 40.999588 : -79.15992 : Ringgold, PA +15771 : 40.827315 : -78.98991 : Rochester Mills, PA +15772 : 40.877189 : -78.91752 : Rossiter, PA +15773 : 40.628368 : -78.73335 : Saint Benedict, PA +15774 : 40.657804 : -79.3328 : Shelocta, PA +15775 : 40.642174 : -78.77125 : Spangler, PA +15776 : 41.013546 : -79.11389 : Sprankle Mills, PA +15777 : 40.700574 : -78.95812 : Starford, PA +15778 : 40.965989 : -79.20053 : Timblin, PA +15779 : 40.416334 : -79.23317 : Torrance, PA +15780 : 40.91719 : -79.04992 : Valier, PA +15781 : 40.964542 : -78.99646 : Walston, PA +15783 : 40.601789 : -79.35524 : West Lebanon, PA +15784 : 41.027404 : -79.13928 : Worthville, PA +15801 : 41.125563 : -78.74648 : Du Bois, PA +15817 : 40.332173 : -80.177979 : South Fayette, PA +15821 : 41.328011 : -78.35854 : Benezett, PA +15822 : 41.415878 : -78.665057 : Brandy Camp, PA +15823 : 41.254038 : -78.71987 : Brockport, PA +15824 : 41.241861 : -78.80577 : Brockway, PA +15825 : 41.160579 : -79.06479 : Brookville, PA +15827 : 41.293237 : -78.50472 : Byrnedale, PA +15828 : 41.34149 : -79.13567 : Clarington, PA +15829 : 41.173044 : -79.19369 : Corsica, PA +15831 : 41.304782 : -78.621286 : Dagus Mines, PA +15832 : 41.379949 : -78.17987 : Driftwood, PA +15834 : 41.517738 : -78.25309 : Emporium, PA +15840 : 41.160521 : -78.81129 : Falls Creek, PA +15841 : 41.254727 : -78.50411 : Force, PA +15845 : 41.497219 : -78.68278 : Johnsonburg, PA +15846 : 41.337926 : -78.61075 : Kersey, PA +15847 : 41.08434 : -79.0308 : Knox Dale, PA +15848 : 41.031691 : -78.72684 : Luthersburg, PA +15849 : 41.201892 : -78.56335 : Penfield, PA +15851 : 41.095493 : -78.88994 : Reynoldsville, PA +15853 : 41.420778 : -78.74776 : Ridgway, PA +15856 : 41.082722 : -78.62593 : Rockton, PA +15857 : 41.4376 : -78.54272 : Saint Marys, PA +15860 : 41.345663 : -79.04707 : Sigel, PA +15861 : 41.370716 : -78.04939 : Sinnamahoning, PA +15863 : 41.012739 : -78.83719 : Stump Creek, PA +15864 : 41.108591 : -79.19553 : Summerville, PA +15865 : 41.049353 : -78.81868 : Sykesville, PA +15866 : 41.023829 : -78.78711 : Troutville, PA +15868 : 41.283012 : -78.42919 : Weedville, PA +15870 : 41.587333 : -78.65347 : Wilcox, PA +15874 : 41.027511 : -79.141174 : Worthville, PA +15901 : 40.325374 : -78.91485 : Johnstown, PA +15902 : 40.309087 : -78.90069 : Johnstown, PA +15904 : 40.289442 : -78.86612 : Johnstown, PA +15905 : 40.302374 : -78.93802 : Johnstown, PA +15906 : 40.348973 : -78.94132 : Johnstown, PA +15907 : 40.325374 : -78.915147 : Johnstown, PA +15909 : 40.36344 : -78.87674 : Johnstown, PA +15915 : 40.484487 : -78.702224 : Johnstown, PA +15920 : 40.460191 : -79.04608 : Armagh, PA +15921 : 40.319561 : -78.694043 : Beaverdale, PA +15922 : 40.484487 : -78.702224 : Belsano, PA +15923 : 40.372103 : -79.14574 : Bolivar, PA +15924 : 40.123213 : -78.80478 : Cairnbrook, PA +15925 : 40.408989 : -78.64104 : Cassandra, PA +15926 : 40.097937 : -78.81509 : Central City, PA +15927 : 40.543153 : -78.79067 : Colver, PA +15928 : 40.23741 : -78.92978 : Davidsville, PA +15929 : 40.467684 : -79.00063 : Dilltown, PA +15930 : 40.294347 : -78.71981 : Dunlo, PA +15931 : 40.498793 : -78.74591 : Ebensburg, PA +15934 : 40.280875 : -78.80196 : Elton, PA +15935 : 40.212192 : -78.95052 : Hollsopple, PA +15936 : 40.156538 : -78.91515 : Hooversville, PA +15937 : 40.208983 : -78.98782 : Jerome, PA +15938 : 40.42026 : -78.61924 : Lilly, PA +15940 : 40.506799 : -78.62996 : Loretto, PA +15942 : 40.402861 : -78.83563 : Mineral Point, PA +15943 : 40.474488 : -78.84402 : Nanty Glo, PA +15944 : 40.371165 : -79.0772 : New Florence, PA +15945 : 40.356723 : -78.873296 : Parkhill, PA +15946 : 40.384718 : -78.6651 : Portage, PA +15948 : 40.491089 : -78.76419 : Revloc, PA +15949 : 40.401076 : -79.13701 : Robinson, PA +15951 : 40.338615 : -78.776137 : Saint Michael, PA +15952 : 40.298625 : -78.77164 : Salix, PA +15953 : 40.206435 : -78.900533 : Seanor, PA +15954 : 40.414654 : -79.01806 : Seward, PA +15955 : 40.324295 : -78.7063 : Sidman, PA +15956 : 40.358541 : -78.78201 : South Fork, PA +15957 : 40.536405 : -78.89205 : Strongstown, PA +15958 : 40.381332 : -78.7433 : Summerhill, PA +15959 : 40.267975 : -78.915567 : Tire Hill, PA +15960 : 40.49963 : -78.861308 : Twin Rocks, PA +15961 : 40.47535 : -78.94295 : Vintondale, PA +15962 : 40.380188 : -78.719019 : Wilmore, PA +15963 : 40.228222 : -78.81978 : Windber, PA +15965 : 40.388921 : -78.720134 : Wilmore, PA +15973 : 40.098721 : -79.785885 : Perry, PA +16001 : 40.877664 : -79.9113 : Butler, PA +16002 : 40.818663 : -79.86119 : Butler, PA +16003 : 40.921145 : -79.92758 : Butler, PA +16006 : 40.726206 : -80.10054 : Cranberry, PA +16016 : 40.921145 : -79.92758 : Boyers, PA +16017 : 40.921145 : -79.92758 : Boyers, PA +16018 : 40.921145 : -79.92758 : Boyers, PA +16020 : 41.10936 : -79.90816 : Boyers, PA +16021 : 40.921145 : -79.92758 : Branchton, PA +16022 : 41.057142 : -79.73005 : Bruin, PA +16023 : 40.796809 : -79.75147 : Cabot, PA +16024 : 40.739587 : -80.03721 : Callery, PA +16025 : 40.947245 : -79.75428 : Chicora, PA +16027 : 40.818096 : -80.0137 : Connoquenessing, PA +16028 : 40.97717 : -79.61922 : East Brady, PA +16029 : 40.877703 : -79.84392 : East Butler, PA +16030 : 41.135335 : -79.79791 : Eau Claire, PA +16033 : 40.789672 : -80.04848 : Evans City, PA +16034 : 40.868261 : -79.72506 : Fenelton, PA +16035 : 41.106327 : -80.00429 : Forestville, PA +16036 : 41.141525 : -79.67366 : Foxburg, PA +16037 : 40.821535 : -80.13033 : Harmony, PA +16038 : 41.152347 : -79.9632 : Harrisville, PA +16039 : 40.921145 : -79.92758 : Herman, PA +16040 : 41.098857 : -79.84091 : Hilliards, PA +16041 : 41.009219 : -79.7102 : Karns City, PA +16045 : 40.85062 : -79.91314 : Lyndora, PA +16046 : 40.695658 : -80.03359 : Mars, PA +16048 : 41.04719 : -79.808899 : North Washington, PA +16049 : 41.097836 : -79.66317 : Parker, PA +16050 : 41.028275 : -79.75423 : Petrolia, PA +16051 : 40.953141 : -80.14799 : Portersville, PA +16052 : 40.898789 : -80.06125 : Prospect, PA +16053 : 40.808934 : -79.97811 : Renfrew, PA +16054 : 41.160944 : -79.65393 : Saint Petersburg, PA +16055 : 40.713078 : -79.73603 : Sarver, PA +16056 : 40.732393 : -79.83422 : Saxonburg, PA +16057 : 41.047157 : -80.05506 : Slippery Rock, PA +16058 : 41.202325 : -79.453751 : Turkey City, PA +16059 : 40.702289 : -79.93733 : Valencia, PA +16061 : 41.005075 : -79.8851 : West Sunbury, PA +16063 : 40.783001 : -80.13343 : Zelienople, PA +16066 : 40.700423 : -80.11374 : Cranberry Twp, PA +16101 : 40.992023 : -80.32747 : New Castle, PA +16102 : 40.970991 : -80.38291 : New Castle, PA +16103 : 40.989662 : -80.308376 : New Castle, PA +16105 : 41.038205 : -80.34539 : New Castle, PA +16107 : 40.989662 : -80.308376 : New Castle, PA +16108 : 40.989662 : -80.308376 : New Castle, PA +16110 : 41.508647 : -80.37501 : Adamsville, PA +16111 : 41.518256 : -80.2834 : Atlantic, PA +16112 : 40.976839 : -80.49346 : Bessemer, PA +16113 : 41.280779 : -80.4241 : Clark, PA +16114 : 41.402438 : -80.18346 : Clarks Mills, PA +16115 : 40.802863 : -80.44364 : Darlington, PA +16116 : 41.025132 : -80.45756 : Edinburg, PA +16117 : 40.857663 : -80.27534 : Ellwood City, PA +16120 : 40.875943 : -80.46851 : Enon Valley, PA +16121 : 41.211606 : -80.49404 : Farrell, PA +16123 : 40.821528 : -80.19444 : Fombell, PA +16124 : 41.329301 : -80.26042 : Fredonia, PA +16125 : 41.403462 : -80.37424 : Greenville, PA +16127 : 41.169987 : -80.08174 : Grove City, PA +16130 : 41.443741 : -80.22367 : Hadley, PA +16131 : 41.549671 : -80.37143 : Hartstown, PA +16132 : 41.00745 : -80.49576 : Hillsville, PA +16133 : 41.274408 : -80.12409 : Jackson Center, PA +16134 : 41.506801 : -80.46177 : Jamestown, PA +16136 : 40.834903 : -80.32428 : Koppel, PA +16137 : 41.234591 : -80.2364 : Mercer, PA +16140 : 41.098098 : -80.50393 : New Bedford, PA +16141 : 40.853014 : -80.40181 : New Galilee, PA +16142 : 41.135063 : -80.33492 : New Wilmington, PA +16143 : 41.096535 : -80.46266 : Pulaski, PA +16145 : 41.385019 : -80.07987 : Sandy Lake, PA +16146 : 41.230106 : -80.49896 : Sharon, PA +16148 : 41.232543 : -80.45797 : Hermitage, PA +16150 : 41.266185 : -80.46312 : Sharpsville, PA +16151 : 41.443244 : -80.2073 : Sheakleyville, PA +16153 : 41.335391 : -80.08895 : Stoneboro, PA +16154 : 41.330028 : -80.42771 : Transfer, PA +16155 : 41.074943 : -80.50611 : Villa Maria, PA +16156 : 41.097672 : -80.23 : Volant, PA +16157 : 40.889241 : -80.34189 : Wampum, PA +16159 : 41.174066 : -80.45319 : West Middlesex, PA +16160 : 40.93156 : -80.36453 : West Pittsburg, PA +16161 : 41.200389 : -80.4957 : Wheatland, PA +16172 : 41.119992 : -80.333192 : New Wilmington, PA +16201 : 40.809467 : -79.49922 : Kittanning, PA +16210 : 40.885328 : -79.52058 : Adrian, PA +16211 : 40.640031 : -79.129445 : Beyer, PA +16212 : 40.7532 : -79.58296 : Cadogan, PA +16213 : 41.125693 : -79.557 : Callensburg, PA +16214 : 41.199396 : -79.37196 : Clarion, PA +16215 : 40.847829 : -79.451575 : Kittanning, PA +16216 : 40.847829 : -79.451575 : Climax, PA +16217 : 41.344067 : -79.20159 : Cooksburg, PA +16218 : 40.923894 : -79.59137 : Cowansville, PA +16220 : 41.202325 : -79.453751 : Crown, PA +16221 : 41.202325 : -79.453751 : Curllsville, PA +16222 : 40.8739 : -79.24188 : Dayton, PA +16223 : 40.954782 : -79.37922 : Distant, PA +16224 : 41.045243 : -79.29524 : Fairmount City, PA +16225 : 41.202325 : -79.453751 : Fisher, PA +16226 : 40.747985 : -79.51228 : Ford City, PA +16228 : 40.76172 : -79.53488 : Ford Cliff, PA +16229 : 40.711528 : -79.65608 : Freeport, PA +16230 : 41.020621 : -79.27416 : Hawthorn, PA +16232 : 41.230562 : -79.55397 : Knox, PA +16233 : 41.361473 : -79.27869 : Leeper, PA +16234 : 41.127485 : -79.32695 : Limestone, PA +16235 : 41.323424 : -79.35134 : Lucinda, PA +16236 : 40.780619 : -79.52342 : McGrann, PA +16238 : 40.786362 : -79.52164 : Manorville, PA +16239 : 41.496544 : -79.13944 : Marienville, PA +16240 : 41.035602 : -79.2235 : Mayport, PA +16242 : 41.007757 : -79.3461 : New Bethlehem, PA +16244 : 40.796406 : -79.2727 : Nu Mine, PA +16245 : 41.007679 : -79.29719 : Oak Ridge, PA +16246 : 40.793823 : -79.18023 : Plumville, PA +16248 : 41.039668 : -79.50254 : Rimersburg, PA +16249 : 40.779271 : -79.31915 : Rural Valley, PA +16250 : 40.776212 : -79.23196 : Sagamore, PA +16253 : 40.95557 : -79.34352 : Seminole, PA +16254 : 41.255691 : -79.45122 : Shippenville, PA +16255 : 41.115411 : -79.46865 : Sligo, PA +16256 : 40.854736 : -79.13528 : Smicksburg, PA +16257 : 41.202325 : -79.453751 : Snydersburg, PA +16258 : 41.221629 : -79.28293 : Strattanville, PA +16259 : 40.90764 : -79.45161 : Templeton, PA +16260 : 41.41229 : -79.22805 : Vowinckel, PA +16261 : 40.847829 : -79.451575 : Widnoon, PA +16262 : 40.839519 : -79.65268 : Worthington, PA +16263 : 40.801244 : -79.33317 : Yatesboro, PA +16299 : 40.755638 : -79.651602 : South Buffalo, PA +16301 : 41.439658 : -79.69044 : Oil City, PA +16302 : 41.407066 : -79.730975 : Oil City, PA +16311 : 41.452879 : -80.0222 : Carlton, PA +16312 : 41.935848 : -79.309668 : Chandlers Valley, PA +16313 : 41.773848 : -79.11801 : Clarendon, PA +16314 : 41.517339 : -80.05761 : Cochranton, PA +16316 : 41.607955 : -80.29601 : Conneaut Lake, PA +16317 : 41.526679 : -79.86027 : Cooperstown, PA +16319 : 41.321298 : -79.6478 : Cranberry, PA +16321 : 41.581586 : -79.40272 : East Hickory, PA +16322 : 41.626321 : -79.3633 : Endeavor, PA +16323 : 41.407366 : -79.83921 : Franklin, PA +16326 : 41.362104 : -79.43125 : Fryburg, PA +16327 : 41.61792 : -79.94934 : Guys Mills, PA +16328 : 41.666057 : -80.065793 : Hydetown, PA +16329 : 41.821327 : -79.27004 : Irvine, PA +16331 : 41.306317 : -79.57486 : Kossuth, PA +16332 : 41.378962 : -79.37128 : Lickingville, PA +16333 : 41.732284 : -78.9393 : Ludlow, PA +16334 : 41.316316 : -79.44164 : Marble, PA +16335 : 41.637502 : -80.15214 : Meadville, PA +16340 : 41.826878 : -79.42231 : Pittsfield, PA +16341 : 41.560056 : -79.53852 : Pleasantville, PA +16342 : 41.335938 : -79.93647 : Polk, PA +16343 : 41.410693 : -79.75012 : Reno, PA +16344 : 41.471398 : -79.68946 : Rouseville, PA +16345 : 41.954896 : -79.09583 : Russell, PA +16346 : 41.378236 : -79.6864 : Seneca, PA +16347 : 41.676904 : -79.03116 : Sheffield, PA +16350 : 41.977253 : -79.33007 : Sugar Grove, PA +16351 : 41.680467 : -79.39428 : Tidioute, PA +16352 : 41.764498 : -79.04693 : Tiona, PA +16353 : 41.493473 : -79.3902 : Tionesta, PA +16354 : 41.622203 : -79.69298 : Titusville, PA +16355 : 41.562679 : -80.062136 : East Fairfield, PA +16360 : 41.684627 : -79.88684 : Townville, PA +16361 : 41.391383 : -79.34078 : Tylersburg, PA +16362 : 41.445871 : -79.96704 : Utica, PA +16364 : 41.369406 : -79.51724 : Venus, PA +16365 : 41.853225 : -79.15521 : Warren, PA +16366 : 41.811682 : -79.264322 : Warren, PA +16367 : 41.811682 : -79.264322 : Warren, PA +16368 : 41.811682 : -79.264322 : Irvine, PA +16369 : 41.811682 : -79.264322 : Irvine, PA +16370 : 41.569732 : -79.40911 : West Hickory, PA +16371 : 41.860809 : -79.31703 : Youngsville, PA +16372 : 41.199578 : -79.87436 : Clintonville, PA +16373 : 41.195768 : -79.70044 : Emlenton, PA +16374 : 41.252823 : -79.82675 : Kennerdell, PA +16375 : 41.202325 : -79.453751 : Lamartine, PA +16388 : 41.659552 : -80.157553 : Meadville, PA +16401 : 41.883648 : -80.37687 : Albion, PA +16402 : 41.972884 : -79.478 : Bear Lake, PA +16403 : 41.79637 : -80.02524 : Cambridge Springs, PA +16404 : 41.727069 : -79.78908 : Centerville, PA +16405 : 41.94208 : -79.54534 : Columbus, PA +16406 : 41.746056 : -80.35888 : Conneautville, PA +16407 : 41.919028 : -79.65224 : Corry, PA +16410 : 41.922138 : -80.32884 : Cranesville, PA +16411 : 41.981289 : -80.44277 : East Springfield, PA +16412 : 41.875896 : -80.15129 : Edinboro, PA +16413 : 42.182748 : -80.064915 : Elgin, PA +16414 : 41.785249 : -79.787096 : Bloomfield, PA +16415 : 42.035523 : -80.23526 : Fairview, PA +16416 : 41.81426 : -79.44777 : Garland, PA +16417 : 41.979 : -80.3098 : Girard, PA +16420 : 41.700333 : -79.54788 : Grand Valley, PA +16421 : 42.169106 : -79.9409 : Harborcreek, PA +16422 : 41.661068 : -80.31618 : Harmonsburg, PA +16423 : 42.019394 : -80.34064 : Lake City, PA +16424 : 41.63471 : -80.43671 : Linesville, PA +16426 : 41.992528 : -80.14448 : McKean, PA +16427 : 41.87504 : -79.96986 : Mill Village, PA +16428 : 42.195488 : -79.83296 : North East, PA +16430 : 41.999881 : -80.42585 : North Springfield, PA +16432 : 41.666057 : -80.065793 : Riceville, PA +16433 : 41.732434 : -80.14613 : Saegertown, PA +16434 : 41.803172 : -79.68296 : Spartansburg, PA +16435 : 41.817144 : -80.38568 : Springboro, PA +16436 : 41.860822 : -79.51047 : Spring Creek, PA +16438 : 41.87487 : -79.843 : Union City, PA +16440 : 41.774575 : -80.1145 : Venango, PA +16441 : 41.93958 : -79.98542 : Waterford, PA +16442 : 42.029506 : -79.82547 : Wattsburg, PA +16443 : 41.942171 : -80.48002 : West Springfield, PA +16444 : 42.182748 : -80.064915 : Edinboro, PA +16475 : 42.182748 : -80.064915 : Albion, PA +16501 : 42.122957 : -80.08437 : Erie, PA +16502 : 42.110757 : -80.10024 : Erie, PA +16503 : 42.127807 : -80.06351 : Erie, PA +16504 : 42.110156 : -80.05187 : Erie, PA +16505 : 42.100307 : -80.15552 : Erie, PA +16506 : 42.072606 : -80.14541 : Erie, PA +16507 : 42.132707 : -80.08452 : Erie, PA +16508 : 42.097856 : -80.09147 : Erie, PA +16509 : 42.074056 : -80.06927 : Erie, PA +16510 : 42.126956 : -80.0004 : Erie, PA +16511 : 42.156157 : -80.01686 : Erie, PA +16512 : 42.030201 : -80.257855 : Erie, PA +16514 : 42.182748 : -80.064915 : Erie, PA +16515 : 42.182748 : -80.064915 : Erie, PA +16522 : 42.182748 : -80.064915 : Erie, PA +16530 : 42.182748 : -80.064915 : Erie, PA +16531 : 42.182748 : -80.064915 : Erie, PA +16532 : 42.182748 : -80.064915 : Erie, PA +16533 : 42.182748 : -80.064915 : Erie, PA +16534 : 42.182748 : -80.064915 : Erie, PA +16538 : 42.182748 : -80.064915 : Erie, PA +16541 : 42.182748 : -80.064915 : Erie, PA +16544 : 42.182748 : -80.064915 : Erie, PA +16546 : 42.182748 : -80.064915 : Erie, PA +16550 : 42.182748 : -80.064915 : Erie, PA +16553 : 42.182748 : -80.064915 : Erie, PA +16554 : 42.182748 : -80.064915 : Erie, PA +16558 : 42.182748 : -80.064915 : Erie, PA +16563 : 42.182748 : -80.064915 : Erie, PA +16565 : 42.182748 : -80.064915 : Erie, PA +16601 : 40.526319 : -78.40082 : Altoona, PA +16602 : 40.50217 : -78.39121 : Altoona, PA +16603 : 40.50177 : -78.410035 : Altoona, PA +16611 : 40.561651 : -78.10583 : Alexandria, PA +16613 : 40.554187 : -78.5406 : Ashville, PA +16614 : 40.262311 : -78.421434 : Bakers Summit, PA +16616 : 40.770522 : -78.44099 : Beccaria, PA +16617 : 40.601566 : -78.33361 : Bellwood, PA +16619 : 40.684811 : -78.41481 : Blandburg, PA +16620 : 40.8376 : -78.3527 : Brisbin, PA +16621 : 40.211299 : -78.13 : Broad Top, PA +16622 : 40.336064 : -78.06665 : Calvin, PA +16623 : 40.274021 : -78.04002 : Cassville, PA +16624 : 40.578804 : -78.6098 : Chest Springs, PA +16625 : 40.290914 : -78.48646 : Claysburg, PA +16627 : 40.753504 : -78.52097 : Coalport, PA +16629 : 40.521778 : -78.526274 : Coupon, PA +16630 : 40.464754 : -78.5885 : Cresson, PA +16631 : 40.282346 : -78.34748 : Curryville, PA +16633 : 40.160858 : -78.23205 : Defiance, PA +16634 : 40.205819 : -78.17565 : Dudley, PA +16635 : 40.419572 : -78.44934 : Duncansville, PA +16636 : 40.612642 : -78.51947 : Dysart, PA +16637 : 40.34068 : -78.43301 : East Freedom, PA +16638 : 40.335188 : -78.20534 : Entriken, PA +16639 : 40.687083 : -78.47615 : Fallentimber, PA +16640 : 40.711195 : -78.56081 : Flinton, PA +16641 : 40.487413 : -78.55617 : Gallitzin, PA +16644 : 40.717845 : -78.463679 : Glasgow, PA +16645 : 40.798959 : -78.50032 : Glen Hope, PA +16646 : 40.670162 : -78.70932 : Hastings, PA +16647 : 40.40537 : -78.10103 : Hesston, PA +16648 : 40.439272 : -78.37421 : Hollidaysburg, PA +16650 : 40.132345 : -78.26845 : Hopewell, PA +16651 : 40.827635 : -78.36046 : Houtzdale, PA +16652 : 40.498403 : -77.99417 : Huntingdon, PA +16654 : 40.402523 : -77.966977 : Huntingdon, PA +16655 : 40.235 : -78.53545 : Imler, PA +16656 : 40.792727 : -78.5578 : Irvona, PA +16657 : 40.341859 : -78.1723 : James Creek, PA +16659 : 40.16478 : -78.37709 : Loysburg, PA +16660 : 40.402523 : -77.966977 : McConnellstown, PA +16661 : 40.841761 : -78.46167 : Madera, PA +16662 : 40.306709 : -78.31987 : Martinsburg, PA +16663 : 40.789079 : -78.375 : Morann, PA +16664 : 40.174807 : -78.41772 : New Enterprise, PA +16665 : 40.393223 : -78.43508 : Newry, PA +16666 : 40.85258 : -78.28335 : Osceola Mills, PA +16667 : 40.173012 : -78.52762 : Osterburg, PA +16668 : 40.63949 : -78.63816 : Patton, PA +16669 : 40.627047 : -77.96449 : Petersburg, PA +16670 : 40.25915 : -78.50652 : Queen, PA +16671 : 40.800186 : -78.4013 : Ramey, PA +16672 : 40.160825 : -78.25489 : Riddlesburg, PA +16673 : 40.328843 : -78.39897 : Roaring Spring, PA +16674 : 40.196898 : -78.10266 : Robertsdale, PA +16675 : 40.671181 : -78.675548 : Saint Boniface, PA +16677 : 40.807219 : -78.26071 : Sandy Ridge, PA +16678 : 40.221352 : -78.22785 : Saxton, PA +16679 : 40.163172 : -78.20555 : Six Mile Run, PA +16680 : 40.75212 : -78.41085 : Smithmill, PA +16681 : 40.792825 : -78.43559 : Smokerun, PA +16682 : 40.271645 : -78.45919 : Sproul, PA +16683 : 40.662087 : -78.07012 : Spruce Creek, PA +16684 : 40.636691 : -78.303614 : Tipton, PA +16685 : 40.273559 : -78.07926 : Todd, PA +16686 : 40.666444 : -78.24353 : Tyrone, PA +16689 : 40.092488 : -78.08406 : Waterfall, PA +16691 : 40.080393 : -78.15342 : Wells Tannery, PA +16692 : 40.757085 : -78.69622 : Westover, PA +16693 : 40.456531 : -78.2221 : Williamsburg, PA +16694 : 40.167018 : -78.13583 : Wood, PA +16695 : 40.217753 : -78.37197 : Woodbury, PA +16698 : 40.989115 : -78.422403 : Houtzdale, PA +16699 : 40.484487 : -78.702224 : Cresson, PA +16701 : 41.943791 : -78.65448 : Bradford, PA +16720 : 41.613244 : -78.07011 : Austin, PA +16724 : 41.747898 : -78.37938 : Crosby, PA +16725 : 41.902256 : -78.659 : Custer City, PA +16726 : 41.816833 : -78.58059 : Cyclone, PA +16727 : 41.976763 : -78.53541 : Derrick City, PA +16728 : 41.415878 : -78.665057 : De Young, PA +16729 : 41.96192 : -78.4841 : Duke Center, PA +16730 : 41.811926 : -78.42256 : East Smethport, PA +16731 : 41.957479 : -78.39317 : Eldred, PA +16732 : 41.850657 : -78.60663 : Gifford, PA +16733 : 41.713565 : -78.56703 : Hazel Hurst, PA +16734 : 41.619029 : -78.84 : James City, PA +16735 : 41.628726 : -78.80734 : Kane, PA +16738 : 41.833762 : -78.68839 : Lewis Run, PA +16740 : 41.734498 : -78.61379 : Mount Jewett, PA +16743 : 41.809546 : -78.27125 : Port Allegany, PA +16744 : 41.883626 : -78.5454 : Rew, PA +16745 : 41.925564 : -78.50206 : Rixford, PA +16746 : 41.800699 : -78.14362 : Roulette, PA +16748 : 41.940288 : -78.16186 : Shinglehouse, PA +16749 : 41.801302 : -78.44419 : Smethport, PA +16750 : 41.876559 : -78.32445 : Turtlepoint, PA +16751 : 41.791063 : -78.76347 : Westline, PA +16801 : 40.792011 : -77.84993 : State College, PA +16802 : 40.806956 : -77.86281 : University Park, PA +16803 : 40.802661 : -77.89936 : State College, PA +16804 : 40.972229 : -77.760172 : State College, PA +16805 : 40.972229 : -77.760172 : State College, PA +16815 : 40.771122 : -77.658267 : Potter, PA +16820 : 40.908997 : -77.42424 : Aaronsburg, PA +16821 : 40.989115 : -78.422403 : Allport, PA +16822 : 41.092339 : -77.60545 : Beech Creek, PA +16823 : 40.91255 : -77.77387 : Bellefonte, PA +16825 : 40.98169 : -78.30514 : Bigler, PA +16826 : 41.059172 : -77.60029 : Blanchard, PA +16827 : 40.78267 : -77.78689 : Boalsburg, PA +16828 : 40.828679 : -77.6849 : Centre Hall, PA +16829 : 41.053528 : -77.96226 : Clarence, PA +16830 : 41.026239 : -78.43838 : Clearfield, PA +16832 : 40.847255 : -77.47633 : Coburn, PA +16833 : 40.948433 : -78.55176 : Curwensville, PA +16834 : 41.033239 : -78.1104 : Drifting, PA +16835 : 40.904645 : -77.875191 : Fleming, PA +16836 : 41.104737 : -78.2344 : Frenchville, PA +16837 : 40.945702 : -78.4745 : Glen Richey, PA +16838 : 40.977104 : -78.62296 : Grampian, PA +16839 : 41.004152 : -78.11298 : Grassflat, PA +16840 : 40.924438 : -78.20652 : Hawk Run, PA +16841 : 41.021843 : -77.66909 : Howard, PA +16843 : 41.001993 : -78.46381 : Hyde, PA +16844 : 40.896662 : -77.91555 : Julian, PA +16845 : 41.131415 : -78.10643 : Karthaus, PA +16847 : 40.994188 : -78.16804 : Kylertown, PA +16848 : 41.010409 : -77.53613 : Lamar, PA +16849 : 40.972358 : -78.12121 : Lanse, PA +16850 : 40.989115 : -78.422403 : Lecontes Mills, PA +16851 : 40.809461 : -77.81584 : Lemont, PA +16852 : 40.92744 : -77.52998 : Madisonburg, PA +16853 : 40.942533 : -77.7892 : Milesburg, PA +16854 : 40.891594 : -77.47605 : Millheim, PA +16855 : 40.998733 : -78.37324 : Mineral Springs, PA +16856 : 40.929263 : -77.64581 : Mingoville, PA +16858 : 41.004198 : -78.19085 : Morrisdale, PA +16859 : 41.0448 : -78.024 : Moshannon, PA +16860 : 40.954583 : -78.1668 : Munson, PA +16861 : 40.87713 : -78.53394 : New Millport, PA +16863 : 40.914286 : -78.48998 : Olanta, PA +16864 : 41.105537 : -77.75273 : Orviston, PA +16865 : 40.722897 : -77.96941 : Pennsylvania Furnace, PA +16866 : 40.893028 : -78.21678 : Philipsburg, PA +16868 : 40.726405 : -77.911776 : Pine Grove Mills, PA +16870 : 40.801396 : -78.045 : Port Matilda, PA +16871 : 41.177156 : -78.04399 : Pottersdale, PA +16872 : 40.966199 : -77.35299 : Rebersburg, PA +16873 : 40.989115 : -78.422403 : Shawville, PA +16874 : 41.034029 : -77.93356 : Snow Shoe, PA +16875 : 40.833229 : -77.57458 : Spring Mills, PA +16876 : 40.960106 : -78.28886 : Wallaceton, PA +16877 : 40.721787 : -78.08561 : Warriors Mark, PA +16878 : 40.943755 : -78.30853 : West Decatur, PA +16879 : 40.962566 : -78.15005 : Winburne, PA +16881 : 41.018168 : -78.32112 : Woodland, PA +16882 : 40.918517 : -77.32269 : Woodward, PA +16901 : 41.736343 : -77.31915 : Wellsboro, PA +16910 : 41.77197 : -76.521266 : Alba, PA +16911 : 41.664117 : -77.14153 : Arnot, PA +16912 : 41.676922 : -77.0616 : Blossburg, PA +16914 : 41.86401 : -76.76982 : Columbia Cross Roads, PA +16915 : 41.800278 : -77.98905 : Coudersport, PA +16917 : 41.739613 : -77.07521 : Covington, PA +16918 : 41.936663 : -77.49843 : Cowanesque, PA +16920 : 41.989863 : -77.31123 : Elkland, PA +16921 : 41.74103 : -77.53768 : Gaines, PA +16922 : 41.678935 : -77.68562 : Galeton, PA +16923 : 41.93668 : -77.87089 : Genesee, PA +16925 : 41.950785 : -76.78511 : Gillett, PA +16926 : 41.702935 : -76.71175 : Granville Summit, PA +16927 : 41.958059 : -77.67187 : Harrison Valley, PA +16928 : 41.954314 : -77.42457 : Knoxville, PA +16929 : 41.973095 : -77.13731 : Lawrenceville, PA +16930 : 41.557848 : -77.13755 : Liberty, PA +16932 : 41.796032 : -76.94145 : Mainesburg, PA +16933 : 41.811139 : -77.06939 : Mansfield, PA +16935 : 41.86292 : -77.31285 : Middlebury Center, PA +16936 : 41.951518 : -76.94413 : Millerton, PA +16937 : 41.969218 : -77.71978 : Mills, PA +16938 : 41.564177 : -77.31191 : Morris, PA +16939 : 41.677577 : -77.01677 : Morris Run, PA +16940 : 41.978436 : -77.24667 : Nelson, PA +16941 : 41.993777 : -77.75122 : Genesee, PA +16942 : 41.961001 : -77.35306 : Osceola, PA +16943 : 41.84992 : -77.59404 : Sabinsville, PA +16945 : 41.77197 : -76.521266 : Sylvania, PA +16946 : 41.924013 : -77.14224 : Tioga, PA +16947 : 41.759353 : -76.80388 : Troy, PA +16948 : 41.869812 : -77.75115 : Ulysses, PA +16950 : 41.895838 : -77.52164 : Westfield, PA +17001 : 40.21604 : -76.924996 : Camp Hill, PA +17002 : 40.510176 : -77.83124 : Allensville, PA +17003 : 40.347757 : -76.53498 : Annville, PA +17004 : 40.597698 : -77.73883 : Belleville, PA +17005 : 40.602475 : -76.8113 : Berrysburg, PA +17006 : 40.325136 : -77.52681 : Blain, PA +17007 : 40.14789 : -77.12245 : Boiling Springs, PA +17008 : 40.167091 : -76.978448 : Bowmansdale, PA +17009 : 40.637663 : -77.56552 : Burnham, PA +17010 : 40.280149 : -76.5806 : Campbelltown, PA +17011 : 40.236139 : -76.93084 : Camp Hill, PA +17012 : 40.136687 : -77.242805 : Camp Hill, PA +17013 : 40.203458 : -77.19987 : Carlisle, PA +17014 : 40.478716 : -77.345514 : Cocolamus, PA +17015 : 40.238207 : -76.511942 : South Londonderry, PA +17016 : 40.273968 : -76.40602 : Cornwall, PA +17017 : 40.644085 : -76.87648 : Dalmatia, PA +17018 : 40.385623 : -76.92332 : Dauphin, PA +17019 : 40.093968 : -77.02628 : Dillsburg, PA +17020 : 40.401114 : -77.03405 : Duncannon, PA +17021 : 40.354433 : -77.65046 : East Waterford, PA +17022 : 40.160793 : -76.60763 : Elizabethtown, PA +17023 : 40.560414 : -76.81316 : Elizabethville, PA +17024 : 40.413024 : -77.30162 : Elliottsburg, PA +17025 : 40.28807 : -76.94251 : Enola, PA +17026 : 40.45253 : -76.42443 : Fredericksburg, PA +17027 : 40.153656 : -76.9963 : Grantham, PA +17028 : 40.402578 : -76.6434 : Grantville, PA +17029 : 40.551431 : -77.62577 : Granville, PA +17030 : 40.608245 : -76.737545 : Gratz, PA +17031 : 40.406766 : -77.292578 : Green Park, PA +17032 : 40.48358 : -76.8727 : Halifax, PA +17033 : 40.277923 : -76.6434 : Hershey, PA +17034 : 40.208591 : -76.78563 : Highspire, PA +17035 : 40.4305 : -77.5843 : Honey Grove, PA +17036 : 40.270367 : -76.7048 : Hummelstown, PA +17037 : 40.436607 : -77.39337 : Ickesburg, PA +17038 : 40.434998 : -76.51296 : Jonestown, PA +17039 : 40.300505 : -76.258399 : Kleinfeltersville, PA +17040 : 40.333508 : -77.29933 : Landisburg, PA +17041 : 40.220907 : -76.53769 : Lawn, PA +17042 : 40.31977 : -76.42344 : Lebanon, PA +17043 : 40.247189 : -76.89807 : Lemoyne, PA +17044 : 40.595359 : -77.5774 : Lewistown, PA +17045 : 40.586914 : -76.99402 : Liverpool, PA +17046 : 40.358015 : -76.42501 : Lebanon, PA +17047 : 40.365242 : -77.40369 : Loysville, PA +17048 : 40.592398 : -76.72086 : Lykens, PA +17049 : 40.64686 : -77.24149 : McAlisterville, PA +17050 : 40.249543 : -77.002296 : Mechanicsburg, PA +17051 : 40.458618 : -77.77254 : McVeytown, PA +17052 : 40.338058 : -77.9779 : Mapleton Depot, PA +17053 : 40.333185 : -76.96659 : Marysville, PA +17054 : 40.495979 : -77.723716 : Mattawana, PA +17055 : 40.215939 : -76.99827 : Mechanicsburg, PA +17056 : 40.478716 : -77.345514 : Mexico, PA +17057 : 40.201341 : -76.73557 : Middletown, PA +17058 : 40.53526 : -77.46457 : Mifflin, PA +17059 : 40.582815 : -77.36866 : Mifflintown, PA +17060 : 40.453498 : -77.91154 : Mill Creek, PA +17061 : 40.550027 : -76.93743 : Millersburg, PA +17062 : 40.5565 : -77.14962 : Millerstown, PA +17063 : 40.735551 : -77.54813 : Milroy, PA +17064 : 40.24793 : -76.46847 : Mount Gretna, PA +17065 : 40.114682 : -77.19201 : Mount Holly Springs, PA +17066 : 40.373421 : -77.8739 : Mount Union, PA +17067 : 40.389502 : -76.3147 : Myerstown, PA +17068 : 40.409544 : -77.17959 : New Bloomfield, PA +17069 : 40.454175 : -76.96991 : New Buffalo, PA +17070 : 40.22004 : -76.86849 : New Cumberland, PA +17071 : 40.406766 : -77.292578 : New Germantown, PA +17072 : 40.233164 : -77.08212 : New Kingstown, PA +17073 : 40.308675 : -76.24974 : Newmanstown, PA +17074 : 40.482257 : -77.13907 : Newport, PA +17075 : 40.39213 : -77.83649 : Newton Hamilton, PA +17076 : 40.616926 : -77.31228 : Oakland Mills, PA +17077 : 40.406144 : -76.52753 : Ono, PA +17078 : 40.304156 : -76.5912 : Palmyra, PA +17080 : 40.64043 : -76.80346 : Pillow, PA +17081 : 40.202404 : -77.28825 : Plainfield, PA +17082 : 40.508563 : -77.42137 : Port Royal, PA +17083 : 40.277603 : -76.43823 : Quentin, PA +17084 : 40.67845 : -77.60264 : Reedsville, PA +17085 : 40.277076 : -76.385727 : Rexmont, PA +17086 : 40.675983 : -77.11862 : Richfield, PA +17087 : 40.375621 : -76.26401 : Richland, PA +17088 : 40.299051 : -76.29673 : Schaefferstown, PA +17089 : 40.269738 : -76.936046 : Camp Hill, PA +17090 : 40.332785 : -77.18464 : Shermans Dale, PA +17091 : 40.136687 : -77.242805 : Camp Hill, PA +17093 : 40.310088 : -76.9287 : Summerdale, PA +17094 : 40.574018 : -77.23385 : Thompsontown, PA +17097 : 40.573636 : -76.68525 : Wiconisco, PA +17098 : 40.581422 : -76.62209 : Williamstown, PA +17099 : 40.641204 : -77.57953 : Yeagertown, PA +17101 : 40.261839 : -76.88279 : Harrisburg, PA +17102 : 40.272839 : -76.89053 : Harrisburg, PA +17103 : 40.274389 : -76.86217 : Harrisburg, PA +17104 : 40.258972 : -76.85922 : Harrisburg, PA +17105 : 40.278498 : -76.875207 : Harrisburg, PA +17106 : 40.292664 : -76.850061 : Harrisburg, PA +17107 : 40.297031 : -76.876437 : Harrisburg, PA +17108 : 40.308638 : -76.801693 : Harrisburg, PA +17109 : 40.290439 : -76.82841 : Harrisburg, PA +17110 : 40.300738 : -76.88528 : Harrisburg, PA +17111 : 40.264389 : -76.80298 : Harrisburg, PA +17112 : 40.343261 : -76.7808 : Harrisburg, PA +17113 : 40.23299 : -76.82579 : Harrisburg, PA +17120 : 40.265689 : -76.882745 : Harrisburg, PA +17121 : 40.294396 : -76.893751 : Harrisburg, PA +17122 : 40.249845 : -76.871209 : Harrisburg, PA +17123 : 40.267518 : -76.883734 : Harrisburg, PA +17124 : 40.26746 : -76.885967 : Harrisburg, PA +17125 : 40.266221 : -76.882854 : Harrisburg, PA +17126 : 40.26179 : -76.880021 : Harrisburg, PA +17127 : 40.261516 : -76.880884 : Harrisburg, PA +17128 : 40.389865 : -76.782323 : Harrisburg, PA +17129 : 40.261516 : -76.880884 : Harrisburg, PA +17130 : 40.270222 : -76.882889 : Harrisburg, PA +17140 : 40.30864 : -76.846449 : Harrisburg, PA +17177 : 40.298988 : -76.847194 : Harrisburg, PA +17201 : 39.931123 : -77.66139 : Chambersburg, PA +17210 : 40.171667 : -77.661354 : Amberson, PA +17211 : 39.742192 : -78.42113 : Artemas, PA +17212 : 39.81231 : -78.06337 : Big Cove Tannery, PA +17213 : 40.243335 : -77.77414 : Blairs Mills, PA +17214 : 39.736626 : -77.47038 : Blue Ridge Summit, PA +17215 : 40.079326 : -77.90039 : Burnt Cabins, PA +17217 : 40.225168 : -77.725013 : Concord, PA +17219 : 40.228687 : -77.71034 : Doylesburg, PA +17220 : 40.195365 : -77.72092 : Dry Run, PA +17221 : 40.0724 : -77.81148 : Fannettsburg, PA +17222 : 39.897287 : -77.52006 : Fayetteville, PA +17223 : 40.062255 : -77.96308 : Fort Littleton, PA +17224 : 39.957564 : -77.90623 : Fort Loudon, PA +17225 : 39.792122 : -77.74923 : Greencastle, PA +17228 : 39.995374 : -78.09348 : Harrisonville, PA +17229 : 40.070337 : -78.02273 : Hustontown, PA +17231 : 39.859432 : -77.857889 : Lemasters, PA +17232 : 40.105495 : -77.640461 : Lurgan, PA +17233 : 39.942589 : -77.99529 : McConnellsburg, PA +17235 : 39.857218 : -77.69775 : Marion, PA +17236 : 39.793293 : -77.92889 : Mercersburg, PA +17237 : 39.840491 : -77.55239 : Mont Alto, PA +17238 : 39.847933 : -78.12821 : Needmore, PA +17239 : 40.130231 : -77.84147 : Neelyton, PA +17240 : 40.147267 : -77.57259 : Newburg, PA +17241 : 40.172412 : -77.40826 : Newville, PA +17243 : 40.242121 : -77.87139 : Orbisonia, PA +17244 : 40.076657 : -77.65433 : Orrstown, PA +17246 : 40.049118 : -77.671754 : Pleasant Hall, PA +17247 : 39.799481 : -77.581092 : Quincy, PA +17249 : 40.242927 : -77.90043 : Rockhill Furnace, PA +17250 : 39.736395 : -77.52474 : Rouzerville, PA +17251 : 40.112652 : -77.670626 : Roxbury, PA +17252 : 39.913537 : -77.81001 : Saint Thomas, PA +17253 : 40.210859 : -78.00567 : Saltillo, PA +17254 : 39.969722 : -77.58878 : Scotland, PA +17255 : 40.152486 : -77.8617 : Shade Gap, PA +17256 : 39.783391 : -77.674851 : Shady Grove, PA +17257 : 40.053308 : -77.50622 : Shippensburg, PA +17260 : 40.298547 : -77.89067 : Shirleysburg, PA +17261 : 39.833095 : -77.488633 : South Mountain, PA +17262 : 40.153677 : -77.70883 : Spring Run, PA +17263 : 39.724825 : -77.718629 : State Line, PA +17264 : 40.190713 : -77.98067 : Three Springs, PA +17265 : 40.035958 : -77.79113 : Upperstrasburg, PA +17266 : 40.086522 : -77.41026 : Walnut Bottom, PA +17267 : 39.798516 : -78.23675 : Warfordsburg, PA +17268 : 39.766281 : -77.57241 : Waynesboro, PA +17269 : 39.88745 : -78.245581 : Brush Creek, PA +17270 : 39.851731 : -77.7993 : Williamson, PA +17271 : 40.110585 : -77.79943 : Willow Hill, PA +17272 : 39.771372 : -77.62702 : Zullinger, PA +17275 : 40.019915 : -77.464257 : Southampton, PA +17294 : 40.004885 : -77.77637 : Blue Ridge Summit, PA +17301 : 39.891548 : -76.98359 : Abbottstown, PA +17302 : 39.80954 : -76.40849 : Airville, PA +17303 : 39.923644 : -77.300085 : Arendtsville, PA +17304 : 39.969711 : -77.218 : Aspers, PA +17306 : 39.982466 : -77.2496 : Bendersville, PA +17307 : 39.930756 : -77.2917 : Biglerville, PA +17309 : 39.871433 : -76.44796 : Brogue, PA +17310 : 39.890605 : -77.356642 : Cashtown, PA +17311 : 39.81667 : -76.84165 : Codorus, PA +17312 : 39.946739 : -76.506639 : Craley, PA +17313 : 39.8989 : -76.64405 : Dallastown, PA +17314 : 39.746811 : -76.33655 : Delta, PA +17315 : 40.002696 : -76.85763 : Dover, PA +17316 : 39.965131 : -77.00863 : East Berlin, PA +17317 : 39.971506 : -76.5206 : East Prospect, PA +17318 : 40.017597 : -76.72921 : Emigsville, PA +17319 : 40.157382 : -76.7872 : Etters, PA +17320 : 39.759356 : -77.37768 : Fairfield, PA +17321 : 39.747204 : -76.44339 : Fawn Grove, PA +17322 : 39.848832 : -76.55122 : Felton, PA +17323 : 40.07501 : -77.027926 : Franklintown, PA +17324 : 40.030925 : -77.22858 : Gardners, PA +17325 : 39.827337 : -77.22904 : Gettysburg, PA +17326 : 39.8948 : -77.213493 : Gettysburg, PA +17327 : 39.780323 : -76.74785 : Glen Rock, PA +17329 : 39.759126 : -76.85248 : Glenville, PA +17331 : 39.795301 : -76.97727 : Hanover, PA +17332 : 39.775037 : -76.735116 : Hanover, PA +17333 : 39.972985 : -76.687826 : Hanover, PA +17337 : 40.015656 : -77.200131 : Idaville, PA +17339 : 40.138959 : -76.86904 : Lewisberry, PA +17340 : 39.748187 : -77.10806 : Littlestown, PA +17342 : 39.853644 : -76.707997 : Loganville, PA +17343 : 39.871147 : -77.32608 : McKnightstown, PA +17344 : 39.805693 : -77.01905 : McSherrystown, PA +17345 : 40.067348 : -76.72398 : Manchester, PA +17346 : 40.079591 : -76.703553 : Menges Mills, PA +17347 : 40.067559 : -76.69584 : Mount Wolf, PA +17349 : 39.753369 : -76.68112 : New Freedom, PA +17350 : 39.874531 : -77.06305 : New Oxford, PA +17352 : 39.761007 : -76.50129 : New Park, PA +17353 : 39.876675 : -77.3794 : Orrtanna, PA +17354 : 39.82457 : -76.89927 : Porters Sideling, PA +17355 : 39.756761 : -76.69939 : Railroad, PA +17356 : 39.90035 : -76.59778 : Red Lion, PA +17358 : 39.972985 : -76.687826 : Rossville, PA +17360 : 39.84987 : -76.76403 : Seven Valleys, PA +17361 : 39.765405 : -76.67748 : Shrewsbury, PA +17362 : 39.853966 : -76.87182 : Spring Grove, PA +17363 : 39.765741 : -76.59359 : Stewartstown, PA +17364 : 39.92813 : -76.9018 : Thomasville, PA +17365 : 40.052872 : -76.94481 : Wellsville, PA +17366 : 39.92741 : -76.56268 : Windsor, PA +17368 : 40.002058 : -76.52757 : Wrightsville, PA +17370 : 40.120806 : -76.76352 : York Haven, PA +17371 : 39.900579 : -76.789624 : York New Salem, PA +17372 : 40.003442 : -77.1099 : York Springs, PA +17375 : 39.8948 : -77.213493 : Peach Glen, PA +17401 : 39.962463 : -76.72887 : York, PA +17402 : 39.976898 : -76.67785 : York, PA +17403 : 39.952198 : -76.71328 : York, PA +17404 : 39.962821 : -76.76764 : York, PA +17405 : 40.008647 : -76.597187 : York, PA +17406 : 40.002547 : -76.59646 : York, PA +17407 : 39.882516 : -76.71206 : York, PA +17415 : 39.972985 : -76.687826 : York, PA +17501 : 40.156472 : -76.204 : Akron, PA +17502 : 40.095995 : -76.66707 : Bainbridge, PA +17503 : 40.0185 : -76.297582 : Bart, PA +17504 : 40.024047 : -76.328081 : Bausman, PA +17505 : 40.055467 : -76.19149 : Bird In Hand, PA +17506 : 40.117326 : -76.052379 : Blue Ball, PA +17507 : 40.196641 : -76.016047 : Bowmansville, PA +17508 : 40.125278 : -76.21665 : Brownstown, PA +17509 : 39.919072 : -76.02508 : Christiana, PA +17511 : 40.041911 : -76.487732 : Columbia, PA +17512 : 40.037682 : -76.49011 : Columbia, PA +17516 : 39.938255 : -76.36066 : Conestoga, PA +17517 : 40.234392 : -76.12655 : Denver, PA +17518 : 39.811308 : -76.25348 : Drumore, PA +17519 : 40.141301 : -76.0227 : East Earl, PA +17520 : 40.098696 : -76.35153 : East Petersburg, PA +17521 : 40.204393 : -76.34643 : Elm, PA +17522 : 40.174994 : -76.17619 : Ephrata, PA +17527 : 40.008814 : -75.99195 : Gap, PA +17528 : 40.043523 : -76.238766 : Goodville, PA +17529 : 40.0348 : -76.11175 : Gordonville, PA +17532 : 39.859296 : -76.28548 : Holtwood, PA +17533 : 40.233892 : -76.260725 : Hopeland, PA +17534 : 40.036659 : -76.106902 : Intercourse, PA +17535 : 40.000723 : -76.04649 : Kinzers, PA +17536 : 39.840243 : -76.07373 : Kirkwood, PA +17537 : 39.988548 : -76.238729 : Lampeter, PA +17538 : 40.091196 : -76.41582 : Landisville, PA +17540 : 40.096346 : -76.19007 : Leola, PA +17543 : 40.164049 : -76.29946 : Lititz, PA +17545 : 40.168294 : -76.4123 : Manheim, PA +17547 : 40.064862 : -76.57145 : Marietta, PA +17549 : 40.154498 : -76.08756 : Martindale, PA +17550 : 40.072108 : -76.57779 : Maytown, PA +17551 : 39.994798 : -76.36018 : Millersville, PA +17552 : 40.109445 : -76.50919 : Mount Joy, PA +17554 : 40.040697 : -76.42806 : Mountville, PA +17555 : 40.126611 : -75.96767 : Narvon, PA +17557 : 40.102296 : -76.08031 : New Holland, PA +17560 : 39.915209 : -76.21546 : New Providence, PA +17562 : 39.981916 : -76.09224 : Paradise, PA +17563 : 39.767658 : -76.1749 : Peach Bottom, PA +17564 : 40.0185 : -76.297582 : Penryn, PA +17565 : 39.902788 : -76.32496 : Pequea, PA +17566 : 39.872437 : -76.15056 : Quarryville, PA +17567 : 40.209941 : -76.116445 : Reamstown, PA +17568 : 39.9469 : -76.232229 : Refton, PA +17569 : 40.264733 : -76.09645 : Reinholds, PA +17570 : 40.129494 : -76.56991 : Rheems, PA +17572 : 40.003405 : -76.15367 : Ronks, PA +17573 : 40.0185 : -76.297582 : Ronks, PA +17575 : 40.064746 : -76.434285 : Silver Spring, PA +17576 : 40.038648 : -76.1964 : Smoketown, PA +17577 : 40.0185 : -76.297582 : Soudersburg, PA +17578 : 40.226093 : -76.16682 : Stevens, PA +17579 : 39.9656 : -76.17781 : Strasburg, PA +17580 : 40.116846 : -76.213075 : Talmage, PA +17581 : 40.157565 : -76.05041 : Terre Hill, PA +17582 : 39.993398 : -76.45568 : Washington Boro, PA +17583 : 39.972349 : -76.28733 : West Willow, PA +17584 : 39.963866 : -76.26963 : Willow Street, PA +17585 : 40.048398 : -76.211427 : Witmer, PA +17601 : 40.072246 : -76.3155 : Lancaster, PA +17602 : 40.032664 : -76.27575 : Lancaster, PA +17603 : 40.03263 : -76.33328 : Lancaster, PA +17604 : 40.065096 : -76.335631 : Lancaster, PA +17605 : 40.0185 : -76.297582 : Lancaster, PA +17606 : 40.110201 : -76.305378 : Lancaster, PA +17607 : 40.0185 : -76.297582 : Lancaster, PA +17608 : 40.0185 : -76.297582 : Lancaster, PA +17699 : 40.0185 : -76.297582 : Lancaster, PA +17701 : 41.256736 : -77.0108 : Williamsport, PA +17702 : 41.222128 : -77.02267 : Williamsport, PA +17703 : 41.33275 : -77.023601 : Williamsport, PA +17705 : 41.33275 : -77.023601 : Williamsport, PA +17720 : 41.186545 : -77.218368 : Antes Fort, PA +17721 : 41.186038 : -77.31604 : Avis, PA +17722 : 41.33275 : -77.023601 : Bodines, PA +17723 : 41.33275 : -77.023601 : Jersey Shore, PA +17724 : 41.649813 : -76.82304 : Canton, PA +17726 : 41.122741 : -77.431745 : Castanea, PA +17727 : 41.33275 : -77.023601 : Cedar Run, PA +17728 : 41.318934 : -77.08211 : Cogan Station, PA +17729 : 41.493592 : -77.78665 : Cross Fork, PA +17730 : 41.109525 : -76.87893 : Dewart, PA +17731 : 41.414864 : -76.58391 : Eagles Mere, PA +17735 : 41.77197 : -76.521266 : Grover, PA +17737 : 41.268721 : -76.69048 : Hughesville, PA +17738 : 41.335148 : -77.64014 : Hyner, PA +17739 : 41.357921 : -77.40671 : Jersey Mills, PA +17740 : 41.209389 : -77.25975 : Jersey Shore, PA +17741 : 41.229164 : -77.28278 : Watson, PA +17742 : 41.232059 : -76.6084 : Lairdsville, PA +17743 : 41.77197 : -76.521266 : Leroy, PA +17744 : 41.239046 : -77.15154 : Linden, PA +17745 : 41.146432 : -77.42658 : Lock Haven, PA +17747 : 41.038555 : -77.29872 : Loganton, PA +17748 : 41.125166 : -77.36332 : McElhattan, PA +17749 : 41.072139 : -76.81871 : McEwensville, PA +17750 : 41.051654 : -77.4631 : Mackeyville, PA +17751 : 41.108454 : -77.49516 : Mill Hall, PA +17752 : 41.173254 : -76.88449 : Montgomery, PA +17754 : 41.271098 : -76.90382 : Montoursville, PA +17756 : 41.208834 : -76.73877 : Muncy, PA +17757 : 41.241656 : -76.747251 : Wolf, PA +17758 : 41.349559 : -76.5442 : Muncy Valley, PA +17759 : 41.218259 : -77.12137 : Nisbet, PA +17760 : 41.404439 : -77.68536 : North Bend, PA +17762 : 41.280066 : -76.71173 : Picture Rocks, PA +17763 : 41.505366 : -76.95432 : Ralston, PA +17764 : 41.351129 : -77.79678 : Renovo, PA +17765 : 41.592461 : -76.95078 : Roaring Branch, PA +17767 : 41.084417 : -77.46288 : Salona, PA +17768 : 41.544194 : -76.74643 : Shunk, PA +17769 : 41.33275 : -77.023601 : Slate Run, PA +17771 : 41.43664 : -77.03435 : Trout Run, PA +17772 : 41.104021 : -76.73831 : Turbotville, PA +17773 : 41.220635 : -77.618532 : Tylersville, PA +17774 : 41.239382 : -76.53935 : Unityville, PA +17776 : 41.36958 : -77.38615 : Waterville, PA +17777 : 41.096505 : -76.84924 : Watsontown, PA +17778 : 41.290924 : -77.92124 : Westport, PA +17779 : 41.187424 : -77.372827 : Woolrich, PA +17786 : 41.254974 : -76.681186 : Penn, PA +17801 : 40.856105 : -76.77124 : Sunbury, PA +17810 : 41.117517 : -77.00557 : Allenwood, PA +17812 : 40.739459 : -77.23037 : Beaver Springs, PA +17813 : 40.768922 : -77.17854 : Beavertown, PA +17814 : 41.241255 : -76.37738 : Benton, PA +17815 : 41.013364 : -76.43982 : Bloomsburg, PA +17820 : 40.916126 : -76.43888 : Catawissa, PA +17821 : 40.985594 : -76.63449 : Danville, PA +17822 : 40.967437 : -76.604896 : Danville, PA +17823 : 40.720016 : -76.73738 : Dornsife, PA +17824 : 40.848885 : -76.53547 : Elysburg, PA +17825 : 40.769908 : -76.49366 : Excelsior, PA +17827 : 40.761179 : -76.94339 : Freeburg, PA +17828 : 40.889632 : -76.664574 : Gowen City, PA +17829 : 40.900777 : -77.15522 : Hartleton, PA +17830 : 40.690647 : -76.80513 : Herndon, PA +17831 : 40.834408 : -76.835439 : Hummels Wharf, PA +17832 : 40.80436 : -76.46387 : Marion Heights, PA +17833 : 40.802232 : -76.96291 : Kreamer, PA +17834 : 40.792365 : -76.47131 : Kulpmont, PA +17835 : 40.88358 : -77.19808 : Laurelton, PA +17836 : 40.706213 : -76.5997 : Leck Kill, PA +17837 : 40.965348 : -76.9139 : Lewisburg, PA +17839 : 41.020062 : -76.438413 : Light Street, PA +17840 : 40.769941 : -76.43928 : Locust Gap, PA +17841 : 40.714443 : -77.34934 : McClure, PA +17842 : 40.799235 : -77.03834 : Middleburg, PA +17843 : 40.762675 : -77.07752 : Beaver Springs, PA +17844 : 40.928666 : -77.05294 : Mifflinburg, PA +17845 : 40.879182 : -77.17437 : Millmont, PA +17846 : 41.142069 : -76.51679 : Millville, PA +17847 : 41.010754 : -76.83647 : Milton, PA +17850 : 40.964676 : -76.85724 : Montandon, PA +17851 : 40.797899 : -76.41898 : Mount Carmel, PA +17853 : 40.694161 : -77.00629 : Mount Pleasant Mills, PA +17855 : 40.880509 : -76.985 : New Berlin, PA +17856 : 41.047295 : -76.91245 : New Columbia, PA +17857 : 40.899361 : -76.78947 : Northumberland, PA +17858 : 41.042106 : -76.424297 : Numidia, PA +17859 : 41.11533 : -76.39923 : Orangeville, PA +17860 : 40.839093 : -76.62615 : Paxinos, PA +17861 : 40.770921 : -77.08455 : Paxtonville, PA +17862 : 40.860555 : -77.0582 : Penns Creek, PA +17864 : 40.696064 : -76.90271 : Port Trevorton, PA +17865 : 40.9921 : -76.78654 : Potts Grove, PA +17866 : 40.791328 : -76.56393 : Coal Township, PA +17867 : 40.708236 : -76.68758 : Rebuck, PA +17868 : 40.956916 : -76.63116 : Riverside, PA +17870 : 40.812047 : -76.86138 : Selinsgrove, PA +17872 : 40.784453 : -76.56417 : Shamokin, PA +17876 : 40.845896 : -76.82241 : Shamokin Dam, PA +17877 : 40.87897 : -76.667267 : Snydertown, PA +17878 : 41.170314 : -76.33154 : Stillwater, PA +17880 : 40.978059 : -77.08184 : Swengel, PA +17881 : 40.780982 : -76.67105 : Trevorton, PA +17882 : 40.801614 : -77.20537 : Troxelville, PA +17883 : 40.978059 : -77.08184 : Vicksburg, PA +17884 : 41.052616 : -76.67506 : Washingtonville, PA +17885 : 40.851747 : -77.31213 : Weikert, PA +17886 : 41.017937 : -76.86828 : West Milton, PA +17887 : 41.07552 : -76.87189 : White Deer, PA +17888 : 40.818443 : -76.37737 : Wilburton, PA +17889 : 40.884501 : -76.91202 : Winfield, PA +17901 : 40.68514 : -76.2139 : Pottsville, PA +17920 : 40.818731 : -76.33997 : Aristes, PA +17921 : 40.763568 : -76.34824 : Ashland, PA +17922 : 40.594185 : -76.13162 : Auburn, PA +17923 : 40.670753 : -76.32397 : Branchdale, PA +17925 : 40.750666 : -76.06899 : Brockton, PA +17927 : 40.802567 : -76.34017 : Centralia, PA +17929 : 40.630557 : -76.19448 : Cressona, PA +17930 : 40.711162 : -76.13678 : Cumbola, PA +17931 : 40.782361 : -76.23232 : Frackville, PA +17932 : 40.649109 : -76.503339 : Frackville, PA +17933 : 40.602141 : -76.24143 : Friedensburg, PA +17934 : 40.79872 : -76.21547 : Gilberton, PA +17935 : 40.793258 : -76.28315 : Girardville, PA +17936 : 40.750943 : -76.33944 : Gordon, PA +17938 : 40.658667 : -76.4814 : Hegins, PA +17941 : 40.677386 : -76.62897 : Klingerstown, PA +17942 : 40.722587 : -76.229623 : Landingville, PA +17943 : 40.763048 : -76.38158 : Lavelle, PA +17944 : 40.672834 : -76.27989 : Llewellyn, PA +17945 : 40.777606 : -76.37371 : Locustdale, PA +17946 : 40.809063 : -76.25805 : Lost Creek, PA +17948 : 40.813869 : -76.13737 : Mahanoy City, PA +17949 : 40.794162 : -76.24258 : Mahanoy Plane, PA +17951 : 40.679479 : -76.24495 : Mar Lin, PA +17952 : 40.759814 : -76.05513 : Mary D, PA +17953 : 40.727464 : -76.08556 : Middleport, PA +17954 : 40.690455 : -76.26024 : Minersville, PA +17957 : 40.592705 : -76.51986 : Muir, PA +17959 : 40.731739 : -76.1278 : New Philadelphia, PA +17960 : 40.700548 : -75.96098 : New Ringgold, PA +17961 : 40.645057 : -76.0785 : Orwigsburg, PA +17963 : 40.558488 : -76.38129 : Pine Grove, PA +17964 : 40.710899 : -76.52368 : Pitman, PA +17965 : 40.698814 : -76.16405 : Port Carbon, PA +17966 : 40.722587 : -76.229623 : Ravine, PA +17967 : 40.859702 : -76.21615 : Ringtown, PA +17968 : 40.63898 : -76.60502 : Sacramento, PA +17970 : 40.718586 : -76.19111 : Saint Clair, PA +17972 : 40.614771 : -76.19352 : Schuylkill Haven, PA +17974 : 40.696252 : -76.23554 : Seltzer, PA +17976 : 40.820862 : -76.20421 : Shenandoah, PA +17978 : 40.632279 : -76.64059 : Spring Glen, PA +17979 : 40.560225 : -76.19887 : Summit Station, PA +17980 : 40.584748 : -76.55479 : Tower City, PA +17981 : 40.632681 : -76.39579 : Tremont, PA +17982 : 40.771111 : -76.03747 : Tuscarora, PA +17983 : 40.643634 : -76.54562 : Valley View, PA +17985 : 40.909697 : -76.20494 : Zion Grove, PA +18001 : 40.693376 : -75.471156 : Lehigh Valley, PA +18002 : 40.665597 : -75.426247 : Lehigh Valley, PA +18003 : 40.693376 : -75.471156 : Lehigh Valley, PA +18010 : 40.693376 : -75.471156 : Ackermanville, PA +18011 : 40.496375 : -75.62213 : Alburtis, PA +18012 : 40.811206 : -75.59136 : Aquashicola, PA +18013 : 40.863124 : -75.19004 : Bangor, PA +18014 : 40.747742 : -75.40078 : Bath, PA +18015 : 40.601261 : -75.37542 : Bethlehem, PA +18016 : 40.693376 : -75.471156 : Bethlehem, PA +18017 : 40.645665 : -75.36926 : Bethlehem, PA +18018 : 40.625444 : -75.38831 : Bethlehem, PA +18020 : 40.656498 : -75.32938 : Bethlehem, PA +18021 : 40.954484 : -75.973747 : Hazleton, PA +18024 : 40.650883 : -75.306102 : Bethlehem, PA +18025 : 40.693376 : -75.471156 : Bethlehem, PA +18030 : 40.80116 : -75.66158 : Bowmanstown, PA +18031 : 40.552042 : -75.64919 : Breinigsville, PA +18032 : 40.657089 : -75.47123 : Catasauqua, PA +18034 : 40.540398 : -75.41501 : Center Valley, PA +18035 : 40.749545 : -75.53855 : Cherryville, PA +18036 : 40.508855 : -75.40103 : Coopersburg, PA +18037 : 40.671538 : -75.5044 : Coplay, PA +18038 : 40.786431 : -75.49158 : Danielsville, PA +18039 : 40.328645 : -75.10278 : Durham, PA +18040 : 40.730182 : -75.22349 : Easton, PA +18041 : 40.410224 : -75.50845 : East Greenville, PA +18042 : 40.681798 : -75.22082 : Easton, PA +18043 : 40.792804 : -75.137186 : Easton, PA +18044 : 40.693376 : -75.471156 : Easton, PA +18045 : 40.681531 : -75.26722 : Easton, PA +18046 : 40.538843 : -75.568502 : East Texas, PA +18049 : 40.533597 : -75.49822 : Emmaus, PA +18050 : 40.693376 : -75.471156 : Flicksville, PA +18051 : 40.593153 : -75.65222 : Fogelsville, PA +18052 : 40.651751 : -75.49224 : Whitehall, PA +18053 : 40.707516 : -75.70754 : Germansville, PA +18054 : 40.343587 : -75.44613 : Green Lane, PA +18055 : 40.585649 : -75.3261 : Hellertown, PA +18056 : 40.451369 : -75.55229 : Hereford, PA +18058 : 40.912421 : -75.49765 : Kunkletown, PA +18059 : 40.723681 : -75.53601 : Laurys Station, PA +18060 : 40.53484 : -75.57864 : Limeport, PA +18062 : 40.517304 : -75.56515 : Macungie, PA +18063 : 40.781918 : -75.18589 : Martins Creek, PA +18064 : 40.746849 : -75.31632 : Nazareth, PA +18065 : 40.696738 : -75.611647 : Neffs, PA +18066 : 40.653037 : -75.72689 : New Tripoli, PA +18067 : 40.693818 : -75.48697 : Northampton, PA +18068 : 40.693376 : -75.471156 : Old Zionsville, PA +18069 : 40.624592 : -75.60728 : Orefield, PA +18070 : 40.431982 : -75.53852 : Palm, PA +18071 : 40.820558 : -75.58537 : Palmerton, PA +18072 : 40.857829 : -75.25776 : Pen Argyl, PA +18073 : 40.388263 : -75.48659 : Pennsburg, PA +18074 : 40.316397 : -75.5154 : Perkiomenville, PA +18076 : 40.375182 : -75.48431 : Red Hill, PA +18077 : 40.576989 : -75.22121 : Riegelsville, PA +18078 : 40.675741 : -75.61626 : Schnecksville, PA +18079 : 40.744055 : -75.65864 : Slatedale, PA +18080 : 40.739576 : -75.62113 : Slatington, PA +18081 : 40.556976 : -75.28817 : Springtown, PA +18083 : 40.754064 : -75.26477 : Stockertown, PA +18084 : 40.327782 : -75.454043 : Sumneytown, PA +18085 : 40.740769 : -75.25335 : Tatamy, PA +18086 : 40.734807 : -75.54488 : Treichlers, PA +18087 : 40.549119 : -75.60049 : Trexlertown, PA +18088 : 40.760403 : -75.57535 : Walnutport, PA +18091 : 40.835128 : -75.30274 : Wind Gap, PA +18092 : 40.465994 : -75.51958 : Zionsville, PA +18096 : 40.633542 : -75.583861 : South Whitehall, PA +18098 : 40.693376 : -75.471156 : Emmaus, PA +18099 : 40.693376 : -75.471156 : Emmaus, PA +18101 : 40.602847 : -75.47022 : Allentown, PA +18102 : 40.607747 : -75.4793 : Allentown, PA +18103 : 40.595097 : -75.45915 : Allentown, PA +18104 : 40.601996 : -75.52104 : Allentown, PA +18105 : 40.693376 : -75.471156 : Allentown, PA +18106 : 40.569288 : -75.58893 : Allentown, PA +18109 : 40.693376 : -75.471156 : Allentown, PA +18160 : 41.010299 : -75.45705 : Tunkhannock, PA +18175 : 40.585561 : -75.621058 : Allentown, PA +18195 : 40.57983 : -75.579884 : Allentown, PA +18201 : 40.958434 : -75.98519 : Hazleton, PA +18202 : 40.969691 : -75.990392 : Hazleton, PA +18210 : 41.000937 : -75.55484 : Albrightsville, PA +18211 : 40.749289 : -75.82947 : Andreas, PA +18212 : 40.784095 : -75.708281 : Ashfield, PA +18214 : 40.811198 : -76.06652 : Barnesville, PA +18216 : 40.931187 : -75.91493 : Beaver Meadows, PA +18218 : 40.822234 : -75.91011 : Coaldale, PA +18219 : 40.988834 : -76.05963 : Conyngham, PA +18220 : 40.839186 : -76.06929 : Delano, PA +18221 : 41.004017 : -75.90569 : Drifton, PA +18222 : 41.030933 : -75.98932 : Drums, PA +18223 : 41.272248 : -75.880146 : Ebervale, PA +18224 : 41.015634 : -75.89791 : Freeland, PA +18225 : 40.98227 : -75.96874 : Harleigh, PA +18229 : 40.913283 : -75.6982 : Jim Thorpe, PA +18230 : 40.924427 : -75.94189 : Junedale, PA +18231 : 40.900995 : -76.00488 : Kelayres, PA +18232 : 40.832477 : -75.88198 : Lansford, PA +18234 : 40.99303 : -75.96009 : Lattimer Mines, PA +18235 : 40.828682 : -75.70596 : Lehighton, PA +18237 : 40.897038 : -75.99548 : Mcadoo, PA +18239 : 40.989783 : -75.98173 : Milnesville, PA +18240 : 40.857175 : -75.84811 : Nesquehoning, PA +18241 : 40.939035 : -76.16898 : Nuremberg, PA +18242 : 40.90757 : -76.12636 : Oneida, PA +18243 : 41.001683 : -75.966146 : Pardeesville, PA +18244 : 40.824403 : -75.66924 : Parryville, PA +18245 : 40.85315 : -76.03218 : Quakake, PA +18246 : 40.965379 : -76.18859 : Rock Glen, PA +18247 : 41.014808 : -76.058391 : Saint Johns, PA +18248 : 40.89707 : -76.11711 : Sheppton, PA +18249 : 40.99118 : -76.09565 : Sugarloaf, PA +18250 : 40.826908 : -75.8674 : Summit Hill, PA +18251 : 41.001956 : -76.08117 : Sybertsville, PA +18252 : 40.792315 : -75.97705 : Tamaqua, PA +18254 : 40.914664 : -75.96359 : Tresckow, PA +18255 : 40.945334 : -75.8265 : Weatherly, PA +18256 : 40.941585 : -76.13916 : Weston, PA +18301 : 41.052199 : -75.15936 : East Stroudsburg, PA +18320 : 41.071213 : -75.236436 : Analomink, PA +18321 : 41.012235 : -75.29039 : Bartonsville, PA +18322 : 40.923539 : -75.4 : Brodheadsville, PA +18323 : 41.198247 : -75.27298 : Buck Hill Falls, PA +18324 : 41.141582 : -74.99786 : Bushkill, PA +18325 : 41.205738 : -75.24344 : Canadensis, PA +18326 : 41.154329 : -75.27865 : Cresco, PA +18327 : 40.982028 : -75.14262 : Delaware Water Gap, PA +18328 : 41.241889 : -74.95917 : Dingmans Ferry, PA +18330 : 40.969985 : -75.45726 : Effort, PA +18331 : 40.913651 : -75.43501 : Gilbert, PA +18332 : 41.093813 : -75.26213 : Henryville, PA +18333 : 40.898654 : -75.49795 : Kresgeville, PA +18334 : 41.075315 : -75.43058 : Long Pond, PA +18335 : 41.050764 : -75.208269 : Marshalls Creek, PA +18336 : 41.368893 : -74.70553 : Matamoras, PA +18337 : 41.320904 : -74.88565 : Milford, PA +18340 : 41.411678 : -74.744 : Millrift, PA +18341 : 40.999857 : -75.13254 : Minisink Hills, PA +18342 : 41.145778 : -75.294125 : Mountainhome, PA +18343 : 40.889911 : -75.1112 : Mount Bethel, PA +18344 : 41.118465 : -75.35501 : Mount Pocono, PA +18346 : 41.118226 : -75.39631 : Pocono Summit, PA +18347 : 41.144565 : -75.55717 : Pocono Lake, PA +18348 : 41.033755 : -75.30798 : Pocono Lake Preserve, PA +18349 : 41.100236 : -75.36453 : Pocono Manor, PA +18350 : 41.116737 : -75.46037 : Pocono Pines, PA +18351 : 40.920622 : -75.09773 : Portland, PA +18352 : 40.986265 : -75.348026 : Reeders, PA +18353 : 40.906654 : -75.35881 : Saylorsburg, PA +18354 : 40.922005 : -75.32185 : Sciota, PA +18355 : 41.074757 : -75.36259 : Scotrun, PA +18356 : 41.010333 : -75.09995 : Shawnee On Delaware, PA +18357 : 41.231091 : -75.23884 : Skytop, PA +18360 : 40.98314 : -75.26026 : Stroudsburg, PA +18370 : 41.095437 : -75.3191 : Swiftwater, PA +18371 : 41.340936 : -75.024055 : Tamiment, PA +18372 : 41.048423 : -75.31865 : Tannersville, PA +18373 : 41.340936 : -75.024055 : Unity House, PA +18377 : 41.31514 : -74.95183 : Dingman, PA +18401 : 41.615989 : -75.274708 : Aldenville, PA +18403 : 41.493381 : -75.54909 : Archbald, PA +18405 : 41.598906 : -75.10381 : Beach Lake, PA +18407 : 41.583517 : -75.51015 : Carbondale, PA +18410 : 41.486527 : -75.693335 : Chinchilla, PA +18411 : 41.485845 : -75.71134 : Clarks Summit, PA +18413 : 41.64872 : -75.59722 : Clifford, PA +18414 : 41.537933 : -75.73826 : Dalton, PA +18415 : 41.743598 : -75.12383 : Damascus, PA +18416 : 41.375602 : -75.547966 : Elmhurst, PA +18417 : 41.800226 : -75.20349 : Equinunk, PA +18419 : 41.568872 : -75.79296 : Factoryville, PA +18420 : 41.597115 : -75.71102 : Fleetville, PA +18421 : 41.653139 : -75.46199 : Forest City, PA +18424 : 41.251286 : -75.49121 : Gouldsboro, PA +18425 : 41.419116 : -75.00683 : Greeley, PA +18426 : 41.337195 : -75.27069 : Greentown, PA +18427 : 41.422497 : -75.335384 : Hamlin, PA +18428 : 41.427945 : -75.13473 : Hawley, PA +18430 : 41.759285 : -75.50111 : Herrick Center, PA +18431 : 41.60032 : -75.25102 : Honesdale, PA +18433 : 41.550591 : -75.56795 : Jermyn, PA +18434 : 41.471937 : -75.56605 : Jessup, PA +18435 : 41.497511 : -75.01149 : Lackawaxen, PA +18436 : 41.426197 : -75.39395 : Lake Ariel, PA +18437 : 41.866271 : -75.33611 : Lake Como, PA +18438 : 41.429411 : -75.24702 : Lakeville, PA +18439 : 41.825884 : -75.34132 : Lakewood, PA +18440 : 41.551585 : -75.767583 : La Plume, PA +18441 : 41.663906 : -75.62979 : Lenoxville, PA +18443 : 41.656499 : -75.11552 : Milanville, PA +18444 : 41.344794 : -75.52671 : Moscow, PA +18445 : 41.286968 : -75.36218 : Newfoundland, PA +18446 : 41.64181 : -75.74693 : Nicholson, PA +18447 : 41.47785 : -75.60486 : Olyphant, PA +18448 : 41.46488 : -75.596231 : Olyphant, PA +18449 : 41.615989 : -75.274708 : Orson, PA +18451 : 41.404263 : -75.23826 : Paupack, PA +18452 : 41.48188 : -75.58669 : Peckville, PA +18453 : 41.75098 : -75.37109 : Pleasant Mount, PA +18454 : 41.615989 : -75.274708 : Poyntelle, PA +18455 : 41.880371 : -75.36086 : Preston Park, PA +18456 : 41.606185 : -75.33971 : Prompton, PA +18457 : 41.471736 : -75.04617 : Rowland, PA +18458 : 41.408589 : -74.92544 : Shohola, PA +18459 : 41.515012 : -75.40884 : South Canaan, PA +18460 : 41.255644 : -75.34474 : South Sterling, PA +18461 : 41.938498 : -75.34499 : Starlight, PA +18462 : 41.8914 : -75.43221 : Starrucca, PA +18463 : 41.376953 : -75.31601 : Sterling, PA +18464 : 41.414421 : -75.18585 : Tafton, PA +18465 : 41.839349 : -75.50841 : Thompson, PA +18466 : 41.19012 : -75.36779 : Tobyhanna, PA +18469 : 41.694366 : -75.13718 : Tyler Hill, PA +18470 : 41.722929 : -75.5417 : Union Dale, PA +18471 : 41.527134 : -75.70629 : Waverly, PA +18472 : 41.579472 : -75.39613 : Waymart, PA +18473 : 41.525207 : -75.20779 : White Mills, PA +18501 : 41.401881 : -75.637626 : Scranton, PA +18502 : 41.350303 : -75.689965 : Scranton, PA +18503 : 41.41018 : -75.66588 : Scranton, PA +18504 : 41.414979 : -75.6879 : Scranton, PA +18505 : 41.39208 : -75.66603 : Scranton, PA +18507 : 41.35838 : -75.71228 : Moosic, PA +18508 : 41.439329 : -75.66187 : Scranton, PA +18509 : 41.42818 : -75.64726 : Scranton, PA +18510 : 41.40918 : -75.64508 : Scranton, PA +18512 : 41.427199 : -75.61821 : Scranton, PA +18514 : 41.401881 : -75.637626 : Scranton, PA +18515 : 41.403529 : -75.706485 : Scranton, PA +18517 : 41.391279 : -75.71535 : Taylor, PA +18518 : 41.369679 : -75.73829 : Old Forge, PA +18519 : 41.46213 : -75.62478 : Dickson City, PA +18522 : 41.401881 : -75.637626 : Scranton, PA +18540 : 41.401881 : -75.637626 : Scranton, PA +18577 : 41.401881 : -75.637626 : Scranton, PA +18601 : 41.067712 : -76.17626 : Beach Haven, PA +18602 : 41.184986 : -75.75144 : Bear Creek, PA +18603 : 41.061356 : -76.24934 : Berwick, PA +18610 : 41.057574 : -75.53909 : Blakeslee, PA +18611 : 41.196076 : -76.30735 : Cambra, PA +18612 : 41.345579 : -75.97596 : Dallas, PA +18614 : 41.501249 : -76.38889 : Dushore, PA +18615 : 41.449135 : -75.85774 : Falls, PA +18616 : 41.511462 : -76.6237 : Forksville, PA +18617 : 41.175582 : -76.07455 : Glen Lyon, PA +18618 : 41.37649 : -76.03662 : Harveys Lake, PA +18619 : 41.448101 : -76.6963 : Hillsgrove, PA +18621 : 41.257193 : -76.08882 : Hunlock Creek, PA +18622 : 41.2044 : -76.27211 : Huntington Mills, PA +18623 : 41.653217 : -76.1487 : Laceyville, PA +18624 : 41.058352 : -75.60137 : Lake Harmony, PA +18625 : 41.509364 : -75.85458 : Lake Winola, PA +18626 : 41.421281 : -76.49446 : Laporte, PA +18627 : 41.316584 : -76.021037 : Lehman, PA +18628 : 41.417231 : -76.30865 : Lopez, PA +18629 : 41.555944 : -76.13179 : Mehoopany, PA +18630 : 41.653604 : -76.03178 : Meshoppen, PA +18631 : 41.028617 : -76.30717 : Mifflinville, PA +18632 : 41.476652 : -76.38074 : Mildred, PA +18634 : 41.197908 : -76.00325 : Nanticoke, PA +18635 : 41.038241 : -76.20682 : Nescopeck, PA +18636 : 41.402035 : -76.07007 : Noxen, PA +18638 : 40.384588 : -75.058245 : Solebury, PA +18640 : 41.317242 : -75.77942 : Pittston, PA +18641 : 41.333035 : -75.74189 : Pittston, PA +18642 : 41.348939 : -75.76279 : Duryea, PA +18643 : 41.337585 : -75.81587 : Pittston, PA +18644 : 41.31943 : -75.85208 : Wyoming, PA +18651 : 41.244281 : -75.94878 : Plymouth, PA +18653 : 41.393881 : -75.82447 : Ransom, PA +18654 : 41.350053 : -76.03193 : Shawanese, PA +18655 : 41.184223 : -76.19361 : Shickshinny, PA +18656 : 41.310649 : -76.19316 : Sweet Valley, PA +18657 : 41.535917 : -75.95006 : Tunkhannock, PA +18660 : 41.098371 : -76.06397 : Wapwallopen, PA +18661 : 41.082188 : -75.75965 : White Haven, PA +18672 : 40.540232 : -75.104872 : Bridgeton, PA +18690 : 41.272248 : -75.880146 : Dallas, PA +18701 : 41.243181 : -75.88438 : Wilkes Barre, PA +18702 : 41.236331 : -75.87254 : Wilkes Barre, PA +18703 : 41.242081 : -75.88569 : Wilkes Barre, PA +18704 : 41.274748 : -75.89076 : Kingston, PA +18705 : 41.268231 : -75.84569 : Wilkes Barre, PA +18706 : 41.209869 : -75.91781 : Wilkes Barre, PA +18707 : 41.133482 : -75.9194 : Mountain Top, PA +18708 : 41.305822 : -75.94148 : Shavertown, PA +18709 : 41.28328 : -75.89369 : Luzerne, PA +18710 : 41.272248 : -75.880146 : Wilkes Barre, PA +18711 : 41.272248 : -75.880146 : Wilkes Barre, PA +18715 : 41.016832 : -76.377114 : Almedia, PA +18761 : 41.272248 : -75.880146 : Wilkes Barre, PA +18762 : 41.272248 : -75.880146 : Wilkes Barre, PA +18763 : 41.272248 : -75.880146 : Wilkes Barre, PA +18764 : 41.272248 : -75.880146 : Wilkes Barre, PA +18765 : 41.272248 : -75.880146 : Wilkes Barre, PA +18766 : 41.244781 : -75.88959 : Wilkes Barre, PA +18767 : 41.272248 : -75.880146 : Wilkes Barre, PA +18768 : 41.272248 : -75.880146 : Wilkes Barre, PA +18769 : 41.272248 : -75.880146 : Wilkes Barre, PA +18773 : 41.272248 : -75.880146 : Wilkes Barre, PA +18774 : 41.272248 : -75.880146 : Wilkes Barre, PA +18801 : 41.830406 : -75.9179 : Montrose, PA +18810 : 41.949723 : -76.50508 : Athens, PA +18812 : 41.964875 : -75.95528 : Brackney, PA +18813 : 41.753339 : -75.80831 : Brooklyn, PA +18814 : 41.782906 : -76.60854 : Burlington, PA +18815 : 41.77197 : -76.521266 : Camptown, PA +18816 : 41.747232 : -75.89424 : Dimock, PA +18817 : 41.875402 : -76.63313 : East Smithfield, PA +18818 : 41.909808 : -76.04473 : Friendsville, PA +18820 : 41.803936 : -75.64431 : Gibson, PA +18821 : 41.977241 : -75.74391 : Great Bend, PA +18822 : 41.951797 : -75.77536 : Hallstead, PA +18823 : 41.784395 : -75.70091 : Harford, PA +18824 : 41.708207 : -75.7846 : Hop Bottom, PA +18825 : 41.822157 : -75.59506 : Jackson, PA +18826 : 41.738688 : -75.72679 : Kingsley, PA +18827 : 41.963293 : -75.58203 : Lanesboro, PA +18828 : 41.786507 : -76.07042 : Lawton, PA +18829 : 41.837903 : -76.17415 : Le Raysville, PA +18830 : 41.957125 : -76.11639 : Little Meadows, PA +18831 : 41.899294 : -76.60496 : Milan, PA +18832 : 41.702433 : -76.55565 : Monroeton, PA +18833 : 41.5932 : -76.46516 : New Albany, PA +18834 : 41.853082 : -75.72077 : New Milford, PA +18837 : 41.918757 : -76.29687 : Rome, PA +18839 : 41.803273 : -76.11934 : Rushville, PA +18840 : 41.983801 : -76.52578 : Sayre, PA +18842 : 41.746871 : -75.61752 : South Gibson, PA +18843 : 41.8237 : -75.88314 : South Montrose, PA +18844 : 41.695782 : -75.91836 : Springville, PA +18845 : 41.797851 : -76.18303 : Stevensville, PA +18846 : 41.600392 : -76.24243 : Sugar Run, PA +18847 : 41.944334 : -75.57241 : Susquehanna, PA +18848 : 41.762543 : -76.45298 : Towanda, PA +18850 : 41.849392 : -76.5021 : Ulster, PA +18851 : 41.928722 : -76.16896 : Warren Center, PA +18853 : 41.719942 : -76.26615 : Wyalusing, PA +18854 : 41.781522 : -76.35906 : Wysox, PA +18901 : 40.317473 : -75.12854 : Doylestown, PA +18903 : 40.339307 : -75.152176 : Doylestown, PA +18910 : 40.328645 : -75.10278 : Bedminster, PA +18911 : 40.328645 : -75.10278 : Blooming Glen, PA +18912 : 40.309942 : -75.074252 : Buckingham, PA +18913 : 40.376499 : -75.04129 : Carversville, PA +18914 : 40.282406 : -75.20657 : Chalfont, PA +18915 : 40.272177 : -75.25783 : Colmar, PA +18916 : 40.328645 : -75.10278 : Danboro, PA +18917 : 40.37327 : -75.20246 : Dublin, PA +18918 : 40.320036 : -75.374155 : Earlington, PA +18920 : 40.500115 : -75.07901 : Erwinna, PA +18921 : 40.328645 : -75.10278 : Ferndale, PA +18922 : 40.328645 : -75.10278 : Forest Grove, PA +18923 : 40.346926 : -75.16497 : Fountainville, PA +18924 : 40.308116 : -75.358575 : Franconia, PA +18925 : 40.282168 : -75.06283 : Furlong, PA +18926 : 40.39473 : -75.098468 : Gardenville, PA +18927 : 40.324823 : -75.2436 : Hilltown, PA +18928 : 40.335974 : -75.04288 : Holicong, PA +18929 : 40.256648 : -75.09357 : Jamison, PA +18930 : 40.537142 : -75.21189 : Kintnersville, PA +18931 : 40.328645 : -75.10278 : Lahaska, PA +18932 : 40.289372 : -75.25572 : Line Lexington, PA +18933 : 40.328645 : -75.10278 : Lumberville, PA +18934 : 40.349443 : -75.067622 : Mechanicsville, PA +18935 : 40.328645 : -75.10278 : Milford Square, PA +18936 : 40.223216 : -75.22829 : Montgomeryville, PA +18938 : 40.354735 : -74.99319 : New Hope, PA +18940 : 40.246802 : -74.93912 : Newtown, PA +18942 : 40.466205 : -75.16183 : Ottsville, PA +18943 : 40.268981 : -75.009401 : Penns Park, PA +18944 : 40.379029 : -75.25926 : Perkasie, PA +18945 : 40.431382 : -75.100804 : Plumstead, PA +18946 : 40.271104 : -75.062204 : Pineville, PA +18947 : 40.426391 : -75.11842 : Pipersville, PA +18949 : 40.38805 : -75.142522 : Plumsteadville, PA +18950 : 40.416516 : -75.074832 : Point Pleasant, PA +18951 : 40.445203 : -75.34838 : Quakertown, PA +18953 : 40.328645 : -75.10278 : Revere, PA +18954 : 40.214652 : -75.00379 : Richboro, PA +18955 : 40.478742 : -75.31938 : Richlandtown, PA +18956 : 40.262783 : -75.01568 : Rushland, PA +18957 : 40.302945 : -75.448579 : Salford, PA +18958 : 40.290357 : -75.435539 : Salfordville, PA +18960 : 40.361206 : -75.31101 : Sellersville, PA +18962 : 40.346017 : -75.26953 : Silverdale, PA +18963 : 40.328645 : -75.10278 : Solebury, PA +18964 : 40.305176 : -75.325 : Souderton, PA +18966 : 40.184745 : -75.00831 : Southampton, PA +18968 : 40.328645 : -75.10278 : Spinnerstown, PA +18969 : 40.32635 : -75.34589 : Telford, PA +18970 : 40.412771 : -75.38625 : Trumbauersville, PA +18971 : 40.34698 : -75.376985 : Tylersport, PA +18972 : 40.535227 : -75.12642 : Upper Black Eddy, PA +18974 : 40.211241 : -75.0887 : Warminster, PA +18976 : 40.240295 : -75.13458 : Warrington, PA +18977 : 40.289939 : -74.87885 : Washington Crossing, PA +18979 : 40.211896 : -75.35586 : Woxall, PA +18980 : 40.28083 : -75.01422 : Wycombe, PA +18981 : 40.328645 : -75.10278 : Zionhill, PA +18991 : 40.328645 : -75.10278 : Warminster, PA +19001 : 40.127907 : -75.12695 : Abington, PA +19002 : 40.169608 : -75.21158 : Ambler, PA +19003 : 40.000861 : -75.29694 : Ardmore, PA +19004 : 40.012862 : -75.23309 : Bala Cynwyd, PA +19006 : 40.129509 : -75.06115 : Huntingdon Valley, PA +19007 : 40.108943 : -74.85548 : Bristol, PA +19008 : 39.974378 : -75.36083 : Broomall, PA +19009 : 40.139539 : -75.06716 : Bryn Athyn, PA +19010 : 40.02371 : -75.32764 : Bryn Mawr, PA +19012 : 40.060304 : -75.10439 : Cheltenham, PA +19013 : 39.84697 : -75.37444 : Chester, PA +19014 : 39.864761 : -75.4326 : Aston, PA +19015 : 39.864929 : -75.38761 : Brookhaven, PA +19016 : 39.934047 : -75.405987 : Chester, PA +19017 : 39.883911 : -75.466949 : Chester Heights, PA +19018 : 39.922862 : -75.29639 : Primos, PA +19019 : 40.001811 : -75.11787 : Philadelphia, PA +19020 : 40.10386 : -74.93734 : Bensalem, PA +19021 : 40.093443 : -74.89912 : Croydon, PA +19022 : 39.862712 : -75.33958 : Crum Lynne, PA +19023 : 39.916262 : -75.26517 : Darby, PA +19025 : 40.149164 : -75.16047 : Dresher, PA +19026 : 39.949962 : -75.30184 : Drexel Hill, PA +19027 : 40.072293 : -75.12406 : Elkins Park, PA +19028 : 39.934047 : -75.405987 : Edgemont, PA +19029 : 39.866912 : -75.29156 : Essington, PA +19030 : 40.175504 : -74.84611 : Fairless Hills, PA +19031 : 40.107743 : -75.21334 : Flourtown, PA +19032 : 39.893212 : -75.28088 : Folcroft, PA +19033 : 39.890462 : -75.32755 : Folsom, PA +19034 : 40.13477 : -75.20374 : Fort Washington, PA +19035 : 40.042444 : -75.28002 : Gladwyne, PA +19036 : 39.902045 : -75.29371 : Glenolden, PA +19037 : 39.934047 : -75.405987 : Glen Riddle Lima, PA +19038 : 40.10346 : -75.16829 : Glenside, PA +19039 : 39.88211 : -75.337234 : Gradyville, PA +19040 : 40.178076 : -75.1067 : Hatboro, PA +19041 : 40.012661 : -75.3088 : Haverford, PA +19043 : 39.899812 : -75.30893 : Holmes, PA +19044 : 40.184758 : -75.14386 : Horsham, PA +19046 : 40.09811 : -75.10949 : Jenkintown, PA +19047 : 40.173563 : -74.91203 : Langhorne, PA +19048 : 40.173509 : -74.92461 : Langhorne, PA +19049 : 40.328645 : -75.10278 : Langhorne, PA +19050 : 39.939609 : -75.26453 : Lansdowne, PA +19052 : 39.894161 : -75.445589 : Lenni, PA +19053 : 40.148759 : -74.98228 : Feasterville Trevose, PA +19054 : 40.166859 : -74.82066 : Levittown, PA +19055 : 40.149009 : -74.83617 : Levittown, PA +19056 : 40.151509 : -74.88576 : Levittown, PA +19057 : 40.142059 : -74.85821 : Levittown, PA +19058 : 40.328645 : -75.10278 : Levittown, PA +19059 : 40.328645 : -75.10278 : Levittown, PA +19061 : 39.832762 : -75.44063 : Marcus Hook, PA +19063 : 39.916078 : -75.40251 : Media, PA +19064 : 39.929511 : -75.33562 : Springfield, PA +19065 : 39.921061 : -75.386136 : Media, PA +19066 : 40.003762 : -75.2493 : Merion Station, PA +19067 : 40.214661 : -74.81812 : Morrisville, PA +19070 : 39.906312 : -75.32489 : Morton, PA +19072 : 40.014541 : -75.25805 : Narberth, PA +19073 : 39.98451 : -75.41265 : Newtown Square, PA +19074 : 39.888312 : -75.29717 : Norwood, PA +19075 : 40.11461 : -75.18632 : Oreland, PA +19076 : 39.884562 : -75.30847 : Prospect Park, PA +19078 : 39.877262 : -75.32272 : Ridley Park, PA +19079 : 39.903312 : -75.26939 : Sharon Hill, PA +19080 : 40.043201 : -75.357678 : Wayne, PA +19081 : 39.897562 : -75.34658 : Swarthmore, PA +19082 : 39.958512 : -75.26856 : Upper Darby, PA +19083 : 39.978728 : -75.30861 : Havertown, PA +19085 : 40.038477 : -75.3473 : Villanova, PA +19086 : 39.888913 : -75.37006 : Wallingford, PA +19087 : 40.058808 : -75.40069 : Wayne, PA +19088 : 39.934047 : -75.405987 : Wayne, PA +19089 : 40.043399 : -75.357308 : Wayne, PA +19090 : 40.145859 : -75.1216 : Willow Grove, PA +19091 : 39.934047 : -75.405987 : Media, PA +19092 : 40.001811 : -75.11787 : Philadelphia, PA +19093 : 40.001811 : -75.11787 : Philadelphia, PA +19094 : 39.874612 : -75.34542 : Woodlyn, PA +19095 : 40.08786 : -75.14707 : Wyncote, PA +19096 : 39.992345 : -75.27624 : Wynnewood, PA +19098 : 39.895362 : -75.310731 : Holmes, PA +19099 : 40.001811 : -75.11787 : Philadelphia, PA +19101 : 40.001811 : -75.11787 : Philadelphia, PA +19102 : 39.952962 : -75.16558 : Philadelphia, PA +19103 : 39.952162 : -75.17406 : Philadelphia, PA +19104 : 39.961612 : -75.19957 : Philadelphia, PA +19105 : 40.001811 : -75.11787 : Philadelphia, PA +19106 : 39.951062 : -75.14589 : Philadelphia, PA +19107 : 39.952112 : -75.15853 : Philadelphia, PA +19108 : 39.959662 : -75.1605 : Philadelphia, PA +19109 : 39.949612 : -75.163722 : Philadelphia, PA +19110 : 39.950212 : -75.163572 : Philadelphia, PA +19111 : 40.057661 : -75.08018 : Philadelphia, PA +19112 : 39.895677 : -75.19044 : Philadelphia, PA +19113 : 39.874179 : -75.26353 : Philadelphia, PA +19114 : 40.064257 : -75.00155 : Philadelphia, PA +19115 : 40.09261 : -75.04118 : Philadelphia, PA +19116 : 40.117413 : -75.0154 : Philadelphia, PA +19118 : 40.07236 : -75.20772 : Philadelphia, PA +19119 : 40.053511 : -75.18858 : Philadelphia, PA +19120 : 40.033944 : -75.12118 : Philadelphia, PA +19121 : 39.981062 : -75.1745 : Philadelphia, PA +19122 : 39.977662 : -75.14336 : Philadelphia, PA +19123 : 39.964012 : -75.14764 : Philadelphia, PA +19124 : 40.017362 : -75.08769 : Philadelphia, PA +19125 : 39.978162 : -75.12565 : Philadelphia, PA +19126 : 40.055411 : -75.13793 : Philadelphia, PA +19127 : 40.026626 : -75.22311 : Philadelphia, PA +19128 : 40.038944 : -75.22104 : Philadelphia, PA +19129 : 40.011562 : -75.1839 : Philadelphia, PA +19130 : 39.968262 : -75.17222 : Philadelphia, PA +19131 : 39.981112 : -75.22486 : Philadelphia, PA +19132 : 39.995412 : -75.16977 : Philadelphia, PA +19133 : 39.992862 : -75.14054 : Philadelphia, PA +19134 : 39.991712 : -75.11116 : Philadelphia, PA +19135 : 40.023611 : -75.04966 : Philadelphia, PA +19136 : 40.041111 : -75.02644 : Philadelphia, PA +19137 : 40.000262 : -75.07404 : Philadelphia, PA +19138 : 40.055861 : -75.15654 : Philadelphia, PA +19139 : 39.961812 : -75.23003 : Philadelphia, PA +19140 : 40.012212 : -75.14503 : Philadelphia, PA +19141 : 40.035778 : -75.1447 : Philadelphia, PA +19142 : 39.922612 : -75.23453 : Philadelphia, PA +19143 : 39.944162 : -75.22718 : Philadelphia, PA +19144 : 40.034111 : -75.17203 : Philadelphia, PA +19145 : 39.922262 : -75.18259 : Philadelphia, PA +19146 : 39.938512 : -75.18067 : Philadelphia, PA +19147 : 39.936562 : -75.15409 : Philadelphia, PA +19148 : 39.919812 : -75.15803 : Philadelphia, PA +19149 : 40.037711 : -75.06658 : Philadelphia, PA +19150 : 40.07226 : -75.17106 : Philadelphia, PA +19151 : 39.975929 : -75.25256 : Philadelphia, PA +19152 : 40.059611 : -75.04837 : Philadelphia, PA +19153 : 39.898985 : -75.23221 : Philadelphia, PA +19154 : 40.09146 : -74.97719 : Philadelphia, PA +19155 : 40.001811 : -75.11787 : Philadelphia, PA +19156 : 40.48586 : -76.009125 : Centerport, PA +19160 : 40.001811 : -75.11787 : Philadelphia, PA +19161 : 40.001811 : -75.11787 : Philadelphia, PA +19162 : 40.001811 : -75.11787 : Philadelphia, PA +19170 : 40.001811 : -75.11787 : Philadelphia, PA +19171 : 40.001811 : -75.11787 : Philadelphia, PA +19172 : 39.947321 : -75.150011 : Philadelphia, PA +19173 : 40.001811 : -75.11787 : Philadelphia, PA +19175 : 39.990562 : -75.12957 : Philadelphia, PA +19177 : 40.001811 : -75.11787 : Philadelphia, PA +19178 : 40.001811 : -75.11787 : Philadelphia, PA +19179 : 40.001811 : -75.11787 : Philadelphia, PA +19181 : 40.001811 : -75.11787 : Philadelphia, PA +19182 : 40.001811 : -75.11787 : Philadelphia, PA +19183 : 40.001811 : -75.11787 : Philadelphia, PA +19184 : 40.001811 : -75.11787 : Philadelphia, PA +19185 : 40.001811 : -75.11787 : Philadelphia, PA +19187 : 40.001811 : -75.11787 : Philadelphia, PA +19188 : 40.001811 : -75.11787 : Philadelphia, PA +19191 : 40.001811 : -75.11787 : Philadelphia, PA +19192 : 39.951112 : -75.167622 : Philadelphia, PA +19193 : 40.001811 : -75.11787 : Philadelphia, PA +19194 : 40.001811 : -75.11787 : Philadelphia, PA +19196 : 40.001811 : -75.11787 : Philadelphia, PA +19197 : 40.001811 : -75.11787 : Philadelphia, PA +19244 : 40.001811 : -75.11787 : Philadelphia, PA +19255 : 40.001811 : -75.11787 : Philadelphia, PA +19301 : 40.042252 : -75.48357 : Paoli, PA +19310 : 39.9451 : -75.97024 : Atglen, PA +19311 : 39.825643 : -75.77244 : Avondale, PA +19312 : 40.037958 : -75.44986 : Berwyn, PA +19316 : 40.058565 : -75.83584 : Brandamore, PA +19317 : 39.851803 : -75.5961 : Chadds Ford, PA +19318 : 39.852406 : -75.811789 : Chatham, PA +19319 : 39.928663 : -75.52526 : Cheyney, PA +19320 : 39.978456 : -75.82275 : Coatesville, PA +19330 : 39.872123 : -75.91411 : Cochranville, PA +19331 : 39.882274 : -75.516529 : Concordville, PA +19333 : 40.044858 : -75.42174 : Devon, PA +19335 : 40.02342 : -75.71389 : Downingtown, PA +19339 : 39.934047 : -75.405987 : Concordville, PA +19340 : 39.934047 : -75.405987 : Concordville, PA +19341 : 40.040505 : -75.63425 : Exton, PA +19342 : 39.897677 : -75.50109 : Glen Mills, PA +19343 : 40.094621 : -75.74602 : Glenmoore, PA +19344 : 40.078045 : -75.88488 : Honey Brook, PA +19345 : 40.030536 : -75.565 : Immaculata, PA +19346 : 39.983153 : -75.748055 : Kelton, PA +19347 : 39.983153 : -75.748055 : Kemblesville, PA +19348 : 39.858137 : -75.71227 : Kennett Square, PA +19350 : 39.768218 : -75.78759 : Landenberg, PA +19351 : 39.983153 : -75.748055 : Lewisville, PA +19352 : 39.783675 : -75.8944 : Lincoln University, PA +19353 : 40.013158 : -75.499046 : Lionville, PA +19354 : 40.058173 : -75.743272 : Lyndell, PA +19355 : 40.042957 : -75.53221 : Malvern, PA +19357 : 39.983153 : -75.748055 : Mendenhall, PA +19358 : 39.962256 : -75.80215 : Modena, PA +19360 : 39.726143 : -75.7857 : New London, PA +19362 : 39.750999 : -76.059 : Nottingham, PA +19363 : 39.781938 : -75.97458 : Oxford, PA +19365 : 39.961094 : -75.92047 : Parkesburg, PA +19366 : 39.983153 : -75.748055 : Pocopson, PA +19367 : 39.964795 : -75.88285 : Pomeroy, PA +19369 : 39.985257 : -75.88984 : Sadsburyville, PA +19370 : 39.983153 : -75.748055 : Steelville, PA +19371 : 39.983153 : -75.748055 : Suplee, PA +19372 : 39.997469 : -75.75964 : Thorndale, PA +19373 : 39.899315 : -75.5314 : Thornton, PA +19374 : 39.830992 : -75.7553 : Toughkenamon, PA +19375 : 39.901177 : -75.750203 : Unionville, PA +19376 : 39.983153 : -75.748055 : Wagontown, PA +19380 : 39.983108 : -75.59332 : West Chester, PA +19381 : 39.983153 : -75.748055 : West Chester, PA +19382 : 39.940043 : -75.59729 : West Chester, PA +19383 : 39.94545 : -75.602401 : West Chester, PA +19390 : 39.820841 : -75.84233 : West Grove, PA +19395 : 39.932821 : -75.544822 : Westtown, PA +19397 : 39.983153 : -75.748055 : Southeastern, PA +19398 : 39.983153 : -75.748055 : Southeastern, PA +19399 : 39.983153 : -75.748055 : Southeastern, PA +19401 : 40.123708 : -75.33843 : Norristown, PA +19403 : 40.146069 : -75.38378 : Norristown, PA +19404 : 40.211896 : -75.35586 : Norristown, PA +19405 : 40.103208 : -75.3405 : Bridgeport, PA +19406 : 40.092941 : -75.37525 : King Of Prussia, PA +19407 : 40.211896 : -75.35586 : Audubon, PA +19408 : 40.156555 : -75.413127 : Eagleville, PA +19409 : 40.211896 : -75.35586 : Fairview Village, PA +19420 : 40.152871 : -75.456719 : Arcola, PA +19421 : 40.138889 : -75.63332 : Birchrunville, PA +19422 : 40.157526 : -75.27816 : Blue Bell, PA +19423 : 40.21735 : -75.364973 : Cedars, PA +19424 : 40.211896 : -75.35586 : Blue Bell, PA +19425 : 40.089905 : -75.64124 : Chester Springs, PA +19426 : 40.185637 : -75.44873 : Collegeville, PA +19428 : 40.077736 : -75.30509 : Conshohocken, PA +19429 : 40.211896 : -75.35586 : Conshohocken, PA +19430 : 40.185071 : -75.419966 : Creamery, PA +19432 : 40.079629 : -75.559975 : Devault, PA +19435 : 40.330348 : -75.56937 : Frederick, PA +19436 : 40.201932 : -75.25091 : Gwynedd, PA +19437 : 40.183763 : -75.26271 : Gwynedd Valley, PA +19438 : 40.270424 : -75.38569 : Harleysville, PA +19440 : 40.278294 : -75.29479 : Hatfield, PA +19441 : 40.211896 : -75.35586 : Harleysville, PA +19442 : 40.146549 : -75.617739 : Kimberton, PA +19443 : 40.241004 : -75.34392 : Kulpsville, PA +19444 : 40.087297 : -75.2557 : Lafayette Hill, PA +19446 : 40.237206 : -75.29156 : Lansdale, PA +19450 : 40.211896 : -75.35586 : Lederach, PA +19451 : 40.211896 : -75.35586 : Mainland, PA +19452 : 40.211896 : -75.35586 : Miquon, PA +19453 : 40.137922 : -75.50218 : Mont Clare, PA +19454 : 40.223524 : -75.24731 : North Wales, PA +19455 : 40.211896 : -75.35586 : North Wales, PA +19456 : 40.133355 : -75.453631 : Oaks, PA +19457 : 40.204252 : -75.58449 : Parker Ford, PA +19460 : 40.126271 : -75.52341 : Phoenixville, PA +19462 : 40.115959 : -75.29257 : Plymouth Meeting, PA +19464 : 40.253496 : -75.63481 : Pottstown, PA +19465 : 40.206057 : -75.66107 : Pottstown, PA +19468 : 40.200347 : -75.53236 : Royersford, PA +19470 : 40.186707 : -75.728759 : Saint Peters, PA +19472 : 40.339207 : -75.57372 : Sassamansville, PA +19473 : 40.257069 : -75.47097 : Schwenksville, PA +19474 : 40.222343 : -75.4052 : Skippack, PA +19475 : 40.176858 : -75.57621 : Spring City, PA +19477 : 40.185934 : -75.232407 : Spring House, PA +19478 : 40.276511 : -75.4582 : Spring Mount, PA +19480 : 40.098032 : -75.688005 : Uwchland, PA +19481 : 40.092269 : -75.453735 : Valley Forge, PA +19482 : 40.080323 : -75.455408 : Valley Forge, PA +19483 : 40.211896 : -75.35586 : Valley Forge, PA +19484 : 40.211896 : -75.35586 : Valley Forge, PA +19485 : 40.211896 : -75.35586 : Valley Forge, PA +19486 : 40.203291 : -75.301918 : West Point, PA +19487 : 39.983153 : -75.748055 : King Of Prussia, PA +19488 : 39.983153 : -75.748055 : Norristown, PA +19489 : 39.983153 : -75.748055 : Norristown, PA +19490 : 40.192881 : -75.357555 : Worcester, PA +19492 : 40.281036 : -75.486 : Zieglerville, PA +19493 : 39.983153 : -75.748055 : Valley Forge, PA +19494 : 39.983153 : -75.748055 : Valley Forge, PA +19495 : 39.983153 : -75.748055 : Valley Forge, PA +19496 : 39.983153 : -75.748055 : Valley Forge, PA +19501 : 40.241588 : -76.05765 : Adamstown, PA +19503 : 40.401044 : -75.58836 : Bally, PA +19504 : 40.404892 : -75.58992 : Barto, PA +19505 : 40.375925 : -75.62617 : Bechtelsville, PA +19506 : 40.453886 : -76.12911 : Bernville, PA +19507 : 40.488558 : -76.27269 : Bethel, PA +19508 : 40.267165 : -75.8254 : Birdsboro, PA +19510 : 40.444786 : -75.88034 : Blandon, PA +19511 : 40.48773 : -75.7393 : Bowers, PA +19512 : 40.338497 : -75.6632 : Boyertown, PA +19516 : 40.486726 : -76.00719 : Centerport, PA +19517 : 40.407173 : -75.984901 : Dauberville, PA +19518 : 40.273179 : -75.73931 : Douglassville, PA +19519 : 40.317896 : -75.73144 : Earlville, PA +19520 : 40.157078 : -75.80669 : Elverson, PA +19522 : 40.447093 : -75.81997 : Fleetwood, PA +19523 : 40.203142 : -75.83588 : Geigertown, PA +19524 : 40.248684 : -75.858731 : Robeson, PA +19525 : 40.311246 : -75.594 : Gilbertsville, PA +19526 : 40.545014 : -75.98463 : Hamburg, PA +19529 : 40.625739 : -75.83474 : Kempton, PA +19530 : 40.535102 : -75.77566 : Kutztown, PA +19533 : 40.435509 : -75.98937 : Leesport, PA +19534 : 40.574033 : -75.87434 : Lenhartsville, PA +19535 : 40.335593 : -75.801009 : Limekiln, PA +19536 : 40.480194 : -75.75698 : Lyon Station, PA +19538 : 40.569818 : -75.740942 : Maxatawny, PA +19539 : 40.497369 : -75.68225 : Mertztown, PA +19540 : 40.250592 : -75.96683 : Mohnton, PA +19541 : 40.479447 : -76.02438 : Mohrsville, PA +19542 : 40.260992 : -75.768437 : Monocacy Station, PA +19543 : 40.167618 : -75.89259 : Morgantown, PA +19544 : 40.418864 : -76.29564 : Mount Aetna, PA +19545 : 40.340392 : -75.63082 : New Berlinville, PA +19546 : 40.254667 : -75.951709 : Cumru, PA +19547 : 40.385143 : -75.76372 : Oley, PA +19548 : 40.407173 : -75.984901 : Pine Forge, PA +19549 : 40.580744 : -76.02559 : Port Clinton, PA +19550 : 40.456862 : -76.24373 : Rehrersburg, PA +19551 : 40.357034 : -76.13741 : Robesonia, PA +19554 : 40.513794 : -76.10833 : Shartlesville, PA +19555 : 40.494943 : -75.96466 : Shoemakersville, PA +19557 : 40.613868 : -75.814984 : Stony Run, PA +19559 : 40.492053 : -76.1841 : Strausstown, PA +19560 : 40.407243 : -75.91163 : Temple, PA +19562 : 40.502511 : -75.70315 : Topton, PA +19564 : 40.526803 : -75.869653 : Virginville, PA +19565 : 40.327974 : -76.08921 : Wernersville, PA +19567 : 40.373285 : -76.20054 : Womelsdorf, PA +19601 : 40.348092 : -75.93577 : Reading, PA +19602 : 40.329992 : -75.91962 : Reading, PA +19603 : 40.388442 : -75.963055 : Reading, PA +19604 : 40.355092 : -75.91205 : Reading, PA +19605 : 40.390943 : -75.9375 : Reading, PA +19606 : 40.327741 : -75.87002 : Reading, PA +19607 : 40.302492 : -75.95565 : Reading, PA +19608 : 40.312842 : -76.02422 : Reading, PA +19609 : 40.324694 : -75.9921 : Reading, PA +19610 : 40.335023 : -75.97099 : Reading, PA +19611 : 40.327792 : -75.94215 : Reading, PA +19612 : 40.4389 : -75.885303 : Reading, PA +19640 : 40.407173 : -75.984901 : Reading, PA +19650 : 40.394884 : -75.86638 : Alsace, PA +19685 : 40.378451 : -75.917477 : Muhlenberg, PA +19700 : 39.570322 : -75.590662 : Delaware City, DE +19701 : 39.598203 : -75.69945 : Bear, DE +19702 : 39.626297 : -75.71386 : Newark, DE +19703 : 39.800945 : -75.46455 : Claymont, DE +19706 : 39.573744 : -75.59204 : Delaware City, DE +19707 : 39.784014 : -75.68586 : Hockessin, DE +19708 : 39.577567 : -75.690069 : Kirkwood, DE +19709 : 39.479602 : -75.6932 : Middletown, DE +19710 : 39.788562 : -75.58881 : Montchanin, DE +19711 : 39.700561 : -75.7431 : Newark, DE +19712 : 39.564499 : -75.597047 : Newark, DE +19713 : 39.669211 : -75.71796 : Newark, DE +19714 : 39.564499 : -75.597047 : Newark, DE +19715 : 39.564499 : -75.597047 : Newark, DE +19716 : 39.564499 : -75.597047 : Newark, DE +19717 : 39.564499 : -75.597047 : Newark, DE +19718 : 39.564499 : -75.597047 : Newark, DE +19720 : 39.669219 : -75.59003 : New Castle, DE +19721 : 39.564499 : -75.597047 : New Castle, DE +19725 : 39.564499 : -75.597047 : Newark, DE +19726 : 39.564499 : -75.597047 : Newark, DE +19730 : 39.456484 : -75.65976 : Odessa, DE +19731 : 39.518164 : -75.57656 : Port Penn, DE +19732 : 39.794496 : -75.57433 : Rockland, DE +19733 : 39.555794 : -75.65058 : Saint Georges, DE +19734 : 39.386601 : -75.66801 : Townsend, DE +19735 : 39.794396 : -75.597598 : Winterthur, DE +19736 : 39.790911 : -75.64934 : Yorklyn, DE +19743 : 40.276386 : -75.462796 : Spring Mount, PA +19766 : 39.567092 : -75.601491 : Delaware City, DE +19801 : 39.738563 : -75.54833 : Wilmington, DE +19802 : 39.756213 : -75.53312 : Wilmington, DE +19803 : 39.793962 : -75.53401 : Wilmington, DE +19804 : 39.721062 : -75.60806 : Wilmington, DE +19805 : 39.745377 : -75.58251 : Wilmington, DE +19806 : 39.758563 : -75.56413 : Wilmington, DE +19807 : 39.787512 : -75.60256 : Wilmington, DE +19808 : 39.734279 : -75.6631 : Wilmington, DE +19809 : 39.771663 : -75.49656 : Wilmington, DE +19810 : 39.817645 : -75.50242 : Wilmington, DE +19814 : 39.713625 : -75.596283 : Newport, DE +19815 : 40.318615 : -75.755807 : Amity, PA +19850 : 39.564499 : -75.597047 : Wilmington, DE +19853 : 40.088156 : -75.480887 : Schuylkill, PA +19880 : 39.564499 : -75.597047 : Wilmington, DE +19884 : 39.564499 : -75.597047 : Wilmington, DE +19885 : 39.564499 : -75.597047 : Wilmington, DE +19886 : 39.564499 : -75.597047 : Wilmington, DE +19887 : 39.564499 : -75.597047 : Wilmington, DE +19889 : 39.564499 : -75.597047 : Wilmington, DE +19890 : 39.564499 : -75.597047 : Wilmington, DE +19891 : 39.564499 : -75.597047 : Wilmington, DE +19892 : 39.564499 : -75.597047 : Wilmington, DE +19893 : 39.564499 : -75.597047 : Wilmington, DE +19894 : 39.564499 : -75.597047 : Wilmington, DE +19895 : 39.564499 : -75.597047 : Wilmington, DE +19896 : 39.564499 : -75.597047 : Wilmington, DE +19897 : 39.564499 : -75.597047 : Wilmington, DE +19898 : 39.564499 : -75.597047 : Wilmington, DE +19899 : 39.734792 : -75.624617 : Wilmington, DE +19901 : 39.16426 : -75.51163 : Dover, DE +19902 : 39.131958 : -75.46953 : Dover AFB, DE +19903 : 39.10868 : -75.448023 : Dover, DE +19904 : 39.161639 : -75.5587 : Dover, DE +19905 : 39.10868 : -75.448023 : Dover, DE +19925 : 40.084337 : -75.680797 : Upper Uwchlan, PA +19930 : 38.536354 : -75.06062 : Bethany Beach, DE +19931 : 38.570238 : -75.6147 : Bethel, DE +19933 : 38.73635 : -75.60807 : Bridgeville, DE +19934 : 39.094699 : -75.58871 : Camden Wyoming, DE +19936 : 39.218448 : -75.584848 : Cheswold, DE +19938 : 39.265066 : -75.6807 : Clayton, DE +19939 : 38.557501 : -75.21465 : Dagsboro, DE +19940 : 38.469655 : -75.5669 : Delmar, DE +19941 : 38.80136 : -75.42595 : Ellendale, DE +19942 : 38.868387 : -75.57907 : Farmington, DE +19943 : 39.011387 : -75.58978 : Felton, DE +19944 : 38.459314 : -75.05356 : Fenwick Island, DE +19945 : 38.511469 : -75.18364 : Frankford, DE +19946 : 39.037803 : -75.46634 : Frederica, DE +19947 : 38.676552 : -75.39269 : Georgetown, DE +19950 : 38.818541 : -75.60966 : Greenwood, DE +19951 : 38.682345 : -75.23286 : Harbeson, DE +19952 : 38.916908 : -75.61343 : Harrington, DE +19953 : 39.150822 : -75.70428 : Hartly, DE +19954 : 38.909621 : -75.51264 : Houston, DE +19955 : 39.227313 : -75.66549 : Kenton, DE +19956 : 38.549721 : -75.55304 : Laurel, DE +19958 : 38.746207 : -75.16282 : Lewes, DE +19960 : 38.855872 : -75.39889 : Lincoln, DE +19961 : 39.166323 : -75.448289 : Little Creek, DE +19962 : 39.06517 : -75.49858 : Magnolia, DE +19963 : 38.922806 : -75.41449 : Milford, DE +19964 : 39.098772 : -75.73943 : Marydel, DE +19966 : 38.601355 : -75.2411 : Millsboro, DE +19967 : 38.54597 : -75.11175 : Millville, DE +19968 : 38.772648 : -75.28665 : Milton, DE +19969 : 38.725562 : -75.353387 : Nassau, DE +19970 : 38.55044 : -75.09928 : Ocean View, DE +19971 : 38.711512 : -75.09677 : Rehoboth Beach, DE +19973 : 38.643248 : -75.61102 : Seaford, DE +19975 : 38.463751 : -75.15642 : Selbyville, DE +19977 : 39.29799 : -75.59391 : Smyrna, DE +19979 : 39.0461 : -75.57185 : Viola, DE +19980 : 39.07027 : -75.57057 : Woodside, DE +19999 : 38.542771 : -75.05666 : Bethany Beach, DE +20001 : 38.907711 : -77.01732 : Washington, DC +20002 : 38.901811 : -76.99097 : Washington, DC +20003 : 38.881762 : -76.99447 : Washington, DC +20004 : 38.895268 : -77.0276 : Washington, DC +20005 : 38.904461 : -77.03088 : Washington, DC +20006 : 38.897567 : -77.04195 : Washington, DC +20007 : 38.913961 : -77.07179 : Washington, DC +20008 : 38.934866 : -77.06039 : Washington, DC +20009 : 38.919211 : -77.03777 : Washington, DC +20010 : 38.933311 : -77.02929 : Washington, DC +20011 : 38.95211 : -77.02097 : Washington, DC +20012 : 38.97808 : -77.02858 : Washington, DC +20013 : 38.893311 : -77.014647 : Washington, DC +20015 : 38.96516 : -77.06737 : Washington, DC +20016 : 38.94081 : -77.08723 : Washington, DC +20017 : 38.937478 : -76.99125 : Washington, DC +20018 : 38.928761 : -76.97523 : Washington, DC +20019 : 38.891445 : -76.93811 : Washington, DC +20020 : 38.863079 : -76.97138 : Washington, DC +20024 : 38.880112 : -77.02362 : Washington, DC +20026 : 38.893311 : -77.014647 : Washington, DC +20029 : 38.893311 : -77.014647 : Washington, DC +20030 : 38.893311 : -77.014647 : Washington, DC +20032 : 38.836145 : -77.00058 : Washington, DC +20033 : 38.893311 : -77.014647 : Washington, DC +20035 : 38.893311 : -77.014647 : Washington, DC +20036 : 38.906778 : -77.04148 : Washington, DC +20037 : 38.900394 : -77.05126 : Washington, DC +20038 : 38.893311 : -77.014647 : Washington, DC +20039 : 38.893311 : -77.014647 : Washington, DC +20040 : 38.893311 : -77.014647 : Washington, DC +20041 : 38.893311 : -77.014647 : Washington, DC +20042 : 38.893311 : -77.014647 : Washington, DC +20043 : 38.893311 : -77.014647 : Washington, DC +20044 : 38.893311 : -77.014647 : Washington, DC +20045 : 38.896599 : -77.0319 : Washington, DC +20046 : 38.893311 : -77.014647 : Washington, DC +20047 : 38.893311 : -77.014647 : Washington, DC +20049 : 38.895911 : -77.020998 : Washington, DC +20050 : 38.893311 : -77.014647 : Washington, DC +20051 : 38.893311 : -77.014647 : Washington, DC +20052 : 38.90014 : -77.047899 : Washington, DC +20053 : 38.893311 : -77.014647 : Washington, DC +20055 : 38.901633 : -77.020959 : Washington, DC +20056 : 38.893311 : -77.014647 : Washington, DC +20057 : 38.893311 : -77.014647 : Washington, DC +20058 : 38.893311 : -77.014647 : Washington, DC +20059 : 38.893311 : -77.014647 : Washington, DC +20060 : 38.918011 : -77.020398 : Washington, DC +20061 : 38.893311 : -77.014647 : Washington, DC +20062 : 38.900009 : -77.036948 : Washington, DC +20063 : 38.905317 : -77.046645 : Washington, DC +20064 : 38.933161 : -76.996348 : Washington, DC +20065 : 38.883412 : -77.028198 : Washington, DC +20066 : 38.893311 : -77.014647 : Washington, DC +20067 : 38.893311 : -77.014647 : Washington, DC +20068 : 38.893311 : -77.014647 : Washington, DC +20069 : 38.893311 : -77.014647 : Washington, DC +20070 : 38.893311 : -77.014647 : Washington, DC +20071 : 38.893311 : -77.014647 : Washington, DC +20073 : 38.897011 : -77.025098 : Washington, DC +20074 : 38.893311 : -77.014647 : Washington, DC +20075 : 38.893311 : -77.014647 : Washington, DC +20076 : 38.893311 : -77.014647 : Washington, DC +20077 : 38.893311 : -77.014647 : Washington, DC +20078 : 38.893311 : -77.014647 : Washington, DC +20080 : 38.893311 : -77.014647 : Washington, DC +20081 : 38.893311 : -77.014647 : Washington, DC +20082 : 38.893311 : -77.014647 : Washington, DC +20088 : 38.893311 : -77.014647 : Washington, DC +20090 : 38.893311 : -77.014647 : Washington, DC +20091 : 38.893311 : -77.014647 : Washington, DC +20097 : 38.893311 : -77.014647 : Washington, DC +20098 : 38.893311 : -77.014647 : Washington, DC +20099 : 38.893311 : -77.014647 : Washington, DC +20101 : 39.002125 : -77.442066 : Dulles, VA +20102 : 39.085309 : -77.645224 : Dulles, VA +20103 : 38.996242 : -77.449952 : Dulles, VA +20104 : 39.085309 : -77.645224 : Dulles, VA +20105 : 38.964054 : -77.60878 : Aldie, VA +20106 : 38.683116 : -77.99031 : Amissville, VA +20107 : 38.968321 : -77.533263 : Arcola, VA +20108 : 38.744685 : -77.487162 : Manassas, VA +20109 : 38.790202 : -77.51294 : Manassas, VA +20110 : 38.752269 : -77.47694 : Manassas, VA +20111 : 38.769697 : -77.44915 : Manassas, VA +20112 : 38.685117 : -77.44796 : Manassas, VA +20113 : 38.770864 : -77.449443 : Manassas, VA +20115 : 38.855848 : -77.88174 : Marshall, VA +20116 : 38.853723 : -77.860127 : Marshall, VA +20117 : 38.983902 : -77.74903 : Middleburg, VA +20118 : 38.953454 : -77.74996 : Middleburg, VA +20119 : 38.639283 : -77.63866 : Catlett, VA +20120 : 38.851221 : -77.44998 : Centreville, VA +20121 : 38.82571 : -77.43964 : Centreville, VA +20122 : 38.831813 : -77.288755 : Centreville, VA +20124 : 38.797424 : -77.39237 : Clifton, VA +20128 : 38.741639 : -77.977432 : Orlean, VA +20129 : 39.149032 : -77.61471 : Paeonian Springs, VA +20130 : 39.008532 : -77.94907 : Paris, VA +20131 : 39.057952 : -77.743423 : Philomont, VA +20132 : 39.146479 : -77.72798 : Purcellville, VA +20134 : 39.152187 : -77.702576 : Purcellville, VA +20135 : 39.080229 : -77.87192 : Bluemont, VA +20136 : 38.7475 : -77.56917 : Bristow, VA +20137 : 38.810629 : -77.7057 : Broad Run, VA +20138 : 38.630238 : -77.67295 : Calverton, VA +20139 : 38.651558 : -77.70361 : Casanova, VA +20140 : 38.918124 : -77.87243 : Rectortown, VA +20141 : 39.119917 : -77.77328 : Round Hill, VA +20142 : 39.130665 : -77.774665 : Round Hill, VA +20143 : 38.858613 : -77.56391 : Catharpin, VA +20144 : 38.918435 : -77.9255 : Delaplane, VA +20146 : 39.085309 : -77.645224 : Ashburn, VA +20147 : 39.041978 : -77.49064 : Ashburn, VA +20148 : 39.020637 : -77.52276 : Ashburn, VA +20149 : 39.085309 : -77.645224 : Ashburn, VA +20151 : 38.889111 : -77.4363 : Chantilly, VA +20152 : 38.90371 : -77.5038 : Chantilly, VA +20153 : 38.831813 : -77.288755 : Chantilly, VA +20155 : 38.803732 : -77.62404 : Gainesville, VA +20156 : 38.721912 : -77.466897 : Gainesville, VA +20158 : 39.137667 : -77.66186 : Hamilton, VA +20159 : 39.133855 : -77.662072 : Hamilton, VA +20160 : 39.098479 : -77.688338 : Lincoln, VA +20163 : 39.085309 : -77.645224 : Sterling, VA +20164 : 39.011909 : -77.39295 : Sterling, VA +20165 : 39.044855 : -77.38701 : Sterling, VA +20166 : 39.004276 : -77.43442 : Sterling, VA +20167 : 39.085309 : -77.645224 : Sterling, VA +20168 : 38.721912 : -77.466897 : Haymarket, VA +20169 : 38.860551 : -77.64947 : Haymarket, VA +20170 : 38.977109 : -77.38527 : Herndon, VA +20171 : 38.931479 : -77.40085 : Herndon, VA +20172 : 38.831813 : -77.288755 : Herndon, VA +20175 : 39.080037 : -77.58025 : Leesburg, VA +20176 : 39.138978 : -77.54519 : Leesburg, VA +20177 : 39.158095 : -77.666863 : Leesburg, VA +20178 : 39.072918 : -77.608014 : Leesburg, VA +20180 : 39.261906 : -77.64239 : Lovettsville, VA +20181 : 38.69835 : -77.57365 : Nokesville, VA +20182 : 38.700866 : -77.585708 : Nokesville, VA +20184 : 38.997904 : -77.87487 : Upperville, VA +20185 : 38.992978 : -77.879855 : Upperville, VA +20186 : 38.707135 : -77.8145 : Warrenton, VA +20187 : 38.735202 : -77.73717 : Warrenton, VA +20188 : 38.765619 : -77.820293 : Warrenton, VA +20190 : 38.959673 : -77.3462 : Reston, VA +20191 : 38.934709 : -77.3469 : Reston, VA +20192 : 38.831813 : -77.288755 : Herndon, VA +20193 : 38.831813 : -77.288755 : Reston, VA +20194 : 38.977362 : -77.34658 : Reston, VA +20195 : 38.831813 : -77.288755 : Reston, VA +20196 : 38.831813 : -77.288755 : Reston, VA +20197 : 39.191333 : -77.63118 : Waterford, VA +20198 : 38.889848 : -77.75907 : The Plains, VA +20199 : 39.085309 : -77.645224 : Dulles, VA +20201 : 38.893311 : -77.014647 : Washington, DC +20202 : 38.893311 : -77.014647 : Washington, DC +20203 : 38.905317 : -77.046645 : Washington, DC +20204 : 38.893311 : -77.014647 : Washington, DC +20206 : 38.893311 : -77.014647 : Washington, DC +20207 : 38.893311 : -77.014647 : Washington, DC +20208 : 38.896611 : -77.011748 : Washington, DC +20210 : 38.893311 : -77.014647 : Washington, DC +20211 : 38.893311 : -77.014647 : Washington, DC +20212 : 38.893311 : -77.014647 : Washington, DC +20213 : 38.893311 : -77.014647 : Washington, DC +20214 : 38.893311 : -77.014647 : Washington, DC +20215 : 38.893311 : -77.014647 : Washington, DC +20216 : 38.891911 : -77.014098 : Washington, DC +20217 : 38.893311 : -77.014647 : Washington, DC +20218 : 38.893311 : -77.014647 : Washington, DC +20219 : 38.893311 : -77.014647 : Washington, DC +20220 : 38.893311 : -77.014647 : Washington, DC +20221 : 38.893311 : -77.014647 : Washington, DC +20222 : 38.893311 : -77.014647 : Washington, DC +20223 : 38.893311 : -77.014647 : Washington, DC +20224 : 38.893311 : -77.014647 : Washington, DC +20226 : 38.893311 : -77.014647 : Washington, DC +20227 : 38.893311 : -77.014647 : Washington, DC +20228 : 38.893311 : -77.014647 : Washington, DC +20229 : 38.893311 : -77.014647 : Washington, DC +20230 : 38.893311 : -77.014647 : Washington, DC +20231 : 38.893311 : -77.014647 : Washington, DC +20232 : 38.900561 : -77.039099 : Washington, DC +20233 : 38.893311 : -77.014647 : Washington, DC +20235 : 38.915361 : -77.057199 : Washington, DC +20238 : 38.893311 : -77.014647 : Washington, DC +20239 : 38.893311 : -77.014647 : Washington, DC +20240 : 38.897143 : -77.040895 : Washington, DC +20241 : 38.893311 : -77.014647 : Washington, DC +20242 : 38.867812 : -77.028948 : Washington, DC +20244 : 38.893311 : -77.014647 : Washington, DC +20245 : 38.893311 : -77.014647 : Washington, DC +20250 : 38.887323 : -77.03274 : Washington, DC +20251 : 38.893311 : -77.014647 : Washington, DC +20254 : 38.893311 : -77.014647 : Washington, DC +20260 : 38.893311 : -77.014647 : Washington, DC +20261 : 38.893311 : -77.014647 : Washington, DC +20262 : 38.893311 : -77.014647 : Washington, DC +20265 : 38.893311 : -77.014647 : Washington, DC +20266 : 38.893311 : -77.014647 : Washington, DC +20268 : 38.893311 : -77.014647 : Washington, DC +20270 : 38.893311 : -77.014647 : Washington, DC +20277 : 38.893311 : -77.014647 : Washington, DC +20289 : 38.893311 : -77.014647 : Washington, DC +20299 : 38.893311 : -77.014647 : Washington, DC +20301 : 38.889357 : -77.031113 : Washington, DC +20303 : 38.893311 : -77.014647 : Washington, DC +20306 : 38.893311 : -77.014647 : Washington, DC +20307 : 38.893311 : -77.014647 : Washington, DC +20310 : 38.893311 : -77.014647 : Washington, DC +20314 : 38.893311 : -77.014647 : Washington, DC +20315 : 38.928861 : -77.017948 : Washington, DC +20317 : 38.931161 : -77.010298 : Washington, DC +20318 : 38.893311 : -77.014647 : Washington, DC +20319 : 38.866924 : -77.01424 : Washington, DC +20330 : 38.893311 : -77.014647 : Washington, DC +20332 : 38.829932 : -77.0176 : Washington, DC +20336 : 38.847768 : -77.01299 : Washington, DC +20337 : 38.893311 : -77.014647 : Washington, DC +20338 : 38.893311 : -77.014647 : Washington, DC +20340 : 38.893311 : -77.014647 : Washington, DC +20350 : 38.893311 : -77.014647 : Washington, DC +20370 : 38.893311 : -77.014647 : Washington, DC +20372 : 38.893311 : -77.014647 : Washington, DC +20373 : 38.893311 : -77.014647 : Washington, DC +20374 : 38.855522 : -77.002197 : Washington, DC +20375 : 38.822713 : -77.02322 : Washington, DC +20380 : 38.893311 : -77.014647 : Washington, DC +20388 : 38.872553 : -76.996605 : Washington, DC +20389 : 38.893311 : -77.014647 : Washington, DC +20390 : 38.893311 : -77.014647 : Washington, DC +20391 : 38.893311 : -77.014647 : Washington, DC +20392 : 38.893311 : -77.014647 : Washington, DC +20393 : 38.893311 : -77.014647 : Washington, DC +20394 : 38.893311 : -77.014647 : Washington, DC +20395 : 38.893311 : -77.014647 : Washington, DC +20398 : 38.893311 : -77.014647 : Washington, DC +20401 : 38.893311 : -77.014647 : Washington, DC +20402 : 38.893311 : -77.014647 : Washington, DC +20403 : 38.893311 : -77.014647 : Washington, DC +20404 : 38.899161 : -77.008948 : Washington, DC +20405 : 38.893311 : -77.014647 : Washington, DC +20406 : 38.893311 : -77.014647 : Washington, DC +20407 : 38.893311 : -77.014647 : Washington, DC +20408 : 38.893311 : -77.014647 : Washington, DC +20409 : 38.893311 : -77.014647 : Washington, DC +20410 : 38.893311 : -77.014647 : Washington, DC +20411 : 38.883962 : -77.022098 : Washington, DC +20412 : 38.895261 : -77.022098 : Washington, DC +20413 : 38.893311 : -77.014647 : Washington, DC +20414 : 38.883962 : -77.022098 : Washington, DC +20415 : 38.893311 : -77.014647 : Washington, DC +20416 : 38.893311 : -77.014647 : Washington, DC +20418 : 38.904253 : -77.05723 : Washington, DC +20419 : 38.893311 : -77.014647 : Washington, DC +20420 : 38.903461 : -77.027648 : Washington, DC +20421 : 38.893311 : -77.014647 : Washington, DC +20422 : 38.893311 : -77.014647 : Washington, DC +20423 : 38.893311 : -77.014647 : Washington, DC +20424 : 38.893311 : -77.014647 : Washington, DC +20425 : 38.893311 : -77.014647 : Washington, DC +20426 : 38.893311 : -77.014647 : Washington, DC +20427 : 38.893311 : -77.014647 : Washington, DC +20428 : 38.893311 : -77.014647 : Washington, DC +20429 : 38.893311 : -77.014647 : Washington, DC +20431 : 38.898618 : -77.042753 : Washington, DC +20433 : 38.899996 : -77.041976 : Washington, DC +20434 : 38.893311 : -77.014647 : Washington, DC +20435 : 38.899399 : -77.040319 : Washington, DC +20436 : 38.895927 : -77.021068 : Washington, DC +20437 : 38.902761 : -77.048499 : Washington, DC +20439 : 38.893311 : -77.014647 : Washington, DC +20440 : 38.913911 : -77.045349 : Washington, DC +20441 : 38.923861 : -77.036349 : Washington, DC +20442 : 38.895977 : -77.017668 : Washington, DC +20444 : 38.893311 : -77.014647 : Washington, DC +20447 : 38.884712 : -77.025198 : Washington, DC +20451 : 38.897711 : -77.044449 : Washington, DC +20453 : 38.893311 : -77.014647 : Washington, DC +20456 : 38.898111 : -77.040149 : Washington, DC +20460 : 38.876362 : -77.018798 : Washington, DC +20463 : 38.893311 : -77.014647 : Washington, DC +20468 : 38.893311 : -77.014647 : Washington, DC +20469 : 38.893311 : -77.014647 : Washington, DC +20470 : 38.893311 : -77.014647 : Washington, DC +20472 : 38.893311 : -77.014647 : Washington, DC +20500 : 38.894781 : -77.036122 : Washington, DC +20501 : 38.89872 : -77.036198 : Washington, DC +20502 : 38.89872 : -77.036198 : Washington, DC +20503 : 38.900711 : -77.043068 : Washington, DC +20504 : 38.893311 : -77.014647 : Washington, DC +20505 : 38.893311 : -77.014647 : Washington, DC +20506 : 38.899364 : -77.037668 : Washington, DC +20507 : 38.893311 : -77.014647 : Washington, DC +20508 : 38.893311 : -77.014647 : Washington, DC +20510 : 38.893311 : -77.014647 : Washington, DC +20515 : 38.893311 : -77.014647 : Washington, DC +20520 : 38.893217 : -77.048957 : Washington, DC +20521 : 38.893311 : -77.014647 : Washington, DC +20522 : 38.893217 : -77.048957 : Washington, DC +20523 : 38.89449 : -77.047807 : Washington, DC +20524 : 38.902414 : -77.032601 : Washington, DC +20525 : 38.893311 : -77.014647 : Washington, DC +20526 : 38.902217 : -77.043738 : Washington, DC +20527 : 38.902933 : -77.036091 : Washington, DC +20530 : 38.897561 : -77.026998 : Washington, DC +20531 : 38.893761 : -77.021848 : Washington, DC +20532 : 38.904486 : -77.017291 : Washington, DC +20533 : 38.901102 : -77.032591 : Washington, DC +20534 : 38.894075 : -77.01254 : Washington, DC +20535 : 38.894097 : -77.025133 : Washington, DC +20536 : 38.901211 : -77.016948 : Washington, DC +20537 : 38.894097 : -77.025133 : Washington, DC +20538 : 38.893311 : -77.014647 : Washington, DC +20539 : 38.893311 : -77.014647 : Washington, DC +20540 : 38.887405 : -77.004663 : Washington, DC +20541 : 38.887405 : -77.004663 : Washington, DC +20542 : 38.940761 : -77.028348 : Washington, DC +20543 : 38.893311 : -77.014647 : Washington, DC +20544 : 38.893311 : -77.014647 : Washington, DC +20546 : 38.890976 : -77.021092 : Washington, DC +20547 : 38.893311 : -77.014647 : Washington, DC +20548 : 38.898111 : -77.017698 : Washington, DC +20549 : 38.893311 : -77.014647 : Washington, DC +20550 : 38.893311 : -77.014647 : Washington, DC +20551 : 38.891995 : -77.045219 : Washington, DC +20552 : 38.893311 : -77.014647 : Washington, DC +20553 : 38.887333 : -77.023118 : Washington, DC +20554 : 38.893311 : -77.014647 : Washington, DC +20555 : 38.900011 : -77.040149 : Washington, DC +20557 : 38.887405 : -77.004663 : Washington, DC +20558 : 38.893311 : -77.014647 : Washington, DC +20559 : 38.887405 : -77.004663 : Washington, DC +20560 : 38.893311 : -77.014647 : Washington, DC +20565 : 38.891941 : -77.018853 : Washington, DC +20566 : 38.897074 : -77.05535 : Washington, DC +20570 : 38.899061 : -77.040149 : Washington, DC +20571 : 38.900559 : -77.034554 : Washington, DC +20572 : 38.893311 : -77.014647 : Washington, DC +20573 : 38.893311 : -77.014647 : Washington, DC +20575 : 38.893311 : -77.014647 : Washington, DC +20576 : 38.893662 : -77.023592 : Washington, DC +20577 : 38.900758 : -77.034455 : Washington, DC +20578 : 38.893311 : -77.014647 : Washington, DC +20579 : 38.904311 : -77.044649 : Washington, DC +20580 : 38.893311 : -77.014647 : Washington, DC +20581 : 38.893311 : -77.014647 : Washington, DC +20585 : 38.893311 : -77.014647 : Washington, DC +20586 : 38.902211 : -77.047399 : Washington, DC +20590 : 38.883962 : -77.022098 : Washington, DC +20591 : 38.893311 : -77.014647 : Washington, DC +20593 : 38.893311 : -77.014647 : Washington, DC +20594 : 38.88494 : -77.018372 : Washington, DC +20597 : 38.893311 : -77.014647 : Washington, DC +20599 : 38.893311 : -77.014647 : Washington, DC +20601 : 38.634306 : -76.86008 : Waldorf, MD +20602 : 38.598185 : -76.90381 : Waldorf, MD +20603 : 38.631542 : -76.95723 : Waldorf, MD +20604 : 38.509548 : -76.981651 : Waldorf, MD +20606 : 38.250996 : -76.73974 : Abell, MD +20607 : 38.672216 : -77.01807 : Accokeek, MD +20608 : 38.564649 : -76.69229 : Aquasco, MD +20609 : 38.268558 : -76.75084 : Avenue, MD +20610 : 38.444727 : -76.533026 : Barstow, MD +20611 : 38.463289 : -76.9858 : Bel Alton, MD +20612 : 38.511147 : -76.67864 : Benedict, MD +20613 : 38.676968 : -76.82215 : Brandywine, MD +20615 : 38.416782 : -76.54814 : Broomes Island, MD +20616 : 38.639117 : -77.08301 : Bryans Road, MD +20617 : 38.55223 : -76.84477 : Bryantown, MD +20618 : 38.270124 : -76.79155 : Bushwood, MD +20619 : 38.303103 : -76.52231 : California, MD +20620 : 38.226406 : -76.51759 : Callaway, MD +20621 : 38.330254 : -76.80782 : Chaptico, MD +20622 : 38.458322 : -76.83947 : Charlotte Hall, MD +20623 : 38.748872 : -76.83075 : Cheltenham, MD +20624 : 38.330096 : -76.73113 : Clements, MD +20625 : 38.262468 : -76.84951 : Cobb Island, MD +20626 : 38.229113 : -76.75829 : Coltons Point, MD +20627 : 38.276828 : -76.703971 : Compton, MD +20628 : 38.135718 : -76.33865 : Dameron, MD +20629 : 38.334336 : -76.4534 : Dowell, MD +20630 : 38.171834 : -76.47437 : Drayden, MD +20632 : 38.421787 : -76.96182 : Faulkner, MD +20634 : 38.260846 : -76.4985 : Great Mills, MD +20635 : 38.312112 : -76.607676 : Helen, MD +20636 : 38.349517 : -76.54839 : Hollywood, MD +20637 : 38.523408 : -76.75435 : Hughesville, MD +20639 : 38.601648 : -76.60434 : Huntingtown, MD +20640 : 38.593095 : -77.15212 : Indian Head, MD +20643 : 38.503876 : -77.148283 : Ironsides, MD +20645 : 38.30126 : -76.91539 : Issue, MD +20646 : 38.528103 : -76.98063 : La Plata, MD +20650 : 38.269283 : -76.64336 : Leonardtown, MD +20653 : 38.234838 : -76.44889 : Lexington Park, MD +20656 : 38.359274 : -76.683325 : Loveville, MD +20657 : 38.370044 : -76.43328 : Lusby, MD +20658 : 38.567465 : -77.16779 : Marbury, MD +20659 : 38.427328 : -76.72826 : Mechanicsville, MD +20660 : 38.363994 : -76.694102 : Morganza, MD +20661 : 38.343591 : -76.884559 : Mount Victoria, MD +20662 : 38.42029 : -77.19479 : Nanjemoy, MD +20664 : 38.343729 : -76.92493 : Newburg, MD +20667 : 38.2176 : -76.4382 : Park Hall, MD +20670 : 38.268636 : -76.42383 : Patuxent River, MD +20674 : 38.127843 : -76.49055 : Piney Point, MD +20675 : 38.58215 : -77.01739 : Pomfret, MD +20676 : 38.489163 : -76.52937 : Port Republic, MD +20677 : 38.501493 : -77.03169 : Port Tobacco, MD +20678 : 38.535116 : -76.58432 : Prince Frederick, MD +20680 : 38.112419 : -76.36964 : Ridge, MD +20682 : 38.283551 : -76.848093 : Rock Point, MD +20684 : 38.151666 : -76.40512 : Saint Inigoes, MD +20685 : 38.448869 : -76.49776 : Saint Leonard, MD +20686 : 38.188796 : -76.420738 : Saint Marys City, MD +20687 : 38.064947 : -76.3444 : Scotland, MD +20688 : 38.339176 : -76.46568 : Solomons, MD +20689 : 38.668765 : -76.58648 : Sunderland, MD +20690 : 38.165432 : -76.53284 : Tall Timbers, MD +20692 : 38.179764 : -76.50185 : Valley Lee, MD +20693 : 38.451267 : -77.08955 : Welcome, MD +20695 : 38.593202 : -76.97063 : White Plains, MD +20697 : 38.833563 : -76.877743 : Southern Md Facility, MD +20701 : 39.127708 : -76.7923 : Annapolis Junction, MD +20703 : 38.833563 : -76.877743 : Lanham, MD +20704 : 38.833563 : -76.877743 : Beltsville, MD +20705 : 39.044509 : -76.9133 : Beltsville, MD +20706 : 38.964093 : -76.85331 : Lanham, MD +20707 : 39.098475 : -76.86571 : Laurel, MD +20708 : 39.0632 : -76.84103 : Laurel, MD +20709 : 38.833563 : -76.877743 : Laurel, MD +20710 : 38.941428 : -76.93005 : Bladensburg, MD +20711 : 38.80884 : -76.67236 : Lothian, MD +20712 : 38.941594 : -76.96369 : Mount Rainier, MD +20714 : 38.711264 : -76.53637 : North Beach, MD +20715 : 38.979413 : -76.74382 : Bowie, MD +20716 : 38.93193 : -76.72457 : Bowie, MD +20717 : 38.833563 : -76.877743 : Bowie, MD +20718 : 38.833563 : -76.877743 : Bowie, MD +20719 : 38.833563 : -76.877743 : Bowie, MD +20720 : 38.986699 : -76.78612 : Bowie, MD +20721 : 38.917506 : -76.79404 : Bowie, MD +20722 : 38.939716 : -76.95203 : Brentwood, MD +20723 : 39.134062 : -76.8579 : Laurel, MD +20724 : 39.101646 : -76.80334 : Laurel, MD +20725 : 38.833563 : -76.877743 : Laurel, MD +20726 : 38.833563 : -76.877743 : Laurel, MD +20731 : 38.833563 : -76.877743 : Capitol Heights, MD +20732 : 38.670858 : -76.53652 : Chesapeake Beach, MD +20733 : 38.801516 : -76.52469 : Churchton, MD +20735 : 38.753264 : -76.89913 : Clinton, MD +20736 : 38.694074 : -76.61793 : Owings, MD +20737 : 38.96146 : -76.92056 : Riverdale, MD +20738 : 38.833563 : -76.877743 : Riverdale, MD +20740 : 38.99756 : -76.92577 : College Park, MD +20741 : 38.833563 : -76.877743 : College Park, MD +20742 : 38.833563 : -76.877743 : College Park, MD +20743 : 38.886812 : -76.90645 : Capitol Heights, MD +20744 : 38.756347 : -76.99034 : Fort Washington, MD +20745 : 38.80758 : -76.99193 : Oxon Hill, MD +20746 : 38.839663 : -76.91478 : Suitland, MD +20747 : 38.855479 : -76.88621 : District Heights, MD +20748 : 38.822163 : -76.93974 : Temple Hills, MD +20749 : 38.833563 : -76.877743 : Fort Washington, MD +20750 : 38.833563 : -76.877743 : Oxon Hill, MD +20751 : 38.786949 : -76.55335 : Deale, MD +20752 : 38.833563 : -76.877743 : Suitland, MD +20753 : 38.833563 : -76.877743 : District Heights, MD +20754 : 38.746123 : -76.65117 : Dunkirk, MD +20755 : 39.105015 : -76.74126 : Fort George G Meade, MD +20757 : 38.833563 : -76.877743 : Temple Hills, MD +20758 : 38.731822 : -76.59378 : Friendship, MD +20759 : 39.147257 : -76.93799 : Fulton, MD +20762 : 38.820546 : -76.88334 : Andrews Air Force Base, MD +20763 : 39.137307 : -76.82335 : Savage, MD +20764 : 38.839015 : -76.5114 : Shady Side, MD +20765 : 38.844097 : -76.54795 : Galesville, MD +20768 : 38.833563 : -76.877743 : Greenbelt, MD +20769 : 38.984107 : -76.81544 : Glenn Dale, MD +20770 : 39.00391 : -76.88005 : Greenbelt, MD +20771 : 38.833563 : -76.877743 : Greenbelt, MD +20772 : 38.792281 : -76.781 : Upper Marlboro, MD +20773 : 38.833563 : -76.877743 : Upper Marlboro, MD +20774 : 38.892456 : -76.80685 : Upper Marlboro, MD +20775 : 38.833563 : -76.877743 : Upper Marlboro, MD +20776 : 38.86313 : -76.61917 : Harwood, MD +20777 : 39.173104 : -76.95779 : Highland, MD +20778 : 38.832265 : -76.55604 : West River, MD +20779 : 38.759196 : -76.57076 : Tracys Landing, MD +20781 : 38.946746 : -76.9356 : Hyattsville, MD +20782 : 38.96401 : -76.96139 : Hyattsville, MD +20783 : 38.98941 : -76.97294 : Hyattsville, MD +20784 : 38.950528 : -76.8888 : Hyattsville, MD +20785 : 38.920111 : -76.889 : Hyattsville, MD +20787 : 38.98707 : -76.982405 : Hyattsville, MD +20788 : 38.969434 : -76.950913 : Hyattsville, MD +20790 : 38.833563 : -76.877743 : Capitol Heights, MD +20791 : 38.833563 : -76.877743 : Capitol Heights, MD +20794 : 39.144807 : -76.78767 : Jessup, MD +20797 : 38.833563 : -76.877743 : Southern Md Facility, MD +20799 : 38.833563 : -76.877743 : Capitol Heights, MD +20812 : 38.97026 : -77.1442 : Glen Echo, MD +20813 : 39.143979 : -77.207617 : Bethesda, MD +20814 : 38.999759 : -77.10185 : Bethesda, MD +20815 : 38.97986 : -77.08079 : Chevy Chase, MD +20816 : 38.958377 : -77.11425 : Bethesda, MD +20817 : 38.996842 : -77.13519 : Bethesda, MD +20818 : 38.97511 : -77.15928 : Cabin John, MD +20824 : 39.143979 : -77.207617 : Bethesda, MD +20825 : 39.143979 : -77.207617 : Chevy Chase, MD +20827 : 39.143979 : -77.207617 : Bethesda, MD +20830 : 39.15522 : -77.066745 : Olney, MD +20831 : 38.698833 : -76.536276 : Chesapeake Beach, MD +20832 : 39.155449 : -77.07487 : Olney, MD +20833 : 39.183221 : -77.05917 : Brookeville, MD +20837 : 39.128854 : -77.40763 : Poolesville, MD +20838 : 39.221975 : -77.37781 : Barnesville, MD +20839 : 39.1672 : -77.41411 : Beallsville, MD +20841 : 39.194497 : -77.321 : Boyds, MD +20842 : 39.22086 : -77.41699 : Dickerson, MD +20847 : 39.143979 : -77.207617 : Rockville, MD +20848 : 39.143979 : -77.207617 : Rockville, MD +20849 : 39.143979 : -77.207617 : Rockville, MD +20850 : 39.093408 : -77.1718 : Rockville, MD +20851 : 39.076608 : -77.1232 : Rockville, MD +20852 : 39.0509 : -77.12261 : Rockville, MD +20853 : 39.087409 : -77.0944 : Rockville, MD +20854 : 39.035028 : -77.19995 : Potomac, MD +20855 : 39.131705 : -77.14981 : Derwood, MD +20857 : 39.143979 : -77.207617 : Rockville, MD +20859 : 39.143979 : -77.207617 : Potomac, MD +20860 : 39.15283 : -77.03494 : Sandy Spring, MD +20861 : 39.14827 : -76.99859 : Ashton, MD +20862 : 39.184019 : -77.01708 : Brinklow, MD +20866 : 39.097243 : -76.93467 : Burtonsville, MD +20868 : 39.127028 : -76.96372 : Spencerville, MD +20871 : 39.262598 : -77.29125 : Clarksburg, MD +20872 : 39.284185 : -77.22752 : Damascus, MD +20874 : 39.169859 : -77.27564 : Germantown, MD +20875 : 39.143979 : -77.207617 : Germantown, MD +20876 : 39.191769 : -77.24329 : Germantown, MD +20877 : 39.13975 : -77.18568 : Gaithersburg, MD +20878 : 39.11755 : -77.23548 : Gaithersburg, MD +20879 : 39.168656 : -77.18716 : Gaithersburg, MD +20880 : 39.139535 : -77.17592 : Washington Grove, MD +20882 : 39.229652 : -77.1594 : Gaithersburg, MD +20884 : 39.143979 : -77.207617 : Gaithersburg, MD +20885 : 39.187421 : -77.202798 : Gaithersburg, MD +20886 : 39.178737 : -77.19564 : Montgomery Village, MD +20889 : 39.143979 : -77.207617 : Bethesda, MD +20891 : 39.143979 : -77.207617 : Kensington, MD +20892 : 39.002375 : -77.10341 : Bethesda, MD +20894 : 39.143979 : -77.207617 : Bethesda, MD +20895 : 39.027259 : -77.07745 : Kensington, MD +20896 : 39.035276 : -77.09263 : Garrett Park, MD +20897 : 39.143979 : -77.207617 : Suburb Maryland Fac, MD +20898 : 39.143979 : -77.207617 : Gaithersburg, MD +20899 : 39.140324 : -77.221984 : Gaithersburg, MD +20901 : 39.020359 : -77.0115 : Silver Spring, MD +20902 : 39.040759 : -77.04876 : Silver Spring, MD +20903 : 39.014009 : -76.98199 : Silver Spring, MD +20904 : 39.069108 : -76.97834 : Silver Spring, MD +20905 : 39.104509 : -76.99374 : Silver Spring, MD +20906 : 39.07737 : -77.06433 : Silver Spring, MD +20907 : 39.143979 : -77.207617 : Silver Spring, MD +20908 : 39.143979 : -77.207617 : Silver Spring, MD +20910 : 38.999992 : -77.03404 : Silver Spring, MD +20911 : 39.143979 : -77.207617 : Silver Spring, MD +20912 : 38.98236 : -77.00044 : Takoma Park, MD +20913 : 38.833563 : -76.877743 : Takoma Park, MD +20914 : 39.143979 : -77.207617 : Silver Spring, MD +20915 : 39.143979 : -77.207617 : Silver Spring, MD +20916 : 39.143979 : -77.207617 : Silver Spring, MD +20918 : 39.143979 : -77.207617 : Silver Spring, MD +20997 : 39.143979 : -77.207617 : Silver Spring, MD +21001 : 39.508177 : -76.18066 : Aberdeen, MD +21002 : 39.487519 : -76.199871 : Perryman, MD +21004 : 39.539458 : -76.326363 : Bel Air South, MD +21005 : 39.473451 : -76.14083 : Aberdeen Proving Ground, MD +21009 : 39.473899 : -76.2983 : Abingdon, MD +21010 : 39.344808 : -76.27313 : Gunpowder, MD +21012 : 39.049377 : -76.49892 : Arnold, MD +21013 : 39.508739 : -76.49191 : Baldwin, MD +21014 : 39.536057 : -76.34957 : Bel Air, MD +21015 : 39.532212 : -76.30754 : Bel Air, MD +21017 : 39.476018 : -76.24355 : Belcamp, MD +21018 : 39.509276 : -76.385083 : Benson, MD +21020 : 39.521276 : -76.804699 : Boring, MD +21022 : 39.397861 : -76.671742 : Brooklandville, MD +21023 : 39.532955 : -76.743196 : Butler, MD +21027 : 39.438964 : -76.592139 : Chase, MD +21028 : 39.559374 : -76.24757 : Churchville, MD +21029 : 39.198816 : -76.9367 : Clarksville, MD +21030 : 39.477506 : -76.64114 : Cockeysville, MD +21031 : 39.487938 : -76.65938 : Hunt Valley, MD +21032 : 39.04366 : -76.58805 : Crownsville, MD +21034 : 39.638039 : -76.22398 : Darlington, MD +21035 : 38.931312 : -76.65248 : Davidsonville, MD +21036 : 39.24367 : -76.99782 : Dayton, MD +21037 : 38.921763 : -76.5373 : Edgewater, MD +21040 : 39.427058 : -76.30183 : Edgewood, MD +21041 : 39.236405 : -76.941902 : Ellicott City, MD +21042 : 39.276305 : -76.86082 : Ellicott City, MD +21043 : 39.254356 : -76.8006 : Ellicott City, MD +21044 : 39.21536 : -76.87823 : Columbia, MD +21045 : 39.207523 : -76.82527 : Columbia, MD +21046 : 39.175004 : -76.85319 : Columbia, MD +21047 : 39.521572 : -76.4258 : Fallston, MD +21048 : 39.506853 : -76.90953 : Finksburg, MD +21050 : 39.574606 : -76.39022 : Forest Hill, MD +21051 : 39.47044 : -76.44898 : Fork, MD +21052 : 39.206108 : -76.44642 : Fort Howard, MD +21053 : 39.70172 : -76.71236 : Freeland, MD +21054 : 39.040159 : -76.68408 : Gambrills, MD +21055 : 39.438964 : -76.592139 : Garrison, MD +21056 : 39.07566 : -76.4286 : Gibson Island, MD +21057 : 39.454943 : -76.49718 : Glen Arm, MD +21060 : 39.162225 : -76.59444 : Glen Burnie, MD +21061 : 39.164158 : -76.6306 : Glen Burnie, MD +21062 : 38.974203 : -76.594942 : Glen Burnie, MD +21071 : 39.472604 : -76.81424 : Glyndon, MD +21074 : 39.613293 : -76.84802 : Hampstead, MD +21075 : 39.197119 : -76.75178 : Elkridge, MD +21076 : 39.167708 : -76.71706 : Hanover, MD +21077 : 39.157958 : -76.69854 : Harmans, MD +21078 : 39.554644 : -76.11118 : Havre De Grace, MD +21080 : 39.534703 : -77.049302 : Henryton, MD +21082 : 39.470274 : -76.45964 : Hydes, MD +21084 : 39.610405 : -76.45569 : Jarrettsville, MD +21085 : 39.432273 : -76.35578 : Joppa, MD +21087 : 39.444457 : -76.40817 : Kingsville, MD +21088 : 39.534703 : -77.049302 : Lineboro, MD +21090 : 39.209529 : -76.66177 : Linthicum Heights, MD +21092 : 39.438964 : -76.592139 : Long Green, MD +21093 : 39.435789 : -76.63614 : Lutherville Timonium, MD +21094 : 39.438964 : -76.592139 : Lutherville Timonium, MD +21098 : 38.974203 : -76.594942 : Hanover, MD +21102 : 39.685569 : -76.8505 : Manchester, MD +21104 : 39.359754 : -76.91103 : Marriottsville, MD +21105 : 39.712453 : -76.65069 : Maryland Line, MD +21106 : 38.971475 : -76.580934 : Mayo, MD +21108 : 39.099957 : -76.62114 : Millersville, MD +21111 : 39.575605 : -76.59123 : Monkton, MD +21113 : 39.079902 : -76.70867 : Odenton, MD +21114 : 39.012134 : -76.68561 : Crofton, MD +21117 : 39.419105 : -76.78388 : Owings Mills, MD +21120 : 39.656737 : -76.66001 : Parkton, MD +21122 : 39.125776 : -76.51863 : Pasadena, MD +21123 : 38.974203 : -76.594942 : Pasadena, MD +21128 : 39.400296 : -76.44639 : Perry Hall, MD +21130 : 39.466859 : -76.20106 : Perryman, MD +21131 : 39.504706 : -76.57112 : Phoenix, MD +21132 : 39.696621 : -76.42781 : Pylesville, MD +21133 : 39.376372 : -76.79916 : Randallstown, MD +21136 : 39.470603 : -76.81417 : Reisterstown, MD +21139 : 39.438964 : -76.592139 : Riderwood, MD +21140 : 38.952412 : -76.58205 : Riva, MD +21144 : 39.130224 : -76.69142 : Severn, MD +21146 : 39.079059 : -76.55784 : Severna Park, MD +21150 : 39.236405 : -76.941902 : Simpsonville, MD +21152 : 39.543905 : -76.67 : Sparks Glencoe, MD +21153 : 39.412905 : -76.730345 : Stevenson, MD +21154 : 39.661905 : -76.35166 : Street, MD +21155 : 39.566103 : -76.82125 : Upperco, MD +21156 : 39.439935 : -76.39363 : Upper Falls, MD +21157 : 39.563901 : -76.98926 : Westminster, MD +21158 : 39.624705 : -77.03086 : Westminster, MD +21160 : 39.707377 : -76.31864 : Whiteford, MD +21161 : 39.659671 : -76.56859 : White Hall, MD +21162 : 39.387307 : -76.41236 : White Marsh, MD +21163 : 39.336855 : -76.84947 : Woodstock, MD +21176 : 39.540072 : -77.115045 : New Windsor, MD +21201 : 39.295306 : -76.62118 : Baltimore, MD +21202 : 39.296507 : -76.60693 : Baltimore, MD +21203 : 39.284707 : -76.620489 : Baltimore, MD +21204 : 39.405606 : -76.62648 : Towson, MD +21205 : 39.301157 : -76.57478 : Baltimore, MD +21206 : 39.341107 : -76.54085 : Baltimore, MD +21207 : 39.324406 : -76.7176 : Gwynn Oak, MD +21208 : 39.376879 : -76.7287 : Pikesville, MD +21209 : 39.368974 : -76.66904 : Baltimore, MD +21210 : 39.352496 : -76.63452 : Baltimore, MD +21211 : 39.328957 : -76.63361 : Baltimore, MD +21212 : 39.363456 : -76.61142 : Baltimore, MD +21213 : 39.311474 : -76.58283 : Baltimore, MD +21214 : 39.351857 : -76.56399 : Baltimore, MD +21215 : 39.345456 : -76.68038 : Baltimore, MD +21216 : 39.310006 : -76.67029 : Baltimore, MD +21217 : 39.306306 : -76.63786 : Baltimore, MD +21218 : 39.325956 : -76.60602 : Baltimore, MD +21219 : 39.229258 : -76.44898 : Sparrows Point, MD +21220 : 39.337798 : -76.41533 : Middle River, MD +21221 : 39.307737 : -76.45171 : Essex, MD +21222 : 39.263162 : -76.5082 : Dundalk, MD +21223 : 39.286556 : -76.64644 : Baltimore, MD +21224 : 39.284607 : -76.55696 : Baltimore, MD +21225 : 39.229507 : -76.61203 : Brooklyn, MD +21226 : 39.211758 : -76.56623 : Curtis Bay, MD +21227 : 39.241957 : -76.67712 : Halethorpe, MD +21228 : 39.278056 : -76.74002 : Catonsville, MD +21229 : 39.284856 : -76.6878 : Baltimore, MD +21230 : 39.273107 : -76.62613 : Baltimore, MD +21231 : 39.288607 : -76.59116 : Baltimore, MD +21233 : 39.284707 : -76.620489 : Baltimore, MD +21234 : 39.385006 : -76.54177 : Parkville, MD +21235 : 39.284707 : -76.620489 : Baltimore, MD +21236 : 39.389457 : -76.48709 : Nottingham, MD +21237 : 39.33224 : -76.50365 : Rosedale, MD +21239 : 39.36225 : -76.58812 : Baltimore, MD +21240 : 39.142793 : -76.651589 : Baltimore, MD +21241 : 39.284707 : -76.620489 : Baltimore, MD +21244 : 39.338156 : -76.76438 : Windsor Mill, MD +21250 : 39.258226 : -76.713149 : Baltimore, MD +21251 : 39.438964 : -76.592139 : Baltimore, MD +21252 : 39.388799 : -76.613325 : Baltimore, MD +21260 : 39.284707 : -76.620489 : Baltimore, MD +21263 : 39.284707 : -76.620489 : Baltimore, MD +21264 : 39.284707 : -76.620489 : Baltimore, MD +21265 : 39.284707 : -76.620489 : Baltimore, MD +21268 : 39.284707 : -76.620489 : Baltimore, MD +21270 : 39.284707 : -76.620489 : Baltimore, MD +21273 : 39.284707 : -76.620489 : Baltimore, MD +21274 : 39.284707 : -76.620489 : Baltimore, MD +21275 : 39.284707 : -76.620489 : Baltimore, MD +21278 : 39.284707 : -76.620489 : Baltimore, MD +21279 : 39.284707 : -76.620489 : Baltimore, MD +21280 : 39.284707 : -76.620489 : Baltimore, MD +21281 : 39.284707 : -76.620489 : Baltimore, MD +21282 : 39.438964 : -76.592139 : Baltimore, MD +21283 : 39.284707 : -76.620489 : Baltimore, MD +21284 : 39.438964 : -76.592139 : Baltimore, MD +21285 : 39.438964 : -76.592139 : Baltimore, MD +21286 : 39.399639 : -76.58418 : Towson, MD +21287 : 39.297457 : -76.592738 : Baltimore, MD +21288 : 39.284707 : -76.620489 : Baltimore, MD +21289 : 39.284707 : -76.620489 : Baltimore, MD +21290 : 39.293256 : -76.623839 : Baltimore, MD +21297 : 39.284707 : -76.620489 : Baltimore, MD +21298 : 39.284707 : -76.620489 : Baltimore, MD +21401 : 38.997511 : -76.49803 : Annapolis, MD +21402 : 38.988506 : -76.47229 : Annapolis, MD +21403 : 38.946462 : -76.48358 : Annapolis, MD +21404 : 38.974203 : -76.594942 : Annapolis, MD +21405 : 39.02801 : -76.54183 : Annapolis, MD +21411 : 38.974203 : -76.594942 : Annapolis, MD +21412 : 38.974203 : -76.594942 : Annapolis, MD +21501 : 39.580691 : -78.690593 : Cumberland, MD +21502 : 39.646587 : -78.77398 : Cumberland, MD +21503 : 39.580691 : -78.690593 : Cumberland, MD +21504 : 39.580691 : -78.690593 : Cumberland, MD +21505 : 39.594043 : -78.843432 : Cumberland, MD +21520 : 39.629925 : -79.31377 : Accident, MD +21521 : 39.535862 : -79.0194 : Barton, MD +21522 : 39.614779 : -79.24494 : Bittinger, MD +21523 : 39.47965 : -79.07263 : Bloomington, MD +21524 : 39.698332 : -78.78741 : Corriganville, MD +21528 : 39.652187 : -78.90123 : Eckhart Mines, MD +21529 : 39.718905 : -78.77685 : Ellerslie, MD +21530 : 39.697548 : -78.53893 : Flintstone, MD +21531 : 39.662458 : -79.416 : Friendsville, MD +21532 : 39.64612 : -78.93778 : Frostburg, MD +21536 : 39.675393 : -79.17045 : Grantsville, MD +21538 : 39.395674 : -79.20096 : Kitzmiller, MD +21539 : 39.580942 : -78.99073 : Lonaconing, MD +21540 : 39.475166 : -79.05968 : Luke, MD +21541 : 39.557364 : -79.35999 : McHenry, MD +21542 : 39.589842 : -78.94877 : Midland, MD +21543 : 39.63664 : -78.95027 : Midlothian, MD +21545 : 39.699489 : -78.86961 : Mount Savage, MD +21550 : 39.409861 : -79.39015 : Oakland, MD +21555 : 39.579649 : -78.55826 : Oldtown, MD +21556 : 39.572452 : -78.843962 : Pinto, MD +21557 : 39.509856 : -78.92329 : Rawlings, MD +21560 : 39.564946 : -78.711 : Spring Gap, MD +21561 : 39.484412 : -79.20856 : Swanton, MD +21562 : 39.488146 : -79.03506 : Westernport, MD +21601 : 38.777863 : -76.0782 : Easton, MD +21606 : 38.758525 : -76.180166 : Easton, MD +21607 : 39.142967 : -75.86144 : Barclay, MD +21609 : 38.740562 : -75.958683 : Bethlehem, MD +21610 : 39.366193 : -76.0623 : Betterton, MD +21612 : 38.747964 : -76.27279 : Bozman, MD +21613 : 38.545285 : -76.09118 : Cambridge, MD +21617 : 39.049697 : -76.05309 : Centreville, MD +21619 : 38.949536 : -76.28063 : Chester, MD +21620 : 39.215278 : -76.09726 : Chestertown, MD +21622 : 38.393669 : -76.16806 : Church Creek, MD +21623 : 39.123235 : -75.96707 : Church Hill, MD +21624 : 38.836142 : -76.2702 : Claiborne, MD +21625 : 38.882856 : -75.98842 : Cordova, MD +21626 : 38.344103 : -76.10098 : Crapo, MD +21627 : 38.17656 : -76.04321 : Crocheron, MD +21628 : 39.239132 : -75.9243 : Crumpton, MD +21629 : 38.871895 : -75.8273 : Denton, MD +21631 : 38.589383 : -75.94218 : East New Market, MD +21632 : 38.705731 : -75.77488 : Federalsburg, MD +21634 : 38.288409 : -76.20146 : Fishing Creek, MD +21635 : 39.349536 : -75.85332 : Galena, MD +21636 : 39.026033 : -75.7936 : Goldsboro, MD +21638 : 38.954613 : -76.21257 : Grasonville, MD +21639 : 38.971566 : -75.80107 : Greensboro, MD +21640 : 39.07733 : -75.79992 : Henderson, MD +21641 : 38.920583 : -75.9408 : Hillsboro, MD +21643 : 38.641666 : -75.86418 : Hurlock, MD +21644 : 39.094126 : -75.87294 : Ingleside, MD +21645 : 39.328784 : -75.9666 : Kennedyville, MD +21647 : 38.80503 : -76.29105 : Mcdaniel, MD +21648 : 38.485297 : -76.24057 : Madison, MD +21649 : 39.122683 : -75.76427 : Marydel, MD +21650 : 39.311429 : -75.80806 : Massey, MD +21651 : 39.254014 : -75.86239 : Millington, MD +21652 : 38.795102 : -76.152762 : Neavitt, MD +21653 : 38.750959 : -76.17804 : Newcomb, MD +21654 : 38.690831 : -76.14666 : Oxford, MD +21655 : 38.747216 : -75.91459 : Preston, MD +21656 : 39.034637 : -76.092127 : Price, MD +21657 : 38.945143 : -75.96915 : Queen Anne, MD +21658 : 38.963566 : -76.13939 : Queenstown, MD +21659 : 38.57526 : -75.78177 : Rhodesdale, MD +21660 : 38.954731 : -75.88459 : Ridgely, MD +21661 : 39.137775 : -76.22765 : Rock Hall, MD +21662 : 38.709254 : -76.2086 : Royal Oak, MD +21663 : 38.783264 : -76.22256 : Saint Michaels, MD +21664 : 38.609886 : -75.949 : Secretary, MD +21665 : 38.754785 : -76.32474 : Sherwood, MD +21666 : 38.942464 : -76.34124 : Stevensville, MD +21667 : 39.335017 : -76.05365 : Still Pond, MD +21668 : 39.201203 : -75.85175 : Sudlersville, MD +21669 : 38.458374 : -76.30203 : Taylors Island, MD +21670 : 38.88927 : -75.861191 : Templeville, MD +21671 : 38.708795 : -76.33501 : Tilghman, MD +21672 : 38.277014 : -76.06229 : Toddville, MD +21673 : 38.662533 : -76.07009 : Trappe, MD +21675 : 38.286828 : -76.08221 : Wingate, MD +21676 : 38.796477 : -76.30437 : Wittman, MD +21677 : 38.510494 : -76.18219 : Woolford, MD +21678 : 39.295736 : -76.09974 : Worton, MD +21679 : 38.925358 : -76.05652 : Wye Mills, MD +21681 : 38.88927 : -75.861191 : Ridgely, MD +21682 : 38.88927 : -75.861191 : Ridgely, MD +21683 : 38.88927 : -75.861191 : Ridgely, MD +21684 : 38.88927 : -75.861191 : Ridgely, MD +21685 : 38.88927 : -75.861191 : Ridgely, MD +21686 : 38.88927 : -75.861191 : Ridgely, MD +21687 : 38.88927 : -75.861191 : Ridgely, MD +21688 : 38.88927 : -75.861191 : Ridgely, MD +21690 : 39.034637 : -76.092127 : Chestertown, MD +21701 : 39.423344 : -77.38902 : Frederick, MD +21702 : 39.451934 : -77.442 : Frederick, MD +21703 : 39.385165 : -77.4539 : Frederick, MD +21704 : 39.363415 : -77.37849 : Frederick, MD +21705 : 39.469961 : -77.392139 : Frederick, MD +21709 : 39.469961 : -77.392139 : Frederick, MD +21710 : 39.301647 : -77.46667 : Adamstown, MD +21711 : 39.654773 : -78.01823 : Big Pool, MD +21713 : 39.521507 : -77.66056 : Boonsboro, MD +21714 : 39.4203 : -77.505098 : Braddock Heights, MD +21715 : 39.386893 : -77.658015 : Brownsville, MD +21716 : 39.313666 : -77.62466 : Brunswick, MD +21717 : 39.334864 : -77.4333 : Buckeystown, MD +21718 : 39.391459 : -77.62709 : Burkittsville, MD +21719 : 39.710433 : -77.49104 : Cascade, MD +21720 : 39.647296 : -77.584162 : Cavetown, MD +21721 : 39.642537 : -77.637152 : Chewsville, MD +21722 : 39.656474 : -77.9152 : Clear Spring, MD +21723 : 39.319271 : -77.02397 : Cooksville, MD +21727 : 39.695328 : -77.32721 : Emmitsburg, MD +21733 : 39.549752 : -77.7557 : Fairplay, MD +21734 : 39.609846 : -77.70725 : Funkstown, MD +21736 : 39.520696 : -77.916196 : Gapland, MD +21737 : 39.26574 : -76.99735 : Glenelg, MD +21738 : 39.280106 : -77.02052 : Glenwood, MD +21740 : 39.633946 : -77.73025 : Hagerstown, MD +21741 : 39.693944 : -77.742116 : Hagerstown, MD +21742 : 39.658897 : -77.68297 : Hagerstown, MD +21746 : 39.563787 : -77.720642 : Hagerstown, MD +21747 : 39.520696 : -77.916196 : Hagerstown, MD +21748 : 39.520696 : -77.916196 : Hagerstown, MD +21749 : 39.520696 : -77.916196 : Hagerstown, MD +21750 : 39.692614 : -78.21691 : Hancock, MD +21754 : 39.342096 : -77.29984 : Ijamsville, MD +21755 : 39.372496 : -77.55869 : Jefferson, MD +21756 : 39.460534 : -77.69284 : Keedysville, MD +21757 : 39.584616 : -77.2686 : Keymar, MD +21758 : 39.342991 : -77.66014 : Knoxville, MD +21759 : 39.569426 : -77.290519 : Ladiesburg, MD +21762 : 39.484079 : -77.24711 : Libertytown, MD +21764 : 39.534703 : -77.049302 : Linwood, MD +21765 : 39.337804 : -77.071952 : Lisbon, MD +21766 : 39.65643 : -78.3986 : Little Orleans, MD +21767 : 39.697894 : -77.74514 : Maugansville, MD +21769 : 39.446452 : -77.55169 : Middletown, MD +21770 : 39.354093 : -77.24861 : Monrovia, MD +21771 : 39.381295 : -77.15867 : Mount Airy, MD +21773 : 39.528123 : -77.557 : Myersville, MD +21774 : 39.408627 : -77.28676 : New Market, MD +21775 : 39.564472 : -77.29468 : New Midway, MD +21776 : 39.529834 : -77.09715 : New Windsor, MD +21777 : 39.275498 : -77.53385 : Point Of Rocks, MD +21778 : 39.610752 : -77.34166 : Rocky Ridge, MD +21779 : 39.431058 : -77.66169 : Rohrersville, MD +21780 : 39.677316 : -77.47049 : Sabillasville, MD +21781 : 39.56991 : -77.760697 : Saint James, MD +21782 : 39.454582 : -77.75052 : Sharpsburg, MD +21783 : 39.655722 : -77.5672 : Smithsburg, MD +21784 : 39.39667 : -76.965 : Sykesville, MD +21787 : 39.665171 : -77.17264 : Taneytown, MD +21788 : 39.604303 : -77.41092 : Thurmont, MD +21790 : 39.254538 : -77.49474 : Tuscarora, MD +21791 : 39.5549 : -77.18176 : Union Bridge, MD +21792 : 39.469961 : -77.392139 : Unionville, MD +21793 : 39.484843 : -77.34668 : Walkersville, MD +21794 : 39.297519 : -76.98377 : West Friendship, MD +21795 : 39.600029 : -77.81584 : Williamsport, MD +21797 : 39.335671 : -77.06364 : Woodbine, MD +21798 : 39.540623 : -77.30606 : Woodsboro, MD +21801 : 38.369675 : -75.61214 : Salisbury, MD +21802 : 38.388434 : -75.6276 : Salisbury, MD +21803 : 38.388434 : -75.6276 : Salisbury, MD +21804 : 38.359332 : -75.56931 : Salisbury, MD +21810 : 38.292848 : -75.68812 : Allen, MD +21811 : 38.343166 : -75.19082 : Berlin, MD +21813 : 38.431954 : -75.18061 : Bishopville, MD +21814 : 38.302152 : -75.88812 : Bivalve, MD +21817 : 37.985297 : -75.84597 : Crisfield, MD +21821 : 38.158615 : -75.93147 : Deal Island, MD +21822 : 38.284622 : -75.64771 : Eden, MD +21824 : 37.991177 : -76.02374 : Ewell, MD +21826 : 38.322867 : -75.62088 : Fruitland, MD +21829 : 38.097861 : -75.39378 : Girdletree, MD +21830 : 38.407885 : -75.69357 : Hebron, MD +21831 : 38.416292 : -75.691572 : Hebron, MD +21835 : 38.540293 : -75.94596 : Linkwood, MD +21836 : 38.073294 : -75.734412 : Manokin, MD +21837 : 38.469332 : -75.74074 : Mardela Springs, MD +21838 : 38.018482 : -75.7389 : Marion Station, MD +21840 : 38.268651 : -75.90494 : Nanticoke, MD +21841 : 38.248485 : -75.29106 : Newark, MD +21842 : 38.385457 : -75.07153 : Ocean City, MD +21843 : 38.22309 : -75.324057 : Ocean City, MD +21849 : 38.363057 : -75.45574 : Parsonsburg, MD +21850 : 38.377713 : -75.39747 : Pittsville, MD +21851 : 38.069322 : -75.54811 : Pocomoke City, MD +21852 : 38.388434 : -75.6276 : Powellville, MD +21853 : 38.205272 : -75.70169 : Princess Anne, MD +21856 : 38.327156 : -75.79598 : Quantico, MD +21857 : 38.092718 : -75.888207 : Rehobeth, MD +21861 : 38.539817 : -75.71854 : Sharptown, MD +21862 : 38.39893 : -75.21195 : Showell, MD +21863 : 38.193683 : -75.41162 : Snow Hill, MD +21864 : 38.040265 : -75.40992 : Stockton, MD +21865 : 38.324259 : -75.87793 : Tyaskin, MD +21866 : 37.967803 : -76.02337 : Tylerton, MD +21867 : 38.111688 : -75.79242 : Upper Fairmount, MD +21868 : 38.107572 : -75.789354 : Fairmount, MD +21869 : 38.493753 : -75.84317 : Vienna, MD +21870 : 38.092718 : -75.888207 : Wenona, MD +21871 : 38.100727 : -75.7115 : Westover, MD +21872 : 38.408973 : -75.29575 : Whaleyville, MD +21874 : 38.397611 : -75.35364 : Willards, MD +21875 : 38.446894 : -75.56365 : Delmar, MD +21890 : 38.092718 : -75.888207 : Westover, MD +21901 : 39.593813 : -75.95602 : North East, MD +21902 : 39.553014 : -76.06542 : Perry Point, MD +21903 : 39.571003 : -76.05077 : Perryville, MD +21904 : 39.61881 : -76.0853 : Port Deposit, MD +21911 : 39.694974 : -76.05395 : Rising Sun, MD +21912 : 39.44474 : -75.80203 : Warwick, MD +21913 : 39.402919 : -75.86943 : Cecilton, MD +21914 : 39.572476 : -75.97904 : Charlestown, MD +21915 : 39.523096 : -75.84155 : Chesapeake City, MD +21916 : 39.541512 : -75.999972 : Childs, MD +21917 : 39.671671 : -76.0972 : Colora, MD +21918 : 39.679246 : -76.15464 : Conowingo, MD +21919 : 39.425542 : -75.96164 : Earleville, MD +21920 : 39.658943 : -75.82314 : Elk Mills, MD +21921 : 39.626736 : -75.84294 : Elkton, MD +21922 : 39.593612 : -75.947332 : Elkton, MD +21930 : 39.365119 : -75.88499 : Georgetown, MD +22002 : 38.691448 : -78.137019 : Amissville, VA +22003 : 38.830345 : -77.21387 : Annandale, VA +22009 : 38.831813 : -77.288755 : Burke, VA +22015 : 38.788646 : -77.27888 : Burke, VA +22026 : 38.582319 : -77.32722 : Dumfries, VA +22027 : 38.893921 : -77.21976 : Dunn Loring, VA +22030 : 38.846212 : -77.32787 : Fairfax, VA +22031 : 38.859675 : -77.26167 : Fairfax, VA +22032 : 38.821753 : -77.29293 : Fairfax, VA +22033 : 38.874879 : -77.38642 : Fairfax, VA +22034 : 38.831813 : -77.288755 : Fairfax, VA +22035 : 38.855715 : -77.361633 : Fairfax, VA +22036 : 38.735114 : -77.07965 : Fairfax, VA +22037 : 38.831813 : -77.288755 : Fairfax, VA +22038 : 38.852849 : -77.30199 : Fairfax, VA +22039 : 38.760747 : -77.31684 : Fairfax Station, VA +22040 : 38.884177 : -77.171752 : Falls Church, VA +22041 : 38.849136 : -77.14081 : Falls Church, VA +22042 : 38.864669 : -77.18781 : Falls Church, VA +22043 : 38.901311 : -77.19777 : Falls Church, VA +22044 : 38.859645 : -77.15328 : Falls Church, VA +22046 : 38.886311 : -77.18098 : Falls Church, VA +22047 : 38.831813 : -77.288755 : Falls Church, VA +22060 : 38.71299 : -77.16615 : Fort Belvoir, VA +22066 : 39.003809 : -77.30165 : Great Falls, VA +22067 : 38.96451 : -77.233103 : Greenway, VA +22079 : 38.695915 : -77.20122 : Lorton, VA +22081 : 38.873861 : -77.234454 : Merrifield, VA +22082 : 38.831813 : -77.288755 : Merrifield, VA +22092 : 38.831813 : -77.288755 : Herndon, VA +22093 : 39.085309 : -77.645224 : Ashburn, VA +22095 : 38.831813 : -77.288755 : Herndon, VA +22096 : 38.831813 : -77.288755 : Reston, VA +22101 : 38.93276 : -77.1677 : McLean, VA +22102 : 38.938664 : -77.22196 : McLean, VA +22103 : 38.831813 : -77.288755 : West Mclean, VA +22106 : 38.831813 : -77.288755 : McLean, VA +22109 : 38.920165 : -77.229043 : McLean, VA +22116 : 38.871469 : -77.234428 : Merrifield, VA +22118 : 38.831813 : -77.288755 : Merrifield, VA +22119 : 38.831813 : -77.288755 : Merrifield, VA +22120 : 38.831813 : -77.288755 : Merrifield, VA +22121 : 38.830912 : -77.432252 : Mount Vernon, VA +22122 : 38.831813 : -77.288755 : Newington, VA +22124 : 38.88619 : -77.32402 : Oakton, VA +22125 : 38.683295 : -77.26044 : Occoquan, VA +22134 : 38.503139 : -77.33372 : Quantico, VA +22135 : 38.721912 : -77.466897 : Quantico, VA +22150 : 38.778243 : -77.18562 : Springfield, VA +22151 : 38.803813 : -77.20821 : Springfield, VA +22152 : 38.775716 : -77.23131 : Springfield, VA +22153 : 38.745164 : -77.23535 : Springfield, VA +22156 : 38.831813 : -77.288755 : Springfield, VA +22158 : 38.831813 : -77.288755 : Springfield, VA +22159 : 38.831813 : -77.288755 : Springfield, VA +22160 : 38.831813 : -77.288755 : Springfield, VA +22161 : 38.807462 : -77.219354 : Springfield, VA +22172 : 38.557527 : -77.35726 : Triangle, VA +22180 : 38.894711 : -77.25337 : Vienna, VA +22181 : 38.896361 : -77.29102 : Vienna, VA +22182 : 38.922478 : -77.2566 : Vienna, VA +22183 : 38.831813 : -77.288755 : Vienna, VA +22184 : 38.831813 : -77.288755 : Vienna, VA +22185 : 38.831813 : -77.288755 : Vienna, VA +22191 : 38.63275 : -77.26786 : Woodbridge, VA +22192 : 38.678451 : -77.30657 : Woodbridge, VA +22193 : 38.646375 : -77.34469 : Woodbridge, VA +22194 : 38.721912 : -77.466897 : Woodbridge, VA +22195 : 38.721912 : -77.466897 : Woodbridge, VA +22199 : 38.831813 : -77.288755 : Lorton, VA +22201 : 38.885337 : -77.09512 : Arlington, VA +22202 : 38.856795 : -77.05628 : Arlington, VA +22203 : 38.874979 : -77.11455 : Arlington, VA +22204 : 38.860247 : -77.09627 : Arlington, VA +22205 : 38.88275 : -77.13999 : Arlington, VA +22206 : 38.843466 : -77.08973 : Arlington, VA +22207 : 38.903697 : -77.12749 : Arlington, VA +22209 : 38.893241 : -77.07453 : Arlington, VA +22210 : 38.880811 : -77.11295 : Arlington, VA +22211 : 38.878215 : -77.06845 : Ft Myer, VA +22212 : 38.880811 : -77.11295 : Arlington, VA +22213 : 38.894457 : -77.16396 : Arlington, VA +22214 : 38.880811 : -77.11295 : Arlington, VA +22215 : 38.880811 : -77.11295 : Arlington, VA +22216 : 38.880811 : -77.11295 : Arlington, VA +22217 : 38.880811 : -77.11295 : Arlington, VA +22218 : 38.880811 : -77.11295 : Arlington, VA +22219 : 38.880811 : -77.11295 : Arlington, VA +22222 : 38.861462 : -77.053599 : Arlington, VA +22223 : 38.880811 : -77.11295 : Arlington, VA +22225 : 38.880811 : -77.11295 : Arlington, VA +22226 : 38.883358 : -77.10281 : Arlington, VA +22227 : 38.880811 : -77.11295 : Arlington, VA +22229 : 38.880811 : -77.11295 : Arlington, VA +22230 : 38.87972 : -77.110817 : Arlington, VA +22234 : 38.880811 : -77.11295 : Arlington, VA +22240 : 38.856623 : -77.051788 : Arlington, VA +22241 : 38.880811 : -77.11295 : Arlington, VA +22242 : 38.850879 : -77.052336 : Arlington, VA +22243 : 38.86045 : -77.051569 : Arlington, VA +22244 : 38.854522 : -77.052035 : Arlington, VA +22245 : 38.851773 : -77.052296 : Arlington, VA +22246 : 38.880811 : -77.11295 : Arlington, VA +22301 : 38.819863 : -77.05854 : Alexandria, VA +22302 : 38.829512 : -77.08204 : Alexandria, VA +22303 : 38.792863 : -77.07964 : Alexandria, VA +22304 : 38.813013 : -77.11667 : Alexandria, VA +22305 : 38.836779 : -77.06418 : Alexandria, VA +22306 : 38.757214 : -77.08666 : Alexandria, VA +22307 : 38.774863 : -77.0593 : Alexandria, VA +22308 : 38.728464 : -77.05701 : Alexandria, VA +22309 : 38.725214 : -77.10734 : Alexandria, VA +22310 : 38.782013 : -77.12125 : Alexandria, VA +22311 : 38.837312 : -77.12064 : Alexandria, VA +22312 : 38.817362 : -77.1537 : Alexandria, VA +22313 : 38.815762 : -77.09005 : Alexandria, VA +22314 : 38.806163 : -77.05139 : Alexandria, VA +22315 : 38.757924 : -77.15284 : Alexandria, VA +22320 : 38.804413 : -77.046699 : Alexandria, VA +22321 : 38.831813 : -77.288755 : Alexandria, VA +22331 : 38.801342 : -77.070733 : Alexandria, VA +22332 : 38.803142 : -77.072679 : Alexandria, VA +22333 : 38.815762 : -77.09005 : Alexandria, VA +22334 : 38.815762 : -77.09005 : Alexandria, VA +22336 : 38.815762 : -77.09005 : Alexandria, VA +22393 : 38.103819 : -78.963004 : Fishersville, VA +22401 : 38.301829 : -77.47077 : Fredericksburg, VA +22402 : 38.299613 : -77.489666 : Fredericksburg, VA +22403 : 38.417273 : -77.460814 : Fredericksburg, VA +22404 : 38.298305 : -77.489913 : Fredericksburg, VA +22405 : 38.317636 : -77.43297 : Fredericksburg, VA +22406 : 38.387261 : -77.54676 : Fredericksburg, VA +22407 : 38.271028 : -77.5559 : Fredericksburg, VA +22408 : 38.236023 : -77.46111 : Fredericksburg, VA +22412 : 38.184716 : -77.662559 : Fredericksburg, VA +22427 : 38.042346 : -77.30833 : Bowling Green, VA +22428 : 38.014536 : -77.355902 : Bowling Green, VA +22430 : 38.385704 : -77.374292 : Brooke, VA +22432 : 37.860549 : -76.35637 : Burgess, VA +22433 : 38.343691 : -77.85964 : Burr Hill, VA +22435 : 37.996825 : -76.56435 : Callao, VA +22436 : 38.069014 : -77.09611 : Caret, VA +22437 : 37.790946 : -76.78764 : Center Cross, VA +22438 : 38.041706 : -77.005 : Champlain, VA +22442 : 38.121793 : -76.79025 : Coles Point, VA +22443 : 38.22653 : -76.97442 : Colonial Beach, VA +22446 : 38.171755 : -77.408163 : Corbin, VA +22448 : 38.340124 : -77.03273 : Dahlgren, VA +22451 : 38.271077 : -77.17261 : Dogue, VA +22454 : 37.854791 : -76.81298 : Dunnsville, VA +22456 : 37.852316 : -76.40511 : Edwardsville, VA +22460 : 37.858952 : -76.63263 : Farnham, VA +22463 : 38.468432 : -77.461213 : Garrisonville, VA +22469 : 38.093956 : -76.64055 : Hague, VA +22471 : 38.39933 : -77.581351 : Hartwood, VA +22472 : 37.950511 : -76.636722 : Haynesville, VA +22473 : 37.892668 : -76.36307 : Heathsville, VA +22476 : 38.036866 : -77.08033 : Hustle, VA +22480 : 37.66871 : -76.41038 : Irvington, VA +22481 : 38.271077 : -77.17261 : Jersey, VA +22482 : 37.733327 : -76.34389 : Kilmarnock, VA +22485 : 38.277837 : -77.1642 : King George, VA +22486 : 37.665713 : -76.420763 : Irvington, VA +22488 : 38.046358 : -76.57924 : Kinsale, VA +22501 : 38.015899 : -77.559298 : Ladysmith, VA +22503 : 37.732696 : -76.51554 : Lancaster, VA +22504 : 37.763552 : -76.72961 : Laneview, VA +22507 : 37.762848 : -76.49749 : Lively, VA +22508 : 38.326624 : -77.76987 : Locust Grove, VA +22509 : 38.104829 : -77.0743 : Loretto, VA +22511 : 37.991772 : -76.48985 : Lottsburg, VA +22513 : 37.750261 : -76.509615 : Merry Point, VA +22514 : 37.988674 : -77.29047 : Milford, VA +22517 : 37.75028 : -76.578109 : Mollusk, VA +22520 : 38.129822 : -76.76155 : Montross, VA +22523 : 37.792761 : -76.60933 : Morattico, VA +22524 : 38.118186 : -76.680504 : Mount Holly, VA +22526 : 38.271077 : -77.17261 : Ninde, VA +22528 : 37.713175 : -76.409946 : Nuttsville, VA +22529 : 38.006793 : -76.68218 : Oldhams, VA +22530 : 37.90938 : -76.293436 : Ophelia, VA +22534 : 38.08157 : -77.66795 : Partlow, VA +22535 : 38.164219 : -77.18217 : Port Royal, VA +22538 : 38.22172 : -77.26648 : Rappahannock Academy, VA +22539 : 37.854233 : -76.27848 : Reedville, VA +22542 : 38.296355 : -77.88379 : Rhoadesville, VA +22544 : 38.271077 : -77.17261 : Rollins Fork, VA +22545 : 38.508611 : -77.542957 : Ruby, VA +22546 : 37.95969 : -77.47733 : Ruther Glen, VA +22547 : 38.271077 : -77.17261 : Sealston, VA +22548 : 37.825956 : -76.70563 : Sharps, VA +22552 : 38.009438 : -77.225139 : Sparta, VA +22553 : 38.207275 : -77.64378 : Spotsylvania, VA +22554 : 38.460395 : -77.43266 : Stafford, VA +22555 : 38.417273 : -77.460814 : Stafford, VA +22558 : 38.121793 : -76.79025 : Stratford, VA +22560 : 37.916172 : -76.90656 : Tappahannock, VA +22565 : 38.137216 : -77.518865 : Thornburg, VA +22567 : 38.233223 : -77.91258 : Unionville, VA +22570 : 37.947224 : -76.615358 : Village, VA +22572 : 37.957869 : -76.75725 : Warsaw, VA +22576 : 37.680124 : -76.44242 : Weems, VA +22577 : 38.067325 : -76.550274 : Sandy Point, VA +22578 : 37.64424 : -76.36034 : White Stone, VA +22579 : 37.807268 : -76.31275 : Wicomico Church, VA +22580 : 38.095772 : -77.44404 : Woodford, VA +22581 : 38.121793 : -76.79025 : Zacata, VA +22601 : 39.179076 : -78.16653 : Winchester, VA +22602 : 39.158386 : -78.24758 : Winchester, VA +22603 : 39.267257 : -78.19396 : Winchester, VA +22604 : 39.167603 : -78.168643 : Winchester, VA +22606 : 38.112139 : -77.329674 : Newport News, VA +22610 : 38.822506 : -78.27368 : Bentonville, VA +22611 : 39.156378 : -77.97857 : Berryville, VA +22620 : 39.061499 : -78.03693 : Boyce, VA +22622 : 39.2543 : -78.066373 : Brucetown, VA +22623 : 38.853733 : -78.141239 : Chester Gap, VA +22624 : 39.26582 : -78.08496 : Clear Brook, VA +22625 : 39.345906 : -78.30975 : Cross Junction, VA +22626 : 38.980286 : -78.4011 : Fishers Hill, VA +22627 : 38.765004 : -78.0948 : Flint Hill, VA +22630 : 38.926615 : -78.17499 : Front Royal, VA +22637 : 39.247386 : -78.35444 : Gore, VA +22638 : 39.236944 : -78.288465 : Winchester, VA +22639 : 38.814086 : -78.01898 : Hume, VA +22640 : 38.808303 : -78.13578 : Huntly, VA +22641 : 39.076317 : -78.39617 : Strasburg, VA +22642 : 38.932178 : -78.06051 : Linden, VA +22643 : 38.905106 : -77.98948 : Markham, VA +22644 : 38.944011 : -78.48125 : Maurertown, VA +22645 : 39.023035 : -78.2809 : Middletown, VA +22646 : 39.069682 : -78.03752 : Millwood, VA +22649 : 39.004774 : -78.247806 : Middletown, VA +22650 : 38.76592 : -78.36545 : Rileyville, VA +22651 : 38.947215 : -78.213304 : Front Royal, VA +22652 : 38.823987 : -78.4531 : Fort Valley, VA +22654 : 39.04494 : -78.47377 : Star Tannery, VA +22655 : 39.07814 : -78.20713 : Stephens City, VA +22656 : 39.230131 : -78.09992 : Stephenson, VA +22657 : 39.00127 : -78.36485 : Strasburg, VA +22660 : 38.949013 : -78.43921 : Toms Brook, VA +22663 : 39.045019 : -78.12417 : White Post, VA +22664 : 38.881558 : -78.51586 : Woodstock, VA +22701 : 38.459521 : -77.99875 : Culpeper, VA +22709 : 38.312548 : -78.23622 : Aroda, VA +22711 : 38.476275 : -78.2729 : Banco, VA +22712 : 38.5593 : -77.75728 : Bealeton, VA +22713 : 38.549388 : -78.15309 : Boston, VA +22714 : 38.512989 : -77.89529 : Brandy Station, VA +22715 : 38.414359 : -78.18321 : Brightwood, VA +22716 : 38.627135 : -78.11341 : Castleton, VA +22718 : 38.493501 : -77.82067 : Elkwood, VA +22719 : 38.527816 : -78.25117 : Etlan, VA +22720 : 38.474222 : -77.64361 : Goldvein, VA +22721 : 38.428509 : -78.267848 : Graves Mill, VA +22722 : 38.452043 : -78.24197 : Haywood, VA +22723 : 38.331957 : -78.3774 : Hood, VA +22724 : 38.630345 : -77.89777 : Jeffersonton, VA +22725 : 38.428509 : -78.267848 : Leon, VA +22726 : 38.411845 : -77.82208 : Lignum, VA +22727 : 38.393351 : -78.28737 : Madison, VA +22728 : 38.587503 : -77.70952 : Midland, VA +22729 : 38.373645 : -78.0165 : Mitchells, VA +22730 : 38.365699 : -78.18604 : Oakpark, VA +22731 : 38.345179 : -78.26151 : Pratts, VA +22732 : 38.310141 : -78.20098 : Radiant, VA +22733 : 38.324175 : -78.05877 : Rapidan, VA +22734 : 38.52916 : -77.80274 : Remington, VA +22735 : 38.477063 : -78.17517 : Reva, VA +22736 : 38.388311 : -77.68111 : Richardsville, VA +22737 : 38.588409 : -77.98995 : Rixeyville, VA +22738 : 38.303414 : -78.28937 : Rochelle, VA +22739 : 38.505945 : -77.59557 : Somerville, VA +22740 : 38.636896 : -78.24 : Sperryville, VA +22741 : 38.442247 : -77.8962 : Stevensburg, VA +22742 : 38.456916 : -77.7009 : Sumerduck, VA +22743 : 38.509556 : -78.33721 : Syria, VA +22746 : 38.638635 : -78.03061 : Viewtown, VA +22747 : 38.725801 : -78.16767 : Washington, VA +22748 : 38.372652 : -78.380509 : Wolftown, VA +22749 : 38.629058 : -78.18057 : Woodville, VA +22801 : 38.426786 : -78.88153 : Harrisonburg, VA +22802 : 38.477752 : -78.86302 : Harrisonburg, VA +22807 : 38.440898 : -78.874173 : Harrisonburg, VA +22810 : 38.81913 : -78.77149 : Basye, VA +22811 : 38.797789 : -78.96672 : Bergton, VA +22812 : 38.398049 : -79.00071 : Bridgewater, VA +22815 : 38.619654 : -78.80513 : Broadway, VA +22820 : 38.725738 : -79.01957 : Criders, VA +22821 : 38.436873 : -78.99039 : Dayton, VA +22824 : 38.828628 : -78.60964 : Edinburg, VA +22827 : 38.404364 : -78.62907 : Elkton, VA +22830 : 38.637545 : -78.95205 : Fulks Run, VA +22831 : 38.584516 : -79.04328 : Hinton, VA +22832 : 38.453741 : -78.78234 : Keezletown, VA +22833 : 38.528361 : -78.855172 : Lacey Spring, VA +22834 : 38.544652 : -78.86564 : Linville, VA +22835 : 38.665615 : -78.45621 : Luray, VA +22840 : 38.387721 : -78.73452 : McGaheysville, VA +22841 : 38.358334 : -78.90667 : Mount Crawford, VA +22842 : 38.772409 : -78.69461 : Mount Jackson, VA +22843 : 38.337507 : -79.11629 : Mount Solon, VA +22844 : 38.652274 : -78.66417 : New Market, VA +22845 : 38.788499 : -78.81488 : Orkney Springs, VA +22846 : 38.371616 : -78.79742 : Penn Laird, VA +22847 : 38.704494 : -78.70088 : Quicksburg, VA +22848 : 38.384681 : -78.891422 : Pleasant Valley, VA +22849 : 38.49696 : -78.61997 : Shenandoah, VA +22850 : 38.553225 : -78.92206 : Singers Glen, VA +22851 : 38.567459 : -78.50696 : Stanley, VA +22853 : 38.641556 : -78.76258 : Timberville, VA +22865 : 38.65845 : -78.426788 : Luray, VA +22875 : 38.665568 : -78.466716 : Luray, VA +22880 : 38.058102 : -78.878493 : Waynesboro, VA +22901 : 38.072402 : -78.50149 : Charlottesville, VA +22902 : 38.00847 : -78.47803 : Charlottesville, VA +22903 : 38.026342 : -78.5348 : Charlottesville, VA +22904 : 38.040101 : -78.485066 : Charlottesville, VA +22905 : 38.040101 : -78.485066 : Charlottesville, VA +22906 : 38.040101 : -78.485066 : Charlottesville, VA +22907 : 38.040101 : -78.485066 : Charlottesville, VA +22908 : 38.040101 : -78.485066 : Charlottesville, VA +22909 : 38.024474 : -78.448214 : Charlottesville, VA +22910 : 38.040101 : -78.485066 : Charlottesville, VA +22911 : 38.07735 : -78.42042 : Charlottesville, VA +22920 : 37.987812 : -78.79701 : Afton, VA +22922 : 37.69474 : -78.93251 : Arrington, VA +22923 : 38.167465 : -78.3259 : Barboursville, VA +22924 : 38.000289 : -78.72662 : Batesville, VA +22931 : 37.890917 : -78.70343 : Covesville, VA +22932 : 38.116217 : -78.71396 : Crozet, VA +22935 : 38.254105 : -78.56548 : Dyke, VA +22936 : 38.150083 : -78.47627 : Earlysville, VA +22937 : 37.79922 : -78.61263 : Esmont, VA +22938 : 37.85583 : -78.77546 : Faber, VA +22939 : 38.104457 : -78.97416 : Fishersville, VA +22940 : 38.197583 : -78.59304 : Free Union, VA +22942 : 38.125214 : -78.197 : Gordonsville, VA +22943 : 38.039928 : -78.75894 : Greenwood, VA +22945 : 38.065383 : -78.595831 : Ivy, VA +22946 : 37.855103 : -78.56162 : Keene, VA +22947 : 38.025346 : -78.32925 : Keswick, VA +22948 : 38.349795 : -78.11747 : Locust Dale, VA +22949 : 37.780882 : -78.89239 : Lovingston, VA +22952 : 37.969657 : -78.95712 : Lyndhurst, VA +22953 : 38.428509 : -78.267848 : Madison Mills, VA +22954 : 37.790887 : -79.00334 : Massies Mill, VA +22957 : 38.221405 : -78.19026 : Montpelier Station, VA +22958 : 37.905649 : -78.90273 : Nellysford, VA +22959 : 37.935994 : -78.64088 : North Garden, VA +22960 : 38.231526 : -78.07923 : Orange, VA +22963 : 37.871021 : -78.30837 : Palmyra, VA +22964 : 37.725074 : -78.99245 : Piney River, VA +22965 : 38.330132 : -78.475018 : Quinque, VA +22967 : 37.79151 : -78.98961 : Roseland, VA +22968 : 38.233717 : -78.41009 : Ruckersville, VA +22969 : 37.792343 : -78.69417 : Schuyler, VA +22971 : 37.74747 : -78.80233 : Shipman, VA +22972 : 38.214023 : -78.21596 : Somerset, VA +22973 : 38.301191 : -78.46396 : Stanardsville, VA +22974 : 37.959376 : -78.26353 : Troy, VA +22976 : 37.840892 : -79.02459 : Tyro, VA +22980 : 38.076547 : -78.89839 : Waynesboro, VA +22987 : 38.179859 : -78.618912 : White Hall, VA +22989 : 38.292221 : -78.11865 : Woodberry Forest, VA +23001 : 37.293165 : -76.41057 : Achilles, VA +23002 : 37.338511 : -77.95893 : Amelia Court House, VA +23003 : 37.432335 : -76.601616 : Ark, VA +23004 : 37.673369 : -78.38899 : Arvonia, VA +23005 : 37.754254 : -77.47465 : Ashland, VA +23009 : 37.790757 : -77.17553 : Aylett, VA +23011 : 37.478184 : -76.81384 : Barhamsville, VA +23014 : 37.733844 : -77.888082 : Beaumont, VA +23015 : 37.931011 : -77.64296 : Beaverdam, VA +23017 : 37.418242 : -76.508402 : Bellamy, VA +23018 : 37.418242 : -76.508402 : Bena, VA +23021 : 37.3946 : -76.36571 : Bohannon, VA +23022 : 37.728067 : -78.26865 : Bremo Bluff, VA +23023 : 37.777938 : -76.95055 : Bruington, VA +23024 : 37.961187 : -77.76824 : Bumpass, VA +23025 : 37.422209 : -76.37304 : Cardinal, VA +23027 : 37.653694 : -78.11902 : Cartersville, VA +23030 : 37.342306 : -77.0731 : Charles City, VA +23031 : 37.598391 : -76.447551 : Christchurch, VA +23032 : 37.674655 : -76.68104 : Church View, VA +23035 : 37.514774 : -76.37543 : Cobbs Creek, VA +23038 : 37.758949 : -78.14009 : Columbia, VA +23039 : 37.643406 : -77.80709 : Crozier, VA +23040 : 37.522085 : -78.2553 : Cumberland, VA +23043 : 37.550168 : -76.34327 : Deltaville, VA +23045 : 37.426154 : -76.26844 : Diggs, VA +23047 : 37.855002 : -77.47011 : Doswell, VA +23050 : 37.490365 : -76.44118 : Dutton, VA +23054 : 37.733844 : -77.888082 : Fife, VA +23055 : 37.782109 : -78.23472 : Fork Union, VA +23056 : 37.383629 : -76.36167 : Foster, VA +23058 : 37.531296 : -77.416103 : Glen Allen, VA +23059 : 37.686152 : -77.53651 : Glen Allen, VA +23060 : 37.661647 : -77.52632 : Glen Allen, VA +23061 : 37.414991 : -76.52959 : Gloucester, VA +23062 : 37.257466 : -76.49661 : Gloucester Point, VA +23063 : 37.69536 : -77.99793 : Goochland, VA +23064 : 37.50519 : -76.29784 : Grimstead, VA +23065 : 37.801783 : -77.92431 : Gum Spring, VA +23066 : 37.501358 : -76.28453 : Gwynn, VA +23067 : 37.825208 : -77.989878 : Hadensville, VA +23068 : 37.492529 : -76.33636 : Hallieford, VA +23069 : 37.753904 : -77.33963 : Hanover, VA +23070 : 37.551549 : -76.39294 : Hardyville, VA +23071 : 37.533471 : -76.4609 : Hartfield, VA +23072 : 37.288999 : -76.47393 : Hayes, VA +23075 : 37.543595 : -77.32339 : Highland Springs, VA +23076 : 37.475132 : -76.31316 : Hudgins, VA +23079 : 37.748645 : -76.66735 : Jamaica, VA +23081 : 37.223482 : -76.783317 : Jamestown, VA +23083 : 37.303726 : -78.11349 : Jetersville, VA +23084 : 37.90198 : -78.09647 : Kents Store, VA +23085 : 37.711368 : -76.85843 : King And Queen Court Hous, VA +23086 : 37.64375 : -77.02508 : King William, VA +23089 : 37.435153 : -76.90719 : Lanexa, VA +23090 : 37.235892 : -76.445567 : Lightfoot, VA +23091 : 37.638259 : -76.82858 : Little Plymouth, VA +23092 : 37.593059 : -76.50694 : Locust Hill, VA +23093 : 37.995103 : -78.04612 : Louisa, VA +23101 : 37.553314 : -77.892964 : Macon, VA +23102 : 37.712894 : -77.82379 : Maidens, VA +23103 : 37.639354 : -77.72841 : Manakin Sabot, VA +23104 : 37.298919 : -76.530276 : Gloucester Point, VA +23105 : 37.345032 : -77.944868 : Mannboro, VA +23106 : 37.704693 : -77.20342 : Manquin, VA +23107 : 37.28641 : -76.404783 : Maryus, VA +23108 : 37.642543 : -76.73554 : Mascot, VA +23109 : 37.43704 : -76.30724 : Mathews, VA +23110 : 37.571544 : -76.78066 : Mattaponi, VA +23111 : 37.605641 : -77.31536 : Mechanicsville, VA +23112 : 37.427988 : -77.64868 : Midlothian, VA +23113 : 37.51338 : -77.64165 : Midlothian, VA +23115 : 37.826347 : -76.87751 : Millers Tavern, VA +23116 : 37.662559 : -77.36778 : Mechanicsville, VA +23117 : 38.007186 : -77.86809 : Mineral, VA +23119 : 37.451894 : -76.2904 : Moon, VA +23120 : 37.422868 : -77.7813 : Moseley, VA +23123 : 37.663039 : -78.2868 : New Canton, VA +23124 : 37.545276 : -77.06664 : New Kent, VA +23125 : 37.342721 : -76.27989 : New Point, VA +23126 : 37.902954 : -77.14586 : Newtown, VA +23127 : 37.310451 : -76.746769 : Norge, VA +23128 : 37.456363 : -76.43298 : North, VA +23129 : 37.698646 : -77.77111 : Oilville, VA +23130 : 37.405038 : -76.27785 : Onemo, VA +23131 : 37.312159 : -76.518831 : Ordinary, VA +23138 : 37.366838 : -76.29577 : Port Haywood, VA +23139 : 37.55563 : -77.90048 : Powhatan, VA +23140 : 37.438569 : -77.03578 : Providence Forge, VA +23141 : 37.506369 : -77.15127 : Quinton, VA +23146 : 37.725675 : -77.69002 : Rockville, VA +23147 : 37.37956 : -77.034752 : Ruthville, VA +23148 : 37.837177 : -77.05555 : Saint Stephens Church, VA +23149 : 37.5787 : -76.60916 : Saluda, VA +23150 : 37.517804 : -77.28678 : Sandston, VA +23153 : 37.787745 : -77.96916 : Sandy Hook, VA +23154 : 37.418242 : -76.508402 : Schley, VA +23155 : 37.418242 : -76.508402 : Severn, VA +23156 : 37.501267 : -76.72389 : Shacklefords, VA +23160 : 37.733844 : -77.888082 : State Farm, VA +23161 : 37.701245 : -76.92919 : Stevensville, VA +23162 : 37.772187 : -77.45264 : Studley, VA +23163 : 37.357742 : -76.30136 : Susan, VA +23168 : 37.403872 : -76.81744 : Toano, VA +23169 : 37.599217 : -76.45876 : Topping, VA +23170 : 37.940788 : -77.996956 : Trevilians, VA +23173 : 37.524246 : -77.493157 : University Of Richmond, VA +23175 : 37.648536 : -76.59872 : Urbanna, VA +23176 : 37.571789 : -76.41631 : Wake, VA +23177 : 37.728152 : -76.99901 : Walkerton, VA +23178 : 37.400287 : -76.46089 : Ware Neck, VA +23180 : 37.710586 : -76.63179 : Water View, VA +23181 : 37.559878 : -76.83018 : West Point, VA +23183 : 37.363201 : -76.532492 : White Marsh, VA +23184 : 37.285188 : -76.5298 : Wicomico, VA +23185 : 37.256301 : -76.70024 : Williamsburg, VA +23186 : 37.270994 : -76.71722 : Williamsburg, VA +23187 : 37.310451 : -76.746769 : Williamsburg, VA +23188 : 37.322936 : -76.75793 : Williamsburg, VA +23190 : 37.482039 : -76.636154 : Woods Cross Roads, VA +23191 : 37.418242 : -76.508402 : Zanoni, VA +23192 : 37.813901 : -77.68952 : Montpelier, VA +23201 : 37.541106 : -77.431825 : Richmond, VA +23218 : 37.524246 : -77.493157 : Richmond, VA +23219 : 37.541046 : -77.43536 : Richmond, VA +23220 : 37.549396 : -77.45739 : Richmond, VA +23221 : 37.557626 : -77.48844 : Richmond, VA +23222 : 37.573595 : -77.42504 : Richmond, VA +23223 : 37.544746 : -77.40085 : Richmond, VA +23224 : 37.505147 : -77.46101 : Richmond, VA +23225 : 37.51918 : -77.49851 : Richmond, VA +23226 : 37.581696 : -77.51709 : Richmond, VA +23227 : 37.606778 : -77.44775 : Richmond, VA +23228 : 37.621745 : -77.48896 : Richmond, VA +23229 : 37.593546 : -77.56271 : Richmond, VA +23230 : 37.580346 : -77.48831 : Richmond, VA +23231 : 37.482896 : -77.36304 : Richmond, VA +23232 : 37.520187 : -77.408359 : Richmond, VA +23233 : 37.622465 : -77.61965 : Richmond, VA +23234 : 37.457341 : -77.4658 : Richmond, VA +23235 : 37.522514 : -77.56565 : Richmond, VA +23236 : 37.475798 : -77.58235 : Richmond, VA +23237 : 37.406204 : -77.4533 : Richmond, VA +23238 : 37.733844 : -77.888082 : Richmond, VA +23240 : 37.524246 : -77.493157 : Richmond, VA +23241 : 37.524246 : -77.493157 : Richmond, VA +23242 : 37.531296 : -77.416103 : Richmond, VA +23249 : 37.524246 : -77.493157 : Richmond, VA +23250 : 37.507498 : -77.332916 : Richmond, VA +23255 : 37.531296 : -77.416103 : Richmond, VA +23260 : 37.524246 : -77.493157 : Richmond, VA +23261 : 37.524246 : -77.493157 : Richmond, VA +23266 : 37.567896 : -77.528308 : Richmond, VA +23269 : 37.524246 : -77.493157 : Richmond, VA +23270 : 37.524246 : -77.493157 : Richmond, VA +23272 : 37.524246 : -77.493157 : Richmond, VA +23273 : 37.524246 : -77.493157 : Richmond, VA +23274 : 37.524246 : -77.493157 : Richmond, VA +23275 : 37.524246 : -77.493157 : Richmond, VA +23276 : 37.524246 : -77.493157 : Richmond, VA +23278 : 37.524246 : -77.493157 : Richmond, VA +23279 : 37.524246 : -77.493157 : Richmond, VA +23280 : 37.637622 : -77.46836 : Richmond, VA +23282 : 37.524246 : -77.493157 : Richmond, VA +23284 : 37.549446 : -77.451155 : Richmond, VA +23285 : 37.524246 : -77.493157 : Richmond, VA +23286 : 37.524246 : -77.493157 : Richmond, VA +23288 : 37.531296 : -77.416103 : Richmond, VA +23289 : 37.531296 : -77.416103 : Richmond, VA +23290 : 37.524246 : -77.493157 : Richmond, VA +23291 : 37.524246 : -77.493157 : Richmond, VA +23292 : 37.524246 : -77.493157 : Richmond, VA +23293 : 37.524246 : -77.493157 : Richmond, VA +23294 : 37.633316 : -77.54775 : Richmond, VA +23297 : 37.389721 : -77.561266 : Richmond, VA +23298 : 37.539694 : -77.42815 : Richmond, VA +23301 : 37.713561 : -75.67108 : Accomac, VA +23302 : 37.870022 : -75.53554 : Assawoman, VA +23303 : 37.892445 : -75.51107 : Atlantic, VA +23304 : 36.99497 : -76.56901 : Battery Park, VA +23306 : 37.560093 : -75.86182 : Belle Haven, VA +23307 : 37.434719 : -75.87767 : Birdsnest, VA +23308 : 37.828492 : -75.61896 : Bloxom, VA +23310 : 37.26252 : -75.97104 : Cape Charles, VA +23313 : 37.201937 : -75.952409 : Capeville, VA +23314 : 36.940626 : -76.5378 : Carrollton, VA +23315 : 36.740632 : -76.84517 : Carrsville, VA +23316 : 37.284061 : -75.96909 : Cheriton, VA +23320 : 36.761698 : -76.24511 : Chesapeake, VA +23321 : 36.826239 : -76.41524 : Chesapeake, VA +23322 : 36.687543 : -76.22905 : Chesapeake, VA +23323 : 36.757815 : -76.3358 : Chesapeake, VA +23324 : 36.805717 : -76.27126 : Chesapeake, VA +23325 : 36.814897 : -76.23848 : Chesapeake, VA +23326 : 36.777015 : -76.239417 : Chesapeake, VA +23327 : 36.7085 : -76.278531 : Chesapeake, VA +23328 : 36.7085 : -76.278531 : Chesapeake, VA +23336 : 37.934673 : -75.3678 : Chincoteague Island, VA +23337 : 37.931216 : -75.47192 : Wallops Island, VA +23341 : 37.577292 : -75.864607 : Craddockville, VA +23345 : 37.738248 : -75.701449 : Davis Wharf, VA +23347 : 37.353286 : -75.94203 : Eastville, VA +23350 : 37.522269 : -75.86132 : Exmore, VA +23351 : 37.528076 : -75.822769 : Exmore, VA +23354 : 37.479588 : -75.90262 : Franktown, VA +23356 : 37.999025 : -75.41634 : Greenbackville, VA +23357 : 37.754497 : -75.67974 : Greenbush, VA +23358 : 37.635833 : -75.86849 : Hacksneck, VA +23359 : 37.876357 : -75.59686 : Hallwood, VA +23380 : 37.529341 : -75.816851 : Exmore, VA +23389 : 37.661513 : -75.8315 : Harborton, VA +23395 : 37.95715 : -75.45296 : Horntown, VA +23396 : 37.923682 : -75.555142 : Oak Hall, VA +23397 : 36.898915 : -76.687745 : Isle Of Wight, VA +23398 : 37.534336 : -75.877052 : Jamesville, VA +23399 : 37.916218 : -75.616754 : Jenkins Bridge, VA +23401 : 37.61686 : -75.76512 : Keller, VA +23404 : 37.635838 : -75.66642 : Locustville, VA +23405 : 37.425567 : -75.93117 : Machipongo, VA +23407 : 37.848467 : -75.55559 : Mappsville, VA +23408 : 37.424497 : -75.877143 : Marionville, VA +23409 : 37.859953 : -75.62995 : Mears, VA +23410 : 37.64682 : -75.73996 : Melfa, VA +23412 : 37.790415 : -75.60347 : Modest Town, VA +23413 : 37.452186 : -75.84523 : Nassawadox, VA +23414 : 37.816896 : -75.583227 : Nelsonia, VA +23415 : 37.973042 : -75.53045 : New Church, VA +23416 : 37.9268 : -75.55339 : Oak Hall, VA +23417 : 37.70973 : -75.76272 : Onancock, VA +23418 : 37.685447 : -75.71051 : Onley, VA +23419 : 37.307411 : -75.926877 : Oyster, VA +23420 : 37.589068 : -75.79947 : Painter, VA +23421 : 37.780966 : -75.64895 : Parksley, VA +23422 : 37.616183 : -75.791519 : Pungoteague, VA +23423 : 37.549044 : -75.73237 : Quinby, VA +23424 : 36.996881 : -76.564516 : Rescue, VA +23426 : 37.93359 : -75.67692 : Sanford, VA +23427 : 37.92358 : -75.72178 : Saxis, VA +23429 : 37.271104 : -75.953608 : Seaview, VA +23430 : 36.978861 : -76.63973 : Smithfield, VA +23431 : 36.898915 : -76.687745 : Smithfield, VA +23432 : 36.871628 : -76.56063 : Suffolk, VA +23433 : 36.906805 : -76.49899 : Suffolk, VA +23434 : 36.735893 : -76.59656 : Suffolk, VA +23435 : 36.84882 : -76.46521 : Suffolk, VA +23436 : 36.894736 : -76.51281 : Suffolk, VA +23437 : 36.642645 : -76.82272 : Suffolk, VA +23438 : 36.578692 : -76.70129 : Suffolk, VA +23439 : 36.746101 : -76.665251 : Suffolk, VA +23440 : 37.847652 : -75.99404 : Tangier, VA +23441 : 37.711442 : -75.70044 : Tasley, VA +23442 : 37.887538 : -75.53645 : Temperanceville, VA +23443 : 37.188217 : -75.969003 : Townsend, VA +23450 : 36.844004 : -76.12036 : Virginia Beach, VA +23451 : 36.864788 : -76.00098 : Virginia Beach, VA +23452 : 36.839209 : -76.09333 : Virginia Beach, VA +23453 : 36.786753 : -76.082079 : Virginia Beach, VA +23454 : 36.838398 : -76.02862 : Virginia Beach, VA +23455 : 36.889797 : -76.1426 : Virginia Beach, VA +23456 : 36.762459 : -76.06139 : Virginia Beach, VA +23457 : 36.600219 : -76.03592 : Virginia Beach, VA +23458 : 36.847388 : -76.15581 : Virginia Beach, VA +23459 : 36.926647 : -76.02058 : Virginia Beach, VA +23460 : 36.837598 : -76.026053 : Virginia Beach, VA +23461 : 36.795328 : -75.97768 : Virginia Beach, VA +23462 : 36.839648 : -76.15177 : Virginia Beach, VA +23463 : 36.795669 : -76.012628 : Virginia Beach, VA +23464 : 36.799284 : -76.17767 : Virginia Beach, VA +23465 : 36.851243 : -76.169215 : Virginia Beach, VA +23466 : 36.795669 : -76.012628 : Virginia Beach, VA +23467 : 36.795669 : -76.012628 : Virginia Beach, VA +23468 : 36.843948 : -76.142407 : Virginia Beach, VA +23471 : 36.795669 : -76.012628 : Virginia Beach, VA +23472 : 37.294975 : -76.527425 : Gloucester Point, VA +23479 : 36.795669 : -76.012628 : Virginia Beach, VA +23480 : 37.605335 : -75.69088 : Wachapreague, VA +23482 : 37.273986 : -75.86913 : Wardtown, VA +23483 : 37.943726 : -75.502306 : Wattsville, VA +23486 : 37.518917 : -75.810482 : Willis Wharf, VA +23487 : 36.828408 : -76.73506 : Windsor, VA +23488 : 37.952168 : -75.59681 : Withams, VA +23501 : 36.895911 : -76.208521 : Norfolk, VA +23502 : 36.855247 : -76.21233 : Norfolk, VA +23503 : 36.942947 : -76.2547 : Norfolk, VA +23504 : 36.859362 : -76.27028 : Norfolk, VA +23505 : 36.913147 : -76.28444 : Norfolk, VA +23506 : 36.931166 : -76.23972 : Norfolk, VA +23507 : 36.864047 : -76.29947 : Norfolk, VA +23508 : 36.886447 : -76.30065 : Norfolk, VA +23509 : 36.880297 : -76.2596 : Norfolk, VA +23510 : 36.852547 : -76.29028 : Norfolk, VA +23511 : 36.935579 : -76.303417 : Norfolk, VA +23512 : 36.931166 : -76.23972 : Norfolk, VA +23513 : 36.888147 : -76.23909 : Norfolk, VA +23514 : 36.931166 : -76.23972 : Norfolk, VA +23515 : 36.931166 : -76.23972 : Norfolk, VA +23517 : 36.870197 : -76.29271 : Norfolk, VA +23518 : 36.916497 : -76.21796 : Norfolk, VA +23519 : 36.931166 : -76.23972 : Norfolk, VA +23520 : 36.931166 : -76.23972 : Norfolk, VA +23521 : 36.916397 : -76.1527 : Norfolk, VA +23523 : 36.830936 : -76.27354 : Norfolk, VA +23529 : 36.931166 : -76.23972 : Norfolk, VA +23530 : 36.931166 : -76.23972 : Norfolk, VA +23541 : 36.931166 : -76.23972 : Norfolk, VA +23551 : 36.931166 : -76.23972 : Norfolk, VA +23601 : 37.053346 : -76.45948 : Newport News, VA +23602 : 37.115698 : -76.5183 : Newport News, VA +23603 : 37.193712 : -76.57178 : Newport News, VA +23604 : 37.144943 : -76.58677 : Fort Eustis, VA +23605 : 37.019453 : -76.43651 : Newport News, VA +23606 : 37.078196 : -76.49446 : Newport News, VA +23607 : 36.987151 : -76.4195 : Newport News, VA +23608 : 37.151315 : -76.54812 : Newport News, VA +23609 : 37.195924 : -76.524805 : Newport News, VA +23612 : 37.195924 : -76.524805 : Newport News, VA +23620 : 36.694658 : -76.965091 : Franklin, VA +23628 : 37.195924 : -76.524805 : Newport News, VA +23630 : 37.072658 : -76.38992 : Hampton, VA +23631 : 37.072658 : -76.38992 : Hampton, VA +23642 : 36.843073 : -76.154882 : Virginia Beach, VA +23651 : 37.002997 : -76.32039 : Fort Monroe, VA +23653 : 37.072658 : -76.38992 : Hampton, VA +23661 : 37.005814 : -76.38316 : Hampton, VA +23662 : 37.131237 : -76.38089 : Poquoson, VA +23663 : 37.031474 : -76.31637 : Hampton, VA +23664 : 37.056778 : -76.29373 : Hampton, VA +23665 : 37.098317 : -76.4196 : Hampton, VA +23666 : 37.050946 : -76.40711 : Hampton, VA +23667 : 37.019346 : -76.331815 : Hampton, VA +23668 : 37.020596 : -76.337715 : Hampton, VA +23669 : 37.037946 : -76.34415 : Hampton, VA +23670 : 37.072658 : -76.38992 : Hampton, VA +23681 : 37.072658 : -76.38992 : Hampton, VA +23690 : 37.227904 : -76.51278 : Yorktown, VA +23691 : 37.257932 : -76.56076 : Yorktown, VA +23692 : 37.178417 : -76.46751 : Yorktown, VA +23693 : 37.112915 : -76.43591 : Yorktown, VA +23694 : 37.223152 : -76.55901 : Lackey, VA +23696 : 37.191262 : -76.42135 : Seaford, VA +23701 : 36.810448 : -76.36811 : Portsmouth, VA +23702 : 36.803981 : -76.32386 : Portsmouth, VA +23703 : 36.867248 : -76.38232 : Portsmouth, VA +23704 : 36.830748 : -76.31369 : Portsmouth, VA +23705 : 36.868553 : -76.355165 : Portsmouth, VA +23707 : 36.835215 : -76.3457 : Portsmouth, VA +23708 : 36.846562 : -76.30803 : Portsmouth, VA +23709 : 36.868553 : -76.355165 : Portsmouth, VA +23801 : 37.241173 : -77.34845 : Fort Lee, VA +23803 : 37.21695 : -77.43063 : Petersburg, VA +23804 : 37.204765 : -77.392784 : Petersburg, VA +23805 : 37.174217 : -77.39008 : Petersburg, VA +23806 : 37.204765 : -77.392784 : Petersburg, VA +23810 : 37.268263 : -76.007162 : Cape Charles, VA +23814 : 37.285231 : -76.531577 : Gloucester Point, VA +23821 : 36.87229 : -77.91125 : Alberta, VA +23822 : 37.072361 : -77.647495 : Ammon, VA +23824 : 37.070975 : -77.98876 : Blackstone, VA +23827 : 36.602472 : -77.20851 : Boykins, VA +23828 : 36.582188 : -77.27759 : Branchville, VA +23829 : 36.724498 : -77.21893 : Capron, VA +23830 : 37.01775 : -77.39475 : Carson, VA +23831 : 37.350999 : -77.43959 : Chester, VA +23832 : 37.405699 : -77.5838 : Chesterfield, VA +23833 : 37.197024 : -77.66932 : Church Road, VA +23834 : 37.265403 : -77.40438 : Colonial Heights, VA +23836 : 37.343005 : -77.34604 : Chester, VA +23837 : 36.740306 : -77.07132 : Courtland, VA +23838 : 37.328232 : -77.61364 : Chesterfield, VA +23839 : 37.079298 : -76.92155 : Dendron, VA +23840 : 37.066833 : -77.6675 : Dewitt, VA +23841 : 37.055849 : -77.56349 : Dinwiddie, VA +23842 : 37.126708 : -77.23281 : Disputanta, VA +23843 : 36.848712 : -77.80682 : Dolphin, VA +23844 : 36.688788 : -77.31072 : Drewryville, VA +23845 : 36.554164 : -78.01408 : Ebony, VA +23846 : 37.064244 : -76.82637 : Elberon, VA +23847 : 36.68627 : -77.56121 : Emporia, VA +23850 : 37.169066 : -77.74358 : Ford, VA +23851 : 36.668255 : -76.93945 : Franklin, VA +23856 : 36.776189 : -77.71289 : Freeman, VA +23857 : 36.576549 : -77.88467 : Gasburg, VA +23860 : 37.287869 : -77.29359 : Hopewell, VA +23866 : 36.907991 : -76.89025 : Ivor, VA +23867 : 36.811276 : -77.47496 : Jarratt, VA +23868 : 36.722176 : -77.81269 : Lawrenceville, VA +23870 : 36.721471 : -77.531996 : Jarratt, VA +23872 : 36.993498 : -77.74687 : McKenney, VA +23873 : 36.80878 : -77.954397 : Meredithville, VA +23874 : 36.610636 : -77.10269 : Newsoms, VA +23875 : 37.235949 : -77.30259 : Prince George, VA +23876 : 36.951449 : -77.82402 : Rawlings, VA +23878 : 36.822024 : -77.02404 : Sedley, VA +23879 : 36.584448 : -77.58854 : Skippers, VA +23881 : 37.181764 : -77.0026 : Spring Grove, VA +23882 : 36.928972 : -77.41971 : Stony Creek, VA +23883 : 37.14051 : -76.74342 : Surry, VA +23884 : 36.945667 : -77.253913 : Sussex, VA +23885 : 37.191579 : -77.56682 : Sutherland, VA +23887 : 36.563755 : -77.82652 : Valentines, VA +23888 : 36.963354 : -76.98127 : Wakefield, VA +23889 : 36.912369 : -77.75239 : Warfield, VA +23890 : 37.005989 : -77.09819 : Waverly, VA +23891 : 36.909845 : -77.286287 : Waverly, VA +23893 : 36.628802 : -77.92817 : White Plains, VA +23894 : 37.127935 : -77.83918 : Wilsons, VA +23897 : 36.828831 : -77.28288 : Yale, VA +23898 : 36.836423 : -76.83731 : Zuni, VA +23899 : 37.227291 : -76.96545 : Claremont, VA +23901 : 37.307946 : -78.40144 : Farmville, VA +23909 : 37.301574 : -78.394944 : Farmville, VA +23915 : 36.694531 : -78.28794 : Baskerville, VA +23917 : 36.615944 : -78.3102 : Boydton, VA +23919 : 36.567521 : -78.12176 : Bracey, VA +23920 : 36.732859 : -77.99591 : Brodnax, VA +23921 : 37.581656 : -78.62058 : Buckingham, VA +23922 : 37.191053 : -78.2117 : Burkeville, VA +23923 : 37.074876 : -78.63263 : Charlotte Court House, VA +23924 : 36.806422 : -78.46048 : Chase City, VA +23927 : 36.61665 : -78.54018 : Clarksville, VA +23930 : 37.173493 : -78.11236 : Crewe, VA +23934 : 37.164981 : -78.62592 : Cullen, VA +23936 : 37.529284 : -78.49082 : Dillwyn, VA +23937 : 36.958048 : -78.53403 : Drakes Branch, VA +23938 : 36.909504 : -78.00646 : Dundas, VA +23939 : 37.312972 : -78.77203 : Evergreen, VA +23941 : 36.948129 : -78.248333 : Fort Mitchell, VA +23942 : 37.129269 : -78.30107 : Green Bay, VA +23943 : 37.241732 : -78.4632 : Hampden Sydney, VA +23944 : 36.925375 : -78.11767 : Kenbridge, VA +23947 : 37.029877 : -78.4643 : Keysville, VA +23950 : 36.678507 : -78.08098 : La Crosse, VA +23952 : 36.930088 : -78.29215 : Lunenburg, VA +23954 : 37.097705 : -78.37823 : Meherrin, VA +23955 : 37.116094 : -78.057832 : Nottoway, VA +23958 : 37.264896 : -78.66558 : Pamplin, VA +23959 : 37.094313 : -78.77182 : Phenix, VA +23960 : 37.310203 : -78.55359 : Prospect, VA +23962 : 37.017706 : -78.73668 : Randolph, VA +23963 : 37.197072 : -78.81694 : Red House, VA +23964 : 36.780021 : -78.62102 : Red Oak, VA +23966 : 37.284087 : -78.27559 : Rice, VA +23967 : 36.913228 : -78.63611 : Saxe, VA +23968 : 36.702863 : -78.51218 : Skipwith, VA +23970 : 36.733874 : -78.17287 : South Hill, VA +23974 : 36.987595 : -78.23285 : Victoria, VA +23976 : 36.848612 : -78.59064 : Wylliesburg, VA +23999 : 37.561962 : -77.425452 : Richmond, VA +24001 : 37.274175 : -79.95786 : Roanoke, VA +24002 : 37.274175 : -79.95786 : Roanoke, VA +24003 : 37.274175 : -79.95786 : Roanoke, VA +24004 : 37.274175 : -79.95786 : Roanoke, VA +24005 : 37.274175 : -79.95786 : Roanoke, VA +24006 : 37.274175 : -79.95786 : Roanoke, VA +24007 : 37.274175 : -79.95786 : Roanoke, VA +24008 : 37.274175 : -79.95786 : Roanoke, VA +24009 : 37.274175 : -79.95786 : Roanoke, VA +24010 : 37.274175 : -79.95786 : Roanoke, VA +24011 : 37.270637 : -79.94155 : Roanoke, VA +24012 : 37.305769 : -79.92767 : Roanoke, VA +24013 : 37.267137 : -79.92645 : Roanoke, VA +24014 : 37.236753 : -79.93549 : Roanoke, VA +24015 : 37.258787 : -79.97816 : Roanoke, VA +24016 : 37.272186 : -79.95321 : Roanoke, VA +24017 : 37.290886 : -79.98256 : Roanoke, VA +24018 : 37.229786 : -80.02477 : Roanoke, VA +24019 : 37.341428 : -79.95049 : Roanoke, VA +24020 : 37.357149 : -79.94541 : Roanoke, VA +24022 : 37.278439 : -79.933206 : Roanoke, VA +24023 : 37.210663 : -80.406172 : Roanoke, VA +24024 : 37.274175 : -79.95786 : Roanoke, VA +24025 : 37.274175 : -79.95786 : Roanoke, VA +24026 : 37.274175 : -79.95786 : Roanoke, VA +24027 : 37.274175 : -79.95786 : Roanoke, VA +24028 : 37.274175 : -79.95786 : Roanoke, VA +24029 : 37.274175 : -79.95786 : Roanoke, VA +24030 : 37.274175 : -79.95786 : Roanoke, VA +24031 : 37.274175 : -79.95786 : Roanoke, VA +24032 : 37.274175 : -79.95786 : Roanoke, VA +24033 : 37.274175 : -79.95786 : Roanoke, VA +24034 : 37.274175 : -79.95786 : Roanoke, VA +24035 : 37.274175 : -79.95786 : Roanoke, VA +24036 : 37.274175 : -79.95786 : Roanoke, VA +24037 : 37.274175 : -79.95786 : Roanoke, VA +24038 : 37.274175 : -79.95786 : Roanoke, VA +24040 : 37.274175 : -79.95786 : Roanoke, VA +24042 : 37.271687 : -79.939228 : Roanoke, VA +24043 : 37.269168 : -79.939905 : Roanoke, VA +24044 : 37.274175 : -79.95786 : Roanoke, VA +24045 : 37.268618 : -79.940655 : Roanoke, VA +24048 : 37.274175 : -79.95786 : Roanoke, VA +24050 : 37.555083 : -79.786151 : Roanoke, VA +24053 : 36.618824 : -80.53102 : Ararat, VA +24054 : 36.677075 : -79.70604 : Axton, VA +24055 : 36.757893 : -80.00161 : Bassett, VA +24058 : 37.189876 : -80.59761 : Belspring, VA +24059 : 37.146244 : -80.12562 : Bent Mountain, VA +24060 : 37.232027 : -80.42127 : Blacksburg, VA +24061 : 37.179115 : -80.351482 : Blacksburg, VA +24062 : 37.174227 : -80.395698 : Blacksburg, VA +24063 : 37.174227 : -80.395698 : Blacksburg, VA +24064 : 37.373117 : -79.79043 : Blue Ridge, VA +24065 : 37.116716 : -79.95528 : Boones Mill, VA +24066 : 37.532991 : -79.68004 : Buchanan, VA +24067 : 37.010772 : -80.08111 : Callaway, VA +24068 : 37.154804 : -80.418396 : Christiansburg, VA +24069 : 36.586545 : -79.64194 : Cascade, VA +24070 : 37.361962 : -80.19485 : Catawba, VA +24072 : 37.040036 : -80.2167 : Check, VA +24073 : 37.136013 : -80.41222 : Christiansburg, VA +24076 : 36.580514 : -80.4332 : Claudville, VA +24077 : 37.369313 : -79.90303 : Cloverdale, VA +24078 : 36.720217 : -79.91425 : Collinsville, VA +24079 : 37.043459 : -80.14868 : Copper Hill, VA +24082 : 36.625817 : -80.13542 : Critz, VA +24083 : 37.407301 : -79.91761 : Daleville, VA +24084 : 37.107273 : -80.67384 : Dublin, VA +24085 : 37.671394 : -79.81681 : Eagle Rock, VA +24086 : 37.287326 : -80.62194 : Eggleston, VA +24087 : 37.218668 : -80.2335 : Elliston, VA +24088 : 36.901203 : -80.0715 : Ferrum, VA +24089 : 36.70487 : -79.95681 : Fieldale, VA +24090 : 37.512912 : -79.87046 : Fincastle, VA +24091 : 36.910051 : -80.30871 : Floyd, VA +24092 : 37.014685 : -79.75335 : Glade Hill, VA +24093 : 37.377877 : -80.85658 : Glen Lyn, VA +24094 : 37.427111 : -80.55227 : Goldbond, VA +24095 : 37.21556 : -79.73922 : Goodview, VA +24101 : 37.180713 : -79.76536 : Hardy, VA +24102 : 36.838473 : -79.99093 : Henry, VA +24104 : 37.107479 : -79.53046 : Huddleston, VA +24105 : 36.901524 : -80.5936 : Indian Valley, VA +24111 : 37.174227 : -80.395698 : McCoy, VA +24112 : 36.696264 : -79.86879 : Martinsville, VA +24113 : 36.679571 : -79.865168 : Martinsville, VA +24114 : 36.679571 : -79.865168 : Martinsville, VA +24115 : 36.679571 : -79.865168 : Martinsville, VA +24120 : 36.720001 : -80.41975 : Meadows Of Dan, VA +24121 : 37.145705 : -79.64786 : Moneta, VA +24122 : 37.413397 : -79.70789 : Montvale, VA +24124 : 37.331818 : -80.80847 : Narrows, VA +24126 : 37.069206 : -80.689067 : Newbern, VA +24127 : 37.505033 : -80.17302 : New Castle, VA +24128 : 37.325758 : -80.47021 : Newport, VA +24129 : 37.096403 : -80.608056 : New River, VA +24130 : 37.555083 : -79.786151 : Oriskany, VA +24131 : 37.562902 : -80.2538 : Paint Bank, VA +24132 : 37.210996 : -80.62751 : Parrott, VA +24133 : 36.677978 : -80.13511 : Patrick Springs, VA +24134 : 37.291252 : -80.73601 : Pearisburg, VA +24136 : 37.31803 : -80.62267 : Pembroke, VA +24137 : 36.947422 : -79.63536 : Penhook, VA +24138 : 37.048647 : -80.32048 : Pilot, VA +24139 : 37.010279 : -79.47217 : Pittsville, VA +24141 : 37.11979 : -80.57325 : Radford, VA +24142 : 37.138427 : -80.55031 : Radford, VA +24143 : 37.122583 : -80.562913 : Radford, VA +24146 : 37.006912 : -79.913875 : Redwood, VA +24147 : 37.38389 : -80.81734 : Rich Creek, VA +24148 : 36.595224 : -79.87353 : Ridgeway, VA +24149 : 37.011934 : -80.41897 : Riner, VA +24150 : 37.351691 : -80.67726 : Ripplemead, VA +24151 : 36.980013 : -79.88027 : Rocky Mount, VA +24153 : 37.288807 : -80.07821 : Salem, VA +24155 : 37.288384 : -80.067062 : Salem, VA +24156 : 37.288384 : -80.067062 : Salem, VA +24157 : 37.288384 : -80.067062 : Salem, VA +24161 : 36.985629 : -79.53939 : Sandy Level, VA +24162 : 37.14374 : -80.26233 : Shawsville, VA +24165 : 36.590431 : -80.03589 : Spencer, VA +24167 : 37.240021 : -80.73083 : Staffordsville, VA +24168 : 36.734651 : -79.94572 : Stanleytown, VA +24171 : 36.655575 : -80.23909 : Stuart, VA +24174 : 37.357587 : -79.66552 : Thaxton, VA +24175 : 37.427597 : -79.90595 : Troutville, VA +24176 : 37.024494 : -79.69241 : Union Hall, VA +24177 : 36.724064 : -80.35806 : Vesta, VA +24178 : 37.310494 : -79.789799 : Villamont, VA +24179 : 37.276218 : -79.8524 : Vinton, VA +24184 : 37.068743 : -79.74911 : Wirtz, VA +24185 : 36.806528 : -80.26895 : Woolwine, VA +24201 : 36.606582 : -82.18087 : Bristol, VA +24202 : 36.645419 : -82.18137 : Bristol, VA +24203 : 36.761613 : -81.968712 : Bristol, VA +24209 : 36.761613 : -81.968712 : Bristol, VA +24210 : 36.728639 : -82.00845 : Abingdon, VA +24211 : 36.657812 : -81.96207 : Abingdon, VA +24212 : 36.690942 : -81.970764 : Abingdon, VA +24215 : 36.921924 : -82.79644 : Andover, VA +24216 : 36.919476 : -82.78974 : Appalachia, VA +24217 : 37.082275 : -82.18978 : Bee, VA +24218 : 36.733931 : -83.0635 : Ben Hur, VA +24219 : 36.851953 : -82.77056 : Big Stone Gap, VA +24220 : 37.138489 : -82.25643 : Birchleaf, VA +24221 : 36.627827 : -82.96464 : Blackwater, VA +24224 : 36.870051 : -82.27792 : Castlewood, VA +24225 : 36.968491 : -82.1623 : Cleveland, VA +24226 : 37.147222 : -82.34369 : Clinchco, VA +24228 : 37.153509 : -82.44936 : Clintwood, VA +24230 : 36.952634 : -82.46657 : Coeburn, VA +24236 : 36.624632 : -81.76732 : Damascus, VA +24237 : 37.001752 : -82.28089 : Dante, VA +24239 : 37.107474 : -82.12413 : Davenport, VA +24243 : 36.780481 : -82.94428 : Dryden, VA +24244 : 36.70122 : -82.79538 : Duffield, VA +24245 : 36.844539 : -82.49147 : Dungannon, VA +24246 : 36.864429 : -82.737469 : East Stone Gap, VA +24248 : 36.62928 : -83.48322 : Ewing, VA +24250 : 36.759614 : -82.59473 : Fort Blackmore, VA +24251 : 36.642027 : -82.58685 : Gate City, VA +24256 : 37.213189 : -82.29759 : Haysi, VA +24258 : 36.658518 : -82.42645 : Hiltons, VA +24260 : 37.02264 : -81.99859 : Honaker, VA +24263 : 36.687716 : -83.15587 : Jonesville, VA +24265 : 36.851769 : -82.93593 : Keokee, VA +24266 : 36.876177 : -82.11083 : Lebanon, VA +24269 : 37.103304 : -82.37613 : McClure, VA +24270 : 36.720381 : -82.26093 : Mendota, VA +24271 : 36.741128 : -82.41823 : Nickelsville, VA +24272 : 37.008665 : -82.35244 : Nora, VA +24273 : 36.942047 : -82.63138 : Norton, VA +24274 : 37.126639 : -82.59599 : Pound, VA +24277 : 36.756705 : -83.04178 : Pennington Gap, VA +24279 : 37.10297 : -82.59626 : Pound, VA +24280 : 36.954936 : -81.94252 : Rosedale, VA +24281 : 36.65364 : -83.34736 : Rose Hill, VA +24282 : 36.805965 : -83.05467 : Saint Charles, VA +24283 : 36.943316 : -82.33154 : Saint Paul, VA +24285 : 36.953228 : -82.79025 : Stonega, VA +24289 : 37.130943 : -82.344881 : Trammel, VA +24290 : 36.617348 : -82.5666 : Weber City, VA +24292 : 36.59565 : -81.59154 : Whitetop, VA +24293 : 36.979817 : -82.56963 : Wise, VA +24301 : 37.053297 : -80.7728 : Pulaski, VA +24311 : 36.870607 : -81.40497 : Atkins, VA +24312 : 36.837699 : -80.85731 : Austinville, VA +24313 : 36.909335 : -80.80411 : Barren Springs, VA +24314 : 37.183901 : -81.17641 : Bastian, VA +24315 : 37.107412 : -81.0571 : Bland, VA +24316 : 36.937195 : -81.67617 : Broadford, VA +24317 : 36.609475 : -80.67102 : Cana, VA +24318 : 36.982193 : -81.38945 : Ceres, VA +24319 : 36.776534 : -81.65827 : Chilhowie, VA +24322 : 36.820139 : -81.11128 : Cripple Creek, VA +24323 : 36.88091 : -81.1992 : Crockett, VA +24324 : 36.973028 : -80.79309 : Draper, VA +24325 : 36.801489 : -80.60492 : Dugspur, VA +24326 : 36.729236 : -81.2001 : Elk Creek, VA +24327 : 36.773659 : -81.82771 : Emory, VA +24328 : 36.659171 : -80.70387 : Fancy Gap, VA +24330 : 36.721913 : -81.00535 : Fries, VA +24333 : 36.649548 : -80.92683 : Galax, VA +24338 : 36.718307 : -80.978273 : Fries, VA +24340 : 36.772376 : -81.7742 : Glade Spring, VA +24343 : 36.750353 : -80.68706 : Hillsville, VA +24347 : 36.958829 : -80.65995 : Hiwassee, VA +24348 : 36.626454 : -81.16554 : Independence, VA +24350 : 36.809933 : -80.99526 : Ivanhoe, VA +24351 : 36.580074 : -80.76311 : Lambsburg, VA +24352 : 36.708515 : -80.52791 : Laurel Fork, VA +24354 : 36.828526 : -81.53045 : Marion, VA +24360 : 36.933981 : -80.92897 : Max Meadows, VA +24361 : 36.763059 : -81.84774 : Meadowview, VA +24363 : 36.597486 : -81.37604 : Mouth Of Wilson, VA +24366 : 37.261609 : -81.10659 : Rocky Gap, VA +24368 : 36.889364 : -81.28162 : Rural Retreat, VA +24370 : 36.893445 : -81.74825 : Saltville, VA +24373 : 36.826371 : -81.549231 : Seven Mile Ford, VA +24374 : 36.813383 : -81.19791 : Speedwell, VA +24375 : 36.790265 : -81.37541 : Sugar Grove, VA +24377 : 37.000956 : -81.54797 : Tannersville, VA +24378 : 36.684567 : -81.43411 : Trout Dale, VA +24379 : 36.682782 : -81.257795 : Volney, VA +24380 : 36.853525 : -80.52024 : Willis, VA +24381 : 36.714663 : -80.82602 : Woodlawn, VA +24382 : 36.947446 : -81.09439 : Wytheville, VA +24401 : 38.146216 : -79.07625 : Staunton, VA +24402 : 38.159275 : -79.062858 : Staunton, VA +24407 : 38.179715 : -79.141332 : Staunton, VA +24411 : 38.091705 : -79.322363 : Augusta Springs, VA +24412 : 38.054111 : -79.84575 : Bacova, VA +24413 : 38.521373 : -79.58361 : Blue Grass, VA +24415 : 37.929347 : -79.31644 : Brownsburg, VA +24416 : 37.74078 : -79.35038 : Buena Vista, VA +24421 : 38.252683 : -79.17339 : Churchville, VA +24422 : 37.821088 : -79.79619 : Clifton Forge, VA +24426 : 37.772399 : -80.02705 : Covington, VA +24430 : 38.085244 : -79.36209 : Craigsville, VA +24431 : 38.167914 : -78.84222 : Crimora, VA +24432 : 38.178513 : -79.42701 : Deerfield, VA +24433 : 38.443961 : -79.44072 : Doe Hill, VA +24435 : 37.871126 : -79.29041 : Fairfield, VA +24437 : 38.212067 : -78.94563 : Fort Defiance, VA +24438 : 37.555083 : -79.786151 : Glen Wilton, VA +24439 : 37.997778 : -79.48004 : Goshen, VA +24440 : 37.996542 : -79.15354 : Greenville, VA +24441 : 38.255747 : -78.8242 : Grottoes, VA +24442 : 38.345202 : -79.38497 : Head Waters, VA +24444 : 37.799435 : -79.790895 : Iron Gate, VA +24445 : 37.970734 : -79.89283 : Hot Springs, VA +24448 : 37.797214 : -79.79002 : Iron Gate, VA +24450 : 37.794344 : -79.47658 : Lexington, VA +24457 : 37.802424 : -79.86351 : Low Moor, VA +24458 : 38.322663 : -79.54418 : McDowell, VA +24459 : 38.042173 : -79.28175 : Middlebrook, VA +24460 : 38.015153 : -79.65065 : Millboro, VA +24463 : 38.064112 : -79.10979 : Mint Spring, VA +24464 : 37.897702 : -79.08939 : Montebello, VA +24465 : 38.374628 : -79.63611 : Monterey, VA +24467 : 38.258308 : -78.95941 : Mount Sidney, VA +24468 : 38.385967 : -79.559157 : Mustoe, VA +24469 : 38.179715 : -79.141332 : New Hope, VA +24471 : 38.310311 : -78.80409 : Port Republic, VA +24472 : 37.936577 : -79.22828 : Raphine, VA +24473 : 37.912977 : -79.39906 : Rockbridge Baths, VA +24474 : 37.805268 : -79.84752 : Selma, VA +24475 : 37.9651 : -79.2357 : Spottswood, VA +24476 : 38.179715 : -79.141332 : Steeles Tavern, VA +24477 : 38.01473 : -79.02733 : Stuarts Draft, VA +24479 : 38.151767 : -79.21998 : Swoope, VA +24482 : 38.19958 : -78.99553 : Verona, VA +24483 : 37.819652 : -79.21508 : Vesuvius, VA +24484 : 38.103122 : -79.81478 : Warm Springs, VA +24485 : 38.270442 : -79.33402 : West Augusta, VA +24486 : 38.290722 : -78.92423 : Weyers Cave, VA +24487 : 38.197757 : -79.57766 : Williamsville, VA +24501 : 37.390209 : -79.16132 : Lynchburg, VA +24502 : 37.362109 : -79.21525 : Lynchburg, VA +24503 : 37.440641 : -79.20923 : Lynchburg, VA +24504 : 37.400275 : -79.12597 : Lynchburg, VA +24505 : 37.400944 : -79.178506 : Lynchburg, VA +24506 : 37.381692 : -79.161046 : Lynchburg, VA +24512 : 37.242503 : -79.109789 : Lynchburg, VA +24513 : 37.245798 : -79.133546 : Lynchburg, VA +24514 : 37.400944 : -79.178506 : Lynchburg, VA +24515 : 37.400944 : -79.178506 : Lynchburg, VA +24517 : 37.127543 : -79.27409 : Altavista, VA +24520 : 36.561396 : -79.05268 : Alton, VA +24521 : 37.616606 : -79.08763 : Amherst, VA +24522 : 37.374688 : -78.80585 : Appomattox, VA +24523 : 37.339184 : -79.52839 : Bedford, VA +24526 : 37.528701 : -79.39812 : Big Island, VA +24527 : 36.725028 : -79.35877 : Blairs, VA +24528 : 37.079385 : -78.90765 : Brookneal, VA +24529 : 36.631531 : -78.63806 : Buffalo Junction, VA +24530 : 36.807043 : -79.61864 : Callands, VA +24531 : 36.836822 : -79.45193 : Chatham, VA +24533 : 37.582488 : -78.93618 : Clifford, VA +24534 : 36.864697 : -78.76019 : Clover, VA +24535 : 36.611317 : -78.945519 : Cluster Springs, VA +24536 : 37.486603 : -79.30501 : Coleman Falls, VA +24538 : 37.343394 : -78.96433 : Concord, VA +24539 : 36.861612 : -78.91187 : Crystal Hill, VA +24540 : 36.622638 : -79.39998 : Danville, VA +24541 : 36.581085 : -79.45027 : Danville, VA +24542 : 36.579313 : -79.398748 : Danville, VA +24543 : 36.592679 : -79.410983 : Danville, VA +24544 : 36.592679 : -79.410983 : Danville, VA +24549 : 36.710985 : -79.48517 : Dry Fork, VA +24550 : 37.237928 : -79.28268 : Evington, VA +24551 : 37.366744 : -79.29977 : Forest, VA +24553 : 37.541726 : -78.80777 : Gladstone, VA +24554 : 37.142894 : -79.05412 : Gladys, VA +24555 : 37.641788 : -79.45652 : Glasgow, VA +24556 : 37.361512 : -79.3981 : Goode, VA +24557 : 36.971021 : -79.31787 : Gretna, VA +24558 : 36.774635 : -78.93426 : Halifax, VA +24562 : 37.715293 : -78.64175 : Howardsville, VA +24563 : 37.071568 : -79.2923 : Hurt, VA +24565 : 36.842686 : -79.19748 : Java, VA +24566 : 36.726236 : -79.26279 : Keeling, VA +24569 : 37.041512 : -79.1278 : Long Island, VA +24570 : 37.333936 : -79.406303 : Lowry, VA +24571 : 37.133274 : -79.37324 : Lynch Station, VA +24572 : 37.461272 : -79.09364 : Madison Heights, VA +24574 : 37.576208 : -79.26133 : Monroe, VA +24576 : 37.245798 : -79.133546 : Naruna, VA +24577 : 36.940538 : -78.98017 : Nathalie, VA +24578 : 37.650711 : -79.55269 : Natural Bridge, VA +24579 : 37.597531 : -79.50659 : Natural Bridge Station, VA +24580 : 36.589704 : -78.66151 : Nelson, VA +24581 : 37.644171 : -78.79447 : Norwood, VA +24585 : 36.801515 : -78.883933 : Republican Grove, VA +24586 : 36.595244 : -79.28647 : Ringgold, VA +24588 : 37.268024 : -79.11686 : Rustburg, VA +24589 : 36.759749 : -78.78547 : Scottsburg, VA +24590 : 37.806508 : -78.48134 : Scottsville, VA +24592 : 36.701855 : -78.92008 : South Boston, VA +24593 : 37.320709 : -78.91071 : Spout Spring, VA +24594 : 36.635902 : -79.1968 : Sutherlin, VA +24595 : 37.556248 : -79.08249 : Sweet Briar, VA +24597 : 36.782331 : -79.1237 : Vernon Hill, VA +24598 : 36.592597 : -78.78207 : Virgilina, VA +24599 : 37.638783 : -78.71934 : Wingina, VA +24601 : 37.177549 : -81.6578 : Amonate, VA +24602 : 37.170062 : -81.64412 : Bandy, VA +24603 : 37.371119 : -82.1645 : Big Rock, VA +24604 : 37.201022 : -81.53963 : Bishop, VA +24605 : 37.222548 : -81.3367 : Bluefield, VA +24606 : 37.28526 : -81.38993 : Boissevain, VA +24607 : 37.297387 : -82.27942 : Breaks, VA +24608 : 37.13549 : -81.563406 : Burkes Garden, VA +24609 : 37.055512 : -81.76922 : Cedar Bluff, VA +24612 : 37.091572 : -81.84119 : Doran, VA +24613 : 37.273973 : -81.31688 : Falls Mills, VA +24614 : 37.296213 : -82.05775 : Grundy, VA +24618 : 37.287992 : -82.027408 : Harman, VA +24619 : 37.13549 : -81.563406 : Horsepen, VA +24620 : 37.409883 : -82.02317 : Hurley, VA +24622 : 37.214471 : -81.78967 : Jewell Ridge, VA +24624 : 37.204272 : -81.97936 : Keen Mountain, VA +24627 : 37.287992 : -82.027408 : Mavisdale, VA +24628 : 37.308652 : -82.18593 : Maxie, VA +24630 : 37.155621 : -81.49787 : North Tazewell, VA +24631 : 37.223011 : -82.00538 : Oakwood, VA +24634 : 37.250363 : -81.89766 : Pilgrims Knob, VA +24635 : 37.305821 : -81.34697 : Pocahontas, VA +24637 : 37.076801 : -81.70519 : Pounding Mill, VA +24639 : 37.136584 : -81.89068 : Raven, VA +24640 : 37.13549 : -81.563406 : Red Ash, VA +24641 : 37.098588 : -81.80607 : Richlands, VA +24646 : 37.14445 : -81.99735 : Rowe, VA +24647 : 37.287992 : -82.027408 : Shortt Gap, VA +24649 : 37.077291 : -81.91973 : Swords Creek, VA +24651 : 37.113004 : -81.50326 : Tazewell, VA +24656 : 37.198005 : -82.12193 : Vansant, VA +24657 : 37.226416 : -81.86739 : Whitewood, VA +24658 : 37.287992 : -82.027408 : Wolford, VA +24701 : 37.2757 : -81.2145 : Bluefield, WV +24704 : 37.264098 : -81.229646 : Bluefield, WV +24712 : 37.448532 : -81.0032 : Athens, WV +24714 : 37.501743 : -81.22148 : Beeson, WV +24715 : 37.335297 : -81.31112 : Bramwell, WV +24716 : 37.532524 : -81.37275 : Bud, WV +24719 : 37.48929 : -81.29736 : Covel, WV +24724 : 37.32767 : -81.29994 : Freeman, WV +24726 : 37.520914 : -81.33026 : Herndon, WV +24729 : 37.416395 : -81.105803 : Hiawatha, WV +24731 : 37.404113 : -81.14078 : Kegley, WV +24732 : 37.416395 : -81.105803 : Kellysville, WV +24733 : 37.431153 : -81.22628 : Lashmeet, WV +24736 : 37.425866 : -81.27625 : Matoaka, WV +24737 : 37.352655 : -81.24781 : Montcalm, WV +24738 : 37.416395 : -81.105803 : Nemours, WV +24739 : 37.336554 : -80.95523 : Oakvale, WV +24740 : 37.368167 : -81.07307 : Princeton, WV +24747 : 37.394221 : -81.21868 : Rock, WV +24751 : 37.416395 : -81.105803 : Wolfe, WV +24801 : 37.424498 : -81.57835 : Welch, WV +24808 : 37.338242 : -81.43081 : Anawalt, WV +24811 : 37.399793 : -81.78312 : Avondale, WV +24813 : 37.355111 : -81.73002 : Bartley, WV +24815 : 37.25068 : -81.65044 : Berwind, WV +24816 : 37.459251 : -81.70173 : Big Sandy, WV +24817 : 37.358272 : -81.8013 : Bradshaw, WV +24818 : 37.594959 : -81.62947 : Brenton, WV +24820 : 37.375246 : -81.653889 : Capels, WV +24821 : 37.345693 : -81.66789 : Caretta, WV +24822 : 37.62127 : -81.69408 : Clear Fork, WV +24823 : 37.664172 : -81.7338 : Coal Mountain, WV +24824 : 37.416947 : -81.69288 : Coalwood, WV +24825 : 37.421641 : -81.34504 : Crumpler, WV +24826 : 37.375246 : -81.653889 : Cucumber, WV +24827 : 37.742953 : -81.67951 : Cyclone, WV +24828 : 37.478583 : -81.66169 : Davy, WV +24829 : 37.40273 : -81.4629 : Eckman, WV +24830 : 37.319439 : -81.5432 : Elbert, WV +24831 : 37.385757 : -81.41415 : Elkhorn, WV +24832 : 37.375246 : -81.653889 : English, WV +24834 : 37.603344 : -81.53998 : Fanrock, WV +24836 : 37.352131 : -81.54688 : Gary, WV +24839 : 37.567007 : -81.77969 : Hanover, WV +24841 : 37.405828 : -81.576548 : Havaco, WV +24842 : 37.444465 : -81.59684 : Hemphill, WV +24843 : 37.474577 : -81.69961 : Hensley, WV +24844 : 37.469496 : -81.79548 : Iaeger, WV +24845 : 37.530418 : -81.79553 : Ikes Fork, WV +24846 : 37.530963 : -81.8885 : Isaban, WV +24847 : 37.603344 : -81.53998 : Itmann, WV +24848 : 37.296401 : -81.43135 : Jenkinjones, WV +24849 : 37.666079 : -81.57309 : Jesse, WV +24850 : 37.312239 : -81.82478 : Jolo, WV +24851 : 37.602126 : -81.84968 : Justice, WV +24852 : 37.417857 : -81.44874 : Keystone, WV +24853 : 37.427781 : -81.48654 : Kimball, WV +24854 : 37.741813 : -81.53722 : Kopperston, WV +24855 : 37.409655 : -81.42559 : Kyle, WV +24856 : 37.343452 : -81.40244 : Leckie, WV +24857 : 37.683273 : -81.66048 : Lynco, WV +24859 : 37.603344 : -81.53998 : Marianna, WV +24860 : 37.664685 : -81.5967 : Matheny, WV +24861 : 37.363882 : -81.36531 : Maybeury, WV +24862 : 37.485276 : -81.93955 : Mohawk, WV +24866 : 37.265686 : -81.6155 : Newhall, WV +24867 : 37.568981 : -81.49308 : New Richmond, WV +24868 : 37.418471 : -81.41706 : Northfork, WV +24869 : 37.551372 : -81.84229 : North Spring, WV +24870 : 37.69629 : -81.60845 : Oceana, WV +24871 : 37.325163 : -81.47554 : Pageton, WV +24872 : 37.45926 : -81.89024 : Panther, WV +24873 : 37.357831 : -81.89583 : Paynesville, WV +24874 : 37.562494 : -81.51746 : Pineville, WV +24877 : 37.375246 : -81.653889 : Powhatan, WV +24878 : 37.375246 : -81.653889 : Premier, WV +24879 : 37.35294 : -81.768 : Raysal, WV +24880 : 37.641027 : -81.53625 : Rock View, WV +24881 : 37.444527 : -81.69146 : Roderfield, WV +24882 : 37.609388 : -81.75668 : Simon, WV +24883 : 37.375246 : -81.653889 : Skygusty, WV +24884 : 37.249595 : -81.55208 : Squire, WV +24887 : 37.371122 : -81.384 : Switchback, WV +24888 : 37.365675 : -81.50968 : Thorpe, WV +24889 : 37.375246 : -81.653889 : Twin Branch, WV +24892 : 37.309666 : -81.69546 : War, WV +24894 : 37.291157 : -81.69541 : Warriormine, WV +24895 : 37.381834 : -81.56342 : Wilcoe, WV +24896 : 37.603344 : -81.53998 : Wolf Pen, WV +24897 : 37.422523 : -81.38363 : Worth, WV +24898 : 37.585536 : -81.60347 : Wyoming, WV +24899 : 37.375246 : -81.653889 : Yukon, WV +24901 : 37.80848 : -80.44493 : Lewisburg, WV +24902 : 37.774666 : -80.461492 : Fairlea, WV +24910 : 37.731717 : -80.65942 : Alderson, WV +24915 : 38.462522 : -79.80308 : Arbovale, WV +24916 : 37.841919 : -80.55325 : Asbury, WV +24917 : 37.975595 : -80.426874 : Auto, WV +24918 : 37.515724 : -80.76748 : Ballard, WV +24919 : 37.620418 : -80.71636 : Ballengee, WV +24920 : 38.552106 : -79.7315 : Bartow, WV +24924 : 38.185341 : -80.13261 : Buckeye, WV +24925 : 37.741887 : -80.37481 : Caldwell, WV +24927 : 38.380196 : -79.93278 : Cass, WV +24931 : 37.901788 : -80.59452 : Crawley, WV +24934 : 38.325205 : -79.90179 : Dunmore, WV +24935 : 37.549702 : -80.80017 : Forest Hill, WV +24936 : 37.743322 : -80.52942 : Fort Spring, WV +24938 : 37.918994 : -80.36331 : Frankford, WV +24941 : 37.602172 : -80.3464 : Gap Mills, WV +24942 : 37.552029 : -80.539672 : Glace, WV +24943 : 37.838288 : -80.75393 : Grassy Meadows, WV +24944 : 38.412244 : -79.79796 : Green Bank, WV +24945 : 37.543667 : -80.69604 : Greenville, WV +24946 : 38.114627 : -80.22808 : Hillsboro, WV +24950 : 37.94046 : -80.61007 : Kieffer, WV +24951 : 37.485348 : -80.64293 : Lindside, WV +24954 : 38.196374 : -80.05957 : Marlinton, WV +24957 : 37.869998 : -80.41067 : Maxwelton, WV +24958 : 37.975595 : -80.426874 : Meadow Bluff, WV +24961 : 37.975595 : -80.426874 : Neola, WV +24962 : 37.675571 : -80.73336 : Pence Springs, WV +24963 : 37.424195 : -80.78465 : Peterstown, WV +24966 : 38.059474 : -80.35569 : Renick, WV +24970 : 37.742719 : -80.47151 : Ronceverte, WV +24971 : 37.792525 : -80.443556 : Lewisburg, WV +24974 : 37.665867 : -80.44338 : Secondcreek, WV +24976 : 37.667594 : -80.54184 : Sinks Grove, WV +24977 : 37.893306 : -80.65773 : Smoot, WV +24981 : 37.654267 : -80.72899 : Talcott, WV +24983 : 37.590774 : -80.53448 : Union, WV +24984 : 37.515131 : -80.38284 : Waiteville, WV +24985 : 37.597231 : -80.74638 : Wayside, WV +24986 : 37.861237 : -80.24008 : White Sulphur Springs, WV +24991 : 38.001124 : -80.48027 : Williamsburg, WV +24993 : 37.552029 : -80.539672 : Wolfcreek, WV +25002 : 38.129903 : -81.25882 : Alloy, WV +25003 : 38.254483 : -81.79045 : Alum Creek, WV +25004 : 37.784459 : -81.118491 : Ameagle, WV +25005 : 38.552755 : -81.24219 : Amma, WV +25007 : 37.832443 : -81.42991 : Arnett, WV +25008 : 37.933384 : -81.36076 : Artie, WV +25009 : 38.179811 : -81.72566 : Ashford, WV +25010 : 37.842289 : -81.61919 : Bald Knob, WV +25011 : 38.508675 : -81.84134 : Bancroft, WV +25015 : 38.224918 : -81.5151 : Belle, WV +25018 : 38.465777 : -81.050662 : Bentree, WV +25019 : 38.38338 : -81.08555 : Bickmore, WV +25021 : 37.922612 : -81.68729 : Bim, WV +25022 : 37.858735 : -81.81253 : Blair, WV +25024 : 38.143324 : -81.63578 : Bloomingrose, WV +25025 : 38.324795 : -81.38164 : Blount, WV +25026 : 38.490789 : -81.392845 : Blue Creek, WV +25028 : 37.948618 : -81.71199 : Bob White, WV +25030 : 38.453331 : -81.22481 : Bomont, WV +25031 : 38.151116 : -81.28483 : Boomer, WV +25033 : 38.61324 : -81.95406 : Buffalo, WV +25035 : 38.177823 : -81.49148 : Cabin Creek, WV +25036 : 38.199924 : -81.28865 : Cannelton, WV +25039 : 38.242575 : -81.39377 : Cedar Grove, WV +25040 : 38.12563 : -81.24499 : Charlton Heights, WV +25043 : 38.46791 : -81.0082 : Clay, WV +25044 : 37.90907 : -81.35066 : Clear Creek, WV +25045 : 38.464079 : -81.33836 : Clendenin, WV +25046 : 38.731737 : -81.314633 : Clio, WV +25047 : 37.950033 : -81.78924 : Clothier, WV +25048 : 37.949813 : -81.42024 : Colcord, WV +25049 : 38.131663 : -81.56282 : Comfort, WV +25051 : 38.161661 : -81.70438 : Costa, WV +25053 : 38.05738 : -81.86082 : Danville, WV +25054 : 38.108987 : -81.46418 : Dawes, WV +25057 : 38.126873 : -81.25954 : Deep Water, WV +25059 : 38.260339 : -81.19697 : Dixie, WV +25060 : 37.958702 : -81.47577 : Dorothy, WV +25061 : 38.296818 : -81.554655 : Drybranch, WV +25062 : 37.854572 : -81.453786 : Dry Creek, WV +25063 : 38.583094 : -80.94056 : Duck, WV +25064 : 38.367255 : -81.74473 : Dunbar, WV +25067 : 38.198471 : -81.44797 : East Bank, WV +25070 : 38.538953 : -81.93548 : Eleanor, WV +25071 : 38.451344 : -81.46602 : Elkview, WV +25075 : 38.046638 : -81.4311 : Eskdale, WV +25076 : 37.861621 : -81.90361 : Ethel, WV +25079 : 38.495072 : -81.398422 : Falling Rock, WV +25081 : 38.092103 : -81.75855 : Foster, WV +25082 : 38.621761 : -82.02827 : Fraziers Bottom, WV +25083 : 38.077863 : -81.37333 : Gallagher, WV +25085 : 38.176834 : -81.19688 : Gauley Bridge, WV +25086 : 38.214254 : -81.42028 : Glasgow, WV +25088 : 38.382145 : -81.19842 : Glen, WV +25090 : 38.149058 : -81.21276 : Glen Ferris, WV +25093 : 37.997105 : -81.71704 : Gordon, WV +25095 : 38.752312 : -81.997278 : Grimms Landing, WV +25102 : 38.186707 : -81.3639 : Handley, WV +25103 : 38.202669 : -81.39427 : Hansford, WV +25106 : 38.805615 : -82.11034 : Henderson, WV +25107 : 38.211477 : -81.60468 : Hernshaw, WV +25108 : 37.960963 : -81.85261 : Hewett, WV +25109 : 38.526637 : -81.85738 : Hometown, WV +25110 : 38.212287 : -81.34327 : Hugheston, WV +25111 : 38.391188 : -81.16398 : Indore, WV +25112 : 38.282497 : -81.56514 : Institute, WV +25113 : 38.557141 : -81.03747 : Ivydale, WV +25114 : 37.978787 : -81.81354 : Jeffrey, WV +25115 : 38.136263 : -81.20064 : Kanawha Falls, WV +25118 : 38.135059 : -81.30312 : Kimberly, WV +25119 : 38.024108 : -81.28534 : Kincaid, WV +25121 : 37.929438 : -81.90109 : Lake, WV +25122 : 38.296818 : -81.554655 : Leewood, WV +25123 : 38.743247 : -81.90281 : Leon, WV +25124 : 38.619376 : -81.76361 : Liberty, WV +25125 : 38.323058 : -81.19769 : Lizemores, WV +25126 : 38.186871 : -81.35285 : London, WV +25130 : 38.038145 : -81.79154 : Madison, WV +25132 : 38.293438 : -81.34526 : Mammoth, WV +25133 : 38.485889 : -81.13105 : Maysel, WV +25134 : 38.153818 : -81.44962 : Miami, WV +25136 : 38.175742 : -81.33047 : Montgomery, WV +25139 : 38.143496 : -81.29088 : Mount Carbon, WV +25140 : 37.883223 : -81.48001 : Naoma, WV +25141 : 38.642203 : -81.03691 : Nebo, WV +25142 : 37.997105 : -81.71704 : Nellis, WV +25143 : 38.417852 : -81.8321 : Nitro, WV +25147 : 38.296818 : -81.554655 : Ohley, WV +25148 : 38.04358 : -81.57171 : Orgas, WV +25149 : 37.957458 : -81.81583 : Ottawa, WV +25150 : 38.504506 : -81.15739 : Ovapa, WV +25152 : 38.052957 : -81.26966 : Page, WV +25154 : 38.136987 : -81.70112 : Peytona, WV +25156 : 38.401962 : -81.461063 : Pinch, WV +25159 : 38.49008 : -81.79515 : Poca, WV +25160 : 38.317053 : -81.29336 : Pond Gap, WV +25161 : 38.084773 : -81.31241 : Powellton, WV +25162 : 38.209912 : -81.38475 : Pratt, WV +25164 : 38.48444 : -81.19156 : Procious, WV +25165 : 38.140732 : -81.66005 : Racine, WV +25168 : 38.547027 : -81.88002 : Red House, WV +25169 : 38.18125 : -81.77755 : Ridgeview, WV +25173 : 38.072309 : -81.2457 : Robson, WV +25174 : 37.850007 : -81.4451 : Rock Creek, WV +25177 : 38.378841 : -81.82633 : Saint Albans, WV +25180 : 37.793057 : -81.384755 : Saxon, WV +25181 : 38.069687 : -81.62346 : Seth, WV +25182 : 38.296818 : -81.554655 : Sharon, WV +25183 : 37.909119 : -81.83666 : Sharples, WV +25185 : 38.041293 : -81.064784 : Mount Olive, WV +25186 : 38.176382 : -81.30575 : Smithers, WV +25187 : 38.72218 : -82.02759 : Southside, WV +25193 : 38.018753 : -81.55106 : Sylvester, WV +25201 : 38.296818 : -81.554655 : Tad, WV +25202 : 38.327452 : -81.84485 : Tornado, WV +25203 : 37.986266 : -81.942704 : Turtle Creek, WV +25204 : 37.898585 : -81.60628 : Twilight, WV +25205 : 38.021082 : -81.7733 : Uneeda, WV +25206 : 37.972887 : -81.71468 : Van, WV +25208 : 37.887883 : -81.67191 : Wharton, WV +25209 : 37.978232 : -81.53288 : Whitesville, WV +25211 : 38.462053 : -80.86627 : Widen, WV +25213 : 38.509445 : -81.90578 : Winfield, WV +25214 : 38.19411 : -81.54396 : Winifrede, WV +25231 : 38.597265 : -81.57934 : Advent, WV +25234 : 38.806907 : -81.12827 : Arnoldsburg, WV +25235 : 38.661766 : -81.07615 : Chloe, WV +25239 : 38.851872 : -81.84501 : Cottageville, WV +25241 : 38.792125 : -81.80117 : Evans, WV +25243 : 38.665227 : -81.47783 : Gandeeville, WV +25244 : 38.770723 : -81.55043 : Gay, WV +25245 : 38.698253 : -81.75416 : Given, WV +25247 : 39.005918 : -81.99083 : Hartford, WV +25248 : 38.631892 : -81.62048 : Kenna, WV +25250 : 38.752312 : -81.997278 : Lakin, WV +25251 : 38.618255 : -81.22913 : Left Hand, WV +25252 : 38.884 : -81.53807 : Le Roy, WV +25253 : 38.923595 : -81.97414 : Letart, WV +25256 : 38.731737 : -81.314633 : Linden, WV +25258 : 38.913649 : -80.831256 : Lockney, WV +25259 : 38.679327 : -81.27334 : Looneyville, WV +25260 : 39.017309 : -82.03031 : Mason, WV +25261 : 38.835085 : -81.10284 : Millstone, WV +25262 : 38.906099 : -81.83274 : Millwood, WV +25264 : 38.853643 : -81.8985 : Mount Alto, WV +25265 : 38.988059 : -81.96731 : New Haven, WV +25266 : 38.585331 : -81.17428 : Newton, WV +25267 : 38.849663 : -80.96569 : Normantown, WV +25268 : 38.73796 : -81.09478 : Orma, WV +25270 : 38.879098 : -81.42115 : Reedy, WV +25271 : 38.803814 : -81.70763 : Ripley, WV +25275 : 38.926713 : -81.6196 : Sandyville, WV +25276 : 38.780168 : -81.34244 : Spencer, WV +25279 : 38.732716 : -81.61753 : Statts Mills, WV +25281 : 38.682668 : -81.18846 : Tariff, WV +25283 : 38.536815 : -81.12623 : Valley Fork, WV +25285 : 38.566365 : -81.12923 : Wallback, WV +25286 : 38.617139 : -81.39537 : Walton, WV +25287 : 38.950609 : -82.0603 : West Columbia, WV +25301 : 38.350647 : -81.63028 : Charleston, WV +25302 : 38.375397 : -81.62367 : Charleston, WV +25303 : 38.362374 : -81.6863 : Charleston, WV +25304 : 38.313411 : -81.58564 : Charleston, WV +25305 : 38.335798 : -81.612344 : Charleston, WV +25306 : 38.310827 : -81.53106 : Charleston, WV +25309 : 38.329768 : -81.73418 : Charleston, WV +25311 : 38.351204 : -81.58198 : Charleston, WV +25312 : 38.414155 : -81.66166 : Charleston, WV +25313 : 38.425721 : -81.76168 : Charleston, WV +25314 : 38.335969 : -81.66084 : Charleston, WV +25315 : 38.23753 : -81.55661 : Charleston, WV +25317 : 38.335647 : -81.613794 : Charleston, WV +25320 : 38.530623 : -81.62565 : Charleston, WV +25321 : 38.296818 : -81.554655 : Charleston, WV +25322 : 38.534661 : -81.56035 : Charleston, WV +25323 : 38.296818 : -81.554655 : Charleston, WV +25324 : 38.296818 : -81.554655 : Charleston, WV +25325 : 38.296818 : -81.554655 : Charleston, WV +25326 : 38.296818 : -81.554655 : Charleston, WV +25327 : 38.296818 : -81.554655 : Charleston, WV +25328 : 38.296818 : -81.554655 : Charleston, WV +25329 : 38.296818 : -81.554655 : Charleston, WV +25330 : 38.296818 : -81.554655 : Charleston, WV +25331 : 38.296818 : -81.554655 : Charleston, WV +25332 : 38.296818 : -81.554655 : Charleston, WV +25333 : 38.296818 : -81.554655 : Charleston, WV +25334 : 38.296818 : -81.554655 : Charleston, WV +25335 : 38.296818 : -81.554655 : Charleston, WV +25336 : 38.296818 : -81.554655 : Charleston, WV +25337 : 38.296818 : -81.554655 : Charleston, WV +25338 : 38.296818 : -81.554655 : Charleston, WV +25339 : 38.296818 : -81.554655 : Charleston, WV +25350 : 38.296818 : -81.554655 : Charleston, WV +25356 : 38.296818 : -81.554655 : Charleston, WV +25357 : 38.296818 : -81.554655 : Charleston, WV +25358 : 38.296818 : -81.554655 : Charleston, WV +25360 : 38.296818 : -81.554655 : Charleston, WV +25361 : 38.296818 : -81.554655 : Charleston, WV +25362 : 38.296818 : -81.554655 : Charleston, WV +25364 : 38.296818 : -81.554655 : Charleston, WV +25365 : 38.296818 : -81.554655 : Charleston, WV +25375 : 38.296818 : -81.554655 : Charleston, WV +25387 : 38.296818 : -81.554655 : Charleston, WV +25389 : 38.354041 : -81.639389 : Charleston, WV +25392 : 38.296818 : -81.554655 : Charleston, WV +25396 : 38.296818 : -81.554655 : Charleston, WV +25401 : 39.463781 : -77.95767 : Martinsburg, WV +25402 : 39.461663 : -78.011472 : Martinsburg, WV +25410 : 39.315914 : -77.877223 : Bakerton, WV +25411 : 39.567987 : -78.22783 : Berkeley Springs, WV +25413 : 39.323628 : -78.04157 : Bunker Hill, WV +25414 : 39.279965 : -77.86203 : Charles Town, WV +25419 : 39.58132 : -77.8804 : Falling Waters, WV +25420 : 39.379281 : -78.12229 : Gerrardstown, WV +25421 : 39.372769 : -78.1676 : Glengary, WV +25422 : 39.571804 : -78.37183 : Great Cacapon, WV +25423 : 39.315914 : -77.877223 : Halltown, WV +25425 : 39.272324 : -77.77982 : Harpers Ferry, WV +25427 : 39.540636 : -78.05882 : Hedgesville, WV +25428 : 39.368967 : -78.02742 : Inwood, WV +25429 : 39.349586 : -77.878957 : Kearneysville, WV +25430 : 39.349476 : -77.93415 : Kearneysville, WV +25431 : 39.50219 : -78.55592 : Levels, WV +25432 : 39.315914 : -77.877223 : Millville, WV +25434 : 39.500633 : -78.43726 : Paw Paw, WV +25437 : 39.418178 : -78.57871 : Points, WV +25438 : 39.300223 : -77.8599 : Ranson, WV +25440 : 39.442661 : -78.02628 : Ridgeway, WV +25441 : 39.210527 : -77.91403 : Rippon, WV +25442 : 39.358159 : -77.83296 : Shenandoah Junction, WV +25443 : 39.434479 : -77.81132 : Shepherdstown, WV +25444 : 39.412828 : -78.52587 : Slanesville, WV +25446 : 39.247155 : -77.95747 : Summit Point, WV +25501 : 38.169041 : -81.92567 : Alkol, WV +25502 : 38.669561 : -82.12662 : Apple Grove, WV +25503 : 38.613255 : -82.12468 : Ashton, WV +25504 : 38.391209 : -82.28563 : Barboursville, WV +25505 : 38.009633 : -82.04481 : Big Creek, WV +25506 : 38.214232 : -82.191 : Branchland, WV +25507 : 38.396081 : -82.55881 : Ceredo, WV +25508 : 37.962522 : -82.01954 : Chapmanville, WV +25510 : 38.399499 : -82.06562 : Culloden, WV +25511 : 38.011587 : -82.38072 : Dunlow, WV +25512 : 38.20651 : -82.34523 : East Lynn, WV +25514 : 38.101664 : -82.5456 : Fort Gay, WV +25515 : 38.764623 : -82.16003 : Gallipolis Ferry, WV +25517 : 38.116605 : -82.46238 : Genoa, WV +25519 : 38.132114 : -82.418277 : Glenhayes, WV +25520 : 38.558344 : -82.17149 : Glenwood, WV +25521 : 38.238045 : -81.98991 : Griffithsville, WV +25523 : 38.280976 : -82.08584 : Hamlin, WV +25524 : 38.02644 : -82.1086 : Harts, WV +25526 : 38.427011 : -81.9896 : Hurricane, WV +25529 : 38.152035 : -81.84153 : Julian, WV +25530 : 38.385975 : -82.57461 : Kenova, WV +25534 : 38.082632 : -82.27115 : Kiahsville, WV +25535 : 38.30329 : -82.44551 : Lavalette, WV +25537 : 38.534701 : -82.27982 : Lesage, WV +25540 : 38.159971 : -82.12506 : Midkiff, WV +25541 : 38.440316 : -82.13535 : Milton, WV +25543 : 39.43028 : -77.807994 : Shepherdstown, WV +25544 : 38.219991 : -82.11462 : Myra, WV +25545 : 38.44068 : -82.22311 : Ona, WV +25547 : 37.925145 : -81.95826 : Pecks Mill, WV +25550 : 38.87018 : -82.10751 : Point Pleasant, WV +25555 : 38.238942 : -82.58178 : Prichard, WV +25557 : 38.106001 : -82.15143 : Ranger, WV +25559 : 38.324409 : -82.22242 : Salt Rock, WV +25560 : 38.446225 : -81.90315 : Scott Depot, WV +25562 : 38.343176 : -82.490494 : Shoals, WV +25564 : 38.268079 : -81.88769 : Sod, WV +25565 : 38.106045 : -81.99598 : Spurlockville, WV +25567 : 38.219996 : -81.85414 : Sumerco, WV +25569 : 38.475369 : -81.880455 : Teays, WV +25570 : 38.225065 : -82.43909 : Wayne, WV +25571 : 38.290859 : -82.17566 : West Hamlin, WV +25572 : 38.187456 : -81.901236 : Woodville, WV +25573 : 38.229352 : -81.94543 : Yawkey, WV +25601 : 37.833826 : -82.00011 : Logan, WV +25606 : 37.75979 : -81.82027 : Accoville, WV +25607 : 37.788146 : -81.80248 : Amherstdale, WV +25608 : 37.55612 : -81.92315 : Baisden, WV +25611 : 37.690439 : -81.85711 : Bruno, WV +25612 : 37.76662 : -81.98755 : Chauncey, WV +25614 : 37.833204 : -81.902401 : Cora, WV +25617 : 37.733955 : -81.81897 : Davin, WV +25621 : 37.625805 : -81.90186 : Gilbert, WV +25623 : 37.743063 : -82.10801 : Hampden, WV +25624 : 37.904732 : -81.9827 : Henlawson, WV +25625 : 37.827404 : -82.06382 : Holden, WV +25628 : 37.757905 : -81.85517 : Kistler, WV +25630 : 37.80126 : -81.70802 : Lorado, WV +25631 : 37.790435 : -81.784532 : Amherstdale-Robinette, WV +25632 : 37.779196 : -81.91651 : Lyburn, WV +25634 : 37.72738 : -81.84577 : Mallory, WV +25635 : 37.729265 : -81.87853 : Man, WV +25636 : 37.808757 : -81.99433 : Monaville, WV +25637 : 37.849418 : -82.02174 : Mount Gay, WV +25638 : 37.734818 : -82.01452 : Omar, WV +25639 : 37.878311 : -81.96519 : Peach Creek, WV +25644 : 37.688162 : -81.98826 : Sarah Ann, WV +25645 : 37.833204 : -81.902401 : Stirrat, WV +25646 : 37.837136 : -81.95921 : Stollings, WV +25647 : 37.793612 : -81.98738 : Switzer, WV +25649 : 37.852728 : -82.06678 : Verdunville, WV +25650 : 37.686815 : -81.81441 : Verner, WV +25651 : 37.555503 : -81.96819 : Wharncliffe, WV +25652 : 37.800168 : -82.03943 : Whitman, WV +25653 : 37.828926 : -81.99936 : Wilkinson, WV +25654 : 37.801671 : -81.87113 : Yolyn, WV +25661 : 37.705144 : -82.26827 : Williamson, WV +25665 : 37.714369 : -82.30873 : Borderland, WV +25666 : 37.924415 : -82.27394 : Breeden, WV +25667 : 37.703827 : -82.27824 : Chattaroy, WV +25669 : 37.938427 : -82.4254 : Crum, WV +25670 : 37.705946 : -82.14416 : Delbarton, WV +25671 : 37.863118 : -82.21671 : Dingess, WV +25672 : 37.570813 : -82.13578 : Edgarton, WV +25674 : 37.860845 : -82.37574 : Kermit, WV +25676 : 37.818843 : -82.27267 : Lenore, WV +25678 : 37.617949 : -82.16397 : Matewan, WV +25682 : 37.583945 : -82.04459 : Meador, WV +25685 : 37.786897 : -82.34373 : Naugatuck, WV +25686 : 37.743063 : -82.10801 : Newtown, WV +25687 : 37.743063 : -82.10801 : Nolan, WV +25688 : 37.627833 : -82.14774 : North Matewan, WV +25690 : 37.743063 : -82.10801 : Ragland, WV +25691 : 37.643043 : -82.21701 : Rawl, WV +25692 : 37.640357 : -82.13265 : Red Jacket, WV +25694 : 37.743063 : -82.10801 : Thacker, WV +25696 : 37.669222 : -82.12599 : Varney, WV +25697 : 37.743063 : -82.10801 : Vulcan, WV +25699 : 37.966899 : -82.29414 : Wilsondale, WV +25701 : 38.403511 : -82.43904 : Huntington, WV +25702 : 38.431116 : -82.37019 : Huntington, WV +25703 : 38.421443 : -82.41924 : Huntington, WV +25704 : 38.386966 : -82.49609 : Huntington, WV +25705 : 38.410745 : -82.36995 : Huntington, WV +25706 : 38.413384 : -82.277401 : Huntington, WV +25707 : 38.413384 : -82.277401 : Huntington, WV +25708 : 38.413384 : -82.277401 : Huntington, WV +25709 : 38.132114 : -82.418277 : Huntington, WV +25710 : 38.413384 : -82.277401 : Huntington, WV +25711 : 38.413384 : -82.277401 : Huntington, WV +25712 : 38.413384 : -82.277401 : Huntington, WV +25713 : 38.413384 : -82.277401 : Huntington, WV +25714 : 38.413384 : -82.277401 : Huntington, WV +25715 : 38.413384 : -82.277401 : Huntington, WV +25716 : 38.413384 : -82.277401 : Huntington, WV +25717 : 38.413384 : -82.277401 : Huntington, WV +25718 : 38.413384 : -82.277401 : Huntington, WV +25719 : 38.413384 : -82.277401 : Huntington, WV +25720 : 38.413384 : -82.277401 : Huntington, WV +25721 : 38.413384 : -82.277401 : Huntington, WV +25722 : 38.413384 : -82.277401 : Huntington, WV +25723 : 38.413384 : -82.277401 : Huntington, WV +25724 : 38.413384 : -82.277401 : Huntington, WV +25725 : 38.413384 : -82.277401 : Huntington, WV +25726 : 38.413384 : -82.277401 : Huntington, WV +25727 : 38.413384 : -82.277401 : Huntington, WV +25728 : 38.413384 : -82.277401 : Huntington, WV +25729 : 38.413384 : -82.277401 : Huntington, WV +25755 : 38.422115 : -82.431667 : Huntington, WV +25770 : 38.413384 : -82.277401 : Huntington, WV +25771 : 38.413384 : -82.277401 : Huntington, WV +25772 : 38.413384 : -82.277401 : Huntington, WV +25773 : 38.413384 : -82.277401 : Huntington, WV +25774 : 38.413384 : -82.277401 : Huntington, WV +25775 : 38.413384 : -82.277401 : Huntington, WV +25776 : 38.413384 : -82.277401 : Huntington, WV +25777 : 38.413384 : -82.277401 : Huntington, WV +25778 : 38.413384 : -82.277401 : Huntington, WV +25779 : 38.413384 : -82.277401 : Huntington, WV +25801 : 37.79064 : -81.19958 : Beckley, WV +25802 : 37.748935 : -81.224458 : Beckley, WV +25810 : 37.603344 : -81.53998 : Allen Junction, WV +25811 : 37.603344 : -81.53998 : Amigo, WV +25812 : 38.138419 : -81.10403 : Ansted, WV +25813 : 37.754656 : -81.11304 : Beaver, WV +25816 : 37.735161 : -81.136328 : Blue Jay, WV +25817 : 37.77672 : -81.41377 : Bolt, WV +25818 : 37.865746 : -81.19244 : Bradley, WV +25820 : 37.504558 : -81.11622 : Camp Creek, WV +25823 : 37.679582 : -81.20968 : Coal City, WV +25825 : 37.648813 : -81.11241 : Cool Ridge, WV +25826 : 37.577807 : -81.35319 : Corinne, WV +25827 : 37.733391 : -81.23769 : Crab Orchard, WV +25831 : 37.950115 : -80.92051 : Danese, WV +25832 : 37.728559 : -81.10364 : Daniels, WV +25833 : 38.041293 : -81.064784 : Dothan, WV +25836 : 37.777391 : -81.26443 : Eccles, WV +25837 : 38.048578 : -81.03387 : Edmond, WV +25839 : 37.776961 : -81.36179 : Fairdale, WV +25840 : 38.059415 : -81.11208 : Fayetteville, WV +25841 : 37.557975 : -81.09537 : Flat Top, WV +25843 : 37.618115 : -81.10724 : Ghent, WV +25844 : 37.802995 : -81.36495 : Glen Daniel, WV +25845 : 37.687988 : -81.5314 : Glen Fork, WV +25846 : 37.927809 : -81.15174 : Glen Jean, WV +25847 : 37.72329 : -81.17444 : Glen Morgan, WV +25848 : 37.714713 : -81.41815 : Glen Rogers, WV +25849 : 37.731521 : -81.28108 : Glen White, WV +25851 : 37.802469 : -81.282759 : Harper, WV +25853 : 37.63215 : -81.31644 : Helen, WV +25854 : 38.128245 : -80.99151 : Hico, WV +25855 : 37.94251 : -81.14995 : Hilltop, WV +25856 : 37.653792 : -81.18833 : Jonben, WV +25857 : 37.625307 : -81.25093 : Josephine, WV +25859 : 38.041293 : -81.064784 : Kilsyth, WV +25860 : 37.748935 : -81.224458 : Lanark, WV +25862 : 38.079509 : -81.06238 : Lansing, WV +25864 : 37.906682 : -80.99175 : Layland, WV +25865 : 37.737104 : -81.32536 : Lester, WV +25866 : 38.007725 : -81.1391 : Lochgelly, WV +25868 : 38.073479 : -80.9522 : Lookout, WV +25870 : 37.67337 : -81.42001 : Maben, WV +25871 : 37.771364 : -81.2093 : Mabscott, WV +25873 : 37.7517 : -81.214825 : Mac Arthur, WV +25875 : 37.68344 : -81.44608 : McGraws, WV +25876 : 37.603344 : -81.53998 : Saulsville, WV +25878 : 37.715335 : -81.24131 : Midway, WV +25879 : 37.980561 : -81.10208 : Minden, WV +25880 : 37.88169 : -81.19273 : Mount Hope, WV +25882 : 37.596209 : -81.38193 : Mullens, WV +25898 : 37.698351 : -81.081333 : Shady Spring, WV +25901 : 37.982775 : -81.14533 : Oak Hill, WV +25902 : 37.589172 : -81.2324 : Odd, WV +25904 : 37.935699 : -81.26724 : Pax, WV +25906 : 37.837573 : -81.128631 : Piney View, WV +25907 : 37.855763 : -81.06673 : Prince, WV +25908 : 37.663234 : -81.23911 : Princewick, WV +25909 : 37.837706 : -81.19722 : Prosperity, WV +25911 : 37.758469 : -81.167549 : Raleigh, WV +25912 : 38.041293 : -81.064784 : Ramsey, WV +25913 : 37.699568 : -81.48138 : Ravencliff, WV +25914 : 38.041293 : -81.064784 : Redstar, WV +25915 : 37.608562 : -81.3019 : Rhodell, WV +25916 : 37.677563 : -81.50071 : Sabine, WV +25917 : 37.964622 : -81.21634 : Scarbro, WV +25918 : 37.712469 : -81.00561 : Shady Spring, WV +25919 : 37.800481 : -81.180561 : Skelton, WV +25920 : 37.683749 : -81.34359 : Slab Fork, WV +25921 : 37.70708 : -81.26263 : Sophia, WV +25922 : 37.467516 : -81.11672 : Spanishburg, WV +25926 : 37.787252 : -81.195122 : Sprague, WV +25927 : 37.748935 : -81.224458 : Stanaford, WV +25928 : 37.576978 : -81.33086 : Stephenson, WV +25931 : 38.041293 : -81.064784 : Summerlee, WV +25932 : 37.764498 : -81.3169 : Surveyor, WV +25934 : 37.848955 : -81.093678 : Terry, WV +25936 : 37.930061 : -81.05964 : Thurmond, WV +25938 : 38.151832 : -81.05101 : Victor, WV +25942 : 38.040215 : -80.99702 : Winona, WV +25943 : 37.603344 : -81.53998 : Wyco, WV +25951 : 37.671295 : -80.86867 : Hinton, WV +25958 : 38.012459 : -80.72757 : Charmco, WV +25961 : 37.975595 : -80.426874 : Crichton, WV +25962 : 37.966816 : -80.7889 : Rainelle, WV +25965 : 37.648541 : -80.877395 : Elton, WV +25966 : 37.798406 : -80.77039 : Green Sulphur Springs, WV +25967 : 37.975595 : -80.426874 : Hines, WV +25969 : 37.630988 : -81.00955 : Jumping Branch, WV +25971 : 37.478519 : -80.95735 : Lerona, WV +25972 : 38.048182 : -80.74821 : Leslie, WV +25976 : 37.854735 : -80.84199 : Meadow Bridge, WV +25977 : 37.808181 : -80.92321 : Meadow Creek, WV +25978 : 37.645397 : -80.92422 : Nimitz, WV +25979 : 37.49671 : -80.91401 : Pipestem, WV +25981 : 38.07743 : -80.72476 : Quinwood, WV +25984 : 37.981358 : -80.66798 : Rupert, WV +25985 : 37.772844 : -80.86438 : Sandstone, WV +25986 : 37.878258 : -80.80217 : Spring Dale, WV +25988 : 37.648541 : -80.877395 : True, WV +25989 : 37.67906 : -81.03591 : White Oak, WV +26003 : 40.071472 : -80.6868 : Wheeling, WV +26030 : 40.219614 : -80.65404 : Beech Bottom, WV +26031 : 40.013637 : -80.72744 : Benwood, WV +26032 : 40.198956 : -80.54683 : Bethany, WV +26033 : 39.81304 : -80.58446 : Cameron, WV +26034 : 40.609272 : -80.55893 : Chester, WV +26035 : 40.352943 : -80.55585 : Colliers, WV +26036 : 39.974547 : -80.53003 : Dallas, WV +26037 : 40.330969 : -80.58889 : Follansbee, WV +26038 : 39.951586 : -80.74994 : Glen Dale, WV +26039 : 39.835605 : -80.67752 : Glen Easton, WV +26040 : 39.987177 : -80.73048 : McMechen, WV +26041 : 39.912923 : -80.73701 : Moundsville, WV +26047 : 40.519953 : -80.58925 : New Cumberland, WV +26050 : 40.616853 : -80.60454 : Newell, WV +26055 : 39.768143 : -80.79867 : Proctor, WV +26056 : 40.5323 : -80.57999 : New Manchester, WV +26058 : 40.27932 : -80.599949 : Short Creek, WV +26059 : 40.063895 : -80.6091 : Triadelphia, WV +26060 : 40.104818 : -80.54634 : Valley Grove, WV +26062 : 40.412067 : -80.57542 : Weirton, WV +26070 : 40.266698 : -80.59709 : Wellsburg, WV +26074 : 40.167471 : -80.59377 : West Liberty, WV +26075 : 40.190886 : -80.66613 : Windsor Heights, WV +26101 : 39.265408 : -81.53706 : Parkersburg, WV +26102 : 39.218276 : -81.497865 : Parkersburg, WV +26103 : 39.236427 : -81.540501 : Parkersburg, WV +26104 : 39.285724 : -81.52639 : Parkersburg, WV +26105 : 39.323907 : -81.54206 : Vienna, WV +26106 : 39.218276 : -81.497865 : Parkersburg, WV +26120 : 39.218276 : -81.497865 : Mineral Wells, WV +26121 : 39.218276 : -81.497865 : Mineral Wells, WV +26133 : 39.122989 : -81.68365 : Belleville, WV +26134 : 39.374773 : -81.27886 : Belmont, WV +26135 : 39.450612 : -80.870081 : Bens Run, WV +26136 : 38.977792 : -81.13917 : Big Bend, WV +26137 : 38.991483 : -81.06772 : Big Springs, WV +26138 : 39.03594 : -81.18787 : Brohard, WV +26141 : 38.939317 : -81.24459 : Creston, WV +26142 : 39.2059 : -81.46549 : Davisville, WV +26143 : 39.070067 : -81.40762 : Elizabeth, WV +26145 : 39.288336 : -80.968967 : Pennsboro, WV +26146 : 39.462447 : -81.05091 : Friendly, WV +26147 : 38.911018 : -81.07278 : Grantsville, WV +26148 : 39.065862 : -81.18722 : Macfarlan, WV +26149 : 39.481247 : -80.87533 : Middlebourne, WV +26150 : 39.162229 : -81.53788 : Mineral Wells, WV +26151 : 38.885826 : -81.16885 : Mount Zion, WV +26152 : 38.988098 : -81.20721 : Munday, WV +26155 : 39.646099 : -80.83465 : New Martinsville, WV +26159 : 39.604088 : -80.93276 : Paden City, WV +26160 : 38.971224 : -81.40218 : Palestine, WV +26161 : 39.173299 : -81.25595 : Petroleum, WV +26162 : 39.576419 : -80.77211 : Porters Falls, WV +26164 : 38.977445 : -81.72789 : Ravenswood, WV +26167 : 39.550395 : -80.71163 : Reader, WV +26169 : 39.076628 : -81.55299 : Rockport, WV +26170 : 39.370217 : -81.17215 : Saint Marys, WV +26173 : 38.95192 : -81.709496 : Sherman, WV +26175 : 39.547803 : -80.97408 : Sistersville, WV +26178 : 39.059792 : -81.02943 : Smithville, WV +26180 : 39.179485 : -81.37836 : Walker, WV +26181 : 39.220948 : -81.66508 : Washington, WV +26184 : 39.306083 : -81.36639 : Waverly, WV +26186 : 39.619007 : -80.61225 : Wileyville, WV +26187 : 39.387718 : -81.44585 : Williamstown, WV +26201 : 38.997267 : -80.20915 : Buckhannon, WV +26202 : 38.224393 : -80.61391 : Fenwick, WV +26203 : 38.520078 : -80.59518 : Erbacon, WV +26205 : 38.330842 : -80.64803 : Craigsville, WV +26206 : 38.424309 : -80.53771 : Cowen, WV +26208 : 38.364123 : -80.5902 : Camden On Gauley, WV +26209 : 38.422376 : -79.99344 : Snowshoe, WV +26210 : 38.900064 : -80.26795 : Adrian, WV +26215 : 38.716238 : -80.39927 : Cleveland, WV +26217 : 38.60286 : -80.4595 : Diana, WV +26218 : 38.857567 : -80.27872 : French Creek, WV +26219 : 38.899314 : -80.226855 : Frenchton, WV +26222 : 38.663739 : -80.39794 : Hacker Valley, WV +26224 : 38.735363 : -80.18033 : Helvetia, WV +26228 : 38.753031 : -80.38231 : Kanawha Head, WV +26229 : 38.899314 : -80.226855 : Lorentz, WV +26230 : 38.66362 : -80.24361 : Pickens, WV +26234 : 38.792214 : -80.3159 : Rock Cave, WV +26236 : 38.752157 : -80.23537 : Selbyville, WV +26237 : 38.854653 : -80.15531 : Tallmansville, WV +26238 : 39.091657 : -80.1442 : Volga, WV +26241 : 38.920042 : -79.8446 : Elkins, WV +26250 : 39.032644 : -79.95295 : Belington, WV +26253 : 38.827205 : -79.89057 : Beverly, WV +26254 : 38.918159 : -79.63227 : Bowden, WV +26257 : 38.916124 : -80.00221 : Coalton, WV +26259 : 38.798094 : -79.89941 : Dailey, WV +26260 : 39.101535 : -79.43805 : Davis, WV +26261 : 38.224781 : -80.5425 : Richwood, WV +26263 : 38.992079 : -79.40533 : Dryfork, WV +26264 : 38.55181 : -79.83449 : Durbin, WV +26266 : 38.41012 : -80.49595 : Upperglade, WV +26267 : 38.912609 : -80.07907 : Ellamore, WV +26268 : 38.780919 : -79.74674 : Glady, WV +26269 : 39.097545 : -79.63848 : Hambleton, WV +26270 : 38.915141 : -79.53066 : Harman, WV +26271 : 39.042297 : -79.60611 : Hendricks, WV +26273 : 38.671662 : -79.98029 : Huttonsville, WV +26275 : 38.97639 : -79.95201 : Junior, WV +26276 : 39.019639 : -79.74614 : Kerens, WV +26278 : 38.861656 : -80.00402 : Mabie, WV +26280 : 38.736144 : -80 : Mill Creek, WV +26282 : 38.518735 : -80.14368 : Monterville, WV +26283 : 39.067689 : -79.82219 : Montrose, WV +26285 : 38.934414 : -79.96518 : Norton, WV +26287 : 39.141165 : -79.67466 : Parsons, WV +26288 : 38.484777 : -80.38023 : Webster Springs, WV +26289 : 38.99095 : -79.50217 : Red Creek, WV +26291 : 38.444873 : -80.09781 : Slatyfork, WV +26292 : 39.149624 : -79.5003 : Thomas, WV +26293 : 38.758699 : -79.91798 : Valley Bend, WV +26294 : 38.52061 : -80.03629 : Valley Head, WV +26296 : 38.810555 : -79.54723 : Whitmer, WV +26298 : 38.480062 : -80.29679 : Bergoo, WV +26301 : 39.281289 : -80.34348 : Clarksburg, WV +26302 : 39.26277 : -80.30858 : Clarksburg, WV +26306 : 39.285204 : -80.385344 : Clarksburg, WV +26320 : 39.41849 : -80.80604 : Alma, WV +26321 : 39.051863 : -80.6844 : Alum Bridge, WV +26323 : 39.258328 : -80.28798 : Anmoore, WV +26325 : 39.095644 : -80.86182 : Auburn, WV +26327 : 39.122023 : -80.95448 : Berea, WV +26328 : 39.270846 : -80.719742 : Blandville, WV +26330 : 39.296499 : -80.24199 : Bridgeport, WV +26332 : 39.286975 : -80.50197 : Bristol, WV +26333 : 38.859246 : -80.657019 : Burnsville, WV +26334 : 39.220701 : -80.15881 : Brownton, WV +26335 : 38.856879 : -80.66528 : Burnsville, WV +26337 : 39.228729 : -81.16135 : Cairo, WV +26338 : 39.09666 : -80.62283 : Camden, WV +26339 : 39.42039 : -80.60204 : Center Point, WV +26342 : 39.018602 : -80.85231 : Coxs Mills, WV +26343 : 38.85389 : -80.40589 : Crawford, WV +26346 : 39.270902 : -81.06189 : Ellenboro, WV +26347 : 39.258358 : -80.12604 : Flemington, WV +26348 : 39.472363 : -80.5275 : Folsom, WV +26349 : 39.226574 : -80.08514 : Galloway, WV +26350 : 38.913649 : -80.831256 : Gilmer, WV +26351 : 38.939952 : -80.84886 : Glenville, WV +26354 : 39.343418 : -80.02665 : Grafton, WV +26361 : 39.368814 : -80.31872 : Gypsy, WV +26362 : 39.171784 : -81.05325 : Harrisville, WV +26366 : 39.380098 : -80.33785 : Haywood, WV +26369 : 39.328064 : -80.33566 : Hepzibah, WV +26372 : 38.969579 : -80.36881 : Horner, WV +26374 : 39.436084 : -79.87873 : Independence, WV +26375 : 39.279818 : -80.575379 : Industrial, WV +26376 : 38.766855 : -80.46172 : Ireland, WV +26377 : 39.485593 : -80.64053 : Jacksonburg, WV +26378 : 39.106153 : -80.42691 : Jane Lew, WV +26384 : 38.983677 : -80.70654 : Linn, WV +26385 : 39.163304 : -80.35527 : Lost Creek, WV +26386 : 39.378137 : -80.3709 : Lumberport, WV +26404 : 39.344303 : -80.31744 : Meadowbrook, WV +26405 : 39.230125 : -79.89397 : Moatsville, WV +26407 : 39.198501 : -81.068913 : Mountain, WV +26408 : 39.205852 : -80.29416 : Mount Clare, WV +26410 : 39.39905 : -79.82996 : Newburg, WV +26411 : 39.185707 : -80.71039 : New Milton, WV +26412 : 38.891517 : -80.5648 : Orlando, WV +26415 : 39.294877 : -80.96009 : Pennsboro, WV +26416 : 39.155551 : -80.02419 : Philippi, WV +26419 : 39.551892 : -80.67076 : Pine Grove, WV +26421 : 39.183473 : -80.92668 : Pullman, WV +26422 : 39.285303 : -80.44628 : Reynoldsville, WV +26424 : 39.268207 : -80.1652 : Rosemont, WV +26425 : 39.320034 : -79.68442 : Rowlesburg, WV +26426 : 39.284467 : -80.57219 : Salem, WV +26430 : 38.891042 : -80.74656 : Sand Fork, WV +26431 : 39.392285 : -80.28438 : Shinnston, WV +26434 : 39.450612 : -80.870081 : Shirley, WV +26435 : 39.266262 : -80.09206 : Simpson, WV +26436 : 39.287254 : -80.73186 : Smithburg, WV +26437 : 39.513468 : -80.53196 : Smithfield, WV +26438 : 39.346726 : -80.31889 : Spelter, WV +26440 : 39.329797 : -79.90371 : Thornton, WV +26443 : 39.080329 : -80.76956 : Troy, WV +26444 : 39.377589 : -79.76428 : Tunnelton, WV +26447 : 38.881069 : -80.47432 : Walkersville, WV +26448 : 39.407957 : -80.48869 : Wallace, WV +26451 : 39.204169 : -80.40294 : West Milford, WV +26452 : 39.04101 : -80.47731 : Weston, WV +26456 : 39.293095 : -80.77811 : West Union, WV +26461 : 39.285204 : -80.385344 : Wilsonburg, WV +26462 : 39.03525 : -80.467765 : Weston, WV +26463 : 39.440245 : -80.35233 : Wyatt, WV +26501 : 39.628475 : -79.98796 : Morgantown, WV +26502 : 39.625302 : -79.967184 : Morgantown, WV +26503 : 39.636606 : -79.895639 : Morgantown, WV +26504 : 39.578512 : -80.093007 : Morgantown, WV +26505 : 39.646497 : -79.95154 : Morgantown, WV +26506 : 39.645276 : -79.962669 : Morgantown, WV +26507 : 39.680786 : -79.836473 : Morgantown, WV +26508 : 39.61098 : -79.89947 : Morgantown, WV +26519 : 39.539088 : -79.63241 : Albright, WV +26520 : 39.497676 : -79.82003 : Arthurdale, WV +26521 : 39.718922 : -80.21137 : Blacksville, WV +26522 : 39.578512 : -80.093007 : Booth, WV +26524 : 39.458091 : -79.688154 : Bretz, WV +26525 : 39.646876 : -79.59847 : Bruceton Mills, WV +26527 : 39.578512 : -80.093007 : Cassville, WV +26529 : 39.68903 : -80.14113 : Core, WV +26531 : 39.607447 : -79.89012 : Dellslow, WV +26533 : 39.578512 : -80.093007 : Everettville, WV +26534 : 39.646705 : -79.98826 : Granville, WV +26535 : 39.458091 : -79.688154 : Hazelton, WV +26537 : 39.472924 : -79.69873 : Kingwood, WV +26541 : 39.69234 : -79.97335 : Maidsville, WV +26542 : 39.561031 : -79.79533 : Masontown, WV +26543 : 39.660624 : -80.0072 : Osage, WV +26544 : 39.707009 : -80.16451 : Pentress, WV +26546 : 39.674575 : -80.034965 : Pursglove, WV +26547 : 39.509001 : -79.80521 : Reedsville, WV +26554 : 39.470949 : -80.13936 : Fairmont, WV +26555 : 39.514343 : -80.218538 : Fairmont, WV +26559 : 39.5017 : -80.1664 : Barrackville, WV +26560 : 39.514343 : -80.218538 : Baxter, WV +26561 : 39.575518 : -80.666712 : Big Run, WV +26562 : 39.646936 : -80.44192 : Burton, WV +26563 : 39.480838 : -80.27183 : Carolina, WV +26566 : 39.514343 : -80.218538 : Colfax, WV +26568 : 39.422397 : -80.27564 : Enterprise, WV +26570 : 39.642393 : -80.23405 : Fairview, WV +26571 : 39.513513 : -80.25738 : Farmington, WV +26572 : 39.48057 : -80.30851 : Four States, WV +26574 : 39.558702 : -80.17617 : Grant Town, WV +26575 : 39.696744 : -80.43872 : Hundred, WV +26576 : 39.494727 : -80.25872 : Idamay, WV +26578 : 39.446631 : -80.176171 : Kingmont, WV +26581 : 39.695772 : -80.53077 : Littleton, WV +26582 : 39.527817 : -80.3586 : Mannington, WV +26585 : 39.611767 : -80.41237 : Metz, WV +26586 : 39.525505 : -80.10866 : Montana Mines, WV +26587 : 39.520705 : -80.30336 : Rachel, WV +26588 : 39.549346 : -80.13097 : Rivesville, WV +26589 : 39.668566 : -80.335 : Wadestown, WV +26590 : 39.704464 : -80.27178 : Wana, WV +26591 : 39.452034 : -80.27599 : Worthington, WV +26601 : 38.641439 : -80.67497 : Sutton, WV +26610 : 38.465291 : -80.72323 : Birch River, WV +26611 : 38.833295 : -80.80006 : Cedarville, WV +26612 : 38.620506 : -80.586148 : Centralia, WV +26615 : 38.836102 : -80.72573 : Copen, WV +26617 : 38.49119 : -80.83069 : Dille, WV +26618 : 38.706017 : -80.736884 : Elmira, WV +26619 : 38.788013 : -80.73291 : Exchange, WV +26621 : 38.728405 : -80.58745 : Flatwoods, WV +26623 : 38.653616 : -80.86194 : Frametown, WV +26624 : 38.704457 : -80.79366 : Gassaway, WV +26627 : 38.767682 : -80.61266 : Heaters, WV +26629 : 38.553898 : -80.69864 : Little Birch, WV +26630 : 39.280867 : -80.249302 : Bridgeport, WV +26631 : 38.790368 : -80.57981 : Napier, WV +26634 : 38.786153 : -80.91878 : Perkins, WV +26636 : 38.74076 : -80.9435 : Rosedale, WV +26638 : 38.7357 : -80.98431 : Shock, WV +26639 : 38.55291 : -80.86928 : Strange Creek, WV +26641 : 38.690755 : -80.90285 : Wilsie, WV +26651 : 38.30696 : -80.87329 : Summersville, WV +26656 : 38.244559 : -81.16153 : Belva, WV +26660 : 38.355607 : -80.69639 : Calvin, WV +26662 : 38.245298 : -80.75434 : Canvas, WV +26667 : 38.268633 : -80.98148 : Drennen, WV +26671 : 38.302121 : -80.93549 : Gilboa, WV +26674 : 38.210552 : -81.13906 : Jodie, WV +26675 : 38.318389 : -80.834152 : Keslers Cross Lanes, WV +26676 : 38.153472 : -80.66112 : Leivasy, WV +26678 : 38.15798 : -80.91002 : Mount Lookout, WV +26679 : 38.1755 : -80.80897 : Mount Nebo, WV +26680 : 38.090457 : -80.88462 : Nallen, WV +26681 : 38.218258 : -80.70048 : Nettie, WV +26684 : 38.163524 : -80.86864 : Pool, WV +26690 : 38.243168 : -81.10596 : Swiss, WV +26691 : 38.408153 : -80.67026 : Tioga, WV +26704 : 39.285323 : -78.59401 : Augusta, WV +26705 : 39.327576 : -79.54714 : Aurora, WV +26707 : 39.264409 : -79.3654 : Bayard, WV +26710 : 39.335771 : -78.91724 : Burlington, WV +26711 : 39.293252 : -78.47306 : Capon Bridge, WV +26714 : 39.18253 : -78.62152 : Delray, WV +26716 : 39.261474 : -79.50612 : Eglon, WV +26717 : 39.351231 : -79.17606 : Elk Garden, WV +26719 : 39.497698 : -78.76381 : Fort Ashby, WV +26720 : 39.280652 : -79.33844 : Gormania, WV +26722 : 39.509416 : -78.6438 : Green Spring, WV +26726 : 39.434856 : -78.95987 : Keyser, WV +26731 : 39.153987 : -79.07088 : Lahmansville, WV +26734 : 39.070601 : -79.233536 : Medley, WV +26739 : 39.248761 : -79.23785 : Mount Storm, WV +26743 : 39.291478 : -79.07484 : New Creek, WV +26750 : 39.476243 : -79.04681 : Piedmont, WV +26753 : 39.579717 : -78.78539 : Ridgeley, WV +26755 : 39.13957 : -78.66841 : Rio, WV +26757 : 39.321688 : -78.74815 : Romney, WV +26761 : 39.291196 : -78.69317 : Shanks, WV +26763 : 39.44763 : -78.6661 : Springfield, WV +26764 : 39.454805 : -79.54326 : Terra Alta, WV +26767 : 39.616008 : -78.77489 : Wiley Ford, WV +26801 : 39.084895 : -78.779 : Baker, WV +26802 : 38.633148 : -79.21669 : Brandywine, WV +26804 : 38.626289 : -79.53068 : Circleville, WV +26807 : 38.65585 : -79.33975 : Franklin, WV +26808 : 39.210787 : -78.44261 : High View, WV +26810 : 38.973027 : -78.73978 : Lost City, WV +26812 : 38.878002 : -78.88245 : Mathias, WV +26814 : 38.737991 : -79.43087 : Riverton, WV +26815 : 38.482224 : -79.33161 : Sugar Grove, WV +26817 : 39.344466 : -78.38374 : Bloomery, WV +26818 : 39.068317 : -79.01717 : Fisher, WV +26823 : 39.13982 : -78.49576 : Capon Springs, WV +26824 : 39.314071 : -78.659428 : Junction, WV +26833 : 39.089792 : -79.18014 : Maysville, WV +26836 : 39.038183 : -78.97189 : Moorefield, WV +26838 : 38.81801 : -79.09107 : Milam, WV +26845 : 39.184315 : -78.9458 : Old Fields, WV +26847 : 38.959188 : -79.13703 : Petersburg, WV +26851 : 39.066543 : -78.6218 : Wardensville, WV +26852 : 39.248438 : -78.92736 : Purgitsville, WV +26855 : 38.98645 : -79.25455 : Cabins, WV +26865 : 39.199856 : -78.49655 : Yellow Spring, WV +26866 : 38.814289 : -79.23861 : Upper Tract, WV +26884 : 38.849407 : -79.37151 : Seneca Rocks, WV +26886 : 38.844294 : -79.42206 : Onego, WV +26905 : 39.635272 : -79.933496 : Morgantown, WV +27006 : 35.954679 : -80.44132 : Advance, NC +27007 : 36.390363 : -80.58746 : Ararat, NC +27009 : 36.236829 : -80.07495 : Belews Creek, NC +27010 : 36.182975 : -80.338662 : Bethania, NC +27011 : 36.218385 : -80.70955 : Boonville, NC +27012 : 36.027101 : -80.39312 : Clemmons, NC +27013 : 35.73956 : -80.69407 : Cleveland, NC +27014 : 35.812635 : -80.55724 : Cooleemee, NC +27016 : 36.429179 : -80.19588 : Danbury, NC +27017 : 36.367258 : -80.72296 : Dobson, NC +27018 : 36.198622 : -80.52694 : East Bend, NC +27019 : 36.297049 : -80.23777 : Germanton, NC +27020 : 36.115196 : -80.81872 : Hamptonville, NC +27021 : 36.293122 : -80.3546 : King, NC +27022 : 36.52235 : -80.22195 : Lawsonville, NC +27023 : 36.097767 : -80.42715 : Lewisville, NC +27024 : 36.520921 : -80.84824 : Lowgap, NC +27025 : 36.383107 : -79.97451 : Madison, NC +27027 : 36.421448 : -79.97458 : Mayodan, NC +27028 : 35.920477 : -80.57143 : Mocksville, NC +27030 : 36.49376 : -80.62336 : Mount Airy, NC +27031 : 36.399366 : -80.70809 : White Plains, NC +27040 : 36.182718 : -80.36487 : Pfafftown, NC +27041 : 36.398995 : -80.48006 : Pilot Mountain, NC +27042 : 36.335676 : -80.05135 : Pine Hall, NC +27043 : 36.331502 : -80.4417 : Pinnacle, NC +27045 : 36.232354 : -80.30391 : Rural Hall, NC +27046 : 36.488575 : -80.09267 : Sandy Ridge, NC +27047 : 36.305687 : -80.5824 : Siloam, NC +27048 : 36.47266 : -79.90522 : Stoneville, NC +27049 : 36.551332 : -80.655786 : Toast, NC +27050 : 36.235252 : -80.38089 : Tobaccoville, NC +27051 : 36.174243 : -80.16679 : Walkertown, NC +27052 : 36.298241 : -80.14383 : Walnut Cove, NC +27053 : 36.473951 : -80.34752 : Westfield, NC +27054 : 35.787743 : -80.59377 : Woodleaf, NC +27055 : 36.12301 : -80.64557 : Yadkinville, NC +27094 : 36.027482 : -80.20728 : Rural Hall, NC +27098 : 36.027482 : -80.20728 : Rural Hall, NC +27099 : 36.027482 : -80.20728 : Rural Hall, NC +27101 : 36.107037 : -80.21918 : Winston Salem, NC +27102 : 36.032304 : -80.396168 : Winston Salem, NC +27103 : 36.066545 : -80.30733 : Winston Salem, NC +27104 : 36.094104 : -80.31503 : Winston Salem, NC +27105 : 36.147887 : -80.23423 : Winston Salem, NC +27106 : 36.141395 : -80.3137 : Winston Salem, NC +27107 : 36.046215 : -80.18998 : Winston Salem, NC +27108 : 36.027482 : -80.20728 : Winston Salem, NC +27109 : 36.133577 : -80.2768 : Winston Salem, NC +27110 : 36.027482 : -80.20728 : Winston Salem, NC +27111 : 36.027482 : -80.20728 : Winston Salem, NC +27113 : 36.027482 : -80.20728 : Winston Salem, NC +27114 : 36.027482 : -80.20728 : Winston Salem, NC +27115 : 36.027482 : -80.20728 : Winston Salem, NC +27116 : 36.027482 : -80.20728 : Winston Salem, NC +27117 : 36.027482 : -80.20728 : Winston Salem, NC +27120 : 36.027482 : -80.20728 : Winston Salem, NC +27127 : 36.039398 : -80.26171 : Winston Salem, NC +27130 : 36.027482 : -80.20728 : Winston Salem, NC +27144 : 35.708966 : -80.464515 : Salisbury, NC +27150 : 36.027482 : -80.20728 : Winston Salem, NC +27151 : 36.027482 : -80.20728 : Winston Salem, NC +27152 : 36.027482 : -80.20728 : Winston Salem, NC +27155 : 36.027482 : -80.20728 : Winston Salem, NC +27156 : 36.027482 : -80.20728 : Winston Salem, NC +27157 : 36.027482 : -80.20728 : Winston Salem, NC +27198 : 36.027482 : -80.20728 : Winston Salem, NC +27199 : 36.027482 : -80.20728 : Winston Salem, NC +27201 : 36.031836 : -79.485643 : Alamance, NC +27202 : 36.185712 : -79.50496 : Altamahaw, NC +27203 : 35.686122 : -79.82919 : Asheboro, NC +27204 : 35.788286 : -79.720556 : Asheboro, NC +27205 : 35.665973 : -79.832161 : Asheboro, NC +27207 : 35.613837 : -79.38984 : Bear Creek, NC +27208 : 35.559258 : -79.54591 : Bennett, NC +27209 : 35.354158 : -79.76839 : Biscoe, NC +27212 : 36.461871 : -79.26388 : Blanch, NC +27213 : 35.648194 : -79.414859 : Bonlee, NC +27214 : 36.205771 : -79.69839 : Browns Summit, NC +27215 : 36.072336 : -79.4698 : Burlington, NC +27216 : 36.047523 : -79.479743 : Burlington, NC +27217 : 36.132737 : -79.41135 : Burlington, NC +27220 : 36.046677 : -79.389631 : Burlington, NC +27228 : 35.783476 : -79.129791 : Bynum, NC +27229 : 35.280008 : -79.79467 : Candor, NC +27230 : 35.802758 : -79.879711 : Cedar Falls, NC +27231 : 36.207994 : -79.16879 : Cedar Grove, NC +27233 : 35.911979 : -79.69566 : Climax, NC +27235 : 36.092076 : -80.01009 : Colfax, NC +27237 : 35.467567 : -79.165314 : Cumnock, NC +27239 : 35.618434 : -80.10517 : Denton, NC +27242 : 35.307299 : -79.65327 : Eagle Springs, NC +27243 : 36.082138 : -79.18649 : Efland, NC +27244 : 36.152742 : -79.50839 : Elon College, NC +27247 : 35.451411 : -79.783404 : Ether, NC +27248 : 35.761433 : -79.69835 : Franklinville, NC +27249 : 36.125747 : -79.56352 : Gibsonville, NC +27252 : 35.564257 : -79.35011 : Goldston, NC +27253 : 36.031837 : -79.37815 : Graham, NC +27256 : 35.562184 : -79.28751 : Gulf, NC +27258 : 36.064176 : -79.34421 : Haw River, NC +27259 : 35.492077 : -79.479016 : Highfalls, NC +27260 : 35.950436 : -79.99345 : High Point, NC +27261 : 36.080707 : -80.0244 : High Point, NC +27262 : 35.964586 : -80.02239 : High Point, NC +27263 : 35.914548 : -79.96062 : High Point, NC +27264 : 36.080707 : -80.0244 : High Point, NC +27265 : 36.017647 : -80.00628 : High Point, NC +27278 : 36.079726 : -79.09459 : Hillsborough, NC +27281 : 35.177643 : -79.60491 : Jackson Springs, NC +27282 : 35.998221 : -79.93573 : Jamestown, NC +27283 : 35.936904 : -79.63191 : Julian, NC +27284 : 36.119887 : -80.08726 : Kernersville, NC +27285 : 36.027482 : -80.20728 : Kernersville, NC +27288 : 36.505996 : -79.74935 : Eden, NC +27289 : 36.392135 : -79.773094 : Eden, NC +27291 : 36.415102 : -79.14221 : Leasburg, NC +27292 : 35.775789 : -80.23174 : Lexington, NC +27293 : 35.882943 : -80.275963 : Lexington, NC +27294 : 35.882943 : -80.275963 : Lexington, NC +27295 : 35.856896 : -80.28961 : Lexington, NC +27298 : 35.884276 : -79.56809 : Liberty, NC +27299 : 35.752578 : -80.37587 : Linwood, NC +27301 : 36.108536 : -79.6808 : McLeansville, NC +27302 : 36.111449 : -79.27142 : Mebane, NC +27305 : 36.532166 : -79.21379 : Milton, NC +27306 : 35.227919 : -79.99741 : Mount Gilead, NC +27310 : 36.178137 : -79.9842 : Oak Ridge, NC +27311 : 36.49076 : -79.48073 : Pelham, NC +27312 : 35.756091 : -79.17848 : Pittsboro, NC +27313 : 35.937595 : -79.75441 : Pleasant Garden, NC +27314 : 36.285009 : -79.19809 : Prospect Hill, NC +27315 : 36.512448 : -79.37498 : Providence, NC +27316 : 35.711954 : -79.63723 : Ramseur, NC +27317 : 35.817411 : -79.80389 : Randleman, NC +27320 : 36.345919 : -79.67075 : Reidsville, NC +27321 : 36.347568 : -79.680318 : Reidsville, NC +27322 : 36.392135 : -79.773094 : Reidsville, NC +27323 : 36.392135 : -79.773094 : Reidsville, NC +27325 : 35.447663 : -79.57555 : Robbins, NC +27326 : 36.478349 : -79.55518 : Ruffin, NC +27330 : 35.458804 : -79.16415 : Sanford, NC +27331 : 35.372577 : -79.276577 : Sanford, NC +27332 : 35.401023 : -79.14419 : Sanford, NC +27340 : 35.948814 : -79.329664 : Saxapahaw, NC +27341 : 35.53332 : -79.71018 : Seagrove, NC +27342 : 36.075975 : -79.63132 : Sedalia, NC +27343 : 36.495772 : -79.09331 : Semora, NC +27344 : 35.729692 : -79.44984 : Siler City, NC +27349 : 35.897155 : -79.42344 : Snow Camp, NC +27350 : 35.808395 : -79.90244 : Sophia, NC +27351 : 35.660548 : -80.283647 : Southmont, NC +27355 : 35.79386 : -79.55521 : Staley, NC +27356 : 35.414095 : -79.78487 : Star, NC +27357 : 36.252154 : -79.97548 : Stokesdale, NC +27358 : 36.209976 : -79.88921 : Summerfield, NC +27359 : 36.021389 : -79.357399 : Swepsonville, NC +27360 : 35.871 : -80.08603 : Thomasville, NC +27361 : 35.882943 : -80.275963 : Thomasville, NC +27370 : 35.843856 : -79.9849 : Trinity, NC +27371 : 35.382213 : -79.92418 : Troy, NC +27373 : 35.882943 : -80.275963 : Wallburg, NC +27374 : 35.781848 : -80.203546 : Welcome, NC +27375 : 36.392135 : -79.773094 : Wentworth, NC +27376 : 35.248989 : -79.54383 : West End, NC +27377 : 36.050652 : -79.59483 : Whitsett, NC +27379 : 36.387904 : -79.33107 : Yanceyville, NC +27391 : 35.353048 : -79.901349 : Troy, NC +27397 : 36.403393 : -79.333836 : Yanceyville, NC +27401 : 36.071135 : -79.77468 : Greensboro, NC +27402 : 36.106711 : -79.791901 : Greensboro, NC +27403 : 36.064485 : -79.82206 : Greensboro, NC +27404 : 36.080707 : -80.0244 : Greensboro, NC +27405 : 36.107499 : -79.75242 : Greensboro, NC +27406 : 36.022863 : -79.77895 : Greensboro, NC +27407 : 36.025379 : -79.87112 : Greensboro, NC +27408 : 36.101385 : -79.81425 : Greensboro, NC +27409 : 36.083885 : -79.94122 : Greensboro, NC +27410 : 36.116854 : -79.88291 : Greensboro, NC +27411 : 36.080707 : -80.0244 : Greensboro, NC +27412 : 36.066129 : -79.806735 : Greensboro, NC +27413 : 36.080707 : -80.0244 : Greensboro, NC +27415 : 36.080707 : -80.0244 : Greensboro, NC +27416 : 36.080707 : -80.0244 : Greensboro, NC +27417 : 36.080707 : -80.0244 : Greensboro, NC +27419 : 36.080707 : -80.0244 : Greensboro, NC +27420 : 36.112987 : -79.775913 : Greensboro, NC +27425 : 36.080707 : -80.0244 : Greensboro, NC +27427 : 36.080707 : -80.0244 : Greensboro, NC +27429 : 36.080707 : -80.0244 : Greensboro, NC +27435 : 36.080707 : -80.0244 : Greensboro, NC +27438 : 36.080707 : -80.0244 : Greensboro, NC +27455 : 36.156707 : -79.80644 : Greensboro, NC +27480 : 36.080707 : -80.0244 : Greensboro, NC +27495 : 36.080707 : -80.0244 : Greensboro, NC +27498 : 36.080707 : -80.0244 : Greensboro, NC +27499 : 36.080707 : -80.0244 : Greensboro, NC +27501 : 35.494384 : -78.71 : Angier, NC +27502 : 35.73663 : -78.86462 : Apex, NC +27503 : 36.158344 : -78.87419 : Bahama, NC +27504 : 35.390431 : -78.53155 : Benson, NC +27505 : 35.42638 : -79.03409 : Broadway, NC +27506 : 35.406513 : -78.73848 : Buies Creek, NC +27507 : 36.525791 : -78.57014 : Bullock, NC +27508 : 35.954331 : -78.25342 : Bunn, NC +27509 : 36.138298 : -78.75882 : Butner, NC +27510 : 35.912489 : -79.08144 : Carrboro, NC +27511 : 35.755651 : -78.77508 : Cary, NC +27512 : 35.808387 : -78.839488 : Cary, NC +27513 : 35.797882 : -78.79702 : Cary, NC +27514 : 35.915083 : -79.02939 : Chapel Hill, NC +27515 : 36.05251 : -79.107692 : Chapel Hill, NC +27516 : 35.912786 : -79.10931 : Chapel Hill, NC +27517 : 35.892359 : -79.020849 : Chapel Hill, NC +27518 : 35.797692 : -78.625265 : Cary, NC +27519 : 35.76812 : -78.829548 : Cary, NC +27520 : 35.635275 : -78.4489 : Clayton, NC +27521 : 35.408375 : -78.66964 : Coats, NC +27522 : 36.111937 : -78.69122 : Creedmoor, NC +27523 : 35.797692 : -78.625265 : Eagle Rock, NC +27524 : 35.4152 : -78.42116 : Four Oaks, NC +27525 : 36.104866 : -78.45893 : Franklinton, NC +27526 : 35.575302 : -78.80234 : Fuquay Varina, NC +27529 : 35.679194 : -78.60246 : Garner, NC +27530 : 35.384344 : -78.00893 : Goldsboro, NC +27531 : 35.463121 : -77.995728 : Goldsboro, NC +27532 : 35.372045 : -78.052422 : Goldsboro, NC +27533 : 35.372045 : -78.052422 : Goldsboro, NC +27534 : 35.377069 : -77.92463 : Goldsboro, NC +27536 : 36.340681 : -78.39425 : Henderson, NC +27537 : 36.33705 : -78.387374 : Henderson, NC +27539 : 35.681429 : -78.782556 : Apex, NC +27540 : 35.643545 : -78.83486 : Holly Springs, NC +27541 : 36.264894 : -79.08338 : Hurdle Mills, NC +27542 : 35.606392 : -78.13755 : Kenly, NC +27543 : 35.429849 : -78.882395 : Kipling, NC +27544 : 36.215193 : -78.43861 : Kittrell, NC +27545 : 35.790516 : -78.48345 : Knightdale, NC +27546 : 35.396654 : -78.83852 : Lillington, NC +27549 : 36.062239 : -78.24953 : Louisburg, NC +27551 : 36.474898 : -78.04505 : Macon, NC +27552 : 35.413579 : -78.979964 : Mamers, NC +27553 : 36.484233 : -78.30615 : Manson, NC +27555 : 35.562142 : -78.20349 : Micro, NC +27556 : 36.413473 : -78.327491 : Middleburg, NC +27557 : 35.777862 : -78.19889 : Middlesex, NC +27559 : 35.631434 : -79.0894 : Moncure, NC +27560 : 35.846363 : -78.83866 : Morrisville, NC +27561 : 35.898538 : -78.738904 : Raleigh, NC +27562 : 35.633286 : -78.97271 : New Hill, NC +27563 : 36.450603 : -78.21676 : Norlina, NC +27564 : 36.101529 : -78.713346 : Creedmoor, NC +27565 : 36.340501 : -78.61595 : Oxford, NC +27568 : 35.511864 : -78.24273 : Pine Level, NC +27569 : 35.458912 : -78.1638 : Princeton, NC +27570 : 36.441215 : -78.24044 : Ridgeway, NC +27571 : 35.921662 : -78.45805 : Rolesville, NC +27572 : 36.238956 : -78.88293 : Rougemont, NC +27573 : 36.414739 : -78.97375 : Roxboro, NC +27574 : 36.416628 : -78.970224 : Roxboro, NC +27576 : 35.557966 : -78.26479 : Selma, NC +27577 : 35.506459 : -78.34446 : Smithfield, NC +27581 : 36.195036 : -78.72657 : Stem, NC +27582 : 36.454831 : -78.5702 : Stovall, NC +27583 : 36.291896 : -78.93552 : Timberlake, NC +27584 : 36.528939 : -78.44504 : Townsville, NC +27586 : 36.37367 : -78.110931 : Vaughan, NC +27587 : 35.97154 : -78.52241 : Wake Forest, NC +27588 : 35.973108 : -78.450754 : Wake Forest, NC +27589 : 36.378439 : -78.13903 : Warrenton, NC +27591 : 35.781595 : -78.37287 : Wendell, NC +27592 : 35.554891 : -78.67038 : Willow Spring, NC +27593 : 35.590731 : -78.360723 : Wilsons Mills, NC +27594 : 36.37367 : -78.110931 : Wise, NC +27596 : 36.000487 : -78.44921 : Youngsville, NC +27597 : 35.848039 : -78.30135 : Zebulon, NC +27599 : 36.05251 : -79.107692 : Chapel Hill, NC +27601 : 35.774451 : -78.63274 : Raleigh, NC +27602 : 35.758667 : -78.671089 : Raleigh, NC +27603 : 35.716105 : -78.65734 : Raleigh, NC +27604 : 35.814572 : -78.58348 : Raleigh, NC +27605 : 35.788284 : -78.65316 : Raleigh, NC +27606 : 35.758268 : -78.71783 : Raleigh, NC +27607 : 35.807458 : -78.70086 : Raleigh, NC +27608 : 35.808451 : -78.64667 : Raleigh, NC +27609 : 35.844753 : -78.63263 : Raleigh, NC +27610 : 35.767829 : -78.5861 : Raleigh, NC +27611 : 35.797692 : -78.625265 : Raleigh, NC +27612 : 35.847788 : -78.70161 : Raleigh, NC +27613 : 35.899208 : -78.71161 : Raleigh, NC +27614 : 35.939255 : -78.60317 : Raleigh, NC +27615 : 35.891726 : -78.63203 : Raleigh, NC +27616 : 35.865441 : -78.54929 : Raleigh, NC +27617 : 35.906016 : -78.743197 : Raleigh, NC +27619 : 35.851463 : -78.63141 : Raleigh, NC +27620 : 35.797692 : -78.625265 : Raleigh, NC +27621 : 35.797692 : -78.625265 : Raleigh, NC +27622 : 35.797692 : -78.625265 : Raleigh, NC +27623 : 35.797692 : -78.625265 : Raleigh, NC +27624 : 35.797692 : -78.625265 : Raleigh, NC +27625 : 35.797692 : -78.625265 : Raleigh, NC +27626 : 35.797692 : -78.625265 : Raleigh, NC +27627 : 35.797692 : -78.625265 : Raleigh, NC +27628 : 35.797692 : -78.625265 : Raleigh, NC +27629 : 35.817497 : -78.552388 : Raleigh, NC +27630 : 35.875344 : -80.081269 : Thomasville, NC +27634 : 35.797692 : -78.625265 : Raleigh, NC +27635 : 35.797692 : -78.625265 : Raleigh, NC +27636 : 35.797692 : -78.625265 : Raleigh, NC +27640 : 35.797692 : -78.625265 : Raleigh, NC +27650 : 35.797692 : -78.625265 : Raleigh, NC +27656 : 35.797692 : -78.625265 : Raleigh, NC +27658 : 35.797692 : -78.625265 : Raleigh, NC +27661 : 35.797692 : -78.625265 : Raleigh, NC +27668 : 35.797692 : -78.625265 : Raleigh, NC +27675 : 35.797692 : -78.625265 : Raleigh, NC +27676 : 35.797692 : -78.625265 : Raleigh, NC +27690 : 35.797692 : -78.625265 : Raleigh, NC +27695 : 35.797692 : -78.625265 : Raleigh, NC +27697 : 35.88224 : -78.413371 : Raleigh, NC +27698 : 35.797692 : -78.625265 : Raleigh, NC +27699 : 35.797692 : -78.625265 : Raleigh, NC +27701 : 35.997193 : -78.89731 : Durham, NC +27702 : 36.051155 : -78.857651 : Durham, NC +27703 : 35.966431 : -78.83969 : Durham, NC +27704 : 36.034561 : -78.86892 : Durham, NC +27705 : 36.015992 : -78.95911 : Durham, NC +27706 : 35.993143 : -78.93735 : Durham, NC +27707 : 35.963994 : -78.93602 : Durham, NC +27708 : 36.028685 : -78.92398 : Durham, NC +27709 : 36.051155 : -78.857651 : Durham, NC +27710 : 36.051155 : -78.857651 : Durham, NC +27711 : 36.051155 : -78.857651 : Durham, NC +27712 : 36.087738 : -78.92313 : Durham, NC +27713 : 35.905765 : -78.92113 : Durham, NC +27715 : 36.051155 : -78.857651 : Durham, NC +27717 : 36.051155 : -78.857651 : Durham, NC +27722 : 36.051155 : -78.857651 : Durham, NC +27801 : 35.935125 : -77.77076 : Rocky Mount, NC +27802 : 35.935563 : -77.78077 : Rocky Mount, NC +27803 : 35.924465 : -77.83689 : Rocky Mount, NC +27804 : 35.973773 : -77.82694 : Rocky Mount, NC +27805 : 36.223682 : -77.10397 : Aulander, NC +27806 : 35.308035 : -76.79019 : Aurora, NC +27807 : 35.797988 : -78.10641 : Bailey, NC +27808 : 35.47031 : -76.77855 : Bath, NC +27809 : 36.032405 : -77.78636 : Battleboro, NC +27810 : 35.545041 : -76.60012 : Belhaven, NC +27811 : 35.584685 : -77.513357 : Bellarthur, NC +27812 : 35.799764 : -77.37765 : Bethel, NC +27813 : 35.633996 : -77.93311 : Black Creek, NC +27814 : 35.384013 : -76.93188 : Blounts Creek, NC +27816 : 36.085542 : -78.07321 : Castalia, NC +27817 : 35.487026 : -77.07986 : Chocowinity, NC +27818 : 36.507288 : -77.01668 : Como, NC +27819 : 35.818414 : -77.45335 : Conetoe, NC +27820 : 36.416472 : -77.23117 : Conway, NC +27821 : 35.321447 : -76.87437 : Edward, NC +27822 : 35.809514 : -77.8601 : Elm City, NC +27823 : 36.190589 : -77.71859 : Enfield, NC +27824 : 35.514202 : -76.00736 : Engelhard, NC +27825 : 35.866711 : -77.084958 : Everetts, NC +27826 : 35.575982 : -76.20409 : Fairfield, NC +27827 : 35.69872 : -77.5108 : Falkland, NC +27828 : 35.598204 : -77.59066 : Farmville, NC +27829 : 35.686549 : -77.64461 : Fountain, NC +27830 : 35.552162 : -77.9727 : Fremont, NC +27831 : 36.458825 : -77.57834 : Garysburg, NC +27832 : 36.502541 : -77.68887 : Gaston, NC +27833 : 35.580444 : -77.392609 : Greenville, NC +27834 : 35.626653 : -77.37896 : Greenville, NC +27835 : 35.588523 : -77.353092 : Greenville, NC +27836 : 35.580444 : -77.392609 : Greenville, NC +27837 : 35.531965 : -77.20349 : Grimesland, NC +27838 : 36.356129 : -77.483072 : Gumberry, NC +27839 : 36.310967 : -77.57821 : Halifax, NC +27840 : 35.948738 : -77.2083 : Hamilton, NC +27841 : 35.908558 : -77.27835 : Hassell, NC +27842 : 36.531252 : -77.86277 : Henrico, NC +27843 : 35.999591 : -77.40241 : Hobgood, NC +27844 : 36.255897 : -77.93998 : Hollister, NC +27845 : 36.366571 : -77.44254 : Jackson, NC +27846 : 35.759335 : -76.89865 : Jamesville, NC +27847 : 36.184037 : -77.21536 : Kelford, NC +27849 : 36.083011 : -77.19032 : Lewiston Woodville, NC +27850 : 36.451785 : -77.90383 : Littleton, NC +27851 : 35.640324 : -78.02336 : Lucama, NC +27852 : 35.746654 : -77.64342 : Macclesfield, NC +27853 : 36.518839 : -77.30888 : Margarettsville, NC +27854 : 36.363144 : -77.386748 : Milwaukee, NC +27855 : 36.432993 : -77.10287 : Murfreesboro, NC +27856 : 35.993357 : -77.96738 : Nashville, NC +27857 : 35.948539 : -77.27013 : Oak City, NC +27858 : 35.579216 : -77.33836 : Greenville, NC +27859 : 36.064879 : -77.364499 : Palmyra, NC +27860 : 35.624117 : -76.67274 : Pantego, NC +27861 : 35.819037 : -77.314288 : Parmele, NC +27862 : 36.490929 : -77.1981 : Pendleton, NC +27863 : 35.491814 : -77.98298 : Pikeville, NC +27864 : 35.795738 : -77.64106 : Pinetops, NC +27865 : 35.588518 : -76.83431 : Pinetown, NC +27866 : 36.52177 : -77.51319 : Pleasant Hill, NC +27867 : 36.356129 : -77.483072 : Potecasi, NC +27868 : 36.054832 : -77.911635 : Red Oak, NC +27869 : 36.281144 : -77.28809 : Rich Square, NC +27870 : 36.448592 : -77.67144 : Roanoke Rapids, NC +27871 : 35.821436 : -77.26186 : Robersonville, NC +27872 : 36.203511 : -77.24791 : Roxobel, NC +27873 : 35.65363 : -77.77649 : Saratoga, NC +27874 : 36.128851 : -77.41983 : Scotland Neck, NC +27875 : 35.481914 : -76.44693 : Scranton, NC +27876 : 36.487125 : -77.43618 : Seaboard, NC +27877 : 36.515084 : -77.18438 : Severn, NC +27878 : 35.867224 : -77.83054 : Sharpsburg, NC +27879 : 35.567478 : -77.280169 : Simpson, NC +27880 : 35.748755 : -78.06759 : Sims, NC +27881 : 35.915927 : -77.585471 : Speed, NC +27882 : 35.94178 : -78.11872 : Spring Hope, NC +27883 : 35.598504 : -77.81173 : Stantonsburg, NC +27884 : 35.700448 : -77.27014 : Stokes, NC +27885 : 35.452071 : -76.27892 : Swanquarter, NC +27886 : 35.905299 : -77.54056 : Tarboro, NC +27887 : 36.235198 : -77.502602 : Tillery, NC +27888 : 35.593689 : -77.70192 : Walstonburg, NC +27889 : 35.560439 : -77.03459 : Washington, NC +27890 : 36.421387 : -77.60825 : Weldon, NC +27891 : 36.10607 : -77.73 : Whitakers, NC +27892 : 35.824061 : -77.08093 : Williamston, NC +27893 : 35.715315 : -77.91989 : Wilson, NC +27894 : 35.715778 : -77.904283 : Wilson, NC +27895 : 35.719923 : -77.926691 : Wilson, NC +27896 : 35.768693 : -77.95167 : Wilson, NC +27897 : 36.332552 : -77.20441 : Woodland, NC +27906 : 36.285388 : -76.213284 : Elizabeth City, NC +27907 : 36.285026 : -76.255312 : Elizabeth City, NC +27909 : 36.293192 : -76.23692 : Elizabeth City, NC +27910 : 36.293352 : -76.98612 : Ahoskie, NC +27915 : 35.354252 : -75.50417 : Avon, NC +27916 : 36.314447 : -75.89888 : Aydlett, NC +27917 : 36.388493 : -75.98097 : Barco, NC +27919 : 36.319777 : -76.49654 : Belvidere, NC +27920 : 35.263128 : -75.55787 : Buxton, NC +27921 : 36.344333 : -76.16595 : Camden, NC +27922 : 36.339548 : -76.88086 : Cofield, NC +27923 : 36.381161 : -75.94115 : Coinjock, NC +27924 : 36.192231 : -76.83458 : Colerain, NC +27925 : 35.883885 : -76.22037 : Columbia, NC +27926 : 36.519826 : -76.61637 : Corapeake, NC +27927 : 36.435092 : -75.84497 : Corolla, NC +27928 : 35.849234 : -76.4067 : Creswell, NC +27929 : 36.433902 : -75.97921 : Currituck, NC +27930 : 36.198539 : -76.373908 : Durants Neck, NC +27932 : 36.093252 : -76.62077 : Edenton, NC +27935 : 36.440867 : -76.86007 : Eure, NC +27936 : 35.24554 : -75.618 : Frisco, NC +27937 : 36.501152 : -76.78039 : Gates, NC +27938 : 36.410008 : -76.75097 : Gatesville, NC +27939 : 36.239666 : -75.87361 : Grandy, NC +27941 : 36.099065 : -75.81974 : Harbinger, NC +27942 : 36.289302 : -76.76737 : Harrellsville, NC +27943 : 35.218342 : -75.68792 : Hatteras, NC +27944 : 36.157292 : -76.4275 : Hertford, NC +27946 : 36.362745 : -76.60188 : Hobbsville, NC +27947 : 36.189366 : -75.86047 : Jarvisburg, NC +27948 : 36.022242 : -75.67686 : Kill Devil Hills, NC +27949 : 36.115899 : -75.72772 : Kitty Hawk, NC +27950 : 36.513626 : -75.9518 : Knotts Island, NC +27953 : 35.795867 : -75.85014 : Manns Harbor, NC +27954 : 35.913938 : -75.67961 : Manteo, NC +27956 : 36.419422 : -76.03362 : Maple, NC +27957 : 36.067244 : -76.76046 : Merry Hill, NC +27958 : 36.497406 : -76.13715 : Moyock, NC +27959 : 35.923805 : -75.61144 : Nags Head, NC +27960 : 35.113265 : -75.97255 : Ocracoke, NC +27962 : 35.842107 : -76.73206 : Plymouth, NC +27964 : 36.093211 : -75.80319 : Point Harbor, NC +27965 : 36.273428 : -75.87867 : Poplar Branch, NC +27966 : 36.13655 : -75.82653 : Powells Point, NC +27967 : 36.234231 : -76.94686 : Powellsville, NC +27968 : 35.661979 : -75.47741 : Rodanthe, NC +27969 : 36.424152 : -76.702125 : Roduco, NC +27970 : 35.892486 : -76.57584 : Roper, NC +27972 : 35.538351 : -75.47473 : Salvo, NC +27973 : 36.384779 : -76.08293 : Shawboro, NC +27974 : 36.233836 : -76.03822 : Shiloh, NC +27976 : 36.466396 : -76.29809 : South Mills, NC +27978 : 35.698493 : -75.772775 : Stumpy Point, NC +27979 : 36.440509 : -76.60411 : Sunbury, NC +27980 : 36.256548 : -76.62627 : Tyner, NC +27981 : 35.845046 : -75.63954 : Wanchese, NC +27982 : 35.56179 : -75.47152 : Waves, NC +27983 : 36.015391 : -76.9349 : Windsor, NC +27985 : 36.217959 : -76.46994 : Winfall, NC +27986 : 36.386605 : -76.92641 : Winton, NC +28001 : 35.351477 : -80.19879 : Albemarle, NC +28002 : 35.264179 : -80.108188 : Albemarle, NC +28003 : 34.995653 : -80.355204 : Marshville, NC +28006 : 35.403268 : -81.09974 : Alexis, NC +28007 : 35.104652 : -80.10965 : Ansonville, NC +28009 : 35.40846 : -80.11171 : Badin, NC +28010 : 35.719228 : -80.89909 : Barium Springs, NC +28012 : 35.2406 : -81.04028 : Belmont, NC +28016 : 35.292581 : -81.28723 : Bessemer City, NC +28017 : 35.254223 : -81.65456 : Boiling Springs, NC +28018 : 35.441168 : -81.7995 : Bostic, NC +28019 : 35.279371 : -81.79475 : Caroleen, NC +28020 : 35.518637 : -81.62728 : Casar, NC +28021 : 35.383935 : -81.39368 : Cherryville, NC +28023 : 35.567189 : -80.59116 : China Grove, NC +28024 : 35.241615 : -81.775456 : Cliffside, NC +28025 : 35.400407 : -80.56574 : Concord, NC +28026 : 35.346285 : -80.541088 : Concord, NC +28027 : 35.405636 : -80.63823 : Concord, NC +28031 : 35.477583 : -80.8924 : Cornelius, NC +28032 : 35.239702 : -81.07753 : Cramerton, NC +28033 : 35.416189 : -81.31911 : Crouse, NC +28034 : 35.333668 : -81.18303 : Dallas, NC +28036 : 35.490772 : -80.82576 : Davidson, NC +28037 : 35.501448 : -81.00412 : Denver, NC +28038 : 35.198687 : -81.54162 : Earl, NC +28039 : 35.677889 : -80.44593 : East Spencer, NC +28040 : 35.346886 : -81.75621 : Ellenboro, NC +28041 : 35.58167 : -80.45806 : Faith, NC +28042 : 35.373884 : -81.543706 : Fallston, NC +28043 : 35.317602 : -81.86722 : Forest City, NC +28051 : 35.284018 : -81.189693 : Gastonia, NC +28052 : 35.248787 : -81.2142 : Gastonia, NC +28053 : 35.275073 : -81.213369 : Gastonia, NC +28054 : 35.263287 : -81.15312 : Gastonia, NC +28055 : 35.284018 : -81.189693 : Gastonia, NC +28056 : 35.229565 : -81.12847 : Gastonia, NC +28070 : 35.462187 : -80.898668 : Huntersville, NC +28071 : 35.513974 : -80.32779 : Gold Hill, NC +28072 : 35.614966 : -80.44198 : Granite Quarry, NC +28073 : 35.189591 : -81.47928 : Grover, NC +28074 : 35.224743 : -81.885081 : Harris, NC +28075 : 35.335294 : -80.6633 : Harrisburg, NC +28076 : 35.256252 : -81.77804 : Henrietta, NC +28077 : 35.404772 : -81.20268 : High Shoals, NC +28078 : 35.409544 : -80.86362 : Huntersville, NC +28079 : 35.105208 : -80.62098 : Indian Trail, NC +28080 : 35.454565 : -81.12368 : Iron Station, NC +28081 : 35.499521 : -80.64447 : Kannapolis, NC +28082 : 35.346285 : -80.541088 : Kannapolis, NC +28083 : 35.492989 : -80.60293 : Kannapolis, NC +28086 : 35.241188 : -81.3614 : Kings Mountain, NC +28088 : 35.543639 : -80.61167 : Landis, NC +28089 : 35.318573 : -81.66601 : Lattimore, NC +28090 : 35.450548 : -81.56223 : Lawndale, NC +28091 : 34.970129 : -79.93705 : Lilesville, NC +28092 : 35.473447 : -81.24094 : Lincolnton, NC +28093 : 35.484822 : -81.239543 : Lincolnton, NC +28097 : 35.267185 : -80.4268 : Locust, NC +28098 : 35.267234 : -81.09942 : Lowell, NC +28101 : 35.256379 : -81.07978 : McAdenville, NC +28102 : 34.819916 : -79.97188 : McFarlan, NC +28103 : 34.99545 : -80.35635 : Marshville, NC +28104 : 35.067285 : -80.68424 : Matthews, NC +28105 : 35.116851 : -80.7164 : Matthews, NC +28106 : 35.26002 : -80.804151 : Matthews, NC +28107 : 35.247181 : -80.52363 : Midland, NC +28108 : 34.916253 : -80.640383 : Mineral Springs, NC +28109 : 35.485703 : -80.28811 : Misenheimer, NC +28110 : 35.031947 : -80.56002 : Monroe, NC +28111 : 35.011204 : -80.558743 : Monroe, NC +28112 : 34.936388 : -80.5382 : Monroe, NC +28114 : 35.243585 : -81.75656 : Mooresboro, NC +28115 : 35.584157 : -80.80258 : Mooresville, NC +28117 : 35.571827 : -80.89228 : Mooresville, NC +28119 : 34.858713 : -80.02232 : Morven, NC +28120 : 35.311862 : -81.02441 : Mount Holly, NC +28123 : 35.529792 : -80.947028 : Mount Mourne, NC +28124 : 35.407499 : -80.41228 : Mount Pleasant, NC +28125 : 35.664696 : -80.71056 : Mount Ulla, NC +28126 : 35.276794 : -80.716495 : Newell, NC +28127 : 35.463024 : -80.1649 : New London, NC +28128 : 35.228831 : -80.15214 : Norwood, NC +28129 : 35.232542 : -80.33123 : Oakboro, NC +28130 : 35.26002 : -80.804151 : Paw Creek, NC +28133 : 34.969886 : -80.27001 : Peachland, NC +28134 : 35.086017 : -80.89034 : Pineville, NC +28135 : 35.043566 : -80.21272 : Polkton, NC +28136 : 35.396126 : -81.630272 : Polkville, NC +28137 : 35.49326 : -80.25524 : Richfield, NC +28138 : 35.536561 : -80.42959 : Rockwell, NC +28139 : 35.361333 : -81.98377 : Rutherfordton, NC +28144 : 35.679639 : -80.46645 : Salisbury, NC +28145 : 35.682683 : -80.477116 : Salisbury, NC +28146 : 35.614422 : -80.43115 : Salisbury, NC +28147 : 35.665362 : -80.54673 : Salisbury, NC +28150 : 35.315118 : -81.55584 : Shelby, NC +28151 : 35.233125 : -81.574711 : Shelby, NC +28152 : 35.258879 : -81.57867 : Shelby, NC +28159 : 35.693339 : -80.4342 : Spencer, NC +28160 : 35.360536 : -81.92506 : Spindale, NC +28163 : 35.245048 : -80.4163 : Stanfield, NC +28164 : 35.377576 : -81.07238 : Stanley, NC +28166 : 35.687365 : -80.88715 : Troutman, NC +28167 : 35.48902 : -81.95039 : Union Mills, NC +28168 : 35.545918 : -81.42942 : Vale, NC +28169 : 35.362026 : -81.42911 : Waco, NC +28170 : 34.985423 : -80.08543 : Wadesboro, NC +28173 : 34.929433 : -80.73061 : Waxhaw, NC +28174 : 34.981605 : -80.44305 : Wingate, NC +28201 : 35.26002 : -80.804151 : Charlotte, NC +28202 : 35.227192 : -80.84419 : Charlotte, NC +28203 : 35.208992 : -80.85539 : Charlotte, NC +28204 : 35.214693 : -80.82665 : Charlotte, NC +28205 : 35.222406 : -80.79221 : Charlotte, NC +28206 : 35.248292 : -80.82748 : Charlotte, NC +28207 : 35.197643 : -80.82752 : Charlotte, NC +28208 : 35.235791 : -80.89295 : Charlotte, NC +28209 : 35.178543 : -80.85375 : Charlotte, NC +28210 : 35.13451 : -80.85632 : Charlotte, NC +28211 : 35.170094 : -80.79857 : Charlotte, NC +28212 : 35.189544 : -80.74742 : Charlotte, NC +28213 : 35.280464 : -80.75678 : Charlotte, NC +28214 : 35.276639 : -80.96111 : Charlotte, NC +28215 : 35.244468 : -80.72164 : Charlotte, NC +28216 : 35.286967 : -80.87903 : Charlotte, NC +28217 : 35.172319 : -80.89731 : Charlotte, NC +28218 : 35.26002 : -80.804151 : Charlotte, NC +28219 : 35.26002 : -80.804151 : Charlotte, NC +28220 : 35.26002 : -80.804151 : Charlotte, NC +28221 : 35.26002 : -80.804151 : Charlotte, NC +28222 : 35.26002 : -80.804151 : Charlotte, NC +28223 : 35.305552 : -80.73303 : Charlotte, NC +28224 : 35.26002 : -80.804151 : Charlotte, NC +28225 : 35.26002 : -80.804151 : Charlotte, NC +28226 : 35.107804 : -80.82139 : Charlotte, NC +28227 : 35.192919 : -80.66822 : Charlotte, NC +28228 : 35.26002 : -80.804151 : Charlotte, NC +28229 : 35.26002 : -80.804151 : Charlotte, NC +28230 : 35.26002 : -80.804151 : Charlotte, NC +28231 : 35.26002 : -80.804151 : Charlotte, NC +28232 : 35.26002 : -80.804151 : Charlotte, NC +28233 : 35.489411 : -80.825368 : Charlotte, NC +28234 : 35.26002 : -80.804151 : Charlotte, NC +28235 : 35.26002 : -80.804151 : Charlotte, NC +28236 : 35.26002 : -80.804151 : Charlotte, NC +28237 : 35.26002 : -80.804151 : Charlotte, NC +28240 : 35.26002 : -80.804151 : Charlotte, NC +28241 : 35.26002 : -80.804151 : Charlotte, NC +28242 : 35.26002 : -80.804151 : Charlotte, NC +28243 : 35.26002 : -80.804151 : Charlotte, NC +28244 : 35.26002 : -80.804151 : Charlotte, NC +28246 : 35.227542 : -80.842543 : Charlotte, NC +28247 : 35.065595 : -80.851149 : Charlotte, NC +28250 : 35.26002 : -80.804151 : Charlotte, NC +28253 : 35.26002 : -80.804151 : Charlotte, NC +28254 : 35.26002 : -80.804151 : Charlotte, NC +28255 : 35.26002 : -80.804151 : Charlotte, NC +28256 : 35.26002 : -80.804151 : Charlotte, NC +28258 : 35.26002 : -80.804151 : Charlotte, NC +28260 : 35.26002 : -80.804151 : Charlotte, NC +28261 : 35.26002 : -80.804151 : Charlotte, NC +28262 : 35.321279 : -80.7405 : Charlotte, NC +28265 : 35.26002 : -80.804151 : Charlotte, NC +28266 : 35.284459 : -80.858155 : Charlotte, NC +28269 : 35.329235 : -80.80486 : Charlotte, NC +28270 : 35.113906 : -80.7613 : Charlotte, NC +28272 : 35.26002 : -80.804151 : Charlotte, NC +28273 : 35.124032 : -80.93954 : Charlotte, NC +28274 : 35.187943 : -80.831693 : Charlotte, NC +28275 : 35.26002 : -80.804151 : Charlotte, NC +28277 : 35.054546 : -80.81792 : Charlotte, NC +28278 : 35.119012 : -81.02213 : Charlotte, NC +28280 : 35.26002 : -80.804151 : Charlotte, NC +28281 : 35.26002 : -80.804151 : Charlotte, NC +28282 : 35.224242 : -80.844743 : Charlotte, NC +28283 : 35.26002 : -80.804151 : Charlotte, NC +28284 : 35.26002 : -80.804151 : Charlotte, NC +28285 : 35.26002 : -80.804151 : Charlotte, NC +28286 : 35.26002 : -80.804151 : Charlotte, NC +28287 : 35.26002 : -80.804151 : Charlotte, NC +28288 : 35.26002 : -80.804151 : Charlotte, NC +28289 : 35.26002 : -80.804151 : Charlotte, NC +28290 : 35.26002 : -80.804151 : Charlotte, NC +28296 : 35.225242 : -80.845843 : Charlotte, NC +28297 : 35.26002 : -80.804151 : Charlotte, NC +28299 : 35.26002 : -80.804151 : Charlotte, NC +28301 : 35.042389 : -78.84124 : Fayetteville, NC +28302 : 35.034307 : -78.908828 : Fayetteville, NC +28303 : 35.084163 : -78.953 : Fayetteville, NC +28304 : 35.02844 : -78.97037 : Fayetteville, NC +28305 : 35.056963 : -78.90369 : Fayetteville, NC +28306 : 35.003712 : -78.92179 : Fayetteville, NC +28307 : 35.142321 : -79.01225 : Fort Bragg, NC +28308 : 35.173377 : -79.013799 : Pope A F B, NC +28309 : 35.039726 : -78.842868 : Fayetteville, NC +28310 : 35.050612 : -78.80384 : Fort Bragg, NC +28311 : 35.134301 : -78.89411 : Fayetteville, NC +28314 : 35.060087 : -79.00848 : Fayetteville, NC +28315 : 35.12416 : -79.4415 : Aberdeen, NC +28318 : 35.020272 : -78.614 : Autryville, NC +28319 : 34.595364 : -79.197058 : Barnesville, NC +28320 : 34.552642 : -78.78102 : Bladenboro, NC +28323 : 35.316332 : -78.82527 : Bunnlevel, NC +28325 : 35.152512 : -78.10474 : Calypso, NC +28326 : 35.278125 : -79.15153 : Cameron, NC +28327 : 35.319639 : -79.40248 : Carthage, NC +28328 : 35.000056 : -78.33424 : Clinton, NC +28329 : 34.994005 : -78.277669 : Clinton, NC +28330 : 34.913233 : -79.82302 : Cordova, NC +28331 : 35.150896 : -78.915788 : Cumberland, NC +28332 : 34.655921 : -78.72076 : Dublin, NC +28333 : 35.293245 : -78.01897 : Dudley, NC +28334 : 35.302419 : -78.6012 : Dunn, NC +28335 : 35.350774 : -78.625362 : Dunn, NC +28337 : 34.647611 : -78.58643 : Elizabethtown, NC +28338 : 35.089476 : -79.72904 : Ellerbe, NC +28339 : 35.322849 : -78.68964 : Erwin, NC +28340 : 34.476857 : -79.13005 : Fairmont, NC +28341 : 35.119076 : -78.16439 : Faison, NC +28342 : 35.191142 : -78.6514 : Falcon, NC +28343 : 34.767875 : -79.59239 : Gibson, NC +28344 : 35.171062 : -78.63648 : Godwin, NC +28345 : 34.879186 : -79.69001 : Hamlet, NC +28347 : 35.042172 : -79.53503 : Hoffman, NC +28348 : 34.954709 : -78.93744 : Hope Mills, NC +28349 : 34.977225 : -77.94761 : Kenansville, NC +28350 : 35.24356 : -79.31355 : Lakeview, NC +28351 : 34.827291 : -79.56026 : Laurel Hill, NC +28352 : 34.779227 : -79.45745 : Laurinburg, NC +28353 : 34.781768 : -79.482423 : Laurinburg, NC +28355 : 35.467567 : -79.165314 : Lemon Springs, NC +28356 : 35.237338 : -78.79613 : Linden, NC +28357 : 34.902698 : -79.08288 : Lumber Bridge, NC +28358 : 34.620874 : -78.98986 : Lumberton, NC +28359 : 34.607669 : -79.014425 : Lumberton, NC +28360 : 34.659575 : -79.06282 : Lumberton, NC +28361 : 35.02363 : -79.246841 : Mccain, NC +28362 : 34.368246 : -79.12124 : Marietta, NC +28363 : 34.938451 : -79.54609 : Marston, NC +28364 : 34.735024 : -79.32836 : Maxton, NC +28365 : 35.184516 : -78.06056 : Mount Olive, NC +28366 : 35.237142 : -78.36593 : Newton Grove, NC +28367 : 35.173481 : -79.72363 : Norman, NC +28368 : 35.35149 : -79.10586 : Olivia, NC +28369 : 34.434292 : -79.03714 : Orrum, NC +28370 : 35.216222 : -79.452352 : Pinehurst, NC +28371 : 34.912113 : -78.9999 : Parkton, NC +28372 : 34.69004 : -79.18802 : Pembroke, NC +28373 : 35.100144 : -79.47979 : Pinebluff, NC +28374 : 35.195417 : -79.46496 : Pinehurst, NC +28375 : 34.471259 : -79.041388 : Proctorville, NC +28376 : 34.992085 : -79.23013 : Raeford, NC +28377 : 34.828798 : -79.21215 : Red Springs, NC +28378 : 34.858715 : -79.04705 : Rex, NC +28379 : 34.937078 : -79.7605 : Rockingham, NC +28380 : 34.994152 : -79.767341 : Rockingham, NC +28382 : 34.945305 : -78.51432 : Roseboro, NC +28383 : 34.571076 : -79.27404 : Rowland, NC +28384 : 34.804654 : -78.9594 : Saint Pauls, NC +28385 : 35.053627 : -78.50025 : Salemburg, NC +28386 : 34.851865 : -79.12266 : Shannon, NC +28387 : 35.180394 : -79.39084 : Southern Pines, NC +28388 : 35.280335 : -79.432734 : Southern Pines, NC +28390 : 35.211913 : -78.97499 : Spring Lake, NC +28391 : 35.016373 : -78.6941 : Stedman, NC +28392 : 34.742752 : -78.80645 : Tar Heel, NC +28393 : 34.989801 : -78.18555 : Turkey, NC +28394 : 35.218131 : -79.24449 : Vass, NC +28395 : 35.145952 : -78.74102 : Wade, NC +28396 : 34.927483 : -79.40099 : Wagram, NC +28397 : 35.015586 : -78.690428 : Stedman, NC +28398 : 34.993016 : -78.08407 : Warsaw, NC +28399 : 34.786138 : -78.70765 : White Oak, NC +28401 : 34.235219 : -77.94134 : Wilmington, NC +28402 : 34.340518 : -77.901408 : Wilmington, NC +28403 : 34.221512 : -77.88452 : Wilmington, NC +28404 : 33.926255 : -78.07127 : Wilmington, NC +28405 : 34.254235 : -77.87251 : Wilmington, NC +28406 : 34.088079 : -77.852599 : Wilmington, NC +28407 : 34.088079 : -77.852599 : Wilmington, NC +28408 : 34.212707 : -77.792177 : Wilmington, NC +28409 : 34.169953 : -77.87113 : Wilmington, NC +28410 : 34.088079 : -77.852599 : Wilmington, NC +28411 : 34.285519 : -77.80572 : Wilmington, NC +28412 : 34.152021 : -77.91346 : Wilmington, NC +28420 : 34.07367 : -78.48214 : Ash, NC +28421 : 34.524003 : -78.18584 : Atkinson, NC +28422 : 34.006479 : -78.19035 : Bolivia, NC +28423 : 34.319905 : -78.37743 : Bolton, NC +28424 : 34.290716 : -78.699417 : Brunswick, NC +28425 : 34.554821 : -77.92764 : Burgaw, NC +28428 : 34.034336 : -77.89903 : Carolina Beach, NC +28429 : 34.332126 : -77.90554 : Castle Hayne, NC +28430 : 34.285951 : -78.93039 : Cerro Gordo, NC +28431 : 34.312363 : -78.83023 : Chadbourn, NC +28432 : 34.17074 : -78.75997 : Clarendon, NC +28433 : 34.491177 : -78.64362 : Clarkton, NC +28434 : 34.461167 : -78.46244 : Council, NC +28435 : 34.430433 : -78.10539 : Currie, NC +28436 : 34.275453 : -78.26673 : Delco, NC +28438 : 34.430348 : -78.91932 : Evergreen, NC +28439 : 34.309767 : -79.02516 : Fair Bluff, NC +28441 : 34.788387 : -78.40574 : Garland, NC +28442 : 34.323483 : -78.59534 : Hallsboro, NC +28443 : 34.407677 : -77.65238 : Hampstead, NC +28444 : 34.686496 : -78.32406 : Harrells, NC +28445 : 34.47722 : -77.55978 : Holly Ridge, NC +28446 : 34.83661 : -78.348111 : Ingold, NC +28447 : 34.595158 : -78.23438 : Ivanhoe, NC +28448 : 34.464635 : -78.29701 : Kelly, NC +28449 : 33.99207 : -77.91092 : Kure Beach, NC +28450 : 34.319538 : -78.51678 : Lake Waccamaw, NC +28451 : 34.25124 : -78.06492 : Leland, NC +28452 : 33.997345 : -78.5565 : Longwood, NC +28453 : 34.888483 : -78.05955 : Magnolia, NC +28454 : 34.676719 : -77.65343 : Maple Hill, NC +28455 : 34.11045 : -78.6608 : Nakina, NC +28456 : 34.36338 : -78.28251 : Riegelwood, NC +28457 : 34.449782 : -77.88697 : Rocky Point, NC +28458 : 34.822407 : -78.04176 : Rose Hill, NC +28459 : 33.933388 : -78.412864 : Shallotte, NC +28460 : 34.52072 : -77.42096 : Sneads Ferry, NC +28461 : 33.963111 : -78.05743 : Southport, NC +28462 : 33.974251 : -78.30961 : Supply, NC +28463 : 34.12483 : -78.82187 : Tabor City, NC +28464 : 34.772249 : -78.01392 : Teachey, NC +28465 : 33.915522 : -78.12862 : Oak Island, NC +28466 : 34.738793 : -77.97788 : Wallace, NC +28467 : 33.905566 : -78.5759 : Calabash, NC +28468 : 33.885203 : -78.51224 : Sunset Beach, NC +28469 : 33.913508 : -78.44868 : Ocean Isle Beach, NC +28470 : 33.9666 : -78.3878 : South Brunswick, NC +28471 : 34.605639 : -77.99977 : Watha, NC +28472 : 34.312063 : -78.70773 : Whiteville, NC +28478 : 34.671237 : -78.06544 : Willard, NC +28479 : 34.107077 : -78.04965 : Winnabow, NC +28480 : 34.21222 : -77.7981 : Wrightsville Beach, NC +28501 : 35.260895 : -77.56469 : Kinston, NC +28502 : 35.288558 : -77.662614 : Kinston, NC +28503 : 35.319066 : -77.595034 : Kinston, NC +28504 : 35.264739 : -77.62481 : Kinston, NC +28508 : 35.11493 : -77.82238 : Albertson, NC +28509 : 35.156145 : -76.632264 : Alliance, NC +28510 : 35.000658 : -76.81297 : Arapahoe, NC +28511 : 34.887266 : -76.33033 : Atlantic, NC +28512 : 34.698274 : -76.78706 : Atlantic Beach, NC +28513 : 35.463012 : -77.4161 : Ayden, NC +28515 : 35.176466 : -76.71853 : Bayboro, NC +28516 : 34.769532 : -76.64783 : Beaufort, NC +28518 : 34.911417 : -77.77153 : Beulaville, NC +28519 : 35.120742 : -77.01969 : Bridgeton, NC +28520 : 34.984608 : -76.1988 : Cedar Island, NC +28521 : 34.826715 : -77.75929 : Chinquapin, NC +28522 : 35.005079 : -77.523102 : Comfort, NC +28523 : 35.193213 : -77.32292 : Cove City, NC +28524 : 34.794527 : -76.46317 : Davis, NC +28525 : 35.119845 : -77.69208 : Deep Run, NC +28526 : 35.238886 : -77.41061 : Dover, NC +28527 : 35.244257 : -77.01504 : Ernul, NC +28528 : 34.732744 : -76.53869 : Gloucester, NC +28529 : 35.085784 : -76.86135 : Grantsboro, NC +28530 : 35.370945 : -77.42548 : Grifton, NC +28531 : 34.712315 : -76.52748 : Harkers Island, NC +28532 : 34.884421 : -76.88972 : Havelock, NC +28533 : 34.903793 : -76.899976 : Cherry Point, NC +28537 : 35.259895 : -76.55591 : Hobucken, NC +28538 : 35.424381 : -77.58452 : Hookerton, NC +28539 : 34.694262 : -77.20701 : Hubert, NC +28540 : 34.755669 : -77.4559 : Jacksonville, NC +28541 : 34.692056 : -77.391199 : Jacksonville, NC +28542 : 34.664035 : -77.463687 : Camp Lejeune, NC +28543 : 34.74167 : -77.37117 : Tarawa Terrace, NC +28544 : 34.724322 : -77.31866 : Midway Park, NC +28545 : 34.692056 : -77.391199 : Mccutcheon Field, NC +28546 : 34.781212 : -77.3756 : Jacksonville, NC +28547 : 34.637348 : -77.3127 : Camp Lejeune, NC +28551 : 35.320045 : -77.78042 : La Grange, NC +28552 : 35.304817 : -76.57115 : Lowland, NC +28553 : 34.725663 : -76.51632 : Marshallberg, NC +28554 : 35.481503 : -77.58718 : Maury, NC +28555 : 34.879658 : -77.22214 : Maysville, NC +28556 : 35.124491 : -76.66595 : Merritt, NC +28557 : 34.729839 : -76.75219 : Morehead City, NC +28559 : 36.214395 : -81.165972 : Fairplains, NC +28560 : 35.119674 : -77.01509 : New Bern, NC +28561 : 35.103736 : -77.07585 : New Bern, NC +28562 : 35.091472 : -77.09936 : New Bern, NC +28563 : 35.110855 : -77.06336 : New Bern, NC +28564 : 35.110855 : -77.06336 : New Bern, NC +28570 : 34.770681 : -76.87786 : Newport, NC +28571 : 35.040757 : -76.69263 : Oriental, NC +28572 : 35.030154 : -77.7221 : Pink Hill, NC +28573 : 35.000858 : -77.21501 : Pollocksville, NC +28574 : 34.888736 : -77.57157 : Richlands, NC +28575 : 34.689821 : -76.89242 : Salter Path, NC +28577 : 34.868975 : -76.38149 : Sealevel, NC +28578 : 35.206329 : -77.87444 : Seven Springs, NC +28579 : 34.753595 : -76.5184 : Smyrna, NC +28580 : 35.44451 : -77.69186 : Snow Hill, NC +28581 : 34.842394 : -76.44111 : Stacy, NC +28582 : 34.756033 : -77.15405 : Stella, NC +28583 : 35.156145 : -76.632264 : Stonewall, NC +28584 : 34.69771 : -77.10614 : Swansboro, NC +28585 : 35.056317 : -77.43518 : Trenton, NC +28586 : 35.302937 : -77.15546 : Vanceboro, NC +28587 : 35.191279 : -76.660435 : Vandemere, NC +28589 : 34.7994 : -76.49457 : Williston, NC +28590 : 35.53445 : -77.39714 : Winterville, NC +28594 : 34.667473 : -77.01025 : Emerald Isle, NC +28599 : 34.662495 : -77.030502 : Emerald Isle, NC +28601 : 35.759932 : -81.33012 : Hickory, NC +28602 : 35.70701 : -81.3534 : Hickory, NC +28603 : 35.679876 : -81.287181 : Hickory, NC +28604 : 36.166515 : -81.84672 : Banner Elk, NC +28605 : 36.133083 : -81.68783 : Blowing Rock, NC +28606 : 36.058853 : -81.30497 : Boomer, NC +28607 : 36.21277 : -81.66255 : Boone, NC +28608 : 36.221334 : -81.713416 : Boone, NC +28609 : 35.689806 : -81.06694 : Catawba, NC +28610 : 35.725163 : -81.14279 : Claremont, NC +28611 : 36.009373 : -81.73139 : Collettsville, NC +28612 : 35.693787 : -81.51726 : Connellys Springs, NC +28613 : 35.720227 : -81.21466 : Conover, NC +28615 : 36.455882 : -81.65141 : Creston, NC +28616 : 36.024252 : -81.92693 : Crossnore, NC +28617 : 36.488377 : -81.39224 : Crumpler, NC +28618 : 36.197882 : -81.52276 : Deep Gap, NC +28619 : 35.75779 : -81.60359 : Drexel, NC +28620 : 35.891211 : -81.102329 : Pleasant Hill, NC +28621 : 36.283497 : -80.84586 : Elkin, NC +28622 : 36.17893 : -81.95958 : Elk Park, NC +28623 : 36.523031 : -80.97109 : Ennice, NC +28624 : 36.110425 : -81.42262 : Ferguson, NC +28625 : 35.840579 : -80.87988 : Statesville, NC +28626 : 36.290889 : -81.51951 : Fleetwood, NC +28627 : 36.445484 : -81.0081 : Glade Valley, NC +28628 : 35.721174 : -81.817998 : Glen Alpine, NC +28629 : 36.343002 : -81.37502 : Glendale Springs, NC +28630 : 35.811919 : -81.43478 : Granite Falls, NC +28631 : 36.557892 : -81.42635 : Grassy Creek, NC +28633 : 35.937564 : -81.539847 : Lenoir, NC +28634 : 35.97991 : -80.77085 : Harmony, NC +28635 : 36.315077 : -81.13146 : Hays, NC +28636 : 35.928486 : -81.07441 : Hiddenite, NC +28637 : 35.718432 : -81.41878 : Hildebran, NC +28638 : 35.840553 : -81.48192 : Hudson, NC +28640 : 36.410186 : -81.42409 : Jefferson, NC +28641 : 35.938422 : -81.884521 : Jonas Ridge, NC +28642 : 36.227576 : -80.82988 : Jonesville, NC +28643 : 36.532301 : -81.53117 : Lansing, NC +28644 : 36.43591 : -81.27736 : Laurel Springs, NC +28645 : 35.934783 : -81.54476 : Lenoir, NC +28646 : 36.073202 : -81.87177 : Linville, NC +28647 : 35.779182 : -81.675545 : Linville Falls, NC +28649 : 36.329636 : -81.2111 : McGrady, NC +28650 : 35.575785 : -81.18843 : Maiden, NC +28651 : 36.241685 : -81.27076 : Millers Creek, NC +28652 : 36.086466 : -81.934265 : Minneapolis, NC +28653 : 36.065053 : -81.901715 : Montezuma, NC +28654 : 36.073489 : -81.16056 : Moravian Falls, NC +28655 : 35.742752 : -81.71625 : Morganton, NC +28656 : 36.238438 : -81.045963 : North Wilkesboro, NC +28657 : 36.049348 : -81.94286 : Newland, NC +28658 : 35.653437 : -81.23443 : Newton, NC +28659 : 36.169604 : -81.11615 : North Wilkesboro, NC +28660 : 35.970599 : -80.86439 : Olin, NC +28661 : 35.99726 : -81.562609 : Patterson, NC +28662 : 36.023359 : -81.84888 : Pineola, NC +28663 : 36.541861 : -81.3195 : Piney Creek, NC +28664 : 36.044098 : -82.003691 : Plumtree, NC +28665 : 36.195632 : -81.37303 : Purlear, NC +28666 : 35.726966 : -81.47238 : Icard, NC +28667 : 35.777241 : -81.43023 : Rhodhiss, NC +28668 : 36.38846 : -81.00733 : Roaring Gap, NC +28669 : 36.229983 : -80.99639 : Roaring River, NC +28670 : 36.204458 : -80.93481 : Ronda, NC +28671 : 35.753767 : -81.53545 : Rutherford College, NC +28672 : 36.414156 : -81.492983 : Scottville, NC +28673 : 35.589022 : -80.99326 : Sherrills Ford, NC +28674 : 36.216247 : -81.207166 : North Wilkesboro, NC +28675 : 36.506064 : -81.1362 : Sparta, NC +28676 : 36.326001 : -80.86182 : State Road, NC +28677 : 35.765719 : -80.8981 : Statesville, NC +28678 : 35.846848 : -81.05152 : Stony Point, NC +28679 : 36.255467 : -81.83002 : Sugar Grove, NC +28680 : 35.750657 : -81.695292 : Morganton, NC +28681 : 35.914275 : -81.2083 : Taylorsville, NC +28682 : 35.585074 : -80.96141 : Terrell, NC +28683 : 36.394123 : -80.91951 : Thurmond, NC +28684 : 36.345453 : -81.61009 : Todd, NC +28685 : 36.33942 : -81.03564 : Traphill, NC +28687 : 35.529792 : -80.947028 : Statesville, NC +28688 : 35.529792 : -80.947028 : Turnersburg, NC +28689 : 36.03559 : -80.91265 : Union Grove, NC +28690 : 35.740368 : -81.56804 : Valdese, NC +28691 : 36.209158 : -81.778871 : Valle Crucis, NC +28692 : 36.268944 : -81.77819 : Vilas, NC +28693 : 36.474746 : -81.5371 : Warrensville, NC +28694 : 36.375468 : -81.47784 : West Jefferson, NC +28697 : 36.136991 : -81.17462 : Wilkesboro, NC +28698 : 36.321009 : -81.74404 : Zionville, NC +28699 : 35.831037 : -81.00762 : Scotts, NC +28701 : 35.712999 : -82.63479 : Alexander, NC +28702 : 35.412166 : -83.58395 : Almond, NC +28704 : 35.459869 : -82.54142 : Arden, NC +28705 : 36.033454 : -82.16858 : Bakersville, NC +28707 : 35.419931 : -83.08029 : Balsam, NC +28708 : 35.289152 : -82.83859 : Balsam Grove, NC +28709 : 35.756437 : -82.41471 : Barnardsville, NC +28710 : 35.464897 : -82.28307 : Bat Cave, NC +28711 : 35.605146 : -82.31665 : Black Mountain, NC +28712 : 35.188077 : -82.75799 : Brevard, NC +28713 : 35.395491 : -83.47397 : Bryson City, NC +28714 : 35.891276 : -82.30008 : Burnsville, NC +28715 : 35.529895 : -82.70449 : Candler, NC +28716 : 35.503301 : -82.85103 : Canton, NC +28717 : 35.103251 : -83.09538 : Cashiers, NC +28718 : 35.154193 : -82.62466 : Cedar Mountain, NC +28719 : 35.50359 : -83.29698 : Cherokee, NC +28720 : 35.436893 : -82.241744 : Chimney Rock, NC +28721 : 35.60089 : -82.93536 : Clyde, NC +28722 : 35.248689 : -82.18161 : Columbus, NC +28723 : 35.256241 : -83.14464 : Cullowhee, NC +28724 : 35.295403 : -82.388325 : Dana, NC +28725 : 35.36852 : -83.25321 : Dillsboro, NC +28726 : 35.280702 : -82.41834 : East Flat Rock, NC +28727 : 35.322276 : -82.503226 : Edneyville, NC +28728 : 35.498797 : -82.708024 : Enka, NC +28729 : 35.311112 : -82.60288 : Etowah, NC +28730 : 35.526686 : -82.37542 : Fairview, NC +28731 : 35.270682 : -82.41515 : Flat Rock, NC +28732 : 35.437611 : -82.48999 : Fletcher, NC +28733 : 35.435102 : -83.82171 : Fontana Dam, NC +28734 : 35.185018 : -83.39032 : Franklin, NC +28735 : 35.478887 : -82.34855 : Gerton, NC +28736 : 35.175847 : -83.11146 : Glenville, NC +28737 : 35.738725 : -82.059494 : Glenwood, NC +28738 : 35.468264 : -83.002841 : Hazelwood, NC +28739 : 35.290454 : -82.50652 : Hendersonville, NC +28740 : 36.023817 : -82.29237 : Greenmountain, NC +28741 : 35.06252 : -83.21173 : Highlands, NC +28742 : 35.362016 : -82.60353 : Horse Shoe, NC +28743 : 35.834212 : -82.86149 : Hot Springs, NC +28744 : 35.117299 : -83.295244 : Franklin, NC +28745 : 35.527982 : -82.96774 : Lake Junaluska, NC +28746 : 35.451314 : -82.185 : Lake Lure, NC +28747 : 35.146004 : -82.92258 : Lake Toxaway, NC +28748 : 35.661009 : -82.73513 : Leicester, NC +28749 : 35.849372 : -82.07899 : Little Switzerland, NC +28750 : 35.236179 : -82.236198 : Lynn, NC +28751 : 35.518138 : -83.085 : Maggie Valley, NC +28752 : 35.709124 : -82.01719 : Marion, NC +28753 : 35.852912 : -82.68447 : Marshall, NC +28754 : 35.866763 : -82.52043 : Mars Hill, NC +28755 : 35.909707 : -82.21395 : Micaville, NC +28756 : 35.336523 : -82.18313 : Mill Spring, NC +28757 : 35.646373 : -82.29968 : Montreat, NC +28758 : 35.37094 : -82.4945 : Mountain Home, NC +28760 : 35.381677 : -82.481257 : Naples, NC +28761 : 35.666254 : -81.90629 : Nebo, NC +28762 : 35.625414 : -82.18229 : Old Fort, NC +28763 : 35.050529 : -83.42225 : Otto, NC +28765 : 35.931539 : -82.11072 : Penland, NC +28766 : 35.264303 : -82.62357 : Penrose, NC +28767 : 35.640648 : -82.165546 : Old Fort, NC +28768 : 35.272331 : -82.67373 : Pisgah Forest, NC +28770 : 35.618596 : -82.30048 : Ridgecrest, NC +28771 : 35.345611 : -83.79634 : Robbinsville, NC +28772 : 35.139812 : -82.84253 : Rosman, NC +28773 : 35.23899 : -82.34408 : Saluda, NC +28774 : 35.115467 : -83.01052 : Sapphire, NC +28775 : 35.03107 : -83.327411 : Scaly Mountain, NC +28776 : 35.483482 : -82.520707 : Skyland, NC +28777 : 35.910932 : -82.07366 : Spruce Pine, NC +28778 : 35.60243 : -82.40531 : Swannanoa, NC +28779 : 35.37273 : -83.20772 : Sylva, NC +28781 : 35.241747 : -83.62998 : Topton, NC +28782 : 35.221428 : -82.21712 : Tryon, NC +28783 : 35.248885 : -83.04111 : Tuckasegee, NC +28784 : 35.219796 : -82.43186 : Tuxedo, NC +28785 : 35.569047 : -83.009416 : Maggie Valley, NC +28786 : 35.511094 : -82.99607 : Waynesville, NC +28787 : 35.723848 : -82.54285 : Weaverville, NC +28788 : 35.328533 : -83.233302 : Webster, NC +28789 : 35.418018 : -83.30887 : Whittier, NC +28790 : 35.202275 : -82.47156 : Zirconia, NC +28791 : 35.345487 : -82.49673 : Hendersonville, NC +28792 : 35.353837 : -82.41625 : Hendersonville, NC +28793 : 35.292714 : -82.503611 : Hendersonville, NC +28796 : 35.29118 : -82.41453 : East Flat Rock, NC +28800 : 35.564734 : -82.597992 : Asheville, NC +28801 : 35.595661 : -82.55632 : Asheville, NC +28802 : 35.623732 : -82.667132 : Asheville, NC +28803 : 35.54179 : -82.52307 : Asheville, NC +28804 : 35.635844 : -82.55992 : Asheville, NC +28805 : 35.599363 : -82.50007 : Asheville, NC +28806 : 35.575877 : -82.6062 : Asheville, NC +28808 : 35.486156 : -82.532081 : Asheville, NC +28810 : 35.620335 : -82.528558 : Asheville, NC +28813 : 35.50042 : -82.502644 : Asheville, NC +28814 : 35.664752 : -82.492664 : Asheville, NC +28815 : 35.620335 : -82.528558 : Asheville, NC +28816 : 35.620335 : -82.528558 : Asheville, NC +28818 : 34.924076 : -77.764819 : Beulaville, NC +28849 : 34.300421 : -77.934656 : Wrightsboro, NC +28894 : 35.267373 : -79.280088 : Vass, NC +28901 : 35.202178 : -83.81695 : Andrews, NC +28902 : 35.02851 : -83.94882 : Brasstown, NC +28903 : 35.094379 : -84.035916 : Culberson, NC +28904 : 35.052591 : -83.76683 : Hayesville, NC +28905 : 35.152197 : -83.94231 : Marble, NC +28906 : 35.091332 : -84.09018 : Murphy, NC +28909 : 34.994752 : -83.90161 : Warne, NC +28950 : 35.526959 : -77.404512 : Winterville, NC +28954 : 34.673805 : -76.97842 : Emerald Isle, NC +28971 : 35.350962 : -82.494187 : Hendersonville, NC +28972 : 35.299726 : -82.449228 : Hendersonville, NC +29001 : 33.76993 : -80.17278 : Alcolu, SC +29002 : 34.126535 : -81.234811 : Ballentine, SC +29003 : 33.272026 : -81.03203 : Bamberg, SC +29006 : 33.872503 : -81.55245 : Batesburg, SC +29009 : 34.422793 : -80.36129 : Bethune, SC +29010 : 34.213582 : -80.26083 : Bishopville, SC +29014 : 34.552119 : -81.13542 : Blackstock, SC +29015 : 34.428673 : -81.35898 : Blair, SC +29016 : 34.200042 : -80.98653 : Blythewood, SC +29018 : 33.354403 : -80.65134 : Bowman, SC +29020 : 34.278935 : -80.59142 : Camden, SC +29030 : 33.572356 : -80.67158 : Cameron, SC +29031 : 34.603967 : -81.4496 : Carlisle, SC +29032 : 34.349725 : -80.48117 : Cassatt, SC +29033 : 33.964753 : -81.06618 : Cayce, SC +29036 : 34.128998 : -81.33822 : Chapin, SC +29037 : 34.188584 : -81.87043 : Chappells, SC +29038 : 33.372063 : -80.98409 : Cope, SC +29039 : 33.425547 : -80.90083 : Cordova, SC +29040 : 34.029407 : -80.44405 : Dalzell, SC +29041 : 33.688373 : -80.208109 : Davis Station, SC +29042 : 33.321406 : -81.14318 : Denmark, SC +29044 : 33.911025 : -80.70157 : Eastover, SC +29045 : 34.1699 : -80.81448 : Elgin, SC +29046 : 34.107967 : -80.161 : Elliott, SC +29047 : 33.52803 : -80.58127 : Elloree, SC +29048 : 33.399511 : -80.32069 : Eutawville, SC +29051 : 33.845399 : -80.13052 : Gable, SC +29052 : 33.839441 : -80.74802 : Gadsden, SC +29053 : 33.830405 : -81.09219 : Gaston, SC +29054 : 33.947764 : -81.3823 : Gilbert, SC +29055 : 34.569908 : -80.90972 : Great Falls, SC +29056 : 33.634675 : -79.99205 : Greeleyville, SC +29058 : 34.588329 : -80.70107 : Heath Springs, SC +29059 : 33.332666 : -80.42251 : Holly Hill, SC +29061 : 33.920721 : -80.84535 : Hopkins, SC +29062 : 34.020978 : -80.56786 : Horatio, SC +29063 : 34.120487 : -81.19686 : Irmo, SC +29065 : 34.295632 : -81.30068 : Jenkinsville, SC +29066 : 33.905722 : -81.530165 : Batesburg-Leesville, SC +29067 : 34.545825 : -80.54807 : Kershaw, SC +29069 : 34.183978 : -80.07629 : Lamar, SC +29070 : 33.931279 : -81.465 : Leesville, SC +29071 : 33.925183 : -81.248345 : Lexington, SC +29072 : 33.991362 : -81.25047 : Lexington, SC +29073 : 33.917812 : -81.21854 : Lexington, SC +29074 : 34.450789 : -80.79844 : Liberty Hill, SC +29075 : 34.194914 : -81.39016 : Little Mountain, SC +29078 : 34.204467 : -80.70776 : Lugoff, SC +29079 : 34.296064 : -80.11319 : Lydia, SC +29080 : 34.007854 : -80.0675 : Lynchburg, SC +29081 : 33.094711 : -81.04345 : Ehrhardt, SC +29082 : 33.040507 : -80.95448 : Lodge, SC +29101 : 34.461353 : -80.2506 : McBee, SC +29102 : 33.647611 : -80.21281 : Manning, SC +29103 : 33.989924 : -80.208361 : Mayesville, SC +29104 : 34.000732 : -80.2136 : Mayesville, SC +29105 : 33.831118 : -81.59772 : Monetta, SC +29106 : 34.373596 : -81.098735 : Monticello, SC +29107 : 33.532767 : -81.12298 : Neeses, SC +29108 : 34.282877 : -81.61641 : Newberry, SC +29111 : 33.795243 : -80.04196 : New Zion, SC +29112 : 33.629017 : -81.09763 : North, SC +29113 : 33.445032 : -81.12334 : Norway, SC +29114 : 33.9413 : -79.93219 : Olanta, SC +29115 : 33.487767 : -80.8564 : Orangeburg, SC +29116 : 33.49593 : -80.824603 : Orangeburg, SC +29117 : 33.442019 : -80.797486 : Orangeburg, SC +29118 : 33.548282 : -80.88513 : Orangeburg, SC +29122 : 34.242848 : -81.32649 : Peak, SC +29123 : 33.771358 : -81.25987 : Pelion, SC +29124 : 33.630125 : -81.30861 : Perry, SC +29125 : 33.71469 : -80.4548 : Pinewood, SC +29126 : 34.305501 : -81.4218 : Pomaria, SC +29127 : 34.14854 : -81.511 : Prosperity, SC +29128 : 34.094472 : -80.54447 : Rembert, SC +29129 : 33.804368 : -81.65577 : Ridge Spring, SC +29130 : 34.328826 : -80.88762 : Ridgeway, SC +29132 : 34.309957 : -81.12724 : Rion, SC +29133 : 33.37731 : -80.81601 : Rowesville, SC +29135 : 33.675533 : -80.79563 : Saint Matthews, SC +29137 : 33.593634 : -81.32226 : Salley, SC +29138 : 34.029635 : -81.77579 : Saluda, SC +29142 : 33.462378 : -80.50903 : Santee, SC +29143 : 33.688373 : -80.208109 : Sardinia, SC +29145 : 34.215881 : -81.75318 : Silverstreet, SC +29146 : 33.506999 : -81.28947 : Springfield, SC +29147 : 34.005992 : -80.970766 : State Park, SC +29148 : 33.570595 : -80.33969 : Summerton, SC +29150 : 33.916418 : -80.35738 : Sumter, SC +29151 : 33.899856 : -80.37434 : Sumter, SC +29152 : 33.972863 : -80.46534 : Shaw A F B, SC +29153 : 33.948928 : -80.32025 : Sumter, SC +29154 : 33.899155 : -80.43433 : Sumter, SC +29160 : 33.734171 : -81.07563 : Swansea, SC +29161 : 34.115691 : -79.94482 : Timmonsville, SC +29162 : 33.88759 : -80.01013 : Turbeville, SC +29163 : 33.434712 : -80.43046 : Vance, SC +29164 : 33.659078 : -81.40845 : Wagener, SC +29166 : 33.90529 : -81.70607 : Ward, SC +29168 : 33.881986 : -80.50487 : Wedgefield, SC +29169 : 33.990952 : -81.08956 : West Columbia, SC +29170 : 33.943251 : -81.14142 : West Columbia, SC +29171 : 33.925183 : -81.248345 : West Columbia, SC +29172 : 33.902216 : -81.08256 : West Columbia, SC +29175 : 34.443733 : -80.60138 : Westville, SC +29176 : 34.373596 : -81.098735 : White Oak, SC +29177 : 34.143934 : -81.27281 : White Rock, SC +29178 : 34.502577 : -81.60777 : Whitmire, SC +29180 : 34.369441 : -81.08218 : Winnsboro, SC +29201 : 33.998454 : -81.03519 : Columbia, SC +29202 : 34.022921 : -81.02886 : Columbia, SC +29203 : 34.066271 : -81.02492 : Columbia, SC +29204 : 34.027955 : -81.00008 : Columbia, SC +29205 : 33.990555 : -80.99826 : Columbia, SC +29206 : 34.037557 : -80.96024 : Columbia, SC +29207 : 34.021442 : -80.94144 : Columbia, SC +29208 : 33.993705 : -81.019913 : Columbia, SC +29209 : 33.968011 : -80.93844 : Columbia, SC +29210 : 34.041646 : -81.10624 : Columbia, SC +29211 : 34.096716 : -80.922338 : Columbia, SC +29212 : 34.075611 : -81.17611 : Columbia, SC +29214 : 34.005992 : -80.970766 : Columbia, SC +29215 : 34.005992 : -80.970766 : Columbia, SC +29216 : 34.005992 : -80.970766 : Columbia, SC +29217 : 34.005992 : -80.970766 : Columbia, SC +29218 : 34.005992 : -80.970766 : Columbia, SC +29219 : 34.005992 : -80.970766 : Columbia, SC +29220 : 34.005992 : -80.970766 : Columbia, SC +29221 : 34.005992 : -80.970766 : Columbia, SC +29222 : 34.005992 : -80.970766 : Columbia, SC +29223 : 34.084069 : -80.93286 : Columbia, SC +29224 : 34.005992 : -80.970766 : Columbia, SC +29225 : 34.005992 : -80.970766 : Columbia, SC +29226 : 34.005992 : -80.970766 : Columbia, SC +29227 : 34.005992 : -80.970766 : Columbia, SC +29228 : 33.925183 : -81.248345 : Columbia, SC +29229 : 34.139511 : -80.88783 : Columbia, SC +29230 : 34.107483 : -81.062623 : Columbia, SC +29233 : 34.091966 : -80.87343 : Columbia, SC +29235 : 34.457522 : -81.880871 : Clinton, SC +29240 : 34.005992 : -80.970766 : Columbia, SC +29250 : 34.005992 : -80.970766 : Columbia, SC +29260 : 34.005992 : -80.970766 : Columbia, SC +29290 : 34.005992 : -80.970766 : Columbia, SC +29292 : 34.005992 : -80.970766 : Columbia, SC +29301 : 34.940921 : -81.98682 : Spartanburg, SC +29302 : 34.926075 : -81.87919 : Spartanburg, SC +29303 : 34.980636 : -81.95665 : Spartanburg, SC +29304 : 34.916625 : -81.863874 : Spartanburg, SC +29305 : 35.111404 : -82.105503 : Spartanburg, SC +29306 : 34.925353 : -81.9308 : Spartanburg, SC +29307 : 34.982424 : -81.85729 : Spartanburg, SC +29316 : 35.033903 : -81.97413 : Spartanburg, SC +29318 : 34.888237 : -81.96902 : Spartanburg, SC +29319 : 34.888237 : -81.96902 : Spartanburg, SC +29320 : 34.957898 : -81.99252 : Arcadia, SC +29321 : 34.715641 : -81.71187 : Buffalo, SC +29322 : 35.109207 : -82.141 : Campobello, SC +29323 : 35.131971 : -81.88553 : Chesnee, SC +29324 : 34.99056 : -81.83271 : Clifton, SC +29325 : 34.470115 : -81.86761 : Clinton, SC +29329 : 35.001748 : -81.832999 : Converse, SC +29330 : 35.043505 : -81.81026 : Cowpens, SC +29331 : 34.638315 : -81.856745 : Cross Anchor, SC +29332 : 34.270774 : -81.98276 : Cross Hill, SC +29333 : 34.968472 : -81.906376 : Drayton, SC +29334 : 34.915071 : -82.13322 : Duncan, SC +29335 : 34.660137 : -81.90924 : Enoree, SC +29336 : 34.888237 : -81.96902 : Fairforest, SC +29338 : 35.136333 : -82.00328 : Fingerville, SC +29340 : 35.03653 : -81.62497 : Gaffney, SC +29341 : 35.10425 : -81.69232 : Gaffney, SC +29342 : 34.996314 : -81.652395 : Gaffney, SC +29346 : 35.044719 : -81.977324 : Glendale, SC +29348 : 34.888237 : -81.96902 : Gramling, SC +29349 : 35.061431 : -82.07523 : Inman, SC +29351 : 34.415818 : -81.8106 : Joanna, SC +29353 : 34.828217 : -81.66903 : Jonesville, SC +29355 : 34.338289 : -81.78674 : Kinards, SC +29356 : 35.15617 : -82.22045 : Landrum, SC +29360 : 34.503167 : -82.02271 : Laurens, SC +29363 : 34.342221 : -79.165102 : Lake View, SC +29364 : 34.788053 : -81.46124 : Lockhart, SC +29365 : 34.96589 : -82.14541 : Lyman, SC +29368 : 34.949241 : -81.990216 : Mayo, SC +29369 : 34.865445 : -82.02018 : Moore, SC +29370 : 34.367183 : -81.9768 : Mountville, SC +29372 : 34.900682 : -81.74846 : Pacolet, SC +29373 : 34.925281 : -81.74321 : Pacolet Mills, SC +29374 : 34.783908 : -81.85468 : Pauline, SC +29375 : 34.862432 : -82.11066 : Reidville, SC +29376 : 34.856283 : -81.95444 : Roebuck, SC +29377 : 34.935828 : -82.09514 : Startex, SC +29378 : 34.853013 : -81.772738 : Una, SC +29379 : 34.714045 : -81.60496 : Union, SC +29384 : 34.323605 : -82.08325 : Waterloo, SC +29385 : 34.954729 : -82.09312 : Wellford, SC +29386 : 34.888237 : -81.96902 : White Stone, SC +29388 : 34.758703 : -82.0483 : Woodruff, SC +29390 : 34.888237 : -81.96902 : Duncan, SC +29391 : 34.888237 : -81.96902 : Duncan, SC +29401 : 32.779126 : -79.9355 : Charleston, SC +29402 : 32.84885 : -79.85773 : Charleston, SC +29403 : 32.799326 : -79.94813 : Charleston, SC +29404 : 32.897903 : -80.06061 : Charleston AFB, SC +29405 : 32.856634 : -79.98218 : North Charleston, SC +29406 : 32.918757 : -80.0228 : Charleston, SC +29407 : 32.794841 : -80.005 : Charleston, SC +29409 : 32.84885 : -79.85773 : Charleston, SC +29410 : 33.192514 : -80.03063 : Charleston, SC +29412 : 32.73727 : -79.95409 : Charleston, SC +29413 : 32.84885 : -79.85773 : Charleston, SC +29414 : 32.821238 : -80.05353 : Charleston, SC +29415 : 32.84885 : -79.85773 : Charleston, SC +29416 : 32.84885 : -79.85773 : Charleston, SC +29417 : 32.84885 : -79.85773 : Charleston, SC +29418 : 32.879529 : -80.05911 : North Charleston, SC +29419 : 32.84885 : -79.85773 : Charleston, SC +29420 : 32.93064 : -80.09247 : North Charleston, SC +29422 : 32.84885 : -79.85773 : Charleston, SC +29423 : 32.981952 : -80.07363 : Charleston, SC +29424 : 32.783076 : -79.93701 : Charleston, SC +29425 : 32.786176 : -79.94711 : Charleston, SC +29426 : 32.790622 : -80.38489 : Adams Run, SC +29429 : 32.97251 : -79.6607 : Awendaw, SC +29430 : 33.174292 : -79.78991 : Bethera, SC +29431 : 33.284887 : -79.91504 : Bonneau, SC +29432 : 33.229581 : -80.80248 : Branchville, SC +29433 : 33.061376 : -80.631208 : Canadys, SC +29434 : 33.119898 : -79.85797 : Cordesville, SC +29435 : 32.976399 : -80.47925 : Cottageville, SC +29436 : 33.345833 : -80.19009 : Cross, SC +29437 : 33.144807 : -80.41593 : Dorchester, SC +29438 : 32.542343 : -80.31682 : Edisto Island, SC +29439 : 32.662451 : -79.93224 : Folly Beach, SC +29440 : 33.38934 : -79.32638 : Georgetown, SC +29442 : 33.403693 : -79.226361 : Georgetown, SC +29445 : 32.991185 : -80.02347 : Goose Creek, SC +29446 : 32.683083 : -80.56074 : Green Pond, SC +29447 : 33.086324 : -80.62279 : Grover, SC +29448 : 33.237382 : -80.45186 : Harleyville, SC +29449 : 32.715745 : -80.26738 : Hollywood, SC +29450 : 33.046869 : -79.8097 : Huger, SC +29451 : 32.798138 : -79.76496 : Isle Of Palms, SC +29452 : 32.745396 : -80.46458 : Jacksonboro, SC +29453 : 33.235105 : -79.61472 : Jamestown, SC +29455 : 32.717109 : -80.08507 : Johns Island, SC +29456 : 32.993571 : -80.12165 : Ladson, SC +29457 : 32.84885 : -79.85773 : Johns Island, SC +29458 : 33.10594 : -79.4657 : McClellanville, SC +29461 : 33.164225 : -80.01039 : Moncks Corner, SC +29464 : 32.813518 : -79.85899 : Mount Pleasant, SC +29465 : 32.84885 : -79.85773 : Mount Pleasant, SC +29466 : 32.87602 : -79.79148 : Mount Pleasant, SC +29468 : 33.418106 : -80.07822 : Pineville, SC +29469 : 33.252941 : -80.08297 : Pinopolis, SC +29470 : 32.788784 : -80.22778 : Ravenel, SC +29471 : 33.198286 : -80.65637 : Reevesville, SC +29472 : 33.03271 : -80.31958 : Ridgeville, SC +29474 : 32.939642 : -80.54405 : Round O, SC +29475 : 32.977614 : -80.81529 : Ruffin, SC +29476 : 33.164201 : -79.904182 : Russellville, SC +29477 : 33.187906 : -80.57602 : Saint George, SC +29479 : 33.391941 : -79.91737 : Saint Stephen, SC +29481 : 33.105834 : -80.81066 : Smoaks, SC +29482 : 32.763456 : -79.83791 : Sullivans Island, SC +29483 : 33.034586 : -80.18599 : Summerville, SC +29484 : 33.00234 : -80.226694 : Summerville, SC +29485 : 32.983408 : -80.17627 : Summerville, SC +29487 : 32.651864 : -80.17774 : Wadmalaw Island, SC +29488 : 32.89989 : -80.67195 : Walterboro, SC +29492 : 32.91583 : -79.8846 : Charleston, SC +29493 : 33.03378 : -80.84282 : Williams, SC +29494 : 32.727638 : -80.24773 : Hollywood, SC +29501 : 34.195705 : -79.80977 : Florence, SC +29502 : 34.200994 : -79.784721 : Florence, SC +29503 : 34.062999 : -79.650627 : Florence, SC +29504 : 34.041582 : -79.693294 : Florence, SC +29505 : 34.142119 : -79.74311 : Florence, SC +29506 : 34.201299 : -79.71722 : Florence, SC +29510 : 33.45053 : -79.59233 : Andrews, SC +29511 : 33.985128 : -79.14985 : Aynor, SC +29512 : 34.657694 : -79.69151 : Bennettsville, SC +29516 : 34.467072 : -79.6437 : Blenheim, SC +29518 : 33.78144 : -79.88688 : Cades, SC +29519 : 34.028989 : -79.3594 : Centenary, SC +29520 : 34.68862 : -79.92315 : Cheraw, SC +29525 : 34.571839 : -79.53847 : Clio, SC +29526 : 33.850218 : -79.01692 : Conway, SC +29527 : 33.801049 : -79.1148 : Conway, SC +29528 : 33.935814 : -78.919205 : Conway, SC +29530 : 33.985431 : -79.74037 : Coward, SC +29532 : 34.291269 : -79.8761 : Darlington, SC +29535 : 33.911717 : -82.30074 : McCormick, SC +29536 : 34.413907 : -79.36512 : Dillon, SC +29540 : 34.388055 : -79.89135 : Darlington, SC +29541 : 34.070033 : -79.75793 : Effingham, SC +29542 : 34.425629 : -79.352291 : Floyd Dale, SC +29543 : 34.289399 : -79.27039 : Fork, SC +29544 : 34.002167 : -79.19325 : Galivants Ferry, SC +29545 : 34.164187 : -78.96696 : Green Sea, SC +29546 : 33.939996 : -79.36142 : Gresham, SC +29547 : 34.483711 : -79.32815 : Hamer, SC +29549 : 33.798844 : -78.739531 : Myrtle Beach, SC +29550 : 34.386728 : -80.08256 : Hartsville, SC +29551 : 34.365898 : -80.132418 : Hartsville, SC +29554 : 33.71239 : -79.40387 : Hemingway, SC +29555 : 33.830612 : -79.45494 : Johnsonville, SC +29556 : 33.671678 : -79.78693 : Kingstree, SC +29560 : 33.859815 : -79.7542 : Lake City, SC +29561 : 34.336439 : -79.432546 : Latta, SC +29563 : 34.345437 : -79.18651 : Lake View, SC +29564 : 33.493553 : -79.87402 : Lane, SC +29565 : 34.340797 : -79.45893 : Latta, SC +29566 : 33.873017 : -78.64282 : Little River, SC +29567 : 34.525937 : -79.42049 : Little Rock, SC +29568 : 33.915705 : -78.74796 : Longs, SC +29569 : 34.046247 : -78.9008 : Loris, SC +29570 : 34.671428 : -79.55308 : McColl, SC +29571 : 34.164094 : -79.396 : Marion, SC +29572 : 33.765136 : -78.79097 : Myrtle Beach, SC +29573 : 34.488255 : -79.476859 : Minturn, SC +29574 : 34.194685 : -79.25775 : Mullins, SC +29575 : 33.627763 : -78.98126 : Myrtle Beach, SC +29576 : 33.568115 : -79.03226 : Murrells Inlet, SC +29577 : 33.698101 : -78.89604 : Myrtle Beach, SC +29578 : 33.738887 : -78.999561 : Myrtle Beach, SC +29579 : 33.729439 : -78.97824 : Myrtle Beach, SC +29580 : 33.653454 : -79.56773 : Nesmith, SC +29581 : 34.19138 : -79.11348 : Nichols, SC +29582 : 33.823495 : -78.67824 : North Myrtle Beach, SC +29583 : 33.983639 : -79.57018 : Pamplico, SC +29584 : 34.585217 : -80.06109 : Patrick, SC +29585 : 33.467343 : -79.1301 : Pawleys Island, SC +29587 : 33.621094 : -78.963155 : Myrtle Beach, SC +29588 : 33.694757 : -78.999862 : Myrtle Beach, SC +29589 : 34.095976 : -79.31738 : Rains, SC +29590 : 33.575913 : -79.85551 : Salters, SC +29591 : 33.927936 : -79.76429 : Scranton, SC +29592 : 34.283207 : -79.47272 : Sellers, SC +29593 : 34.492154 : -79.87045 : Society Hill, SC +29594 : 34.645047 : -79.58188 : Tatum, SC +29596 : 34.743074 : -79.83177 : Wallace, SC +29597 : 33.785803 : -78.971795 : North Myrtle Beach, SC +29598 : 33.935814 : -78.919205 : North Myrtle Beach, SC +29599 : 33.694492 : -79.011696 : Socastee, SC +29601 : 34.848301 : -82.40578 : Greenville, SC +29602 : 34.800718 : -82.395594 : Greenville, SC +29603 : 34.837666 : -82.371519 : Greenville, SC +29604 : 34.849745 : -82.453779 : Greenville, SC +29605 : 34.798035 : -82.39289 : Greenville, SC +29606 : 34.849745 : -82.453779 : Greenville, SC +29607 : 34.825592 : -82.34099 : Greenville, SC +29608 : 34.849745 : -82.453779 : Greenville, SC +29609 : 34.889217 : -82.39364 : Greenville, SC +29610 : 34.849745 : -82.453779 : Greenville, SC +29611 : 34.840717 : -82.44234 : Greenville, SC +29612 : 34.849745 : -82.453779 : Greenville, SC +29613 : 34.924876 : -82.433132 : Greenville, SC +29614 : 34.872423 : -82.362585 : Greenville, SC +29615 : 34.866801 : -82.31739 : Greenville, SC +29616 : 34.849745 : -82.453779 : Greenville, SC +29617 : 34.897829 : -82.447 : Greenville, SC +29620 : 34.189812 : -82.41245 : Abbeville, SC +29621 : 34.523657 : -82.62509 : Anderson, SC +29622 : 34.491988 : -82.782868 : Anderson, SC +29623 : 34.438087 : -82.835449 : Anderson, SC +29624 : 34.478139 : -82.6455 : Anderson, SC +29625 : 34.532638 : -82.71615 : Anderson, SC +29626 : 34.464572 : -82.74032 : Anderson, SC +29627 : 34.517231 : -82.49053 : Belton, SC +29628 : 34.095246 : -82.56215 : Calhoun Falls, SC +29630 : 34.733515 : -82.78407 : Central, SC +29631 : 34.681255 : -82.82176 : Clemson, SC +29632 : 34.847372 : -82.710126 : Clemson, SC +29633 : 34.847372 : -82.710126 : Clemson, SC +29634 : 34.847372 : -82.710126 : Clemson, SC +29635 : 35.084282 : -82.62565 : Cleveland, SC +29636 : 34.849745 : -82.453779 : Conestee, SC +29638 : 34.370703 : -82.33427 : Donalds, SC +29639 : 34.325575 : -82.4023 : Due West, SC +29640 : 34.849655 : -82.59365 : Easley, SC +29641 : 34.813542 : -82.653067 : Easley, SC +29642 : 34.789884 : -82.56459 : Easley, SC +29643 : 34.505005 : -82.99703 : Fair Play, SC +29644 : 34.681279 : -82.19732 : Fountain Inn, SC +29645 : 34.601311 : -82.13111 : Gray Court, SC +29646 : 34.169781 : -82.15474 : Greenwood, SC +29647 : 34.178813 : -82.163078 : Greenwood, SC +29648 : 34.21241 : -82.168139 : Greenwood, SC +29649 : 34.225872 : -82.15614 : Greenwood, SC +29650 : 34.911469 : -82.25178 : Greer, SC +29651 : 34.937356 : -82.22117 : Greer, SC +29652 : 34.849745 : -82.453779 : Greer, SC +29653 : 34.286915 : -82.23672 : Hodges, SC +29654 : 34.45451 : -82.38755 : Honea Path, SC +29655 : 34.299215 : -82.63812 : Iva, SC +29656 : 34.612144 : -82.76263 : La France, SC +29657 : 34.779483 : -82.68861 : Liberty, SC +29658 : 34.774914 : -83.27236 : Long Creek, SC +29659 : 34.210243 : -82.63239 : Lowndesville, SC +29661 : 35.048312 : -82.52726 : Marietta, SC +29662 : 34.774657 : -82.30432 : Mauldin, SC +29664 : 34.855841 : -83.16336 : Mountain Rest, SC +29665 : 34.725935 : -82.90985 : Newry, SC +29666 : 34.14606 : -82.00203 : Ninety Six, SC +29667 : 34.766305 : -82.75838 : Norris, SC +29669 : 34.646501 : -82.44077 : Pelzer, SC +29670 : 34.641851 : -82.76668 : Pendleton, SC +29671 : 34.912476 : -82.71136 : Pickens, SC +29672 : 34.736907 : -82.94599 : Seneca, SC +29673 : 34.723173 : -82.4565 : Piedmont, SC +29675 : 34.764076 : -83.088332 : Richland, SC +29676 : 34.888111 : -82.95878 : Salem, SC +29677 : 34.589662 : -82.74935 : Sandy Springs, SC +29678 : 34.660345 : -82.94557 : Seneca, SC +29679 : 34.607898 : -82.939668 : Seneca, SC +29680 : 34.709869 : -82.28385 : Simpsonville, SC +29681 : 34.762693 : -82.24512 : Simpsonville, SC +29682 : 34.833113 : -82.83794 : Six Mile, SC +29683 : 35.031252 : -82.49425 : Slater, SC +29684 : 34.376689 : -82.71772 : Starr, SC +29685 : 34.95424 : -82.8484 : Sunset, SC +29686 : 34.898387 : -83.04391 : Tamassee, SC +29687 : 34.935636 : -82.32238 : Taylors, SC +29688 : 35.068914 : -82.37061 : Tigerville, SC +29689 : 34.527385 : -82.86993 : Townville, SC +29690 : 35.018511 : -82.43224 : Travelers Rest, SC +29691 : 34.769994 : -83.06882 : Walhalla, SC +29692 : 34.404535 : -82.23851 : Ware Shoals, SC +29693 : 34.633763 : -83.11495 : Westminster, SC +29695 : 34.218582 : -82.304658 : Hodges, SC +29696 : 34.77272 : -83.02066 : West Union, SC +29697 : 34.622494 : -82.50551 : Williamston, SC +29698 : 34.888237 : -81.96902 : Greenville, SC +29702 : 35.118338 : -81.49413 : Blacksburg, SC +29703 : 34.992612 : -81.178712 : Bowling Green, SC +29704 : 34.843469 : -80.92235 : Catawba, SC +29706 : 34.720597 : -81.21429 : Chester, SC +29708 : 35.040969 : -80.99427 : Fort Mill, SC +29709 : 34.720306 : -80.09371 : Chesterfield, SC +29710 : 35.109114 : -81.19429 : Clover, SC +29712 : 34.795665 : -80.97792 : Edgemoor, SC +29714 : 34.702249 : -80.90157 : Fort Lawn, SC +29715 : 35.008416 : -80.91644 : Fort Mill, SC +29716 : 35.062815 : -80.969035 : Fort Mill, SC +29717 : 34.963208 : -81.43049 : Hickory Grove, SC +29718 : 34.631305 : -80.35877 : Jefferson, SC +29720 : 34.729073 : -80.76005 : Lancaster, SC +29721 : 34.699412 : -80.781721 : Lancaster, SC +29722 : 34.767269 : -80.658932 : Lancaster, SC +29724 : 34.774347 : -81.00994 : Lando, SC +29726 : 34.861633 : -81.22788 : McConnells, SC +29727 : 34.712457 : -80.26799 : Mount Croghan, SC +29728 : 34.769259 : -80.39935 : Pageland, SC +29729 : 34.692002 : -81.00536 : Richburg, SC +29730 : 34.914611 : -81.0125 : Rock Hill, SC +29731 : 34.992612 : -81.178712 : Rock Hill, SC +29732 : 34.969427 : -81.0509 : Rock Hill, SC +29733 : 34.992612 : -81.178712 : Rock Hill, SC +29734 : 34.992612 : -81.178712 : Rock Hill, SC +29741 : 34.721265 : -80.19733 : Ruby, SC +29742 : 34.870127 : -81.39136 : Sharon, SC +29743 : 35.041829 : -81.40335 : Smyrna, SC +29744 : 34.973866 : -80.851836 : Van Wyck, SC +29745 : 35.005981 : -81.21176 : York, SC +29756 : 33.595996 : -79.001441 : Garden City, SC +29801 : 33.569885 : -81.71368 : Aiken, SC +29802 : 33.723519 : -81.59072 : Aiken, SC +29803 : 33.486049 : -81.70946 : Aiken, SC +29804 : 33.53773 : -81.599891 : Aiken, SC +29805 : 33.650812 : -81.61561 : Aiken, SC +29808 : 33.53773 : -81.599891 : Aiken, SC +29809 : 33.415481 : -81.68632 : New Ellenton, SC +29810 : 33.010041 : -81.33069 : Allendale, SC +29812 : 33.226172 : -81.36031 : Barnwell, SC +29813 : 33.291666 : -81.482658 : Hilda, SC +29816 : 33.503438 : -81.87128 : Bath, SC +29817 : 33.363785 : -81.28416 : Blackville, SC +29819 : 34.074234 : -82.23492 : Bradley, SC +29821 : 33.643924 : -82.13638 : Clarks Hill, SC +29822 : 33.498386 : -81.89705 : Clearwater, SC +29824 : 33.819096 : -81.95036 : Edgefield, SC +29826 : 33.380314 : -81.37854 : Elko, SC +29827 : 32.963048 : -81.24052 : Fairfax, SC +29828 : 33.523241 : -81.82785 : Gloverville, SC +29829 : 33.566349 : -81.84119 : Graniteville, SC +29831 : 33.337781 : -81.8214 : Jackson, SC +29832 : 33.824496 : -81.79179 : Johnston, SC +29834 : 33.51344 : -81.85264 : Langley, SC +29835 : 33.91509 : -82.30548 : McCormick, SC +29836 : 33.080604 : -81.49201 : Martin, SC +29838 : 33.733657 : -82.19251 : Modoc, SC +29839 : 33.507335 : -81.599198 : Montmorenci, SC +29840 : 33.997908 : -82.51411 : Mount Carmel, SC +29841 : 33.517435 : -81.94945 : North Augusta, SC +29842 : 33.443562 : -81.87994 : Beech Island, SC +29843 : 33.190068 : -81.18294 : Olar, SC +29844 : 33.7802 : -82.21285 : Parksville, SC +29845 : 33.84674 : -82.23442 : Plum Branch, SC +29846 : 33.047132 : -81.22185 : Sycamore, SC +29847 : 33.695638 : -81.85192 : Trenton, SC +29848 : 33.980222 : -82.19013 : Troy, SC +29849 : 33.092403 : -81.2209 : Ulmer, SC +29850 : 33.619604 : -81.81628 : Vaucluse, SC +29851 : 33.530409 : -81.81743 : Warrenville, SC +29853 : 33.405948 : -81.42936 : Williston, SC +29856 : 33.475916 : -81.51935 : Windsor, SC +29860 : 33.59107 : -81.96445 : North Augusta, SC +29861 : 33.53773 : -81.599891 : North Augusta, SC +29875 : 33.55016 : -79.053838 : Murrells Inlet, SC +29899 : 33.83562 : -82.319983 : McCormick, SC +29901 : 32.424353 : -80.565343 : Beaufort, SC +29902 : 32.421594 : -80.67505 : Beaufort, SC +29903 : 32.443974 : -80.735245 : Beaufort, SC +29904 : 32.390605 : -80.661027 : Beaufort, SC +29905 : 32.340119 : -80.689041 : Beaufort, SC +29906 : 32.445712 : -80.74845 : Beaufort, SC +29907 : 32.447677 : -80.642097 : Beaufort, SC +29909 : 32.312621 : -80.915532 : Hilton Head Island, SC +29910 : 32.241315 : -80.87404 : Bluffton, SC +29911 : 32.928131 : -81.16602 : Brunson, SC +29912 : 32.488929 : -80.989142 : Coosawatchie, SC +29913 : 32.929902 : -81.184627 : Crocketville, SC +29914 : 32.552652 : -80.677001 : Dale, SC +29915 : 32.156011 : -80.787899 : Daufuskie Island, SC +29916 : 32.72765 : -80.94972 : Early Branch, SC +29918 : 32.744565 : -81.24794 : Estill, SC +29920 : 32.371697 : -80.5503 : Saint Helena Island, SC +29921 : 32.67553 : -81.17208 : Furman, SC +29922 : 32.593295 : -81.24035 : Garnett, SC +29923 : 32.866195 : -81.24215 : Gifford, SC +29924 : 32.868065 : -81.10998 : Hampton, SC +29925 : 32.21319 : -80.799698 : Hilton Head Island, SC +29926 : 32.226713 : -80.74325 : Hilton Head Island, SC +29927 : 32.277216 : -81.07847 : Hardeeville, SC +29928 : 32.159476 : -80.75144 : Hilton Head Island, SC +29929 : 32.934459 : -80.91937 : Islandton, SC +29931 : 32.538432 : -80.702594 : Lobeco, SC +29932 : 32.818844 : -81.30864 : Luray, SC +29933 : 32.788773 : -81.126913 : Miley, SC +29934 : 32.602042 : -81.12453 : Pineland, SC +29935 : 32.382453 : -80.69009 : Port Royal, SC +29936 : 32.493936 : -80.97461 : Ridgeland, SC +29938 : 32.390605 : -80.661027 : Hilton Head Island, SC +29939 : 32.669734 : -81.2447 : Scotia, SC +29940 : 32.566537 : -80.74987 : Seabrook, SC +29941 : 32.586005 : -80.82739 : Sheldon, SC +29942 : 32.881971 : -81.111258 : Hampton, SC +29943 : 32.458459 : -81.10567 : Tillman, SC +29944 : 32.822292 : -81.05236 : Varnville, SC +29945 : 32.681058 : -80.83348 : Yemassee, SC +29982 : 32.206894 : -80.687134 : Hilton Head Island, SC +30002 : 33.772122 : -84.26491 : Avondale Estates, GA +30003 : 33.960353 : -84.037859 : Norcross, GA +30004 : 34.119177 : -84.30292 : Alpharetta, GA +30005 : 34.080035 : -84.21929 : Alpharetta, GA +30006 : 33.912473 : -84.557181 : Marietta, GA +30007 : 33.912473 : -84.557181 : Marietta, GA +30008 : 33.907336 : -84.5788 : Marietta, GA +30009 : 33.844371 : -84.47405 : Alpharetta, GA +30010 : 33.960353 : -84.037859 : Norcross, GA +30011 : 34.022974 : -83.83416 : Auburn, GA +30012 : 33.696714 : -84.01732 : Conyers, GA +30013 : 33.633685 : -83.98382 : Conyers, GA +30014 : 33.581406 : -83.851 : Covington, GA +30015 : 33.555791 : -83.864915 : Covington, GA +30016 : 33.542118 : -83.93372 : Covington, GA +30017 : 33.888829 : -83.96848 : Grayson, GA +30018 : 33.717989 : -83.801451 : Jersey, GA +30019 : 33.981721 : -83.88302 : Dacula, GA +30021 : 33.809604 : -84.2387 : Clarkston, GA +30022 : 34.026238 : -84.24506 : Alpharetta, GA +30023 : 33.844371 : -84.47405 : Alpharetta, GA +30024 : 34.052698 : -84.07485 : Suwanee, GA +30025 : 33.65072 : -83.70779 : Social Circle, GA +30026 : 33.962979 : -84.092267 : Duluth, GA +30028 : 34.193041 : -84.092588 : Cumming, GA +30029 : 33.960353 : -84.037859 : Duluth, GA +30030 : 33.771705 : -84.29407 : Decatur, GA +30031 : 33.891251 : -84.07456 : Decatur, GA +30032 : 33.740055 : -84.26791 : Decatur, GA +30033 : 33.811354 : -84.28335 : Decatur, GA +30034 : 33.693448 : -84.24743 : Decatur, GA +30035 : 33.725739 : -84.21114 : Decatur, GA +30036 : 33.891251 : -84.07456 : Decatur, GA +30037 : 33.891251 : -84.07456 : Decatur, GA +30038 : 33.676358 : -84.15381 : Lithonia, GA +30039 : 33.822204 : -84.03707 : Snellville, GA +30040 : 34.235408 : -84.17441 : Cumming, GA +30041 : 34.201503 : -84.09764 : Cumming, GA +30042 : 33.929464 : -84.103226 : Lawrenceville, GA +30043 : 34.001159 : -84.01487 : Lawrenceville, GA +30044 : 33.91967 : -84.07482 : Lawrenceville, GA +30045 : 33.949054 : -83.98565 : Lawrenceville, GA +30046 : 33.960353 : -84.037859 : Lawrenceville, GA +30047 : 33.872371 : -84.11655 : Lilburn, GA +30048 : 33.960353 : -84.037859 : Lilburn, GA +30052 : 33.823809 : -83.89423 : Loganville, GA +30054 : 33.658113 : -83.86249 : Oxford, GA +30055 : 33.504952 : -83.74735 : Mansfield, GA +30056 : 33.500008 : -83.67165 : Newborn, GA +30058 : 33.750257 : -84.0964 : Lithonia, GA +30060 : 33.932052 : -84.54746 : Marietta, GA +30061 : 33.932842 : -84.556004 : Marietta, GA +30062 : 33.99605 : -84.47464 : Marietta, GA +30063 : 33.965294 : -84.511209 : Marietta, GA +30064 : 33.946735 : -84.602 : Marietta, GA +30065 : 33.912473 : -84.557181 : Marietta, GA +30066 : 34.027533 : -84.51475 : Marietta, GA +30067 : 33.933002 : -84.47633 : Marietta, GA +30068 : 33.965601 : -84.4433 : Marietta, GA +30069 : 33.912473 : -84.557181 : Marietta, GA +30070 : 33.576043 : -83.89821 : Porterdale, GA +30071 : 33.940768 : -84.2062 : Norcross, GA +30072 : 33.791505 : -84.20642 : Pine Lake, GA +30074 : 33.891251 : -84.07456 : Redan, GA +30075 : 34.049789 : -84.38539 : Roswell, GA +30076 : 34.032532 : -84.31774 : Roswell, GA +30077 : 33.844371 : -84.47405 : Roswell, GA +30078 : 33.860955 : -84.01807 : Snellville, GA +30079 : 33.791537 : -84.25994 : Scottdale, GA +30080 : 33.87578 : -84.50382 : Smyrna, GA +30081 : 33.858836 : -84.71062 : Smyrna, GA +30082 : 33.859137 : -84.53744 : Smyrna, GA +30083 : 33.795622 : -84.19771 : Stone Mountain, GA +30084 : 33.853853 : -84.22036 : Tucker, GA +30085 : 33.891251 : -84.07456 : Tucker, GA +30086 : 33.891251 : -84.07456 : Stone Mountain, GA +30087 : 33.817438 : -84.13167 : Stone Mountain, GA +30088 : 33.762106 : -84.17938 : Stone Mountain, GA +30090 : 33.952451 : -84.547082 : Marietta, GA +30091 : 33.960353 : -84.037859 : Norcross, GA +30092 : 33.9692 : -84.23261 : Norcross, GA +30093 : 33.909952 : -84.1794 : Norcross, GA +30094 : 33.621906 : -84.04633 : Conyers, GA +30095 : 34.025598 : -84.13045 : Duluth, GA +30096 : 33.979401 : -84.15118 : Duluth, GA +30097 : 34.020621 : -84.14294 : Duluth, GA +30098 : 33.960353 : -84.037859 : Duluth, GA +30099 : 33.959535 : -84.105011 : Duluth, GA +30101 : 34.052285 : -84.68483 : Acworth, GA +30102 : 34.097998 : -84.6183 : Acworth, GA +30103 : 34.368647 : -84.92452 : Adairsville, GA +30104 : 34.065792 : -85.07227 : Aragon, GA +30105 : 34.448075 : -85.15313 : Armuchee, GA +30106 : 33.828061 : -84.62593 : Austell, GA +30107 : 34.344939 : -84.37204 : Ball Ground, GA +30108 : 33.533934 : -85.26088 : Bowdon, GA +30109 : 33.653355 : -85.136227 : Bowdon Junction, GA +30110 : 33.723939 : -85.14282 : Bremen, GA +30111 : 33.912473 : -84.557181 : Clarkdale, GA +30113 : 33.84627 : -85.20291 : Buchanan, GA +30114 : 34.228478 : -84.50402 : Canton, GA +30115 : 34.194029 : -84.43884 : Canton, GA +30116 : 33.560454 : -85.02254 : Carrollton, GA +30117 : 33.588486 : -85.1062 : Carrollton, GA +30118 : 33.571176 : -85.09612 : Carrollton, GA +30119 : 33.618931 : -85.073582 : Carrollton, GA +30120 : 34.167327 : -84.82764 : Cartersville, GA +30121 : 34.200264 : -84.77533 : Cartersville, GA +30122 : 33.776137 : -84.64484 : Lithia Springs, GA +30123 : 34.244179 : -84.845684 : Cassville, GA +30124 : 34.118206 : -85.34001 : Cave Spring, GA +30125 : 34.010162 : -85.25762 : Cedartown, GA +30126 : 33.817738 : -84.56087 : Mableton, GA +30127 : 33.874553 : -84.68784 : Powder Springs, GA +30129 : 34.333308 : -85.233721 : Coosa, GA +30132 : 33.945735 : -84.84463 : Dallas, GA +30133 : 33.68966 : -84.744595 : Douglasville, GA +30134 : 33.769636 : -84.74967 : Douglasville, GA +30135 : 33.701554 : -84.73756 : Douglasville, GA +30137 : 34.124283 : -84.75579 : Emerson, GA +30138 : 33.99994 : -85.172297 : Esom Hill, GA +30139 : 34.434629 : -84.70133 : Fairmount, GA +30140 : 33.88232 : -85.234946 : Felton, GA +30141 : 33.867574 : -84.77103 : Hiram, GA +30142 : 34.242944 : -84.458326 : Holly Springs, GA +30143 : 34.454934 : -84.41583 : Jasper, GA +30144 : 34.038949 : -84.59706 : Kennesaw, GA +30145 : 34.237986 : -84.97801 : Kingston, GA +30146 : 34.242944 : -84.458326 : Lebanon, GA +30147 : 34.175095 : -85.18084 : Lindale, GA +30148 : 34.452988 : -84.25925 : Marble Hill, GA +30149 : 34.280355 : -85.182085 : Mount Berry, GA +30150 : 33.643002 : -85.181782 : Mount Zion, GA +30151 : 34.242944 : -84.458326 : Nelson, GA +30152 : 34.002147 : -84.63392 : Kennesaw, GA +30153 : 33.987497 : -85.05508 : Rockmart, GA +30154 : 33.68966 : -84.744595 : Douglasville, GA +30157 : 33.892504 : -84.8346 : Dallas, GA +30161 : 34.253343 : -85.15312 : Rome, GA +30162 : 34.290508 : -85.213817 : Rome, GA +30163 : 34.333308 : -85.233721 : Rome, GA +30164 : 34.333308 : -85.233721 : Rome, GA +30165 : 34.281423 : -85.23825 : Rome, GA +30166 : 33.571329 : -85.030663 : Carrollton, GA +30168 : 33.797456 : -84.60621 : Austell, GA +30170 : 33.434562 : -85.16973 : Roopville, GA +30171 : 34.346142 : -84.73232 : Rydal, GA +30172 : 34.333308 : -85.233721 : Shannon, GA +30173 : 34.145931 : -85.14342 : Silver Creek, GA +30175 : 34.537611 : -84.51135 : Talking Rock, GA +30176 : 33.748838 : -85.29304 : Tallapoosa, GA +30177 : 34.418116 : -84.38462 : Tate, GA +30178 : 34.113826 : -84.97274 : Taylorsville, GA +30179 : 33.76324 : -85.02667 : Temple, GA +30180 : 33.718079 : -84.92356 : Villa Rica, GA +30182 : 33.658254 : -85.23497 : Waco, GA +30183 : 34.332315 : -84.577 : Waleska, GA +30184 : 34.236128 : -84.72539 : White, GA +30185 : 33.517698 : -84.91725 : Whitesburg, GA +30187 : 33.670405 : -84.83809 : Winston, GA +30188 : 34.108027 : -84.4843 : Woodstock, GA +30189 : 34.117565 : -84.57176 : Woodstock, GA +30202 : 34.062176 : -84.240414 : Alpharetta, GA +30203 : 33.288993 : -84.464401 : Brooks, GA +30204 : 33.05413 : -84.14862 : Barnesville, GA +30205 : 33.275707 : -84.46706 : Brooks, GA +30206 : 33.109599 : -84.45541 : Concord, GA +30212 : 33.278205 : -84.288803 : Experiment, GA +30213 : 33.565662 : -84.59321 : Fairburn, GA +30214 : 33.47875 : -84.47668 : Fayetteville, GA +30215 : 33.40147 : -84.46271 : Fayetteville, GA +30216 : 33.251174 : -83.89284 : Flovilla, GA +30217 : 33.298014 : -85.12243 : Franklin, GA +30218 : 33.121379 : -84.58776 : Gay, GA +30219 : 33.157214 : -85.170588 : Glenn, GA +30220 : 33.230734 : -84.82543 : Grantville, GA +30222 : 33.034761 : -84.73593 : Greenville, GA +30223 : 33.268185 : -84.27306 : Griffin, GA +30224 : 33.215454 : -84.25427 : Griffin, GA +30228 : 33.401827 : -84.30152 : Hampton, GA +30229 : 33.232156 : -84.56854 : Haralson, GA +30230 : 33.173516 : -84.91737 : Hogansville, GA +30232 : 33.403811 : -84.504403 : Inman, GA +30233 : 33.294522 : -83.97568 : Jackson, GA +30234 : 33.325951 : -84.03346 : Jenkinsburg, GA +30236 : 33.528345 : -84.33347 : Jonesboro, GA +30237 : 33.500697 : -84.351273 : Jonesboro, GA +30238 : 33.49348 : -84.37871 : Jonesboro, GA +30240 : 33.029838 : -85.0745 : Lagrange, GA +30241 : 33.036715 : -84.98895 : Lagrange, GA +30248 : 33.351277 : -84.10645 : Locust Grove, GA +30250 : 33.437428 : -84.31519 : Lovejoy, GA +30251 : 33.201986 : -84.69943 : Luthersville, GA +30252 : 33.464387 : -84.08154 : Mcdonough, GA +30253 : 33.455031 : -84.17215 : Mcdonough, GA +30256 : 33.015476 : -84.32187 : Meansville, GA +30257 : 33.136567 : -84.19386 : Milner, GA +30258 : 32.999261 : -84.47168 : Molena, GA +30259 : 33.277468 : -84.75388 : Moreland, GA +30260 : 33.58776 : -84.33011 : Morrow, GA +30261 : 33.04567 : -85.048995 : Lagrange, GA +30263 : 33.38779 : -84.82536 : Newnan, GA +30264 : 33.361003 : -84.814173 : Newnan, GA +30265 : 33.400875 : -84.71206 : Newnan, GA +30266 : 33.265656 : -84.298964 : Orchard Hill, GA +30268 : 33.527793 : -84.69453 : Palmetto, GA +30269 : 33.398992 : -84.57062 : Peachtree City, GA +30271 : 33.351401 : -84.756109 : Newnan, GA +30272 : 33.625894 : -84.516327 : Red Oak, GA +30273 : 33.582877 : -84.26906 : Rex, GA +30274 : 33.555145 : -84.40108 : Riverdale, GA +30275 : 33.431181 : -84.86733 : Sargent, GA +30276 : 33.281102 : -84.58017 : Senoia, GA +30277 : 33.387534 : -84.65511 : Sharpsburg, GA +30281 : 33.547578 : -84.21809 : Stockbridge, GA +30283 : 33.295159 : -83.965099 : Jackson, GA +30284 : 33.345253 : -84.289814 : Sunny Side, GA +30285 : 32.995865 : -84.25092 : The Rock, GA +30286 : 32.895794 : -84.33084 : Thomaston, GA +30287 : 33.500697 : -84.351273 : Morrow, GA +30288 : 33.647275 : -84.32753 : Conley, GA +30289 : 33.32603 : -84.637108 : Turin, GA +30290 : 33.48012 : -84.58724 : Tyrone, GA +30291 : 33.580878 : -84.54611 : Union City, GA +30292 : 33.169646 : -84.37168 : Williamson, GA +30293 : 32.973728 : -84.5903 : Woodbury, GA +30294 : 33.639658 : -84.26822 : Ellenwood, GA +30295 : 33.101705 : -84.31252 : Zebulon, GA +30296 : 33.564711 : -84.43987 : Riverdale, GA +30297 : 33.615409 : -84.36704 : Forest Park, GA +30298 : 33.500697 : -84.351273 : Forest Park, GA +30301 : 33.844371 : -84.47405 : Atlanta, GA +30302 : 33.844371 : -84.47405 : Atlanta, GA +30303 : 33.752856 : -84.39013 : Atlanta, GA +30304 : 33.848196 : -84.429296 : Atlanta, GA +30305 : 33.830054 : -84.38472 : Atlanta, GA +30306 : 33.786755 : -84.35149 : Atlanta, GA +30307 : 33.768205 : -84.33786 : Atlanta, GA +30308 : 33.771755 : -84.38065 : Atlanta, GA +30309 : 33.794055 : -84.38525 : Atlanta, GA +30310 : 33.727807 : -84.41983 : Atlanta, GA +30311 : 33.724907 : -84.47131 : Atlanta, GA +30312 : 33.745739 : -84.3764 : Atlanta, GA +30313 : 33.761223 : -84.39599 : Atlanta, GA +30314 : 33.758056 : -84.42268 : Atlanta, GA +30315 : 33.709595 : -84.38365 : Atlanta, GA +30316 : 33.729506 : -84.34087 : Atlanta, GA +30317 : 33.750005 : -84.31854 : Atlanta, GA +30318 : 33.786805 : -84.437 : Atlanta, GA +30319 : 33.872053 : -84.33611 : Atlanta, GA +30320 : 33.656824 : -84.423648 : Atlanta, GA +30321 : 33.844371 : -84.47405 : Atlanta, GA +30322 : 33.793754 : -84.3238 : Atlanta, GA +30323 : 33.844371 : -84.47405 : Atlanta, GA +30324 : 33.818304 : -84.35779 : Atlanta, GA +30325 : 33.844371 : -84.47405 : Atlanta, GA +30326 : 33.849853 : -84.3606 : Atlanta, GA +30327 : 33.86427 : -84.41972 : Atlanta, GA +30328 : 33.931746 : -84.37817 : Atlanta, GA +30329 : 33.827554 : -84.32355 : Atlanta, GA +30330 : 33.707107 : -84.432127 : Atlanta, GA +30331 : 33.715558 : -84.52728 : Atlanta, GA +30332 : 33.776305 : -84.397976 : Atlanta, GA +30333 : 33.891251 : -84.07456 : Atlanta, GA +30334 : 33.702657 : -84.439127 : Atlanta, GA +30335 : 33.752406 : -84.389676 : Atlanta, GA +30336 : 33.744007 : -84.56032 : Atlanta, GA +30337 : 33.646984 : -84.4538 : Atlanta, GA +30338 : 33.942751 : -84.31769 : Atlanta, GA +30339 : 33.87507 : -84.46615 : Atlanta, GA +30340 : 33.899381 : -84.25367 : Atlanta, GA +30341 : 33.888102 : -84.29321 : Atlanta, GA +30342 : 33.879003 : -84.37203 : Atlanta, GA +30343 : 33.844371 : -84.47405 : Atlanta, GA +30344 : 33.676258 : -84.44977 : Atlanta, GA +30345 : 33.851736 : -84.28412 : Atlanta, GA +30346 : 33.926753 : -84.33877 : Atlanta, GA +30347 : 33.844371 : -84.47405 : Atlanta, GA +30348 : 33.844371 : -84.47405 : Atlanta, GA +30349 : 33.61541 : -84.49033 : Atlanta, GA +30350 : 33.97285 : -84.32775 : Atlanta, GA +30351 : 33.844371 : -84.47405 : Atlanta, GA +30353 : 33.844371 : -84.47405 : Atlanta, GA +30354 : 33.658834 : -84.39682 : Atlanta, GA +30355 : 33.844371 : -84.47405 : Atlanta, GA +30356 : 33.891251 : -84.07456 : Atlanta, GA +30357 : 33.844371 : -84.47405 : Atlanta, GA +30358 : 33.998151 : -84.34112 : Atlanta, GA +30359 : 33.891251 : -84.07456 : Atlanta, GA +30360 : 33.934536 : -84.27215 : Atlanta, GA +30361 : 33.844371 : -84.47405 : Atlanta, GA +30362 : 33.891251 : -84.07456 : Atlanta, GA +30363 : 33.844371 : -84.47405 : Atlanta, GA +30364 : 33.844371 : -84.47405 : Atlanta, GA +30365 : 33.844371 : -84.47405 : Atlanta, GA +30366 : 33.891251 : -84.07456 : Atlanta, GA +30367 : 33.789255 : -84.387276 : Atlanta, GA +30368 : 33.844371 : -84.47405 : Atlanta, GA +30369 : 33.844371 : -84.47405 : Atlanta, GA +30370 : 33.844371 : -84.47405 : Atlanta, GA +30371 : 33.844371 : -84.47405 : Atlanta, GA +30374 : 33.844371 : -84.47405 : Atlanta, GA +30375 : 33.844371 : -84.47405 : Atlanta, GA +30376 : 33.844371 : -84.47405 : Atlanta, GA +30377 : 33.844371 : -84.47405 : Atlanta, GA +30378 : 33.844371 : -84.47405 : Atlanta, GA +30379 : 33.844371 : -84.47405 : Atlanta, GA +30380 : 33.844371 : -84.47405 : Atlanta, GA +30381 : 33.844371 : -84.47405 : Atlanta, GA +30384 : 33.844371 : -84.47405 : Atlanta, GA +30385 : 33.844371 : -84.47405 : Atlanta, GA +30386 : 33.844371 : -84.47405 : Atlanta, GA +30387 : 33.844371 : -84.47405 : Atlanta, GA +30388 : 33.844371 : -84.47405 : Atlanta, GA +30389 : 33.844371 : -84.47405 : Atlanta, GA +30390 : 33.844371 : -84.47405 : Atlanta, GA +30392 : 33.844371 : -84.47405 : Atlanta, GA +30394 : 33.844371 : -84.47405 : Atlanta, GA +30396 : 33.844371 : -84.47405 : Atlanta, GA +30398 : 33.844371 : -84.47405 : Atlanta, GA +30399 : 33.844371 : -84.47405 : Atlanta, GA +30401 : 32.605196 : -82.3391 : Swainsboro, GA +30410 : 32.196136 : -82.50985 : Ailey, GA +30411 : 32.146031 : -82.792 : Alamo, GA +30412 : 32.083879 : -82.47988 : Alston, GA +30413 : 32.884137 : -82.50969 : Bartow, GA +30414 : 32.15499 : -81.97826 : Bellville, GA +30415 : 32.3456 : -81.62339 : Brooklet, GA +30417 : 32.162077 : -81.90984 : Claxton, GA +30420 : 32.301639 : -82.11842 : Cobbtown, GA +30421 : 32.186824 : -82.10699 : Collins, GA +30423 : 32.150061 : -81.83478 : Daisy, GA +30424 : 32.767634 : -81.629062 : Dover, GA +30425 : 32.632683 : -82.036 : Garfield, GA +30426 : 33.032445 : -81.63251 : Girard, GA +30427 : 31.945767 : -81.93594 : Glennville, GA +30428 : 32.190739 : -82.69115 : Glenwood, GA +30429 : 32.159458 : -81.93724 : Hagan, GA +30434 : 33.008983 : -82.378 : Louisville, GA +30436 : 32.177508 : -82.30448 : Lyons, GA +30438 : 32.152792 : -82.01301 : Manassas, GA +30439 : 32.414401 : -82.05534 : Metter, GA +30441 : 32.792831 : -82.23715 : Midville, GA +30442 : 32.802448 : -81.98381 : Millen, GA +30444 : 33.696073 : -84.450276 : East Point, GA +30445 : 32.186824 : -82.59171 : Mount Vernon, GA +30446 : 32.567281 : -81.48627 : Newington, GA +30447 : 32.505913 : -82.49502 : Norristown, GA +30448 : 32.49126 : -82.36787 : Nunez, GA +30449 : 32.528104 : -81.533198 : Oliver, GA +30450 : 32.555659 : -81.9242 : Portal, GA +30451 : 32.414349 : -82.086658 : Pulaski, GA +30452 : 32.327219 : -81.89818 : Register, GA +30453 : 32.057356 : -82.1214 : Reidsville, GA +30454 : 32.432854 : -82.72979 : Rockledge, GA +30455 : 32.697762 : -81.81036 : Rocky Ford, GA +30456 : 32.969028 : -81.79396 : Sardis, GA +30457 : 32.387041 : -82.58272 : Soperton, GA +30458 : 32.423083 : -81.80677 : Statesboro, GA +30459 : 32.447036 : -81.77772 : Statesboro, GA +30460 : 32.41795 : -81.78233 : Statesboro, GA +30461 : 32.4906 : -81.73166 : Statesboro, GA +30464 : 32.439708 : -82.22278 : Stillmore, GA +30466 : 32.566594 : -82.324475 : Summertown, GA +30467 : 32.754635 : -81.63543 : Sylvania, GA +30470 : 32.309128 : -82.52255 : Tarrytown, GA +30471 : 32.547214 : -82.17048 : Twin City, GA +30473 : 32.03096 : -82.48797 : Uvalda, GA +30474 : 32.220155 : -82.41493 : Vidalia, GA +30475 : 32.177513 : -82.373889 : Vidalia, GA +30477 : 32.872098 : -82.4023 : Wadley, GA +30499 : 32.050694 : -81.998348 : Reidsville, GA +30501 : 34.306643 : -83.82352 : Gainesville, GA +30502 : 34.212993 : -83.794858 : Chestnut Mountain, GA +30503 : 34.345432 : -83.950541 : Gainesville, GA +30504 : 34.274355 : -83.87003 : Gainesville, GA +30505 : 34.306188 : -83.838936 : Gainesville, GA +30506 : 34.346102 : -83.901 : Gainesville, GA +30507 : 34.253714 : -83.77348 : Gainesville, GA +30510 : 34.455729 : -83.58913 : Alto, GA +30511 : 34.469971 : -83.50035 : Baldwin, GA +30512 : 34.875556 : -84.00419 : Blairsville, GA +30513 : 34.851171 : -84.32905 : Blue Ridge, GA +30514 : 34.903398 : -84.019157 : Blairsville, GA +30515 : 33.960353 : -84.037859 : Buford, GA +30516 : 34.370551 : -83.05998 : Bowersville, GA +30517 : 34.121974 : -83.78604 : Braselton, GA +30518 : 34.12115 : -84.01804 : Buford, GA +30519 : 34.089419 : -83.94701 : Buford, GA +30520 : 34.338008 : -83.09656 : Canon, GA +30521 : 34.360544 : -83.28544 : Carnesville, GA +30522 : 34.801665 : -84.37931 : Cherrylog, GA +30523 : 34.700311 : -83.51879 : Clarkesville, GA +30525 : 34.882362 : -83.4156 : Clayton, GA +30527 : 34.481514 : -83.78599 : Clermont, GA +30528 : 34.595859 : -83.76194 : Cleveland, GA +30529 : 34.210423 : -83.46842 : Commerce, GA +30530 : 34.209907 : -83.38389 : Commerce, GA +30531 : 34.514215 : -83.54118 : Cornelia, GA +30533 : 34.542098 : -83.99718 : Dahlonega, GA +30534 : 34.416521 : -84.10849 : Dawsonville, GA +30535 : 34.573072 : -83.55992 : Demorest, GA +30537 : 34.977198 : -83.35161 : Dillard, GA +30538 : 34.511618 : -83.25811 : Eastanollee, GA +30539 : 34.680011 : -84.47154 : East Ellijay, GA +30540 : 34.688716 : -84.46716 : Ellijay, GA +30541 : 34.925622 : -84.42981 : Epworth, GA +30542 : 34.188281 : -83.91813 : Flowery Branch, GA +30543 : 34.299459 : -83.65226 : Gillsville, GA +30544 : 34.593092 : -83.562922 : Demorest, GA +30545 : 34.713441 : -83.74189 : Helen, GA +30546 : 34.923847 : -83.7231 : Hiawassee, GA +30547 : 34.348822 : -83.47738 : Homer, GA +30548 : 34.097915 : -83.77864 : Hoschton, GA +30549 : 34.112581 : -83.58251 : Jefferson, GA +30552 : 34.763553 : -83.44201 : Lakemont, GA +30553 : 34.450501 : -83.09448 : Lavonia, GA +30554 : 34.391688 : -83.65979 : Lula, GA +30555 : 34.977037 : -84.39839 : McCaysville, GA +30557 : 34.491829 : -83.17539 : Martin, GA +30558 : 34.258054 : -83.56058 : Maysville, GA +30559 : 34.949755 : -84.28317 : Mineral Bluff, GA +30560 : 34.887912 : -84.2098 : Morganton, GA +30562 : 34.917466 : -83.38487 : Mountain City, GA +30563 : 34.549681 : -83.47201 : Mount Airy, GA +30564 : 34.466226 : -83.88442 : Murrayville, GA +30565 : 34.094345 : -83.41617 : Nicholson, GA +30566 : 34.236556 : -83.89115 : Oakwood, GA +30567 : 34.167309 : -83.68536 : Pendergrass, GA +30568 : 34.952452 : -83.4073 : Rabun Gap, GA +30571 : 34.696896 : -83.68012 : Sautee Nacoochee, GA +30572 : 34.731084 : -84.07943 : Suches, GA +30573 : 34.742007 : -83.397716 : Tallulah Falls, GA +30575 : 34.191571 : -83.71124 : Talmo, GA +30576 : 34.846806 : -83.48178 : Tiger, GA +30577 : 34.561584 : -83.31718 : Toccoa, GA +30580 : 34.676584 : -83.43578 : Turnerville, GA +30581 : 34.797611 : -83.42329 : Wiley, GA +30582 : 34.954638 : -83.86484 : Young Harris, GA +30596 : 34.629391 : -83.509934 : Alto, GA +30597 : 34.527671 : -83.980879 : Dahlonega, GA +30598 : 34.597674 : -83.36207 : Toccoa, GA +30599 : 34.130594 : -83.587419 : Commerce, GA +30601 : 33.979016 : -83.36423 : Athens, GA +30602 : 33.948432 : -83.3749 : Athens, GA +30603 : 33.947587 : -83.408897 : Athens, GA +30604 : 33.944339 : -83.38908 : Athens, GA +30605 : 33.925085 : -83.34529 : Athens, GA +30606 : 33.945619 : -83.41732 : Athens, GA +30607 : 34.013154 : -83.43565 : Athens, GA +30608 : 33.944339 : -83.38908 : Athens, GA +30609 : 33.946364 : -83.37743 : Athens, GA +30610 : 33.944339 : -83.38908 : Athens, GA +30612 : 33.944339 : -83.38908 : Athens, GA +30613 : 33.962364 : -83.39828 : Athens, GA +30619 : 33.863663 : -83.24825 : Arnoldsville, GA +30620 : 33.928949 : -83.73524 : Bethlehem, GA +30621 : 33.804849 : -83.48164 : Bishop, GA +30622 : 33.927792 : -83.51552 : Bogart, GA +30623 : 33.754235 : -83.511055 : Bostwick, GA +30624 : 34.193943 : -83.03375 : Bowman, GA +30625 : 33.527207 : -83.34676 : Buckhead, GA +30627 : 33.994139 : -82.97819 : Carlton, GA +30628 : 34.041416 : -83.21997 : Colbert, GA +30629 : 34.072573 : -83.11913 : Comer, GA +30630 : 33.892957 : -83.15548 : Crawford, GA +30631 : 33.570317 : -82.88542 : Crawfordville, GA +30633 : 34.17085 : -83.24654 : Danielsville, GA +30634 : 34.212836 : -82.94112 : Dewy Rose, GA +30635 : 34.119972 : -82.825 : Elberton, GA +30638 : 33.775001 : -83.42456 : Farmington, GA +30639 : 34.281721 : -83.14746 : Franklin Springs, GA +30641 : 33.766057 : -83.57597 : Good Hope, GA +30642 : 33.547041 : -83.19797 : Greensboro, GA +30643 : 34.366948 : -82.9201 : Hartwell, GA +30645 : 33.801274 : -83.516374 : High Shoals, GA +30646 : 34.065588 : -83.31318 : Hull, GA +30647 : 34.120239 : -83.288117 : Ila, GA +30648 : 33.863779 : -83.06063 : Lexington, GA +30650 : 33.588436 : -83.47936 : Madison, GA +30652 : 33.559342 : -83.364156 : Greensboro, GA +30655 : 33.786041 : -83.69901 : Monroe, GA +30656 : 33.857423 : -83.71899 : Monroe, GA +30660 : 33.775127 : -82.94624 : Rayle, GA +30662 : 34.270167 : -83.12842 : Royston, GA +30663 : 33.614556 : -83.61157 : Rutledge, GA +30664 : 33.560693 : -82.80015 : Sharon, GA +30665 : 33.535009 : -83.07787 : Siloam, GA +30666 : 33.957713 : -83.58491 : Statham, GA +30667 : 33.784316 : -83.16666 : Stephens, GA +30668 : 33.912362 : -82.6684 : Tignall, GA +30669 : 33.652489 : -83.08857 : Union Point, GA +30671 : 33.748344 : -83.18538 : Maxeys, GA +30673 : 33.728754 : -82.72612 : Washington, GA +30677 : 33.849286 : -83.41232 : Watkinsville, GA +30678 : 33.46171 : -83.05852 : White Plains, GA +30680 : 33.992538 : -83.71061 : Winder, GA +30683 : 33.954047 : -83.2673 : Winterville, GA +30701 : 34.4966 : -84.93798 : Calhoun, GA +30703 : 34.479066 : -84.762161 : Calhoun, GA +30705 : 34.753129 : -84.77502 : Chatsworth, GA +30707 : 34.827019 : -85.32883 : Chickamauga, GA +30708 : 34.945576 : -84.7113 : Cisco, GA +30710 : 34.935105 : -84.94642 : Cohutta, GA +30711 : 34.93882 : -84.76558 : Crandall, GA +30716 : 33.744222 : -85.286982 : Tallapoosa, GA +30719 : 34.801861 : -84.989796 : Dalton, GA +30720 : 34.766095 : -84.9865 : Dalton, GA +30721 : 34.780699 : -84.93994 : Dalton, GA +30722 : 34.759522 : -84.951261 : Dalton, GA +30724 : 34.822176 : -84.75967 : Eton, GA +30725 : 34.932348 : -85.35064 : Flintstone, GA +30726 : 34.975939 : -85.1416 : Graysville, GA +30728 : 34.696201 : -85.25824 : La Fayette, GA +30730 : 34.376063 : -85.4043 : Lyerly, GA +30731 : 34.553485 : -85.47893 : Menlo, GA +30732 : 34.569015 : -84.711863 : Oakman, GA +30733 : 34.409661 : -85.03345 : Plainville, GA +30734 : 34.531444 : -84.69955 : Ranger, GA +30735 : 34.604648 : -84.91926 : Resaca, GA +30736 : 34.916552 : -85.14435 : Ringgold, GA +30738 : 34.793833 : -85.49945 : Rising Fawn, GA +30739 : 34.801988 : -85.21956 : Rock Spring, GA +30740 : 34.757918 : -85.05879 : Rocky Face, GA +30741 : 34.96311 : -85.27405 : Rossville, GA +30742 : 34.948979 : -85.25212 : Fort Oglethorpe, GA +30746 : 34.574804 : -85.02482 : Sugar Valley, GA +30747 : 34.489848 : -85.32928 : Summerville, GA +30750 : 34.957134 : -85.37183 : Lookout Mountain, GA +30751 : 34.981449 : -84.735233 : Tennga, GA +30752 : 34.895625 : -85.52702 : Trenton, GA +30753 : 34.558404 : -85.30301 : Trion, GA +30754 : 34.484483 : -85.345544 : Summerville, GA +30755 : 34.85973 : -85.03867 : Tunnel Hill, GA +30756 : 34.9298 : -84.988536 : Varnell, GA +30757 : 34.954188 : -85.43232 : Wildwood, GA +30802 : 33.620669 : -82.30514 : Appling, GA +30803 : 33.163467 : -82.52017 : Avera, GA +30805 : 33.297318 : -82.21503 : Blythe, GA +30806 : 33.527993 : -82.5104 : Boneville, GA +30807 : 33.453039 : -82.64828 : Camak, GA +30808 : 33.397137 : -82.40335 : Dearing, GA +30809 : 33.551145 : -82.13949 : Evans, GA +30810 : 33.236721 : -82.58135 : Gibson, GA +30811 : 33.050487 : -81.929165 : Gough, GA +30812 : 33.386041 : -82.090996 : Gracewood, GA +30813 : 33.459489 : -82.20102 : Grovetown, GA +30814 : 33.42359 : -82.31013 : Harlem, GA +30815 : 33.32157 : -82.08872 : Hephzibah, GA +30816 : 33.16249 : -82.18933 : Keysville, GA +30817 : 33.765566 : -82.43899 : Lincolnton, GA +30818 : 33.244829 : -82.32636 : Matthews, GA +30819 : 33.432384 : -82.625213 : Mesena, GA +30820 : 33.224199 : -82.713 : Mitchell, GA +30821 : 33.477946 : -82.73454 : Norwood, GA +30822 : 32.914843 : -81.87901 : Perkins, GA +30823 : 33.234802 : -82.46303 : Stapleton, GA +30824 : 33.490536 : -82.5028 : Thomson, GA +30828 : 33.399555 : -82.65655 : Warrenton, GA +30830 : 33.080965 : -81.9944 : Waynesboro, GA +30833 : 33.200325 : -82.37625 : Wrens, GA +30881 : 33.793006 : -84.504081 : Atlanta, GA +30901 : 33.461121 : -81.97265 : Augusta, GA +30903 : 33.386041 : -82.090996 : Augusta, GA +30904 : 33.474136 : -82.01018 : Augusta, GA +30905 : 33.417282 : -82.14435 : Augusta, GA +30906 : 33.387089 : -82.01237 : Augusta, GA +30907 : 33.512541 : -82.09491 : Augusta, GA +30909 : 33.475936 : -82.0697 : Augusta, GA +30910 : 33.386041 : -82.090996 : Augusta, GA +30911 : 33.386041 : -82.090996 : Augusta, GA +30912 : 33.386041 : -82.090996 : Augusta, GA +30913 : 33.386041 : -82.090996 : Augusta, GA +30914 : 33.386041 : -82.090996 : Augusta, GA +30916 : 33.386041 : -82.090996 : Augusta, GA +30917 : 33.527678 : -82.235542 : Augusta, GA +30919 : 33.386041 : -82.090996 : Augusta, GA +30999 : 33.386041 : -82.090996 : Augusta, GA +31001 : 31.972626 : -83.33082 : Abbeville, GA +31002 : 32.549854 : -82.56948 : Adrian, GA +31003 : 32.600622 : -83.22096 : Allentown, GA +31004 : 32.946971 : -83.800628 : Bolingbroke, GA +31005 : 32.556668 : -83.62435 : Bonaire, GA +31006 : 32.563544 : -84.2461 : Butler, GA +31007 : 32.199721 : -83.91327 : Byromville, GA +31008 : 32.652313 : -83.75918 : Byron, GA +31009 : 32.309003 : -83.02647 : Cadwell, GA +31010 : 31.917178 : -83.785365 : Cordele, GA +31011 : 32.108676 : -83.06006 : Chauncey, GA +31012 : 32.396381 : -83.16892 : Chester, GA +31013 : 32.338639 : -83.692562 : Clinchfield, GA +31014 : 32.397039 : -83.3404 : Cochran, GA +31015 : 31.950899 : -83.77808 : Cordele, GA +31016 : 32.861386 : -84.11732 : Culloden, GA +31017 : 32.600844 : -83.24549 : Danville, GA +31018 : 32.976548 : -82.61607 : Davisboro, GA +31019 : 32.427633 : -83.05632 : Dexter, GA +31020 : 32.719907 : -83.4905 : Dry Branch, GA +31021 : 32.526359 : -82.93375 : Dublin, GA +31022 : 32.516865 : -83.09905 : Dudley, GA +31023 : 32.193953 : -83.1848 : Eastman, GA +31024 : 33.318579 : -83.35432 : Eatonton, GA +31025 : 32.335147 : -83.74571 : Elko, GA +31027 : 32.569122 : -82.80959 : Dublin, GA +31028 : 32.632111 : -83.67795 : Centerville, GA +31029 : 33.0409 : -83.92941 : Forsyth, GA +31030 : 32.55568 : -83.88641 : Fort Valley, GA +31031 : 32.891499 : -83.32748 : Gordon, GA +31032 : 33.003455 : -83.55078 : Gray, GA +31033 : 33.053288 : -83.43902 : Haddock, GA +31034 : 33.040103 : -83.2182 : Hardwick, GA +31035 : 32.835471 : -82.70761 : Harrison, GA +31036 : 32.270314 : -83.48517 : Hawkinsville, GA +31037 : 32.094127 : -82.91713 : Helena, GA +31038 : 33.172786 : -83.63554 : Hillsboro, GA +31039 : 32.587537 : -84.3895 : Howard, GA +31040 : 32.540073 : -82.914974 : Dublin, GA +31041 : 32.371371 : -84.18258 : Ideal, GA +31042 : 32.7615 : -83.1612 : Irwinton, GA +31044 : 32.630784 : -83.37027 : Jeffersonville, GA +31045 : 33.285774 : -82.7749 : Jewell, GA +31046 : 33.054591 : -83.78583 : Juliette, GA +31047 : 32.509384 : -83.64773 : Kathleen, GA +31049 : 32.69992 : -82.51381 : Kite, GA +31050 : 32.742085 : -83.94646 : Knoxville, GA +31051 : 32.148624 : -83.88003 : Lilly, GA +31052 : 32.788484 : -83.80726 : Lizella, GA +31054 : 32.875574 : -83.19785 : McIntyre, GA +31055 : 32.045313 : -82.8916 : McRae, GA +31057 : 32.446656 : -83.93413 : Marshallville, GA +31058 : 32.498727 : -84.42804 : Mauk, GA +31060 : 32.003035 : -83.06337 : Milan, GA +31061 : 33.083579 : -83.23397 : Milledgeville, GA +31062 : 33.087138 : -83.22492 : Milledgeville, GA +31063 : 32.293293 : -83.98913 : Montezuma, GA +31064 : 33.319093 : -83.70862 : Monticello, GA +31065 : 32.564036 : -83.16019 : Montrose, GA +31066 : 32.799959 : -84.00588 : Musella, GA +31067 : 32.860031 : -82.95019 : Oconee, GA +31068 : 32.329164 : -84.07988 : Oglethorpe, GA +31069 : 32.460791 : -83.73541 : Perry, GA +31070 : 32.185677 : -83.76348 : Pinehurst, GA +31071 : 32.13702 : -83.52604 : Pineview, GA +31072 : 31.951839 : -83.56747 : Pitts, GA +31073 : 32.176429 : -83.122891 : Plainfield, GA +31075 : 32.370333 : -82.96091 : Rentz, GA +31076 : 32.54748 : -84.10042 : Reynolds, GA +31077 : 31.953407 : -83.18058 : Rhine, GA +31078 : 32.702635 : -84.03811 : Roberta, GA +31079 : 31.933079 : -83.45722 : Rochelle, GA +31081 : 32.419094 : -84.28475 : Rupert, GA +31082 : 32.984529 : -82.8375 : Sandersville, GA +31083 : 32.046427 : -82.81923 : Scotland, GA +31084 : 31.989039 : -83.394574 : Seville, GA +31085 : 33.421694 : -83.61433 : Shady Dale, GA +31086 : 32.989503 : -83.876108 : Smarr, GA +31087 : 33.260235 : -83.00647 : Sparta, GA +31088 : 32.594698 : -83.64873 : Warner Robins, GA +31089 : 32.89115 : -82.82775 : Tennille, GA +31090 : 32.801223 : -83.06671 : Toomsboro, GA +31091 : 32.24473 : -83.72075 : Unadilla, GA +31092 : 32.091578 : -83.79311 : Vienna, GA +31093 : 32.638316 : -83.64332 : Warner Robins, GA +31094 : 33.125097 : -82.81018 : Warthen, GA +31095 : 32.487403 : -83.669655 : Warner Robins, GA +31096 : 32.71732 : -82.68926 : Wrightsville, GA +31097 : 32.912207 : -84.14812 : Yatesville, GA +31098 : 32.614742 : -83.59829 : Warner Robins, GA +31099 : 32.646236 : -83.6513 : Warner Robins, GA +31106 : 33.844371 : -84.47405 : Atlanta, GA +31107 : 33.844371 : -84.47405 : Atlanta, GA +31119 : 33.891251 : -84.07456 : Atlanta, GA +31126 : 33.844371 : -84.47405 : Atlanta, GA +31131 : 33.844371 : -84.47405 : Atlanta, GA +31139 : 33.844371 : -84.47405 : Atlanta, GA +31141 : 33.891251 : -84.07456 : Atlanta, GA +31145 : 33.891251 : -84.07456 : Atlanta, GA +31146 : 33.891251 : -84.07456 : Atlanta, GA +31150 : 33.844371 : -84.47405 : Atlanta, GA +31156 : 33.844371 : -84.47405 : Atlanta, GA +31191 : 33.844371 : -84.47405 : Atlanta, GA +31192 : 33.844371 : -84.47405 : Atlanta, GA +31193 : 33.844371 : -84.47405 : Atlanta, GA +31195 : 33.844371 : -84.47405 : Atlanta, GA +31196 : 33.844371 : -84.47405 : Atlanta, GA +31197 : 33.844371 : -84.47405 : Atlanta, GA +31198 : 33.844371 : -84.47405 : Atlanta, GA +31199 : 33.844371 : -84.47405 : Atlanta, GA +31201 : 32.830839 : -83.63529 : Macon, GA +31202 : 32.806707 : -83.691315 : Macon, GA +31203 : 32.806707 : -83.691315 : Macon, GA +31204 : 32.844872 : -83.67119 : Macon, GA +31205 : 32.806707 : -83.691315 : Macon, GA +31206 : 32.79904 : -83.67216 : Macon, GA +31207 : 32.830389 : -83.648552 : Macon, GA +31208 : 32.806707 : -83.691315 : Macon, GA +31209 : 32.806707 : -83.691315 : Macon, GA +31210 : 32.88899 : -83.72204 : Macon, GA +31211 : 32.878304 : -83.59963 : Macon, GA +31212 : 32.806707 : -83.691315 : Macon, GA +31213 : 32.839289 : -83.638752 : Macon, GA +31216 : 32.730641 : -83.6793 : Macon, GA +31217 : 32.839005 : -83.56749 : Macon, GA +31220 : 32.862246 : -83.78665 : Macon, GA +31221 : 32.806707 : -83.691315 : Macon, GA +31267 : 31.046761 : -83.395669 : Cecil, GA +31294 : 32.806707 : -83.691315 : Macon, GA +31295 : 32.810189 : -83.569001 : Macon, GA +31296 : 32.806707 : -83.691315 : Macon, GA +31297 : 32.70045 : -83.657207 : Macon, GA +31298 : 32.87333 : -83.708399 : Macon, GA +31299 : 32.806707 : -83.691315 : Macon, GA +31301 : 31.764663 : -81.6098 : Allenhurst, GA +31302 : 32.129474 : -81.33121 : Bloomingdale, GA +31303 : 32.508239 : -81.3128 : Clyo, GA +31304 : 31.495071 : -81.381908 : Crescent, GA +31305 : 31.407598 : -81.39094 : Darien, GA +31307 : 32.183211 : -81.39979 : Eden, GA +31308 : 32.172661 : -81.48447 : Ellabell, GA +31309 : 31.873145 : -81.42676 : Fleming, GA +31310 : 31.806832 : -81.437074 : Hinesville, GA +31312 : 32.313816 : -81.3908 : Guyton, GA +31313 : 31.828575 : -81.61617 : Hinesville, GA +31314 : 31.868699 : -81.61083 : Fort Stewart, GA +31315 : 31.886944 : -81.60109 : Fort Stewart, GA +31316 : 31.74991 : -81.75813 : Ludowici, GA +31318 : 32.141974 : -81.37892 : Meldrim, GA +31319 : 31.478486 : -81.34528 : Meridian, GA +31320 : 31.788811 : -81.37637 : Midway, GA +31321 : 32.163245 : -81.64211 : Pembroke, GA +31322 : 32.110421 : -81.24568 : Pooler, GA +31323 : 31.658252 : -81.48778 : Riceboro, GA +31324 : 31.906365 : -81.3108 : Richmond Hill, GA +31326 : 32.293147 : -81.23006 : Rincon, GA +31327 : 31.423776 : -81.27064 : Sapelo Island, GA +31328 : 32.006672 : -80.84937 : Tybee Island, GA +31329 : 32.390879 : -81.32427 : Springfield, GA +31331 : 31.547412 : -81.3862 : Townsend, GA +31332 : 31.495071 : -81.381908 : Valona, GA +31333 : 31.77789 : -81.64534 : Walthourville, GA +31337 : 31.271852 : -83.459054 : Lenox, GA +31401 : 32.068658 : -81.09258 : Savannah, GA +31402 : 31.971394 : -81.07156 : Savannah, GA +31403 : 31.971394 : -81.07156 : Savannah, GA +31404 : 32.046143 : -81.06724 : Savannah, GA +31405 : 32.043058 : -81.12183 : Savannah, GA +31406 : 31.988676 : -81.09116 : Savannah, GA +31407 : 32.162963 : -81.17233 : Savannah, GA +31408 : 32.106705 : -81.16915 : Savannah, GA +31409 : 31.971394 : -81.07156 : Savannah, GA +31410 : 32.022019 : -80.99193 : Savannah, GA +31411 : 31.927434 : -81.0425 : Savannah, GA +31412 : 31.971394 : -81.07156 : Savannah, GA +31414 : 31.971394 : -81.07156 : Savannah, GA +31415 : 32.075806 : -81.12002 : Savannah, GA +31416 : 32.005255 : -81.047711 : Savannah, GA +31418 : 31.971394 : -81.07156 : Savannah, GA +31419 : 31.986249 : -81.20259 : Savannah, GA +31420 : 31.971394 : -81.07156 : Savannah, GA +31421 : 31.971394 : -81.07156 : Savannah, GA +31422 : 31.971394 : -81.07156 : Savannah, GA +31424 : 31.919866 : -81.325815 : Richmond Hill, GA +31441 : 32.008183 : -81.101502 : Savannah, GA +31498 : 31.971394 : -81.07156 : Savannah, GA +31499 : 31.971394 : -81.07156 : Savannah, GA +31501 : 31.220059 : -82.35133 : Waycross, GA +31502 : 31.018954 : -82.416543 : Waycross, GA +31503 : 31.205194 : -82.37534 : Waycross, GA +31507 : 32.452926 : -83.944336 : Marshallville, GA +31510 : 31.551458 : -82.44618 : Alma, GA +31512 : 31.57344 : -83.01502 : Ambrose, GA +31513 : 31.768849 : -82.35198 : Baxley, GA +31515 : 31.717717 : -82.299677 : Baxley, GA +31516 : 31.307234 : -82.25779 : Blackshear, GA +31518 : 31.513511 : -82.18481 : Bristol, GA +31519 : 31.67654 : -82.88991 : Broxton, GA +31520 : 31.166786 : -81.49213 : Brunswick, GA +31521 : 31.241505 : -81.532489 : Brunswick, GA +31522 : 31.176516 : -81.3802 : Saint Simons Island, GA +31523 : 31.212705 : -81.60975 : Brunswick, GA +31524 : 31.221995 : -81.482551 : Brunswick, GA +31525 : 31.260995 : -81.49832 : Brunswick, GA +31527 : 31.06419 : -81.42072 : Jekyll Island, GA +31532 : 31.718382 : -82.73595 : Denton, GA +31533 : 31.522042 : -82.84153 : Douglas, GA +31534 : 31.571596 : -82.854631 : Douglas, GA +31535 : 31.464973 : -82.86325 : Douglas, GA +31537 : 30.860915 : -82.02194 : Folkston, GA +31539 : 31.844772 : -82.59809 : Hazlehurst, GA +31542 : 31.1747 : -82.13812 : Hoboken, GA +31543 : 31.320167 : -81.85818 : Hortense, GA +31544 : 31.840974 : -82.96137 : Jacksonville, GA +31545 : 31.636895 : -81.90843 : Jesup, GA +31546 : 31.575166 : -81.86481 : Jesup, GA +31547 : 30.804684 : -81.627717 : Kings Bay, GA +31548 : 30.793409 : -81.68428 : Kingsland, GA +31549 : 31.928525 : -82.69332 : Lumber City, GA +31550 : 31.101953 : -82.58299 : Manor, GA +31551 : 31.496025 : -82.27322 : Mershon, GA +31552 : 31.281103 : -82.6201 : Millwood, GA +31553 : 31.17326 : -81.97244 : Nahunta, GA +31554 : 31.495983 : -82.62928 : Nicholls, GA +31555 : 31.670475 : -82.04944 : Odum, GA +31556 : 31.412649 : -82.115541 : Offerman, GA +31557 : 31.372403 : -82.10743 : Patterson, GA +31558 : 30.761081 : -81.56912 : Saint Marys, GA +31560 : 31.515981 : -82.04908 : Screven, GA +31561 : 31.198914 : -81.332211 : Sea Island, GA +31563 : 31.715778 : -82.19784 : Surrency, GA +31564 : 31.018954 : -82.416543 : Waresboro, GA +31565 : 31.066479 : -81.62656 : Waverly, GA +31566 : 31.144635 : -81.83011 : Waynesville, GA +31567 : 31.631943 : -82.71829 : West Green, GA +31568 : 31.003385 : -81.79512 : White Oak, GA +31569 : 30.915778 : -81.67924 : Woodbine, GA +31598 : 31.578181 : -81.880222 : Jesup, GA +31599 : 31.578181 : -81.880222 : Jesup, GA +31601 : 30.807279 : -83.28661 : Valdosta, GA +31602 : 30.866613 : -83.30078 : Valdosta, GA +31603 : 30.827965 : -83.252192 : Valdosta, GA +31604 : 30.827965 : -83.252192 : Valdosta, GA +31605 : 30.92205 : -83.25332 : Valdosta, GA +31606 : 30.802411 : -83.19624 : Valdosta, GA +31607 : 30.831442 : -83.318647 : Valdosta, GA +31610 : 31.172669 : -83.439433 : Sparks, GA +31620 : 31.133004 : -83.42736 : Adel, GA +31622 : 31.379665 : -83.21803 : Alapaha, GA +31623 : 31.071563 : -82.65232 : Argyle, GA +31624 : 31.297883 : -82.71029 : Axson, GA +31625 : 31.003274 : -83.5282 : Barney, GA +31626 : 30.782963 : -83.78882 : Boston, GA +31627 : 31.047996 : -83.39135 : Cecil, GA +31629 : 30.802821 : -83.69126 : Dixie, GA +31630 : 30.96373 : -82.86455 : Du Pont, GA +31631 : 30.680867 : -82.58028 : Fargo, GA +31632 : 30.991859 : -83.36415 : Hahira, GA +31634 : 31.062818 : -82.72399 : Homerville, GA +31635 : 31.055578 : -83.07103 : Lakeland, GA +31636 : 30.72289 : -83.13302 : Lake Park, GA +31637 : 31.291612 : -83.45328 : Lenox, GA +31638 : 30.935087 : -83.50211 : Morven, GA +31639 : 31.199 : -83.2188 : Nashville, GA +31641 : 30.934298 : -83.08841 : Naylor, GA +31642 : 31.27291 : -82.83342 : Pearson, GA +31643 : 30.783639 : -83.55343 : Quitman, GA +31645 : 31.070627 : -83.20286 : Ray City, GA +31646 : 30.518903 : -82.08063 : Saint George, GA +31647 : 31.183567 : -83.43559 : Sparks, GA +31648 : 30.703175 : -83.02568 : Statenville, GA +31649 : 30.957421 : -83.00524 : Stockton, GA +31650 : 31.375165 : -83.01949 : Willacoochee, GA +31659 : 31.205388 : -83.246084 : Nashville, GA +31698 : 30.84848 : -83.287753 : Valdosta, GA +31699 : 30.965263 : -83.19316 : Valdosta, GA +31700 : 31.564274 : -84.165407 : Albany, GA +31701 : 31.580774 : -84.16044 : Albany, GA +31702 : 31.594782 : -84.194812 : Albany, GA +31703 : 31.543065 : -84.219594 : Albany, GA +31704 : 31.549975 : -84.061155 : Albany, GA +31705 : 31.552483 : -84.09678 : Albany, GA +31706 : 31.559274 : -84.176507 : Albany, GA +31707 : 31.568073 : -84.22644 : Albany, GA +31708 : 31.591073 : -84.132357 : Albany, GA +31709 : 32.071641 : -84.21942 : Americus, GA +31710 : 32.051235 : -84.181547 : Americus, GA +31711 : 32.195361 : -84.137 : Andersonville, GA +31712 : 31.836577 : -83.72045 : Arabi, GA +31713 : 31.427845 : -84.71025 : Arlington, GA +31714 : 31.709742 : -83.66519 : Ashburn, GA +31715 : 30.743234 : -84.48229 : Attapulgus, GA +31716 : 31.3709 : -84.12921 : Baconton, GA +31717 : 30.884525 : -84.58951 : Bainbridge, GA +31718 : 30.901863 : -84.570049 : Bainbridge, GA +31719 : 32.085491 : -84.252665 : Americus, GA +31720 : 30.890906 : -83.73816 : Barwick, GA +31721 : 31.56889 : -84.248211 : Albany, GA +31722 : 31.067313 : -83.62288 : Berlin, GA +31723 : 31.334337 : -84.94899 : Blakely, GA +31724 : 31.528299 : -84.86025 : Bluffton, GA +31725 : 30.945016 : -84.72284 : Brinson, GA +31726 : 31.832214 : -84.35727 : Bronwood, GA +31727 : 31.44172 : -83.503715 : Brookfield, GA +31728 : 30.87039 : -84.21343 : Cairo, GA +31729 : 30.729915 : -84.34762 : Calvary, GA +31730 : 31.209854 : -84.23667 : Camilla, GA +31732 : 31.169794 : -85.0557 : Cedar Springs, GA +31733 : 31.592199 : -83.48004 : Chula, GA +31734 : 30.88096 : -84.42415 : Climax, GA +31735 : 31.959367 : -83.96028 : Cobb, GA +31736 : 31.650442 : -84.87908 : Coleman, GA +31737 : 31.152253 : -84.69653 : Colquitt, GA +31738 : 31.012042 : -83.87218 : Coolidge, GA +31739 : 31.260443 : -84.253089 : Cotton, GA +31740 : 31.781815 : -84.76444 : Cuthbert, GA +31741 : 31.299009 : -84.68772 : Damascus, GA +31742 : 31.756995 : -84.43357 : Dawson, GA +31743 : 31.930451 : -84.02921 : De Soto, GA +31744 : 31.325004 : -83.90937 : Doerun, GA +31745 : 30.974364 : -84.87703 : Donalsonville, GA +31746 : 31.563327 : -84.75869 : Edison, GA +31747 : 31.176563 : -83.58801 : Ellenton, GA +31749 : 31.439212 : -83.34041 : Enigma, GA +31750 : 31.720029 : -83.25093 : Fitzgerald, GA +31751 : 31.631333 : -85.03241 : Fort Gaines, GA +31752 : 30.803291 : -84.54711 : Fowlstown, GA +31753 : 31.205365 : -83.877554 : Funston, GA +31754 : 31.860476 : -85.07534 : Georgetown, GA +31756 : 31.177174 : -83.96555 : Hartsfield, GA +31757 : 30.883208 : -83.91237 : Thomasville, GA +31758 : 30.868187 : -83.927785 : Thomasville, GA +31759 : 31.011595 : -84.80242 : Iron City, GA +31760 : 31.706283 : -83.408633 : Irwinville, GA +31761 : 31.113122 : -85.00251 : Jakin, GA +31762 : 31.454628 : -84.51726 : Leary, GA +31763 : 31.714526 : -84.16931 : Leesburg, GA +31764 : 31.98309 : -84.06866 : Leslie, GA +31765 : 31.082141 : -84.05767 : Meigs, GA +31766 : 31.575228 : -84.59849 : Morgan, GA +31767 : 31.834324 : -84.94739 : Morris, GA +31768 : 31.165358 : -83.77172 : Moultrie, GA +31769 : 31.620866 : -83.249754 : Mystic, GA +31770 : 31.33349 : -84.36269 : Newton, GA +31771 : 31.256287 : -83.66005 : Norman Park, GA +31772 : 31.723178 : -83.9628 : Oakfield, GA +31773 : 30.977162 : -84.0615 : Ochlocknee, GA +31774 : 31.586426 : -83.27583 : Ocilla, GA +31775 : 31.334062 : -83.59971 : Omega, GA +31776 : 31.172696 : -83.792379 : Moultrie, GA +31777 : 31.905462 : -84.51526 : Parrott, GA +31778 : 30.966781 : -83.72075 : Pavo, GA +31779 : 31.117271 : -84.15678 : Pelham, GA +31780 : 32.026125 : -84.39361 : Plains, GA +31781 : 31.526584 : -83.79025 : Poulan, GA +31782 : 31.543065 : -84.219594 : Putney, GA +31783 : 31.767986 : -83.47325 : Rebecca, GA +31784 : 31.258794 : -84.02897 : Sale City, GA +31785 : 31.689973 : -84.32748 : Sasser, GA +31786 : 31.72952 : -84.60173 : Shellman, GA +31787 : 31.901066 : -84.25037 : Smithville, GA +31788 : 31.138011 : -83.716729 : White House, TN +31789 : 31.484091 : -83.73515 : Sumner, GA +31790 : 31.652542 : -83.57934 : Sycamore, GA +31791 : 31.536886 : -83.86041 : Sylvester, GA +31792 : 30.817654 : -83.98919 : Thomasville, GA +31793 : 31.485438 : -83.503621 : Tifton, GA +31794 : 31.459666 : -83.51083 : Tifton, GA +31795 : 31.47387 : -83.66484 : Ty Ty, GA +31796 : 31.782466 : -83.86973 : Warwick, GA +31797 : 30.888809 : -84.32976 : Whigham, GA +31798 : 31.621764 : -83.05502 : Wray, GA +31799 : 30.880968 : -83.885902 : Thomasville, GA +31801 : 32.527813 : -84.59822 : Box Springs, GA +31803 : 32.315915 : -84.52238 : Buena Vista, GA +31804 : 32.651617 : -84.88805 : Cataula, GA +31805 : 32.285535 : -84.76332 : Cusseta, GA +31806 : 32.246795 : -84.32008 : Ellaville, GA +31807 : 32.634965 : -84.80137 : Ellerslie, GA +31808 : 32.638885 : -85.00736 : Fortson, GA +31810 : 32.57791 : -84.54513 : Geneva, GA +31811 : 32.722333 : -84.95803 : Hamilton, GA +31812 : 32.614374 : -84.44513 : Junction City, GA +31814 : 32.154164 : -84.83857 : Louvale, GA +31815 : 32.030297 : -84.81218 : Lumpkin, GA +31816 : 32.862377 : -84.60879 : Manchester, GA +31820 : 32.566197 : -84.84122 : Midland, GA +31821 : 32.1342 : -84.98499 : Omaha, GA +31822 : 32.867211 : -84.88437 : Pine Mountain, GA +31823 : 32.801174 : -84.82038 : Pine Mountain Valley, GA +31824 : 32.051618 : -84.53419 : Preston, GA +31825 : 32.109225 : -84.66063 : Richland, GA +31826 : 32.803518 : -84.69384 : Shiloh, GA +31827 : 32.683146 : -84.52243 : Talbotton, GA +31829 : 32.557718 : -84.73957 : Upatoi, GA +31830 : 32.896166 : -84.71191 : Warm Springs, GA +31831 : 32.698622 : -84.71552 : Waverly Hall, GA +31832 : 31.973541 : -84.62522 : Weston, GA +31833 : 32.867469 : -85.13779 : West Point, GA +31836 : 32.797475 : -84.54095 : Woodland, GA +31901 : 32.471492 : -84.98005 : Columbus, GA +31902 : 32.524252 : -84.955843 : Columbus, GA +31903 : 32.423311 : -84.94879 : Columbus, GA +31904 : 32.513391 : -84.97753 : Columbus, GA +31905 : 32.37349 : -84.90612 : Fort Benning, GA +31906 : 32.468442 : -84.95128 : Columbus, GA +31907 : 32.479492 : -84.90942 : Columbus, GA +31908 : 32.534852 : -84.906483 : Columbus, GA +31909 : 32.53554 : -84.92583 : Columbus, GA +31914 : 32.491005 : -84.874123 : Columbus, GA +31917 : 32.491005 : -84.874123 : Columbus, GA +31993 : 32.482142 : -84.977131 : Columbus, GA +31994 : 32.491005 : -84.874123 : Columbus, GA +31995 : 32.495841 : -84.963981 : Fort Benning, GA +31997 : 32.491005 : -84.874123 : Columbus, GA +31998 : 32.491005 : -84.874123 : Columbus, GA +31999 : 32.491005 : -84.874123 : Columbus, GA +32004 : 29.937673 : -81.420603 : Ponte Vedra Beach, FL +32007 : 29.799631 : -81.627324 : Bostwick, FL +32008 : 29.928691 : -82.91032 : Branford, FL +32009 : 30.421425 : -81.95741 : Bryceville, FL +32011 : 30.567684 : -81.84051 : Callahan, FL +32013 : 30.193758 : -83.29266 : Day, FL +32024 : 30.108128 : -82.72529 : Lake City, FL +32025 : 30.155229 : -82.62165 : Lake City, FL +32030 : 30.105553 : -81.768964 : Doctors Inlet, FL +32033 : 29.787831 : -81.44668 : Elkton, FL +32034 : 30.641487 : -81.46092 : Fernandina Beach, FL +32035 : 30.551558 : -81.698422 : Fernandina Beach, FL +32038 : 29.922221 : -82.71425 : Fort White, FL +32040 : 30.272356 : -82.21351 : Glen Saint Mary, FL +32041 : 30.6233 : -81.590249 : Yulee, FL +32042 : 29.968926 : -82.122553 : Graham, FL +32043 : 29.97289 : -81.72195 : Green Cove Springs, FL +32044 : 29.863141 : -82.15623 : Hampton, FL +32046 : 30.685319 : -81.93061 : Hilliard, FL +32047 : 30.621671 : -81.617754 : Yulee, FL +32050 : 30.031702 : -81.848401 : Middleburg, FL +32052 : 30.491893 : -82.94876 : Jasper, FL +32053 : 30.581517 : -83.13841 : Jennings, FL +32054 : 30.005135 : -82.38103 : Lake Butler, FL +32055 : 30.216073 : -82.6396 : Lake City, FL +32056 : 30.162772 : -82.651184 : Lake City, FL +32058 : 30.061174 : -82.0943 : Lawtey, FL +32059 : 30.421598 : -83.27037 : Lee, FL +32060 : 30.285127 : -83.04106 : Live Oak, FL +32061 : 30.101542 : -82.50337 : Lulu, FL +32062 : 30.13762 : -82.98732 : McAlpin, FL +32063 : 30.267664 : -82.12457 : Macclenny, FL +32064 : 30.331517 : -82.957151 : Live Oak, FL +32065 : 30.133007 : -81.77904 : Orange Park, FL +32066 : 30.084849 : -83.21849 : Mayo, FL +32067 : 29.956068 : -81.815115 : Orange Park, FL +32068 : 30.074926 : -81.87932 : Middleburg, FL +32071 : 30.039096 : -82.94481 : O Brien, FL +32072 : 30.210947 : -82.43601 : Olustee, FL +32073 : 30.160965 : -81.72916 : Orange Park, FL +32079 : 29.979095 : -81.80991 : Penney Farms, FL +32080 : 29.838279 : -81.275174 : St. Augustine, FL +32081 : 29.50199 : -81.600108 : Pomona Park, FL +32082 : 30.189934 : -81.38213 : Ponte Vedra Beach, FL +32083 : 30.070341 : -82.22371 : Raiford, FL +32084 : 29.87131 : -81.29464 : Saint Augustine, FL +32085 : 29.937673 : -81.420603 : Saint Augustine, FL +32086 : 29.811123 : -81.30987 : Saint Augustine, FL +32087 : 30.390734 : -82.26039 : Sanderson, FL +32091 : 29.937512 : -82.11706 : Starke, FL +32092 : 29.955409 : -81.51284 : Saint Augustine, FL +32094 : 30.203153 : -82.81421 : Wellborn, FL +32095 : 29.923718 : -81.33962 : Saint Augustine, FL +32096 : 30.366085 : -82.76055 : White Springs, FL +32097 : 30.63928 : -81.59442 : Yulee, FL +32098 : 30.164918 : -81.378181 : Palm Valley, FL +32099 : 30.337538 : -81.768622 : Jacksonville, FL +32102 : 29.174417 : -81.56319 : Astor, FL +32105 : 29.200508 : -81.406458 : Barberville, FL +32110 : 29.445826 : -81.30203 : Bunnell, FL +32111 : 29.060711 : -81.969048 : Candler, FL +32112 : 29.425693 : -81.55686 : Crescent City, FL +32113 : 29.393366 : -82.09805 : Citra, FL +32114 : 29.204009 : -81.03602 : Daytona Beach, FL +32115 : 29.022729 : -81.172169 : Daytona Beach, FL +32116 : 29.10909 : -80.984344 : Daytona Beach, FL +32117 : 29.238606 : -81.05316 : Daytona Beach, FL +32118 : 29.210309 : -81.00259 : Daytona Beach, FL +32119 : 29.153239 : -81.02229 : Daytona Beach, FL +32120 : 29.022729 : -81.172169 : Daytona Beach, FL +32121 : 29.022729 : -81.172169 : Daytona Beach, FL +32122 : 29.022729 : -81.172169 : Daytona Beach, FL +32123 : 29.022729 : -81.172169 : Daytona Beach, FL +32124 : 29.105506 : -81.08642 : Daytona Beach, FL +32125 : 29.022729 : -81.172169 : Daytona Beach, FL +32126 : 29.022729 : -81.172169 : Daytona Beach, FL +32127 : 29.116361 : -80.98175 : Daytona Beach, FL +32128 : 29.080251 : -81.045962 : Port Orange, FL +32129 : 29.022729 : -81.172169 : Port Orange, FL +32130 : 29.140657 : -81.34497 : De Leon Springs, FL +32131 : 29.668112 : -81.59005 : East Palatka, FL +32132 : 28.982714 : -80.911 : Edgewater, FL +32133 : 29.008805 : -81.909445 : Eastlake Weir, FL +32134 : 29.401523 : -81.83636 : Fort McCoy, FL +32135 : 29.466085 : -81.282815 : Palm Coast, FL +32136 : 29.47033 : -81.13316 : Flagler Beach, FL +32137 : 29.581683 : -81.21645 : Palm Coast, FL +32138 : 29.727276 : -81.9205 : Grandin, FL +32139 : 29.385225 : -81.61052 : Georgetown, FL +32140 : 29.765329 : -81.85602 : Florahome, FL +32141 : 28.944915 : -80.89524 : Edgewater, FL +32142 : 29.466085 : -81.282815 : Palm Coast, FL +32145 : 29.656806 : -81.46122 : Hastings, FL +32147 : 29.634649 : -81.80743 : Hollister, FL +32148 : 29.640791 : -81.88648 : Interlachen, FL +32149 : 29.58203 : -81.744852 : Interlachen, FL +32151 : 29.466085 : -81.282815 : Flagler Beach, FL +32157 : 29.467357 : -81.57164 : Lake Como, FL +32158 : 28.811078 : -81.653642 : Lady Lake, FL +32159 : 28.930573 : -81.93806 : Lady Lake, FL +32160 : 29.768321 : -81.990729 : Lake Geneva, FL +32162 : 28.945246 : -81.987609 : The Villages, FL +32164 : 29.499591 : -81.22328 : Palm Coast, FL +32168 : 29.016897 : -80.95736 : New Smyrna Beach, FL +32169 : 28.998887 : -80.87561 : New Smyrna Beach, FL +32170 : 29.022729 : -81.172169 : New Smyrna Beach, FL +32173 : 29.022729 : -81.172169 : Ormond Beach, FL +32174 : 29.284924 : -81.10296 : Ormond Beach, FL +32175 : 29.022729 : -81.172169 : Ormond Beach, FL +32176 : 29.316606 : -81.05611 : Ormond Beach, FL +32177 : 29.666218 : -81.67401 : Palatka, FL +32178 : 29.644306 : -81.668593 : Palatka, FL +32179 : 29.071931 : -81.89073 : Ocklawaha, FL +32180 : 29.231366 : -81.45095 : Pierson, FL +32181 : 29.488583 : -81.6088 : Pomona Park, FL +32182 : 29.493034 : -81.96523 : Orange Springs, FL +32183 : 29.084013 : -81.8349 : Ocklawaha, FL +32185 : 29.740034 : -81.95858 : Putnam Hall, FL +32187 : 29.589748 : -81.57009 : San Mateo, FL +32189 : 29.556365 : -81.64433 : Satsuma, FL +32190 : 29.332109 : -81.50008 : Seville, FL +32192 : 29.326821 : -82.104632 : Sparr, FL +32193 : 29.476035 : -81.66331 : Welaka, FL +32195 : 29.003387 : -81.89262 : Weirsdale, FL +32198 : 29.022729 : -81.172169 : Daytona Beach, FL +32201 : 30.389438 : -81.680806 : Jacksonville, FL +32202 : 30.328539 : -81.65101 : Jacksonville, FL +32203 : 30.32281 : -81.547044 : Jacksonville, FL +32204 : 30.323806 : -81.68174 : Jacksonville, FL +32205 : 30.307439 : -81.72044 : Jacksonville, FL +32206 : 30.351006 : -81.64664 : Jacksonville, FL +32207 : 30.294389 : -81.6374 : Jacksonville, FL +32208 : 30.392888 : -81.67933 : Jacksonville, FL +32209 : 30.354588 : -81.69113 : Jacksonville, FL +32210 : 30.268572 : -81.73987 : Jacksonville, FL +32211 : 30.333022 : -81.586 : Jacksonville, FL +32212 : 30.222683 : -81.70165 : Jacksonville, FL +32214 : 30.34494 : -81.683107 : Jacksonville, FL +32215 : 30.23289 : -81.91485 : Jacksonville, FL +32216 : 30.28374 : -81.58359 : Jacksonville, FL +32217 : 30.24354 : -81.62098 : Jacksonville, FL +32218 : 30.449096 : -81.65651 : Jacksonville, FL +32219 : 30.411564 : -81.76653 : Jacksonville, FL +32220 : 30.329588 : -81.80865 : Jacksonville, FL +32221 : 30.292631 : -81.80502 : Jacksonville, FL +32222 : 30.230272 : -81.81255 : Jacksonville, FL +32223 : 30.159091 : -81.63073 : Jacksonville, FL +32224 : 30.284511 : -81.47043 : Jacksonville, FL +32225 : 30.348585 : -81.49965 : Jacksonville, FL +32226 : 30.453405 : -81.52551 : Jacksonville, FL +32227 : 30.383023 : -81.41049 : Jacksonville, FL +32228 : 30.38239 : -81.436859 : Jacksonville, FL +32229 : 30.34494 : -81.683107 : Jacksonville, FL +32230 : 30.34494 : -81.683107 : Jacksonville, FL +32231 : 30.34494 : -81.683107 : Jacksonville, FL +32232 : 30.34494 : -81.683107 : Jacksonville, FL +32233 : 30.343407 : -81.40949 : Atlantic Beach, FL +32234 : 30.226463 : -81.98364 : Jacksonville, FL +32235 : 30.34494 : -81.683107 : Jacksonville, FL +32236 : 30.34494 : -81.683107 : Jacksonville, FL +32237 : 30.34494 : -81.683107 : Jacksonville, FL +32238 : 30.34494 : -81.683107 : Jacksonville, FL +32239 : 30.34494 : -81.683107 : Jacksonville, FL +32240 : 30.34494 : -81.683107 : Jacksonville Beach, FL +32241 : 30.34494 : -81.683107 : Jacksonville, FL +32244 : 30.222489 : -81.74894 : Jacksonville, FL +32245 : 30.34494 : -81.683107 : Jacksonville, FL +32246 : 30.296911 : -81.52228 : Jacksonville, FL +32247 : 30.34494 : -81.683107 : Jacksonville, FL +32250 : 30.284641 : -81.39844 : Jacksonville Beach, FL +32254 : 30.336038 : -81.72509 : Jacksonville, FL +32255 : 30.287041 : -81.389305 : Jacksonville, FL +32256 : 30.206922 : -81.54604 : Jacksonville, FL +32257 : 30.192434 : -81.60597 : Jacksonville, FL +32258 : 30.148209 : -81.56882 : Jacksonville, FL +32259 : 30.092346 : -81.60274 : Jacksonville, FL +32260 : 29.937673 : -81.420603 : Jacksonville, FL +32266 : 30.316641 : -81.40308 : Neptune Beach, FL +32267 : 30.34494 : -81.683107 : Jacksonville, FL +32276 : 30.325739 : -81.659017 : Jacksonville, FL +32277 : 30.364339 : -81.59087 : Jacksonville, FL +32301 : 30.431283 : -84.26903 : Tallahassee, FL +32302 : 30.479347 : -84.346204 : Tallahassee, FL +32303 : 30.486061 : -84.31528 : Tallahassee, FL +32304 : 30.446766 : -84.32394 : Tallahassee, FL +32305 : 30.130775 : -84.406629 : Wakulla Springs, FL +32306 : 30.442499 : -84.29855 : Tallahassee, FL +32307 : 30.42565 : -84.287749 : Tallahassee, FL +32308 : 30.531677 : -84.16049 : Tallahassee, FL +32309 : 30.514599 : -84.188446 : Miccosukee Cpo, FL +32310 : 30.400318 : -84.34803 : Tallahassee, FL +32311 : 30.403146 : -84.18841 : Tallahassee, FL +32312 : 30.554434 : -84.25979 : Tallahassee, FL +32313 : 30.479347 : -84.346204 : Tallahassee, FL +32314 : 30.479347 : -84.346204 : Tallahassee, FL +32315 : 30.479347 : -84.346204 : Tallahassee, FL +32316 : 30.479347 : -84.346204 : Tallahassee, FL +32317 : 30.479347 : -84.346204 : Tallahassee, FL +32320 : 29.71877 : -85.02704 : Apalachicola, FL +32321 : 30.36007 : -84.97668 : Bristol, FL +32322 : 29.912584 : -84.6407 : Carrabelle, FL +32323 : 29.879559 : -84.60134 : Lanark Village, FL +32324 : 30.687983 : -84.8218 : Chattahoochee, FL +32326 : 30.183372 : -84.34906 : Crawfordville, FL +32327 : 30.194939 : -84.35533 : Crawfordville, FL +32328 : 29.825252 : -84.89247 : Eastpoint, FL +32329 : 29.745526 : -85.023947 : Apalachicola, FL +32330 : 30.571364 : -84.74346 : Greensboro, FL +32331 : 30.442203 : -83.65112 : Greenville, FL +32332 : 30.616479 : -84.66292 : Gretna, FL +32333 : 30.607352 : -84.41376 : Havana, FL +32334 : 30.381958 : -84.77767 : Hosford, FL +32335 : 30.060351 : -85.04477 : Sumatra, FL +32336 : 30.416739 : -83.8239 : Lamont, FL +32337 : 30.478502 : -84.02083 : Lloyd, FL +32340 : 30.476181 : -83.40303 : Madison, FL +32341 : 30.47756 : -83.391393 : Madison, FL +32342 : 30.496047 : -84.483258 : Midway, FL +32343 : 30.494878 : -84.46259 : Midway, FL +32344 : 30.530854 : -83.88017 : Monticello, FL +32345 : 30.342161 : -83.840177 : Monticello, FL +32346 : 29.983931 : -84.38798 : Panacea, FL +32347 : 30.080602 : -83.58119 : Perry, FL +32348 : 29.966454 : -83.659371 : Perry, FL +32349 : 30.100578 : -83.578106 : Perry, FL +32350 : 30.594145 : -83.32545 : Pinetta, FL +32351 : 30.573563 : -84.6147 : Quincy, FL +32352 : 30.665715 : -84.75363 : Mount Pleasant, FL +32353 : 30.549676 : -84.606864 : Quincy, FL +32355 : 30.162414 : -84.20923 : Saint Marks, FL +32356 : 29.900822 : -83.42088 : Salem, FL +32357 : 30.28163 : -83.63082 : Shady Grove, FL +32358 : 30.029899 : -84.50595 : Sopchoppy, FL +32359 : 29.673459 : -83.38416 : Steinhatchee, FL +32360 : 30.184365 : -84.88355 : Telogia, FL +32361 : 30.357761 : -83.98882 : Wacissa, FL +32362 : 30.319263 : -84.267397 : Woodville, FL +32395 : 30.479347 : -84.346204 : Tallahassee, FL +32399 : 30.420146 : -84.23331 : Tallahassee, FL +32401 : 30.161901 : -85.65297 : Panama City, FL +32402 : 30.234451 : -85.692035 : Panama City, FL +32403 : 30.068188 : -85.60975 : Panama City, FL +32404 : 30.188585 : -85.56392 : Panama City, FL +32405 : 30.195424 : -85.66458 : Panama City, FL +32406 : 30.234451 : -85.692035 : Panama City, FL +32407 : 30.196771 : -85.81279 : Panama City Beach, FL +32408 : 30.154621 : -85.76367 : Panama City, FL +32409 : 30.330553 : -85.65413 : Panama City, FL +32410 : 29.945008 : -85.41461 : Mexico Beach, FL +32411 : 30.234451 : -85.692035 : Panama City, FL +32412 : 30.234451 : -85.692035 : Panama City, FL +32413 : 30.252616 : -85.90413 : Panama City Beach, FL +32417 : 30.243832 : -85.916988 : Panama City, FL +32420 : 30.641154 : -85.37542 : Alford, FL +32421 : 30.5403 : -85.18229 : Altha, FL +32422 : 30.716494 : -86.03889 : Argyle, FL +32423 : 30.959504 : -85.05644 : Bascom, FL +32424 : 30.42007 : -85.07299 : Blountstown, FL +32425 : 30.838337 : -85.67495 : Bonifay, FL +32426 : 30.955359 : -85.38288 : Campbellton, FL +32427 : 30.821603 : -85.806 : Caryville, FL +32428 : 30.636228 : -85.5775 : Chipley, FL +32430 : 30.438819 : -85.24381 : Clarksville, FL +32431 : 30.779196 : -85.39371 : Cottondale, FL +32432 : 30.713868 : -85.0779 : Cypress, FL +32433 : 30.747244 : -86.14665 : Defuniak Springs, FL +32434 : 30.762486 : -86.342683 : Mossy Head, FL +32435 : 30.603777 : -86.12111 : Defuniak Springs, FL +32436 : 30.110171 : -85.198431 : Wewahitchka, FL +32437 : 30.443152 : -85.88079 : Ebro, FL +32438 : 30.488955 : -85.41673 : Fountain, FL +32439 : 30.482838 : -86.1675 : Freeport, FL +32440 : 30.935306 : -85.52171 : Graceville, FL +32442 : 30.698517 : -85.01619 : Grand Ridge, FL +32443 : 30.860528 : -85.11142 : Greenwood, FL +32444 : 30.239849 : -85.64577 : Lynn Haven, FL +32445 : 30.961401 : -85.16919 : Malone, FL +32446 : 30.804698 : -85.2206 : Marianna, FL +32447 : 30.759353 : -85.25712 : Marianna, FL +32448 : 30.675635 : -85.23283 : Marianna, FL +32449 : 30.283088 : -85.21892 : Kinard, FL +32452 : 30.849972 : -85.768022 : Noma, FL +32454 : 30.603777 : -86.12111 : Point Washington, FL +32455 : 30.657214 : -85.96035 : Ponce De Leon, FL +32456 : 29.846517 : -85.32792 : Port Saint Joe, FL +32457 : 29.902484 : -85.242169 : Port Saint Joe, FL +32459 : 30.361248 : -86.18759 : Santa Rosa Beach, FL +32460 : 30.735645 : -84.94563 : Sneads, FL +32461 : 30.252531 : -85.942389 : Sunnyside, FL +32462 : 30.563809 : -85.82357 : Vernon, FL +32463 : 30.631345 : -85.58981 : Wausau, FL +32464 : 30.892936 : -85.93988 : Westville, FL +32465 : 30.045471 : -85.22822 : Wewahitchka, FL +32466 : 30.373845 : -85.52891 : Youngstown, FL +32476 : 28.773699 : -81.344414 : Lake Mary, FL +32478 : 30.778182 : -85.53832 : Chipley, FL +32501 : 30.420997 : -87.22305 : Pensacola, FL +32502 : 30.474288 : -87.225691 : Pensacola, FL +32503 : 30.447997 : -87.20727 : Pensacola, FL +32504 : 30.48787 : -87.18937 : Pensacola, FL +32505 : 30.441994 : -87.25472 : Pensacola, FL +32506 : 30.408807 : -87.31919 : Pensacola, FL +32507 : 30.360887 : -87.33451 : Pensacola, FL +32508 : 30.355477 : -87.29035 : Pensacola, FL +32509 : 30.464324 : -87.340262 : Pensacola, FL +32511 : 30.61428 : -87.275772 : Pensacola, FL +32512 : 30.394327 : -87.299129 : Pensacola, FL +32513 : 30.557064 : -87.259592 : Pensacola, FL +32514 : 30.527195 : -87.21485 : Pensacola, FL +32516 : 30.61428 : -87.275772 : Pensacola, FL +32520 : 30.412377 : -87.203543 : Pensacola, FL +32521 : 30.61428 : -87.275772 : Pensacola, FL +32522 : 30.61428 : -87.275772 : Pensacola, FL +32523 : 30.61428 : -87.275772 : Pensacola, FL +32524 : 30.61428 : -87.275772 : Pensacola, FL +32526 : 30.479002 : -87.31996 : Pensacola, FL +32530 : 30.598564 : -87.031496 : Bagdad, FL +32531 : 30.8752 : -86.68607 : Baker, FL +32533 : 30.600993 : -87.31979 : Cantonment, FL +32534 : 30.526345 : -87.27734 : Pensacola, FL +32535 : 30.969066 : -87.30604 : Century, FL +32536 : 30.760184 : -86.58533 : Crestview, FL +32537 : 30.741965 : -86.655208 : Milligan, FL +32538 : 30.970853 : -86.311093 : Paxton, FL +32539 : 30.757479 : -86.51088 : Crestview, FL +32540 : 30.661155 : -86.594479 : Destin, FL +32541 : 30.391795 : -86.4338 : Destin, FL +32542 : 30.457156 : -86.55081 : Eglin AFB, FL +32544 : 30.464755 : -86.64643 : Hurlburt Field, FL +32546 : 30.409264 : -87.292755 : Myrtle Grove, FL +32547 : 30.447248 : -86.62113 : Fort Walton Beach, FL +32548 : 30.414932 : -86.61992 : Fort Walton Beach, FL +32549 : 30.661155 : -86.594479 : Fort Walton Beach, FL +32550 : 30.381934 : -86.359508 : Miramar Beach, FL +32559 : 30.356287 : -87.277307 : Pensacola, FL +32560 : 30.581825 : -87.292918 : Gonzalez, FL +32561 : 30.375469 : -87.09013 : Gulf Breeze, FL +32562 : 30.659159 : -87.04972 : Gulf Breeze, FL +32563 : 30.659159 : -87.04972 : Harold, FL +32564 : 30.717437 : -86.77075 : Holt, FL +32565 : 30.902015 : -87.13267 : Jay, FL +32566 : 30.435069 : -86.89025 : Gulf Breeze, FL +32567 : 30.945123 : -86.43749 : Laurel Hill, FL +32568 : 30.878449 : -87.47861 : McDavid, FL +32569 : 30.409902 : -86.71497 : Mary Esther, FL +32570 : 30.70969 : -87.01098 : Milton, FL +32571 : 30.627637 : -87.16724 : Milton, FL +32572 : 30.659159 : -87.04972 : Milton, FL +32573 : 30.61428 : -87.275772 : Pensacola, FL +32574 : 30.61428 : -87.275772 : Pensacola, FL +32575 : 30.61428 : -87.275772 : Pensacola, FL +32576 : 30.61428 : -87.275772 : Pensacola, FL +32577 : 30.743945 : -87.34872 : Molino, FL +32578 : 30.500901 : -86.45335 : Niceville, FL +32579 : 30.444975 : -86.57331 : Shalimar, FL +32580 : 30.507047 : -86.49702 : Valparaiso, FL +32581 : 30.61428 : -87.275772 : Pensacola, FL +32582 : 30.61428 : -87.275772 : Pensacola, FL +32583 : 30.58149 : -87.00178 : Milton, FL +32588 : 30.661155 : -86.594479 : Niceville, FL +32589 : 30.61428 : -87.275772 : Pensacola, FL +32590 : 30.61428 : -87.275772 : Pensacola, FL +32591 : 30.61428 : -87.275772 : Pensacola, FL +32592 : 30.61428 : -87.275772 : Pensacola, FL +32593 : 30.61428 : -87.275772 : Pensacola, FL +32594 : 30.61428 : -87.275772 : Pensacola, FL +32595 : 30.61428 : -87.275772 : Pensacola, FL +32596 : 30.61428 : -87.275772 : Pensacola, FL +32597 : 30.529739 : -87.275693 : Pensacola, FL +32598 : 30.61428 : -87.275772 : Pensacola, FL +32601 : 29.653195 : -82.3244 : Gainesville, FL +32602 : 29.629887 : -82.396567 : Gainesville, FL +32603 : 29.653145 : -82.3469 : Gainesville, FL +32604 : 29.573293 : -82.397904 : Gainesville, FL +32605 : 29.676006 : -82.36889 : Gainesville, FL +32606 : 29.681426 : -82.41502 : Gainesville, FL +32607 : 29.646189 : -82.39658 : Gainesville, FL +32608 : 29.611545 : -82.3941 : Gainesville, FL +32609 : 29.713911 : -82.29591 : Gainesville, FL +32610 : 29.681312 : -82.353862 : Gainesville, FL +32611 : 29.681312 : -82.353862 : Gainesville, FL +32612 : 29.681312 : -82.353862 : Gainesville, FL +32613 : 29.681312 : -82.353862 : Gainesville, FL +32614 : 29.681312 : -82.353862 : Gainesville, FL +32615 : 29.801949 : -82.48872 : Alachua, FL +32616 : 29.790674 : -82.49351 : Alachua, FL +32617 : 29.315961 : -82.10092 : Anthony, FL +32618 : 29.517277 : -82.54518 : Archer, FL +32619 : 29.764553 : -82.87062 : Bell, FL +32621 : 29.447069 : -82.60452 : Bronson, FL +32622 : 29.896156 : -82.30358 : Brooker, FL +32625 : 29.178171 : -83.02243 : Cedar Key, FL +32626 : 29.453178 : -82.86837 : Chiefland, FL +32627 : 29.681312 : -82.353862 : Gainesville, FL +32628 : 29.630964 : -83.1148 : Cross City, FL +32631 : 29.730413 : -82.097095 : Earleton, FL +32633 : 29.681312 : -82.353862 : Evinston, FL +32634 : 29.35089 : -82.27648 : Fairfield, FL +32635 : 29.681312 : -82.353862 : Gainesville, FL +32638 : 29.622568 : -82.808642 : Trenton, FL +32639 : 29.231843 : -82.72965 : Gulf Hammock, FL +32640 : 29.601599 : -82.0309 : Hawthorne, FL +32641 : 29.648594 : -82.28621 : Gainesville, FL +32643 : 29.823616 : -82.60407 : High Springs, FL +32644 : 29.460221 : -82.855334 : Chiefland, FL +32648 : 29.458513 : -83.27604 : Horseshoe Beach, FL +32653 : 29.735832 : -82.39008 : Gainesville, FL +32654 : 29.459973 : -82.10819 : Island Grove, FL +32655 : 29.817457 : -82.60064 : High Springs, FL +32656 : 29.788679 : -82.00421 : Keystone Heights, FL +32658 : 29.845122 : -82.39845 : La Crosse, FL +32662 : 29.514298 : -82.09829 : Lochloosa, FL +32663 : 29.342404 : -82.212649 : Lowell, FL +32664 : 29.450353 : -82.22069 : McIntosh, FL +32666 : 29.733375 : -82.01048 : Melrose, FL +32667 : 29.502067 : -82.27775 : Micanopy, FL +32668 : 29.282158 : -82.51776 : Morriston, FL +32669 : 29.640613 : -82.59446 : Newberry, FL +32680 : 29.643244 : -82.99026 : Old Town, FL +32681 : 29.425291 : -82.2158 : Orange Lake, FL +32683 : 29.319173 : -82.77965 : Otter Creek, FL +32686 : 29.364039 : -82.23483 : Reddick, FL +32692 : 29.330426 : -83.14401 : Suwannee, FL +32693 : 29.598935 : -82.82752 : Trenton, FL +32694 : 29.789597 : -82.1621 : Waldo, FL +32696 : 29.369207 : -82.49831 : Williston, FL +32697 : 29.931204 : -82.42643 : Worthington Springs, FL +32699 : 29.636632 : -82.611304 : Newberry, FL +32701 : 28.666249 : -81.36796 : Altamonte Springs, FL +32702 : 29.046215 : -81.64043 : Altoona, FL +32703 : 28.658395 : -81.50319 : Apopka, FL +32704 : 28.566338 : -81.260818 : Apopka, FL +32706 : 28.965591 : -81.23654 : Cassadaga, FL +32707 : 28.665125 : -81.31772 : Casselberry, FL +32708 : 28.683408 : -81.28151 : Winter Springs, FL +32709 : 28.513011 : -80.99418 : Christmas, FL +32710 : 28.566338 : -81.260818 : Clarcona, FL +32712 : 28.713173 : -81.52359 : Apopka, FL +32713 : 28.888595 : -81.31212 : Debary, FL +32714 : 28.663913 : -81.41112 : Altamonte Springs, FL +32715 : 28.744752 : -81.22328 : Altamonte Springs, FL +32716 : 28.744752 : -81.22328 : Altamonte Springs, FL +32718 : 28.744752 : -81.22328 : Casselberry, FL +32719 : 28.744752 : -81.22328 : Winter Springs, FL +32720 : 29.021782 : -81.33352 : Deland, FL +32721 : 28.997288 : -81.299521 : Deland, FL +32722 : 29.022729 : -81.172169 : Glenwood, FL +32724 : 29.039757 : -81.27927 : Deland, FL +32725 : 28.902426 : -81.24515 : Deltona, FL +32726 : 28.850617 : -81.68034 : Eustis, FL +32727 : 28.855517 : -81.674147 : Eustis, FL +32728 : 29.022729 : -81.172169 : Deltona, FL +32730 : 28.653875 : -81.34387 : Casselberry, FL +32732 : 28.746588 : -81.10985 : Geneva, FL +32733 : 28.613308 : -81.258108 : Goldenrod, FL +32735 : 28.893559 : -81.74343 : Grand Island, FL +32736 : 28.895482 : -81.5228 : Eustis, FL +32738 : 28.910383 : -81.18764 : Deltona, FL +32739 : 29.022729 : -81.172169 : Deltona, FL +32744 : 28.985274 : -81.23495 : Lake Helen, FL +32745 : 28.77368 : -81.390498 : Heathrow, FL +32746 : 28.758133 : -81.33992 : Lake Mary, FL +32747 : 28.827219 : -81.332888 : Lake Monroe, FL +32750 : 28.703674 : -81.35384 : Longwood, FL +32751 : 28.628359 : -81.35942 : Maitland, FL +32752 : 28.744752 : -81.22328 : Longwood, FL +32754 : 28.707648 : -80.89049 : Mims, FL +32756 : 28.811078 : -81.653642 : Mount Dora, FL +32757 : 28.786272 : -81.64475 : Mount Dora, FL +32759 : 28.868986 : -80.85374 : Oak Hill, FL +32762 : 28.744752 : -81.22328 : Oviedo, FL +32763 : 28.945857 : -81.30512 : Orange City, FL +32764 : 28.834172 : -81.0948 : Osteen, FL +32765 : 28.656375 : -81.21026 : Oviedo, FL +32766 : 28.639275 : -81.11906 : Oviedo, FL +32767 : 29.008612 : -81.50174 : Paisley, FL +32768 : 28.698542 : -81.569764 : Plymouth, FL +32769 : 28.858941 : -80.856373 : Oak Hill, FL +32771 : 28.803979 : -81.28761 : Sanford, FL +32772 : 28.80722 : -81.250236 : Sanford, FL +32773 : 28.769173 : -81.27631 : Sanford, FL +32774 : 29.022729 : -81.172169 : Orange City, FL +32775 : 28.76507 : -80.87315 : Scottsmoor, FL +32776 : 28.804039 : -81.53689 : Sorrento, FL +32777 : 28.566338 : -81.260818 : Tangerine, FL +32778 : 28.799017 : -81.73184 : Tavares, FL +32779 : 28.704874 : -81.41711 : Longwood, FL +32780 : 28.564077 : -80.81695 : Titusville, FL +32781 : 28.306726 : -80.686159 : Titusville, FL +32782 : 28.306726 : -80.686159 : Titusville, FL +32783 : 28.306726 : -80.686159 : Titusville, FL +32784 : 28.948549 : -81.70621 : Umatilla, FL +32789 : 28.598677 : -81.35594 : Winter Park, FL +32790 : 28.566338 : -81.260818 : Winter Park, FL +32791 : 28.744752 : -81.22328 : Longwood, FL +32792 : 28.607077 : -81.30606 : Winter Park, FL +32793 : 28.566338 : -81.260818 : Winter Park, FL +32794 : 28.566338 : -81.260818 : Maitland, FL +32795 : 28.744752 : -81.22328 : Lake Mary, FL +32796 : 28.623371 : -80.84123 : Titusville, FL +32798 : 28.716923 : -81.5754 : Zellwood, FL +32799 : 28.744752 : -81.22328 : Mid Florida, FL +32801 : 28.541879 : -81.37446 : Orlando, FL +32802 : 28.519024 : -81.343903 : Orlando, FL +32803 : 28.557579 : -81.35244 : Orlando, FL +32804 : 28.577723 : -81.3931 : Orlando, FL +32805 : 28.53028 : -81.40089 : Orlando, FL +32806 : 28.51483 : -81.36054 : Orlando, FL +32807 : 28.546897 : -81.30774 : Orlando, FL +32808 : 28.576028 : -81.44369 : Orlando, FL +32809 : 28.463482 : -81.38814 : Orlando, FL +32810 : 28.619445 : -81.42695 : Orlando, FL +32811 : 28.52493 : -81.43994 : Orlando, FL +32812 : 28.493531 : -81.32609 : Orlando, FL +32813 : 28.567928 : -81.325842 : Orlando, FL +32814 : 28.566338 : -81.260818 : Orlando, FL +32815 : 28.306726 : -80.686159 : Orlando, FL +32816 : 28.566338 : -81.260818 : Orlando, FL +32817 : 28.591692 : -81.24717 : Orlando, FL +32818 : 28.583103 : -81.48608 : Orlando, FL +32819 : 28.463509 : -81.47514 : Orlando, FL +32820 : 28.561242 : -81.10735 : Orlando, FL +32821 : 28.391608 : -81.47345 : Orlando, FL +32822 : 28.494931 : -81.28949 : Orlando, FL +32824 : 28.410872 : -81.35898 : Orlando, FL +32825 : 28.543248 : -81.2456 : Orlando, FL +32826 : 28.584177 : -81.18634 : Orlando, FL +32827 : 28.425221 : -81.30353 : Orlando, FL +32828 : 28.542132 : -81.18404 : Orlando, FL +32829 : 28.491653 : -81.26436 : Orlando, FL +32830 : 28.385549 : -81.505894 : Orlando, FL +32831 : 28.458149 : -81.13666 : Orlando, FL +32832 : 28.395979 : -81.17653 : Orlando, FL +32833 : 28.511879 : -81.09078 : Orlando, FL +32834 : 28.566338 : -81.260818 : Orlando, FL +32835 : 28.528789 : -81.47863 : Orlando, FL +32836 : 28.401151 : -81.52488 : Orlando, FL +32837 : 28.385906 : -81.41182 : Orlando, FL +32839 : 28.489758 : -81.40625 : Orlando, FL +32853 : 28.566338 : -81.260818 : Orlando, FL +32854 : 28.566338 : -81.260818 : Orlando, FL +32855 : 28.550028 : -81.104185 : Orlando, FL +32856 : 28.548379 : -81.420092 : Orlando, FL +32857 : 28.566338 : -81.260818 : Orlando, FL +32858 : 28.566338 : -81.260818 : Orlando, FL +32859 : 28.442926 : -81.402613 : Orlando, FL +32860 : 28.566338 : -81.260818 : Orlando, FL +32861 : 28.566338 : -81.260818 : Orlando, FL +32862 : 28.417368 : -81.332763 : Orlando, FL +32867 : 28.566338 : -81.260818 : Orlando, FL +32868 : 28.566338 : -81.260818 : Orlando, FL +32869 : 28.566338 : -81.260818 : Orlando, FL +32872 : 28.566338 : -81.260818 : Orlando, FL +32877 : 28.566338 : -81.260818 : Orlando, FL +32878 : 28.566338 : -81.260818 : Orlando, FL +32886 : 28.566338 : -81.260818 : Orlando, FL +32887 : 28.566338 : -81.260818 : Orlando, FL +32889 : 28.566338 : -81.260818 : Orlando, FL +32890 : 28.566338 : -81.260818 : Orlando, FL +32891 : 28.566338 : -81.260818 : Orlando, FL +32893 : 28.566338 : -81.260818 : Orlando, FL +32897 : 28.566338 : -81.260818 : Orlando, FL +32898 : 28.566338 : -81.260818 : Orlando, FL +32899 : 28.306726 : -80.686159 : Orlando, FL +32901 : 28.077494 : -80.61987 : Melbourne, FL +32902 : 28.306726 : -80.686159 : Melbourne, FL +32903 : 28.103191 : -80.57414 : Indialantic, FL +32904 : 28.073891 : -80.67167 : Melbourne, FL +32905 : 28.031689 : -80.60014 : Palm Bay, FL +32906 : 28.067128 : -80.650341 : Palm Bay, FL +32907 : 28.012241 : -80.67729 : Palm Bay, FL +32908 : 27.958982 : -80.68591 : Palm Bay, FL +32909 : 27.950975 : -80.64679 : Palm Bay, FL +32910 : 28.306726 : -80.686159 : Palm Bay, FL +32911 : 28.306726 : -80.686159 : Palm Bay, FL +32912 : 28.306726 : -80.686159 : Melbourne, FL +32919 : 28.306726 : -80.686159 : Melbourne, FL +32920 : 28.390932 : -80.60501 : Cape Canaveral, FL +32922 : 28.366284 : -80.74196 : Cocoa, FL +32923 : 28.427535 : -80.828991 : Cocoa, FL +32924 : 28.306726 : -80.686159 : Cocoa, FL +32925 : 28.235092 : -80.60159 : Patrick AFB, FL +32926 : 28.392933 : -80.79585 : Cocoa, FL +32927 : 28.47123 : -80.79887 : Cocoa, FL +32931 : 28.326985 : -80.61119 : Cocoa Beach, FL +32932 : 28.306726 : -80.686159 : Cocoa Beach, FL +32934 : 28.137443 : -80.69211 : Melbourne, FL +32935 : 28.13926 : -80.65077 : Melbourne, FL +32936 : 28.306726 : -80.686159 : Melbourne, FL +32937 : 28.172041 : -80.59957 : Satellite Beach, FL +32940 : 28.21981 : -80.69402 : Melbourne, FL +32941 : 27.924577 : -80.523463 : Melbourne, FL +32948 : 27.762118 : -80.59472 : Fellsmere, FL +32949 : 27.929103 : -80.52879 : Grant, FL +32950 : 27.974173 : -80.56986 : Malabar, FL +32951 : 28.01514 : -80.53518 : Melbourne Beach, FL +32952 : 28.350373 : -80.6691 : Merritt Island, FL +32953 : 28.396301 : -80.70198 : Merritt Island, FL +32954 : 28.22571 : -80.673356 : Merritt Island, FL +32955 : 28.308581 : -80.72558 : Rockledge, FL +32956 : 28.329785 : -80.732327 : Rockledge, FL +32957 : 27.709049 : -80.572557 : Roseland, FL +32958 : 27.78783 : -80.48266 : Sebastian, FL +32959 : 28.306726 : -80.686159 : Sharpes, FL +32960 : 27.636828 : -80.40294 : Vero Beach, FL +32961 : 27.617473 : -80.423083 : Vero Beach, FL +32962 : 27.582151 : -80.39141 : Vero Beach, FL +32963 : 27.676376 : -80.37248 : Vero Beach, FL +32964 : 27.709049 : -80.572557 : Vero Beach, FL +32965 : 27.709049 : -80.572557 : Vero Beach, FL +32966 : 27.645377 : -80.51468 : Vero Beach, FL +32967 : 27.724801 : -80.49708 : Vero Beach, FL +32968 : 27.594718 : -80.45722 : Vero Beach, FL +32969 : 27.709049 : -80.572557 : Vero Beach, FL +32970 : 27.750176 : -80.45364 : Wabasso, FL +32971 : 27.709049 : -80.572557 : Winter Beach, FL +32976 : 27.877504 : -80.51457 : Sebastian, FL +32977 : 27.718868 : -80.421607 : Winter Beach, FL +32978 : 27.709049 : -80.572557 : Sebastian, FL +33001 : 24.841814 : -80.79405 : Long Key, FL +33002 : 25.558428 : -80.458168 : Hialeah, FL +33003 : 25.455229 : -80.475479 : Florida City, FL +33004 : 26.051916 : -80.14526 : Dania, FL +33008 : 26.145724 : -80.448254 : Hallandale, FL +33009 : 25.987069 : -80.15004 : Hallandale, FL +33010 : 25.832374 : -80.27874 : Hialeah, FL +33011 : 25.558428 : -80.458168 : Hialeah, FL +33012 : 25.864773 : -80.30069 : Hialeah, FL +33013 : 25.860373 : -80.27174 : Hialeah, FL +33014 : 25.902172 : -80.30732 : Hialeah, FL +33015 : 25.938687 : -80.3182 : Hialeah, FL +33016 : 25.887983 : -80.33284 : Hialeah, FL +33017 : 25.558428 : -80.458168 : Hialeah, FL +33018 : 25.895557 : -80.35509 : Hialeah, FL +33019 : 26.018967 : -80.12231 : Hollywood, FL +33020 : 26.016984 : -80.14925 : Hollywood, FL +33021 : 26.023634 : -80.18922 : Hollywood, FL +33022 : 26.013368 : -80.144217 : Hollywood, FL +33023 : 25.989119 : -80.21318 : Hollywood, FL +33024 : 26.023567 : -80.23851 : Hollywood, FL +33025 : 25.990494 : -80.27326 : Hollywood, FL +33026 : 26.0267 : -80.29443 : Hollywood, FL +33027 : 25.981409 : -80.34491 : Hollywood, FL +33028 : 26.018418 : -80.34798 : Pembroke Pines, FL +33029 : 26.006373 : -80.40212 : Hollywood, FL +33030 : 25.479438 : -80.48687 : Homestead, FL +33031 : 25.526214 : -80.49632 : Homestead, FL +33032 : 25.524528 : -80.40521 : Homestead, FL +33033 : 25.487988 : -80.42692 : Homestead, FL +33034 : 25.431506 : -80.51382 : Homestead, FL +33035 : 25.457913 : -80.44781 : Homestead, FL +33036 : 24.91828 : -80.63676 : Islamorada, FL +33037 : 25.137661 : -80.40735 : Key Largo, FL +33039 : 25.558428 : -80.458168 : Homestead, FL +33040 : 24.567593 : -81.7566 : Key West, FL +33041 : 25.100957 : -81.568862 : Key West, FL +33042 : 24.663121 : -81.48694 : Summerland Key, FL +33043 : 24.675731 : -81.34359 : Big Pine Key, FL +33044 : 24.664649 : -81.565319 : Sugarloaf Shores, FL +33045 : 25.100957 : -81.568862 : Key West, FL +33047 : 25.859273 : -80.242671 : West Little River, FL +33050 : 24.731758 : -81.0278 : Marathon, FL +33051 : 24.72339 : -81.020281 : Key Colony Beach, FL +33052 : 24.723283 : -81.063249 : Marathon Shores, FL +33054 : 25.909039 : -80.24945 : Opa Locka, FL +33055 : 25.94422 : -80.2773 : Opa Locka, FL +33056 : 25.946754 : -80.24962 : Opa Locka, FL +33058 : 25.968737 : -80.262604 : Lake Lucerne, FL +33060 : 26.232009 : -80.12211 : Pompano Beach, FL +33061 : 26.253909 : -80.134216 : Pompano Beach, FL +33062 : 26.236792 : -80.09594 : Pompano Beach, FL +33063 : 26.251909 : -80.21016 : Pompano Beach, FL +33064 : 26.279108 : -80.11319 : Pompano Beach, FL +33065 : 26.272608 : -80.25589 : Pompano Beach, FL +33066 : 26.253238 : -80.17799 : Pompano Beach, FL +33067 : 26.3007 : -80.22727 : Pompano Beach, FL +33068 : 26.21606 : -80.21776 : Pompano Beach, FL +33069 : 26.22876 : -80.15816 : Pompano Beach, FL +33070 : 25.006349 : -80.53139 : Tavernier, FL +33071 : 26.242559 : -80.26564 : Pompano Beach, FL +33072 : 26.233459 : -80.092365 : Pompano Beach, FL +33073 : 26.305433 : -80.18287 : Pompano Beach, FL +33074 : 26.145724 : -80.448254 : Pompano Beach, FL +33075 : 26.145724 : -80.448254 : Pompano Beach, FL +33076 : 26.30116 : -80.2731 : Pompano Beach, FL +33077 : 26.145724 : -80.448254 : Pompano Beach, FL +33081 : 26.145724 : -80.448254 : Hollywood, FL +33082 : 26.145724 : -80.448254 : Pembroke Pines, FL +33083 : 26.145724 : -80.448254 : Hollywood, FL +33084 : 26.289057 : -80.129816 : Pembroke Pines, FL +33090 : 25.558428 : -80.458168 : Homestead, FL +33092 : 25.558428 : -80.458168 : Homestead, FL +33093 : 26.145724 : -80.448254 : Pompano Beach, FL +33097 : 26.145724 : -80.448254 : Pompano Beach, FL +33101 : 25.779076 : -80.19782 : Miami, FL +33102 : 25.558428 : -80.458168 : Miami, FL +33107 : 25.558428 : -80.458168 : Miami, FL +33109 : 25.759474 : -80.13907 : Miami Beach, FL +33110 : 25.846874 : -80.20827 : Miami, FL +33111 : 25.558428 : -80.458168 : Miami, FL +33114 : 25.558428 : -80.458168 : Miami, FL +33116 : 25.558428 : -80.458168 : Miami, FL +33119 : 25.784526 : -80.131967 : Miami Beach, FL +33121 : 25.558428 : -80.458168 : Miami, FL +33122 : 25.799962 : -80.31775 : Miami, FL +33124 : 25.558428 : -80.458168 : Miami, FL +33125 : 25.782176 : -80.23607 : Miami, FL +33126 : 25.777977 : -80.29718 : Miami, FL +33127 : 25.813808 : -80.2058 : Miami, FL +33128 : 25.777143 : -80.20225 : Miami, FL +33129 : 25.757227 : -80.20656 : Miami, FL +33130 : 25.768277 : -80.20339 : Miami, FL +33131 : 25.767368 : -80.1893 : Miami, FL +33132 : 25.784326 : -80.18753 : Miami, FL +33133 : 25.730678 : -80.2441 : Miami, FL +33134 : 25.753927 : -80.27034 : Miami, FL +33135 : 25.766577 : -80.23576 : Miami, FL +33136 : 25.786326 : -80.2029 : Miami, FL +33137 : 25.817325 : -80.19046 : Miami, FL +33138 : 25.853184 : -80.18622 : Miami, FL +33139 : 25.784276 : -80.14126 : Miami Beach, FL +33140 : 25.814225 : -80.13085 : Miami Beach, FL +33141 : 25.858573 : -80.12973 : Miami Beach, FL +33142 : 25.812625 : -80.2369 : Miami, FL +33143 : 25.702929 : -80.29642 : Miami, FL +33144 : 25.76226 : -80.30839 : Miami, FL +33145 : 25.753177 : -80.23327 : Miami, FL +33146 : 25.720728 : -80.27255 : Miami, FL +33147 : 25.850124 : -80.23773 : Miami, FL +33148 : 25.558428 : -80.458168 : Miami, FL +33149 : 25.700966 : -80.16195 : Key Biscayne, FL +33150 : 25.851974 : -80.20566 : Miami, FL +33151 : 25.832074 : -80.20942 : Miami, FL +33152 : 25.795476 : -80.312873 : Miami, FL +33153 : 25.865523 : -80.193619 : Miami, FL +33154 : 25.881391 : -80.1276 : Miami, FL +33155 : 25.739011 : -80.30685 : Miami, FL +33156 : 25.66558 : -80.30688 : Miami, FL +33157 : 25.606583 : -80.34859 : Miami, FL +33158 : 25.637132 : -80.31641 : Miami, FL +33159 : 25.558428 : -80.458168 : Miami, FL +33160 : 25.941535 : -80.13861 : North Miami Beach, FL +33161 : 25.893372 : -80.18164 : Miami, FL +33162 : 25.929571 : -80.17839 : Miami, FL +33163 : 25.94497 : -80.21452 : Miami, FL +33164 : 25.558428 : -80.458168 : Miami, FL +33165 : 25.734828 : -80.3583 : Miami, FL +33166 : 25.824725 : -80.30476 : Miami, FL +33167 : 25.885739 : -80.23264 : Miami, FL +33168 : 25.892185 : -80.21032 : Miami, FL +33169 : 25.94267 : -80.21276 : Miami, FL +33170 : 25.559785 : -80.41664 : Miami, FL +33172 : 25.786634 : -80.36151 : Miami, FL +33173 : 25.702429 : -80.36184 : Miami, FL +33174 : 25.763044 : -80.35919 : Miami, FL +33175 : 25.733204 : -80.41197 : Miami, FL +33176 : 25.653431 : -80.35999 : Miami, FL +33177 : 25.595983 : -80.40234 : Miami, FL +33178 : 25.837696 : -80.36947 : Miami, FL +33179 : 25.95872 : -80.17941 : Miami, FL +33180 : 25.962069 : -80.14465 : Miami, FL +33181 : 25.897372 : -80.16048 : Miami, FL +33182 : 25.781127 : -80.40467 : Miami, FL +33183 : 25.699968 : -80.40811 : Miami, FL +33184 : 25.759184 : -80.40773 : Miami, FL +33185 : 25.723173 : -80.43995 : Miami, FL +33186 : 25.662292 : -80.40947 : Miami, FL +33187 : 25.596234 : -80.4765 : Miami, FL +33188 : 25.558428 : -80.458168 : Miami, FL +33189 : 25.574834 : -80.3467 : Miami, FL +33190 : 25.56071 : -80.3494 : Miami, FL +33192 : 25.558428 : -80.458168 : Miami, FL +33193 : 25.70028 : -80.44721 : Miami, FL +33194 : 25.745549 : -80.4651 : Miami, FL +33195 : 25.772876 : -80.187019 : Miami, FL +33196 : 25.650232 : -80.45925 : Miami, FL +33197 : 25.558428 : -80.458168 : Miami, FL +33199 : 25.558428 : -80.458168 : Miami, FL +33201 : 26.013768 : -80.206869 : Hollywood, FL +33231 : 25.558428 : -80.458168 : Miami, FL +33233 : 25.558428 : -80.458168 : Miami, FL +33234 : 25.558428 : -80.458168 : Miami, FL +33238 : 25.558428 : -80.458168 : Miami, FL +33239 : 25.558428 : -80.458168 : Miami Beach, FL +33242 : 25.558428 : -80.458168 : Miami, FL +33243 : 25.558428 : -80.458168 : Miami, FL +33245 : 25.558428 : -80.458168 : Miami, FL +33247 : 25.558428 : -80.458168 : Miami, FL +33255 : 25.558428 : -80.458168 : Miami, FL +33256 : 25.558428 : -80.458168 : Miami, FL +33257 : 25.558428 : -80.458168 : Miami, FL +33261 : 25.558428 : -80.458168 : Miami, FL +33265 : 25.558428 : -80.458168 : Miami, FL +33266 : 25.558428 : -80.458168 : Miami, FL +33269 : 25.558428 : -80.458168 : Miami, FL +33280 : 25.558428 : -80.458168 : Miami, FL +33283 : 25.558428 : -80.458168 : Miami, FL +33296 : 25.558428 : -80.458168 : Miami, FL +33299 : 25.558428 : -80.458168 : Miami, FL +33301 : 26.121114 : -80.13187 : Fort Lauderdale, FL +33302 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33303 : 26.196911 : -80.095165 : Fort Lauderdale, FL +33304 : 26.137693 : -80.12646 : Fort Lauderdale, FL +33305 : 26.153728 : -80.12606 : Fort Lauderdale, FL +33306 : 26.165212 : -80.11379 : Fort Lauderdale, FL +33307 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33308 : 26.191111 : -80.10846 : Fort Lauderdale, FL +33309 : 26.185461 : -80.17218 : Fort Lauderdale, FL +33310 : 26.144263 : -80.206919 : Fort Lauderdale, FL +33311 : 26.13883 : -80.16865 : Fort Lauderdale, FL +33312 : 26.094665 : -80.17987 : Fort Lauderdale, FL +33313 : 26.148613 : -80.22446 : Fort Lauderdale, FL +33314 : 26.067966 : -80.22016 : Fort Lauderdale, FL +33315 : 26.094385 : -80.15422 : Fort Lauderdale, FL +33316 : 26.101114 : -80.12931 : Fort Lauderdale, FL +33317 : 26.113664 : -80.22376 : Fort Lauderdale, FL +33318 : 26.11842 : -80.251988 : Fort Lauderdale, FL +33319 : 26.183628 : -80.22122 : Fort Lauderdale, FL +33320 : 26.162462 : -80.25822 : Fort Lauderdale, FL +33321 : 26.211122 : -80.2631 : Fort Lauderdale, FL +33322 : 26.150863 : -80.27284 : Fort Lauderdale, FL +33323 : 26.156854 : -80.31408 : Fort Lauderdale, FL +33324 : 26.110631 : -80.27469 : Fort Lauderdale, FL +33325 : 26.112924 : -80.32097 : Fort Lauderdale, FL +33326 : 26.112366 : -80.37697 : Weston, FL +33327 : 26.120134 : -80.41441 : Weston, FL +33328 : 26.062016 : -80.27202 : Fort Lauderdale, FL +33329 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33330 : 26.05479 : -80.31581 : Fort Lauderdale, FL +33331 : 26.056111 : -80.36373 : Fort Lauderdale, FL +33332 : 26.049367 : -80.40885 : Fort Lauderdale, FL +33334 : 26.182161 : -80.13341 : Fort Lauderdale, FL +33335 : 26.089215 : -80.335973 : Fort Lauderdale, FL +33337 : 26.129013 : -80.260071 : Fort Lauderdale, FL +33338 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33339 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33340 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33345 : 26.165424 : -80.29589 : Fort Lauderdale, FL +33346 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33348 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33349 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33351 : 26.179495 : -80.27183 : Fort Lauderdale, FL +33352 : 26.094025 : -80.273961 : Pine Island Ridge, FL +33355 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33359 : 26.145724 : -80.448254 : Fort Lauderdale, FL +33380 : 28.017179 : -81.754949 : Winter Haven, FL +33388 : 26.120714 : -80.25326 : Fort Lauderdale, FL +33394 : 26.121364 : -80.13916 : Fort Lauderdale, FL +33401 : 26.711192 : -80.06043 : West Palm Beach, FL +33402 : 26.645895 : -80.430269 : West Palm Beach, FL +33403 : 26.802139 : -80.07032 : West Palm Beach, FL +33404 : 26.782114 : -80.06528 : West Palm Beach, FL +33405 : 26.669744 : -80.0585 : West Palm Beach, FL +33406 : 26.659294 : -80.09118 : West Palm Beach, FL +33407 : 26.750991 : -80.07296 : West Palm Beach, FL +33408 : 26.840684 : -80.06312 : North Palm Beach, FL +33409 : 26.709575 : -80.09443 : West Palm Beach, FL +33410 : 26.839588 : -80.08824 : West Palm Beach, FL +33411 : 26.719596 : -80.22077 : West Palm Beach, FL +33412 : 26.795367 : -80.24044 : West Palm Beach, FL +33413 : 26.668944 : -80.14721 : West Palm Beach, FL +33414 : 26.65671 : -80.25377 : West Palm Beach, FL +33415 : 26.659344 : -80.12704 : West Palm Beach, FL +33416 : 26.665394 : -80.092864 : West Palm Beach, FL +33417 : 26.715596 : -80.1262 : West Palm Beach, FL +33418 : 26.877984 : -80.16052 : West Palm Beach, FL +33419 : 26.645895 : -80.430269 : West Palm Beach, FL +33420 : 26.645895 : -80.430269 : West Palm Beach, FL +33421 : 26.645895 : -80.430269 : West Palm Beach, FL +33422 : 26.645895 : -80.430269 : West Palm Beach, FL +33424 : 26.645895 : -80.430269 : Boynton Beach, FL +33425 : 26.645895 : -80.430269 : Boynton Beach, FL +33426 : 26.529581 : -80.08226 : Boynton Beach, FL +33427 : 26.375954 : -80.10717 : Boca Raton, FL +33428 : 26.348354 : -80.21841 : Boca Raton, FL +33429 : 26.645895 : -80.430269 : Boca Raton, FL +33430 : 26.685125 : -80.66279 : Belle Glade, FL +33431 : 26.381304 : -80.09623 : Boca Raton, FL +33432 : 26.347305 : -80.08552 : Boca Raton, FL +33433 : 26.347711 : -80.15648 : Boca Raton, FL +33434 : 26.382408 : -80.16699 : Boca Raton, FL +33435 : 26.524549 : -80.06321 : Boynton Beach, FL +33436 : 26.530144 : -80.10461 : Boynton Beach, FL +33437 : 26.522249 : -80.15031 : Boynton Beach, FL +33438 : 26.900359 : -80.60368 : Canal Point, FL +33439 : 26.645895 : -80.430269 : Bryant, FL +33440 : 26.714088 : -80.9973 : Clewiston, FL +33441 : 26.309657 : -80.09541 : Deerfield Beach, FL +33442 : 26.309757 : -80.14548 : Deerfield Beach, FL +33443 : 26.145724 : -80.448254 : Deerfield Beach, FL +33444 : 26.460951 : -80.07891 : Delray Beach, FL +33445 : 26.459571 : -80.10582 : Delray Beach, FL +33446 : 26.452473 : -80.16509 : Delray Beach, FL +33447 : 26.645895 : -80.430269 : Delray Beach, FL +33448 : 26.645895 : -80.430269 : Delray Beach, FL +33452 : 26.590609 : -80.052663 : Lantana, FL +33454 : 26.645895 : -80.430269 : Lake Worth, FL +33455 : 27.076516 : -80.14697 : Hobe Sound, FL +33458 : 26.928035 : -80.11803 : Jupiter, FL +33459 : 26.645895 : -80.430269 : Lake Harbor, FL +33460 : 26.619695 : -80.05676 : Lake Worth, FL +33461 : 26.621145 : -80.08976 : Lake Worth, FL +33462 : 26.579714 : -80.07437 : Lake Worth, FL +33463 : 26.609226 : -80.12874 : Lake Worth, FL +33464 : 26.645895 : -80.430269 : Lake Worth, FL +33465 : 26.628272 : -80.132569 : Lake Worth, FL +33466 : 26.645895 : -80.430269 : Lake Worth, FL +33467 : 26.601937 : -80.17921 : Lake Worth, FL +33468 : 26.645895 : -80.430269 : Jupiter, FL +33469 : 26.968795 : -80.0994 : Jupiter, FL +33470 : 26.751094 : -80.30156 : Loxahatchee, FL +33471 : 26.844989 : -81.1105 : Moore Haven, FL +33474 : 26.645895 : -80.430269 : Boynton Beach, FL +33475 : 27.110182 : -80.454196 : Hobe Sound, FL +33476 : 26.817786 : -80.65425 : Pahokee, FL +33477 : 26.924709 : -80.08119 : Jupiter, FL +33478 : 26.925835 : -80.21526 : Jupiter, FL +33480 : 26.715067 : -80.03937 : Palm Beach, FL +33481 : 26.645895 : -80.430269 : Boca Raton, FL +33482 : 26.645895 : -80.430269 : Delray Beach, FL +33483 : 26.465051 : -80.06517 : Delray Beach, FL +33484 : 26.458152 : -80.1356 : Delray Beach, FL +33486 : 26.344955 : -80.11226 : Boca Raton, FL +33487 : 26.409953 : -80.08841 : Boca Raton, FL +33488 : 26.645895 : -80.430269 : Boca Raton, FL +33493 : 26.663097 : -80.71827 : South Bay, FL +33496 : 26.404353 : -80.1627 : Boca Raton, FL +33497 : 26.645895 : -80.430269 : Boca Raton, FL +33498 : 26.391346 : -80.21824 : Boca Raton, FL +33499 : 26.645895 : -80.430269 : Boca Raton, FL +33501 : 27.929731 : -82.315058 : Brandon, FL +33503 : 27.764761 : -82.273409 : Balm, FL +33509 : 28.119579 : -82.451959 : Brandon, FL +33510 : 27.953801 : -82.29748 : Brandon, FL +33511 : 27.911201 : -82.2948 : Brandon, FL +33513 : 28.663132 : -82.14042 : Bushnell, FL +33514 : 28.654412 : -81.98278 : Center Hill, FL +33515 : 26.092115 : -80.163418 : Fort Lauderdale, FL +33521 : 28.805331 : -82.07371 : Coleman, FL +33523 : 28.433019 : -82.19736 : Dade City, FL +33524 : 28.182209 : -82.152341 : Crystal Springs, FL +33525 : 28.346914 : -82.20293 : Dade City, FL +33526 : 28.310134 : -82.247783 : Dade City, FL +33527 : 27.98706 : -82.21357 : Dover, FL +33528 : 28.801617 : -82.133869 : Lake Panasoffkee, FL +33530 : 27.906823 : -82.176749 : Durant, FL +33534 : 27.837894 : -82.37407 : Gibsonton, FL +33537 : 28.324796 : -82.481766 : Lacoochee, FL +33538 : 28.835261 : -82.14818 : Lake Panasoffkee, FL +33539 : 28.21305 : -82.16568 : Zephyrhills, FL +33540 : 28.235313 : -82.16868 : Zephyrhills, FL +33541 : 28.234624 : -82.20022 : Zephyrhills, FL +33542 : 28.238489 : -82.181913 : Zephyrhills, FL +33543 : 28.187356 : -82.31601 : Zephyrhills, FL +33544 : 28.26658 : -82.34222 : Zephyrhills, FL +33547 : 27.788498 : -82.1508 : Lithia, FL +33548 : 27.871964 : -82.438841 : Lutz, FL +33549 : 28.142694 : -82.46629 : Lutz, FL +33550 : 27.871964 : -82.438841 : Mango, FL +33556 : 28.143377 : -82.59054 : Odessa, FL +33558 : 28.157704 : -82.514615 : Land O' Lakes, FL +33559 : 28.156536 : -82.415275 : Land O' Lakes, FL +33563 : 28.016971 : -82.128584 : Plant City, FL +33564 : 28.029627 : -82.134741 : Plant City, FL +33565 : 28.065552 : -82.14506 : Plant City, FL +33566 : 28.013755 : -82.11685 : Plant City, FL +33567 : 27.982949 : -82.14539 : Plant City, FL +33568 : 27.871964 : -82.438841 : Riverview, FL +33569 : 27.847802 : -82.31799 : Riverview, FL +33570 : 27.703801 : -82.44385 : Ruskin, FL +33571 : 27.720111 : -82.453041 : Sun City Center, FL +33572 : 27.771988 : -82.41078 : Apollo Beach, FL +33573 : 27.713353 : -82.35965 : Sun City Center, FL +33574 : 28.334752 : -82.269323 : Saint Leo, FL +33576 : 28.331979 : -82.28877 : San Antonio, FL +33578 : 28.331186 : -82.252917 : St. Leo, FL +33583 : 27.871964 : -82.438841 : Seffner, FL +33584 : 27.987925 : -82.28819 : Seffner, FL +33585 : 28.754347 : -82.06126 : Sumterville, FL +33586 : 27.871964 : -82.438841 : Sun City, FL +33587 : 27.871964 : -82.438841 : Sydney, FL +33592 : 28.077843 : -82.29837 : Thonotosassa, FL +33593 : 28.324796 : -82.481766 : Trilby, FL +33594 : 27.911226 : -82.24508 : Valrico, FL +33595 : 27.871964 : -82.438841 : Valrico, FL +33597 : 28.568393 : -82.15053 : Webster, FL +33598 : 27.693924 : -82.32758 : Wimauma, FL +33599 : 26.871443 : -82.007115 : Punta Gorda, FL +33601 : 27.996097 : -82.582035 : Tampa, FL +33602 : 27.956149 : -82.45723 : Tampa, FL +33603 : 27.984198 : -82.4627 : Tampa, FL +33604 : 28.016846 : -82.4566 : Tampa, FL +33605 : 27.963849 : -82.43193 : Tampa, FL +33606 : 27.936799 : -82.46911 : Tampa, FL +33607 : 27.963798 : -82.49537 : Tampa, FL +33608 : 27.84343 : -82.488413 : Tampa, FL +33609 : 27.943549 : -82.50656 : Tampa, FL +33610 : 27.993498 : -82.40914 : Tampa, FL +33611 : 27.891151 : -82.50581 : Tampa, FL +33612 : 28.048595 : -82.45171 : Tampa, FL +33613 : 28.077994 : -82.44989 : Tampa, FL +33614 : 28.006247 : -82.50632 : Tampa, FL +33615 : 28.005446 : -82.57776 : Tampa, FL +33616 : 27.869251 : -82.52226 : Tampa, FL +33617 : 28.039096 : -82.39371 : Tampa, FL +33618 : 28.071502 : -82.49392 : Tampa, FL +33619 : 27.94605 : -82.37525 : Tampa, FL +33620 : 28.062961 : -82.41314 : Tampa, FL +33621 : 27.855078 : -82.52464 : Tampa, FL +33622 : 27.871964 : -82.438841 : Tampa, FL +33623 : 27.871964 : -82.438841 : Tampa, FL +33624 : 28.07506 : -82.52355 : Tampa, FL +33625 : 28.069755 : -82.55734 : Tampa, FL +33626 : 28.052799 : -82.61135 : Tampa, FL +33629 : 27.92085 : -82.50916 : Tampa, FL +33630 : 27.871964 : -82.438841 : Tampa, FL +33631 : 27.871964 : -82.438841 : Tampa, FL +33633 : 27.871964 : -82.438841 : Tampa, FL +33634 : 28.005497 : -82.54936 : Tampa, FL +33635 : 28.031088 : -82.60593 : Tampa, FL +33637 : 28.038324 : -82.36289 : Tampa, FL +33643 : 28.130402 : -82.337751 : Tampa, FL +33647 : 28.127973 : -82.36123 : Tampa, FL +33650 : 27.871964 : -82.438841 : Tampa, FL +33651 : 27.871964 : -82.438841 : Tampa, FL +33655 : 27.871964 : -82.438841 : Tampa, FL +33659 : 27.894362 : -82.338911 : Palm River-Clair Mel, FL +33660 : 27.871964 : -82.438841 : Tampa, FL +33661 : 27.871964 : -82.438841 : Tampa, FL +33662 : 27.871964 : -82.438841 : Tampa, FL +33663 : 27.871964 : -82.438841 : Tampa, FL +33664 : 27.871964 : -82.438841 : Tampa, FL +33672 : 27.871964 : -82.438841 : Tampa, FL +33673 : 27.871964 : -82.438841 : Tampa, FL +33674 : 27.871964 : -82.438841 : Tampa, FL +33675 : 27.871964 : -82.438841 : Tampa, FL +33677 : 27.871964 : -82.438841 : Tampa, FL +33679 : 27.871964 : -82.438841 : Tampa, FL +33680 : 27.871964 : -82.438841 : Tampa, FL +33681 : 27.871964 : -82.438841 : Tampa, FL +33682 : 27.871964 : -82.438841 : Tampa, FL +33684 : 27.871964 : -82.438841 : Tampa, FL +33685 : 27.871964 : -82.438841 : Tampa, FL +33686 : 27.871964 : -82.438841 : Tampa, FL +33687 : 27.871964 : -82.438841 : Tampa, FL +33688 : 27.871964 : -82.438841 : Tampa, FL +33689 : 27.871964 : -82.438841 : Tampa, FL +33690 : 27.871964 : -82.438841 : Tampa, FL +33694 : 27.871964 : -82.438841 : Tampa, FL +33697 : 27.871964 : -82.438841 : Tampa, FL +33701 : 27.770955 : -82.63931 : Saint Petersburg, FL +33702 : 27.843052 : -82.6449 : Saint Petersburg, FL +33703 : 27.816977 : -82.62795 : Saint Petersburg, FL +33704 : 27.796454 : -82.63751 : Saint Petersburg, FL +33705 : 27.741306 : -82.64349 : Saint Petersburg, FL +33706 : 27.741505 : -82.75179 : Saint Petersburg, FL +33707 : 27.756505 : -82.71764 : Saint Petersburg, FL +33708 : 27.811626 : -82.79321 : Saint Petersburg, FL +33709 : 27.815953 : -82.72865 : Saint Petersburg, FL +33710 : 27.788637 : -82.72244 : Saint Petersburg, FL +33711 : 27.750655 : -82.6882 : Saint Petersburg, FL +33712 : 27.745355 : -82.66572 : Saint Petersburg, FL +33713 : 27.787904 : -82.68039 : Saint Petersburg, FL +33714 : 27.817323 : -82.67612 : Saint Petersburg, FL +33715 : 27.68301 : -82.72096 : Saint Petersburg, FL +33716 : 27.874324 : -82.64515 : Saint Petersburg, FL +33728 : 27.891809 : -82.724763 : Saint Petersburg, FL +33729 : 27.881909 : -82.664359 : Saint Petersburg, FL +33730 : 27.891809 : -82.724763 : Saint Petersburg, FL +33731 : 27.891809 : -82.724763 : Saint Petersburg, FL +33732 : 27.891809 : -82.724763 : Saint Petersburg, FL +33733 : 27.925755 : -82.75211 : Saint Petersburg, FL +33734 : 27.891809 : -82.724763 : Saint Petersburg, FL +33736 : 27.891809 : -82.724763 : Saint Petersburg, FL +33737 : 27.891809 : -82.724763 : Saint Petersburg, FL +33738 : 27.891809 : -82.724763 : Saint Petersburg, FL +33740 : 27.891809 : -82.724763 : Saint Petersburg, FL +33741 : 27.891809 : -82.724763 : Saint Petersburg, FL +33742 : 27.891809 : -82.724763 : Saint Petersburg, FL +33743 : 27.891809 : -82.724763 : Saint Petersburg, FL +33744 : 27.891809 : -82.724763 : Bay Pines, FL +33747 : 27.891809 : -82.724763 : Saint Petersburg, FL +33755 : 27.979114 : -82.78166 : Clearwater, FL +33756 : 27.944631 : -82.78702 : Clearwater, FL +33757 : 27.891809 : -82.724763 : Clearwater, FL +33758 : 27.891809 : -82.724763 : Clearwater, FL +33759 : 27.980297 : -82.71645 : Clearwater, FL +33760 : 27.90802 : -82.71365 : Clearwater, FL +33761 : 28.032827 : -82.72596 : Clearwater, FL +33762 : 27.883118 : -82.68389 : Clearwater, FL +33763 : 28.001394 : -82.74549 : Clearwater, FL +33764 : 27.932797 : -82.74115 : Clearwater, FL +33765 : 27.971362 : -82.74482 : Clearwater, FL +33766 : 27.891809 : -82.724763 : Clearwater, FL +33767 : 27.982722 : -82.82504 : Clearwater Beach, FL +33769 : 27.891809 : -82.724763 : Clearwater, FL +33770 : 27.916149 : -82.80122 : Largo, FL +33771 : 27.906088 : -82.7553 : Largo, FL +33772 : 27.843349 : -82.79307 : Seminole, FL +33773 : 27.883188 : -82.75633 : Largo, FL +33774 : 27.885283 : -82.82607 : Largo, FL +33775 : 27.891809 : -82.724763 : Seminole, FL +33776 : 27.853151 : -82.82712 : Seminole, FL +33777 : 27.851052 : -82.76111 : Largo, FL +33778 : 27.885344 : -82.79594 : Largo, FL +33779 : 27.839698 : -82.772483 : Largo, FL +33780 : 27.891809 : -82.724763 : Pinellas Park, FL +33781 : 27.839802 : -82.71094 : Pinellas Park, FL +33782 : 27.861925 : -82.71145 : Pinellas Park, FL +33784 : 27.891809 : -82.724763 : Saint Petersburg, FL +33785 : 27.887923 : -82.84703 : Indian Rocks Beach, FL +33786 : 27.924748 : -82.83937 : Belleair Beach, FL +33801 : 28.041198 : -81.92392 : Lakeland, FL +33802 : 28.020992 : -81.985185 : Lakeland, FL +33803 : 28.015032 : -81.95206 : Lakeland, FL +33804 : 28.002553 : -81.61864 : Lakeland, FL +33805 : 28.071564 : -81.95802 : Lakeland, FL +33806 : 28.002553 : -81.61864 : Lakeland, FL +33807 : 28.002553 : -81.61864 : Lakeland, FL +33809 : 28.128494 : -81.95625 : Lakeland, FL +33810 : 28.106787 : -82.01033 : Lakeland, FL +33811 : 27.978316 : -82.00841 : Lakeland, FL +33813 : 27.965469 : -81.92215 : Lakeland, FL +33815 : 28.042948 : -81.9849 : Lakeland, FL +33820 : 28.002553 : -81.61864 : Alturas, FL +33823 : 28.068865 : -81.80267 : Auburndale, FL +33825 : 27.60047 : -81.50932 : Avon Park, FL +33826 : 27.339483 : -81.252872 : Avon Park, FL +33827 : 27.826864 : -81.53291 : Babson Park, FL +33830 : 27.894991 : -81.82638 : Bartow, FL +33831 : 27.955426 : -81.951673 : Bartow, FL +33834 : 27.613064 : -81.93581 : Bowling Green, FL +33835 : 27.710056 : -81.95196 : Bradley, FL +33836 : 28.167211 : -81.631589 : Davenport, FL +33837 : 28.223014 : -81.63131 : Davenport, FL +33838 : 28.021066 : -81.61872 : Dundee, FL +33839 : 27.98038 : -81.75531 : Eagle Lake, FL +33840 : 28.084383 : -81.5415 : Eaton Park, FL +33841 : 27.7437 : -81.79405 : Fort Meade, FL +33843 : 27.757986 : -81.5088 : Frostproof, FL +33844 : 28.101527 : -81.6235 : Haines City, FL +33845 : 28.002553 : -81.61864 : Haines City, FL +33846 : 27.964651 : -81.867153 : Highland City, FL +33847 : 27.815882 : -81.82529 : Homeland, FL +33848 : 28.26074 : -81.50669 : Intercession City, FL +33849 : 28.24625 : -82.06358 : Kathleen, FL +33850 : 28.092512 : -81.72758 : Lake Alfred, FL +33851 : 28.044641 : -81.62373 : Lake Hamilton, FL +33852 : 27.293327 : -81.38206 : Lake Placid, FL +33853 : 27.894622 : -81.52824 : Lake Wales, FL +33854 : 28.002553 : -81.61864 : Fedhaven, FL +33855 : 27.798022 : -81.357154 : Indian Lake Estates, FL +33856 : 27.855686 : -81.430915 : Nalcrest, FL +33857 : 27.397067 : -81.1411 : Lorida, FL +33858 : 28.050121 : -81.505211 : Loughman, FL +33859 : 27.885359 : -81.522998 : Lake Wales, FL +33860 : 27.884256 : -81.97697 : Mulberry, FL +33862 : 27.244668 : -81.288424 : Lake Placid, FL +33863 : 28.002553 : -81.61864 : Nichols, FL +33865 : 27.432764 : -81.93703 : Ona, FL +33867 : 27.768567 : -81.19664 : River Ranch, FL +33868 : 28.180035 : -81.81863 : Polk City, FL +33870 : 27.483817 : -81.42131 : Sebring, FL +33871 : 27.485803 : -81.407884 : Sebring, FL +33872 : 27.475288 : -81.48535 : Sebring, FL +33873 : 27.541676 : -81.8127 : Wauchula, FL +33875 : 27.430819 : -81.463297 : Sebring, FL +33876 : 27.436826 : -81.35515 : Sebring, FL +33877 : 27.982891 : -81.61743 : Waverly, FL +33880 : 27.997276 : -81.74554 : Winter Haven, FL +33881 : 28.051985 : -81.72457 : Winter Haven, FL +33882 : 28.029402 : -81.732139 : Winter Haven, FL +33883 : 28.002553 : -81.61864 : Winter Haven, FL +33884 : 27.997387 : -81.68256 : Winter Haven, FL +33885 : 28.002553 : -81.61864 : Winter Haven, FL +33888 : 28.023115 : -81.723417 : Winter Haven, FL +33890 : 27.485551 : -81.72528 : Zolfo Springs, FL +33896 : 28.252198 : -81.607612 : Loughman, FL +33897 : 28.310679 : -81.670264 : Citrus Ridge, FL +33898 : 27.918187 : -81.493521 : Highland Park, FL +33901 : 26.62365 : -81.8727 : Fort Myers, FL +33902 : 26.623908 : -81.883648 : Fort Myers, FL +33903 : 26.698526 : -81.9178 : North Fort Myers, FL +33904 : 26.582185 : -81.95528 : Cape Coral, FL +33905 : 26.680407 : -81.74812 : Fort Myers, FL +33906 : 26.552895 : -81.94861 : Fort Myers, FL +33907 : 26.566053 : -81.87009 : Fort Myers, FL +33908 : 26.502677 : -81.93052 : Fort Myers, FL +33909 : 26.687462 : -81.94968 : Cape Coral, FL +33910 : 26.552895 : -81.94861 : Cape Coral, FL +33911 : 26.596286 : -81.882373 : Fort Myers, FL +33912 : 26.501582 : -81.82841 : Fort Myers, FL +33913 : 26.542097 : -81.69984 : Fort Myers, FL +33914 : 26.579862 : -82.00227 : Cape Coral, FL +33915 : 26.659942 : -81.893427 : Cape Coral, FL +33916 : 26.6435 : -81.84418 : Fort Myers, FL +33917 : 26.711647 : -81.865 : North Fort Myers, FL +33918 : 26.71613 : -81.607007 : North Fort Myers, FL +33919 : 26.555958 : -81.90174 : Fort Myers, FL +33920 : 26.711362 : -81.61684 : Alva, FL +33921 : 26.759514 : -82.26351 : Boca Grande, FL +33922 : 26.6636 : -82.14112 : Bokeelia, FL +33924 : 26.519415 : -82.19101 : Captiva, FL +33927 : 26.901981 : -82.000005 : Punta Gorda, FL +33928 : 26.425671 : -81.80196 : Estero, FL +33930 : 26.581172 : -81.46202 : Felda, FL +33931 : 26.446463 : -81.93269 : Fort Myers Beach, FL +33932 : 26.552895 : -81.94861 : Fort Myers Beach, FL +33935 : 26.760476 : -81.43029 : Labelle, FL +33936 : 26.588982 : -81.61163 : Lehigh Acres, FL +33938 : 26.901981 : -82.000005 : Murdock, FL +33944 : 26.95925 : -81.31568 : Palmdale, FL +33945 : 26.59951 : -82.22166 : Pineland, FL +33946 : 26.849473 : -82.28661 : Placida, FL +33947 : 26.894448 : -82.26125 : Rotonda West, FL +33948 : 26.984486 : -82.14859 : Port Charlotte, FL +33949 : 26.993904 : -82.098418 : Port Charlotte, FL +33950 : 26.914393 : -82.04106 : Punta Gorda, FL +33951 : 26.970756 : -81.984504 : Punta Gorda, FL +33952 : 26.993876 : -82.09821 : Port Charlotte, FL +33953 : 27.012758 : -82.2112 : Port Charlotte, FL +33954 : 27.02442 : -82.12225 : Port Charlotte, FL +33955 : 26.837879 : -82.00403 : Punta Gorda, FL +33956 : 26.536435 : -82.0915 : Saint James City, FL +33957 : 26.439608 : -82.08045 : Sanibel, FL +33960 : 27.052583 : -81.39628 : Venus, FL +33961 : 26.629875 : -81.857683 : Fort Myers, FL +33965 : 26.552895 : -81.94861 : Fort Myers, FL +33970 : 26.564718 : -81.620778 : Lehigh Acres, FL +33971 : 26.60599 : -81.70296 : Lehigh Acres, FL +33972 : 26.634332 : -81.59391 : Lehigh Acres, FL +33975 : 26.742327 : -81.27863 : Labelle, FL +33980 : 26.983094 : -82.05972 : Port Charlotte, FL +33981 : 26.922089 : -82.23092 : Port Charlotte, FL +33982 : 26.958821 : -81.95134 : Punta Gorda, FL +33983 : 26.999486 : -82.00964 : Punta Gorda, FL +33990 : 26.63075 : -81.95251 : Cape Coral, FL +33991 : 26.634338 : -82.00674 : Cape Coral, FL +33993 : 26.681122 : -82.01319 : Cape Coral, FL +33994 : 26.552895 : -81.94861 : Fort Myers, FL +34101 : 25.855534 : -81.38719 : Naples, FL +34102 : 26.142938 : -81.79852 : Naples, FL +34103 : 26.191117 : -81.80333 : Naples, FL +34104 : 26.15091 : -81.7477 : Naples, FL +34105 : 26.187767 : -81.76829 : Naples, FL +34106 : 26.14326 : -81.389124 : Naples, FL +34107 : 26.14326 : -81.389124 : Vanderbilt Beach, FL +34108 : 26.252711 : -81.80825 : Naples, FL +34109 : 26.240637 : -81.76663 : Naples, FL +34110 : 26.28828 : -81.78726 : Naples, FL +34112 : 26.121546 : -81.75251 : Naples, FL +34113 : 26.067538 : -81.72002 : Naples, FL +34114 : 26.020283 : -81.63094 : Naples, FL +34116 : 26.183424 : -81.70643 : Naples, FL +34117 : 26.1785 : -81.55495 : Naples, FL +34119 : 26.256551 : -81.7186 : Naples, FL +34120 : 26.275676 : -81.59586 : Naples, FL +34133 : 26.552895 : -81.94861 : Bonita Springs, FL +34134 : 26.348608 : -81.83134 : Bonita Springs, FL +34135 : 26.348523 : -81.77391 : Bonita Springs, FL +34136 : 26.552895 : -81.94861 : Bonita Springs, FL +34137 : 26.03569 : -81.46799 : Copeland, FL +34138 : 25.813786 : -81.36291 : Chokoloskee, FL +34139 : 25.856771 : -81.38412 : Everglades City, FL +34140 : 26.14326 : -81.389124 : Goodland, FL +34141 : 25.7265 : -81.20151 : Ochopee, FL +34142 : 26.398248 : -81.39325 : Immokalee, FL +34143 : 26.464183 : -81.504661 : Immokalee, FL +34145 : 25.940112 : -81.71329 : Marco Island, FL +34146 : 26.14326 : -81.389124 : Marco Island, FL +34154 : 25.925446 : -81.644387 : Goodland, FL +34168 : 25.81528 : -81.359902 : Chokoloskee, FL +34201 : 27.400627 : -82.47104 : Bradenton, FL +34202 : 27.434755 : -82.40211 : Bradenton, FL +34203 : 27.448369 : -82.52324 : Bradenton, FL +34204 : 27.427213 : -82.438689 : Bradenton, FL +34205 : 27.485617 : -82.58294 : Bradenton, FL +34206 : 27.427213 : -82.438689 : Bradenton, FL +34207 : 27.438719 : -82.57646 : Bradenton, FL +34208 : 27.486448 : -82.535 : Bradenton, FL +34209 : 27.488866 : -82.62737 : Bradenton, FL +34210 : 27.455543 : -82.63372 : Bradenton, FL +34211 : 27.437698 : -82.372125 : Memphis, FL +34215 : 27.469113 : -82.68765 : Cortez, FL +34216 : 27.530644 : -82.73594 : Anna Maria, FL +34217 : 27.499982 : -82.7129 : Bradenton Beach, FL +34218 : 27.499515 : -82.709871 : Holmes Beach, FL +34219 : 27.574128 : -82.40701 : Parrish, FL +34220 : 27.427213 : -82.438689 : Palmetto, FL +34221 : 27.549314 : -82.55981 : Palmetto, FL +34222 : 27.532098 : -82.5009 : Ellenton, FL +34223 : 26.974858 : -82.3665 : Englewood, FL +34224 : 26.925265 : -82.29693 : Englewood, FL +34228 : 27.396931 : -82.64475 : Longboat Key, FL +34229 : 27.187829 : -82.48539 : Osprey, FL +34230 : 27.335023 : -82.537169 : Sarasota, FL +34231 : 27.267649 : -82.51663 : Sarasota, FL +34232 : 27.321313 : -82.47648 : Sarasota, FL +34233 : 27.285142 : -82.47363 : Sarasota, FL +34234 : 27.365622 : -82.53556 : Sarasota, FL +34235 : 27.365549 : -82.48659 : Sarasota, FL +34236 : 27.333014 : -82.54613 : Sarasota, FL +34237 : 27.336973 : -82.51506 : Sarasota, FL +34238 : 27.240571 : -82.47836 : Sarasota, FL +34239 : 27.310924 : -82.5213 : Sarasota, FL +34240 : 27.33458 : -82.40894 : Sarasota, FL +34241 : 27.272873 : -82.41676 : Sarasota, FL +34242 : 27.275225 : -82.54934 : Sarasota, FL +34243 : 27.407657 : -82.52923 : Sarasota, FL +34250 : 27.575972 : -82.58493 : Terra Ceia, FL +34251 : 27.396045 : -82.23349 : Myakka City, FL +34260 : 27.427213 : -82.438689 : Manasota, FL +34264 : 27.427213 : -82.438689 : Oneco, FL +34265 : 27.186146 : -81.809939 : Arcadia, FL +34266 : 27.201006 : -81.87196 : Arcadia, FL +34267 : 27.186146 : -81.809939 : Fort Ogden, FL +34268 : 27.158612 : -81.88324 : Nocatee, FL +34270 : 27.405429 : -82.543519 : Tallevast, FL +34272 : 27.146963 : -82.425512 : Laurel, FL +34274 : 27.144031 : -82.464468 : Nokomis, FL +34275 : 27.136731 : -82.45241 : Nokomis, FL +34276 : 27.167521 : -82.380967 : Sarasota, FL +34277 : 27.167521 : -82.380967 : Sarasota, FL +34278 : 27.331628 : -82.528488 : Sarasota, FL +34280 : 27.427213 : -82.438689 : Bradenton, FL +34281 : 27.427213 : -82.438689 : Bradenton, FL +34282 : 27.427213 : -82.438689 : Bradenton, FL +34284 : 27.167521 : -82.380967 : Venice, FL +34285 : 27.091783 : -82.44846 : Venice, FL +34286 : 27.072445 : -82.1606 : North Port, FL +34287 : 27.051075 : -82.24417 : North Port, FL +34288 : 27.048707 : -82.127196 : North Port, FL +34289 : 27.08464 : -82.156884 : North Port, FL +34292 : 27.098474 : -82.41481 : Venice, FL +34293 : 27.055013 : -82.3973 : Venice, FL +34295 : 27.085985 : -82.438918 : Englewood, FL +34334 : 26.89679 : -82.317993 : Grove City, FL +34420 : 29.054976 : -82.04255 : Belleview, FL +34421 : 29.240728 : -82.087458 : Belleview, FL +34423 : 28.867027 : -82.572703 : Crystal River, FL +34424 : 28.916441 : -82.608795 : Crystal River, FL +34426 : 28.94159 : -82.503117 : Pine Ridge, FL +34428 : 28.95138 : -82.61213 : Crystal River, FL +34429 : 28.872108 : -82.5961 : Crystal River, FL +34430 : 29.240728 : -82.087458 : Dunnellon, FL +34431 : 29.131665 : -82.49726 : Dunnellon, FL +34432 : 29.060092 : -82.35195 : Dunnellon, FL +34433 : 28.997155 : -82.50053 : Dunnellon, FL +34434 : 28.99409 : -82.45364 : Dunnellon, FL +34436 : 28.751024 : -82.28449 : Floral City, FL +34442 : 28.932925 : -82.39477 : Hernando, FL +34445 : 28.948753 : -82.406476 : Holder, FL +34446 : 28.746912 : -82.53331 : Homosassa, FL +34447 : 28.804911 : -82.574264 : Homosassa Springs, FL +34448 : 28.797979 : -82.5912 : Homosassa, FL +34449 : 29.07664 : -82.68022 : Inglis, FL +34450 : 28.829773 : -82.29019 : Inverness, FL +34451 : 28.803207 : -82.32167 : Inverness, FL +34452 : 28.793722 : -82.35021 : Inverness, FL +34453 : 28.865761 : -82.35982 : Inverness, FL +34460 : 28.859286 : -82.508694 : Lecanto, FL +34461 : 28.848776 : -82.48108 : Lecanto, FL +34464 : 28.859286 : -82.508694 : Beverly Hills, FL +34465 : 28.932403 : -82.47641 : Beverly Hills, FL +34470 : 29.198704 : -82.10556 : Ocala, FL +34471 : 29.171187 : -82.10394 : Ocala, FL +34472 : 29.120287 : -82.02133 : Ocala, FL +34473 : 29.003195 : -82.1899 : Ocala, FL +34474 : 29.166186 : -82.17027 : Ocala, FL +34475 : 29.212886 : -82.15378 : Ocala, FL +34476 : 29.08091 : -82.21004 : Ocala, FL +34477 : 29.240728 : -82.087458 : Ocala, FL +34478 : 29.187178 : -82.112278 : Ocala, FL +34479 : 29.23543 : -82.1107 : Ocala, FL +34480 : 29.12295 : -82.0816 : Ocala, FL +34481 : 29.124611 : -82.32271 : Ocala, FL +34482 : 29.232873 : -82.2522 : Ocala, FL +34483 : 29.240728 : -82.087458 : Ocala, FL +34484 : 28.921705 : -82.07847 : Oxford, FL +34487 : 28.859286 : -82.508694 : Homosassa, FL +34488 : 29.198564 : -81.92095 : Silver Springs, FL +34489 : 29.215153 : -82.097163 : Silver Springs, FL +34491 : 28.991135 : -82.02658 : Summerfield, FL +34492 : 28.99796 : -82.016139 : Summerfield, FL +34498 : 29.031155 : -82.7201 : Yankeetown, FL +34592 : 27.287855 : -80.2978 : Port St. Lucie, FL +34601 : 28.566183 : -82.38002 : Brooksville, FL +34602 : 28.51589 : -82.26576 : Brooksville, FL +34603 : 28.564167 : -82.416515 : Brooksville, FL +34604 : 28.478994 : -82.453508 : Spring Hill, FL +34605 : 28.505896 : -82.422554 : Brooksville, FL +34606 : 28.470236 : -82.59741 : Spring Hill, FL +34607 : 28.516609 : -82.61302 : Spring Hill, FL +34608 : 28.484316 : -82.55181 : Spring Hill, FL +34609 : 28.475662 : -82.50199 : Brooksville, FL +34610 : 28.397791 : -82.53084 : Brooksville, FL +34611 : 28.564167 : -82.416515 : Spring Hill, FL +34613 : 28.555346 : -82.53601 : Brooksville, FL +34614 : 28.632101 : -82.52181 : Brooksville, FL +34636 : 28.65503 : -82.267706 : Istachatta, FL +34639 : 28.233671 : -82.45463 : Land O Lakes, FL +34652 : 28.237582 : -82.72818 : New Port Richey, FL +34653 : 28.248558 : -82.69869 : New Port Richey, FL +34654 : 28.295714 : -82.61782 : New Port Richey, FL +34655 : 28.209833 : -82.66973 : New Port Richey, FL +34656 : 28.324796 : -82.481766 : New Port Richey, FL +34660 : 28.067043 : -82.778424 : Ozona, FL +34661 : 28.643141 : -82.26051 : Nobleton, FL +34667 : 28.372441 : -82.66603 : Hudson, FL +34668 : 28.30073 : -82.69698 : Port Richey, FL +34669 : 28.348507 : -82.61937 : Hudson, FL +34673 : 28.324796 : -82.481766 : Port Richey, FL +34674 : 28.324796 : -82.481766 : Hudson, FL +34677 : 28.042799 : -82.67737 : Oldsmar, FL +34678 : 28.061727 : -82.777757 : Palm Harbor, FL +34679 : 28.429478 : -82.66315 : Aripeka, FL +34680 : 28.324796 : -82.481766 : Elfers, FL +34681 : 28.088443 : -82.77834 : Crystal Beach, FL +34682 : 27.891809 : -82.724763 : Palm Harbor, FL +34683 : 28.076744 : -82.76116 : Palm Harbor, FL +34684 : 28.081325 : -82.72751 : Palm Harbor, FL +34685 : 28.099485 : -82.69532 : Palm Harbor, FL +34688 : 27.891809 : -82.724763 : Tarpon Springs, FL +34689 : 28.149691 : -82.75339 : Tarpon Springs, FL +34690 : 28.190181 : -82.72696 : Holiday, FL +34691 : 28.19006 : -82.75735 : Holiday, FL +34695 : 28.005639 : -82.69511 : Safety Harbor, FL +34697 : 27.891809 : -82.724763 : Dunedin, FL +34698 : 28.025395 : -82.77534 : Dunedin, FL +34703 : 28.718224 : -81.735239 : Astatula, FL +34705 : 28.708139 : -81.73307 : Astatula, FL +34711 : 28.545742 : -81.74805 : Clermont, FL +34712 : 28.811078 : -81.653642 : Clermont, FL +34713 : 28.811078 : -81.653642 : Clermont, FL +34729 : 28.811078 : -81.653642 : Ferndale, FL +34731 : 28.859765 : -81.90184 : Fruitland Park, FL +34734 : 28.543429 : -81.52479 : Gotha, FL +34736 : 28.571677 : -81.86649 : Groveland, FL +34737 : 28.711167 : -81.77955 : Howey In The Hills, FL +34739 : 27.938975 : -81.0951 : Kenansville, FL +34740 : 28.545385 : -81.650667 : Killarney, FL +34741 : 28.301788 : -81.42159 : Kissimmee, FL +34742 : 27.995287 : -81.259332 : Kissimmee, FL +34743 : 28.325715 : -81.35408 : Kissimmee, FL +34744 : 28.308979 : -81.37594 : Kissimmee, FL +34745 : 27.995287 : -81.259332 : Kissimmee, FL +34746 : 28.287883 : -81.46862 : Kissimmee, FL +34747 : 28.326187 : -81.58897 : Kissimmee, FL +34748 : 28.797245 : -81.88466 : Leesburg, FL +34749 : 28.811078 : -81.653642 : Leesburg, FL +34753 : 28.583191 : -81.89038 : Mascotte, FL +34755 : 28.578234 : -81.831883 : Minneola, FL +34756 : 28.597126 : -81.67579 : Montverde, FL +34758 : 28.178192 : -81.48731 : Kissimmee, FL +34759 : 28.094144 : -81.48395 : Kissimmee, FL +34760 : 28.555328 : -81.63104 : Oakland, FL +34761 : 28.574628 : -81.52946 : Ocoee, FL +34762 : 28.735088 : -81.91035 : Okahumpka, FL +34769 : 28.24934 : -81.28749 : Saint Cloud, FL +34770 : 27.995287 : -81.259332 : Saint Cloud, FL +34771 : 28.271939 : -81.19645 : Saint Cloud, FL +34772 : 28.198441 : -81.27246 : Saint Cloud, FL +34773 : 28.160376 : -81.00041 : Saint Cloud, FL +34777 : 28.541579 : -81.605846 : Winter Garden, FL +34778 : 28.566338 : -81.260818 : Winter Garden, FL +34785 : 28.852564 : -82.0321 : Wildwood, FL +34786 : 28.495982 : -81.5362 : Windermere, FL +34787 : 28.536794 : -81.59344 : Winter Garden, FL +34788 : 28.857425 : -81.7845 : Leesburg, FL +34789 : 28.811078 : -81.653642 : Leesburg, FL +34797 : 28.744182 : -81.81859 : Yalaha, FL +34801 : 28.566148 : -82.371747 : Brooksville, FL +34837 : 28.368679 : -81.423542 : Hunters Creek, FL +34869 : 28.126307 : -82.766173 : Tarpon Springs, FL +34876 : 28.505419 : -81.571248 : Lake Butter, FL +34924 : 27.227002 : -80.829442 : Okeechobee, FL +34945 : 27.431607 : -80.4915 : Fort Pierce, FL +34946 : 27.485272 : -80.35243 : Fort Pierce, FL +34947 : 27.448688 : -80.36247 : Fort Pierce, FL +34948 : 27.382196 : -80.409024 : Fort Pierce, FL +34949 : 27.472857 : -80.29901 : Fort Pierce, FL +34950 : 27.448016 : -80.33644 : Fort Pierce, FL +34951 : 27.53831 : -80.40526 : Fort Pierce, FL +34952 : 27.291694 : -80.29691 : Port Saint Lucie, FL +34953 : 27.246754 : -80.38145 : Port Saint Lucie, FL +34954 : 27.382196 : -80.409024 : Fort Pierce, FL +34956 : 27.049788 : -80.48057 : Indiantown, FL +34957 : 27.248445 : -80.23277 : Jensen Beach, FL +34958 : 27.242402 : -80.224613 : Jensen Beach, FL +34972 : 27.39171 : -80.87555 : Okeechobee, FL +34973 : 27.297631 : -80.802656 : Okeechobee, FL +34974 : 27.1944 : -80.84644 : Okeechobee, FL +34979 : 27.382196 : -80.409024 : Fort Pierce, FL +34981 : 27.410069 : -80.36327 : Fort Pierce, FL +34982 : 27.393097 : -80.3279 : Fort Pierce, FL +34983 : 27.312471 : -80.34907 : Port Saint Lucie, FL +34984 : 27.273272 : -80.34727 : Port Saint Lucie, FL +34985 : 27.382196 : -80.409024 : Port Saint Lucie, FL +34986 : 27.341158 : -80.39786 : Port Saint Lucie, FL +34987 : 27.273586 : -80.46447 : Port Saint Lucie, FL +34988 : 27.386818 : -80.503746 : Port Saint Lucie, FL +34990 : 27.163485 : -80.31267 : Palm City, FL +34991 : 27.110182 : -80.454196 : Palm City, FL +34992 : 27.110182 : -80.454196 : Port Salerno, FL +34994 : 27.195291 : -80.25225 : Stuart, FL +34995 : 27.17537 : -80.241512 : Stuart, FL +34996 : 27.195927 : -80.21143 : Stuart, FL +34997 : 27.136003 : -80.21686 : Stuart, FL +35004 : 33.606379 : -86.50249 : Moody, AL +35005 : 33.592585 : -86.95969 : Adamsville, AL +35006 : 33.451714 : -87.23957 : Adger, AL +35007 : 33.232422 : -86.80871 : Alabaster, AL +35010 : 32.903432 : -85.92669 : Alexander City, AL +35011 : 32.990191 : -85.958001 : Alexander City, AL +35013 : 33.922162 : -86.449262 : Allgood, AL +35014 : 33.35596 : -86.2772 : Alpine, AL +35015 : 33.544622 : -86.929208 : Alton, AL +35016 : 34.323715 : -86.49278 : Arab, AL +35019 : 34.29254 : -86.63505 : Baileyton, AL +35020 : 33.405559 : -86.95141 : Bessemer, AL +35021 : 33.544622 : -86.929208 : Bessemer, AL +35022 : 33.346817 : -86.95252 : Bessemer, AL +35023 : 33.443039 : -87.0193 : Bessemer, AL +35026 : 32.859262 : -86.638819 : Clanton, AL +35031 : 34.111425 : -86.5338 : Blountsville, AL +35032 : 33.256886 : -86.338572 : Bon Air, AL +35033 : 33.952939 : -87.02889 : Bremen, AL +35034 : 32.915182 : -87.21488 : Brent, AL +35035 : 33.041166 : -86.95117 : Brierfield, AL +35036 : 33.63815 : -86.91956 : Brookside, AL +35038 : 33.804411 : -87.202136 : Burnwell, AL +35039 : 33.635848 : -86.918818 : Brookside, AL +35040 : 33.107572 : -86.74996 : Calera, AL +35041 : 33.64672 : -86.931818 : Cardiff, AL +35042 : 32.963486 : -87.13867 : Centreville, AL +35043 : 33.317093 : -86.66295 : Chelsea, AL +35044 : 33.268471 : -86.35582 : Childersburg, AL +35045 : 32.834501 : -86.64355 : Clanton, AL +35046 : 32.894351 : -86.56504 : Clanton, AL +35048 : 33.544622 : -86.929208 : Clay, AL +35049 : 33.963435 : -86.5954 : Cleveland, AL +35050 : 33.158454 : -86.621931 : Columbiana, AL +35051 : 33.201789 : -86.61584 : Columbiana, AL +35052 : 33.593115 : -86.4084 : Cook Springs, AL +35053 : 34.041061 : -87.06771 : Crane Hill, AL +35054 : 33.506012 : -86.31547 : Cropwell, AL +35055 : 34.167893 : -86.82506 : Cullman, AL +35056 : 34.196448 : -86.895226 : Cullman, AL +35057 : 34.139198 : -86.92449 : Cullman, AL +35058 : 34.223732 : -86.7562 : Cullman, AL +35060 : 33.559455 : -86.92968 : Docena, AL +35061 : 33.462541 : -86.95736 : Dolomite, AL +35062 : 33.731278 : -87.0361 : Dora, AL +35063 : 33.805216 : -87.00192 : Empire, AL +35064 : 33.476908 : -86.91684 : Fairfield, AL +35068 : 33.611297 : -86.81518 : Fultondale, AL +35070 : 34.011027 : -86.74877 : Garden City, AL +35071 : 33.67933 : -86.8206 : Gardendale, AL +35072 : 33.089342 : -86.04682 : Goodwater, AL +35073 : 33.640865 : -86.96885 : Graysville, AL +35074 : 33.22584 : -87.12515 : Green Pond, AL +35077 : 34.043589 : -86.80644 : Hanceville, AL +35078 : 33.337092 : -86.44085 : Harpersville, AL +35079 : 33.922179 : -86.7607 : Hayden, AL +35080 : 33.280625 : -86.88411 : Helena, AL +35082 : 33.116909 : -86.1698 : Hollins, AL +35083 : 34.198738 : -86.59814 : Holly Pond, AL +35085 : 32.96512 : -86.74405 : Jemison, AL +35087 : 34.303718 : -86.58323 : Joppa, AL +35089 : 32.941708 : -86.06098 : Kellyton, AL +35091 : 33.77109 : -86.80672 : Kimberly, AL +35094 : 33.530698 : -86.55506 : Leeds, AL +35096 : 33.605233 : -86.12079 : Lincoln, AL +35097 : 33.896526 : -86.63056 : Locust Fork, AL +35098 : 34.120006 : -87.05075 : Logan, AL +35111 : 33.279946 : -87.10148 : McCalla, AL +35112 : 33.681899 : -86.48237 : Margaret, AL +35114 : 33.225377 : -86.86443 : Maylene, AL +35115 : 33.114972 : -86.8738 : Montevallo, AL +35116 : 33.74137 : -86.78543 : Morris, AL +35117 : 33.665823 : -86.87111 : Mount Olive, AL +35118 : 33.529224 : -87.01546 : Mulga, AL +35119 : 33.640823 : -86.77574 : New Castle, AL +35120 : 33.668341 : -86.43641 : Odenville, AL +35121 : 33.944897 : -86.45813 : Oneonta, AL +35123 : 33.544622 : -86.929208 : Palmerdale, AL +35124 : 33.317471 : -86.78726 : Pelham, AL +35125 : 33.606663 : -86.28912 : Pell City, AL +35126 : 33.728568 : -86.66052 : Pinson, AL +35127 : 33.487675 : -86.97331 : Pleasant Grove, AL +35128 : 33.561597 : -86.30285 : Pell City, AL +35130 : 33.640629 : -87.11584 : Quinton, AL +35131 : 33.721107 : -86.17492 : Ragland, AL +35133 : 33.827521 : -86.60703 : Remlap, AL +35135 : 33.614465 : -86.20067 : Riverside, AL +35136 : 32.8697 : -86.2822 : Rockford, AL +35137 : 33.206302 : -86.781162 : Saginaw, AL +35139 : 33.712204 : -86.97203 : Sayre, AL +35142 : 33.406869 : -86.87347 : Shannon, AL +35143 : 33.080971 : -86.53875 : Shelby, AL +35144 : 33.28241 : -86.683891 : Siluria, AL +35146 : 33.781133 : -86.45052 : Springville, AL +35147 : 33.397441 : -86.54218 : Sterrett, AL +35148 : 33.753474 : -87.04756 : Sumiton, AL +35149 : 33.252906 : -86.20523 : Sycamore, AL +35150 : 33.185782 : -86.25105 : Sylacauga, AL +35151 : 33.137515 : -86.33414 : Sylacauga, AL +35160 : 33.415449 : -86.10908 : Talladega, AL +35161 : 33.420206 : -86.102782 : Talladega, AL +35171 : 32.907616 : -86.71868 : Thorsby, AL +35172 : 33.823416 : -86.71537 : Trafford, AL +35173 : 33.623485 : -86.58546 : Trussville, AL +35175 : 34.426844 : -86.51841 : Union Grove, AL +35176 : 33.4776 : -86.5126 : Vandiver, AL +35178 : 33.414831 : -86.3925 : Vincent, AL +35179 : 34.256106 : -86.92158 : Vinemont, AL +35180 : 33.82343 : -86.81569 : Warrior, AL +35181 : 33.544622 : -86.929208 : Watson, AL +35182 : 33.706786 : -86.256658 : Wattsville, AL +35183 : 33.016558 : -86.33936 : Weogufka, AL +35184 : 33.118259 : -87.13548 : West Blocton, AL +35185 : 33.335629 : -86.543692 : Westover, AL +35186 : 33.241272 : -86.50614 : Wilsonville, AL +35187 : 33.08104 : -86.879328 : Wilton, AL +35188 : 33.195743 : -87.16252 : Woodstock, AL +35201 : 33.456412 : -86.801904 : Birmingham, AL +35202 : 33.544622 : -86.929208 : Birmingham, AL +35203 : 33.519055 : -86.8097 : Birmingham, AL +35204 : 33.519855 : -86.83534 : Birmingham, AL +35205 : 33.497055 : -86.8057 : Birmingham, AL +35206 : 33.568573 : -86.72163 : Birmingham, AL +35207 : 33.560652 : -86.81897 : Birmingham, AL +35208 : 33.494545 : -86.88115 : Birmingham, AL +35209 : 33.468306 : -86.80814 : Birmingham, AL +35210 : 33.546051 : -86.66963 : Birmingham, AL +35211 : 33.479306 : -86.85878 : Birmingham, AL +35212 : 33.542004 : -86.74896 : Birmingham, AL +35213 : 33.507637 : -86.74161 : Birmingham, AL +35214 : 33.558772 : -86.89199 : Birmingham, AL +35215 : 33.636102 : -86.69506 : Birmingham, AL +35216 : 33.420558 : -86.78489 : Birmingham, AL +35217 : 33.590003 : -86.76708 : Birmingham, AL +35218 : 33.506456 : -86.89524 : Birmingham, AL +35219 : 33.544622 : -86.929208 : Birmingham, AL +35220 : 33.544622 : -86.929208 : Birmingham, AL +35221 : 33.450267 : -86.8965 : Birmingham, AL +35222 : 33.524254 : -86.77335 : Birmingham, AL +35223 : 33.488355 : -86.73402 : Birmingham, AL +35224 : 33.517706 : -86.93189 : Birmingham, AL +35225 : 33.544622 : -86.929208 : Birmingham, AL +35226 : 33.406409 : -86.8295 : Birmingham, AL +35228 : 33.454262 : -86.92273 : Birmingham, AL +35229 : 33.462856 : -86.790389 : Birmingham, AL +35230 : 33.544622 : -86.929208 : Birmingham, AL +35231 : 33.544622 : -86.929208 : Birmingham, AL +35232 : 33.544622 : -86.929208 : Birmingham, AL +35233 : 33.509623 : -86.7997 : Birmingham, AL +35234 : 33.538504 : -86.80602 : Birmingham, AL +35235 : 33.609779 : -86.65507 : Birmingham, AL +35236 : 33.544622 : -86.929208 : Birmingham, AL +35237 : 33.544622 : -86.929208 : Birmingham, AL +35238 : 33.544622 : -86.929208 : Birmingham, AL +35240 : 33.425892 : -86.776926 : Birmingham, AL +35242 : 33.409582 : -86.69684 : Birmingham, AL +35243 : 33.437667 : -86.74586 : Birmingham, AL +35244 : 33.356981 : -86.81577 : Birmingham, AL +35245 : 33.544622 : -86.929208 : Birmingham, AL +35246 : 33.544622 : -86.929208 : Birmingham, AL +35249 : 33.544622 : -86.929208 : Birmingham, AL +35253 : 33.544622 : -86.929208 : Birmingham, AL +35254 : 33.544622 : -86.929208 : Birmingham, AL +35255 : 33.544622 : -86.929208 : Birmingham, AL +35259 : 33.544622 : -86.929208 : Birmingham, AL +35260 : 33.544622 : -86.929208 : Birmingham, AL +35261 : 33.544622 : -86.929208 : Birmingham, AL +35263 : 33.522505 : -86.80939 : Birmingham, AL +35266 : 33.372861 : -86.853075 : Birmingham, AL +35277 : 33.544622 : -86.929208 : Birmingham, AL +35278 : 33.544622 : -86.929208 : Birmingham, AL +35279 : 33.544622 : -86.929208 : Birmingham, AL +35280 : 33.544622 : -86.929208 : Birmingham, AL +35281 : 33.544622 : -86.929208 : Birmingham, AL +35282 : 33.544622 : -86.929208 : Birmingham, AL +35283 : 33.544622 : -86.929208 : Birmingham, AL +35285 : 33.544622 : -86.929208 : Birmingham, AL +35286 : 33.544622 : -86.929208 : Birmingham, AL +35287 : 33.544622 : -86.929208 : Birmingham, AL +35288 : 33.445808 : -86.928542 : Birmingham, AL +35289 : 33.544622 : -86.929208 : Birmingham, AL +35290 : 33.544622 : -86.929208 : Birmingham, AL +35291 : 33.544622 : -86.929208 : Birmingham, AL +35292 : 33.544622 : -86.929208 : Birmingham, AL +35293 : 33.544622 : -86.929208 : Birmingham, AL +35294 : 33.544622 : -86.929208 : Birmingham, AL +35295 : 33.544622 : -86.929208 : Birmingham, AL +35296 : 33.544622 : -86.929208 : Birmingham, AL +35297 : 33.544622 : -86.929208 : Birmingham, AL +35298 : 33.544622 : -86.929208 : Birmingham, AL +35299 : 33.544622 : -86.929208 : Birmingham, AL +35308 : 33.706068 : -87.092112 : Dora, AL +35401 : 33.193818 : -87.56843 : Tuscaloosa, AL +35402 : 33.306606 : -87.453224 : Tuscaloosa, AL +35403 : 33.205073 : -87.52749 : Tuscaloosa, AL +35404 : 33.217168 : -87.49461 : Tuscaloosa, AL +35405 : 33.149246 : -87.52303 : Tuscaloosa, AL +35406 : 33.271585 : -87.50611 : Tuscaloosa, AL +35407 : 33.306606 : -87.453224 : Tuscaloosa, AL +35440 : 33.311014 : -87.18975 : Abernant, AL +35441 : 32.871514 : -87.73326 : Akron, AL +35442 : 33.095505 : -88.18653 : Aliceville, AL +35443 : 32.772835 : -88.0321 : Boligee, AL +35444 : 33.276411 : -87.3052 : Brookwood, AL +35446 : 33.207547 : -87.75054 : Buhl, AL +35447 : 33.254197 : -88.16866 : Carrollton, AL +35448 : 32.835692 : -87.956884 : Clinton, AL +35449 : 33.135876 : -87.338369 : Coaling, AL +35452 : 33.249332 : -87.67217 : Coker, AL +35453 : 33.170357 : -87.39889 : Cottondale, AL +35456 : 33.068806 : -87.43974 : Duncanville, AL +35457 : 33.301003 : -87.77187 : Echola, AL +35458 : 33.274081 : -87.80211 : Elrod, AL +35459 : 32.80728 : -88.31069 : Emelle, AL +35460 : 32.716468 : -88.15261 : Epes, AL +35461 : 33.421827 : -88.22013 : Ethelsville, AL +35462 : 32.931143 : -87.93837 : Eutaw, AL +35463 : 33.081289 : -87.68988 : Fosters, AL +35464 : 32.811241 : -88.1648 : Gainesville, AL +35466 : 33.299935 : -87.88368 : Gordo, AL +35468 : 33.306606 : -87.453224 : Kellerman, AL +35469 : 33.012557 : -87.79793 : Knoxville, AL +35470 : 32.558949 : -88.12485 : Livingston, AL +35471 : 33.402134 : -88.14732 : McShan, AL +35473 : 33.260567 : -87.58945 : Northport, AL +35474 : 32.962981 : -87.61717 : Moundville, AL +35475 : 33.388654 : -87.57913 : Northport, AL +35476 : 33.227736 : -87.58819 : Northport, AL +35477 : 32.915891 : -88.25764 : Panola, AL +35478 : 33.306606 : -87.453224 : Peterson, AL +35480 : 33.102981 : -87.83382 : Ralph, AL +35481 : 33.399471 : -88.02086 : Reform, AL +35482 : 33.306606 : -87.453224 : Samantha, AL +35485 : 33.306606 : -87.453224 : Tuscaloosa, AL +35486 : 33.272662 : -87.793794 : Tuscaloosa, AL +35487 : 33.307222 : -87.585902 : Tuscaloosa, AL +35490 : 33.197284 : -87.25156 : Vance, AL +35491 : 32.835692 : -87.956884 : West Greene, AL +35501 : 33.828412 : -87.27632 : Jasper, AL +35502 : 33.901993 : -87.293888 : Jasper, AL +35503 : 33.907546 : -87.29957 : Jasper, AL +35504 : 33.883566 : -87.2125 : Jasper, AL +35540 : 34.223057 : -87.17232 : Addison, AL +35541 : 34.059527 : -87.18344 : Arley, AL +35542 : 33.703682 : -87.67155 : Bankston, AL +35543 : 34.247898 : -87.72171 : Bear Creek, AL +35544 : 33.939291 : -88.01367 : Beaverton, AL +35545 : 33.641227 : -87.92911 : Belk, AL +35546 : 33.628719 : -87.58251 : Berry, AL +35548 : 34.043457 : -87.7594 : Brilliant, AL +35549 : 33.87798 : -87.52728 : Carbon Hill, AL +35550 : 33.754767 : -87.16587 : Cordova, AL +35551 : 34.145939 : -87.373241 : Delmar, AL +35552 : 34.061266 : -88.15462 : Detroit, AL +35553 : 34.146713 : -87.39317 : Double Springs, AL +35554 : 33.903299 : -87.65194 : Eldridge, AL +35555 : 33.681768 : -87.83026 : Fayette, AL +35559 : 33.909001 : -87.73186 : Glen Allen, AL +35560 : 33.679503 : -87.237372 : Goodsprings, AL +35563 : 33.972007 : -87.90302 : Guin, AL +35564 : 34.262751 : -87.83441 : Hackleburg, AL +35565 : 34.225425 : -87.6118 : Haleyville, AL +35570 : 34.149717 : -88.00384 : Hamilton, AL +35571 : 34.341907 : -87.94612 : Hodges, AL +35572 : 34.16678 : -87.26526 : Houston, AL +35573 : 33.92169 : -87.524264 : Kansas, AL +35574 : 33.586897 : -87.97695 : Kennedy, AL +35575 : 34.049426 : -87.57065 : Lynn, AL +35576 : 33.581135 : -88.10835 : Millport, AL +35577 : 34.093409 : -87.600815 : Natural Bridge, AL +35578 : 33.97173 : -87.45746 : Nauvoo, AL +35579 : 33.673236 : -87.37169 : Oakman, AL +35580 : 33.701484 : -87.27103 : Parrish, AL +35581 : 34.343017 : -87.71277 : Phil Campbell, AL +35582 : 34.448328 : -88.12041 : Red Bay, AL +35584 : 33.823683 : -87.08699 : Sipsey, AL +35585 : 34.428048 : -87.80695 : Spruce Pine, AL +35586 : 33.864591 : -88.13117 : Sulligent, AL +35587 : 33.807412 : -87.446 : Townley, AL +35592 : 33.752857 : -88.0996 : Vernon, AL +35593 : 34.369264 : -88.06745 : Vina, AL +35594 : 33.925454 : -87.78949 : Winfield, AL +35601 : 34.595332 : -86.98786 : Decatur, AL +35602 : 34.606216 : -87.088142 : Decatur, AL +35603 : 34.539072 : -86.95732 : Decatur, AL +35609 : 34.495365 : -86.82993 : Decatur, AL +35610 : 34.944113 : -87.24921 : Anderson, AL +35611 : 34.784028 : -87.02767 : Athens, AL +35612 : 34.774907 : -87.030479 : Athens, AL +35613 : 34.808165 : -86.89623 : Athens, AL +35614 : 34.860179 : -87.06231 : Athens, AL +35615 : 34.774907 : -87.030479 : Belle Mina, AL +35616 : 34.748498 : -87.9986 : Cherokee, AL +35617 : 34.869964 : -87.706859 : Cloverdale, AL +35618 : 34.665033 : -87.30978 : Courtland, AL +35619 : 34.404908 : -87.12915 : Danville, AL +35620 : 34.930354 : -86.9809 : Elkmont, AL +35621 : 34.334972 : -86.71847 : Eva, AL +35622 : 34.340484 : -86.89176 : Falkville, AL +35630 : 34.817537 : -87.66253 : Florence, AL +35631 : 34.869964 : -87.706859 : Florence, AL +35632 : 34.869964 : -87.706859 : Florence, AL +35633 : 34.898897 : -87.77379 : Florence, AL +35634 : 34.888897 : -87.60731 : Florence, AL +35640 : 34.442184 : -86.94027 : Hartselle, AL +35643 : 34.648768 : -87.20394 : Hillsboro, AL +35645 : 34.904208 : -87.50776 : Killen, AL +35646 : 34.660322 : -87.53577 : Leighton, AL +35647 : 34.967939 : -87.11732 : Lester, AL +35648 : 34.966009 : -87.38262 : Lexington, AL +35649 : 34.625704 : -86.8784 : Mooresville, AL +35650 : 34.496476 : -87.27802 : Moulton, AL +35651 : 34.476048 : -87.48875 : Mount Hope, AL +35652 : 34.843309 : -87.29937 : Rogersville, AL +35653 : 34.519453 : -87.78077 : Russellville, AL +35654 : 34.516472 : -87.65265 : Russellville, AL +35659 : 34.536839 : -87.704179 : Russellville, AL +35660 : 34.759738 : -87.69317 : Sheffield, AL +35661 : 34.759947 : -87.62705 : Muscle Shoals, AL +35662 : 34.757152 : -87.966575 : Muscle Shoals, AL +35670 : 34.481885 : -86.7525 : Somerville, AL +35671 : 34.67373 : -86.94986 : Tanner, AL +35672 : 34.64248 : -87.41166 : Town Creek, AL +35673 : 34.581591 : -87.11884 : Trinity, AL +35674 : 34.70017 : -87.7142 : Tuscumbia, AL +35677 : 34.950648 : -88.02603 : Waterloo, AL +35699 : 34.495365 : -86.82993 : Decatur, AL +35703 : 33.64672 : -86.931818 : Cardiff, AL +35715 : 33.08696 : -86.855772 : Montevallo, AL +35739 : 34.972309 : -86.81352 : Ardmore, AL +35740 : 34.943871 : -85.73077 : Bridgeport, AL +35741 : 34.720813 : -86.48932 : Brownsboro, AL +35742 : 34.813577 : -86.80405 : Capshaw, AL +35744 : 34.610055 : -85.91553 : Dutton, AL +35745 : 34.929269 : -86.20726 : Estillfork, AL +35746 : 34.830058 : -85.97048 : Fackler, AL +35747 : 34.500216 : -86.27889 : Grant, AL +35748 : 34.710942 : -86.38995 : Gurley, AL +35749 : 34.815817 : -86.76003 : Harvest, AL +35750 : 34.948321 : -86.58988 : Hazel Green, AL +35751 : 34.815033 : -86.27258 : Hollytree, AL +35752 : 34.745259 : -85.94729 : Hollywood, AL +35754 : 34.520438 : -86.61977 : Laceys Spring, AL +35755 : 34.501178 : -86.11516 : Langston, AL +35756 : 34.630103 : -86.80159 : Madison, AL +35757 : 34.776638 : -86.75164 : Madison, AL +35758 : 34.715065 : -86.73964 : Madison, AL +35759 : 34.863236 : -86.56137 : Meridianville, AL +35760 : 34.541285 : -86.39852 : New Hope, AL +35761 : 34.902137 : -86.44272 : New Market, AL +35762 : 34.733964 : -86.522913 : Normal, AL +35763 : 34.624533 : -86.47069 : Owens Cross Roads, AL +35764 : 34.694662 : -86.31816 : Paint Rock, AL +35765 : 34.695645 : -85.80484 : Pisgah, AL +35766 : 34.842944 : -86.23149 : Princeton, AL +35767 : 34.733964 : -86.522913 : Ryland, AL +35768 : 34.712327 : -86.08387 : Scottsboro, AL +35769 : 34.606124 : -86.06464 : Scottsboro, AL +35771 : 34.546397 : -85.98279 : Section, AL +35772 : 34.877531 : -85.84528 : Stevenson, AL +35773 : 34.90267 : -86.71367 : Toney, AL +35774 : 34.752369 : -86.22634 : Trenton, AL +35775 : 34.550375 : -86.70576 : Valhermoso Springs, AL +35776 : 34.664895 : -86.23363 : Woodville, AL +35801 : 34.72879 : -86.57316 : Huntsville, AL +35802 : 34.666041 : -86.55929 : Huntsville, AL +35803 : 34.603017 : -86.54293 : Huntsville, AL +35804 : 34.728366 : -86.585312 : Huntsville, AL +35805 : 34.711291 : -86.61691 : Huntsville, AL +35806 : 34.748066 : -86.68317 : Huntsville, AL +35807 : 34.733964 : -86.522913 : Huntsville, AL +35808 : 34.623075 : -86.6647 : Huntsville, AL +35809 : 34.733964 : -86.522913 : Huntsville, AL +35810 : 34.77624 : -86.61339 : Huntsville, AL +35811 : 34.78108 : -86.53163 : Huntsville, AL +35812 : 34.733964 : -86.522913 : Huntsville, AL +35813 : 34.733964 : -86.522913 : Huntsville, AL +35814 : 34.733964 : -86.522913 : Huntsville, AL +35815 : 34.733964 : -86.522913 : Huntsville, AL +35816 : 34.73969 : -86.62464 : Huntsville, AL +35824 : 34.654126 : -86.73987 : Huntsville, AL +35893 : 34.733964 : -86.522913 : Huntsville, AL +35894 : 34.733964 : -86.522913 : Huntsville, AL +35895 : 34.733964 : -86.522913 : Huntsville, AL +35896 : 34.733964 : -86.522913 : Huntsville, AL +35897 : 34.733964 : -86.522913 : Huntsville, AL +35898 : 34.733964 : -86.522913 : Huntsville, AL +35899 : 34.733898 : -86.645592 : Huntsville, AL +35901 : 34.016747 : -85.99282 : Gadsden, AL +35902 : 33.984062 : -85.803434 : Gadsden, AL +35903 : 33.996698 : -85.92496 : Gadsden, AL +35904 : 34.032097 : -86.0353 : Gadsden, AL +35905 : 33.942031 : -85.93993 : Gadsden, AL +35906 : 33.943964 : -86.06154 : Rainbow City, AL +35907 : 33.906415 : -86.02665 : Gadsden, AL +35950 : 34.261878 : -86.22835 : Albertville, AL +35951 : 34.313014 : -86.19282 : Albertville, AL +35952 : 34.057496 : -86.32225 : Altoona, AL +35953 : 33.825516 : -86.24231 : Ashville, AL +35954 : 34.043263 : -86.08904 : Attalla, AL +35956 : 34.155318 : -86.13237 : Boaz, AL +35957 : 34.203621 : -86.1728 : Boaz, AL +35958 : 34.921827 : -85.63784 : Bryant, AL +35959 : 34.237989 : -85.61277 : Cedar Bluff, AL +35960 : 34.141067 : -85.60472 : Centre, AL +35961 : 34.279268 : -85.85634 : Collinsville, AL +35962 : 34.297717 : -86.036 : Crossville, AL +35963 : 34.359766 : -85.92825 : Dawson, AL +35964 : 34.34962 : -86.319824 : Douglas, AL +35966 : 34.788306 : -85.67642 : Flat Rock, AL +35967 : 34.429472 : -85.71078 : Fort Payne, AL +35968 : 34.460537 : -85.76744 : Fort Payne, AL +35969 : 34.452575 : -85.717302 : Fort Payne, AL +35971 : 34.457657 : -85.92772 : Fyffe, AL +35972 : 33.987653 : -86.25523 : Gallant, AL +35973 : 34.333048 : -85.55172 : Gaylesville, AL +35974 : 34.361787 : -86.0098 : Geraldine, AL +35975 : 34.431683 : -86.06169 : Groveoak, AL +35976 : 34.350835 : -86.30475 : Guntersville, AL +35978 : 34.637589 : -85.73274 : Henagar, AL +35979 : 34.831242 : -85.61564 : Higdon, AL +35980 : 34.179277 : -86.36882 : Horton, AL +35981 : 34.717362 : -85.65353 : Ider, AL +35983 : 34.189256 : -85.76816 : Leesburg, AL +35984 : 34.557735 : -85.5751 : Mentone, AL +35986 : 34.500878 : -85.83763 : Rainsville, AL +35987 : 33.9117 : -86.24408 : Steele, AL +35988 : 34.56838 : -85.79646 : Sylvania, AL +35989 : 34.5852 : -85.65125 : Valley Head, AL +35990 : 34.066644 : -86.30438 : Walnut Grove, AL +36003 : 32.439967 : -86.68801 : Autaugaville, AL +36005 : 31.859531 : -85.75558 : Banks, AL +36006 : 32.65279 : -86.7143 : Billingsley, AL +36008 : 32.501649 : -86.572711 : Booth, AL +36009 : 31.579451 : -86.3188 : Brantley, AL +36010 : 31.678393 : -85.82425 : Brundidge, AL +36013 : 32.295289 : -85.99653 : Cecil, AL +36015 : 31.642713 : -86.734317 : Chapman, AL +36016 : 31.843675 : -85.43298 : Clayton, AL +36017 : 31.692576 : -85.55787 : Clio, AL +36020 : 32.496067 : -86.33073 : Coosada, AL +36022 : 32.612619 : -86.39497 : Deatsville, AL +36023 : 32.800155 : -85.803427 : East Tallassee, AL +36024 : 32.697561 : -86.016 : Eclectic, AL +36025 : 32.538878 : -86.33358 : Elmore, AL +36026 : 32.776549 : -86.0477 : Equality, AL +36027 : 31.876168 : -85.17362 : Eufaula, AL +36028 : 31.474803 : -86.37618 : Dozier, AL +36029 : 32.214818 : -85.93281 : Fitzpatrick, AL +36030 : 31.847964 : -86.86441 : Forest Home, AL +36031 : 32.251957 : -85.73589 : Fort Davis, AL +36032 : 31.984289 : -86.57087 : Fort Deposit, AL +36033 : 31.655458 : -86.76737 : Georgiana, AL +36034 : 31.637696 : -86.13578 : Glenwood, AL +36035 : 31.756986 : -86.14489 : Goshen, AL +36036 : 31.985456 : -86.15741 : Grady, AL +36037 : 31.8007 : -86.60591 : Greenville, AL +36038 : 31.260882 : -86.444833 : Gantt, AL +36039 : 32.28032 : -85.81979 : Hardaway, AL +36040 : 32.182677 : -86.66877 : Hayneville, AL +36041 : 31.913456 : -86.30083 : Highland Home, AL +36042 : 31.860078 : -86.44607 : Honoraville, AL +36043 : 32.22381 : -86.39798 : Hope Hull, AL +36045 : 32.587631 : -86.132981 : Kent, AL +36046 : 32.025367 : -86.34182 : Lapine, AL +36047 : 32.070433 : -86.49437 : Letohatchee, AL +36048 : 31.776734 : -85.58908 : Louisville, AL +36049 : 31.737407 : -86.26946 : Luverne, AL +36051 : 32.682598 : -86.47451 : Marbury, AL +36052 : 32.171705 : -86.06661 : Mathews, AL +36053 : 32.011153 : -85.46827 : Midway, AL +36054 : 32.492335 : -86.36692 : Millbrook, AL +36057 : 32.233377 : -86.208528 : Mount Meigs, AL +36061 : 32.092808 : -85.704649 : Perote, AL +36062 : 31.74589 : -86.323949 : Petrey, AL +36064 : 32.318234 : -86.09585 : Pike Road, AL +36065 : 32.042813 : -86.0514 : Pine Level, AL +36066 : 32.459435 : -86.42746 : Prattville, AL +36067 : 32.488113 : -86.52962 : Prattville, AL +36068 : 32.507893 : -86.666272 : Prattville, AL +36069 : 32.07955 : -86.14911 : Ramer, AL +36071 : 31.708837 : -86.38617 : Rutledge, AL +36072 : 31.826055 : -85.166028 : Eufaula, AL +36075 : 32.399994 : -85.9237 : Shorter, AL +36078 : 32.553036 : -85.9136 : Tallassee, AL +36079 : 31.780847 : -85.992 : Troy, AL +36080 : 32.691057 : -86.29429 : Titus, AL +36081 : 31.852825 : -85.92314 : Troy, AL +36082 : 31.816474 : -85.964713 : Troy, AL +36083 : 32.427987 : -85.69542 : Tuskegee, AL +36087 : 32.40926 : -85.738032 : Tuskegee Institute, AL +36088 : 32.419862 : -85.71699 : Tuskegee Institute, AL +36089 : 32.145437 : -85.70998 : Union Springs, AL +36091 : 32.759543 : -86.51111 : Verbena, AL +36092 : 32.592889 : -86.21902 : Wetumpka, AL +36093 : 32.505741 : -86.15644 : Wetumpka, AL +36101 : 32.356988 : -86.257817 : Montgomery, AL +36102 : 32.233377 : -86.208528 : Montgomery, AL +36103 : 32.346158 : -86.287316 : Montgomery, AL +36104 : 32.377509 : -86.31068 : Montgomery, AL +36105 : 32.30234 : -86.30504 : Montgomery, AL +36106 : 32.354888 : -86.27161 : Montgomery, AL +36107 : 32.378138 : -86.27905 : Montgomery, AL +36108 : 32.353188 : -86.36037 : Montgomery, AL +36109 : 32.386088 : -86.24511 : Montgomery, AL +36110 : 32.426372 : -86.27007 : Montgomery, AL +36111 : 32.338989 : -86.27316 : Montgomery, AL +36112 : 32.374287 : -86.345719 : Montgomery, AL +36113 : 32.359588 : -86.34434 : Montgomery, AL +36114 : 32.403987 : -86.253867 : Montgomery, AL +36115 : 32.404754 : -86.24963 : Montgomery, AL +36116 : 32.31324 : -86.23672 : Montgomery, AL +36117 : 32.373714 : -86.16443 : Montgomery, AL +36118 : 32.233377 : -86.208528 : Montgomery, AL +36119 : 32.233377 : -86.208528 : Montgomery, AL +36120 : 32.233377 : -86.208528 : Montgomery, AL +36121 : 32.233377 : -86.208528 : Montgomery, AL +36123 : 32.233377 : -86.208528 : Montgomery, AL +36124 : 32.233377 : -86.208528 : Montgomery, AL +36125 : 32.233377 : -86.208528 : Montgomery, AL +36130 : 32.233377 : -86.208528 : Montgomery, AL +36131 : 32.233377 : -86.208528 : Montgomery, AL +36132 : 32.233377 : -86.208528 : Montgomery, AL +36133 : 32.233377 : -86.208528 : Montgomery, AL +36134 : 32.233377 : -86.208528 : Montgomery, AL +36135 : 32.233377 : -86.208528 : Montgomery, AL +36140 : 32.233377 : -86.208528 : Montgomery, AL +36141 : 32.233377 : -86.208528 : Montgomery, AL +36142 : 32.233377 : -86.208528 : Montgomery, AL +36177 : 32.233377 : -86.208528 : Montgomery, AL +36191 : 32.233377 : -86.208528 : Montgomery, AL +36201 : 33.658803 : -85.85178 : Anniston, AL +36202 : 33.762195 : -85.837828 : Anniston, AL +36203 : 33.591301 : -85.83571 : Anniston, AL +36204 : 33.762195 : -85.837828 : Anniston, AL +36205 : 33.711314 : -85.78527 : Anniston, AL +36206 : 33.719701 : -85.83166 : Anniston, AL +36207 : 33.651673 : -85.75895 : Anniston, AL +36250 : 33.766057 : -85.88969 : Alexandria, AL +36251 : 33.243964 : -85.84503 : Ashland, AL +36253 : 33.762195 : -85.837828 : Bynum, AL +36254 : 33.657349 : -85.699116 : Choccolocco, AL +36255 : 33.185338 : -85.72548 : Cragford, AL +36256 : 33.032076 : -85.69962 : Daviston, AL +36257 : 33.762195 : -85.837828 : De Armanville, AL +36258 : 33.473789 : -85.71409 : Delta, AL +36260 : 33.593189 : -85.99551 : Eastaboga, AL +36261 : 33.706595 : -85.509902 : Edwardsville, AL +36262 : 33.761052 : -85.45227 : Fruithurst, AL +36263 : 33.469709 : -85.36139 : Graham, AL +36264 : 33.613541 : -85.55457 : Heflin, AL +36265 : 33.824496 : -85.77037 : Jacksonville, AL +36266 : 33.328958 : -85.72073 : Lineville, AL +36267 : 33.200704 : -85.94159 : Millerville, AL +36268 : 33.51179 : -85.94756 : Munford, AL +36269 : 33.740158 : -85.37813 : Muscadine, AL +36270 : 33.423088 : -85.47202 : Newell, AL +36271 : 33.79933 : -86.0286 : Ohatchee, AL +36272 : 33.948018 : -85.61491 : Piedmont, AL +36273 : 33.535491 : -85.36312 : Ranburne, AL +36274 : 33.159848 : -85.36865 : Roanoke, AL +36275 : 33.977829 : -85.552143 : Spring Garden, AL +36276 : 33.142612 : -85.57418 : Wadley, AL +36277 : 33.754308 : -85.81991 : Weaver, AL +36278 : 33.338853 : -85.509 : Wedowee, AL +36279 : 33.862349 : -85.89512 : Wellington, AL +36280 : 33.366136 : -85.36501 : Woodland, AL +36301 : 31.180076 : -85.4045 : Dothan, AL +36302 : 31.156018 : -85.355931 : Dothan, AL +36303 : 31.249042 : -85.40605 : Dothan, AL +36304 : 31.156018 : -85.355931 : Dothan, AL +36305 : 31.214832 : -85.47402 : Dothan, AL +36310 : 31.599256 : -85.2094 : Abbeville, AL +36311 : 31.589226 : -85.69097 : Ariton, AL +36312 : 31.178688 : -85.2429 : Ashford, AL +36313 : 31.174249 : -85.79562 : Bellwood, AL +36314 : 31.013308 : -85.75742 : Black, AL +36316 : 31.172641 : -85.86482 : Chancellor, AL +36317 : 31.645125 : -85.37812 : Clopton, AL +36318 : 31.16782 : -85.94917 : Coffee Springs, AL +36319 : 31.312599 : -85.14456 : Columbia, AL +36320 : 31.051843 : -85.31561 : Cottonwood, AL +36321 : 31.202473 : -85.301373 : Cowarts, AL +36322 : 31.284499 : -85.72111 : Daleville, AL +36323 : 31.428389 : -86.07271 : Elba, AL +36330 : 31.32579 : -85.84117 : Enterprise, AL +36331 : 31.297817 : -85.90364 : Enterprise, AL +36340 : 31.043454 : -85.87941 : Geneva, AL +36343 : 31.087556 : -85.13116 : Gordon, AL +36344 : 31.096994 : -85.7001 : Hartford, AL +36345 : 31.381263 : -85.3149 : Headland, AL +36346 : 31.567171 : -85.93102 : Jack, AL +36349 : 31.121244 : -85.559235 : Malvern, AL +36350 : 31.319083 : -85.48718 : Midland City, AL +36351 : 31.406536 : -85.9175 : New Brockton, AL +36352 : 31.262955 : -85.60789 : Newton, AL +36353 : 31.453069 : -85.36241 : Newville, AL +36360 : 31.447119 : -85.62908 : Ozark, AL +36361 : 31.407872 : -85.603458 : Ozark, AL +36362 : 31.352676 : -85.70509 : Fort Rucker, AL +36370 : 31.141962 : -85.15675 : Pansey, AL +36371 : 31.31201 : -85.54722 : Pinckard, AL +36373 : 31.52151 : -85.1146 : Shorterville, AL +36374 : 31.569287 : -85.48581 : Skipperville, AL +36375 : 31.096836 : -85.54403 : Slocomb, AL +36376 : 31.243717 : -85.27681 : Webb, AL +36383 : 32.890759 : -85.221739 : Lanett, AL +36395 : 31.138076 : -85.529661 : Malvern, AL +36401 : 31.461019 : -86.96271 : Evergreen, AL +36420 : 31.279043 : -86.48699 : Andalusia, AL +36422 : 31.045685 : -86.433655 : Lockhart, AL +36425 : 31.737883 : -87.17442 : Beatrice, AL +36426 : 31.129008 : -87.10173 : Brewton, AL +36427 : 31.091784 : -87.26404 : Brewton, AL +36429 : 31.466945 : -87.044687 : Brooklyn, AL +36431 : 31.529531 : -87.345345 : Burnt Corn, AL +36432 : 31.291038 : -87.03109 : Castleberry, AL +36435 : 31.874887 : -87.4311 : Coy, AL +36436 : 31.756797 : -87.645 : Dickinson, AL +36439 : 31.429472 : -87.339329 : Excel, AL +36441 : 31.023139 : -87.23957 : Flomaton, AL +36442 : 31.042071 : -86.34347 : Florala, AL +36444 : 31.63857 : -87.46772 : Franklin, AL +36445 : 31.429994 : -87.41631 : Frisco City, AL +36446 : 31.786539 : -87.72688 : Fulton, AL +36449 : 31.529531 : -87.345345 : Goodway, AL +36451 : 31.704736 : -87.77773 : Grove Hill, AL +36453 : 31.203287 : -86.15169 : Kinston, AL +36454 : 31.466945 : -87.044687 : Lenox, AL +36455 : 31.011435 : -86.35065 : Lockhart, AL +36456 : 31.54668 : -86.77355 : McKenzie, AL +36457 : 31.361214 : -87.435279 : Megargel, AL +36458 : 31.514659 : -87.408362 : Mexia, AL +36460 : 31.509039 : -87.32416 : Monroeville, AL +36461 : 31.522093 : -87.341108 : Monroeville, AL +36462 : 31.529531 : -87.345345 : Monroeville, AL +36467 : 31.280048 : -86.25484 : Opp, AL +36470 : 31.514262 : -87.50401 : Perdue Hill, AL +36471 : 31.612646 : -87.24886 : Peterman, AL +36473 : 31.306814 : -87.20327 : Range, AL +36474 : 31.416059 : -86.61397 : Red Level, AL +36475 : 31.410205 : -87.22474 : Repton, AL +36476 : 31.356774 : -86.54879 : River Falls, AL +36477 : 31.091359 : -86.04782 : Samson, AL +36480 : 31.320897 : -87.59607 : Uriah, AL +36481 : 31.821448 : -87.34313 : Vredenburgh, AL +36482 : 31.614138 : -87.63373 : Whatley, AL +36483 : 31.03183 : -86.70207 : Wing, AL +36501 : 31.463968 : -87.73883 : Alma, AL +36502 : 31.090528 : -87.49715 : Atmore, AL +36503 : 31.128242 : -87.152068 : Atmore, AL +36504 : 31.015817 : -87.497165 : Atmore, AL +36505 : 30.930065 : -88.00103 : Axis, AL +36507 : 30.875697 : -87.76592 : Bay Minette, AL +36508 : 30.253557 : -88.101463 : Dauphin Island, AL +36509 : 30.401384 : -88.24671 : Bayou La Batre, AL +36511 : 30.312316 : -87.73468 : Bon Secour, AL +36512 : 30.658865 : -88.177975 : Bucks, AL +36513 : 31.161966 : -87.99588 : Calvert, AL +36515 : 31.375467 : -87.78506 : Carlton, AL +36518 : 31.463383 : -88.26781 : Chatom, AL +36521 : 30.965694 : -88.18697 : Chunchula, AL +36522 : 31.0753 : -88.2633 : Citronelle, AL +36523 : 30.383724 : -88.18466 : Coden, AL +36524 : 31.790834 : -88.06933 : Coffeeville, AL +36525 : 30.886317 : -88.02806 : Creola, AL +36526 : 30.620594 : -87.88312 : Daphne, AL +36527 : 30.684873 : -87.89723 : Spanish Fort, AL +36528 : 30.250825 : -88.11819 : Dauphin Island, AL +36529 : 31.309194 : -88.26036 : Deer Park, AL +36530 : 30.377657 : -87.56159 : Elberta, AL +36531 : 30.620944 : -87.753091 : Loxley, AL +36532 : 30.512458 : -87.88559 : Fairhope, AL +36533 : 30.484131 : -87.860613 : Fairhope, AL +36535 : 30.396876 : -87.69616 : Foley, AL +36536 : 30.42216 : -87.706371 : Foley, AL +36538 : 31.646087 : -88.14188 : Frankville, AL +36539 : 31.375241 : -88.41557 : Fruitdale, AL +36540 : 31.453836 : -87.64373 : Gainestown, AL +36541 : 30.487783 : -88.32722 : Grand Bay, AL +36542 : 30.262276 : -87.72784 : Gulf Shores, AL +36543 : 31.216132 : -87.461537 : Huxford, AL +36544 : 30.479171 : -88.23793 : Irvington, AL +36545 : 31.508231 : -87.88346 : Jackson, AL +36547 : 30.265325 : -87.629926 : Gulf Shores, AL +36548 : 31.495691 : -87.9626 : Leroy, AL +36549 : 30.393983 : -87.45664 : Lillian, AL +36550 : 31.242801 : -87.76099 : Little River, AL +36551 : 30.6316 : -87.75299 : Loxley, AL +36553 : 31.234589 : -88.08089 : McIntosh, AL +36555 : 30.427641 : -87.796011 : Magnolia Springs, AL +36556 : 31.213801 : -87.96228 : Malcolm, AL +36558 : 31.629578 : -88.34737 : Millry, AL +36559 : 30.564701 : -87.90216 : Montrose, AL +36560 : 31.088463 : -88.03007 : Mount Vernon, AL +36561 : 30.291503 : -87.56198 : Orange Beach, AL +36562 : 31.021335 : -87.64417 : Perdido, AL +36564 : 30.471767 : -87.91874 : Point Clear, AL +36567 : 30.5822 : -87.63936 : Robertsdale, AL +36568 : 30.49434 : -88.269865 : Saint Elmo, AL +36569 : 31.529488 : -88.06349 : Saint Stephens, AL +36570 : 31.613745 : -88.01381 : Salitpa, AL +36571 : 30.831636 : -88.09386 : Saraland, AL +36572 : 30.857435 : -88.05414 : Satsuma, AL +36574 : 30.511685 : -87.4686 : Seminole, AL +36575 : 30.76635 : -88.26553 : Semmes, AL +36576 : 30.540664 : -87.7549 : Silverhill, AL +36577 : 30.668757 : -87.93971 : Spanish Fort, AL +36578 : 30.744745 : -87.81486 : Stapleton, AL +36579 : 31.126122 : -87.80317 : Stockton, AL +36580 : 30.485351 : -87.71292 : Summerdale, AL +36581 : 31.373999 : -87.99791 : Sunflower, AL +36582 : 30.533744 : -88.16865 : Theodore, AL +36583 : 31.35209 : -88.20879 : Tibbie, AL +36584 : 31.202048 : -88.38071 : Vinegar Bend, AL +36585 : 31.38122 : -88.02433 : Wagarville, AL +36586 : 31.58842 : -87.840875 : Walker Springs, AL +36587 : 30.828988 : -88.35079 : Wilmer, AL +36590 : 30.487953 : -88.253278 : Theodore, AL +36601 : 30.701142 : -88.103184 : Mobile, AL +36602 : 30.693389 : -88.04416 : Mobile, AL +36603 : 30.688457 : -88.05341 : Mobile, AL +36604 : 30.68164 : -88.06676 : Mobile, AL +36605 : 30.641191 : -88.08222 : Mobile, AL +36606 : 30.674057 : -88.10249 : Mobile, AL +36607 : 30.699539 : -88.10474 : Mobile, AL +36608 : 30.69044 : -88.19701 : Mobile, AL +36609 : 30.662735 : -88.16255 : Mobile, AL +36610 : 30.737405 : -88.08201 : Mobile, AL +36611 : 30.764938 : -88.08505 : Mobile, AL +36612 : 30.753155 : -88.11116 : Mobile, AL +36613 : 30.795637 : -88.1577 : Eight Mile, AL +36614 : 30.601892 : -88.211103 : Mobile, AL +36615 : 30.64109 : -88.062248 : Mobile, AL +36616 : 30.671048 : -88.126656 : Mobile, AL +36617 : 30.717539 : -88.09609 : Mobile, AL +36618 : 30.728488 : -88.16845 : Mobile, AL +36619 : 30.586808 : -88.18552 : Mobile, AL +36621 : 30.658865 : -88.177975 : Mobile, AL +36622 : 30.658865 : -88.177975 : Mobile, AL +36623 : 30.658865 : -88.177975 : Mobile, AL +36625 : 30.658865 : -88.177975 : Mobile, AL +36626 : 30.658865 : -88.177975 : Mobile, AL +36628 : 30.658865 : -88.177975 : Mobile, AL +36630 : 30.658865 : -88.177975 : Mobile, AL +36631 : 30.658865 : -88.177975 : Mobile, AL +36633 : 30.658865 : -88.177975 : Mobile, AL +36640 : 30.658865 : -88.177975 : Mobile, AL +36641 : 30.658865 : -88.177975 : Mobile, AL +36644 : 30.658865 : -88.177975 : Mobile, AL +36652 : 30.658865 : -88.177975 : Mobile, AL +36660 : 30.658865 : -88.177975 : Mobile, AL +36663 : 30.81901 : -88.231726 : Mobile, AL +36670 : 30.658865 : -88.177975 : Mobile, AL +36671 : 30.658865 : -88.177975 : Mobile, AL +36675 : 30.658865 : -88.177975 : Mobile, AL +36685 : 30.658865 : -88.177975 : Mobile, AL +36688 : 30.696589 : -88.173652 : Mobile, AL +36689 : 30.658865 : -88.177975 : Mobile, AL +36690 : 30.658865 : -88.177975 : Mobile, AL +36691 : 30.658865 : -88.177975 : Mobile, AL +36693 : 30.630441 : -88.15397 : Mobile, AL +36695 : 30.646415 : -88.23657 : Mobile, AL +36701 : 32.429066 : -87.03809 : Selma, AL +36702 : 32.419259 : -87.124708 : Selma, AL +36703 : 32.419846 : -86.97783 : Selma, AL +36720 : 32.170653 : -87.36217 : Alberta, AL +36721 : 32.048079 : -87.26226 : Annemanie, AL +36722 : 32.079894 : -87.57551 : Arlington, AL +36723 : 32.08846 : -87.28018 : Boykin, AL +36726 : 32.008444 : -87.25911 : Camden, AL +36727 : 31.910694 : -88.03148 : Campbell, AL +36728 : 32.147166 : -87.45675 : Catherine, AL +36732 : 32.495484 : -87.84521 : Demopolis, AL +36736 : 32.069338 : -87.77893 : Dixons Mills, AL +36738 : 32.41786 : -87.62729 : Faunsdale, AL +36740 : 32.629096 : -87.84004 : Forkland, AL +36741 : 32.006129 : -86.981703 : Furman, AL +36742 : 32.454007 : -87.75003 : Gallion, AL +36744 : 32.703529 : -87.60177 : Greensboro, AL +36745 : 32.414036 : -87.898611 : Jefferson, AL +36748 : 32.297441 : -87.78812 : Linden, AL +36749 : 32.54896 : -86.87897 : Jones, AL +36750 : 32.789726 : -86.8496 : Maplesville, AL +36751 : 31.833493 : -87.55005 : Lower Peach Tree, AL +36752 : 32.322266 : -86.64395 : Lowndesboro, AL +36753 : 32.048079 : -87.26226 : McWilliams, AL +36754 : 32.140637 : -87.6801 : Magnolia, AL +36755 : 32.700467 : -87.578576 : Greensboro, AL +36756 : 32.665966 : -87.33889 : Marion, AL +36758 : 32.639376 : -86.91034 : Plantersville, AL +36759 : 32.420138 : -87.27857 : Marion Junction, AL +36761 : 32.080532 : -86.95524 : Minter, AL +36762 : 31.940191 : -88.00336 : Morvin, AL +36763 : 32.249718 : -87.96332 : Myrtlewood, AL +36764 : 32.268329 : -87.795275 : Nanafalia, AL +36765 : 32.594818 : -87.53543 : Newbern, AL +36766 : 31.947005 : -87.074497 : Oak Hill, AL +36767 : 32.29165 : -87.23168 : Orrville, AL +36768 : 31.901412 : -86.95505 : Pine Apple, AL +36769 : 31.990494 : -87.55222 : Pine Hill, AL +36773 : 32.291429 : -87.39972 : Safford, AL +36775 : 32.213369 : -86.98313 : Sardis, AL +36776 : 32.739091 : -87.7417 : Sawyerville, AL +36778 : 32.01998 : -87.054284 : Snow Hill, AL +36779 : 32.701812 : -87.17423 : Sprott, AL +36782 : 32.114999 : -87.90187 : Sweet Water, AL +36783 : 32.263473 : -87.60214 : Thomaston, AL +36784 : 31.936003 : -87.77013 : Thomasville, AL +36785 : 32.282192 : -86.8216 : Tyler, AL +36786 : 32.440868 : -87.49657 : Uniontown, AL +36790 : 32.731866 : -86.90004 : Stanton, AL +36792 : 32.917983 : -86.89046 : Randolph, AL +36793 : 32.838805 : -86.99911 : Lawley, AL +36801 : 32.660497 : -85.39917 : Opelika, AL +36802 : 32.578185 : -85.349003 : Opelika, AL +36803 : 32.522567 : -85.431517 : Opelika, AL +36804 : 32.556296 : -85.33465 : Opelika, AL +36830 : 32.577135 : -85.47282 : Auburn, AL +36831 : 32.578185 : -85.349003 : Auburn, AL +36832 : 32.589553 : -85.53991 : Auburn, AL +36849 : 32.602434 : -85.4858 : Auburn University, AL +36850 : 32.799998 : -85.64621 : Camp Hill, AL +36851 : 32.286092 : -85.161497 : Cottonton, AL +36852 : 32.745844 : -85.28076 : Cusseta, AL +36853 : 32.787441 : -85.79955 : Dadeville, AL +36854 : 32.777662 : -85.17623 : Valley, AL +36855 : 33.046756 : -85.30102 : Five Points, AL +36856 : 32.282085 : -84.98389 : Fort Mitchell, AL +36858 : 32.297792 : -85.31205 : Hatchechubbee, AL +36859 : 32.229846 : -85.008178 : Holy Trinity, AL +36860 : 32.237339 : -85.41029 : Hurtsboro, AL +36861 : 32.862333 : -85.84588 : Jacksons Gap, AL +36862 : 32.903922 : -85.42905 : Lafayette, AL +36863 : 32.871306 : -85.21314 : Lanett, AL +36865 : 32.578185 : -85.349003 : Loachapoka, AL +36866 : 32.551474 : -85.69859 : Notasulga, AL +36867 : 32.492304 : -85.01943 : Phenix City, AL +36868 : 32.464614 : -85.020604 : Phenix City, AL +36869 : 32.433065 : -85.04512 : Phenix City, AL +36870 : 32.484671 : -85.0752 : Phenix City, AL +36871 : 32.16827 : -85.11621 : Pittsview, AL +36872 : 32.578185 : -85.349003 : Valley, AL +36874 : 32.587751 : -85.18539 : Salem, AL +36875 : 32.315128 : -85.11348 : Seale, AL +36876 : 32.454371 : -87.519156 : Uniontown, AL +36877 : 32.545138 : -85.09212 : Smiths, AL +36879 : 32.733511 : -85.55322 : Waverly, AL +36901 : 32.451618 : -88.131 : Bellamy, AL +36904 : 32.097363 : -88.22647 : Butler, AL +36906 : 32.004227 : -88.200738 : Cromwell, AL +36907 : 32.403275 : -88.36252 : Cuba, AL +36908 : 31.891177 : -88.28508 : Gilbertown, AL +36910 : 32.220752 : -88.15471 : Jachin, AL +36912 : 32.227905 : -88.32468 : Lisman, AL +36913 : 32.004227 : -88.200738 : Melvin, AL +36915 : 31.970871 : -88.34902 : Needham, AL +36916 : 32.209381 : -88.05965 : Pennington, AL +36919 : 31.779344 : -88.30045 : Silas, AL +36921 : 31.96958 : -88.18661 : Toxey, AL +36922 : 32.304709 : -88.17081 : Ward, AL +36925 : 32.487726 : -88.2679 : York, AL +37010 : 36.569635 : -87.10026 : Adams, TN +37011 : 36.170556 : -86.8825 : Antioch, TN +37012 : 36.076635 : -86.01978 : Alexandria, TN +37013 : 36.055115 : -86.64782 : Antioch, TN +37014 : 35.856372 : -86.66189 : Arrington, TN +37015 : 36.299293 : -87.06949 : Ashland City, TN +37016 : 35.951494 : -86.09259 : Auburntown, TN +37018 : 35.642797 : -86.1669 : Beechgrove, TN +37019 : 35.390308 : -86.70969 : Belfast, TN +37020 : 35.616935 : -86.39629 : Bell Buckle, TN +37022 : 36.501049 : -86.3 : Bethpage, TN +37023 : 36.574224 : -87.79018 : Big Rock, TN +37024 : 35.874553 : -86.907565 : Brentwood, TN +37025 : 35.943598 : -87.28991 : Bon Aqua, TN +37026 : 35.699599 : -86.10976 : Bradyville, TN +37027 : 36.007373 : -86.79121 : Brentwood, TN +37028 : 36.633539 : -87.86841 : Bumpus Mills, TN +37029 : 36.047742 : -87.28938 : Burns, TN +37030 : 36.264959 : -85.94893 : Carthage, TN +37031 : 36.377228 : -86.30112 : Castalian Springs, TN +37032 : 36.522355 : -87.02542 : Cedar Hill, TN +37033 : 35.76714 : -87.49418 : Centerville, TN +37034 : 35.639491 : -86.6865 : Chapel Hill, TN +37035 : 36.388731 : -87.13175 : Chapmansboro, TN +37036 : 36.225389 : -87.29179 : Charlotte, TN +37037 : 35.702877 : -86.35134 : Christiana, TN +37040 : 36.528448 : -87.34142 : Clarksville, TN +37041 : 36.477428 : -87.377197 : Clarksville, TN +37042 : 36.58068 : -87.4056 : Clarksville, TN +37043 : 36.506407 : -87.2572 : Clarksville, TN +37044 : 36.531398 : -87.353008 : Clarksville, TN +37046 : 35.7557 : -86.72272 : College Grove, TN +37047 : 35.330683 : -86.8406 : Cornersville, TN +37048 : 36.491753 : -86.59963 : Cottontown, TN +37049 : 36.548569 : -86.67907 : Cross Plains, TN +37050 : 36.373626 : -87.63158 : Cumberland City, TN +37051 : 36.310027 : -87.4128 : Cumberland Furnace, TN +37052 : 36.371609 : -87.4039 : Cunningham, TN +37055 : 36.065779 : -87.40831 : Dickson, TN +37056 : 36.146949 : -87.352971 : Dickson, TN +37057 : 36.389736 : -86.04135 : Dixon Springs, TN +37058 : 36.477136 : -87.85877 : Dover, TN +37059 : 35.993983 : -85.92851 : Dowelltown, TN +37060 : 35.73843 : -86.64441 : Eagleville, TN +37061 : 36.301089 : -87.68198 : Erin, TN +37062 : 35.976983 : -87.14128 : Fairview, TN +37063 : 35.859565 : -86.420958 : Fosterville, TN +37064 : 35.893823 : -86.89919 : Franklin, TN +37065 : 35.895085 : -86.921416 : Franklin, TN +37066 : 36.388997 : -86.4548 : Gallatin, TN +37067 : 35.921811 : -86.7952 : Franklin, TN +37068 : 35.874553 : -86.907565 : Franklin, TN +37069 : 35.97706 : -86.89653 : Franklin, TN +37070 : 36.186605 : -86.785248 : Goodlettsville, TN +37071 : 36.156231 : -86.304922 : Gladeville, TN +37072 : 36.35465 : -86.71879 : Goodlettsville, TN +37073 : 36.427758 : -86.81023 : Greenbrier, TN +37074 : 36.407653 : -86.15305 : Hartsville, TN +37075 : 36.311047 : -86.61173 : Hendersonville, TN +37076 : 36.180507 : -86.60111 : Hermitage, TN +37077 : 36.304701 : -86.621095 : Hendersonville, TN +37078 : 35.924976 : -87.77219 : Hurricane Mills, TN +37079 : 36.48677 : -87.66331 : Indian Mound, TN +37080 : 36.329551 : -86.90949 : Joelton, TN +37082 : 36.084917 : -87.1106 : Kingston Springs, TN +37083 : 36.537994 : -86.01497 : Lafayette, TN +37085 : 35.950979 : -86.29596 : Lascassas, TN +37086 : 36.01333 : -86.56268 : La Vergne, TN +37087 : 36.240331 : -86.29271 : Lebanon, TN +37088 : 36.156231 : -86.304922 : Lebanon, TN +37089 : 35.859565 : -86.420958 : La Vergne, TN +37090 : 36.147433 : -86.31061 : Lebanon, TN +37091 : 35.461359 : -86.7792 : Lewisburg, TN +37095 : 36.000953 : -85.97669 : Liberty, TN +37096 : 35.61432 : -87.87486 : Linden, TN +37097 : 35.769743 : -87.80286 : Lobelville, TN +37098 : 35.882639 : -87.31395 : Lyles, TN +37101 : 36.069712 : -87.64489 : McEwen, TN +37110 : 35.687286 : -85.787 : McMinnville, TN +37111 : 35.678368 : -85.777633 : McMinnville, TN +37115 : 36.264069 : -86.70566 : Madison, TN +37116 : 36.186605 : -86.785248 : Madison, TN +37118 : 35.929221 : -86.18393 : Milton, TN +37119 : 36.631981 : -86.539028 : Mitchellville, TN +37121 : 36.156231 : -86.304922 : Mount Juliet, TN +37122 : 36.195016 : -86.49732 : Mount Juliet, TN +37127 : 35.791021 : -86.34445 : Murfreesboro, TN +37128 : 35.813319 : -86.4455 : Murfreesboro, TN +37129 : 35.896645 : -86.42425 : Murfreesboro, TN +37130 : 35.860152 : -86.3648 : Murfreesboro, TN +37131 : 35.859565 : -86.420958 : Murfreesboro, TN +37132 : 35.859565 : -86.420958 : Murfreesboro, TN +37133 : 35.859565 : -86.420958 : Murfreesboro, TN +37134 : 36.022057 : -87.9564 : New Johnsonville, TN +37135 : 35.940383 : -86.6686 : Nolensville, TN +37136 : 36.156231 : -86.304922 : Norene, TN +37137 : 35.88662 : -87.50471 : Nunnelly, TN +37138 : 36.243698 : -86.62308 : Old Hickory, TN +37140 : 35.863362 : -87.67179 : Only, TN +37141 : 36.60983 : -86.69226 : Orlinda, TN +37142 : 36.421075 : -87.49893 : Palmyra, TN +37143 : 36.121471 : -87.04467 : Pegram, TN +37144 : 35.301331 : -86.63337 : Petersburg, TN +37145 : 36.377253 : -85.90866 : Pleasant Shade, TN +37146 : 36.393153 : -87.0285 : Pleasant View, TN +37147 : 35.679617 : -87.65472 : Pleasantville, TN +37148 : 36.576137 : -86.51355 : Portland, TN +37149 : 35.800108 : -86.19391 : Readyville, TN +37150 : 36.543183 : -85.81114 : Red Boiling Springs, TN +37151 : 36.335403 : -86.0317 : Riddleton, TN +37152 : 36.396821 : -86.76679 : Ridgetop, TN +37153 : 35.751016 : -86.55056 : Rockvale, TN +37155 : 36.477428 : -87.377197 : Saint Bethlehem, TN +37160 : 35.47066 : -86.45974 : Shelbyville, TN +37161 : 35.471531 : -86.489019 : Shelbyville, TN +37162 : 35.510825 : -86.450042 : Shelbyville, TN +37165 : 36.283543 : -87.458058 : Slayden, TN +37166 : 35.922583 : -85.80108 : Smithville, TN +37167 : 35.968513 : -86.52231 : Smyrna, TN +37171 : 36.354736 : -87.30571 : Southside, TN +37172 : 36.513979 : -86.86892 : Springfield, TN +37174 : 35.73062 : -86.91144 : Spring Hill, TN +37175 : 36.316042 : -87.89028 : Stewart, TN +37178 : 36.323799 : -87.77676 : Tennessee Ridge, TN +37179 : 35.79867 : -86.90734 : Thompsons Station, TN +37180 : 35.621614 : -86.57353 : Unionville, TN +37181 : 36.237999 : -87.49831 : Vanleer, TN +37183 : 35.508541 : -86.30889 : Wartrace, TN +37184 : 36.096166 : -86.13715 : Watertown, TN +37185 : 36.085376 : -87.81626 : Waverly, TN +37186 : 36.579247 : -86.23954 : Westmoreland, TN +37187 : 36.117433 : -87.21761 : White Bluff, TN +37188 : 36.467624 : -86.66941 : White House, TN +37189 : 36.27062 : -86.82052 : Whites Creek, TN +37190 : 35.813335 : -86.05538 : Woodbury, TN +37191 : 36.503792 : -87.54263 : Woodlawn, TN +37201 : 36.164556 : -86.77738 : Nashville, TN +37202 : 36.340304 : -86.827254 : Nashville, TN +37203 : 36.152607 : -86.78927 : Nashville, TN +37204 : 36.112058 : -86.77626 : Nashville, TN +37205 : 36.113558 : -86.86207 : Nashville, TN +37206 : 36.180806 : -86.74176 : Nashville, TN +37207 : 36.215535 : -86.77317 : Nashville, TN +37208 : 36.174806 : -86.80252 : Nashville, TN +37209 : 36.151324 : -86.8559 : Nashville, TN +37210 : 36.140857 : -86.74437 : Nashville, TN +37211 : 36.079259 : -86.72584 : Nashville, TN +37212 : 36.133251 : -86.80057 : Nashville, TN +37213 : 36.167179 : -86.76777 : Nashville, TN +37214 : 36.166956 : -86.66869 : Nashville, TN +37215 : 36.098408 : -86.82522 : Nashville, TN +37216 : 36.213004 : -86.72594 : Nashville, TN +37217 : 36.103408 : -86.66616 : Nashville, TN +37218 : 36.206755 : -86.85215 : Nashville, TN +37219 : 36.166806 : -86.78172 : Nashville, TN +37220 : 36.069659 : -86.77266 : Nashville, TN +37221 : 36.065032 : -86.94674 : Nashville, TN +37222 : 36.056164 : -86.980116 : Nashville, TN +37224 : 36.186605 : -86.785248 : Nashville, TN +37227 : 36.186605 : -86.785248 : Nashville, TN +37228 : 36.190205 : -86.80078 : Nashville, TN +37229 : 36.186605 : -86.785248 : Nashville, TN +37230 : 36.186605 : -86.785248 : Nashville, TN +37232 : 36.186605 : -86.785248 : Nashville, TN +37234 : 36.186605 : -86.785248 : Nashville, TN +37235 : 36.186605 : -86.785248 : Nashville, TN +37236 : 36.186605 : -86.785248 : Nashville, TN +37237 : 36.186605 : -86.785248 : Nashville, TN +37238 : 36.186605 : -86.785248 : Nashville, TN +37239 : 36.186605 : -86.785248 : Nashville, TN +37240 : 36.186605 : -86.785248 : Nashville, TN +37241 : 36.186605 : -86.785248 : Nashville, TN +37242 : 36.186605 : -86.785248 : Nashville, TN +37243 : 36.167606 : -86.784498 : Nashville, TN +37244 : 36.186605 : -86.785248 : Nashville, TN +37245 : 36.186605 : -86.785248 : Nashville, TN +37246 : 36.158606 : -86.789998 : Nashville, TN +37247 : 36.186605 : -86.785248 : Nashville, TN +37248 : 36.186605 : -86.785248 : Nashville, TN +37249 : 36.186605 : -86.785248 : Nashville, TN +37250 : 36.186605 : -86.785248 : Nashville, TN +37301 : 35.429018 : -85.77679 : Altamont, TN +37302 : 35.017404 : -85.01322 : Apison, TN +37303 : 35.441378 : -84.61975 : Athens, TN +37304 : 35.345216 : -85.138046 : Bakewell, TN +37305 : 35.467486 : -85.67736 : Beersheba Springs, TN +37306 : 35.106467 : -86.2035 : Belvidere, TN +37307 : 35.172376 : -84.63913 : Benton, TN +37308 : 35.357001 : -84.99288 : Birchwood, TN +37309 : 35.302952 : -84.74359 : Calhoun, TN +37310 : 35.275808 : -84.76927 : Charleston, TN +37311 : 35.146362 : -84.88723 : Cleveland, TN +37312 : 35.219532 : -84.86489 : Cleveland, TN +37313 : 35.361678 : -85.70288 : Coalmont, TN +37314 : 35.246689 : -84.303121 : Cokercreek, TN +37315 : 35.047891 : -85.057359 : Collegedale, TN +37316 : 34.995039 : -84.72951 : Conasauga, TN +37317 : 35.008596 : -84.3859 : Copperhill, TN +37318 : 35.168862 : -86.00538 : Cowan, TN +37320 : 35.17272 : -84.861885 : Cleveland, TN +37321 : 35.495894 : -85.01032 : Dayton, TN +37322 : 35.503723 : -84.80741 : Decatur, TN +37323 : 35.114482 : -84.82836 : Cleveland, TN +37324 : 35.234156 : -86.0324 : Decherd, TN +37325 : 35.245578 : -84.58812 : Delano, TN +37326 : 35.030319 : -84.38284 : Ducktown, TN +37327 : 35.399109 : -85.38755 : Dunlap, TN +37328 : 35.018508 : -86.36085 : Elora, TN +37329 : 35.41142 : -84.47473 : Englewood, TN +37330 : 35.280936 : -86.12247 : Estill Springs, TN +37331 : 35.325991 : -84.53015 : Etowah, TN +37332 : 35.585467 : -84.94125 : Evensville, TN +37333 : 35.14864 : -84.31707 : Farner, TN +37334 : 35.136177 : -86.57433 : Fayetteville, TN +37335 : 35.063253 : -86.41866 : Flintville, TN +37336 : 35.308786 : -84.93042 : Georgetown, TN +37337 : 35.78168 : -84.87955 : Grandview, TN +37338 : 35.443503 : -85.18397 : Graysville, TN +37339 : 35.373152 : -85.62361 : Gruetli Laager, TN +37340 : 35.013853 : -85.53107 : Guild, TN +37341 : 35.19154 : -85.09827 : Harrison, TN +37342 : 35.39156 : -85.96367 : Hillsboro, TN +37343 : 35.167987 : -85.21158 : Hixson, TN +37345 : 35.052678 : -86.27141 : Huntland, TN +37347 : 35.065007 : -85.61818 : Jasper, TN +37348 : 35.1149 : -86.4421 : Kelso, TN +37349 : 35.497637 : -86.07482 : Manchester, TN +37350 : 34.998375 : -85.34865 : Lookout Mountain, TN +37351 : 35.104789 : -85.26415 : Lupton City, TN +37352 : 35.276795 : -86.35264 : Lynchburg, TN +37353 : 35.114036 : -84.98535 : McDonald, TN +37354 : 35.506259 : -84.35738 : Madisonville, TN +37355 : 35.500068 : -86.08414 : Manchester, TN +37356 : 35.238756 : -85.82911 : Monteagle, TN +37357 : 35.596484 : -85.92275 : Morrison, TN +37359 : 35.203361 : -86.40563 : Mulberry, TN +37360 : 35.433962 : -86.26045 : Normandy, TN +37361 : 35.108559 : -84.70139 : Ocoee, TN +37362 : 35.043475 : -84.73957 : Oldfort, TN +37363 : 35.087881 : -85.06005 : Ooltewah, TN +37364 : 35.17272 : -84.861885 : Cleveland, TN +37365 : 35.375156 : -85.55501 : Palmer, TN +37366 : 35.304582 : -85.85456 : Pelham, TN +37367 : 35.635097 : -85.17161 : Pikeville, TN +37369 : 35.191719 : -84.49446 : Reliance, TN +37370 : 35.363968 : -84.70392 : Riceville, TN +37371 : 35.441376 : -84.641623 : Athens, TN +37372 : 35.175522 : -86.098338 : Saint Andrews, TN +37373 : 35.391643 : -85.10329 : Sale Creek, TN +37374 : 35.19174 : -85.64149 : Sequatchie, TN +37375 : 35.193891 : -85.91048 : Sewanee, TN +37376 : 35.060787 : -85.92217 : Sherwood, TN +37377 : 35.159778 : -85.33332 : Signal Mountain, TN +37378 : 35.678368 : -85.777633 : Smartt, TN +37379 : 35.269694 : -85.16227 : Soddy Daisy, TN +37380 : 35.045886 : -85.72513 : South Pittsburg, TN +37381 : 35.68801 : -84.82777 : Spring City, TN +37382 : 35.497637 : -86.07482 : Summitville, TN +37383 : 35.180503 : -85.903522 : Sewanee, TN +37384 : 35.221092 : -85.209082 : Soddy Daisy, TN +37385 : 35.345237 : -84.27728 : Tellico Plains, TN +37387 : 35.275367 : -85.74039 : Tracy City, TN +37388 : 35.357522 : -86.21484 : Tullahoma, TN +37389 : 35.497637 : -86.07482 : Arnold AFB, TN +37391 : 35.098017 : -84.36195 : Turtletown, TN +37394 : 35.538116 : -85.86169 : Viola, TN +37395 : 35.61722 : -84.928921 : Watts Bar Dam, TN +37396 : 34.994156 : -85.48755 : Whiteside, TN +37397 : 35.20297 : -85.49733 : Whitwell, TN +37398 : 35.192829 : -86.14045 : Winchester, TN +37401 : 35.017818 : -85.206426 : Chattanooga, TN +37402 : 35.046324 : -85.31199 : Chattanooga, TN +37403 : 35.046173 : -85.2988 : Chattanooga, TN +37404 : 35.030474 : -85.2749 : Chattanooga, TN +37405 : 35.081323 : -85.31903 : Chattanooga, TN +37406 : 35.065723 : -85.25014 : Chattanooga, TN +37407 : 35.000825 : -85.28673 : Chattanooga, TN +37408 : 35.030907 : -85.31004 : Chattanooga, TN +37409 : 35.001842 : -85.33092 : Chattanooga, TN +37410 : 35.002342 : -85.31407 : Chattanooga, TN +37411 : 35.023824 : -85.2333 : Chattanooga, TN +37412 : 34.996674 : -85.23748 : Chattanooga, TN +37414 : 35.221092 : -85.209082 : Chattanooga, TN +37415 : 35.116285 : -85.28466 : Chattanooga, TN +37416 : 35.089805 : -85.18152 : Chattanooga, TN +37419 : 35.031674 : -85.37276 : Chattanooga, TN +37421 : 35.028574 : -85.15939 : Chattanooga, TN +37422 : 35.221092 : -85.209082 : Chattanooga, TN +37424 : 35.221092 : -85.209082 : Chattanooga, TN +37450 : 35.221092 : -85.209082 : Chattanooga, TN +37499 : 35.221092 : -85.209082 : Chattanooga, TN +37501 : 35.169255 : -89.990415 : Memphis, TN +37601 : 36.331006 : -82.3386 : Johnson City, TN +37602 : 36.271729 : -82.501212 : Johnson City, TN +37604 : 36.312633 : -82.3802 : Johnson City, TN +37605 : 36.315795 : -82.383792 : Johnson City, TN +37614 : 36.302479 : -82.36984 : Johnson City, TN +37615 : 36.405338 : -82.44593 : Johnson City, TN +37616 : 36.218863 : -82.74704 : Afton, TN +37617 : 36.534729 : -82.37229 : Blountville, TN +37618 : 36.469605 : -82.22998 : Bluff City, TN +37620 : 36.561341 : -82.16869 : Bristol, TN +37621 : 36.504158 : -82.26446 : Bristol, TN +37625 : 36.504158 : -82.26446 : Bristol, TN +37640 : 36.335618 : -81.97775 : Butler, TN +37641 : 36.21503 : -82.6744 : Chuckey, TN +37642 : 36.534489 : -82.71292 : Church Hill, TN +37643 : 36.355251 : -82.18843 : Elizabethton, TN +37644 : 36.436637 : -82.051765 : Elizabethton, TN +37645 : 36.560966 : -82.65855 : Mount Carmel, TN +37650 : 36.128301 : -82.4273 : Erwin, TN +37656 : 36.4017 : -82.62705 : Fall Branch, TN +37657 : 36.011662 : -82.56056 : Flag Pond, TN +37658 : 36.269157 : -82.17558 : Hampton, TN +37659 : 36.293805 : -82.49704 : Jonesborough, TN +37660 : 36.547133 : -82.55408 : Kingsport, TN +37662 : 36.530517 : -82.529816 : Kingsport, TN +37663 : 36.468953 : -82.49765 : Kingsport, TN +37664 : 36.522968 : -82.51162 : Kingsport, TN +37665 : 36.583233 : -82.57249 : Kingsport, TN +37669 : 36.504158 : -82.26446 : Kingsport, TN +37680 : 36.580229 : -81.75509 : Laurel Bloomery, TN +37681 : 36.246547 : -82.62095 : Limestone, TN +37682 : 36.296007 : -82.305359 : Milligan College, TN +37683 : 36.451041 : -81.81906 : Mountain City, TN +37684 : 36.309201 : -82.37338 : Mountain Home, TN +37686 : 36.430799 : -82.33344 : Piney Flats, TN +37687 : 36.192236 : -82.0975 : Roan Mountain, TN +37688 : 36.529827 : -81.91718 : Shady Valley, TN +37690 : 36.254547 : -82.55708 : Telford, TN +37691 : 36.367169 : -81.75553 : Trade, TN +37692 : 36.20493 : -82.31214 : Unicoi, TN +37694 : 36.376371 : -82.278 : Watauga, TN +37699 : 36.504158 : -82.26446 : Piney Flats, TN +37701 : 35.784708 : -83.97956 : Alcoa, TN +37705 : 36.217896 : -84.01131 : Andersonville, TN +37707 : 36.566257 : -83.636479 : Arthur, TN +37708 : 36.320262 : -83.32206 : Bean Station, TN +37709 : 36.161001 : -83.67602 : Blaine, TN +37710 : 36.15231 : -84.28968 : Briceville, TN +37711 : 36.274715 : -83.05737 : Bulls Gap, TN +37713 : 36.081083 : -83.13505 : Bybee, TN +37714 : 36.290972 : -84.22104 : Caryville, TN +37715 : 36.567165 : -83.94202 : Clairfield, TN +37716 : 36.099283 : -84.14656 : Clinton, TN +37717 : 36.110028 : -84.167208 : Clinton, TN +37719 : 36.029022 : -84.42541 : Coalfield, TN +37721 : 36.141925 : -83.8066 : Corryton, TN +37722 : 35.820011 : -83.24441 : Cosby, TN +37723 : 35.933213 : -84.86226 : Crab Orchard, TN +37724 : 36.566416 : -83.67499 : Cumberland Gap, TN +37725 : 35.996454 : -83.39791 : Dandridge, TN +37726 : 36.186086 : -84.838 : Deer Lodge, TN +37727 : 35.900308 : -83.01575 : Del Rio, TN +37729 : 36.510252 : -84.02712 : Duff, TN +37730 : 36.553851 : -83.97503 : Eagan, TN +37731 : 36.531811 : -83.03714 : Eidson, TN +37732 : 36.327029 : -84.60898 : Elgin, TN +37733 : 36.351914 : -84.713666 : Rugby, TN +37737 : 35.760657 : -84.11925 : Friendsville, TN +37738 : 35.733627 : -83.47156 : Gatlinburg, TN +37742 : 35.66806 : -84.1817 : Greenback, TN +37743 : 36.102325 : -82.85446 : Greeneville, TN +37744 : 36.182289 : -82.73948 : Greeneville, TN +37745 : 36.229928 : -82.81406 : Greeneville, TN +37748 : 35.930801 : -84.53135 : Harriman, TN +37752 : 36.581713 : -83.61278 : Harrogate, TN +37753 : 35.822918 : -83.10835 : Hartford, TN +37754 : 36.138832 : -84.03142 : Heiskell, TN +37755 : 36.434757 : -84.53288 : Helenwood, TN +37756 : 36.351978 : -84.42137 : Huntsville, TN +37757 : 36.326509 : -84.17277 : Jacksboro, TN +37760 : 36.109404 : -83.48325 : Jefferson City, TN +37762 : 36.578257 : -84.13698 : Jellico, TN +37763 : 35.839274 : -84.50562 : Kingston, TN +37764 : 35.97555 : -83.61374 : Kodak, TN +37765 : 36.572764 : -83.05028 : Kyles Ford, TN +37766 : 36.388766 : -84.08164 : La Follette, TN +37769 : 36.221786 : -84.14984 : Lake City, TN +37770 : 36.133166 : -84.66792 : Lancing, TN +37771 : 35.815524 : -84.29301 : Lenoir City, TN +37772 : 35.800329 : -84.23281 : Lenoir City, TN +37773 : 36.466398 : -83.678621 : Lone Mountain, TN +37774 : 35.725969 : -84.33069 : Loudon, TN +37777 : 35.835374 : -84.01196 : Louisville, TN +37778 : 36.213293 : -83.275211 : Lowland, TN +37779 : 36.20423 : -83.75046 : Luttrell, TN +37801 : 35.709071 : -84.05015 : Maryville, TN +37802 : 35.728283 : -83.933815 : Maryville, TN +37803 : 35.693358 : -83.98412 : Maryville, TN +37804 : 35.781607 : -83.93591 : Maryville, TN +37806 : 36.086398 : -83.7413 : Mascot, TN +37807 : 36.251265 : -83.82558 : Maynardville, TN +37809 : 36.162502 : -83.0211 : Midway, TN +37810 : 36.188878 : -83.09599 : Mohawk, TN +37811 : 36.352009 : -83.22676 : Mooresburg, TN +37813 : 36.186008 : -83.27474 : Morristown, TN +37814 : 36.225565 : -83.30799 : Morristown, TN +37815 : 36.213293 : -83.275211 : Morristown, TN +37816 : 36.213293 : -83.275211 : Morristown, TN +37818 : 36.190417 : -82.96185 : Mosheim, TN +37819 : 36.547121 : -84.18206 : Newcomb, TN +37820 : 36.089568 : -83.56389 : New Market, TN +37821 : 35.963276 : -83.20116 : Newport, TN +37822 : 35.947688 : -83.106554 : Newport, TN +37824 : 36.449963 : -83.591129 : New Tazewell, TN +37825 : 36.417235 : -83.65241 : New Tazewell, TN +37826 : 35.548316 : -84.58403 : Niota, TN +37828 : 36.190257 : -84.07017 : Norris, TN +37829 : 35.98291 : -84.60149 : Oakdale, TN +37830 : 35.992691 : -84.27044 : Oak Ridge, TN +37831 : 36.105971 : -84.195796 : Oak Ridge, TN +37838 : 35.199411 : -85.93221 : Sewanee, TN +37840 : 36.045663 : -84.36685 : Oliver Springs, TN +37841 : 36.49787 : -84.51808 : Oneida, TN +37842 : 35.87543 : -84.792927 : Ozone, TN +37843 : 36.013728 : -83.05351 : Parrottsville, TN +37845 : 36.09122 : -84.44598 : Petros, TN +37846 : 35.679462 : -84.45838 : Philadelphia, TN +37847 : 36.432891 : -84.27781 : Pioneer, TN +37848 : 36.24404 : -83.68053 : Powder Springs, TN +37849 : 36.044507 : -84.04192 : Powell, TN +37851 : 36.557884 : -83.81392 : Pruden, TN +37852 : 36.335832 : -84.6022 : Robbins, TN +37853 : 35.834126 : -83.93452 : Rockford, TN +37854 : 35.861763 : -84.70042 : Rockwood, TN +37857 : 36.413437 : -82.96804 : Rogersville, TN +37860 : 36.248645 : -83.19321 : Russellville, TN +37861 : 36.243526 : -83.51516 : Rutledge, TN +37862 : 35.818653 : -83.59197 : Sevierville, TN +37863 : 35.792313 : -83.5605 : Pigeon Forge, TN +37864 : 35.854211 : -83.613849 : Sevierville, TN +37865 : 35.853932 : -83.74476 : Seymour, TN +37866 : 36.355257 : -83.82637 : Sharps Chapel, TN +37867 : 36.580283 : -83.647254 : Shawanee, TN +37868 : 35.880902 : -83.556134 : Pigeon Forge, TN +37869 : 36.521297 : -83.22818 : Sneedville, TN +37870 : 36.45491 : -83.8546 : Speedwell, TN +37871 : 36.04051 : -83.67934 : Strawberry Plains, TN +37872 : 36.262842 : -84.66549 : Sunbright, TN +37873 : 36.51276 : -82.83526 : Surgoinsville, TN +37874 : 35.598659 : -84.46613 : Sweetwater, TN +37876 : 35.860157 : -83.48694 : Sevierville, TN +37877 : 36.154381 : -83.40946 : Talbott, TN +37878 : 35.63373 : -83.93138 : Tallassee, TN +37879 : 36.465808 : -83.52357 : Tazewell, TN +37880 : 35.684788 : -84.67782 : Ten Mile, TN +37881 : 36.407028 : -83.34113 : Thorn Hill, TN +37882 : 35.680116 : -83.75801 : Townsend, TN +37885 : 35.543355 : -84.1933 : Vonore, TN +37886 : 35.734481 : -83.81988 : Walland, TN +37887 : 36.091018 : -84.56863 : Wartburg, TN +37888 : 36.310299 : -83.60658 : Washburn, TN +37890 : 36.094622 : -83.29024 : White Pine, TN +37891 : 36.277627 : -83.13987 : Whitesburg, TN +37892 : 36.563797 : -84.41935 : Winfield, TN +37893 : 36.383425 : -84.517287 : Winona, TN +37901 : 36.032334 : -83.884804 : Knoxville, TN +37902 : 35.964032 : -83.91964 : Knoxville, TN +37909 : 35.947846 : -84.01554 : Knoxville, TN +37912 : 36.008048 : -83.97962 : Knoxville, TN +37913 : 35.906808 : -84.024627 : Knoxville, TN +37914 : 35.988528 : -83.84981 : Knoxville, TN +37915 : 35.97125 : -83.90149 : Knoxville, TN +37916 : 35.955732 : -83.93271 : Knoxville, TN +37917 : 35.991982 : -83.91859 : Knoxville, TN +37918 : 36.046598 : -83.92511 : Knoxville, TN +37919 : 35.922881 : -84.00384 : Knoxville, TN +37920 : 35.923517 : -83.89042 : Knoxville, TN +37921 : 35.973731 : -83.97413 : Knoxville, TN +37922 : 35.875925 : -84.12608 : Knoxville, TN +37923 : 35.928997 : -84.07543 : Knoxville, TN +37924 : 36.029987 : -83.80705 : Knoxville, TN +37927 : 35.990142 : -83.96218 : Knoxville, TN +37928 : 35.990142 : -83.96218 : Knoxville, TN +37929 : 35.922421 : -83.795492 : Knoxville, TN +37930 : 35.9029 : -83.953554 : Knoxville, TN +37931 : 35.976063 : -84.1182 : Knoxville, TN +37932 : 35.919695 : -84.17255 : Knoxville, TN +37933 : 35.990142 : -83.96218 : Knoxville, TN +37937 : 35.187308 : -85.47929 : Powells Crossroads, TN +37938 : 36.113552 : -83.93785 : Knoxville, TN +37939 : 35.990142 : -83.96218 : Knoxville, TN +37940 : 35.990142 : -83.96218 : Knoxville, TN +37950 : 35.990142 : -83.96218 : Knoxville, TN +37951 : 35.972146 : -83.950384 : Knoxville, TN +37990 : 35.990142 : -83.96218 : Knoxville, TN +37995 : 35.990142 : -83.96218 : Knoxville, TN +37996 : 35.990142 : -83.96218 : Knoxville, TN +37997 : 35.990142 : -83.96218 : Knoxville, TN +37998 : 35.935134 : -83.750258 : Knoxville, TN +37999 : 35.990142 : -83.96218 : Knoxville, TN +38001 : 35.796157 : -89.14016 : Alamo, TN +38002 : 35.272386 : -89.71198 : Arlington, TN +38004 : 35.422035 : -89.80806 : Atoka, TN +38006 : 35.696656 : -89.08457 : Bells, TN +38007 : 36.158668 : -89.437684 : Bogota, TN +38008 : 35.25543 : -88.98751 : Bolivar, TN +38010 : 35.288624 : -89.48802 : Braden, TN +38011 : 35.474694 : -89.72344 : Brighton, TN +38012 : 35.590558 : -89.2609 : Brownsville, TN +38014 : 35.201738 : -89.971538 : Brunswick, TN +38015 : 35.551277 : -89.82387 : Burlison, TN +38016 : 35.177475 : -89.776835 : Memphis, TN +38017 : 35.057224 : -89.67417 : Collierville, TN +38018 : 35.157681 : -89.78249 : Cordova, TN +38019 : 35.560622 : -89.64201 : Covington, TN +38021 : 35.875396 : -89.16485 : Crockett Mills, TN +38023 : 35.489296 : -89.94754 : Drummonds, TN +38024 : 36.038042 : -89.38613 : Dyersburg, TN +38025 : 36.046851 : -89.443779 : Dyersburg, TN +38026 : 35.132219 : -90.047966 : Memphis, TN +38027 : 35.201738 : -89.971538 : Collierville, TN +38028 : 35.203968 : -89.62203 : Eads, TN +38029 : 35.201738 : -89.971538 : Ellendale, TN +38030 : 35.980206 : -89.60112 : Finley, TN +38034 : 35.908286 : -89.24555 : Friendship, TN +38036 : 35.320487 : -89.6215 : Gallaway, TN +38037 : 35.82036 : -89.41497 : Gates, TN +38039 : 35.057728 : -89.18599 : Grand Junction, TN +38040 : 35.879497 : -89.41989 : Halls, TN +38041 : 35.629555 : -89.86945 : Henning, AR +38042 : 35.149952 : -89.1536 : Hickory Valley, TN +38043 : 35.199265 : -89.414113 : Hickory Withe, TN +38044 : 35.211663 : -88.80988 : Hornsby, TN +38045 : 35.290428 : -89.232185 : Laconia, TN +38046 : 35.049339 : -89.23476 : La Grange, TN +38047 : 36.063947 : -89.62287 : Lenox, TN +38048 : 35.15066 : -89.481362 : Macon, TN +38049 : 35.391363 : -89.53988 : Mason, TN +38050 : 35.815535 : -89.22386 : Maury City, TN +38052 : 35.074302 : -88.90845 : Middleton, TN +38053 : 35.347965 : -89.90668 : Millington, TN +38054 : 35.334132 : -89.870636 : Millington, TN +38055 : 35.201738 : -89.971538 : Millington, TN +38056 : 36.046851 : -89.443779 : Miston, TN +38057 : 35.055545 : -89.37347 : Moscow, TN +38058 : 35.451159 : -89.80845 : Munford, TN +38059 : 36.114872 : -89.25419 : Newbern, TN +38060 : 35.214462 : -89.5034 : Oakland, TN +38061 : 35.067152 : -88.76534 : Pocahontas, TN +38063 : 35.637993 : -89.86859 : Ripley, AR +38066 : 35.076213 : -89.5329 : Rossville, TN +38067 : 35.090194 : -89.02951 : Saulsbury, TN +38068 : 35.275036 : -89.32907 : Somerville, TN +38069 : 35.459089 : -89.35699 : Stanton, TN +38070 : 35.942019 : -89.243405 : Tigrett, TN +38071 : 35.414319 : -89.818781 : Tipton, TN +38073 : 35.839785 : -89.40664 : Gates, TN +38074 : 35.213371 : -88.990028 : Bolivar, TN +38075 : 35.35001 : -89.15508 : Whiteville, TN +38076 : 35.152913 : -89.43406 : Williston, TN +38077 : 36.344296 : -89.522851 : Wynnburg, TN +38079 : 36.513386 : -89.50472 : Tiptonville, KY +38080 : 36.224429 : -89.48641 : Ridgely, TN +38083 : 35.201738 : -89.971538 : Millington, TN +38088 : 35.201738 : -89.971538 : Cordova, TN +38101 : 35.050667 : -89.847782 : Memphis, TN +38103 : 35.146131 : -90.0534 : Memphis, TN +38104 : 35.133825 : -90.00463 : Memphis, TN +38105 : 35.15275 : -90.0356 : Memphis, TN +38106 : 35.103019 : -90.04017 : Memphis, TN +38107 : 35.167515 : -90.02224 : Memphis, TN +38108 : 35.174165 : -89.96028 : Memphis, TN +38109 : 35.050286 : -90.07523 : Memphis, TN +38110 : 35.201738 : -89.971538 : Memphis, TN +38111 : 35.10935 : -89.94363 : Memphis, TN +38112 : 35.148605 : -89.97479 : Memphis, TN +38113 : 35.12738 : -89.984484 : Memphis, TN +38114 : 35.101525 : -89.98543 : Memphis, TN +38115 : 35.057311 : -89.86291 : Memphis, TN +38116 : 35.03319 : -90.01128 : Memphis, TN +38117 : 35.112929 : -89.90389 : Memphis, TN +38118 : 35.048455 : -89.92426 : Memphis, TN +38119 : 35.082936 : -89.84892 : Memphis, TN +38120 : 35.124818 : -89.86562 : Memphis, TN +38122 : 35.155589 : -89.92315 : Memphis, TN +38124 : 35.201738 : -89.971538 : Memphis, TN +38125 : 35.035466 : -89.80329 : Memphis, TN +38126 : 35.126469 : -90.04359 : Memphis, TN +38127 : 35.223796 : -90.00646 : Memphis, TN +38128 : 35.219882 : -89.92588 : Memphis, TN +38130 : 35.201738 : -89.971538 : Memphis, TN +38131 : 35.063236 : -89.99403 : Memphis, TN +38132 : 35.073545 : -89.99788 : Memphis, TN +38133 : 35.208709 : -89.80518 : Memphis, TN +38134 : 35.193046 : -89.86559 : Memphis, TN +38135 : 35.232085 : -89.85214 : Memphis, TN +38136 : 35.201738 : -89.971538 : Memphis, TN +38137 : 35.201738 : -89.971538 : Memphis, TN +38138 : 35.088885 : -89.80677 : Germantown, TN +38139 : 35.087468 : -89.7615 : Germantown, TN +38140 : 35.201738 : -89.971538 : Memphis, TN +38141 : 35.016803 : -89.84701 : Memphis, TN +38142 : 35.201738 : -89.971538 : Memphis, TN +38143 : 35.201738 : -89.971538 : Memphis, TN +38145 : 35.201738 : -89.971538 : Memphis, TN +38146 : 35.201738 : -89.971538 : Memphis, TN +38147 : 35.201738 : -89.971538 : Memphis, TN +38148 : 35.201738 : -89.971538 : Memphis, TN +38150 : 35.201738 : -89.971538 : Memphis, TN +38151 : 35.201738 : -89.971538 : Memphis, TN +38152 : 35.201738 : -89.971538 : Memphis, TN +38157 : 35.114416 : -89.89189 : Memphis, TN +38159 : 35.201738 : -89.971538 : Memphis, TN +38160 : 34.259164 : -89.06039 : Metcalfe, MS +38161 : 35.201738 : -89.971538 : Memphis, TN +38163 : 35.201738 : -89.971538 : Memphis, TN +38165 : 35.201738 : -89.971538 : Memphis, TN +38166 : 35.201738 : -89.971538 : Memphis, TN +38167 : 35.201738 : -89.971538 : Memphis, TN +38168 : 35.201738 : -89.971538 : Memphis, TN +38173 : 35.201738 : -89.971538 : Memphis, TN +38174 : 35.201738 : -89.971538 : Memphis, TN +38175 : 35.201738 : -89.971538 : Memphis, TN +38177 : 35.201738 : -89.971538 : Memphis, TN +38181 : 35.201738 : -89.971538 : Memphis, TN +38182 : 35.201738 : -89.971538 : Memphis, TN +38183 : 35.201738 : -89.971538 : Germantown, TN +38184 : 35.201738 : -89.971538 : Memphis, TN +38186 : 35.201738 : -89.971538 : Memphis, TN +38187 : 35.201738 : -89.971538 : Memphis, TN +38188 : 35.201738 : -89.971538 : Memphis, TN +38190 : 35.201738 : -89.971538 : Memphis, TN +38193 : 35.201738 : -89.971538 : Memphis, TN +38194 : 35.201738 : -89.971538 : Memphis, TN +38195 : 35.201738 : -89.971538 : Memphis, TN +38197 : 35.201738 : -89.971538 : Memphis, TN +38201 : 36.133065 : -88.52246 : McKenzie, TN +38220 : 35.98269 : -88.66966 : Atwood, TN +38221 : 36.254423 : -88.04885 : Big Sandy, TN +38222 : 36.458738 : -88.14836 : Buchanan, TN +38223 : 36.310995 : -88.260367 : Como, TN +38224 : 36.395616 : -88.49515 : Cottage Grove, TN +38225 : 36.305305 : -88.6869 : Dresden, TN +38226 : 36.488409 : -88.66672 : Dukedom, TN +38229 : 36.223573 : -88.60614 : Gleason, TN +38230 : 36.154281 : -88.76867 : Greenfield, TN +38231 : 36.210847 : -88.42518 : Henry, TN +38232 : 36.339084 : -89.33228 : Hornbeak, TN +38233 : 36.201487 : -89.03087 : Kenton, TN +38235 : 35.992987 : -88.57656 : McLemoresville, TN +38236 : 36.167573 : -88.26817 : Mansfield, TN +38237 : 36.353928 : -88.84191 : Martin, TN +38238 : 36.282357 : -88.738132 : Martin, TN +38240 : 36.253678 : -89.25364 : Obion, TN +38241 : 36.427351 : -88.59234 : Palmersville, TN +38242 : 36.300311 : -88.32891 : Paris, TN +38251 : 36.444446 : -88.35903 : Puryear, TN +38253 : 36.307957 : -89.0377 : Rives, TN +38254 : 36.379051 : -89.353821 : Samburg, TN +38255 : 36.236377 : -88.83586 : Sharon, TN +38256 : 36.330953 : -88.12309 : Springville, TN +38257 : 36.483302 : -88.87895 : South Fulton, TN +38258 : 36.016599 : -88.61825 : Trezevant, TN +38259 : 36.198652 : -89.18203 : Trimble, TN +38260 : 36.358158 : -89.17888 : Troy, TN +38261 : 36.426933 : -89.0727 : Union City, TN +38271 : 36.458295 : -89.233227 : Woodland Mills, TN +38281 : 36.354384 : -89.149881 : Union City, TN +38301 : 35.60758 : -88.81959 : Jackson, TN +38302 : 35.612405 : -88.841225 : Jackson, TN +38303 : 35.612405 : -88.841225 : Jackson, TN +38305 : 35.693101 : -88.80653 : Jackson, TN +38308 : 35.612405 : -88.841225 : Jackson, TN +38310 : 35.241412 : -88.38425 : Adamsville, TN +38311 : 35.436584 : -88.11912 : Bath Springs, TN +38313 : 35.601914 : -88.62354 : Beech Bluff, TN +38314 : 35.612405 : -88.841225 : Jackson, TN +38315 : 35.260888 : -88.64275 : Bethel Springs, TN +38316 : 36.067294 : -88.81209 : Bradford, TN +38317 : 36.038551 : -88.25144 : Bruceton, TN +38318 : 35.960377 : -88.26959 : Buena Vista, TN +38320 : 36.050286 : -88.10137 : Camden, TN +38321 : 35.844195 : -88.5322 : Cedar Grove, TN +38324 : 35.867454 : -88.39343 : Clarksburg, TN +38326 : 35.041335 : -88.27379 : Counce, TN +38327 : 35.225753 : -88.30456 : Crump, TN +38328 : 35.667861 : -88.21648 : Darden, TN +38329 : 35.546839 : -88.12345 : Decaturville, TN +38330 : 36.073575 : -89.01767 : Dyer, TN +38331 : 35.969336 : -89.131915 : Eaton, TN +38332 : 35.411713 : -88.40388 : Enville, TN +38333 : 36.114049 : -87.97808 : Eva, TN +38334 : 35.357639 : -88.60089 : Finger, TN +38336 : 35.748414 : -89.032672 : Fruitvale, TN +38337 : 35.794403 : -89.01731 : Gadsden, TN +38338 : 35.870849 : -88.846372 : Gibson, TN +38339 : 35.047877 : -88.52289 : Guys, TN +38340 : 35.414454 : -88.66118 : Henderson, TN +38341 : 35.866499 : -88.09896 : Holladay, TN +38342 : 36.075068 : -88.28916 : Hollow Rock, TN +38343 : 35.825299 : -88.90218 : Humboldt, TN +38344 : 35.995802 : -88.41385 : Huntingdon, TN +38345 : 35.576402 : -88.51041 : Huron, TN +38346 : 36.030588 : -88.805599 : Idlewild, TN +38347 : 35.462376 : -88.50539 : Jacks Creek, TN +38348 : 35.867764 : -88.63929 : Lavinia, TN +38350 : 35.148316 : -87.745118 : Collinwood, TN +38351 : 35.658409 : -88.40535 : Lexington, TN +38352 : 35.52953 : -88.53275 : Luray, TN +38355 : 35.795399 : -88.77185 : Medina, TN +38356 : 35.431381 : -88.88248 : Medon, TN +38357 : 35.051008 : -88.42611 : Michie, TN +38358 : 35.916722 : -88.76628 : Milan, TN +38359 : 35.37046 : -88.36434 : Milledgeville, TN +38361 : 35.311586 : -88.29757 : Morris Chapel, TN +38362 : 35.73006 : -88.78683 : Oakfield, TN +38363 : 35.66088 : -88.1184 : Parsons, TN +38365 : 35.038284 : -88.225601 : Pickwick Dam, TN +38366 : 35.4832 : -88.73125 : Pinson, TN +38367 : 35.062793 : -88.60533 : Ramer, TN +38368 : 35.502859 : -88.36148 : Reagan, TN +38369 : 36.12836 : -88.98134 : Rutherford, TN +38370 : 35.381331 : -88.23261 : Saltillo, TN +38371 : 35.432389 : -88.30407 : Sardis, TN +38372 : 35.180947 : -88.18946 : Savannah, TN +38374 : 35.522263 : -88.24152 : Scotts Hill, TN +38375 : 35.165045 : -88.59327 : Selmer, TN +38376 : 35.130384 : -88.34742 : Shiloh, TN +38377 : 35.35604 : -88.826923 : Silerton, TN +38378 : 35.764637 : -88.685 : Spring Creek, TN +38379 : 35.159237 : -88.41878 : Stantonville, TN +38380 : 35.77928 : -88.02646 : Sugar Tree, TN +38381 : 35.35452 : -88.95209 : Toone, TN +38382 : 35.973431 : -88.95035 : Trenton, TN +38384 : 35.544159 : -88.950206 : Toone, TN +38387 : 35.878702 : -88.27401 : Westport, TN +38388 : 35.782093 : -88.35061 : Wildersville, TN +38389 : 36.135364 : -89.111653 : Yorkville, TN +38390 : 35.843868 : -88.36661 : Yuma, TN +38391 : 35.560669 : -89.00984 : Denmark, TN +38392 : 35.468337 : -89.04069 : Mercer, TN +38393 : 34.99687 : -88.645577 : Chewalla, TN +38401 : 35.619784 : -87.03565 : Columbia, TN +38402 : 35.629413 : -87.068172 : Columbia, TN +38425 : 35.401188 : -87.97188 : Clifton, TN +38449 : 35.043961 : -86.84324 : Ardmore, TN +38450 : 35.187869 : -87.77263 : Collinwood, TN +38451 : 35.474034 : -86.98993 : Culleoka, TN +38452 : 35.066147 : -87.80171 : Cypress Inn, TN +38453 : 35.128317 : -86.81188 : Dellrose, TN +38454 : 35.727189 : -87.31927 : Duck River, TN +38455 : 35.05392 : -86.895305 : Elkton, TN +38456 : 35.336135 : -87.26409 : Ethridge, TN +38457 : 35.025423 : -87.29104 : Five Points, TN +38459 : 35.188143 : -86.81014 : Frankewing, TN +38460 : 35.08957 : -87.16259 : Goodspring, TN +38461 : 35.606697 : -87.33058 : Hampshire, TN +38462 : 35.535397 : -87.54905 : Hohenwald, TN +38463 : 35.069017 : -87.62171 : Iron City, TN +38464 : 35.259613 : -87.37522 : Lawrenceburg, TN +38468 : 35.135003 : -87.29218 : Leoma, TN +38469 : 35.071804 : -87.41974 : Loretto, TN +38471 : 35.083644 : -87.91309 : Lutts, TN +38472 : 35.376463 : -87.04478 : Lynnville, TN +38473 : 35.026969 : -87.16763 : Minor Hill, TN +38474 : 35.52478 : -87.22342 : Mount Pleasant, TN +38475 : 35.270793 : -88.01666 : Olivehill, TN +38476 : 35.839045 : -87.2243 : Primm Springs, TN +38477 : 35.040578 : -86.98456 : Prospect, TN +38478 : 35.204983 : -87.01246 : Pulaski, TN +38481 : 35.03492 : -87.50215 : Saint Joseph, TN +38482 : 35.77692 : -87.1517 : Santa Fe, TN +38483 : 35.43506 : -87.33748 : Summertown, TN +38485 : 35.343716 : -87.75739 : Waynesboro, TN +38486 : 35.164749 : -87.54145 : Westpoint, TN +38487 : 35.734499 : -87.21926 : Williamsport, TN +38488 : 35.045279 : -86.69047 : Taft, TN +38501 : 36.1832 : -85.52054 : Cookeville, TN +38502 : 36.141824 : -85.454779 : Cookeville, TN +38503 : 36.141824 : -85.454779 : Cookeville, TN +38504 : 36.392571 : -84.73614 : Allardt, TN +38505 : 36.141824 : -85.454779 : Cookeville, TN +38506 : 36.177831 : -85.46238 : Cookeville, TN +38514 : 34.196894 : -90.572408 : Clarksdale, MS +38528 : 36.003208 : -88.614501 : Trezevant, TN +38541 : 36.525275 : -85.36148 : Allons, TN +38542 : 36.323957 : -85.20787 : Allred, TN +38543 : 36.400338 : -85.16208 : Alpine, TN +38544 : 36.127733 : -85.64636 : Baxter, TN +38545 : 36.228911 : -85.66854 : Bloomington Springs, TN +38547 : 36.141741 : -86.00868 : Brush Creek, TN +38548 : 36.163234 : -85.78987 : Buffalo Valley, TN +38549 : 36.572543 : -85.15007 : Byrdstown, TN +38550 : 35.773417 : -85.619169 : Campaign, TN +38551 : 36.547412 : -85.48904 : Celina, TN +38552 : 36.214724 : -85.79907 : Chestnut Mound, TN +38553 : 36.209271 : -85.00757 : Clarkrange, TN +38554 : 36.26742 : -85.16204 : Crawford, TN +38555 : 35.929314 : -85.05926 : Crossville, TN +38556 : 36.409385 : -84.93393 : Jamestown, TN +38557 : 35.988457 : -85.012389 : Crossville, TN +38558 : 36.008521 : -84.91132 : Crossville, TN +38559 : 35.833271 : -85.51921 : Doyle, TN +38560 : 36.236398 : -85.88908 : Elmwood, TN +38562 : 36.351803 : -85.65757 : Gainesboro, TN +38563 : 36.182334 : -85.9832 : Gordonsville, TN +38564 : 36.259907 : -85.7555 : Granville, TN +38565 : 36.260904 : -84.99517 : Grimsley, TN +38567 : 36.140473 : -85.91072 : Hickman, TN +38568 : 36.414282 : -85.45701 : Hilham, TN +38569 : 36.104271 : -85.84696 : Lancaster, TN +38570 : 36.376289 : -85.32585 : Livingston, TN +38571 : 36.04347 : -85.094842 : Crossville, TN +38572 : 35.861811 : -85.0902 : Pleasant Hill, TN +38573 : 36.480151 : -85.20656 : Monroe, TN +38574 : 36.133983 : -85.23805 : Monterey, TN +38575 : 36.555932 : -85.65072 : Moss, TN +38577 : 36.571669 : -84.99647 : Pall Mall, TN +38578 : 36.007405 : -85.162272 : Pleasant Hill, TN +38579 : 35.817417 : -85.55772 : Quebeck, TN +38580 : 36.270655 : -85.32525 : Rickman, TN +38581 : 35.751554 : -85.63943 : Rock Island, TN +38582 : 36.09651 : -85.74373 : Silver Point, TN +38583 : 35.943026 : -85.45113 : Sparta, TN +38585 : 35.69653 : -85.41146 : Spencer, TN +38587 : 35.869657 : -85.61165 : Walling, TN +38588 : 36.456113 : -85.72381 : Whitleyville, TN +38589 : 36.29017 : -85.08484 : Wilder, TN +38597 : 33.969302 : -90.371546 : Sumner, MS +38601 : 34.489297 : -89.47412 : Abbeville, MS +38602 : 34.686272 : -90.106756 : Arkabutla, MS +38603 : 34.839417 : -89.15818 : Ashland, MS +38606 : 34.309659 : -89.963 : Batesville, MS +38609 : 34.275423 : -90.37392 : Belen, MS +38610 : 34.659973 : -89.02625 : Blue Mountain, MS +38611 : 34.862416 : -89.68014 : Byhalia, MS +38614 : 34.196126 : -90.59442 : Clarksdale, MS +38617 : 34.362729 : -90.5035 : Coahoma, MS +38618 : 34.699588 : -89.95004 : Coldwater, MS +38619 : 34.514853 : -89.88781 : Como, MS +38620 : 34.236973 : -89.91568 : Courtland, MS +38621 : 34.45965 : -90.17154 : Crenshaw, MS +38622 : 34.172051 : -90.13765 : Crowder, MS +38623 : 34.360101 : -90.2717 : Darling, MS +38625 : 34.597573 : -88.83252 : Dumas, MS +38626 : 34.48647 : -90.45124 : Dundee, MS +38627 : 34.425389 : -89.20431 : Etta, MS +38628 : 34.291611 : -90.292717 : Falcon, MS +38629 : 34.879287 : -88.99516 : Falkner, MS +38630 : 34.22795 : -90.63213 : Farrell, MS +38631 : 34.365436 : -90.634 : Friars Point, MS +38632 : 34.811777 : -90.01917 : Hernando, MS +38633 : 34.628795 : -89.20147 : Hickory Flat, MS +38634 : 34.74504 : -89.484963 : Holly Springs, MS +38635 : 34.762615 : -89.46092 : Holly Springs, MS +38637 : 34.959171 : -90.04093 : Horn Lake, MS +38638 : 34.695853 : -89.828798 : Independence, MS +38639 : 34.31465 : -90.44966 : Jonestown, MS +38641 : 34.904881 : -90.19353 : Lake Cormorant, MS +38642 : 34.926974 : -89.33214 : Lamar, MS +38643 : 34.179708 : -90.27846 : Lambert, MS +38644 : 34.449792 : -90.47061 : Lula, MS +38645 : 34.237759 : -90.48669 : Lyon, MS +38646 : 34.261893 : -90.27443 : Marks, MS +38647 : 34.975571 : -89.25982 : Michigan City, MS +38649 : 34.962714 : -89.54023 : Mount Pleasant, MS +38650 : 34.536153 : -89.13829 : Myrtle, MS +38651 : 34.893254 : -89.97629 : Nesbit, MS +38652 : 34.489085 : -88.99973 : New Albany, MS +38654 : 34.954106 : -89.83743 : Olive Branch, MS +38655 : 34.345016 : -89.50735 : Oxford, MS +38658 : 34.181071 : -89.90638 : Pope, MS +38659 : 34.643828 : -89.33776 : Potts Camp, MS +38661 : 34.878143 : -89.57295 : Red Banks, MS +38663 : 34.739023 : -88.92629 : Ripley, MS +38664 : 34.818548 : -90.29479 : Robinsonville, MS +38665 : 34.578092 : -90.1805 : Sarah, MS +38666 : 34.418338 : -89.90517 : Sardis, MS +38668 : 34.607602 : -89.94635 : Senatobia, MS +38669 : 34.18658 : -90.71753 : Sherard, MS +38670 : 34.417393 : -90.27615 : Sledge, MS +38671 : 34.96848 : -89.99793 : Southaven, MS +38672 : 34.943945 : -89.92279 : Southaven, MS +38673 : 34.279282 : -89.601 : Taylor, MS +38674 : 34.884396 : -88.89784 : Tiplersville, MS +38675 : 34.358201 : -89.483865 : Tula, MS +38676 : 34.687733 : -90.36723 : Tunica, MS +38677 : 34.366302 : -89.53721 : University, MS +38679 : 34.870804 : -89.64082 : Victoria, MS +38680 : 34.961576 : -90.12315 : Walls, MS +38683 : 34.937606 : -88.85572 : Walnut, MS +38685 : 34.549354 : -89.61445 : Waterford, MS +38686 : 34.875277 : -89.991991 : Walls, MS +38695 : 34.164116 : -89.625197 : Water Valley, MS +38701 : 33.380388 : -91.05187 : Greenville, MS +38702 : 33.425792 : -90.994597 : Greenville, MS +38703 : 33.442801 : -91.02984 : Greenville, MS +38704 : 33.253401 : -90.918503 : Greenville, MS +38720 : 34.127564 : -90.73281 : Alligator, MS +38721 : 32.977692 : -90.79251 : Anguilla, MS +38722 : 33.260748 : -90.85022 : Arcola, MS +38723 : 33.229713 : -91.04781 : Avon, MS +38725 : 33.628285 : -91.0273 : Benoit, MS +38726 : 33.780092 : -90.9791 : Beulah, MS +38730 : 33.701986 : -90.76402 : Boyle, MS +38731 : 33.085379 : -91.088255 : Chatham, MS +38732 : 33.749149 : -90.71329 : Cleveland, MS +38733 : 33.624024 : -90.819547 : Cleveland, MS +38736 : 33.65327 : -90.49849 : Doddsville, MS +38737 : 33.865068 : -90.52395 : Drew, MS +38738 : 33.922146 : -90.54366 : Parchman, MS +38739 : 34.060111 : -90.50275 : Dublin, MS +38740 : 34.033462 : -90.78544 : Duncan, MS +38744 : 33.028345 : -91.05179 : Glen Allan, MS +38745 : 32.984306 : -90.94339 : Grace, MS +38746 : 34.036412 : -90.87715 : Gunnison, MS +38748 : 33.145438 : -90.85634 : Hollandale, MS +38749 : 33.628715 : -90.607457 : Holly Ridge, MS +38751 : 33.45139 : -90.65824 : Indianola, MS +38753 : 33.344368 : -90.58537 : Inverness, MS +38754 : 33.231628 : -90.58586 : Isola, MS +38756 : 33.407212 : -90.87866 : Leland, MS +38758 : 34.095627 : -90.51041 : Mattson, MS +38759 : 33.822471 : -90.72406 : Merigold, MS +38760 : 33.454082 : -90.99667 : Metcalfe, MS +38761 : 33.44504 : -90.49719 : Moorhead, MS +38762 : 33.887043 : -90.73549 : Mound Bayou, MS +38763 : 33.031698 : -90.88397 : Nitta Yuma, MS +38764 : 33.796844 : -90.85561 : Pace, MS +38765 : 33.063312 : -90.88093 : Panther Burn, MS +38767 : 34.13452 : -90.7836 : Rena Lara, MS +38768 : 33.965488 : -90.52646 : Rome, MS +38769 : 33.850803 : -90.9695 : Rosedale, MS +38771 : 33.732774 : -90.53427 : Ruleville, MS +38772 : 33.569415 : -91.0742 : Scott, MS +38773 : 33.613093 : -90.77527 : Shaw, MS +38774 : 33.947701 : -90.76417 : Shelby, MS +38776 : 33.409614 : -90.910404 : Stoneville, MS +38778 : 33.555234 : -90.51367 : Sunflower, MS +38780 : 33.272695 : -90.995399 : Wayside, MS +38781 : 33.887774 : -90.737149 : Winstonville, MS +38782 : 33.269118 : -90.957291 : Winterville, MS +38801 : 34.23615 : -88.75665 : Tupelo, MS +38802 : 34.234527 : -88.767127 : Tupelo, MS +38803 : 34.187638 : -88.77852 : Tupelo, MS +38804 : 34.272374 : -88.6822 : Tupelo, MS +38820 : 34.171543 : -89.032791 : Algoma, MS +38821 : 33.988235 : -88.46783 : Amory, MS +38824 : 34.511249 : -88.63051 : Baldwyn, MS +38825 : 33.869763 : -88.462173 : Becker, MS +38826 : 34.306239 : -88.81668 : Belden, MS +38827 : 34.513163 : -88.2092 : Belmont, MS +38828 : 34.413143 : -88.87292 : Blue Springs, MS +38829 : 34.653448 : -88.53751 : Booneville, MS +38833 : 34.835384 : -88.32784 : Burnsville, MS +38834 : 34.928325 : -88.52856 : Corinth, MS +38835 : 34.920451 : -88.521772 : Corinth, MS +38838 : 34.552421 : -88.25935 : Dennis, MS +38839 : 33.856165 : -89.303214 : Derma, MS +38841 : 34.344618 : -89.02908 : Ecru, MS +38843 : 34.265985 : -88.38409 : Fulton, MS +38844 : 33.885239 : -88.24591 : Gattman, MS +38846 : 34.851034 : -88.39868 : Glen, MS +38847 : 34.428899 : -88.22647 : Golden, MS +38848 : 33.924023 : -88.29002 : Greenwood Springs, MS +38849 : 34.443919 : -88.67217 : Guntown, MS +38850 : 34.04281 : -89.02557 : Houlka, MS +38851 : 33.904246 : -88.9671 : Houston, MS +38852 : 34.803864 : -88.10205 : Iuka, AL +38854 : 33.906827 : -88.955351 : McCondy, MS +38855 : 34.325456 : -88.49376 : Mantachie, MS +38856 : 34.481995 : -88.45205 : Marietta, MS +38857 : 34.280996 : -88.57745 : Mooreville, MS +38858 : 34.082553 : -88.58797 : Nettleton, MS +38859 : 34.530559 : -88.36794 : New Site, MS +38860 : 33.976464 : -88.76008 : Okolona, MS +38862 : 34.179513 : -88.63454 : Plantersville, MS +38863 : 34.236312 : -89.00425 : Pontotoc, MS +38864 : 34.134456 : -89.20879 : Randolph, MS +38865 : 34.774486 : -88.57746 : Rienzi, MS +38866 : 34.360547 : -88.68079 : Saltillo, MS +38868 : 34.122101 : -88.72967 : Shannon, MS +38869 : 34.359456 : -88.83873 : Sherman, MS +38870 : 34.065563 : -88.36577 : Smithville, MS +38871 : 34.324644 : -89.20057 : Thaxton, MS +38873 : 34.652269 : -88.23581 : Tishomingo, MS +38874 : 34.248527 : -89.2448 : Toccopola, MS +38875 : 33.906827 : -88.955351 : Trebloc, MS +38876 : 34.22634 : -88.23179 : Tremont, MS +38877 : 33.987089 : -88.898807 : Van Vleet, MS +38878 : 33.879148 : -89.18351 : Vardaman, MS +38879 : 34.188301 : -88.72093 : Verona, MS +38880 : 34.57971 : -88.60817 : Wheeler, MS +38901 : 33.77132 : -89.80301 : Grenada, MS +38902 : 33.824113 : -89.794687 : Grenada, MS +38912 : 33.65497 : -90.053958 : Avalon, MS +38913 : 34.115816 : -89.39765 : Banner, MS +38914 : 33.859554 : -89.43745 : Big Creek, MS +38915 : 34.005229 : -89.36375 : Bruce, MS +38916 : 33.839389 : -89.32561 : Calhoun City, MS +38917 : 33.534708 : -89.9363 : Carrollton, MS +38920 : 33.875369 : -90.10215 : Cascilla, MS +38921 : 33.974998 : -90.12046 : Charleston, MS +38922 : 33.936248 : -89.64228 : Coffeeville, MS +38923 : 33.368238 : -89.99776 : Coila, MS +38924 : 33.309896 : -90.21172 : Cruger, MS +38925 : 33.645396 : -89.65893 : Duck Hill, MS +38926 : 33.689476 : -89.758302 : Elliott, MS +38927 : 34.135098 : -90.01821 : Enid, MS +38928 : 33.857538 : -90.30001 : Glendora, MS +38929 : 33.748508 : -89.54482 : Gore Springs, MS +38930 : 33.528734 : -90.17663 : Greenwood, MS +38935 : 33.523355 : -90.27757 : Greenwood, MS +38940 : 33.742886 : -89.99349 : Holcomb, MS +38941 : 33.492412 : -90.3243 : Itta Bena, MS +38943 : 33.523907 : -89.84901 : McCarley, MS +38944 : 33.763479 : -90.32393 : Minter City, MS +38945 : 33.650681 : -90.196909 : Money, MS +38946 : 33.359299 : -90.3527 : Morgan City, MS +38947 : 33.517885 : -89.92185 : North Carrollton, MS +38948 : 34.082634 : -89.89819 : Oakland, MS +38949 : 34.171462 : -89.44452 : Paris, MS +38950 : 33.753716 : -90.18159 : Philipp, MS +38951 : 33.968398 : -89.30308 : Pittsboro, MS +38952 : 33.63788 : -90.33746 : Schlater, MS +38953 : 33.910734 : -89.93012 : Scobey, MS +38954 : 33.417028 : -90.21318 : Sidon, MS +38955 : 33.743871 : -89.375281 : Slate Spring, MS +38957 : 33.972212 : -90.35668 : Sumner, MS +38958 : 33.929206 : -90.188462 : Swan Lake, MS +38959 : 33.304241 : -90.42665 : Swiftown, MS +38960 : 33.787157 : -89.821941 : Tie Plant, MS +38961 : 33.973722 : -89.88636 : Tillatoba, MS +38962 : 33.90263 : -90.16305 : Tippo, MS +38963 : 34.015686 : -90.39034 : Tutwiler, MS +38964 : 34.087461 : -90.39276 : Vance, MS +38965 : 34.148775 : -89.62882 : Water Valley, MS +38966 : 33.934418 : -90.34434 : Webb, MS +38967 : 33.481491 : -89.73155 : Winona, MS +39038 : 33.165359 : -90.50127 : Belzoni, MS +39039 : 32.832943 : -90.21951 : Benton, MS +39040 : 32.639989 : -90.40856 : Bentonia, MS +39041 : 32.39336 : -90.47024 : Bolton, MS +39042 : 32.237742 : -89.93514 : Brandon, MS +39043 : 32.269041 : -89.987491 : Brandon, MS +39044 : 32.01965 : -89.9742 : Braxton, MS +39045 : 32.791408 : -89.82958 : Camden, MS +39046 : 32.618475 : -90.01041 : Canton, MS +39047 : 32.39705 : -89.98466 : Brandon, MS +39048 : 32.667612 : -90.39157 : Bentonia, MS +39051 : 32.785139 : -89.50644 : Carthage, MS +39054 : 32.804592 : -90.92611 : Cary, MS +39056 : 32.347295 : -90.33224 : Clinton, MS +39057 : 32.486525 : -89.28431 : Conehatta, MS +39058 : 32.311287 : -90.397157 : Clinton, MS +39059 : 31.985052 : -90.3633 : Crystal Springs, MS +39060 : 32.350688 : -90.26954 : Clinton, MS +39061 : 33.075557 : -90.84298 : Delta City, MS +39062 : 31.985048 : -89.89986 : D Lo, MS +39063 : 33.102777 : -89.87579 : Durant, MS +39066 : 32.295098 : -90.60286 : Edwards, MS +39067 : 33.127907 : -89.46704 : Ethel, MS +39069 : 31.707145 : -91.05349 : Fayette, MS +39071 : 32.560845 : -90.31338 : Flora, MS +39072 : 32.311287 : -90.397157 : Pocahontas, MS +39073 : 32.125628 : -90.10964 : Florence, MS +39074 : 32.379693 : -89.46552 : Forest, MS +39077 : 31.928751 : -90.392603 : Gallman, MS +39078 : 31.869093 : -90.17798 : Georgetown, MS +39079 : 32.940348 : -89.89824 : Goodman, MS +39080 : 32.492533 : -89.494585 : Harperville, MS +39081 : 31.739958 : -91.050948 : Harriston, MS +39082 : 31.946357 : -90.13324 : Harrisville, MS +39083 : 31.841281 : -90.42995 : Hazlehurst, MS +39086 : 31.983753 : -90.79058 : Hermanville, MS +39087 : 32.470606 : -89.517069 : Hillsboro, MS +39088 : 32.753234 : -90.73846 : Holly Bluff, MS +39090 : 33.038079 : -89.56318 : Kosciusko, MS +39092 : 32.330717 : -89.33827 : Lake, MS +39094 : 32.595179 : -89.6311 : Lena, MS +39095 : 33.114291 : -90.08221 : Lexington, MS +39096 : 31.825143 : -91.07877 : Lorman, MS +39097 : 32.984428 : -90.58503 : Louise, MS +39098 : 32.56195 : -89.70928 : Ludlow, MS +39107 : 33.025946 : -89.68374 : McAdams, MS +39108 : 33.169445 : -89.33038 : McCool, MS +39109 : 32.671826 : -89.3324 : Madden, MS +39110 : 32.484979 : -90.11552 : Madison, MS +39111 : 31.880229 : -89.72086 : Magee, MS +39112 : 31.891839 : -89.77926 : Sanatorium, MS +39113 : 32.905763 : -91.04272 : Mayersville, MS +39114 : 31.948527 : -89.84256 : Mendenhall, MS +39115 : 33.078256 : -90.60068 : Midnight, MS +39116 : 31.881155 : -89.55099 : Mize, MS +39117 : 32.313881 : -89.66509 : Morton, MS +39119 : 31.757725 : -89.65851 : Mount Olive, MS +39120 : 31.535545 : -91.35434 : Natchez, MS +39121 : 31.470602 : -91.404404 : Natchez, MS +39122 : 31.470602 : -91.404404 : Natchez, MS +39130 : 32.642448 : -90.090683 : Madison, MS +39140 : 31.738817 : -89.97045 : Newhebron, MS +39144 : 31.834496 : -90.80341 : Pattison, MS +39145 : 32.335063 : -89.80491 : Pelahatchie, MS +39146 : 32.877746 : -89.97586 : Pickens, MS +39148 : 32.057964 : -89.99117 : Piney Woods, MS +39149 : 31.852006 : -89.99076 : Pinola, MS +39150 : 31.970308 : -90.97911 : Port Gibson, MS +39151 : 32.08065 : -89.776 : Puckett, MS +39152 : 32.220895 : -89.57038 : Pulaski, MS +39153 : 32.035356 : -89.49748 : Raleigh, MS +39154 : 32.230592 : -90.45709 : Raymond, MS +39156 : 32.524981 : -90.779 : Redwood, MS +39157 : 32.420814 : -90.13134 : Ridgeland, MS +39158 : 32.642448 : -90.090683 : Ridgeland, MS +39159 : 32.811181 : -90.97713 : Rolling Fork, MS +39160 : 33.002813 : -89.75296 : Sallis, MS +39161 : 32.503522 : -89.87039 : Sandhill, MS +39162 : 32.629834 : -90.64376 : Satartia, MS +39163 : 32.642448 : -90.090683 : Sharon, MS +39165 : 31.470602 : -91.404404 : Sibley, MS +39166 : 33.062845 : -90.50034 : Silver City, MS +39167 : 32.096124 : -90.061508 : Star, MS +39168 : 31.816868 : -89.41533 : Taylorsville, MS +39169 : 33.136434 : -90.27065 : Tchula, MS +39170 : 32.119511 : -90.32859 : Terry, MS +39171 : 32.753923 : -89.52414 : Thomastown, MS +39173 : 32.762751 : -90.36285 : Tinsley, MS +39174 : 32.398142 : -90.16072 : Tougaloo, MS +39175 : 32.105647 : -90.61749 : Utica, MS +39176 : 33.317882 : -89.733 : Vaiden, MS +39177 : 32.641205 : -90.82835 : Valley Park, MS +39179 : 32.806703 : -90.08908 : Vaughan, MS +39180 : 32.292761 : -90.87184 : Vicksburg, MS +39181 : 32.348565 : -90.864199 : Vicksburg, MS +39182 : 32.348565 : -90.864199 : Vicksburg, MS +39183 : 32.386653 : -90.84485 : Vicksburg, MS +39189 : 32.601899 : -89.42078 : Walnut Grove, MS +39190 : 31.470602 : -91.404404 : Washington, MS +39191 : 31.714881 : -90.39667 : Wesson, MS +39192 : 33.194928 : -89.76284 : West, MS +39193 : 32.234775 : -90.07263 : Whitfield, MS +39194 : 32.855811 : -90.4497 : Yazoo City, MS +39201 : 32.292396 : -90.18328 : Jackson, MS +39202 : 32.313595 : -90.17688 : Jackson, MS +39203 : 32.308695 : -90.19915 : Jackson, MS +39204 : 32.284829 : -90.22778 : Jackson, MS +39205 : 32.311287 : -90.397157 : Jackson, MS +39206 : 32.365794 : -90.17182 : Jackson, MS +39207 : 32.311287 : -90.397157 : Jackson, MS +39208 : 32.280746 : -90.10708 : Jackson, MS +39209 : 32.325512 : -90.25709 : Jackson, MS +39210 : 32.325012 : -90.17902 : Jackson, MS +39211 : 32.370544 : -90.1297 : Jackson, MS +39212 : 32.234627 : -90.26331 : Jackson, MS +39213 : 32.356489 : -90.2106 : Jackson, MS +39215 : 32.311287 : -90.397157 : Jackson, MS +39216 : 32.334738 : -90.16933 : Jackson, MS +39217 : 32.297396 : -90.208088 : Jackson, MS +39218 : 32.230408 : -90.16213 : Jackson, MS +39219 : 32.252147 : -90.214865 : Jackson, MS +39225 : 32.311287 : -90.397157 : Jackson, MS +39232 : 32.311287 : -90.397157 : Jackson, MS +39235 : 32.311287 : -90.397157 : Jackson, MS +39236 : 32.311287 : -90.397157 : Jackson, MS +39250 : 32.311287 : -90.397157 : Jackson, MS +39269 : 32.300996 : -90.18859 : Jackson, MS +39271 : 32.311287 : -90.397157 : Jackson, MS +39272 : 32.311287 : -90.397157 : Jackson, MS +39282 : 32.311287 : -90.397157 : Jackson, MS +39283 : 32.311287 : -90.397157 : Jackson, MS +39284 : 32.311287 : -90.397157 : Jackson, MS +39286 : 32.311287 : -90.397157 : Jackson, MS +39288 : 32.313127 : -89.799625 : Jackson, MS +39289 : 32.311287 : -90.397157 : Jackson, MS +39296 : 32.311287 : -90.397157 : Jackson, MS +39298 : 32.319905 : -89.992257 : Jackson, MS +39301 : 32.339004 : -88.6596 : Meridian, MS +39302 : 32.431958 : -88.641888 : Meridian, MS +39303 : 32.401233 : -88.652279 : Meridian, MS +39304 : 32.420847 : -88.646016 : Meridian, MS +39305 : 32.439945 : -88.70918 : Meridian, MS +39307 : 32.358891 : -88.7494 : Meridian, MS +39309 : 32.337389 : -88.726474 : Meridian, MS +39320 : 32.535472 : -88.72639 : Bailey, MS +39322 : 31.574589 : -88.53326 : Buckatunna, MS +39323 : 32.315069 : -88.91687 : Chunky, MS +39324 : 31.593682 : -88.704829 : Clara, MS +39325 : 32.553716 : -88.86736 : Collinsville, MS +39326 : 32.578591 : -88.66152 : Daleville, MS +39327 : 32.444821 : -89.11703 : Decatur, MS +39328 : 32.744445 : -88.69959 : De Kalb, MS +39330 : 32.170432 : -88.83866 : Enterprise, MS +39332 : 32.314553 : -89.01461 : Hickory, MS +39335 : 32.517145 : -88.51801 : Lauderdale, MS +39336 : 32.307815 : -89.26169 : Lawrence, MS +39337 : 32.527955 : -88.9952 : Little Rock, MS +39338 : 32.108768 : -89.23675 : Louin, MS +39339 : 33.109635 : -89.02849 : Louisville, MS +39341 : 33.115598 : -88.58159 : Macon, MS +39342 : 32.336743 : -88.616297 : Marion, MS +39345 : 32.317298 : -89.14483 : Newton, MS +39346 : 32.957794 : -89.0821 : Noxapater, MS +39347 : 32.042598 : -88.91588 : Pachuta, MS +39348 : 32.026165 : -89.03762 : Paulding, MS +39350 : 32.776368 : -89.12788 : Philadelphia, MS +39352 : 32.678923 : -88.49952 : Porterville, MS +39354 : 32.873605 : -88.84028 : Preston, MS +39355 : 32.057969 : -88.67069 : Quitman, MS +39356 : 32.154808 : -89.03624 : Rose Hill, MS +39357 : 33.11415 : -89.053844 : Louisville, MS +39358 : 32.838485 : -88.48707 : Scooba, MS +39359 : 32.568112 : -89.33891 : Sebastopol, MS +39360 : 31.863493 : -88.74923 : Shubuta, MS +39361 : 32.985613 : -88.57464 : Shuqualak, MS +39362 : 31.415048 : -88.531 : State Line, MS +39363 : 32.134826 : -88.78589 : Stonewall, MS +39364 : 32.420314 : -88.52234 : Toomsuba, MS +39365 : 32.588341 : -89.13047 : Union, MS +39366 : 31.931474 : -88.922 : Vossburg, MS +39367 : 31.688901 : -88.65623 : Waynesboro, MS +39401 : 31.285508 : -89.2799 : Hattiesburg, MS +39402 : 31.325437 : -89.37926 : Hattiesburg, MS +39403 : 31.356642 : -89.382415 : Hattiesburg, MS +39404 : 31.172142 : -89.294772 : Hattiesburg, MS +39406 : 31.172142 : -89.294772 : Hattiesburg, MS +39407 : 31.172142 : -89.294772 : Hattiesburg, MS +39421 : 31.490798 : -89.72655 : Bassfield, MS +39422 : 31.969813 : -89.27645 : Bay Springs, MS +39423 : 31.176725 : -88.91223 : Beaumont, MS +39425 : 31.059327 : -89.09164 : Brooklyn, MS +39426 : 30.641521 : -89.65929 : Carriere, MS +39427 : 31.49616 : -89.83579 : Carson, MS +39428 : 31.651487 : -89.56525 : Collins, MS +39429 : 31.255242 : -89.79264 : Columbia, MS +39436 : 31.436305 : -89.29464 : Eastabuchie, MS +39437 : 31.588327 : -89.21431 : Ellisville, MS +39439 : 31.86883 : -89.00323 : Heidelberg, MS +39440 : 31.701492 : -89.1393 : Laurel, MS +39441 : 31.727664 : -89.075482 : Laurel, MS +39442 : 31.682254 : -89.040622 : Laurel, MS +39443 : 31.719947 : -89.11948 : Laurel, MS +39451 : 31.162188 : -88.60093 : Leakesville, MS +39452 : 30.873353 : -88.58869 : Lucedale, MS +39455 : 31.035015 : -89.49561 : Lumberton, MS +39456 : 31.072789 : -88.80915 : McLain, MS +39457 : 30.666936 : -89.673392 : McNeill, MS +39459 : 31.496211 : -89.30503 : Moselle, MS +39460 : 32.013235 : -89.11656 : Moss, MS +39461 : 31.176281 : -88.72248 : Neely, MS +39462 : 31.215709 : -89.04494 : New Augusta, MS +39463 : 30.563724 : -89.557751 : Nicholson, MS +39464 : 31.487531 : -89.05842 : Ovett, MS +39465 : 31.358823 : -89.2279 : Petal, MS +39466 : 30.52798 : -89.66611 : Picayune, MS +39470 : 30.810936 : -89.56435 : Poplarville, MS +39474 : 31.605946 : -89.86086 : Prentiss, MS +39475 : 31.165903 : -89.41323 : Purvis, MS +39476 : 31.355717 : -88.85881 : Richton, MS +39477 : 31.788517 : -89.03379 : Sandersville, MS +39478 : 31.054236 : -89.85553 : Sandy Hook, MS +39479 : 31.543388 : -89.4648 : Seminary, MS +39480 : 31.726898 : -89.30528 : Soso, MS +39481 : 31.857399 : -89.2469 : Stringer, MS +39482 : 31.376358 : -89.58558 : Sumrall, MS +39483 : 31.218509 : -89.90761 : Foxworth, MS +39501 : 30.380597 : -89.09626 : Gulfport, MS +39502 : 30.415795 : -89.068448 : Gulfport, MS +39503 : 30.461786 : -89.10381 : Gulfport, MS +39505 : 30.415795 : -89.068448 : Gulfport, MS +39506 : 30.415795 : -89.068448 : Gulfport, MS +39507 : 30.397044 : -89.03998 : Gulfport, MS +39520 : 30.304327 : -89.40705 : Bay Saint Louis, MS +39521 : 30.403156 : -89.49821 : Bay Saint Louis, MS +39522 : 30.403156 : -89.49821 : Stennis Space Center, MS +39525 : 30.382544 : -89.36958 : Diamondhead, MS +39529 : 30.403156 : -89.49821 : Stennis Space Center, MS +39530 : 30.399148 : -88.88917 : Biloxi, MS +39531 : 30.405831 : -88.96219 : Biloxi, MS +39532 : 30.462388 : -88.93293 : Biloxi, MS +39533 : 30.415795 : -89.068448 : Biloxi, MS +39534 : 30.415795 : -89.068448 : Biloxi, MS +39535 : 30.415795 : -89.068448 : Biloxi, MS +39540 : 30.444267 : -88.899207 : D'Iberville, MS +39552 : 30.441072 : -88.634482 : Escatawpa, MS +39553 : 30.400599 : -88.65092 : Gautier, MS +39555 : 30.71325 : -88.519743 : Hurley, MS +39556 : 30.429334 : -89.43471 : Kiln, MS +39558 : 30.239124 : -89.459526 : Lakeshore, MS +39560 : 30.356147 : -89.16346 : Long Beach, MS +39561 : 30.704034 : -89.15395 : McHenry, MS +39562 : 30.522009 : -88.50312 : Moss Point, MS +39563 : 30.410999 : -88.52514 : Moss Point, MS +39564 : 30.403286 : -88.77565 : Ocean Springs, MS +39565 : 30.566715 : -88.76018 : Ocean Springs, MS +39566 : 30.441072 : -88.634482 : Ocean Springs, MS +39567 : 30.362203 : -88.5469 : Pascagoula, MS +39568 : 30.441072 : -88.634482 : Pascagoula, MS +39569 : 30.441072 : -88.634482 : Pascagoula, MS +39571 : 30.371623 : -89.27038 : Pass Christian, MS +39572 : 30.249994 : -89.60493 : Pearlington, MS +39573 : 30.710795 : -89.09325 : Perkinston, MS +39574 : 30.600244 : -89.11948 : Saucier, MS +39576 : 30.289646 : -89.38349 : Waveland, MS +39577 : 30.94336 : -89.17912 : Wiggins, MS +39579 : 30.258204 : -89.602572 : Pearlington, MS +39581 : 30.36298 : -88.52901 : Pascagoula, MS +39595 : 30.441072 : -88.634482 : Pascagoula, MS +39601 : 31.574319 : -90.45029 : Brookhaven, MS +39602 : 31.533354 : -90.490661 : Brookhaven, MS +39603 : 31.612287 : -90.446702 : Brookhaven, MS +39629 : 31.441613 : -90.45281 : Bogue Chitto, MS +39630 : 31.463533 : -90.84522 : Bude, MS +39631 : 31.078189 : -91.07723 : Centreville, MS +39632 : 31.059186 : -90.46706 : Chatawa, MS +39633 : 31.296257 : -91.12921 : Crosby, MS +39635 : 31.186981 : -90.44989 : Fernwood, MS +39638 : 31.206278 : -90.9959 : Gloster, MS +39641 : 31.363848 : -90.17457 : Jayess, MS +39643 : 31.231448 : -90.02263 : Kokomo, MS +39645 : 31.148177 : -90.79859 : Liberty, MS +39647 : 31.509919 : -90.69788 : McCall Creek, MS +39648 : 31.225598 : -90.43327 : Mccomb, MS +39649 : 31.17494 : -90.403987 : Mccomb, MS +39652 : 31.117097 : -90.45287 : Magnolia, MS +39653 : 31.461337 : -90.89208 : Meadville, MS +39654 : 31.544331 : -90.1213 : Monticello, MS +39656 : 31.458217 : -89.93268 : Oak Vale, MS +39657 : 31.028259 : -90.4588 : Osyka, MS +39660 : 31.245067 : -90.506861 : McComb, MS +39661 : 31.487982 : -91.08403 : Roxie, MS +39662 : 31.40227 : -90.26002 : Ruth, MS +39663 : 31.590797 : -90.00583 : Silver Creek, MS +39664 : 31.328058 : -90.67792 : Smithdale, MS +39665 : 31.643751 : -90.20776 : Sontag, MS +39666 : 31.292262 : -90.45228 : Summit, MS +39667 : 31.131018 : -90.12856 : Tylertown, MS +39668 : 31.668442 : -90.76317 : Union Church, MS +39669 : 31.120979 : -91.35511 : Woodville, MS +39701 : 33.492107 : -88.43746 : Columbus, MS +39702 : 33.463004 : -88.35574 : Columbus, MS +39703 : 33.484147 : -88.283998 : Columbus, MS +39704 : 33.69048 : -88.33097 : Columbus, MS +39705 : 33.581599 : -88.43297 : Columbus, MS +39710 : 33.51633 : -88.460083 : Columbus, MS +39730 : 33.833689 : -88.55463 : Aberdeen, MS +39731 : 33.230508 : -88.57968 : Brooksville, MS +39735 : 33.371974 : -89.17616 : Ackerman, MS +39736 : 33.415448 : -88.64745 : Artesia, MS +39737 : 33.648956 : -89.334234 : Bellefontaine, MS +39739 : 33.243098 : -88.60228 : Brooksville, MS +39740 : 33.752213 : -88.30989 : Caledonia, MS +39741 : 33.67341 : -88.87957 : Cedarbluff, MS +39743 : 33.313523 : -88.62721 : Crawford, MS +39744 : 33.577688 : -89.3028 : Eupora, MS +39745 : 33.312695 : -89.41628 : French Camp, MS +39746 : 33.743856 : -88.42703 : Hamilton, MS +39747 : 33.413657 : -89.56261 : Kilmichael, MS +39750 : 33.596326 : -89.07609 : Maben, MS +39751 : 33.702318 : -89.05064 : Mantee, MS +39752 : 33.54549 : -89.13632 : Mathiston, MS +39753 : 33.483814 : -88.640881 : Mayhew, MS +39754 : 33.659271 : -88.753976 : Montpelier, MS +39755 : 33.608062 : -88.9596 : Pheba, MS +39756 : 33.786542 : -88.72404 : Prairie, MS +39758 : 33.344664 : -89.036193 : Sturgis, MS +39759 : 33.450215 : -88.82383 : Starkville, MS +39760 : 33.459924 : -88.832163 : Starkville, MS +39762 : 33.453349 : -88.79107 : Mississippi State, MS +39766 : 33.615277 : -88.31031 : Steens, MS +39767 : 33.463558 : -89.46705 : Stewart, MS +39769 : 33.333797 : -89.01361 : Sturgis, MS +39771 : 33.606148 : -89.27527 : Walthall, MS +39772 : 33.321345 : -89.32063 : Weir, MS +39773 : 33.619058 : -88.64686 : West Point, MS +39776 : 33.779165 : -89.03949 : Woodland, MS +39871 : 32.540084 : -90.307122 : Flora, MS +39901 : 33.891251 : -84.07456 : Atlanta, GA +39940 : 31.706345 : -89.12119 : Laurel, MS +39956 : 30.409245 : -89.438829 : Kiln, MS +40003 : 38.279797 : -85.03498 : Bagdad, KY +40004 : 37.81109 : -85.46164 : Bardstown, KY +40006 : 38.597624 : -85.33889 : Bedford, KY +40007 : 38.452451 : -85.00764 : Bethlehem, KY +40008 : 37.923734 : -85.28257 : Bloomfield, KY +40009 : 37.477192 : -85.10175 : Bradfordsville, KY +40010 : 38.366467 : -85.45075 : Buckner, KY +40011 : 38.53445 : -85.17178 : Campbellsburg, KY +40012 : 37.905918 : -85.21241 : Chaplin, KY +40013 : 37.928563 : -85.49036 : Coxs Creek, KY +40014 : 38.335106 : -85.4584 : Crestwood, KY +40018 : 38.22977 : -85.66304 : Eastwood, KY +40019 : 38.370336 : -85.17208 : Eminence, KY +40020 : 37.9348 : -85.38765 : Fairfield, KY +40022 : 38.147801 : -85.33158 : Finchville, KY +40023 : 38.182772 : -85.43238 : Fisherville, KY +40025 : 38.309597 : -85.643359 : Glenview, KY +40026 : 38.411964 : -85.57066 : Goshen, KY +40027 : 38.329718 : -85.63299 : Harrods Creek, KY +40031 : 38.407833 : -85.38475 : La Grange, KY +40032 : 38.40464 : -85.460504 : La Grange, KY +40033 : 37.565894 : -85.25148 : Lebanon, KY +40036 : 38.434443 : -84.96898 : Lockport, KY +40037 : 37.652712 : -85.41337 : Loretto, KY +40040 : 37.742806 : -85.05564 : Mackville, KY +40041 : 38.25361 : -85.662215 : Masonic Home, KY +40045 : 38.702793 : -85.37187 : Milton, KY +40046 : 38.026767 : -85.1869 : Mount Eden, KY +40047 : 38.045982 : -85.55467 : Mount Washington, KY +40048 : 37.756941 : -85.44671 : Nazareth, KY +40049 : 37.660251 : -85.393204 : Nerinx, KY +40050 : 38.435604 : -85.17658 : New Castle, KY +40051 : 37.656291 : -85.58099 : New Haven, KY +40052 : 37.585365 : -85.50817 : New Hope, KY +40053 : 37.7604 : -85.447393 : Pewee Valley, KY +40055 : 38.495454 : -85.33839 : Pendleton, KY +40056 : 38.308109 : -85.48714 : Pewee Valley, KY +40057 : 38.386916 : -85.06609 : Pleasureville, KY +40058 : 38.433076 : -85.17111 : Port Royal, KY +40059 : 38.350915 : -85.60042 : Prospect, KY +40060 : 37.533395 : -85.43588 : Raywick, KY +40061 : 37.773962 : -85.201068 : Saint Catharine, KY +40062 : 37.590699 : -85.45004 : Saint Francis, KY +40063 : 37.579519 : -85.355132 : Saint Mary, KY +40065 : 38.211511 : -85.21658 : Shelbyville, KY +40066 : 38.197268 : -85.212156 : Shelbyville, KY +40067 : 38.210818 : -85.36122 : Simpsonville, KY +40068 : 38.400619 : -85.27741 : Smithfield, KY +40069 : 37.702418 : -85.22257 : Springfield, KY +40070 : 38.486325 : -85.27425 : Sulphur, KY +40071 : 38.045406 : -85.36427 : Taylorsville, KY +40075 : 38.552133 : -85.101879 : Turners Station, KY +40076 : 38.122088 : -85.06677 : Waddy, KY +40077 : 38.491982 : -85.4722 : Westport, KY +40078 : 37.840066 : -85.12572 : Willisburg, KY +40080 : 37.93388 : -85.385382 : Fairfield, KY +40081 : 38.3386 : -85.492459 : Crestwood, KY +40104 : 38.087303 : -86.35414 : Battletown, KY +40106 : 37.788538 : -86.231194 : Big Spring, KY +40107 : 37.768921 : -85.65602 : Boston, KY +40108 : 37.973094 : -86.11831 : Brandenburg, KY +40109 : 38.062515 : -85.73559 : Brooks, KY +40110 : 37.93462 : -85.65545 : Clermont, KY +40111 : 37.816771 : -86.63448 : Cloverport, KY +40115 : 37.753533 : -86.21654 : Custer, KY +40117 : 37.915077 : -86.14434 : Ekron, KY +40118 : 38.106135 : -85.75362 : Fairdale, KY +40119 : 37.600179 : -86.52846 : Falls Of Rough, KY +40121 : 37.895491 : -85.9662 : Fort Knox, KY +40140 : 37.675627 : -86.23001 : Garfield, KY +40142 : 37.894075 : -86.20383 : Guston, KY +40143 : 37.777083 : -86.48345 : Hardinsburg, KY +40144 : 37.750101 : -86.39972 : Harned, KY +40145 : 37.652706 : -86.3173 : Hudson, KY +40146 : 37.88108 : -86.31377 : Irvington, KY +40150 : 37.849334 : -85.73269 : Lebanon Junction, KY +40152 : 37.61966 : -86.45078 : McDaniels, KY +40153 : 37.802295 : -86.414768 : McQuady, KY +40155 : 37.937825 : -85.99137 : Muldraugh, KY +40157 : 38.028543 : -86.38511 : Payneville, KY +40159 : 37.723474 : -85.976854 : Radcliff, KY +40160 : 37.828459 : -85.93888 : Radcliff, KY +40161 : 38.005963 : -86.398391 : Rhodelia, KY +40162 : 37.756775 : -86.00073 : Rineyville, KY +40164 : 37.670928 : -86.39204 : Se Ree, KY +40165 : 37.997938 : -85.69667 : Shepherdsville, KY +40170 : 37.965908 : -86.49255 : Stephensport, KY +40171 : 37.969766 : -86.43079 : Union Star, KY +40175 : 37.826822 : -86.00692 : Vine Grove, KY +40176 : 37.934279 : -86.34869 : Webster, KY +40177 : 37.997957 : -85.94452 : West Point, KY +40178 : 37.647315 : -86.40623 : Westview, KY +40179 : 37.998628 : -85.946585 : West Point, KY +40201 : 38.188962 : -85.676819 : Louisville, KY +40202 : 38.252854 : -85.75137 : Louisville, KY +40203 : 38.248106 : -85.7665 : Louisville, KY +40204 : 38.23862 : -85.72626 : Louisville, KY +40205 : 38.22292 : -85.68326 : Louisville, KY +40206 : 38.254671 : -85.70254 : Louisville, KY +40207 : 38.257489 : -85.65134 : Louisville, KY +40208 : 38.218764 : -85.76241 : Louisville, KY +40209 : 38.19187 : -85.75298 : Louisville, KY +40210 : 38.23067 : -85.78665 : Louisville, KY +40211 : 38.24142 : -85.81181 : Louisville, KY +40212 : 38.26632 : -85.79998 : Louisville, KY +40213 : 38.186126 : -85.71304 : Louisville, KY +40214 : 38.160936 : -85.77624 : Louisville, KY +40215 : 38.19192 : -85.78405 : Louisville, KY +40216 : 38.188886 : -85.83137 : Louisville, KY +40217 : 38.21632 : -85.739 : Louisville, KY +40218 : 38.193769 : -85.65733 : Louisville, KY +40219 : 38.141638 : -85.68218 : Louisville, KY +40220 : 38.214982 : -85.62207 : Louisville, KY +40221 : 38.188962 : -85.676819 : Louisville, KY +40222 : 38.26507 : -85.61319 : Louisville, KY +40223 : 38.258941 : -85.55574 : Louisville, KY +40224 : 38.188962 : -85.676819 : Louisville, KY +40225 : 38.188962 : -85.676819 : Louisville, KY +40228 : 38.137586 : -85.62741 : Louisville, KY +40229 : 38.085601 : -85.66979 : Louisville, KY +40231 : 38.188962 : -85.676819 : Louisville, KY +40232 : 38.188962 : -85.676819 : Louisville, KY +40233 : 38.188962 : -85.676819 : Louisville, KY +40241 : 38.305636 : -85.58424 : Louisville, KY +40242 : 38.279059 : -85.59037 : Louisville, KY +40243 : 38.237155 : -85.53657 : Louisville, KY +40245 : 38.270855 : -85.48322 : Louisville, KY +40250 : 38.188962 : -85.676819 : Louisville, KY +40251 : 38.188962 : -85.676819 : Louisville, KY +40252 : 38.188962 : -85.676819 : Louisville, KY +40253 : 38.188962 : -85.676819 : Louisville, KY +40255 : 38.188962 : -85.676819 : Louisville, KY +40256 : 38.188962 : -85.676819 : Louisville, KY +40257 : 38.188962 : -85.676819 : Louisville, KY +40258 : 38.141719 : -85.86375 : Louisville, KY +40259 : 38.188962 : -85.676819 : Louisville, KY +40261 : 38.188962 : -85.676819 : Louisville, KY +40266 : 38.188962 : -85.676819 : Louisville, KY +40268 : 38.188962 : -85.676819 : Louisville, KY +40269 : 38.188962 : -85.676819 : Louisville, KY +40270 : 38.188962 : -85.676819 : Louisville, KY +40272 : 38.096056 : -85.85994 : Louisville, KY +40280 : 38.246721 : -85.685261 : Louisville, KY +40281 : 38.188962 : -85.676819 : Louisville, KY +40282 : 38.188962 : -85.676819 : Louisville, KY +40283 : 38.188962 : -85.676819 : Louisville, KY +40285 : 38.188962 : -85.676819 : Louisville, KY +40287 : 38.188962 : -85.676819 : Louisville, KY +40289 : 38.188962 : -85.676819 : Louisville, KY +40290 : 38.188962 : -85.676819 : Louisville, KY +40291 : 38.147232 : -85.59169 : Louisville, KY +40292 : 38.188962 : -85.676819 : Louisville, KY +40293 : 38.188962 : -85.676819 : Louisville, KY +40294 : 38.188962 : -85.676819 : Louisville, KY +40295 : 38.188962 : -85.676819 : Louisville, KY +40296 : 38.188962 : -85.676819 : Louisville, KY +40297 : 38.188962 : -85.676819 : Louisville, KY +40298 : 38.188962 : -85.676819 : Louisville, KY +40299 : 38.190568 : -85.55348 : Louisville, KY +40310 : 37.754255 : -84.76904 : Burgin, KY +40311 : 38.320944 : -84.02358 : Carlisle, KY +40312 : 37.846536 : -83.9343 : Clay City, KY +40313 : 38.156248 : -83.41586 : Clearfield, KY +40316 : 37.933123 : -83.52303 : Denniston, KY +40317 : 38.176471 : -83.268234 : Elliottville, KY +40319 : 38.140258 : -83.533691 : Farmers, KY +40320 : 37.968496 : -84.157766 : Ford, KY +40322 : 37.937105 : -83.63429 : Frenchburg, KY +40324 : 38.221179 : -84.55465 : Georgetown, KY +40328 : 37.561722 : -85.0227 : Gravel Switch, KY +40329 : 38.206706 : -83.41725 : Haldeman, KY +40330 : 37.773923 : -84.85812 : Harrodsburg, KY +40334 : 38.016706 : -83.76639 : Hope, KY +40336 : 37.694764 : -83.9771 : Irvine, KY +40337 : 37.9615 : -83.8438 : Jeffersonville, KY +40339 : 37.942941 : -84.64418 : Keene, KY +40340 : 37.866238 : -84.579491 : Nicholasville, KY +40342 : 38.012479 : -84.94075 : Lawrenceburg, KY +40346 : 37.979941 : -83.73183 : Means, KY +40347 : 38.153759 : -84.70928 : Midway, KY +40348 : 38.302495 : -84.14578 : Millersburg, KY +40350 : 38.304494 : -83.87442 : Moorefield, KY +40351 : 38.19056 : -83.4321 : Morehead, KY +40353 : 38.061248 : -83.92964 : Mount Sterling, KY +40355 : 38.606023 : -84.8279 : New Liberty, KY +40356 : 37.883886 : -84.571 : Nicholasville, KY +40357 : 38.146395 : -84.107655 : North Middletown, KY +40358 : 38.057744 : -83.6848 : Olympia, KY +40359 : 38.467809 : -84.81023 : Owenton, KY +40360 : 38.152302 : -83.76603 : Owingsville, KY +40361 : 38.212471 : -84.23646 : Paris, KY +40362 : 38.219407 : -84.205944 : Paris, KY +40363 : 38.522034 : -85.00607 : Perry Park, KY +40366 : 38.086673 : -83.757123 : Preston, KY +40370 : 38.399525 : -84.53353 : Sadieville, KY +40371 : 38.087867 : -83.61146 : Salt Lick, KY +40372 : 37.911825 : -84.88657 : Salvisa, KY +40374 : 38.201485 : -83.91734 : Sharpsburg, KY +40376 : 37.78422 : -83.69224 : Slade, KY +40379 : 38.29617 : -84.69614 : Stamping Ground, KY +40380 : 37.838747 : -83.8099 : Stanton, KY +40383 : 38.042639 : -84.73189 : Versailles, KY +40384 : 38.021292 : -84.745488 : Versailles, KY +40385 : 37.724497 : -84.11389 : Waco, KY +40386 : 38.021292 : -84.745488 : Versailles, KY +40387 : 37.929101 : -83.49464 : Wellington, KY +40390 : 37.85743 : -84.66069 : Wilmore, KY +40391 : 37.98223 : -84.17023 : Winchester, KY +40392 : 37.968496 : -84.157766 : Winchester, KY +40402 : 37.29409 : -83.9759 : Annville, KY +40403 : 37.575568 : -84.27767 : Berea, KY +40404 : 37.716443 : -84.299699 : Berea, KY +40405 : 37.716443 : -84.299699 : Bighill, KY +40409 : 37.374681 : -84.41808 : Brodhead, KY +40410 : 37.651397 : -84.546693 : Bryantsville, KY +40419 : 37.455879 : -84.48753 : Crab Orchard, KY +40421 : 37.416008 : -83.993588 : Dabolt, KY +40422 : 37.644426 : -84.78862 : Danville, KY +40423 : 37.624659 : -84.845767 : Danville, KY +40434 : 37.395468 : -83.908492 : Gray Hawk, KY +40437 : 37.431549 : -84.81256 : Hustonville, KY +40440 : 37.583748 : -84.80855 : Junction City, KY +40442 : 37.351449 : -84.7219 : Kings Mountain, KY +40444 : 37.667083 : -84.59496 : Lancaster, KY +40445 : 37.302783 : -84.21527 : Livingston, KY +40446 : 37.651397 : -84.546693 : Lancaster, KY +40447 : 37.457017 : -84.03435 : McKee, KY +40448 : 37.460003 : -84.75676 : McKinney, KY +40452 : 37.603345 : -84.94918 : Mitchellsburg, KY +40456 : 37.36766 : -84.33233 : Mount Vernon, KY +40460 : 37.406069 : -84.24292 : Orlando, KY +40461 : 37.59483 : -84.40789 : Paint Lick, KY +40464 : 37.55081 : -84.90009 : Parksville, KY +40467 : 37.416008 : -83.993588 : Peoples, KY +40468 : 37.65487 : -84.98037 : Perryville, KY +40469 : 37.40382 : -84.405839 : Brodhead, KY +40472 : 37.703394 : -83.91384 : Ravenna, KY +40473 : 37.345751 : -84.31614 : Renfro Valley, KY +40475 : 37.745999 : -84.28433 : Richmond, KY +40476 : 37.716443 : -84.299699 : Richmond, KY +40481 : 37.43424 : -84.09155 : Sandgap, KY +40484 : 37.520836 : -84.6735 : Stanford, KY +40486 : 37.369321 : -83.85889 : Tyner, KY +40488 : 37.471602 : -84.03936 : Waneta, KY +40489 : 37.351221 : -84.62099 : Waynesburg, KY +40492 : 37.345751 : -84.31614 : Wildie, KY +40495 : 37.709721 : -84.082894 : Winston, KY +40501 : 38.037847 : -84.61645 : Lexington, KY +40502 : 38.017219 : -84.4859 : Lexington, KY +40503 : 38.007898 : -84.53452 : Lexington, KY +40504 : 38.039322 : -84.54259 : Lexington, KY +40505 : 38.058477 : -84.46109 : Lexington, KY +40506 : 38.028712 : -84.507471 : Lexington, KY +40507 : 38.047408 : -84.49627 : Lexington, KY +40508 : 38.051727 : -84.49336 : Lexington, KY +40509 : 38.005199 : -84.40954 : Lexington, KY +40510 : 38.064087 : -84.60713 : Lexington, KY +40511 : 38.105283 : -84.50775 : Lexington, KY +40512 : 38.028269 : -84.471505 : Lexington, KY +40513 : 38.010247 : -84.58619 : Lexington, KY +40514 : 37.984907 : -84.56691 : Lexington, KY +40515 : 37.952113 : -84.45347 : Lexington, KY +40516 : 38.071981 : -84.38559 : Lexington, KY +40517 : 37.985128 : -84.48874 : Lexington, KY +40522 : 38.028269 : -84.471505 : Lexington, KY +40523 : 38.028269 : -84.471505 : Lexington, KY +40524 : 38.028269 : -84.471505 : Lexington, KY +40526 : 38.028269 : -84.471505 : Lexington, KY +40533 : 38.028269 : -84.471505 : Lexington, KY +40536 : 38.032075 : -84.508361 : Lexington, KY +40544 : 38.028269 : -84.471505 : Lexington, KY +40546 : 38.028269 : -84.471505 : Lexington, KY +40550 : 38.028269 : -84.471505 : Lexington, KY +40555 : 38.028269 : -84.471505 : Lexington, KY +40574 : 38.028269 : -84.471505 : Lexington, KY +40575 : 38.028269 : -84.471505 : Lexington, KY +40576 : 38.028269 : -84.471505 : Lexington, KY +40577 : 38.028269 : -84.471505 : Lexington, KY +40578 : 38.028269 : -84.471505 : Lexington, KY +40579 : 38.028269 : -84.471505 : Lexington, KY +40580 : 38.028269 : -84.471505 : Lexington, KY +40581 : 38.028269 : -84.471505 : Lexington, KY +40582 : 38.028269 : -84.471505 : Lexington, KY +40583 : 38.028269 : -84.471505 : Lexington, KY +40584 : 38.028269 : -84.471505 : Lexington, KY +40585 : 38.028269 : -84.471505 : Lexington, KY +40586 : 38.028269 : -84.471505 : Lexington, KY +40587 : 38.028269 : -84.471505 : Lexington, KY +40588 : 38.028269 : -84.471505 : Lexington, KY +40589 : 38.028269 : -84.471505 : Lexington, KY +40590 : 38.028269 : -84.471505 : Lexington, KY +40591 : 38.028269 : -84.471505 : Lexington, KY +40592 : 38.028269 : -84.471505 : Lexington, KY +40593 : 38.028269 : -84.471505 : Lexington, KY +40594 : 38.028269 : -84.471505 : Lexington, KY +40595 : 38.028269 : -84.471505 : Lexington, KY +40596 : 38.028269 : -84.471505 : Lexington, KY +40601 : 38.201649 : -84.86935 : Frankfort, KY +40602 : 38.234133 : -84.874809 : Frankfort, KY +40603 : 38.234133 : -84.874809 : Frankfort, KY +40604 : 38.234133 : -84.874809 : Frankfort, KY +40618 : 38.234133 : -84.874809 : Frankfort, KY +40619 : 38.234133 : -84.874809 : Frankfort, KY +40620 : 38.234133 : -84.874809 : Frankfort, KY +40621 : 38.234133 : -84.874809 : Frankfort, KY +40622 : 38.234133 : -84.874809 : Frankfort, KY +40695 : 36.608426 : -83.731809 : Middlesborough, KY +40701 : 36.942035 : -84.10685 : Corbin, KY +40702 : 36.937426 : -84.1031 : Corbin, KY +40724 : 37.152074 : -84.140847 : Bush, KY +40729 : 37.231717 : -84.13026 : East Bernstadt, KY +40730 : 36.705162 : -84.14595 : Emlyn, KY +40734 : 36.930995 : -83.98146 : Gray, KY +40737 : 36.990797 : -84.14124 : Keavy, KY +40740 : 37.015283 : -84.05872 : Lily, KY +40741 : 37.143828 : -84.07839 : London, KY +40742 : 37.137615 : -84.115617 : London, KY +40743 : 37.134455 : -84.045746 : London, KY +40744 : 37.060576 : -84.071 : London, KY +40745 : 37.137615 : -84.115617 : London, KY +40746 : 37.137615 : -84.115617 : London, KY +40747 : 37.137615 : -84.115617 : London, KY +40748 : 37.137615 : -84.115617 : London, KY +40751 : 37.137615 : -84.115617 : Marydell, KY +40754 : 36.780333 : -84.11678 : Nevisdale, KY +40755 : 37.167752 : -84.116614 : Pittsburg, KY +40759 : 36.817151 : -84.05917 : Rockholds, KY +40763 : 36.681189 : -83.95156 : Siler, KY +40769 : 36.709853 : -84.1508 : Williamsburg, KY +40771 : 36.888978 : -84.05237 : Woodbine, KY +40801 : 36.858906 : -83.2528 : Ages Brookside, KY +40803 : 37.046365 : -83.42003 : Asher, KY +40806 : 36.872801 : -83.30778 : Baxter, KY +40807 : 36.963608 : -82.95015 : Benham, KY +40808 : 36.981495 : -83.25264 : Big Laurel, KY +40810 : 36.91707 : -83.32399 : Bledsoe, KY +40813 : 36.737835 : -83.60248 : Calvin, KY +40815 : 36.781517 : -83.22904 : Cawood, KY +40816 : 36.987495 : -83.32795 : Chappell, KY +40818 : 36.807137 : -83.26552 : Coalgood, KY +40819 : 36.827233 : -83.4645 : Coldiron, KY +40820 : 36.766134 : -83.16117 : Cranks, KY +40823 : 36.972292 : -82.99572 : Cumberland, KY +40824 : 36.840955 : -83.37539 : Dayhoit, KY +40826 : 37.048238 : -82.81775 : Eolia, KY +40827 : 37.043142 : -83.48892 : Essie, KY +40828 : 36.86772 : -83.17747 : Evarts, KY +40829 : 36.797447 : -83.264497 : Grays Knob, KY +40830 : 36.772301 : -83.33415 : Gulston, KY +40831 : 36.828285 : -83.31856 : Harlan, KY +40840 : 36.949181 : -83.43129 : Helton, KY +40843 : 36.868363 : -82.96607 : Holmes Mill, KY +40844 : 37.058837 : -83.38533 : Hoskinston, KY +40845 : 36.786271 : -83.52009 : Hulen, KY +40847 : 36.852687 : -83.15917 : Kenvir, KY +40849 : 36.885169 : -83.12461 : Lejunior, KY +40854 : 36.85107 : -83.35315 : Loyall, KY +40855 : 36.96222 : -82.90522 : Lynch, KY +40856 : 36.726258 : -83.54969 : Miracle, KY +40858 : 37.018413 : -83.39768 : Mozelle, KY +40862 : 37.004426 : -82.89858 : Partridge, KY +40863 : 36.753043 : -83.44991 : Pathfork, KY +40865 : 36.901802 : -83.24129 : Putney, KY +40867 : 36.712383 : -83.33711 : Smith, KY +40868 : 37.11181 : -83.39265 : Stinnett, KY +40870 : 36.930024 : -83.15467 : Totz, KY +40873 : 36.823334 : -83.41058 : Wallins Creek, KY +40874 : 36.982545 : -83.48003 : Warbranch, KY +40902 : 36.836208 : -83.63388 : Arjay, KY +40903 : 36.825088 : -83.8385 : Artemus, KY +40906 : 36.853913 : -83.88501 : Barbourville, KY +40913 : 36.942094 : -83.53262 : Beverly, KY +40914 : 37.112359 : -83.56789 : Big Creek, KY +40915 : 36.887081 : -83.81552 : Bimble, KY +40921 : 36.72179 : -83.90657 : Bryants Store, KY +40923 : 36.920165 : -83.85699 : Cannon, KY +40927 : 36.889259 : -83.05265 : Closplint, KY +40930 : 36.855044 : -83.739 : Dewitt, KY +40931 : 37.147687 : -83.737014 : Eriline, KY +40932 : 37.147687 : -83.737014 : Fall Rock, KY +40935 : 36.867971 : -83.74576 : Flat Lick, KY +40939 : 36.871254 : -83.829985 : Fourmile, KY +40940 : 36.607234 : -83.92535 : Frakes, KY +40941 : 37.176075 : -83.66608 : Garrard, KY +40943 : 36.947113 : -83.8506 : Girdler, KY +40944 : 37.147687 : -83.737014 : Goose Rock, KY +40946 : 36.966634 : -83.83413 : Green Road, KY +40949 : 36.897618 : -83.87252 : Heidrick, KY +40951 : 37.147687 : -83.737014 : Hima, KY +40953 : 36.943114 : -83.81984 : Hinkle, KY +40955 : 36.769184 : -83.708181 : Ingram, KY +40958 : 36.793291 : -83.58725 : Kettle Island, KY +40962 : 37.164346 : -83.76674 : Manchester, KY +40964 : 36.842977 : -83.183446 : Mary Alice, KY +40965 : 36.617181 : -83.72186 : Middlesboro, KY +40972 : 37.25398 : -83.61901 : Oneida, KY +40977 : 36.750028 : -83.72023 : Pineville, KY +40979 : 37.016332 : -83.51075 : Roark, KY +40981 : 37.331259 : -83.386991 : Saul, KY +40982 : 36.933443 : -83.70088 : Scalf, KY +40983 : 37.32832 : -83.7488 : Sextons Creek, KY +40988 : 36.842522 : -83.51851 : Stoney Fork, KY +40995 : 36.78737 : -83.81508 : Trosper, KY +40997 : 36.888893 : -83.66257 : Walker, KY +40999 : 37.005242 : -83.80508 : Woollum, KY +41000 : 39.0358 : -84.546445 : Fort Mitchell, KY +41001 : 38.946893 : -84.38652 : Alexandria, KY +41002 : 38.76189 : -83.99683 : Augusta, KY +41003 : 38.535065 : -84.38904 : Berry, KY +41004 : 38.677837 : -84.09411 : Brooksville, KY +41005 : 39.020466 : -84.74158 : Burlington, KY +41006 : 38.796981 : -84.33792 : Butler, KY +41007 : 38.910255 : -84.28194 : California, KY +41008 : 38.663328 : -85.16803 : Carrollton, KY +41010 : 38.484843 : -84.61017 : Corinth, KY +41011 : 39.0752 : -84.52064 : Covington, KY +41012 : 38.944663 : -84.520501 : Covington, KY +41014 : 39.067811 : -84.5039 : Covington, KY +41015 : 39.013062 : -84.49419 : Latonia, KY +41016 : 39.087593 : -84.55057 : Covington, KY +41017 : 39.036361 : -84.56801 : Ft Mitchell, KY +41018 : 39.013755 : -84.60229 : Erlanger, KY +41019 : 38.944663 : -84.520501 : Covington, KY +41022 : 38.962372 : -84.747789 : Florence, KY +41030 : 38.788439 : -84.602 : Crittenden, KY +41031 : 38.397678 : -84.2939 : Cynthiana, KY +41033 : 38.773111 : -84.44889 : De Mossville, KY +41034 : 38.730747 : -83.88762 : Dover, KY +41035 : 38.691006 : -84.6418 : Dry Ridge, KY +41037 : 38.3481 : -83.718626 : Elizaville, KY +41039 : 38.424954 : -83.86286 : Ewing, KY +41040 : 38.656527 : -84.32811 : Falmouth, KY +41041 : 38.418131 : -83.72497 : Flemingsburg, KY +41042 : 38.983853 : -84.64401 : Florence, KY +41043 : 38.765448 : -84.16998 : Foster, KY +41044 : 38.63785 : -83.96651 : Germantown, KY +41045 : 38.724439 : -85.05007 : Ghent, KY +41046 : 38.742296 : -84.81223 : Glencoe, KY +41048 : 39.0805 : -84.68754 : Hebron, KY +41049 : 38.286314 : -83.6512 : Hillsboro, KY +41051 : 38.941953 : -84.54902 : Independence, KY +41052 : 38.6622 : -84.77495 : Jonesville, KY +41053 : 38.944663 : -84.520501 : Kenton, KY +41054 : 38.593226 : -84.578552 : Mason, KY +41055 : 38.52217 : -83.85894 : Mayslick, KY +41056 : 38.624534 : -83.76561 : Maysville, KY +41059 : 39.022732 : -84.36575 : Melbourne, KY +41061 : 38.688556 : -84.070074 : Milford, KY +41062 : 38.719573 : -83.910276 : Minerva, KY +41063 : 38.842166 : -84.48802 : Morning View, KY +41064 : 38.508638 : -84.05145 : Mount Olivet, KY +41065 : 38.3481 : -83.718626 : Muses Mills, KY +41071 : 39.08347 : -84.48681 : Newport, KY +41072 : 38.963761 : -84.368926 : Newport, KY +41073 : 39.103011 : -84.47987 : Bellevue, KY +41074 : 39.10941 : -84.46986 : Dayton, KY +41075 : 39.076011 : -84.45127 : Fort Thomas, KY +41076 : 39.019185 : -84.44204 : Newport, KY +41080 : 39.062761 : -84.85236 : Petersburg, KY +41081 : 38.3481 : -83.718626 : Plummers Landing, KY +41083 : 38.666588 : -84.96756 : Sanders, KY +41085 : 39.034293 : -84.39156 : Silver Grove, KY +41086 : 38.709838 : -84.88807 : Sparta, KY +41091 : 38.930285 : -84.71603 : Union, KY +41092 : 38.815335 : -84.68485 : Verona, KY +41093 : 38.37106 : -83.57103 : Wallingford, KY +41094 : 38.87872 : -84.62558 : Walton, KY +41095 : 38.775686 : -84.89756 : Warsaw, KY +41096 : 38.61225 : -83.808021 : Washington, KY +41097 : 38.628866 : -84.5679 : Williamstown, KY +41098 : 38.60395 : -85.03388 : Worthville, KY +41099 : 38.963761 : -84.368926 : Newport, KY +41101 : 38.473961 : -82.64532 : Ashland, KY +41102 : 38.439526 : -82.6932 : Ashland, KY +41105 : 38.370285 : -82.694757 : Ashland, KY +41114 : 38.370285 : -82.694757 : Ashland, KY +41121 : 38.456608 : -82.82615 : Argillite, KY +41124 : 38.028476 : -82.84781 : Blaine, KY +41127 : 38.602881 : -83.361625 : Camp Dix, KY +41128 : 38.433912 : -83.133597 : Carter, KY +41129 : 38.360669 : -82.61836 : Catlettsburg, KY +41132 : 38.251159 : -82.83496 : Denton, KY +41135 : 38.365096 : -83.27206 : Emerson, KY +41137 : 38.688142 : -83.04838 : Firebrick, KY +41139 : 38.52032 : -82.72175 : Flatwoods, KY +41141 : 38.570194 : -83.14301 : Garrison, KY +41142 : 38.282767 : -83.0727 : Grahn, KY +41143 : 38.323106 : -82.94997 : Grayson, KY +41144 : 38.552472 : -82.86514 : Greenup, KY +41146 : 38.272476 : -82.90494 : Hitchins, KY +41149 : 38.061324 : -83.05005 : Isonville, KY +41150 : 38.225087 : -83.242129 : Jacobs, KY +41156 : 38.565211 : -82.916586 : Lloyd, KY +41159 : 38.019104 : -82.9507 : Martha, KY +41160 : 38.074113 : -82.744663 : Mazie, KY +41163 : 38.338445 : -82.939541 : Grayson, KY +41164 : 38.292177 : -83.18381 : Olive Hill, KY +41166 : 38.630683 : -83.11739 : Quincy, KY +41168 : 38.298546 : -82.77714 : Rush, KY +41169 : 38.538456 : -82.70856 : Russell, KY +41170 : 38.68177 : -83.0695 : Saint Paul, KY +41171 : 38.089097 : -83.09554 : Sandy Hook, KY +41173 : 38.262029 : -83.28472 : Soldier, KY +41174 : 38.71293 : -83.02353 : South Portsmouth, KY +41175 : 38.676695 : -82.9686 : South Shore, KY +41179 : 38.530915 : -83.38506 : Vanceburg, KY +41180 : 38.132937 : -82.85098 : Webbville, KY +41181 : 38.204459 : -82.907615 : Willard, KY +41183 : 38.54912 : -82.73508 : Worthington, KY +41189 : 38.546281 : -83.55909 : Tollesboro, KY +41201 : 38.076051 : -82.73975 : Adams, KY +41203 : 37.846064 : -82.44835 : Beauty, KY +41204 : 37.81711 : -82.68897 : Boons Camp, KY +41214 : 37.775385 : -82.57034 : Debord, KY +41215 : 37.771963 : -82.865092 : Denver, KY +41216 : 37.756007 : -82.81931 : East Point, KY +41219 : 37.933492 : -82.90279 : Flatgap, KY +41222 : 37.780917 : -82.82744 : Hagerhill, KY +41224 : 37.866327 : -82.52903 : Inez, KY +41226 : 37.992794 : -82.94551 : Keaton, KY +41228 : 37.752473 : -82.87484 : Leander, KY +41230 : 38.071237 : -82.64062 : Louisa, KY +41231 : 37.810757 : -82.39411 : Lovely, KY +41232 : 37.916701 : -82.73746 : Lowmansville, KY +41234 : 37.795418 : -82.7337 : Meally, KY +41238 : 37.841448 : -82.94106 : Oil Springs, KY +41240 : 37.823275 : -82.78167 : Paintsville, KY +41250 : 37.758445 : -82.48919 : Pilgrim, KY +41254 : 37.887278 : -82.73688 : River, KY +41255 : 37.916221 : -82.83962 : Sitka, KY +41256 : 37.832617 : -82.86299 : Staffordsville, KY +41257 : 37.940709 : -82.81233 : Stambaugh, KY +41260 : 37.831324 : -82.76039 : Thelma, KY +41262 : 37.855873 : -82.62091 : Tomahawk, KY +41263 : 37.8583 : -82.7598 : Tutor Key, KY +41264 : 37.935529 : -82.68331 : Ulysses, KY +41265 : 37.761356 : -82.72165 : Van Lear, KY +41267 : 37.855146 : -82.41666 : Warfield, KY +41268 : 37.789291 : -82.78437 : West Van Lear, KY +41271 : 37.831277 : -82.726407 : Williamsport, KY +41274 : 37.86388 : -82.80914 : Wittensville, KY +41301 : 37.716311 : -83.51835 : Campton, KY +41307 : 37.515013 : -83.26432 : Athol, KY +41310 : 37.640938 : -83.24466 : Bays, KY +41311 : 37.578547 : -83.70348 : Beattyville, KY +41313 : 37.740503 : -83.475446 : Bethany, KY +41314 : 37.430777 : -83.66771 : Booneville, KY +41317 : 37.461944 : -83.18256 : Clayhole, KY +41332 : 37.797688 : -83.36866 : Hazel Green, KY +41333 : 37.556255 : -83.776253 : Heidelberg, KY +41338 : 37.398617 : -83.704908 : Island City, KY +41339 : 37.533559 : -83.34547 : Jackson, KY +41342 : 37.740503 : -83.475446 : Lee City, KY +41344 : 37.502641 : -83.62117 : Lerose, KY +41347 : 37.54418 : -83.600784 : Lone, KY +41348 : 37.426337 : -83.29911 : Lost Creek, KY +41351 : 37.398617 : -83.704908 : Mistletoe, KY +41352 : 37.914002 : -83.233761 : Mize, KY +41360 : 37.791388 : -83.64971 : Pine Ridge, KY +41362 : 37.60332 : -83.713974 : Primrose, KY +41364 : 37.382832 : -83.62327 : Ricetown, KY +41365 : 37.711278 : -83.63647 : Rogers, KY +41366 : 37.593059 : -83.287774 : Rousseau, KY +41367 : 37.383285 : -83.2404 : Rowdy, KY +41368 : 37.611684 : -83.64341 : Saint Helens, KY +41377 : 37.416002 : -83.44991 : Talbert, KY +41385 : 37.635723 : -83.35077 : Vancleve, KY +41386 : 37.473347 : -83.81722 : Vincent, KY +41390 : 37.424083 : -83.37595 : Whick, KY +41397 : 37.643659 : -83.67763 : Zoe, KY +41408 : 37.792272 : -83.28137 : Cannel City, KY +41410 : 37.690636 : -83.074592 : Cisco, KY +41413 : 37.970507 : -83.125202 : Crockett, KY +41419 : 37.690636 : -83.074592 : Edna, KY +41421 : 37.997666 : -83.16103 : Elkfork, KY +41422 : 37.690636 : -83.074592 : Elsie, KY +41425 : 37.891486 : -83.44413 : Ezel, KY +41426 : 37.784924 : -82.99783 : Falcon, KY +41433 : 37.690636 : -83.074592 : Gapville, KY +41444 : 37.690636 : -83.074592 : Ivyton, KY +41451 : 37.914002 : -83.233761 : Malone, KY +41459 : 37.914002 : -83.233761 : Ophir, KY +41463 : 37.745824 : -83.073603 : Salyersville, KY +41464 : 37.65026 : -82.94544 : Royalton, KY +41465 : 37.736751 : -83.08652 : Salyersville, KY +41472 : 37.932283 : -83.23821 : West Liberty, KY +41477 : 37.914002 : -83.233761 : Wrigley, KY +41501 : 37.478169 : -82.5189 : Pikeville, KY +41502 : 37.481637 : -82.550507 : Pikeville, KY +41503 : 37.67059 : -82.28465 : South Williamson, KY +41512 : 37.254188 : -82.47961 : Ashcamp, KY +41513 : 37.357536 : -82.3631 : Belcher, KY +41514 : 37.672296 : -82.30442 : Belfry, KY +41517 : 37.184477 : -82.61109 : Burdine, KY +41519 : 37.60512 : -82.31477 : Canada, KY +41520 : 37.279027 : -82.57732 : Dorton, KY +41522 : 37.300397 : -82.39516 : Elkhorn City, KY +41524 : 37.424071 : -82.23762 : Fedscreek, KY +41526 : 37.437194 : -82.518527 : Fords Branch, KY +41527 : 37.641773 : -82.27793 : Forest Hills, KY +41528 : 37.561944 : -82.13471 : Freeburn, KY +41531 : 37.599893 : -82.23349 : Hardy, KY +41534 : 37.2701 : -82.48553 : Hellier, KY +41535 : 37.598267 : -82.27611 : Huddy, KY +41537 : 37.192483 : -82.6235 : Jenkins, KY +41538 : 37.314335 : -82.59506 : Jonancy, KY +41539 : 37.504315 : -82.32797 : Kimper, KY +41540 : 37.396574 : -82.33349 : Lick Creek, KY +41542 : 37.314848 : -82.464979 : Lookout, KY +41543 : 37.553553 : -82.28283 : McAndrews, KY +41544 : 37.59865 : -82.16836 : McCarr, KY +41546 : 37.550374 : -82.25703 : McVeigh, KY +41547 : 37.544224 : -82.06488 : Majestic, KY +41548 : 37.369612 : -82.23523 : Mouthcard, KY +41549 : 37.293386 : -82.60019 : Myra, KY +41553 : 37.506174 : -82.15907 : Phelps, KY +41554 : 37.445906 : -82.32708 : Phyllis, KY +41555 : 37.52976 : -82.26665 : Pinsonfork, KY +41557 : 37.514166 : -82.43625 : Raccoon, KY +41558 : 37.533643 : -82.21145 : Ransom, KY +41559 : 37.364548 : -82.40573 : Regina, KY +41560 : 37.389786 : -82.55812 : Robinson Creek, KY +41561 : 37.33162 : -82.462574 : Rockhouse, KY +41562 : 37.416995 : -82.4571 : Shelbiana, KY +41563 : 37.216465 : -82.54639 : Shelby Gap, KY +41564 : 37.610331 : -82.36125 : Sidney, KY +41566 : 37.417254 : -82.18823 : Steele, KY +41567 : 37.560929 : -82.28796 : Stone, KY +41568 : 37.49947 : -82.05643 : Stopover, KY +41569 : 37.633524 : -82.25408 : Toler, KY +41571 : 37.625031 : -82.38704 : Varney, KY +41572 : 37.322411 : -82.61598 : Virgie, KY +41601 : 37.611434 : -82.72503 : Allen, KY +41602 : 37.73696 : -82.74012 : Auxier, KY +41603 : 37.601078 : -82.69496 : Banner, KY +41604 : 37.370358 : -82.66944 : Beaver, KY +41605 : 37.554631 : -82.63174 : Betsy Layne, KY +41606 : 37.362943 : -82.73277 : Bevinsville, KY +41607 : 37.617197 : -82.85634 : Blue River, KY +41612 : 37.358509 : -82.7207 : Bypro, KY +41615 : 37.550496 : -82.6933 : Dana, KY +41616 : 37.587133 : -82.87272 : David, KY +41619 : 37.496608 : -82.75942 : Drift, KY +41621 : 37.623492 : -82.72417 : Dwale, KY +41622 : 37.514748 : -82.81097 : Eastern, KY +41630 : 37.470216 : -82.8409 : Garrett, KY +41631 : 37.479754 : -82.64922 : Grethel, KY +41632 : 37.555846 : -82.94995 : Gunlock, KY +41635 : 37.509291 : -82.63494 : Harold, KY +41636 : 37.398774 : -82.73257 : Hi Hat, KY +41640 : 37.493888 : -82.94192 : Hueysville, KY +41642 : 37.587011 : -82.66028 : Ivel, KY +41643 : 37.470999 : -82.829405 : Lackey, KY +41645 : 37.544465 : -82.80178 : Langley, KY +41647 : 37.449076 : -82.7264 : McDowell, KY +41649 : 37.568873 : -82.75937 : Martin, KY +41650 : 37.351125 : -82.69298 : Melvin, KY +41651 : 37.465744 : -82.75492 : Minnie, KY +41653 : 37.667872 : -82.75876 : Prestonsburg, KY +41655 : 37.511126 : -82.72053 : Printer, KY +41659 : 37.569845 : -82.62562 : Stanville, KY +41660 : 37.428801 : -82.64374 : Teaberry, KY +41663 : 37.568942 : -82.64774 : Tram, KY +41666 : 37.446983 : -82.80852 : Wayland, KY +41667 : 37.322234 : -82.69699 : Weeksbury, KY +41668 : 37.670986 : -82.760975 : West Prestonsburg, KY +41669 : 37.331465 : -82.71906 : Wheelwright, KY +41701 : 37.274854 : -83.19061 : Hazard, KY +41702 : 37.320076 : -83.206495 : Hazard, KY +41705 : 39.08359 : -84.450912 : Fort Thomas, KY +41712 : 37.373384 : -83.15186 : Ary, KY +41713 : 37.22539 : -83.273609 : Avawam, KY +41714 : 37.163342 : -83.51527 : Bear Branch, KY +41719 : 37.295365 : -83.25414 : Bonnyman, KY +41721 : 37.325318 : -83.49048 : Buckhorn, KY +41722 : 37.369312 : -83.1156 : Bulan, KY +41723 : 37.257714 : -83.31253 : Busy, KY +41725 : 37.33195 : -83.02976 : Carrie, KY +41727 : 37.350689 : -83.34049 : Chavies, KY +41729 : 37.266633 : -83.21226 : Combs, KY +41730 : 37.263348 : -83.39943 : Confluence, KY +41731 : 37.115385 : -83.08501 : Cornettsville, KY +41735 : 37.029744 : -83.08919 : Delphia, KY +41736 : 37.370521 : -83.23714 : Dice, KY +41739 : 37.348289 : -83.11137 : Dwarf, KY +41740 : 37.348377 : -83.04938 : Emmalena, KY +41743 : 37.30636 : -83.090441 : Fisty, KY +41745 : 37.328336 : -83.4399 : Gays Creek, KY +41746 : 37.204045 : -83.09845 : Happy, KY +41747 : 37.300202 : -83.122477 : Hardburly, KY +41749 : 37.17621 : -83.38301 : Hyden, KY +41751 : 37.207333 : -83.13361 : Jeff, KY +41754 : 37.31629 : -83.33267 : Krypton, KY +41759 : 37.229381 : -83.03409 : Sassafras, KY +41760 : 37.205562 : -83.08055 : Scuddy, KY +41762 : 37.223635 : -83.50599 : Sizerock, KY +41763 : 37.04877 : -83.13904 : Slemp, KY +41764 : 37.113248 : -83.24326 : Smilax, KY +41766 : 37.187088 : -83.44978 : Thousandsticks, KY +41772 : 37.393894 : -83.02313 : Vest, KY +41773 : 37.221636 : -83.05627 : Vicco, KY +41774 : 37.158397 : -83.13673 : Viper, KY +41775 : 37.10014 : -83.34647 : Wendover, KY +41776 : 37.167173 : -83.2852 : Wooton, KY +41777 : 37.065439 : -83.22479 : Yeaddiss, KY +41778 : 37.279297 : -83.3187 : Yerkes, KY +41804 : 37.141017 : -82.99081 : Blackey, KY +41810 : 37.185228 : -82.69447 : Cromona, KY +41812 : 37.241284 : -82.75013 : Deane, KY +41815 : 37.150537 : -82.79468 : Ermine, KY +41817 : 37.36778 : -82.91535 : Garner, KY +41819 : 36.98586 : -83.06497 : Gordon, KY +41821 : 37.088069 : -82.99728 : Hallie, KY +41822 : 37.333551 : -82.97212 : Hindman, KY +41824 : 37.194426 : -82.88714 : Isom, KY +41825 : 37.215305 : -82.70468 : Jackhorn, KY +41826 : 37.164562 : -82.93047 : Jeremiah, KY +41828 : 37.303276 : -82.77851 : Kite, KY +41831 : 37.387358 : -82.95633 : Leburn, KY +41832 : 37.148006 : -82.95634 : Letcher, KY +41833 : 37.021403 : -82.98159 : Linefork, KY +41834 : 37.270358 : -82.9403 : Littcarr, KY +41835 : 37.205961 : -82.67347 : McRoberts, KY +41836 : 37.245041 : -82.8955 : Mallie, KY +41837 : 37.135518 : -82.74606 : Mayking, KY +41838 : 37.168682 : -82.75036 : Millstone, KY +41839 : 37.420362 : -82.87543 : Mousie, KY +41840 : 37.195448 : -82.71232 : Neon, KY +41843 : 37.273854 : -82.86011 : Pine Top, KY +41844 : 37.334629 : -82.87549 : Pippa Passes, KY +41845 : 37.123583 : -82.93216 : Premium, KY +41847 : 37.21583 : -82.95449 : Redfox, KY +41848 : 37.110216 : -82.94073 : Roxana, KY +41849 : 37.172969 : -82.72934 : Seco, KY +41855 : 37.156856 : -82.76167 : Thornton, KY +41858 : 37.130559 : -82.83185 : Whitesburg, KY +41859 : 37.392257 : -82.78204 : Dema, KY +41861 : 37.386051 : -82.83138 : Raven, KY +41862 : 37.357624 : -82.79564 : Topmost, KY +42001 : 37.066543 : -88.65687 : Paducah, KY +42002 : 37.085511 : -88.71247 : Paducah, KY +42003 : 37.044233 : -88.59046 : Paducah, KY +42011 : 37.220735 : -88.061294 : Fredonia, KY +42020 : 36.697107 : -88.29836 : Almo, KY +42021 : 36.796741 : -88.997 : Arlington, KY +42022 : 37.149003 : -88.94252 : Bandana, KY +42023 : 36.881954 : -88.98347 : Bardwell, KY +42024 : 37.071352 : -89.04326 : Barlow, KY +42025 : 36.854812 : -88.33515 : Benton, KY +42027 : 36.92516 : -88.63778 : Boaz, KY +42028 : 37.24122 : -88.33829 : Burna, KY +42029 : 37.013505 : -88.37269 : Calvert City, KY +42031 : 36.678217 : -88.97559 : Clinton, KY +42032 : 36.755242 : -89.10667 : Columbus, KY +42033 : 37.336533 : -88.079607 : Crayne, KY +42035 : 36.911107 : -88.84412 : Cunningham, KY +42036 : 36.731901 : -88.24594 : Dexter, KY +42037 : 37.157866 : -88.183598 : Dycusburg, KY +42038 : 37.051386 : -88.03613 : Eddyville, KY +42039 : 36.800353 : -88.83224 : Fancy Farm, KY +42040 : 36.614839 : -88.5005 : Farmington, KY +42041 : 36.532059 : -88.89132 : Fulton, KY +42044 : 36.97877 : -88.28273 : Gilbertsville, KY +42045 : 37.031683 : -88.24498 : Grand Rivers, KY +42046 : 36.6033 : -88.092285 : Hamlin, KY +42047 : 37.2948 : -88.41026 : Hampton, KY +42048 : 36.765893 : -88.26527 : Hardin, KY +42049 : 36.511681 : -88.32543 : Hazel, KY +42050 : 36.558598 : -89.19789 : Hickman, KY +42051 : 36.852344 : -88.63769 : Hickory, KY +42053 : 37.107447 : -88.86061 : Kevil, KY +42054 : 36.716315 : -88.44499 : Kirksey, KY +42055 : 37.058356 : -88.14097 : Kuttawa, KY +42056 : 37.08716 : -88.97616 : La Center, KY +42058 : 37.054715 : -88.48043 : Ledbetter, KY +42060 : 36.968906 : -88.82817 : Lovelaceville, KY +42061 : 36.885527 : -88.77469 : Lowes, KY +42063 : 36.723872 : -88.652009 : Lynnville, KY +42064 : 37.331602 : -88.06997 : Marion, KY +42066 : 36.733761 : -88.63449 : Mayfield, KY +42069 : 36.921462 : -88.75871 : Melber, KY +42070 : 36.863147 : -88.995991 : Milburn, KY +42071 : 36.617443 : -88.28746 : Murray, KY +42076 : 36.540753 : -88.06837 : New Concord, KY +42078 : 37.282124 : -88.24568 : Salem, KY +42079 : 36.574074 : -88.56359 : Sedalia, KY +42081 : 37.217493 : -88.40884 : Smithland, KY +42082 : 36.922652 : -88.5104 : Symsonia, KY +42083 : 37.150978 : -88.29191 : Tiline, KY +42084 : 37.433695 : -88.24498 : Tolu, KY +42085 : 36.578907 : -88.82074 : Water Valley, KY +42086 : 37.089948 : -88.7597 : West Paducah, KY +42087 : 36.96575 : -89.0324 : Wickliffe, KY +42088 : 36.627427 : -88.74845 : Wingo, KY +42101 : 37.010643 : -86.46145 : Bowling Green, KY +42102 : 36.922292 : -86.387046 : Bowling Green, KY +42103 : 36.969761 : -86.38247 : Bowling Green, KY +42104 : 36.930527 : -86.44751 : Bowling Green, KY +42109 : 36.961988 : -86.450786 : Bowling Green, KY +42120 : 36.661883 : -86.25964 : Adolphus, KY +42122 : 36.86316 : -86.35202 : Alvaton, KY +42123 : 36.820727 : -86.00112 : Austin, KY +42124 : 36.857666 : -85.649583 : Beaumont, KY +42127 : 37.131203 : -85.94633 : Cave City, KY +42128 : 36.983441 : -86.394012 : Drake, KY +42129 : 36.988613 : -85.58534 : Edmonton, KY +42130 : 36.91297 : -85.775282 : Eighty Eight, KY +42131 : 36.82928 : -85.90806 : Etoile, KY +42133 : 36.721319 : -85.96139 : Fountain Run, KY +42134 : 36.718074 : -86.58202 : Franklin, KY +42135 : 36.758166 : -86.581957 : Franklin, KY +42140 : 36.655006 : -85.80866 : Gamaliel, KY +42141 : 36.970776 : -85.91232 : Glasgow, KY +42142 : 36.946326 : -85.957797 : Glasgow, KY +42150 : 36.782131 : -86.184088 : Halfway, KY +42151 : 36.63667 : -85.55275 : Hestand, KY +42152 : 37.098753 : -85.816472 : Hiseville, KY +42153 : 36.665767 : -86.04006 : Holland, KY +42154 : 37.066581 : -85.73482 : Knob Lick, KY +42156 : 36.840503 : -85.995572 : Lucas, KY +42157 : 36.778567 : -85.81772 : Mount Hermon, KY +42159 : 37.016847 : -86.25187 : Oakland, KY +42160 : 37.0896 : -86.06474 : Park City, KY +42163 : 37.09425 : -86.143188 : Rocky Hill, KY +42164 : 36.767969 : -86.1813 : Scottsville, KY +42166 : 36.86322 : -85.71774 : Summer Shade, KY +42167 : 36.712179 : -85.67567 : Tompkinsville, KY +42170 : 36.832502 : -86.554 : Woodburn, KY +42171 : 37.046968 : -86.17181 : Smiths Grove, KY +42201 : 37.279564 : -86.670181 : Aberdeen, KY +42202 : 36.681441 : -86.85365 : Adairville, KY +42203 : 36.929243 : -87.219328 : Allegre, KY +42204 : 36.70996 : -87.07105 : Allensville, KY +42206 : 36.881837 : -86.71983 : Auburn, KY +42207 : 37.293315 : -86.26557 : Bee Spring, KY +42209 : 37.197491 : -86.67216 : Brooklyn, KY +42210 : 37.215448 : -86.29013 : Brownsville, KY +42211 : 36.846471 : -87.86409 : Cadiz, KY +42214 : 37.143908 : -85.66945 : Center, KY +42215 : 36.983293 : -87.68273 : Cerulean, KY +42216 : 37.004492 : -87.152148 : Clifty, KY +42217 : 37.04413 : -87.48219 : Crofton, KY +42219 : 37.170909 : -86.767822 : Dunbar, KY +42220 : 36.887716 : -87.18526 : Elkton, KY +42221 : 36.898071 : -87.496529 : Fairview, KY +42223 : 36.654943 : -87.46188 : Fort Campbell, KY +42232 : 36.847924 : -87.6579 : Gracey, KY +42234 : 36.673268 : -87.18089 : Guthrie, KY +42235 : 36.983441 : -86.394012 : Hadley, KY +42236 : 36.705024 : -87.59935 : Herndon, KY +42240 : 36.866845 : -87.47617 : Hopkinsville, KY +42241 : 36.898071 : -87.496529 : Hopkinsville, KY +42251 : 37.157967 : -86.885846 : Huntsville, KY +42252 : 37.248326 : -86.509271 : Jetson, KY +42253 : 37.17925 : -84.633915 : Science Hill, KY +42254 : 36.657405 : -87.65633 : La Fayette, KY +42256 : 37.020366 : -86.94284 : Lewisburg, KY +42257 : 37.237211 : -86.299361 : Lindseyville, KY +42259 : 37.274689 : -86.19818 : Mammoth Cave, KY +42261 : 37.219254 : -86.67988 : Morgantown, KY +42262 : 36.664334 : -87.42789 : Oak Grove, KY +42265 : 36.752802 : -87.02003 : Olmstead, KY +42266 : 36.780906 : -87.34305 : Pembroke, KY +42267 : 37.229645 : -86.804803 : Provo, KY +42270 : 36.983441 : -86.394012 : Richardsville, KY +42273 : 37.196636 : -86.87625 : Rochester, KY +42274 : 36.931416 : -86.62507 : Rockfield, KY +42275 : 37.223167 : -86.44062 : Roundhill, KY +42276 : 36.860612 : -86.88171 : Russellville, KY +42280 : 36.953559 : -87.09887 : Sharon Grove, KY +42283 : 36.869206 : -86.663225 : South Union, KY +42285 : 37.273726 : -86.27499 : Sweeden, KY +42286 : 36.727378 : -87.26971 : Trenton, KY +42287 : 37.311676 : -86.52913 : Welchs Creek, KY +42288 : 37.197491 : -86.67216 : Woodbury, KY +42301 : 37.753347 : -87.17419 : Owensboro, KY +42302 : 37.745491 : -87.112823 : Owensboro, KY +42303 : 37.758568 : -87.08714 : Owensboro, KY +42304 : 37.745491 : -87.112823 : Owensboro, KY +42320 : 37.377266 : -86.88364 : Beaver Dam, KY +42321 : 37.177839 : -87.05761 : Beech Creek, KY +42322 : 37.615062 : -87.406866 : Beech Grove, KY +42323 : 37.172261 : -87.03677 : Beechmont, KY +42324 : 37.150125 : -87.00657 : Belton, KY +42325 : 37.333802 : -87.26807 : Bremen, KY +42326 : 37.198074 : -87.01403 : Browder, KY +42327 : 37.575772 : -87.29499 : Calhoun, KY +42328 : 37.410099 : -87.03433 : Centertown, KY +42330 : 37.299591 : -87.12992 : Central City, KY +42332 : 37.251296 : -87.09071 : Cleaton, KY +42333 : 37.349023 : -86.76565 : Cromwell, KY +42334 : 37.745491 : -87.112823 : Curdsville, KY +42337 : 37.227223 : -87.01349 : Drakesboro, KY +42338 : 37.559872 : -86.77254 : Dundee, KY +42339 : 37.094139 : -86.9746 : Dunmor, KY +42343 : 37.655016 : -86.69303 : Fordsville, KY +42344 : 37.240117 : -87.29396 : Graham, KY +42345 : 37.166299 : -87.18333 : Greenville, KY +42347 : 37.471839 : -86.9063 : Hartford, KY +42348 : 37.882498 : -86.76297 : Hawesville, KY +42349 : 37.433703 : -86.66952 : Horse Branch, KY +42350 : 37.456942 : -87.17107 : Island, KY +42351 : 37.918157 : -86.89243 : Lewisport, KY +42352 : 37.502836 : -87.11162 : Livermore, KY +42354 : 37.3799 : -86.9258 : McHenry, KY +42355 : 37.86975 : -86.99535 : Maceo, KY +42356 : 37.693229 : -87.323841 : Maple Mount, KY +42361 : 37.517388 : -86.6846 : Olaton, KY +42364 : 37.827235 : -86.804814 : Pellville, KY +42365 : 37.114594 : -87.00175 : Penrod, KY +42366 : 37.729714 : -86.92838 : Philpot, KY +42367 : 37.242948 : -87.154898 : Powderly, KY +42368 : 37.710929 : -86.75487 : Reynolds Station, KY +42369 : 37.337926 : -86.99685 : Rockport, KY +42370 : 37.448681 : -86.74121 : Rosine, KY +42371 : 37.508047 : -87.29293 : Rumsey, KY +42372 : 37.41277 : -87.28063 : Sacramento, KY +42374 : 37.33976 : -87.14514 : South Carrollton, KY +42375 : 37.745491 : -87.112823 : Stanley, KY +42376 : 37.598406 : -87.09113 : Utica, KY +42377 : 37.745491 : -87.112823 : West Louisville, KY +42378 : 37.666515 : -86.86454 : Whitesville, KY +42400 : 37.784577 : -87.72406 : Morganfield, KY +42402 : 37.778911 : -87.60124 : Baskett, KY +42403 : 37.448198 : -87.93391 : Blackford, KY +42404 : 37.481719 : -87.8394 : Clay, KY +42406 : 37.743264 : -87.73173 : Corydon, KY +42408 : 37.183465 : -87.68413 : Dawson Springs, KY +42409 : 37.52165 : -87.69701 : Dixon, KY +42410 : 37.275896 : -87.51498 : Earlington, KY +42411 : 37.216778 : -88.01438 : Fredonia, KY +42413 : 37.425687 : -87.495 : Hanson, KY +42419 : 37.807173 : -87.599052 : Henderson, KY +42420 : 37.825094 : -87.56055 : Henderson, KY +42431 : 37.330791 : -87.50378 : Madisonville, KY +42436 : 37.458645 : -87.54828 : Manitou, KY +42437 : 37.67416 : -87.90199 : Morganfield, KY +42440 : 37.238785 : -87.46986 : Mortons Gap, KY +42441 : 37.36327 : -87.65307 : Nebo, KY +42442 : 37.178627 : -87.46702 : Nortonville, KY +42444 : 37.641689 : -87.63786 : Poole, KY +42445 : 37.12596 : -87.87429 : Princeton, KY +42450 : 37.396445 : -87.76428 : Providence, KY +42451 : 37.859415 : -87.37005 : Reed, KY +42452 : 37.674669 : -87.54291 : Robards, KY +42453 : 37.143686 : -87.59662 : Saint Charles, KY +42455 : 37.600857 : -87.52635 : Sebree, KY +42456 : 37.514424 : -87.49975 : Slaughters, KY +42457 : 37.801347 : -87.76586 : Smith Mills, KY +42458 : 37.860142 : -87.41866 : Spottsville, KY +42459 : 37.558719 : -87.99632 : Sturgis, KY +42460 : 37.493997 : -87.932773 : Sullivan, KY +42461 : 37.771573 : -87.91614 : Uniontown, KY +42462 : 37.729871 : -87.81891 : Waverly, KY +42463 : 37.488169 : -87.8631 : Wheatcroft, KY +42464 : 37.168568 : -87.37879 : White Plains, KY +42501 : 37.075624 : -84.54437 : Somerset, KY +42502 : 37.09325 : -84.427729 : Somerset, KY +42503 : 37.112274 : -84.588 : Somerset, KY +42516 : 37.191504 : -84.79832 : Bethelridge, KY +42518 : 36.94593 : -84.63278 : Bronston, KY +42519 : 36.965123 : -84.55458 : Burnside, KY +42528 : 37.180186 : -85.02396 : Dunnville, KY +42533 : 37.067452 : -84.60301 : Ferguson, KY +42539 : 37.305705 : -84.94589 : Liberty, KY +42541 : 37.3677 : -84.80732 : Middleburg, KY +42544 : 37.029286 : -84.81365 : Nancy, KY +42553 : 37.177577 : -84.65481 : Science Hill, KY +42558 : 36.94919 : -84.581482 : Tateville, KY +42564 : 37.111433 : -84.592898 : West Somerset, KY +42565 : 37.144759 : -84.89524 : Windsor, KY +42566 : 37.303038 : -84.77674 : Yosemite, KY +42567 : 37.250746 : -84.61781 : Eubank, KY +42602 : 36.72024 : -85.13539 : Albany, KY +42603 : 36.7703 : -85.01043 : Alpha, KY +42629 : 36.946642 : -85.09981 : Jamestown, KY +42631 : 36.762748 : -84.51036 : Marshes Siding, KY +42632 : 36.932769 : -84.7757 : Mill Springs, KY +42633 : 36.801922 : -84.82841 : Monticello, KY +42634 : 36.881682 : -84.42143 : Parkers Lake, KY +42635 : 36.663153 : -84.41611 : Pine Knot, KY +42637 : 36.843563 : -84.841004 : Monticello, KY +42638 : 36.673236 : -84.47095 : Revelo, KY +42642 : 37.05401 : -85.06142 : Russell Springs, KY +42647 : 36.710692 : -84.55416 : Stearns, KY +42649 : 36.631706 : -84.42183 : Strunk, KY +42653 : 36.772507 : -84.47785 : Whitley City, KY +42701 : 37.704287 : -85.86403 : Elizabethtown, KY +42702 : 37.723474 : -85.976854 : Elizabethtown, KY +42711 : 36.898169 : -85.31056 : Bakerton, KY +42712 : 37.581023 : -86.15642 : Big Clifty, KY +42713 : 37.381189 : -85.88175 : Bonnieville, KY +42715 : 36.954911 : -85.39553 : Breeding, KY +42716 : 37.47534 : -85.60987 : Buffalo, KY +42717 : 36.765985 : -85.39971 : Burkesville, KY +42718 : 37.372314 : -85.3549 : Campbellsville, KY +42719 : 37.337936 : -85.330374 : Campbellsville, KY +42720 : 37.121145 : -85.370926 : Cane Valley, KY +42721 : 37.413211 : -86.49884 : Caneyville, KY +42722 : 37.271372 : -85.72639 : Canmer, KY +42724 : 37.668721 : -86.02527 : Cecilia, KY +42726 : 37.429456 : -86.16448 : Clarkson, KY +42728 : 37.123196 : -85.27561 : Columbia, KY +42729 : 37.304661 : -86.12987 : Cub Run, KY +42731 : 36.8395 : -85.55526 : Dubre, KY +42732 : 37.606543 : -86.10413 : Eastview, KY +42733 : 37.353227 : -85.1628 : Elk Horn, KY +42735 : 37.045089 : -85.29683 : Fairplay, KY +42740 : 37.59641 : -85.92294 : Glendale, KY +42741 : 36.98182 : -85.22988 : Glens Fork, KY +42742 : 37.098391 : -85.50199 : Gradyville, KY +42743 : 37.234802 : -85.51436 : Greensburg, KY +42746 : 37.199656 : -85.73469 : Hardyville, KY +42748 : 37.566527 : -85.71452 : Hodgenville, KY +42749 : 37.176738 : -85.88288 : Horse Cave, KY +42753 : 37.242258 : -85.20271 : Knifley, KY +42754 : 37.479797 : -86.30731 : Leitchfield, KY +42755 : 37.471943 : -86.343941 : Leitchfield, KY +42757 : 37.415382 : -85.71597 : Magnolia, KY +42758 : 37.360392 : -85.198031 : Mannsville, KY +42759 : 36.824961 : -85.50481 : Marrowbone, KY +42761 : 37.113189 : -85.44177 : Milltown, KY +42762 : 37.443289 : -86.40531 : Millwood, KY +42764 : 37.463961 : -85.639231 : Mount Sherman, KY +42765 : 37.291869 : -85.90786 : Munfordville, KY +42776 : 37.52025 : -85.8807 : Sonora, KY +42782 : 37.349798 : -85.64536 : Summersville, KY +42783 : 37.567134 : -86.085259 : Summit, KY +42784 : 37.456599 : -85.90164 : Upton, KY +42786 : 36.819839 : -85.462435 : Waterview, KY +42788 : 37.55125 : -86.03115 : White Mills, KY +43001 : 40.091576 : -82.61225 : Alexandria, OH +43002 : 40.05991 : -83.18299 : Amlin, OH +43003 : 40.40994 : -82.96124 : Ashley, OH +43004 : 39.998073 : -82.8052 : Blacklick, OH +43005 : 40.285043 : -82.28218 : Bladensburg, OH +43006 : 40.471139 : -82.16947 : Brinkhaven, OH +43007 : 40.340633 : -83.416306 : Broadway, OH +43008 : 39.93398 : -82.47932 : Buckeye Lake, OH +43009 : 40.175413 : -83.64579 : Cable, OH +43010 : 40.000364 : -83.62142 : Catawba, OH +43011 : 40.304121 : -82.68029 : Centerburg, OH +43013 : 40.235446 : -82.69054 : Croton, OH +43014 : 40.470806 : -82.26422 : Danville, OH +43015 : 40.295925 : -83.06968 : Delaware, OH +43016 : 40.089811 : -83.13983 : Dublin, OH +43017 : 40.109478 : -83.12713 : Dublin, OH +43018 : 39.956994 : -82.68307 : Etna, OH +43019 : 40.493191 : -82.56998 : Fredericktown, OH +43021 : 40.202298 : -82.89437 : Galena, OH +43022 : 40.351781 : -82.35543 : Gambier, OH +43023 : 40.070985 : -82.52134 : Granville, OH +43025 : 39.958869 : -82.49882 : Hebron, OH +43026 : 40.021665 : -83.14762 : Hilliard, OH +43027 : 40.132821 : -82.561556 : Homer, OH +43028 : 40.42065 : -82.31485 : Howard, OH +43029 : 40.108356 : -83.44868 : Irwin, OH +43030 : 39.968846 : -82.430017 : Jacksontown, OH +43031 : 40.151979 : -82.66944 : Johnstown, OH +43032 : 40.328773 : -82.95824 : Kilbourne, OH +43033 : 39.960661 : -82.59613 : Kirkersville, OH +43035 : 40.173636 : -82.99675 : Lewis Center, OH +43036 : 40.353133 : -83.26289 : Magnetic Springs, OH +43037 : 40.27453 : -82.34436 : Martinsburg, OH +43040 : 40.255973 : -83.36391 : Marysville, OH +43041 : 40.306924 : -83.360645 : Marysville, OH +43044 : 40.052907 : -83.57223 : Mechanicsburg, OH +43045 : 40.179696 : -83.44266 : Milford Center, OH +43046 : 39.900063 : -82.53696 : Millersport, OH +43047 : 40.204914 : -83.646581 : Mingo, OH +43048 : 40.406113 : -82.465777 : Mount Liberty, OH +43050 : 40.385636 : -82.48254 : Mount Vernon, OH +43054 : 40.080252 : -82.82462 : New Albany, OH +43055 : 40.079115 : -82.40054 : Newark, OH +43056 : 40.017096 : -82.34322 : Heath, OH +43058 : 40.095148 : -82.482659 : Newark, OH +43060 : 40.223286 : -83.56172 : North Lewisburg, OH +43061 : 40.285343 : -83.20426 : Ostrander, OH +43062 : 39.994001 : -82.67652 : Pataskala, OH +43064 : 40.103133 : -83.26825 : Plain City, OH +43065 : 40.155515 : -83.08415 : Powell, OH +43066 : 40.400799 : -83.15216 : Radnor, OH +43067 : 40.355958 : -83.46681 : Raymond, OH +43068 : 39.956384 : -82.7961 : Reynoldsburg, OH +43070 : 40.217799 : -83.96044 : Rosewood, OH +43071 : 40.173402 : -82.36653 : Saint Louisville, OH +43072 : 40.123455 : -83.95416 : Saint Paris, OH +43073 : 39.996516 : -82.754034 : Summit Station, OH +43074 : 40.270926 : -82.84501 : Sunbury, OH +43076 : 39.909915 : -82.41013 : Thornville, OH +43077 : 40.136336 : -83.3415 : Unionville Center, OH +43078 : 40.112531 : -83.76633 : Urbana, OH +43080 : 40.242377 : -82.42775 : Utica, OH +43081 : 40.109513 : -82.91606 : Westerville, OH +43082 : 40.14852 : -82.91278 : Westerville, OH +43083 : 40.102185 : -83.83786 : Westville, OH +43084 : 40.145952 : -83.52488 : Woodstock, OH +43085 : 40.097796 : -83.02076 : Columbus, OH +43086 : 39.969036 : -83.011389 : Westerville, OH +43093 : 40.095148 : -82.482659 : Newark, OH +43098 : 40.095148 : -82.482659 : Hebron, OH +43101 : 39.466041 : -82.7457 : Adelphi, OH +43102 : 39.651028 : -82.76098 : Amanda, OH +43103 : 39.720751 : -82.94842 : Ashville, OH +43105 : 39.860353 : -82.61356 : Baltimore, OH +43106 : 39.624916 : -83.40267 : Bloomingburg, OH +43107 : 39.703126 : -82.41937 : Bremen, OH +43109 : 39.916574 : -82.83218 : Brice, OH +43110 : 39.854413 : -82.80872 : Canal Winchester, OH +43111 : 39.501342 : -82.24434 : Carbon Hill, OH +43112 : 39.803993 : -82.70953 : Carroll, OH +43113 : 39.598236 : -82.94285 : Circleville, OH +43115 : 39.501913 : -83.17383 : Clarksburg, OH +43116 : 39.768502 : -83.06007 : Commercial Point, OH +43117 : 39.773025 : -83.199472 : Derby, OH +43119 : 39.939871 : -83.1667 : Galloway, OH +43123 : 39.88628 : -83.07989 : Grove City, OH +43125 : 39.852363 : -82.89589 : Groveport, OH +43126 : 39.810093 : -83.17085 : Harrisburg, OH +43127 : 39.482096 : -82.32798 : Haydenville, OH +43128 : 39.651917 : -83.57236 : Jeffersonville, OH +43130 : 39.712887 : -82.61216 : Lancaster, OH +43135 : 39.473379 : -82.71076 : Laurelville, OH +43136 : 39.802655 : -82.80802 : Lithopolis, OH +43137 : 39.818249 : -82.98115 : Lockbourne, OH +43138 : 39.530972 : -82.40801 : Logan, OH +43140 : 39.892676 : -83.43643 : London, OH +43142 : 39.593121 : -83.5876 : Milledgeville, OH +43143 : 39.710455 : -83.28776 : Mount Sterling, OH +43144 : 39.513028 : -82.1665 : Murray City, OH +43145 : 39.555409 : -83.26409 : New Holland, OH +43146 : 39.786202 : -83.1469 : Orient, OH +43147 : 39.904288 : -82.756 : Pickerington, OH +43148 : 39.816577 : -82.50791 : Pleasantville, OH +43149 : 39.545786 : -82.57704 : Rockbridge, OH +43150 : 39.778306 : -82.41455 : Rushville, OH +43151 : 39.732474 : -83.47587 : Sedalia, OH +43152 : 39.387214 : -82.62314 : South Bloomingville, OH +43153 : 39.721965 : -83.58093 : South Solon, OH +43154 : 39.605605 : -82.82656 : Stoutsville, OH +43155 : 39.630003 : -82.51459 : Sugar Grove, OH +43156 : 39.554697 : -82.77917 : Tarlton, OH +43157 : 39.843864 : -82.54555 : Thurston, OH +43158 : 39.460218 : -82.3572 : Union Furnace, OH +43160 : 39.533002 : -83.43905 : Washington Court House, OH +43162 : 39.939528 : -83.28912 : West Jefferson, OH +43163 : 39.7631 : -82.447024 : West Rushville, OH +43164 : 39.590417 : -83.11298 : Williamsport, OH +43187 : 39.882017 : -82.739875 : Pickerington, OH +43199 : 39.969036 : -83.011389 : Groveport, OH +43201 : 39.990764 : -83.00117 : Columbus, OH +43202 : 40.018814 : -83.00894 : Columbus, OH +43203 : 39.9718 : -82.9688 : Columbus, OH +43204 : 39.958496 : -83.08231 : Columbus, OH +43205 : 39.957265 : -82.96587 : Columbus, OH +43206 : 39.944564 : -82.98085 : Columbus, OH +43207 : 39.897695 : -82.96969 : Columbus, OH +43209 : 39.958564 : -82.92824 : Columbus, OH +43210 : 40.003681 : -83.02148 : Columbus, OH +43211 : 40.012714 : -82.97127 : Columbus, OH +43212 : 39.988114 : -83.04268 : Columbus, OH +43213 : 39.966814 : -82.87413 : Columbus, OH +43214 : 40.053063 : -83.01881 : Columbus, OH +43215 : 39.965131 : -83.00431 : Columbus, OH +43216 : 39.969036 : -83.011389 : Columbus, OH +43217 : 39.824831 : -82.94384 : Columbus, OH +43218 : 39.969036 : -83.011389 : Columbus, OH +43219 : 40.002514 : -82.92589 : Columbus, OH +43220 : 40.047273 : -83.06986 : Columbus, OH +43221 : 40.02063 : -83.07655 : Columbus, OH +43222 : 39.958664 : -83.02856 : Columbus, OH +43223 : 39.935263 : -83.04558 : Columbus, OH +43224 : 40.039914 : -82.96772 : Columbus, OH +43226 : 39.969036 : -83.011389 : Columbus, OH +43227 : 39.944231 : -82.89063 : Columbus, OH +43228 : 39.954363 : -83.123 : Columbus, OH +43229 : 40.085313 : -82.97326 : Columbus, OH +43230 : 40.039963 : -82.87855 : Columbus, OH +43231 : 40.076042 : -82.94064 : Columbus, OH +43232 : 39.924213 : -82.86563 : Columbus, OH +43234 : 39.969036 : -83.011389 : Columbus, OH +43235 : 40.099204 : -83.05567 : Columbus, OH +43236 : 40.135711 : -83.007626 : Columbus, OH +43240 : 40.146873 : -82.98178 : Columbus, OH +43251 : 39.969036 : -83.011389 : Columbus, OH +43260 : 39.969036 : -83.011389 : Columbus, OH +43265 : 39.969036 : -83.011389 : Columbus, OH +43266 : 39.969036 : -83.011389 : Columbus, OH +43268 : 39.969036 : -83.011389 : Columbus, OH +43270 : 39.969036 : -83.011389 : Columbus, OH +43271 : 39.969036 : -83.011389 : Columbus, OH +43272 : 39.969036 : -83.011389 : Columbus, OH +43279 : 39.969036 : -83.011389 : Columbus, OH +43284 : 39.969036 : -83.011389 : Columbus, OH +43287 : 39.969036 : -83.011389 : Columbus, OH +43291 : 39.969036 : -83.011389 : Columbus, OH +43299 : 39.969036 : -83.011389 : Columbus, OH +43301 : 40.616604 : -83.069296 : Marion, OH +43302 : 40.589747 : -83.12173 : Marion, OH +43306 : 40.56941 : -83.139341 : Marion, OH +43307 : 40.56941 : -83.139341 : Marion, OH +43310 : 40.518081 : -83.78052 : Belle Center, OH +43311 : 40.365923 : -83.75816 : Bellefontaine, OH +43314 : 40.642604 : -82.96158 : Caledonia, OH +43315 : 40.490756 : -82.87312 : Cardington, OH +43316 : 40.954293 : -83.38068 : Carey, OH +43317 : 40.479649 : -82.68356 : Chesterville, OH +43318 : 40.314099 : -83.91041 : De Graff, OH +43319 : 40.307923 : -83.56924 : East Liberty, OH +43320 : 40.583666 : -82.88443 : Edison, OH +43321 : 40.46242 : -82.82831 : Fulton, OH +43322 : 40.531614 : -83.20937 : Green Camp, OH +43323 : 40.730593 : -83.24454 : Harpster, OH +43324 : 40.460862 : -83.83774 : Huntsville, OH +43325 : 40.60796 : -82.872954 : Iberia, OH +43326 : 40.642266 : -83.60577 : Kenton, OH +43330 : 40.813023 : -83.419606 : Kirby, OH +43331 : 40.507868 : -83.90705 : Lakeview, OH +43332 : 40.585905 : -83.3828 : La Rue, OH +43333 : 40.436172 : -83.92528 : Lewistown, OH +43334 : 40.399648 : -82.80783 : Marengo, OH +43335 : 40.668497 : -82.909984 : Martel, OH +43336 : 40.293691 : -83.5827 : Middleburg, OH +43337 : 40.687548 : -83.22944 : Morral, OH +43338 : 40.555366 : -82.77273 : Mount Gilead, OH +43340 : 40.547039 : -83.49204 : Mount Victory, OH +43341 : 40.587559 : -83.31254 : New Bloomington, OH +43342 : 40.470755 : -83.18305 : Prospect, OH +43343 : 40.308916 : -83.97325 : Quincy, OH +43344 : 40.430758 : -83.32103 : Richwood, OH +43345 : 40.513261 : -83.57736 : Ridgeway, OH +43346 : 40.573227 : -83.846199 : Roundhead, OH +43347 : 40.470605 : -83.66538 : Rushsylvania, OH +43348 : 40.469231 : -83.88554 : Russells Point, OH +43349 : 40.614239 : -82.661938 : Shauck, OH +43350 : 40.394773 : -82.69952 : Sparta, OH +43351 : 40.82732 : -83.29921 : Upper Sandusky, OH +43355 : 41.438281 : -84.254241 : Ridgeville, OH +43356 : 40.461613 : -83.05047 : Waldo, OH +43357 : 40.254824 : -83.751 : West Liberty, OH +43358 : 40.413252 : -83.53853 : West Mansfield, OH +43359 : 40.863848 : -83.45714 : Wharton, OH +43360 : 40.327984 : -83.66884 : Zanesfield, OH +43381 : 40.498069 : -83.921517 : Stokes, OH +43400 : 41.532003 : -82.797419 : Danbury, OH +43402 : 41.388519 : -83.65795 : Bowling Green, OH +43403 : 41.39235 : -83.648996 : Bowling Green, OH +43406 : 41.328037 : -83.43802 : Bradner, OH +43407 : 41.277969 : -83.24578 : Burgoon, OH +43408 : 41.565049 : -83.363 : Clay Center, OH +43410 : 41.304387 : -82.96925 : Clyde, OH +43412 : 41.63678 : -83.30724 : Curtice, OH +43413 : 41.240054 : -83.64985 : Cygnet, OH +43414 : 41.39235 : -83.648996 : Dunbridge, OH +43416 : 41.477061 : -83.28361 : Elmore, OH +43420 : 41.35307 : -83.11217 : Fremont, OH +43430 : 41.523309 : -83.37072 : Genoa, OH +43431 : 41.390878 : -83.32313 : Gibsonburg, OH +43432 : 41.553383 : -83.25597 : Graytown, OH +43433 : 41.503759 : -82.87084 : Gypsum, OH +43434 : 41.645699 : -83.620233 : Harbor View, OH +43435 : 41.333956 : -83.30333 : Helena, OH +43436 : 41.715332 : -82.822697 : Isle Saint George, OH +43437 : 41.252306 : -83.60464 : Jerry City, OH +43438 : 41.601343 : -82.69744 : Kelleys Island, OH +43439 : 41.51751 : -83.04293 : Lacarne, OH +43440 : 41.533186 : -82.75881 : Lakeside Marblehead, OH +43441 : 41.536132 : -83.45938 : Lemoyne, OH +43442 : 41.425328 : -83.2253 : Lindsey, OH +43443 : 41.455078 : -83.47735 : Luckey, OH +43445 : 41.596682 : -83.28985 : Martin, OH +43446 : 41.683477 : -82.804677 : Middle Bass, OH +43447 : 41.5678 : -83.433 : Millbury, OH +43449 : 41.53446 : -83.13569 : Oak Harbor, OH +43450 : 41.4031 : -83.47664 : Pemberville, OH +43451 : 41.318285 : -83.62835 : Portage, OH +43452 : 41.512855 : -82.92948 : Port Clinton, OH +43456 : 41.671574 : -82.81278 : Put In Bay, OH +43457 : 41.269279 : -83.43171 : Risingsun, OH +43458 : 41.532215 : -83.21026 : Rocky Ridge, OH +43460 : 41.603797 : -83.5619 : Rossford, OH +43462 : 41.28447 : -83.69515 : Rudolph, OH +43463 : 41.509051 : -83.508531 : Stony Ridge, OH +43464 : 41.404156 : -82.92509 : Vickery, OH +43465 : 41.57725 : -83.49795 : Walbridge, OH +43466 : 41.28953 : -83.50215 : Wayne, OH +43467 : 41.245763 : -83.48948 : West Millgrove, OH +43468 : 41.602898 : -83.33988 : Williston, OH +43469 : 41.455129 : -83.36565 : Woodville, OH +43501 : 41.673094 : -84.44711 : Alvordton, OH +43502 : 41.529231 : -84.30866 : Archbold, OH +43504 : 41.697701 : -83.83446 : Berkey, OH +43505 : 41.523945 : -84.730275 : Blakeslee, OH +43506 : 41.471569 : -84.55459 : Bryan, OH +43510 : 41.419878 : -84.013674 : Colton, OH +43511 : 41.26256 : -83.82917 : Custar, OH +43512 : 41.29037 : -84.36539 : Defiance, OH +43515 : 41.585627 : -84.00778 : Delta, OH +43516 : 41.211032 : -83.89827 : Deshler, OH +43517 : 41.441679 : -84.73356 : Edgerton, OH +43518 : 41.572443 : -84.75333 : Edon, OH +43519 : 41.422158 : -84.396619 : Evansport, OH +43520 : 41.39066 : -84.631322 : Farmer, OH +43521 : 41.66143 : -84.29732 : Fayette, OH +43522 : 41.427352 : -83.84944 : Grand Rapids, OH +43523 : 41.341081 : -84.000532 : Grelton, OH +43524 : 41.229001 : -84.03567 : Hamler, OH +43525 : 41.466185 : -83.70725 : Haskins, OH +43526 : 41.30569 : -84.74496 : Hicksville, OH +43527 : 41.253169 : -84.14754 : Holgate, OH +43528 : 41.626651 : -83.73047 : Holland, OH +43529 : 41.190401 : -83.78249 : Hoytville, OH +43530 : 41.325764 : -84.279306 : Jewell, OH +43531 : 41.635979 : -84.49453 : Kunkle, OH +43532 : 41.450082 : -83.97563 : Liberty Center, OH +43533 : 41.696808 : -84.07558 : Lyons, OH +43534 : 41.368743 : -83.93422 : McClure, OH +43535 : 41.315943 : -84.03021 : Malinta, OH +43536 : 41.299247 : -84.63748 : Mark Center, OH +43537 : 41.576992 : -83.672 : Maumee, OH +43538 : 41.597362 : -83.806053 : Monclova, OH +43540 : 41.702622 : -83.93725 : Metamora, OH +43541 : 41.301347 : -83.82923 : Milton Center, OH +43542 : 41.577428 : -83.76396 : Monclova, OH +43543 : 41.609365 : -84.62292 : Montpelier, OH +43545 : 41.388278 : -84.12511 : Napoleon, OH +43547 : 41.491702 : -83.87108 : Neapolis, OH +43548 : 41.190188 : -84.17549 : New Bavaria, OH +43549 : 41.380047 : -84.51313 : Ney, OH +43550 : 41.326664 : -84.111701 : Okolona, OH +43551 : 41.540724 : -83.58904 : Perrysburg, OH +43552 : 41.39235 : -83.648996 : Perrysburg, OH +43553 : 41.531159 : -84.22716 : Pettisville, OH +43554 : 41.65973 : -84.56225 : Pioneer, OH +43555 : 41.437905 : -84.255 : Ridgeville Corners, OH +43556 : 41.298409 : -84.55885 : Sherwood, OH +43557 : 41.491112 : -84.40709 : Stryker, OH +43558 : 41.585948 : -83.87384 : Swanton, OH +43560 : 41.706383 : -83.7102 : Sylvania, OH +43565 : 41.419152 : -83.74024 : Tontogany, OH +43566 : 41.501902 : -83.73685 : Waterville, OH +43567 : 41.5615 : -84.15574 : Wauseon, OH +43569 : 41.349205 : -83.78953 : Weston, OH +43570 : 41.586794 : -84.43574 : West Unity, OH +43571 : 41.517402 : -83.81063 : Whitehouse, OH +43579 : 41.425554 : -84.395196 : Tiffin, OH +43601 : 41.720684 : -83.569359 : Toledo, OH +43602 : 41.646649 : -83.54935 : Toledo, OH +43603 : 41.686778 : -83.43943 : Toledo, OH +43604 : 41.658109 : -83.52774 : Toledo, OH +43605 : 41.642549 : -83.5104 : Toledo, OH +43606 : 41.671761 : -83.6064 : Toledo, OH +43607 : 41.65 : -83.59783 : Toledo, OH +43608 : 41.678248 : -83.53257 : Toledo, OH +43609 : 41.63105 : -83.57313 : Toledo, OH +43610 : 41.676299 : -83.55996 : Toledo, OH +43611 : 41.703379 : -83.49003 : Toledo, OH +43612 : 41.706048 : -83.5577 : Toledo, OH +43613 : 41.703899 : -83.605 : Toledo, OH +43614 : 41.60135 : -83.62611 : Toledo, OH +43615 : 41.6522 : -83.67037 : Toledo, OH +43616 : 41.646398 : -83.46933 : Oregon, OH +43617 : 41.667361 : -83.71609 : Toledo, OH +43618 : 41.676897 : -83.39972 : Oregon, OH +43619 : 41.607416 : -83.48322 : Northwood, OH +43620 : 41.665849 : -83.55218 : Toledo, OH +43623 : 41.707649 : -83.64363 : Toledo, OH +43624 : 41.657099 : -83.54525 : Toledo, OH +43628 : 40.44652 : -82.329486 : Howard, OH +43635 : 41.686778 : -83.43943 : Toledo, OH +43652 : 41.686778 : -83.43943 : Toledo, OH +43653 : 41.686778 : -83.43943 : Toledo, OH +43654 : 41.686778 : -83.43943 : Toledo, OH +43655 : 41.686778 : -83.43943 : Toledo, OH +43656 : 41.678167 : -83.497155 : Toledo, OH +43657 : 41.686778 : -83.43943 : Toledo, OH +43659 : 41.686778 : -83.43943 : Toledo, OH +43660 : 41.654649 : -83.532883 : Toledo, OH +43661 : 41.678167 : -83.497155 : Toledo, OH +43666 : 41.678167 : -83.497155 : Toledo, OH +43667 : 41.686778 : -83.43943 : Toledo, OH +43681 : 41.686778 : -83.43943 : Toledo, OH +43682 : 41.686778 : -83.43943 : Toledo, OH +43697 : 41.686778 : -83.43943 : Toledo, OH +43699 : 41.653788 : -83.658937 : Toledo, OH +43701 : 39.949377 : -82.00492 : Zanesville, OH +43702 : 39.961236 : -81.962539 : Zanesville, OH +43704 : 39.991729 : -83.082262 : Columbus, OH +43708 : 39.922656 : -81.433818 : Wayne, OH +43711 : 39.827556 : -81.554854 : Ava, OH +43713 : 39.989191 : -81.17197 : Barnesville, OH +43716 : 39.841646 : -81.02104 : Beallsville, OH +43717 : 39.789241 : -81.55483 : Belle Valley, OH +43718 : 40.028171 : -81.00679 : Belmont, OH +43719 : 40.009383 : -81.0763 : Bethesda, OH +43720 : 39.806956 : -81.88179 : Blue Rock, OH +43721 : 39.946713 : -82.25642 : Brownsville, OH +43722 : 39.917012 : -81.51947 : Buffalo, OH +43723 : 39.968985 : -81.54108 : Byesville, OH +43724 : 39.741629 : -81.52512 : Caldwell, OH +43725 : 40.025859 : -81.59243 : Cambridge, OH +43727 : 39.873402 : -81.81724 : Chandlersville, OH +43728 : 39.484626 : -81.89613 : Chesterhill, OH +43730 : 39.617263 : -82.09325 : Corning, OH +43731 : 39.742354 : -82.09349 : Crooksville, OH +43732 : 39.85261 : -81.64922 : Cumberland, OH +43733 : 39.923616 : -81.542965 : Derwent, OH +43734 : 39.876997 : -81.90909 : Duncan Falls, OH +43735 : 39.851515 : -82.12173 : East Fultonham, OH +43736 : 40.064971 : -81.255793 : Fairview, OH +43738 : 39.855355 : -82.14178 : Fultonham, OH +43739 : 39.905157 : -82.28507 : Glenford, OH +43740 : 39.950857 : -82.21842 : Gratiot, OH +43741 : 39.884291 : -81.106797 : Wayne, OH +43746 : 39.966135 : -82.18376 : Hopewell, OH +43747 : 39.862128 : -81.11139 : Jerusalem, OH +43748 : 39.710863 : -82.30228 : Junction City, OH +43749 : 40.157301 : -81.55736 : Kimbolton, OH +43750 : 39.994467 : -81.500579 : Kipling, OH +43752 : 39.717086 : -81.009999 : Laings, OH +43754 : 39.76607 : -81.24357 : Lewisville, OH +43755 : 40.041068 : -81.44635 : Lore City, OH +43756 : 39.675911 : -81.79548 : McConnelsville, OH +43757 : 39.859373 : -81.151604 : Malaga, OH +43758 : 39.621481 : -81.91737 : Malta, OH +43759 : 40.011338 : -80.970135 : Morristown, OH +43760 : 39.888751 : -82.19224 : Mount Perry, OH +43761 : 39.740299 : -82.248369 : Moxahala, OH +43762 : 40.018953 : -81.73657 : New Concord, OH +43764 : 39.717824 : -82.19823 : New Lexington, OH +43766 : 39.588854 : -82.25279 : New Straitsville, OH +43767 : 39.990948 : -81.80629 : Norwich, OH +43768 : 40.038503 : -81.44232 : Old Washington, OH +43771 : 39.842048 : -81.93264 : Philo, OH +43772 : 39.895548 : -81.53483 : Pleasant City, OH +43773 : 39.991056 : -81.28517 : Quaker City, OH +43777 : 39.814025 : -82.07808 : Roseville, OH +43778 : 39.995987 : -81.36641 : Salesville, OH +43779 : 39.803205 : -81.43368 : Sarahsville, OH +43780 : 39.930047 : -81.44256 : Senecaville, OH +43782 : 39.608984 : -82.22225 : Shawnee, OH +43783 : 39.801679 : -82.29166 : Somerset, OH +43786 : 39.711168 : -81.275824 : Stafford, OH +43787 : 39.536415 : -81.80009 : Stockport, OH +43788 : 39.799978 : -81.33548 : Summerfield, OH +43789 : 39.654386 : -81.240732 : Sycamore Valley, OH +43791 : 39.855474 : -82.11492 : White Cottage, OH +43793 : 39.742066 : -81.09908 : Woodsfield, OH +43799 : 39.816891 : -81.485315 : Center, OH +43802 : 40.090643 : -81.86556 : Adamsville, OH +43803 : 40.357237 : -81.643638 : Bakersville, OH +43804 : 40.449531 : -81.72309 : Baltic, OH +43805 : 40.398274 : -81.968787 : Blissfield, OH +43811 : 40.180136 : -81.90422 : Conesville, OH +43812 : 40.270198 : -81.86761 : Coshocton, OH +43821 : 40.130754 : -82.01637 : Dresden, OH +43822 : 40.161484 : -82.16324 : Frazeysburg, OH +43824 : 40.357857 : -81.75288 : Fresno, OH +43828 : 40.351271 : -81.873607 : Keene, OH +43830 : 40.063886 : -82.15977 : Nashport, OH +43832 : 40.277376 : -81.59662 : Newcomerstown, OH +43836 : 40.200382 : -81.720675 : Plainfield, OH +43837 : 40.314481 : -81.49751 : Port Washington, OH +43840 : 40.406106 : -81.58374 : Stone Creek, OH +43842 : 40.140472 : -82.01079 : Trinway, OH +43843 : 40.3479 : -82.17789 : Walhonding, OH +43844 : 40.33503 : -82.04314 : Warsaw, OH +43845 : 40.268019 : -81.74213 : West Lafayette, OH +43901 : 40.223285 : -80.87017 : Adena, OH +43902 : 39.890564 : -80.9766 : Alledonia, OH +43903 : 40.469171 : -80.93363 : Amsterdam, OH +43905 : 40.105279 : -80.84292 : Barton, OH +43906 : 40.01558 : -80.76343 : Bellaire, OH +43907 : 40.258447 : -81.00415 : Cadiz, OH +43908 : 40.518045 : -80.88733 : Bergholz, OH +43909 : 40.067767 : -80.81836 : Blaine, OH +43910 : 40.361891 : -80.81953 : Bloomingdale, OH +43912 : 40.074284 : -80.77447 : Bridgeport, OH +43913 : 40.26212 : -80.6356 : Brilliant, OH +43914 : 39.768134 : -80.94455 : Cameron, OH +43915 : 39.759825 : -80.88695 : Clarington, OH +43916 : 40.122351 : -80.814948 : Colerain, OH +43917 : 40.212067 : -80.78094 : Dillonvale, OH +43920 : 40.641545 : -80.57469 : East Liverpool, OH +43924 : 39.764709 : -81.537215 : Noble, OH +43925 : 40.450257 : -80.86015 : East Springfield, OH +43926 : 40.510729 : -80.62344 : Empire, OH +43927 : 40.11761 : -80.93763 : Fairpoint, OH +43928 : 40.008421 : -80.88913 : Glencoe, OH +43930 : 40.566375 : -80.76929 : Hammondsville, OH +43931 : 39.676317 : -80.891369 : Hannibal, OH +43932 : 40.561512 : -80.71859 : Irondale, OH +43933 : 39.938218 : -80.89033 : Jacobsburg, OH +43934 : 40.076176 : -80.78926 : Lansing, OH +43935 : 40.103877 : -80.73327 : Martins Ferry, OH +43937 : 40.130167 : -80.877264 : Maynard, OH +43938 : 40.318569 : -80.64172 : Mingo Junction, OH +43939 : 40.176109 : -80.79979 : Mount Pleasant, OH +43940 : 40.027491 : -80.81606 : Neffs, OH +43941 : 40.263948 : -80.835767 : Piney Fork, OH +43942 : 39.861984 : -80.82023 : Powhatan Point, OH +43943 : 40.211142 : -80.72596 : Rayland, OH +43944 : 40.43273 : -80.76692 : Richmond, OH +43945 : 40.624307 : -80.83872 : Salineville, OH +43946 : 39.646462 : -80.96151 : Sardis, OH +43947 : 39.964553 : -80.76013 : Shadyside, OH +43948 : 40.269741 : -80.78137 : Smithfield, OH +43950 : 40.086725 : -80.90826 : Saint Clairsville, OH +43951 : 40.109149 : -81.01773 : Lafferty, OH +43952 : 40.371185 : -80.63426 : Steubenville, OH +43953 : 40.369467 : -80.70251 : Steubenville, OH +43960 : 40.012984 : -80.859104 : Richland, OH +43961 : 40.523054 : -80.6294 : Stratton, OH +43962 : 40.679857 : -80.88595 : Summitville, OH +43963 : 40.170721 : -80.69768 : Tiltonsville, OH +43964 : 40.465183 : -80.62364 : Toronto, OH +43966 : 40.360979 : -80.839519 : Unionport, OH +43967 : 40.022806 : -80.94093 : Warnock, OH +43968 : 40.621521 : -80.66843 : Wellsville, OH +43970 : 40.46947 : -80.889206 : Wolf Run, OH +43971 : 40.152615 : -80.70789 : Yorkville, OH +43972 : 40.099277 : -80.97601 : Bannock, OH +43973 : 40.189812 : -81.27506 : Freeport, OH +43974 : 40.18182 : -80.88695 : Harrisville, OH +43976 : 40.352364 : -80.90465 : Hopedale, OH +43977 : 40.147388 : -81.11291 : Flushing, OH +43981 : 40.184401 : -80.99519 : New Athens, OH +43983 : 40.147075 : -81.20232 : Piedmont, OH +43984 : 40.29649 : -81.102502 : New Rumley, OH +43985 : 40.011338 : -80.970135 : Holloway, OH +43986 : 40.374942 : -80.99193 : Jewett, OH +43988 : 40.405788 : -81.10432 : Scio, OH +43989 : 40.29649 : -81.102502 : Short Creek, OH +44001 : 41.386533 : -82.23419 : Amherst, OH +44003 : 41.611348 : -80.5622 : Andover, OH +44004 : 41.871212 : -80.79178 : Ashtabula, OH +44005 : 41.730146 : -80.955313 : Ashtabula, OH +44010 : 41.758952 : -80.86289 : Austinburg, OH +44011 : 41.450538 : -82.02167 : Avon, OH +44012 : 41.501595 : -82.0063 : Avon Lake, OH +44017 : 41.36995 : -81.86259 : Berea, OH +44021 : 41.442863 : -81.14404 : Burton, OH +44022 : 41.43932 : -81.39232 : Chagrin Falls, OH +44023 : 41.392171 : -81.32748 : Chagrin Falls, OH +44024 : 41.574171 : -81.19473 : Chardon, OH +44026 : 41.526301 : -81.33683 : Chesterland, OH +44028 : 41.316001 : -81.93433 : Columbia Station, OH +44030 : 41.934916 : -80.57923 : Conneaut, OH +44032 : 41.676362 : -80.6686 : Dorset, OH +44033 : 41.53335 : -81.111175 : East Claridon, OH +44035 : 41.369846 : -82.10874 : Elyria, OH +44036 : 41.401494 : -82.077068 : Elyria, OH +44039 : 41.389546 : -82.0046 : North Ridgeville, OH +44040 : 41.532584 : -81.41052 : Gates Mills, OH +44041 : 41.802618 : -80.94645 : Geneva, OH +44044 : 41.275919 : -82.05315 : Grafton, OH +44045 : 41.742693 : -81.282125 : Grand River, OH +44046 : 41.541756 : -81.08063 : Huntsburg, OH +44047 : 41.728451 : -80.74507 : Jefferson, OH +44048 : 41.866806 : -80.64962 : Kingsville, OH +44049 : 41.267051 : -82.3047 : Kipton, OH +44050 : 41.259352 : -82.13542 : Lagrange, OH +44052 : 41.459218 : -82.1691 : Lorain, OH +44053 : 41.431875 : -82.20658 : Lorain, OH +44054 : 41.48054 : -82.09914 : Sheffield Lake, OH +44055 : 41.435642 : -82.13689 : Lorain, OH +44056 : 41.321189 : -81.50135 : Macedonia, OH +44057 : 41.80063 : -81.06021 : Madison, OH +44060 : 41.688162 : -81.33378 : Mentor, OH +44061 : 41.910676 : -81.249027 : Mentor, OH +44062 : 41.462346 : -81.03666 : Middlefield, OH +44064 : 41.61391 : -81.05515 : Montville, OH +44065 : 41.469908 : -81.24579 : Newbury, OH +44067 : 41.319704 : -81.54119 : Northfield, OH +44068 : 41.904594 : -80.685034 : North Kingsville, OH +44070 : 41.415097 : -81.91436 : North Olmsted, OH +44072 : 41.478469 : -81.33635 : Novelty, OH +44073 : 41.837043 : -80.955545 : Novelty, OH +44074 : 41.2863 : -82.21935 : Oberlin, OH +44076 : 41.535437 : -80.83514 : Orwell, OH +44077 : 41.716094 : -81.2396 : Painesville, OH +44080 : 41.372452 : -81.06617 : Parkman, OH +44081 : 41.767394 : -81.14287 : Perry, OH +44082 : 41.759503 : -80.56995 : Pierpont, OH +44084 : 41.659739 : -80.86635 : Rock Creek, OH +44085 : 41.6128 : -80.83579 : Rome, OH +44086 : 41.674336 : -81.05753 : Thompson, OH +44087 : 41.314655 : -81.44441 : Twinsburg, OH +44088 : 41.783323 : -81.003385 : Unionville, OH +44089 : 41.407845 : -82.3648 : Vermilion, OH +44090 : 41.147116 : -82.24031 : Wellington, OH +44092 : 41.603581 : -81.47087 : Wickliffe, OH +44093 : 41.52563 : -80.58076 : Williamsfield, OH +44094 : 41.625886 : -81.39929 : Willoughby, OH +44095 : 41.653796 : -81.44614 : Eastlake, OH +44096 : 41.910676 : -81.249027 : Willoughby, OH +44097 : 41.910676 : -81.249027 : Eastlake, OH +44099 : 41.539985 : -80.96688 : Windsor, OH +44101 : 41.523401 : -81.599648 : Cleveland, OH +44102 : 41.473451 : -81.7358 : Cleveland, OH +44103 : 41.513801 : -81.64287 : Cleveland, OH +44104 : 41.484001 : -81.62702 : Cleveland, OH +44105 : 41.450602 : -81.62216 : Cleveland, OH +44106 : 41.507751 : -81.60883 : Cleveland, OH +44107 : 41.480881 : -81.80036 : Lakewood, OH +44108 : 41.53715 : -81.60905 : Cleveland, OH +44109 : 41.448951 : -81.70342 : Cleveland, OH +44110 : 41.562781 : -81.57273 : Cleveland, OH +44111 : 41.459399 : -81.78174 : Cleveland, OH +44112 : 41.534101 : -81.57558 : Cleveland, OH +44113 : 41.484688 : -81.70125 : Cleveland, OH +44114 : 41.50988 : -81.6753 : Cleveland, OH +44115 : 41.493501 : -81.67125 : Cleveland, OH +44116 : 41.475297 : -81.84575 : Rocky River, OH +44117 : 41.570344 : -81.52726 : Euclid, OH +44118 : 41.499202 : -81.55434 : Cleveland, OH +44119 : 41.586749 : -81.54584 : Cleveland, OH +44120 : 41.472352 : -81.58211 : Cleveland, OH +44121 : 41.526151 : -81.53309 : Cleveland, OH +44122 : 41.472881 : -81.52209 : Beachwood, OH +44123 : 41.602498 : -81.52357 : Euclid, OH +44124 : 41.513752 : -81.47281 : Cleveland, OH +44125 : 41.414403 : -81.60793 : Cleveland, OH +44126 : 41.441697 : -81.85738 : Cleveland, OH +44127 : 41.469951 : -81.65009 : Cleveland, OH +44128 : 41.441153 : -81.55179 : Cleveland, OH +44129 : 41.397701 : -81.73575 : Cleveland, OH +44130 : 41.378051 : -81.77945 : Cleveland, OH +44131 : 41.391753 : -81.65816 : Independence, OH +44132 : 41.608298 : -81.50041 : Euclid, OH +44133 : 41.313758 : -81.74204 : North Royalton, OH +44134 : 41.393852 : -81.70507 : Cleveland, OH +44135 : 41.432149 : -81.80467 : Cleveland, OH +44136 : 41.312752 : -81.83197 : Strongsville, OH +44137 : 41.412653 : -81.56067 : Maple Heights, OH +44138 : 41.373949 : -81.91507 : Olmsted Falls, OH +44139 : 41.388387 : -81.44365 : Solon, OH +44140 : 41.484193 : -81.92658 : Bay Village, OH +44141 : 41.307688 : -81.61835 : Brecksville, OH +44142 : 41.40035 : -81.82055 : Brookpark, OH +44143 : 41.550318 : -81.48175 : Cleveland, OH +44144 : 41.437018 : -81.73488 : Cleveland, OH +44145 : 41.454439 : -81.92865 : Westlake, OH +44146 : 41.389371 : -81.52709 : Bedford, OH +44147 : 41.321827 : -81.67659 : Broadview Heights, OH +44149 : 41.316784 : -81.854005 : Brunswick, OH +44168 : 40.80066 : -81.699683 : Dalton, OH +44177 : 41.685744 : -81.672797 : Cleveland, OH +44178 : 41.685744 : -81.672797 : Cleveland, OH +44179 : 41.685744 : -81.672797 : Cleveland, OH +44181 : 41.685744 : -81.672797 : Cleveland, OH +44184 : 41.685744 : -81.672797 : Cleveland, OH +44185 : 41.685744 : -81.672797 : Cleveland, OH +44186 : 41.685744 : -81.672797 : Cleveland, OH +44188 : 41.685744 : -81.672797 : Cleveland, OH +44189 : 41.685744 : -81.672797 : Cleveland, OH +44190 : 41.685744 : -81.672797 : Cleveland, OH +44191 : 41.685744 : -81.672797 : Cleveland, OH +44192 : 41.685744 : -81.672797 : Cleveland, OH +44193 : 41.685744 : -81.672797 : Cleveland, OH +44194 : 41.685744 : -81.672797 : Cleveland, OH +44195 : 41.685744 : -81.672797 : Cleveland, OH +44197 : 41.685744 : -81.672797 : Cleveland, OH +44198 : 41.685744 : -81.672797 : Cleveland, OH +44199 : 41.685744 : -81.672797 : Cleveland, OH +44201 : 41.020057 : -81.20037 : Atwater, OH +44202 : 41.320612 : -81.36352 : Aurora, OH +44203 : 41.017522 : -81.61616 : Barberton, OH +44210 : 41.128705 : -81.53999 : Bath, OH +44211 : 41.169816 : -81.312416 : Brady Lake, OH +44212 : 41.244051 : -81.82836 : Brunswick, OH +44214 : 40.965423 : -82.00032 : Burbank, OH +44215 : 41.069151 : -81.90358 : Chippewa Lake, OH +44216 : 40.936655 : -81.5981 : Clinton, OH +44217 : 40.976892 : -81.90624 : Creston, OH +44221 : 41.141456 : -81.47928 : Cuyahoga Falls, OH +44222 : 41.128705 : -81.53999 : Cuyahoga Falls, OH +44223 : 41.1486 : -81.51241 : Cuyahoga Falls, OH +44224 : 41.174256 : -81.43744 : Stow, OH +44230 : 40.964111 : -81.68961 : Doylestown, OH +44231 : 41.295898 : -81.08057 : Garrettsville, OH +44232 : 40.932506 : -81.461987 : Green, OH +44233 : 41.233479 : -81.73475 : Hinckley, OH +44234 : 41.337187 : -81.16699 : Hiram, OH +44235 : 41.028815 : -82.11496 : Homerville, OH +44236 : 41.248795 : -81.44679 : Hudson, OH +44237 : 41.128705 : -81.53999 : Hudson, OH +44238 : 41.128705 : -81.53999 : Hudson, OH +44240 : 41.148756 : -81.35302 : Kent, OH +44241 : 41.249405 : -81.34404 : Streetsboro, OH +44242 : 41.170006 : -81.196615 : Kent, OH +44243 : 41.146862 : -81.3388 : Kent, OH +44250 : 41.020256 : -81.4359 : Lakemore, OH +44251 : 41.029639 : -81.93146 : Westfield Center, OH +44253 : 41.161459 : -82.03333 : Litchfield, OH +44254 : 41.039394 : -82.0137 : Lodi, OH +44255 : 41.286755 : -81.22911 : Mantua, OH +44256 : 41.139849 : -81.85646 : Medina, OH +44258 : 41.127594 : -81.841079 : Medina, OH +44260 : 41.043123 : -81.36518 : Mogadore, OH +44262 : 41.138806 : -81.43787 : Munroe Falls, OH +44264 : 41.234388 : -81.55114 : Peninsula, OH +44265 : 41.010907 : -81.297727 : Randolph, OH +44266 : 41.159224 : -81.23143 : Ravenna, OH +44270 : 40.971727 : -81.77938 : Rittman, OH +44272 : 41.09464 : -81.19784 : Rootstown, OH +44273 : 41.022387 : -81.8775 : Seville, OH +44274 : 41.09924 : -81.734329 : Sharon Center, OH +44275 : 41.101909 : -82.10234 : Spencer, OH +44276 : 40.951253 : -81.82651 : Sterling, OH +44278 : 41.093156 : -81.42692 : Tallmadge, OH +44280 : 41.230745 : -81.92477 : Valley City, OH +44281 : 41.037664 : -81.73368 : Wadsworth, OH +44282 : 41.132725 : -81.929185 : Wadsworth, OH +44285 : 41.159706 : -81.070017 : Wayland, OH +44286 : 41.233722 : -81.63222 : Richfield, OH +44287 : 40.957955 : -82.12114 : West Salem, OH +44288 : 41.242864 : -81.07101 : Windham, OH +44301 : 41.043955 : -81.51919 : Akron, OH +44302 : 41.089405 : -81.53973 : Akron, OH +44303 : 41.103205 : -81.53625 : Akron, OH +44304 : 41.081788 : -81.50745 : Akron, OH +44305 : 41.073606 : -81.46278 : Akron, OH +44306 : 41.046055 : -81.49039 : Akron, OH +44307 : 41.069605 : -81.54591 : Akron, OH +44308 : 41.081755 : -81.51813 : Akron, OH +44309 : 41.096205 : -81.512338 : Akron, OH +44310 : 41.107655 : -81.50091 : Akron, OH +44311 : 41.063055 : -81.51906 : Akron, OH +44312 : 41.034156 : -81.43944 : Akron, OH +44313 : 41.123588 : -81.57129 : Akron, OH +44314 : 41.040155 : -81.55914 : Akron, OH +44315 : 41.027977 : -81.463238 : Akron, OH +44316 : 41.067506 : -81.484686 : Akron, OH +44317 : 41.052455 : -81.529139 : Akron, OH +44319 : 40.990922 : -81.52953 : Akron, OH +44320 : 41.083155 : -81.57022 : Akron, OH +44321 : 41.102587 : -81.65092 : Akron, OH +44322 : 41.043496 : -81.58536 : Akron, OH +44325 : 41.076425 : -81.51026 : Akron, OH +44326 : 41.172713 : -81.472701 : Akron, OH +44328 : 41.075955 : -81.520588 : Akron, OH +44331 : 40.683695 : -81.674717 : Paint, OH +44333 : 41.144661 : -81.61948 : Akron, OH +44334 : 41.128705 : -81.53999 : Akron, OH +44372 : 41.128705 : -81.53999 : Akron, OH +44393 : 41.128705 : -81.53999 : Akron, OH +44396 : 41.128705 : -81.53999 : Akron, OH +44397 : 41.071603 : -81.525556 : Akron, OH +44398 : 41.128705 : -81.53999 : Akron, OH +44399 : 41.128705 : -81.53999 : Akron, OH +44401 : 41.031141 : -80.95058 : Berlin Center, OH +44402 : 41.385826 : -80.87487 : Bristolville, OH +44403 : 41.239987 : -80.58346 : Brookfield, OH +44404 : 41.340211 : -80.536 : Burghill, OH +44405 : 41.078058 : -80.59243 : Campbell, OH +44406 : 41.029666 : -80.76396 : Canfield, OH +44408 : 40.884299 : -80.68652 : Columbiana, OH +44410 : 41.333312 : -80.7264 : Cortland, OH +44411 : 41.024608 : -81.05025 : Deerfield, OH +44412 : 41.099351 : -81.00605 : Diamond, OH +44413 : 40.838456 : -80.54601 : East Palestine, OH +44415 : 40.76304 : -80.704245 : Elkton, OH +44416 : 41.017082 : -80.802854 : Ellsworth, OH +44417 : 41.428487 : -80.65551 : Farmdale, OH +44418 : 41.304391 : -80.60358 : Fowler, OH +44420 : 41.160758 : -80.693 : Girard, OH +44422 : 41.017082 : -80.802854 : Greenford, OH +44423 : 40.75105 : -80.91009 : Hanoverton, OH +44424 : 41.309096 : -80.584681 : Hartford, OH +44425 : 41.166743 : -80.57733 : Hubbard, OH +44427 : 40.723803 : -80.94874 : Kensington, OH +44428 : 41.443358 : -80.58862 : Kinsman, OH +44429 : 41.100329 : -80.9853 : Lake Milton, OH +44430 : 41.24168 : -80.88588 : Leavittsburg, OH +44431 : 40.864494 : -80.75848 : Leetonia, OH +44432 : 40.757793 : -80.7642 : Lisbon, OH +44436 : 41.046606 : -80.54145 : Lowellville, OH +44437 : 41.159574 : -80.73083 : McDonald, OH +44438 : 41.22832 : -80.53175 : Masury, OH +44439 : 41.459359 : -80.942716 : Mesopotamia, OH +44440 : 41.146334 : -80.77271 : Mineral Ridge, OH +44441 : 40.776151 : -80.54967 : Negley, OH +44442 : 40.966908 : -80.55862 : New Middletown, OH +44443 : 40.917556 : -80.60039 : New Springfield, OH +44444 : 41.188981 : -80.96964 : Newton Falls, OH +44445 : 40.842848 : -80.61956 : New Waterford, OH +44446 : 41.186257 : -80.75297 : Niles, OH +44449 : 40.992991 : -81.02595 : North Benton, OH +44450 : 41.449052 : -80.81921 : North Bloomfield, OH +44451 : 41.090089 : -80.86736 : North Jackson, OH +44452 : 40.951859 : -80.6549 : North Lima, OH +44453 : 41.32519 : -80.533572 : Orangeville, OH +44454 : 40.910669 : -80.53069 : Petersburg, OH +44455 : 40.787331 : -80.61034 : Rogers, OH +44460 : 40.898658 : -80.86094 : Salem, OH +44470 : 41.294453 : -80.9552 : Southington, OH +44471 : 41.051255 : -80.59512 : Struthers, OH +44473 : 41.236248 : -80.66265 : Vienna, OH +44481 : 41.205342 : -80.85756 : Warren, OH +44482 : 41.317424 : -80.761269 : Warren, OH +44483 : 41.252748 : -80.80773 : Warren, OH +44484 : 41.226957 : -80.76475 : Warren, OH +44485 : 41.237856 : -80.84356 : Warren, OH +44486 : 41.317424 : -80.761269 : Warren, OH +44487 : 41.317424 : -80.761269 : Warren, OH +44488 : 41.317424 : -80.761269 : Warren, OH +44490 : 40.899731 : -80.76333 : Washingtonville, OH +44491 : 41.369527 : -80.96327 : West Farmington, OH +44492 : 40.709282 : -80.70141 : West Point, OH +44493 : 40.828584 : -80.896714 : Winona, OH +44501 : 41.017082 : -80.802854 : Youngstown, OH +44502 : 41.086279 : -80.64563 : Youngstown, OH +44503 : 41.100296 : -80.64962 : Youngstown, OH +44504 : 41.123757 : -80.65481 : Youngstown, OH +44505 : 41.122524 : -80.62043 : Youngstown, OH +44506 : 41.095658 : -80.62652 : Youngstown, OH +44507 : 41.074508 : -80.65562 : Youngstown, OH +44509 : 41.106249 : -80.69471 : Youngstown, OH +44510 : 41.120507 : -80.66811 : Youngstown, OH +44511 : 41.069158 : -80.69134 : Youngstown, OH +44512 : 41.032675 : -80.66467 : Youngstown, OH +44513 : 41.017082 : -80.802854 : Youngstown, OH +44514 : 41.016159 : -80.61549 : Youngstown, OH +44515 : 41.099008 : -80.74545 : Youngstown, OH +44555 : 41.103858 : -80.643646 : Youngstown, OH +44598 : 41.017082 : -80.802854 : Youngstown, OH +44599 : 41.017082 : -80.802854 : Youngstown, OH +44601 : 40.917908 : -81.11641 : Alliance, OH +44606 : 40.739199 : -81.80457 : Apple Creek, OH +44607 : 40.686028 : -81.02187 : Augusta, OH +44608 : 40.65151 : -81.58475 : Beach City, OH +44609 : 40.898618 : -80.99304 : Beloit, OH +44610 : 40.561587 : -81.7981 : Berlin, OH +44611 : 40.635332 : -82.08743 : Big Prairie, OH +44612 : 40.643724 : -81.45442 : Bolivar, OH +44613 : 40.712109 : -81.59859 : Brewster, OH +44614 : 40.886688 : -81.58327 : Canal Fulton, OH +44615 : 40.568568 : -81.08187 : Carrollton, OH +44617 : 40.507088 : -81.782872 : Charm, OH +44618 : 40.787827 : -81.68623 : Dalton, OH +44619 : 40.901738 : -80.95723 : Damascus, OH +44620 : 40.571372 : -81.21163 : Dellroy, OH +44621 : 40.410604 : -81.31633 : Dennison, OH +44622 : 40.537509 : -81.48791 : Dover, OH +44624 : 40.600062 : -81.65174 : Dundee, OH +44625 : 40.758473 : -81.00795 : East Rochester, OH +44626 : 40.695377 : -81.38102 : East Sparta, OH +44627 : 40.671036 : -81.84927 : Fredericksburg, OH +44628 : 40.527648 : -82.14312 : Glenmont, OH +44629 : 40.359172 : -81.4351 : Gnadenhutten, OH +44630 : 40.929507 : -81.400134 : Greentown, OH +44631 : 40.521924 : -81.003619 : Harlem Springs, OH +44632 : 40.96289 : -81.32814 : Hartville, OH +44633 : 40.630191 : -81.93057 : Holmesville, OH +44634 : 40.832092 : -81.0573 : Homeworth, OH +44636 : 40.738387 : -81.742811 : Kidron, OH +44637 : 40.485312 : -82.01209 : Killbuck, OH +44638 : 40.657511 : -82.13584 : Lakeville, OH +44639 : 40.547688 : -81.243498 : Leesville, OH +44640 : 40.983308 : -81.14682 : Limaville, OH +44641 : 40.843685 : -81.26298 : Louisville, OH +44643 : 40.646529 : -81.30882 : Magnolia, OH +44644 : 40.68357 : -81.17453 : Malvern, OH +44645 : 40.909535 : -81.71764 : Marshallville, OH +44646 : 40.805131 : -81.50101 : Massillon, OH +44647 : 40.793924 : -81.55252 : Massillon, OH +44648 : 40.811809 : -81.368284 : Massillon, OH +44650 : 40.874558 : -81.173873 : Maximo, OH +44651 : 40.623637 : -80.96214 : Mechanicstown, OH +44652 : 40.895057 : -81.326195 : Middlebranch, OH +44653 : 40.433496 : -81.3731 : Midvale, OH +44654 : 40.542339 : -81.87856 : Millersburg, OH +44656 : 40.569177 : -81.3359 : Mineral City, OH +44657 : 40.733459 : -81.09148 : Minerva, OH +44659 : 40.694887 : -81.70227 : Mount Eaton, OH +44660 : 40.622284 : -81.782532 : Mount Hope, OH +44661 : 40.596018 : -82.11317 : Nashville, OH +44662 : 40.722891 : -81.54071 : Navarre, OH +44663 : 40.477187 : -81.44439 : New Philadelphia, OH +44665 : 40.843563 : -80.979435 : North Georgetown, OH +44666 : 40.840256 : -81.62724 : North Lawrence, OH +44667 : 40.835059 : -81.77006 : Orrville, OH +44669 : 40.798758 : -81.16037 : Paris, OH +44670 : 40.76291 : -81.19054 : Robertsville, OH +44671 : 40.641188 : -81.36885 : Sandyville, OH +44672 : 40.922608 : -81.02632 : Sebring, OH +44675 : 40.506928 : -81.24133 : Sherrodsville, OH +44676 : 40.687973 : -82.02563 : Shreve, OH +44677 : 40.865194 : -81.85967 : Smithville, OH +44678 : 40.565209 : -81.35014 : Somerdale, OH +44679 : 40.440407 : -81.488516 : Stillwater, OH +44680 : 40.59712 : -81.53098 : Strasburg, OH +44681 : 40.503332 : -81.64879 : Sugarcreek, OH +44682 : 40.397916 : -81.40527 : Tuscarawas, OH +44683 : 40.373604 : -81.34146 : Uhrichsville, OH +44684 : 40.561693 : -81.677906 : Walnut Creek, OH +44685 : 40.961206 : -81.42516 : Uniontown, OH +44687 : 40.551575 : -81.728416 : Walnut Creek, OH +44688 : 40.67926 : -81.26003 : Waynesburg, OH +44689 : 40.655909 : -81.63929 : Wilmot, OH +44690 : 40.616646 : -81.6953 : Winesburg, OH +44691 : 40.800086 : -81.95726 : Wooster, OH +44692 : 40.398664 : -81.40088 : Tuscarawas, OH +44693 : 40.308212 : -81.18752 : Deersville, OH +44695 : 40.433246 : -81.18764 : Bowerston, OH +44697 : 40.612253 : -81.42168 : Zoar, OH +44699 : 40.283493 : -81.28215 : Tippecanoe, OH +44701 : 40.782408 : -81.371185 : Canton, OH +44702 : 40.798859 : -81.37499 : Canton, OH +44703 : 40.809108 : -81.3809 : Canton, OH +44704 : 40.799358 : -81.3564 : Canton, OH +44705 : 40.821858 : -81.34253 : Canton, OH +44706 : 40.776858 : -81.40593 : Canton, OH +44707 : 40.784158 : -81.36566 : Canton, OH +44708 : 40.810931 : -81.42142 : Canton, OH +44709 : 40.836508 : -81.38548 : Canton, OH +44710 : 40.791108 : -81.41672 : Canton, OH +44711 : 40.811809 : -81.368284 : Canton, OH +44712 : 40.811809 : -81.368284 : Canton, OH +44714 : 40.827659 : -81.36029 : Canton, OH +44718 : 40.850683 : -81.43773 : Canton, OH +44720 : 40.888408 : -81.41066 : Canton, OH +44721 : 40.886297 : -81.33145 : Canton, OH +44730 : 40.769763 : -81.2707 : Canton, OH +44735 : 40.811809 : -81.368284 : Canton, OH +44750 : 40.784646 : -81.418943 : Canton, OH +44760 : 40.853958 : -81.42778 : Canton, OH +44767 : 40.895721 : -81.424552 : Canton, OH +44798 : 40.811809 : -81.368284 : Canton, OH +44799 : 40.811809 : -81.368284 : Canton, OH +44801 : 41.090712 : -83.365404 : Adrian, OH +44802 : 41.053889 : -83.41412 : Alvada, OH +44803 : 41.037511 : -82.910552 : Amsden, OH +44804 : 41.117339 : -83.52652 : Arcadia, OH +44805 : 40.867016 : -82.31514 : Ashland, OH +44807 : 41.069216 : -82.87708 : Attica, OH +44809 : 41.132988 : -83.28328 : Bascom, OH +44811 : 41.257163 : -82.84296 : Bellevue, OH +44813 : 40.606221 : -82.52073 : Bellville, OH +44814 : 41.323499 : -82.4692 : Berlin Heights, OH +44815 : 41.244095 : -83.23348 : Bettsville, OH +44816 : 41.331398 : -82.35278 : Birmingham, OH +44817 : 41.193747 : -83.54226 : Bloomdale, OH +44818 : 41.00811 : -82.99772 : Bloomville, OH +44820 : 40.815179 : -82.97091 : Bucyrus, OH +44822 : 40.561377 : -82.41237 : Butler, OH +44824 : 41.393507 : -82.80569 : Castalia, OH +44825 : 40.952927 : -82.94232 : Chatfield, OH +44826 : 41.227648 : -82.48061 : Collins, OH +44827 : 40.795521 : -82.74991 : Crestline, OH +44828 : 41.234403 : -82.86059 : Flat Rock, OH +44830 : 41.164209 : -83.41054 : Fostoria, OH +44833 : 40.720869 : -82.797 : Galion, OH +44836 : 41.249374 : -83.05827 : Green Springs, OH +44837 : 41.020433 : -82.50097 : Greenwich, OH +44838 : 40.773052 : -82.26175 : Hayesville, OH +44839 : 41.388534 : -82.5568 : Huron, OH +44840 : 40.801432 : -82.18712 : Jeromesville, OH +44841 : 41.249535 : -83.2966 : Kansas, OH +44842 : 40.639849 : -82.2246 : Loudonville, OH +44843 : 40.701792 : -82.41177 : Lucas, OH +44844 : 40.990406 : -83.26087 : McCutchenville, OH +44845 : 41.024204 : -83.109783 : Melmore, OH +44846 : 41.306205 : -82.60611 : Milan, OH +44847 : 41.238863 : -82.70909 : Monroeville, OH +44848 : 40.920617 : -82.281695 : Nankin, OH +44849 : 40.815261 : -83.13144 : Nevada, OH +44850 : 41.034683 : -82.68056 : New Haven, OH +44851 : 41.098478 : -82.40483 : New London, OH +44853 : 41.057873 : -83.29505 : New Riegel, OH +44854 : 40.954399 : -82.85436 : New Washington, OH +44855 : 41.100202 : -82.60887 : North Fairfield, OH +44856 : 40.792804 : -82.85759 : North Robinson, OH +44857 : 41.236357 : -82.60185 : Norwalk, OH +44858 : 41.261375 : -82.589042 : Norwalk, OH +44859 : 41.019566 : -82.33622 : Nova, OH +44860 : 40.845335 : -83.09269 : Oceola, OH +44861 : 41.240649 : -83.15 : Old Fort, OH +44862 : 40.772874 : -82.532057 : Ontario, OH +44864 : 40.66496 : -82.31994 : Perrysville, OH +44865 : 40.99388 : -82.67743 : Plymouth, OH +44866 : 40.906577 : -82.18985 : Polk, OH +44867 : 41.140139 : -82.99802 : Republic, OH +44870 : 41.42646 : -82.71083 : Sandusky, OH +44871 : 41.49181 : -82.647824 : Sandusky, OH +44874 : 40.963743 : -82.36547 : Savannah, OH +44875 : 40.888988 : -82.65598 : Shelby, OH +44878 : 40.949737 : -82.52995 : Shiloh, OH +44880 : 41.038842 : -82.21779 : Sullivan, OH +44881 : 40.868645 : -82.875027 : Sulphur Springs, OH +44882 : 40.953556 : -83.14177 : Sycamore, OH +44883 : 41.12071 : -83.17658 : Tiffin, OH +44887 : 40.90261 : -82.78885 : Tiro, OH +44888 : 41.141541 : -82.588928 : Willard, OH +44889 : 41.24323 : -82.38848 : Wakeman, OH +44890 : 41.073672 : -82.72435 : Willard, OH +44901 : 40.850833 : -82.511369 : Mansfield, OH +44902 : 40.759156 : -82.51118 : Mansfield, OH +44903 : 40.766589 : -82.51869 : Mansfield, OH +44904 : 40.678208 : -82.58207 : Mansfield, OH +44905 : 40.773556 : -82.47612 : Mansfield, OH +44906 : 40.766056 : -82.56749 : Mansfield, OH +44907 : 40.733243 : -82.51975 : Mansfield, OH +44999 : 40.772874 : -82.532057 : Mansfield, OH +45000 : 39.147991 : -84.739682 : North Bend, OH +45001 : 39.137818 : -84.7079 : Addyston, OH +45002 : 39.180358 : -84.73783 : Cleves, OH +45003 : 39.575126 : -84.7905 : College Corner, OH +45004 : 39.440956 : -84.575746 : Collinsville, OH +45005 : 39.550241 : -84.3087 : Franklin, OH +45010 : 39.999367 : -83.619892 : Catawba, OH +45011 : 39.404856 : -84.52271 : Hamilton, OH +45012 : 39.440956 : -84.575746 : Hamilton, OH +45013 : 39.409188 : -84.60321 : Hamilton, OH +45014 : 39.330356 : -84.55277 : Fairfield, OH +45015 : 39.367106 : -84.55053 : Hamilton, OH +45018 : 39.440956 : -84.575746 : Fairfield, OH +45020 : 39.440956 : -84.575746 : Hamilton, OH +45023 : 39.440956 : -84.575746 : Hamilton, OH +45025 : 39.440956 : -84.575746 : Hamilton, OH +45026 : 39.440956 : -84.575746 : Hamilton, OH +45030 : 39.257936 : -84.77001 : Harrison, OH +45032 : 39.499635 : -84.00579 : Harveysburg, OH +45033 : 39.177002 : -84.76337 : Hooven, OH +45034 : 39.359268 : -84.24898 : Kings Mills, OH +45036 : 39.440152 : -84.22175 : Lebanon, OH +45039 : 39.317735 : -84.24728 : Maineville, OH +45040 : 39.344258 : -84.3152 : Mason, OH +45041 : 39.213282 : -84.70421 : Miamitown, OH +45042 : 39.534907 : -84.39324 : Middletown, OH +45043 : 39.440956 : -84.575746 : Middletown, OH +45044 : 39.482957 : -84.38393 : Middletown, OH +45050 : 39.441008 : -84.36582 : Monroe, OH +45051 : 39.09646 : -84.643096 : Mount Saint Joseph, OH +45052 : 39.155158 : -84.77789 : North Bend, OH +45053 : 39.352687 : -84.78591 : Okeana, OH +45054 : 39.44415 : -84.06299 : Oregonia, OH +45055 : 39.451806 : -84.515245 : Overpeck, OH +45056 : 39.498751 : -84.7407 : Oxford, OH +45061 : 39.31235 : -84.64828 : Ross, OH +45062 : 39.480856 : -84.55382 : Seven Mile, OH +45063 : 39.325805 : -84.712099 : Shandon, OH +45064 : 39.562415 : -84.6169 : Somerville, OH +45065 : 39.371242 : -84.21132 : South Lebanon, OH +45066 : 39.557096 : -84.22688 : Springboro, OH +45067 : 39.482307 : -84.46429 : Trenton, OH +45068 : 39.525562 : -84.06923 : Waynesville, OH +45069 : 39.343757 : -84.40249 : West Chester, OH +45070 : 39.588878 : -84.55562 : West Elkton, OH +45071 : 39.440956 : -84.575746 : West Chester, OH +45073 : 39.440956 : -84.575746 : Monroe, OH +45099 : 39.440956 : -84.575746 : Monroe, OH +45101 : 38.671655 : -83.75693 : Aberdeen, OH +45102 : 39.023067 : -84.2099 : Amelia, OH +45103 : 39.082894 : -84.15319 : Batavia, OH +45105 : 38.749779 : -83.612574 : Bentonville, OH +45106 : 38.956484 : -84.08093 : Bethel, OH +45107 : 39.293634 : -83.97584 : Blanchester, OH +45110 : 39.074262 : -83.848414 : Buford, OH +45111 : 39.195516 : -84.29093 : Camp Dennison, OH +45112 : 38.792686 : -84.1386 : Chilo, OH +45113 : 39.397066 : -83.98239 : Clarksville, OH +45114 : 39.362778 : -83.86432 : Cuba, OH +45115 : 38.815056 : -83.7039 : Decatur, OH +45118 : 39.184985 : -83.95045 : Fayetteville, OH +45119 : 38.880632 : -84.00874 : Feesburg, OH +45120 : 38.821032 : -84.09805 : Felicity, OH +45121 : 38.87752 : -83.90215 : Georgetown, OH +45122 : 39.222264 : -84.11831 : Goshen, OH +45123 : 39.343559 : -83.39748 : Greenfield, OH +45125 : 39.104387 : -84.232422 : Union, OH +45127 : 39.137761 : -84.35214 : Columbia, OH +45130 : 38.914118 : -83.99496 : Hamersville, OH +45131 : 38.789585 : -83.96705 : Higginsport, OH +45132 : 39.344299 : -83.59926 : Highland, OH +45133 : 39.162917 : -83.5802 : Hillsboro, OH +45135 : 39.34446 : -83.54825 : Leesburg, OH +45138 : 39.416747 : -83.647583 : Lees Creek, OH +45140 : 39.258653 : -84.2651 : Loveland, OH +45142 : 39.213112 : -83.80743 : Lynchburg, OH +45144 : 38.690566 : -83.61925 : Manchester, OH +45145 : 39.145698 : -84.007023 : Marathon, OH +45146 : 39.32006 : -83.79841 : Martinsville, OH +45147 : 39.213739 : -84.300232 : Miamiville, OH +45148 : 39.290475 : -83.88767 : Midland, OH +45150 : 39.168818 : -84.24995 : Milford, OH +45152 : 39.350319 : -84.11606 : Morrow, OH +45153 : 38.8702 : -84.2025 : Moscow, OH +45154 : 39.046589 : -83.92245 : Mount Orab, OH +45155 : 39.038055 : -83.74936 : Mowrystown, OH +45156 : 38.810072 : -84.21176 : Neville, OH +45157 : 38.957385 : -84.24755 : New Richmond, OH +45158 : 39.18779 : -84.078313 : Newtonsville, OH +45159 : 39.326987 : -83.68731 : New Vienna, OH +45160 : 39.121637 : -84.13927 : Owensville, OH +45162 : 39.276492 : -84.08817 : Pleasant Plain, OH +45164 : 39.553045 : -83.78346 : Port William, OH +45165 : 39.198813 : -83.607858 : Greenfield, OH +45166 : 39.480543 : -83.677197 : Reesville, OH +45167 : 38.763305 : -83.8075 : Ripley, OH +45168 : 38.850094 : -83.77254 : Russellville, OH +45169 : 39.507106 : -83.6505 : Sabina, OH +45171 : 38.985368 : -83.78542 : Sardinia, OH +45172 : 39.074266 : -83.38713 : Sinking Spring, OH +45174 : 39.161061 : -84.30808 : Terrace Park, OH +45176 : 39.081436 : -84.02906 : Williamsburg, OH +45177 : 39.463476 : -83.84446 : Wilmington, OH +45201 : 39.166759 : -84.53822 : Cincinnati, OH +45202 : 39.10441 : -84.50774 : Cincinnati, OH +45203 : 39.104127 : -84.53067 : Cincinnati, OH +45204 : 39.093345 : -84.56428 : Cincinnati, OH +45205 : 39.11071 : -84.57438 : Cincinnati, OH +45206 : 39.127527 : -84.48832 : Cincinnati, OH +45207 : 39.142246 : -84.46983 : Cincinnati, OH +45208 : 39.13786 : -84.43426 : Cincinnati, OH +45209 : 39.15406 : -84.43086 : Cincinnati, OH +45210 : 39.11226 : -84.51439 : Cincinnati, OH +45211 : 39.154159 : -84.60527 : Cincinnati, OH +45212 : 39.160693 : -84.4545 : Cincinnati, OH +45213 : 39.180893 : -84.41881 : Cincinnati, OH +45214 : 39.12056 : -84.53575 : Cincinnati, OH +45215 : 39.228859 : -84.45707 : Cincinnati, OH +45216 : 39.197109 : -84.47991 : Cincinnati, OH +45217 : 39.166948 : -84.49514 : Cincinnati, OH +45218 : 39.264791 : -84.5175 : Cincinnati, OH +45219 : 39.12721 : -84.50988 : Cincinnati, OH +45220 : 39.14426 : -84.51986 : Cincinnati, OH +45221 : 39.166759 : -84.53822 : Cincinnati, OH +45222 : 39.166759 : -84.53822 : Cincinnati, OH +45223 : 39.161859 : -84.54259 : Cincinnati, OH +45224 : 39.204959 : -84.53734 : Cincinnati, OH +45225 : 39.13741 : -84.54112 : Cincinnati, OH +45226 : 39.114911 : -84.42526 : Cincinnati, OH +45227 : 39.15201 : -84.38348 : Cincinnati, OH +45228 : 39.070561 : -84.417891 : Cincinnati, OH +45229 : 39.152093 : -84.48899 : Cincinnati, OH +45230 : 39.078368 : -84.38865 : Cincinnati, OH +45231 : 39.242608 : -84.5453 : Cincinnati, OH +45232 : 39.173409 : -84.51295 : Cincinnati, OH +45233 : 39.117065 : -84.67173 : Cincinnati, OH +45234 : 39.166759 : -84.53822 : Cincinnati, OH +45235 : 39.166759 : -84.53822 : Cincinnati, OH +45236 : 39.205109 : -84.39512 : Cincinnati, OH +45237 : 39.188859 : -84.45798 : Cincinnati, OH +45238 : 39.112169 : -84.60849 : Cincinnati, OH +45239 : 39.207558 : -84.57299 : Cincinnati, OH +45240 : 39.284806 : -84.52941 : Cincinnati, OH +45241 : 39.276271 : -84.39324 : Cincinnati, OH +45242 : 39.242559 : -84.36042 : Cincinnati, OH +45243 : 39.18466 : -84.36014 : Cincinnati, OH +45244 : 39.119161 : -84.33389 : Cincinnati, OH +45245 : 39.075329 : -84.27311 : Cincinnati, OH +45246 : 39.288558 : -84.47383 : Cincinnati, OH +45247 : 39.209208 : -84.64363 : Cincinnati, OH +45248 : 39.160159 : -84.65042 : Cincinnati, OH +45249 : 39.278295 : -84.33049 : Cincinnati, OH +45250 : 39.166759 : -84.53822 : Cincinnati, OH +45251 : 39.258124 : -84.58733 : Cincinnati, OH +45252 : 39.282824 : -84.62514 : Cincinnati, OH +45253 : 39.166759 : -84.53822 : Cincinnati, OH +45254 : 39.166759 : -84.53822 : Cincinnati, OH +45255 : 39.066112 : -84.32227 : Cincinnati, OH +45258 : 39.166759 : -84.53822 : Cincinnati, OH +45262 : 39.166759 : -84.53822 : Cincinnati, OH +45263 : 39.166759 : -84.53822 : Cincinnati, OH +45264 : 39.166759 : -84.53822 : Cincinnati, OH +45267 : 39.166759 : -84.53822 : Cincinnati, OH +45268 : 39.166759 : -84.53822 : Cincinnati, OH +45269 : 39.166759 : -84.53822 : Cincinnati, OH +45270 : 39.166759 : -84.53822 : Cincinnati, OH +45271 : 39.166759 : -84.53822 : Cincinnati, OH +45273 : 39.166759 : -84.53822 : Cincinnati, OH +45274 : 39.166759 : -84.53822 : Cincinnati, OH +45275 : 38.946921 : -83.862877 : Cincinnati, OH +45277 : 39.166759 : -84.53822 : Cincinnati, OH +45296 : 39.166759 : -84.53822 : Cincinnati, OH +45298 : 39.166759 : -84.53822 : Cincinnati, OH +45299 : 39.262158 : -84.509268 : Cincinnati, OH +45301 : 39.711173 : -84.02323 : Alpha, OH +45302 : 40.40476 : -84.19578 : Anna, OH +45303 : 40.215278 : -84.6477 : Ansonia, OH +45304 : 39.990909 : -84.53709 : Arcanum, OH +45305 : 39.640059 : -84.0855 : Bellbrook, OH +45306 : 40.464571 : -84.18763 : Botkins, OH +45307 : 39.580198 : -83.72363 : Bowersville, OH +45308 : 40.128652 : -84.4433 : Bradford, OH +45309 : 39.844538 : -84.41774 : Brookville, OH +45310 : 40.352158 : -84.6448 : Burkettsville, OH +45311 : 39.629735 : -84.67557 : Camden, OH +45312 : 40.0659 : -84.08219 : Casstown, OH +45314 : 39.744577 : -83.79697 : Cedarville, OH +45315 : 39.853674 : -84.34125 : Clayton, OH +45316 : 39.796992 : -83.82609 : Clifton, OH +45317 : 40.170605 : -84.02446 : Conover, OH +45318 : 40.123474 : -84.35433 : Covington, OH +45319 : 39.918936 : -83.944909 : Donnelsville, OH +45320 : 39.739353 : -84.65393 : Eaton, OH +45321 : 39.888717 : -84.67216 : Eldorado, OH +45322 : 39.877745 : -84.30999 : Englewood, OH +45323 : 39.867259 : -83.93512 : Enon, OH +45324 : 39.808909 : -84.01972 : Fairborn, OH +45325 : 39.685116 : -84.42307 : Farmersville, OH +45326 : 40.144131 : -84.10429 : Fletcher, OH +45327 : 39.628806 : -84.37873 : Germantown, OH +45328 : 40.112545 : -84.49314 : Gettysburg, OH +45329 : 40.135426 : -84.619129 : Gordon, OH +45330 : 39.647494 : -84.52749 : Gratis, OH +45331 : 40.094141 : -84.63574 : Greenville, OH +45332 : 39.998881 : -84.79165 : Hollansburg, OH +45333 : 40.260111 : -84.33611 : Houston, OH +45334 : 40.446467 : -84.04389 : Jackson Center, OH +45335 : 39.62434 : -83.74587 : Jamestown, OH +45336 : 40.438744 : -84.26309 : Kettlersville, OH +45337 : 39.981075 : -84.42201 : Laura, OH +45338 : 39.849859 : -84.54428 : Lewisburg, OH +45339 : 40.008648 : -84.34143 : Ludlow Falls, OH +45340 : 40.372607 : -84.05113 : Maplewood, OH +45341 : 39.880826 : -84.02364 : Medway, OH +45342 : 39.631525 : -84.27074 : Miamisburg, OH +45343 : 39.750471 : -84.268593 : Miamisburg, OH +45344 : 39.939925 : -84.01992 : New Carlisle, OH +45345 : 39.743766 : -84.39256 : New Lebanon, OH +45346 : 39.971929 : -84.70471 : New Madison, OH +45347 : 39.876255 : -84.77788 : New Paris, OH +45348 : 40.332705 : -84.65016 : New Weston, OH +45349 : 39.990945 : -83.94049 : North Hampton, OH +45350 : 40.135426 : -84.619129 : North Star, OH +45351 : 40.339356 : -84.49597 : Osgood, OH +45352 : 40.050308 : -84.74442 : Palestine, OH +45353 : 40.294031 : -84.03271 : Pemberton, OH +45354 : 39.904603 : -84.40163 : Phillipsburg, OH +45356 : 40.156514 : -84.24213 : Piqua, OH +45358 : 39.986011 : -84.48651 : Pitsburg, OH +45359 : 40.053483 : -84.35202 : Pleasant Hill, OH +45360 : 40.330423 : -84.09097 : Port Jefferson, OH +45361 : 39.963492 : -84.414484 : Potsdam, OH +45362 : 40.28577 : -84.63891 : Rossburg, OH +45363 : 40.233304 : -84.40459 : Russia, OH +45365 : 40.284855 : -84.15974 : Sidney, OH +45367 : 40.333611 : -84.218308 : Sidney, OH +45368 : 39.840367 : -83.65813 : South Charleston, OH +45369 : 39.942716 : -83.60235 : South Vienna, OH +45370 : 39.600367 : -84.02586 : Spring Valley, OH +45371 : 39.954239 : -84.17685 : Tipp City, OH +45372 : 40.013871 : -83.83325 : Tremont City, OH +45373 : 40.036525 : -84.20629 : Troy, OH +45374 : 40.03997 : -84.229799 : Troy, OH +45377 : 39.889356 : -84.2051 : Vandalia, OH +45378 : 39.903161 : -84.48822 : Verona, OH +45380 : 40.231735 : -84.49935 : Versailles, OH +45381 : 39.730506 : -84.53052 : West Alexandria, OH +45382 : 39.903258 : -84.62255 : West Manchester, OH +45383 : 39.958117 : -84.33335 : West Milton, OH +45384 : 39.712772 : -83.88014 : Wilberforce, OH +45385 : 39.682836 : -83.92144 : Xenia, OH +45387 : 39.797227 : -83.89239 : Yellow Springs, OH +45388 : 40.328535 : -84.47938 : Yorkshire, OH +45389 : 40.055737 : -84.02525 : Christiansburg, OH +45390 : 40.20451 : -84.78292 : Union City, OH +45401 : 39.750471 : -84.268593 : Dayton, OH +45402 : 39.757758 : -84.18848 : Dayton, OH +45403 : 39.762708 : -84.15294 : Dayton, OH +45404 : 39.783258 : -84.16342 : Dayton, OH +45405 : 39.788458 : -84.21111 : Dayton, OH +45406 : 39.784108 : -84.23841 : Dayton, OH +45407 : 39.760058 : -84.22011 : Dayton, OH +45408 : 39.741558 : -84.22362 : Dayton, OH +45409 : 39.725705 : -84.18927 : Dayton, OH +45410 : 39.748309 : -84.15893 : Dayton, OH +45412 : 39.750471 : -84.268593 : Dayton, OH +45413 : 39.750471 : -84.268593 : Dayton, OH +45414 : 39.820807 : -84.19381 : Dayton, OH +45415 : 39.837256 : -84.26016 : Dayton, OH +45416 : 39.805207 : -84.25804 : Dayton, OH +45417 : 39.753108 : -84.24715 : Dayton, OH +45418 : 39.716161 : -84.2734 : Dayton, OH +45419 : 39.713309 : -84.16523 : Dayton, OH +45420 : 39.723909 : -84.13453 : Dayton, OH +45422 : 39.758058 : -84.20009 : Dayton, OH +45423 : 39.750471 : -84.268593 : Dayton, OH +45424 : 39.840308 : -84.12227 : Dayton, OH +45426 : 39.802606 : -84.30196 : Dayton, OH +45427 : 39.755758 : -84.27867 : Dayton, OH +45428 : 39.746656 : -84.259292 : Dayton, OH +45429 : 39.687459 : -84.15595 : Dayton, OH +45430 : 39.710787 : -84.08192 : Dayton, OH +45431 : 39.765259 : -84.10262 : Dayton, OH +45432 : 39.74035 : -84.09306 : Dayton, OH +45433 : 39.813743 : -84.05898 : Dayton, OH +45434 : 39.719092 : -84.03808 : Dayton, OH +45435 : 39.750471 : -84.268593 : Dayton, OH +45437 : 39.750471 : -84.268593 : Dayton, OH +45439 : 39.695702 : -84.21688 : Dayton, OH +45440 : 39.674192 : -84.11029 : Dayton, OH +45441 : 39.750471 : -84.268593 : Dayton, OH +45448 : 39.750471 : -84.268593 : Dayton, OH +45449 : 39.664226 : -84.24201 : Dayton, OH +45454 : 39.750471 : -84.268593 : Dayton, OH +45458 : 39.60828 : -84.16413 : Dayton, OH +45459 : 39.644609 : -84.16931 : Dayton, OH +45463 : 39.750471 : -84.268593 : Dayton, OH +45469 : 39.740509 : -84.178939 : Dayton, OH +45470 : 39.750471 : -84.268593 : Dayton, OH +45475 : 39.750471 : -84.268593 : Dayton, OH +45479 : 39.734409 : -84.194389 : Dayton, OH +45481 : 39.750471 : -84.268593 : Dayton, OH +45482 : 39.750471 : -84.268593 : Dayton, OH +45490 : 39.750471 : -84.268593 : Dayton, OH +45501 : 39.927059 : -83.813228 : Springfield, OH +45502 : 39.926617 : -83.8128 : Springfield, OH +45503 : 39.94831 : -83.78205 : Springfield, OH +45504 : 39.941827 : -83.83702 : Springfield, OH +45505 : 39.91086 : -83.78579 : Springfield, OH +45506 : 39.910109 : -83.83243 : Springfield, OH +45553 : 38.782131 : -83.558044 : West Union, OH +45601 : 39.33046 : -82.97228 : Chillicothe, OH +45612 : 39.228796 : -83.28641 : Bainbridge, OH +45613 : 39.015223 : -82.84927 : Beaver, OH +45614 : 38.919179 : -82.29337 : Bidwell, OH +45616 : 38.789223 : -83.3192 : Blue Creek, OH +45617 : 39.280388 : -83.158991 : Bourneville, OH +45618 : 38.892198 : -83.621787 : Cherry Fork, OH +45619 : 38.448563 : -82.44553 : Chesapeake, OH +45620 : 38.943285 : -82.13589 : Cheshire, OH +45621 : 39.111094 : -82.61105 : Coalton, OH +45622 : 39.364574 : -82.4959 : Creola, OH +45623 : 38.630633 : -82.2697 : Crown City, OH +45624 : 39.172214 : -83.34842 : Cynthiana, OH +45628 : 39.390231 : -83.19363 : Frankfort, OH +45629 : 38.653909 : -82.82535 : Franklin Furnace, OH +45630 : 38.793335 : -82.96046 : Friendship, OH +45631 : 38.825478 : -82.22755 : Gallipolis, OH +45633 : 39.46557 : -82.747853 : Hallsville, OH +45634 : 39.171012 : -82.50017 : Hamden, OH +45636 : 38.592446 : -82.828817 : Haverhill, OH +45638 : 38.535109 : -82.6737 : Ironton, OH +45640 : 39.034226 : -82.63678 : Jackson, OH +45641 : 38.967813 : -82.220469 : Morgan, OH +45642 : 39.047577 : -83.05382 : Jasper, OH +45643 : 38.86833 : -82.256185 : Kerr, OH +45644 : 39.459353 : -82.87777 : Kingston, OH +45645 : 38.557052 : -82.53744 : Kitts Hill, OH +45646 : 39.086218 : -83.31764 : Latham, OH +45647 : 39.282411 : -82.76457 : Londonderry, OH +45648 : 38.911803 : -82.98836 : Lucasville, OH +45650 : 38.746506 : -83.40878 : Lynx, OH +45651 : 39.267049 : -82.46415 : McArthur, OH +45652 : 38.833053 : -83.07498 : McDermott, OH +45653 : 38.877777 : -82.84096 : Minford, OH +45654 : 39.376504 : -82.39503 : New Plymouth, OH +45656 : 38.879935 : -82.58332 : Oak Hill, OH +45657 : 38.866354 : -83.22028 : Otway, OH +45658 : 38.766082 : -82.41638 : Patriot, OH +45659 : 38.67484 : -82.61865 : Pedro, OH +45660 : 38.987596 : -83.37752 : Peebles, OH +45661 : 39.046079 : -83.06459 : Piketon, OH +45662 : 38.762824 : -82.94294 : Portsmouth, OH +45663 : 38.743244 : -83.05954 : West Portsmouth, OH +45669 : 38.468003 : -82.35457 : Proctorville, OH +45670 : 39.118117 : -82.381351 : Wilkesville, OH +45671 : 38.947693 : -83.24361 : Rarden, OH +45672 : 39.208053 : -82.69077 : Ray, OH +45673 : 39.204151 : -82.81378 : Richmond Dale, OH +45674 : 38.881743 : -82.38091 : Rio Grande, OH +45675 : 38.536685 : -82.532715 : Rock Camp, OH +45677 : 38.794115 : -82.755455 : Scioto Furnace, OH +45678 : 38.615111 : -82.38004 : Scottown, OH +45679 : 38.95352 : -83.57108 : Seaman, OH +45680 : 38.438617 : -82.55774 : South Point, OH +45681 : 39.308063 : -83.25664 : South Salem, OH +45682 : 38.816072 : -82.71455 : South Webster, OH +45683 : 38.955485 : -82.858402 : Stockdale, OH +45684 : 38.664532 : -83.29759 : Stout, OH +45685 : 38.915013 : -82.45326 : Thurman, OH +45686 : 38.99754 : -82.36215 : Vinton, OH +45687 : 39.072829 : -83.085764 : Wakefield, OH +45688 : 38.734463 : -82.52163 : Waterloo, OH +45690 : 39.123071 : -83.0009 : Waverly, OH +45692 : 39.117212 : -82.54811 : Wellston, OH +45693 : 38.795145 : -83.54335 : West Union, OH +45694 : 38.729816 : -82.8004 : Wheelersburg, OH +45695 : 39.137773 : -82.36543 : Wilkesville, OH +45696 : 38.592851 : -82.46212 : Willow Wood, OH +45697 : 38.939364 : -83.67195 : Winchester, OH +45698 : 39.282728 : -82.39623 : Zaleski, OH +45699 : 38.793335 : -82.96046 : Lucasville, OH +45701 : 39.322847 : -82.09728 : Athens, OH +45710 : 39.202517 : -82.21421 : Albany, OH +45711 : 39.429095 : -81.94337 : Amesville, OH +45712 : 39.40032 : -81.66209 : Barlow, OH +45713 : 39.419647 : -81.8164 : Bartlett, OH +45714 : 39.297622 : -81.5958 : Belpre, OH +45715 : 39.58849 : -81.62932 : Beverly, OH +45716 : 39.462005 : -82.18021 : Buchtel, OH +45717 : 39.368235 : -82.010132 : Carbondale, OH +45719 : 39.4001 : -82.12856 : Chauncey, OH +45720 : 39.085629 : -81.921443 : Chester, OH +45721 : 39.430738 : -81.44512 : Coal Run, OH +45723 : 39.22241 : -81.81945 : Coolville, OH +45724 : 39.363901 : -81.78854 : Cutler, OH +45727 : 39.649854 : -81.47113 : Dexter City, OH +45729 : 39.420916 : -81.5936 : Fleming, OH +45732 : 39.506243 : -82.0779 : Glouster, OH +45734 : 39.628144 : -81.19164 : Graysville, OH +45735 : 39.262298 : -81.92977 : Guysville, OH +45739 : 39.197888 : -81.744573 : Hockingport, OH +45740 : 39.475889 : -82.07959 : Jacksonville, OH +45741 : 39.07348 : -82.244 : Langsville, OH +45742 : 39.273206 : -81.70889 : Little Hocking, OH +45743 : 39.077704 : -81.84506 : Long Bottom, OH +45744 : 39.533021 : -81.50986 : Lowell, OH +45745 : 39.611675 : -81.34495 : Lower Salem, OH +45746 : 39.627217 : -81.45532 : Macksburg, OH +45750 : 39.426551 : -81.44373 : Marietta, OH +45757 : 39.65828 : -81.470771 : Dexter City, OH +45760 : 39.006757 : -82.08208 : Middleport, OH +45761 : 39.431016 : -82.09986 : Millfield, OH +45764 : 39.450463 : -82.22975 : Nelsonville, OH +45766 : 39.32502 : -82.2586 : New Marshfield, OH +45767 : 39.524674 : -81.12031 : New Matamoras, OH +45768 : 39.397077 : -81.25508 : Newport, OH +45769 : 39.092281 : -82.028 : Pomeroy, OH +45770 : 38.988699 : -81.8019 : Portland, OH +45771 : 38.978044 : -81.91206 : Racine, OH +45772 : 39.143542 : -81.83724 : Reedsville, OH +45773 : 39.471663 : -81.28018 : Reno, OH +45775 : 39.089885 : -82.16773 : Rutland, OH +45776 : 39.191685 : -82.01828 : Shade, OH +45777 : 39.368235 : -82.010132 : Sharpsburg, OH +45778 : 39.341224 : -81.88561 : Stewart, OH +45779 : 38.999757 : -81.97282 : Syracuse, OH +45780 : 39.370636 : -82.13406 : The Plains, OH +45781 : 39.368235 : -82.010132 : Torch, OH +45782 : 39.483798 : -82.07788 : Trimble, OH +45783 : 39.168349 : -81.842313 : Tuppers Plains, OH +45784 : 39.389346 : -81.68122 : Vincent, OH +45786 : 39.526685 : -81.66109 : Waterford, OH +45787 : 39.430738 : -81.44512 : Watertown, OH +45788 : 39.5103 : -81.37669 : Whipple, OH +45789 : 39.551002 : -81.256 : Wingett Run, OH +45801 : 40.759451 : -84.08458 : Lima, OH +45802 : 40.781785 : -84.138566 : Lima, OH +45804 : 40.72255 : -84.08979 : Lima, OH +45805 : 40.739517 : -84.14468 : Lima, OH +45806 : 40.668448 : -84.1331 : Lima, OH +45807 : 40.7953 : -84.16573 : Lima, OH +45808 : 40.832363 : -83.97343 : Beaverdam, OH +45809 : 40.844554 : -84.18324 : Gomer, OH +45810 : 40.774039 : -83.81821 : Ada, OH +45812 : 40.696862 : -83.8231 : Alger, OH +45813 : 41.18312 : -84.73533 : Antwerp, OH +45814 : 40.892253 : -83.64338 : Arlington, OH +45815 : 41.153855 : -83.941281 : Belmore, OH +45816 : 41.00433 : -83.79265 : Benton Ridge, OH +45817 : 40.886803 : -83.89259 : Bluffton, OH +45819 : 40.623695 : -84.26087 : Buckland, OH +45820 : 40.831339 : -84.08602 : Cairo, OH +45821 : 41.230816 : -84.57771 : Cecil, OH +45822 : 40.542778 : -84.58232 : Celina, OH +45826 : 40.428177 : -84.633484 : Chickasaw, OH +45827 : 41.009008 : -84.30617 : Cloverdale, OH +45828 : 40.480128 : -84.64678 : Coldwater, OH +45829 : 41.163632 : -84.612173 : Crane, OH +45830 : 40.900986 : -84.06783 : Columbus Grove, OH +45831 : 41.103903 : -84.25371 : Continental, OH +45832 : 40.929839 : -84.73138 : Convoy, OH +45833 : 40.841409 : -84.34178 : Delphos, OH +45835 : 40.768846 : -83.70007 : Dola, OH +45836 : 40.790676 : -83.63856 : Dunkirk, OH +45837 : 41.054934 : -84.30075 : Dupont, OH +45838 : 40.740456 : -84.47602 : Elgin, OH +45839 : 40.993263 : -83.650714 : Findlay, OH +45840 : 41.037325 : -83.64576 : Findlay, OH +45841 : 40.881217 : -83.73199 : Jenera, OH +45843 : 40.782854 : -83.52862 : Forest, OH +45844 : 40.914909 : -84.28717 : Fort Jennings, OH +45845 : 40.338583 : -84.38348 : Fort Loramie, OH +45846 : 40.409441 : -84.75912 : Fort Recovery, OH +45848 : 41.096421 : -84.112031 : Glandorf, OH +45849 : 41.012 : -84.46683 : Grover Hill, OH +45850 : 40.713499 : -83.93098 : Harrod, OH +45851 : 41.030911 : -84.60213 : Haviland, OH +45853 : 40.983471 : -84.20027 : Kalida, OH +45854 : 40.758211 : -83.949934 : Lafayette, OH +45855 : 41.088144 : -84.58332 : Latty, OH +45856 : 41.112413 : -83.99136 : Leipsic, OH +45858 : 41.106245 : -83.80463 : McComb, OH +45859 : 40.691866 : -83.78457 : McGuffey, OH +45860 : 40.400409 : -84.51744 : Maria Stein, OH +45861 : 41.090714 : -84.41948 : Melrose, OH +45862 : 40.669102 : -84.52245 : Mendon, OH +45863 : 40.892251 : -84.45548 : Middle Point, OH +45864 : 41.103776 : -84.131541 : Miller City, OH +45865 : 40.391924 : -84.37211 : Minster, OH +45866 : 40.488771 : -84.54783 : Montezuma, OH +45867 : 40.903089 : -83.54591 : Mount Blanchard, OH +45868 : 40.958861 : -83.8356 : Mount Cory, OH +45869 : 40.452556 : -84.38731 : New Bremen, OH +45870 : 40.555807 : -83.95347 : New Hampshire, OH +45871 : 40.491725 : -84.31129 : New Knoxville, OH +45872 : 41.18394 : -83.67053 : North Baltimore, OH +45873 : 41.107804 : -84.39098 : Oakwood, OH +45874 : 40.780889 : -84.65726 : Ohio City, OH +45875 : 41.020852 : -84.04649 : Ottawa, OH +45876 : 40.931687 : -84.33877 : Ottoville, OH +45877 : 40.945888 : -83.9514 : Pandora, OH +45879 : 41.137873 : -84.56377 : Paulding, OH +45880 : 41.072614 : -84.7317 : Payne, OH +45881 : 40.954985 : -83.78216 : Rawson, OH +45882 : 40.682303 : -84.67806 : Rockford, OH +45883 : 40.413734 : -84.6325 : Saint Henry, OH +45884 : 40.520289 : -84.16797 : Saint Johns, OH +45885 : 40.550005 : -84.39308 : Saint Marys, OH +45886 : 40.9871 : -84.6073 : Scott, OH +45887 : 40.711394 : -84.35509 : Spencerville, OH +45888 : 40.601985 : -84.08653 : Uniopolis, OH +45889 : 41.14062 : -83.64464 : Van Buren, OH +45890 : 40.973064 : -83.48845 : Vanlue, OH +45891 : 40.874092 : -84.57871 : Van Wert, OH +45893 : 40.882077 : -84.148028 : Vaughnsville, OH +45894 : 40.755619 : -84.48041 : Venedocia, OH +45895 : 40.56914 : -84.17288 : Wapakoneta, OH +45896 : 40.593532 : -83.94417 : Waynesfield, OH +45897 : 40.834233 : -83.65288 : Williamstown, OH +45898 : 40.74011 : -84.77607 : Willshire, OH +45899 : 40.799531 : -84.77422 : Wren, OH +45944 : 39.166759 : -84.53822 : Cincinnati, OH +45999 : 39.166759 : -84.53822 : Cincinnati, OH +46001 : 40.257082 : -85.673 : Alexandria, IN +46011 : 40.112913 : -85.737 : Anderson, IN +46012 : 40.132892 : -85.65097 : Anderson, IN +46013 : 40.061092 : -85.67672 : Anderson, IN +46014 : 40.161733 : -85.719659 : Anderson, IN +46015 : 40.093792 : -85.657825 : Anderson, IN +46016 : 40.098641 : -85.68452 : Anderson, IN +46017 : 40.096343 : -85.60147 : Anderson, IN +46018 : 40.161733 : -85.719659 : Anderson, IN +46030 : 40.17449 : -86.01736 : Arcadia, IN +46031 : 40.211166 : -86.02304 : Atlanta, IN +46032 : 39.970241 : -86.15416 : Carmel, IN +46033 : 39.973731 : -86.08875 : Carmel, IN +46034 : 40.127019 : -86.03121 : Cicero, IN +46035 : 40.1915 : -86.67137 : Colfax, IN +46036 : 40.279375 : -85.83761 : Elwood, IN +46038 : 39.95645 : -86.00872 : Fishers, IN +46039 : 40.366648 : -86.30867 : Forest, IN +46040 : 39.93549 : -85.84047 : Fortville, IN +46041 : 40.290615 : -86.5028 : Frankfort, IN +46044 : 40.221208 : -85.77612 : Frankton, IN +46045 : 40.289779 : -86.15004 : Goldsmith, IN +46046 : 40.304473 : -86.469044 : Hillisburg, IN +46047 : 40.284101 : -85.94676 : Hobbs, IN +46048 : 39.95634 : -85.80252 : Ingalls, IN +46049 : 40.292007 : -86.22757 : Kempton, IN +46050 : 40.196061 : -86.35846 : Kirklin, IN +46051 : 40.065589 : -85.84631 : Lapel, IN +46052 : 40.047966 : -86.46592 : Lebanon, IN +46055 : 39.898378 : -85.9159 : McCordsville, IN +46056 : 39.974904 : -85.61733 : Markleville, IN +46057 : 40.333772 : -86.38161 : Michigantown, IN +46058 : 40.349135 : -86.66424 : Mulberry, IN +46060 : 40.050109 : -85.99815 : Noblesville, IN +46061 : 40.072462 : -86.052285 : Noblesville, IN +46063 : 40.27046 : -85.72871 : Orestes, IN +46064 : 39.997694 : -85.75075 : Pendleton, IN +46065 : 40.427919 : -86.61059 : Rossville, IN +46067 : 40.304473 : -86.469044 : Sedalia, IN +46068 : 40.378829 : -86.09362 : Sharpsville, IN +46069 : 40.134736 : -86.21885 : Sheridan, IN +46070 : 40.340749 : -85.64679 : Summitville, IN +46071 : 40.126304 : -86.60268 : Thorntown, IN +46072 : 40.284041 : -86.04681 : Tipton, IN +46074 : 40.041325 : -86.15262 : Westfield, IN +46075 : 40.007024 : -86.34405 : Whitestown, IN +46076 : 40.363776 : -85.95074 : Windfall, IN +46077 : 39.960858 : -86.28252 : Zionsville, IN +46082 : 40.072462 : -86.052285 : Carmel, IN +46102 : 39.996577 : -86.61928 : Advance, IN +46103 : 39.688673 : -86.61409 : Amo, IN +46104 : 39.649096 : -85.60213 : Arlington, IN +46105 : 39.761986 : -86.80492 : Bainbridge, IN +46106 : 39.514024 : -86.18812 : Bargersville, IN +46107 : 39.718744 : -86.09375 : Beech Grove, IN +46110 : 39.56578 : -85.92481 : Boggstown, IN +46111 : 39.538087 : -86.36991 : Brooklyn, IN +46112 : 39.84952 : -86.38739 : Brownsburg, IN +46113 : 39.631344 : -86.31273 : Camby, IN +46114 : 39.762448 : -86.510386 : Cartersburg, IN +46115 : 39.740158 : -85.57101 : Carthage, IN +46117 : 39.805933 : -85.61514 : Charlottesville, IN +46118 : 39.65983 : -86.53196 : Clayton, IN +46120 : 39.513388 : -86.79169 : Cloverdale, IN +46121 : 39.679883 : -86.67849 : Coatesville, IN +46122 : 39.761211 : -86.52344 : Danville, IN +46123 : 39.764436 : -86.39699 : Avon, IN +46124 : 39.366507 : -85.9864 : Edinburgh, IN +46125 : 39.522181 : -86.64102 : Eminence, IN +46126 : 39.61753 : -85.88003 : Fairland, IN +46127 : 39.717457 : -85.32737 : Falmouth, IN +46128 : 39.674879 : -86.75256 : Fillmore, IN +46129 : 39.821516 : -85.765169 : Finly, IN +46130 : 39.680058 : -85.83363 : Fountaintown, IN +46131 : 39.482105 : -86.05043 : Franklin, IN +46133 : 39.609926 : -85.28428 : Glenwood, IN +46135 : 39.652374 : -86.87361 : Greencastle, IN +46140 : 39.799143 : -85.78446 : Greenfield, IN +46142 : 39.62068 : -86.15126 : Greenwood, IN +46143 : 39.601649 : -86.12734 : Greenwood, IN +46144 : 39.661964 : -85.64945 : Gwynneville, IN +46145 : 39.597444 : -86.088914 : Greenwood, IN +46146 : 39.619923 : -85.46554 : Homer, IN +46147 : 39.96354 : -86.61733 : Jamestown, IN +46148 : 39.803168 : -85.51553 : Knightstown, IN +46149 : 39.885033 : -86.54978 : Lizton, IN +46150 : 39.563815 : -85.61239 : Manilla, IN +46151 : 39.442774 : -86.41337 : Martinsville, IN +46154 : 39.856763 : -85.768357 : Maxwell, IN +46155 : 39.743346 : -85.43035 : Mays, IN +46156 : 39.484598 : -85.47698 : Milroy, IN +46157 : 39.561003 : -86.53591 : Monrovia, IN +46158 : 39.588545 : -86.37431 : Mooresville, IN +46160 : 39.351269 : -86.26806 : Morgantown, IN +46161 : 39.67083 : -85.69786 : Morristown, IN +46162 : 39.542985 : -85.95928 : Needham, IN +46163 : 39.726811 : -85.89726 : New Palestine, IN +46164 : 39.324091 : -86.11397 : Nineveh, IN +46165 : 39.852098 : -86.64494 : North Salem, IN +46166 : 39.416815 : -86.58507 : Paragon, IN +46167 : 39.872255 : -86.46335 : Pittsboro, IN +46168 : 39.69775 : -86.39589 : Plainfield, IN +46170 : 39.668441 : -86.828402 : Putnamville, IN +46171 : 39.525112 : -86.95994 : Reelsville, IN +46172 : 39.842523 : -86.83174 : Roachdale, IN +46173 : 39.614803 : -85.43834 : Rushville, IN +46175 : 39.837161 : -86.98612 : Russellville, IN +46176 : 39.523797 : -85.77208 : Shelbyville, IN +46180 : 39.612844 : -86.63017 : Stilesville, IN +46181 : 39.396833 : -86.16098 : Trafalgar, IN +46182 : 39.457143 : -85.67065 : Waldron, IN +46183 : 39.648251 : -86.28509 : West Newton, IN +46184 : 39.557799 : -86.08543 : Whiteland, IN +46186 : 39.894667 : -85.62657 : Wilkinson, IN +46201 : 39.775125 : -86.10839 : Indianapolis, IN +46202 : 39.782842 : -86.15673 : Indianapolis, IN +46203 : 39.742593 : -86.11766 : Indianapolis, IN +46204 : 39.771743 : -86.15598 : Indianapolis, IN +46205 : 39.824858 : -86.13817 : Indianapolis, IN +46206 : 39.761293 : -86.161336 : Indianapolis, IN +46207 : 39.767293 : -86.160616 : Indianapolis, IN +46208 : 39.820708 : -86.1713 : Indianapolis, IN +46209 : 39.779492 : -86.132837 : Indianapolis, IN +46211 : 39.779492 : -86.132837 : Indianapolis, IN +46214 : 39.792993 : -86.28575 : Indianapolis, IN +46216 : 39.857639 : -86.00948 : Indianapolis, IN +46217 : 39.668795 : -86.1833 : Indianapolis, IN +46218 : 39.805841 : -86.10175 : Indianapolis, IN +46219 : 39.78001 : -86.04889 : Indianapolis, IN +46220 : 39.866913 : -86.12323 : Indianapolis, IN +46221 : 39.719444 : -86.22183 : Indianapolis, IN +46222 : 39.786793 : -86.21093 : Indianapolis, IN +46223 : 39.779492 : -86.132837 : Indianapolis, IN +46224 : 39.795593 : -86.25409 : Indianapolis, IN +46225 : 39.746993 : -86.15903 : Indianapolis, IN +46226 : 39.83729 : -86.05378 : Indianapolis, IN +46227 : 39.678495 : -86.12973 : Indianapolis, IN +46228 : 39.849474 : -86.20448 : Indianapolis, IN +46229 : 39.795025 : -85.97356 : Indianapolis, IN +46230 : 39.779492 : -86.132837 : Indianapolis, IN +46231 : 39.71962 : -86.33121 : Indianapolis, IN +46234 : 39.797622 : -86.32493 : Indianapolis, IN +46235 : 39.835369 : -85.98635 : Indianapolis, IN +46236 : 39.888225 : -85.97041 : Indianapolis, IN +46237 : 39.67859 : -86.08634 : Indianapolis, IN +46239 : 39.732943 : -85.99903 : Indianapolis, IN +46240 : 39.902039 : -86.12948 : Indianapolis, IN +46241 : 39.736844 : -86.25214 : Indianapolis, IN +46242 : 39.779492 : -86.132837 : Indianapolis, IN +46243 : 39.779741 : -86.332995 : Washington, IN +46244 : 39.779492 : -86.132837 : Indianapolis, IN +46247 : 39.779492 : -86.132837 : Indianapolis, IN +46249 : 39.858989 : -86.006082 : Indianapolis, IN +46250 : 39.905689 : -86.06733 : Indianapolis, IN +46251 : 39.779492 : -86.132837 : Indianapolis, IN +46253 : 39.779492 : -86.132837 : Indianapolis, IN +46254 : 39.844024 : -86.26464 : Indianapolis, IN +46255 : 39.779492 : -86.132837 : Indianapolis, IN +46256 : 39.907838 : -86.01405 : Indianapolis, IN +46259 : 39.651145 : -85.98073 : Indianapolis, IN +46260 : 39.898107 : -86.18232 : Indianapolis, IN +46266 : 39.779492 : -86.132837 : Indianapolis, IN +46268 : 39.897548 : -86.22546 : Indianapolis, IN +46274 : 39.779492 : -86.132837 : Indianapolis, IN +46275 : 39.779492 : -86.132837 : Indianapolis, IN +46277 : 39.779492 : -86.132837 : Indianapolis, IN +46278 : 39.89792 : -86.28619 : Indianapolis, IN +46280 : 39.939102 : -86.13831 : Indianapolis, IN +46282 : 39.779492 : -86.132837 : Indianapolis, IN +46283 : 39.779492 : -86.132837 : Indianapolis, IN +46285 : 39.779492 : -86.132837 : Indianapolis, IN +46290 : 39.934949 : -86.16262 : Indianapolis, IN +46291 : 39.779492 : -86.132837 : Indianapolis, IN +46295 : 39.779492 : -86.132837 : Indianapolis, IN +46298 : 39.779492 : -86.132837 : Indianapolis, IN +46301 : 41.687414 : -86.9797 : Beverly Shores, IN +46302 : 41.354186 : -87.130431 : Boone Grove, IN +46303 : 41.36959 : -87.44849 : Cedar Lake, IN +46304 : 41.616263 : -87.05883 : Chesterton, IN +46305 : 41.74486 : -86.177059 : Granger, IN +46307 : 41.418873 : -87.34298 : Crown Point, IN +46308 : 41.461543 : -87.372779 : Crown Point, IN +46310 : 41.179017 : -87.24265 : Demotte, IN +46311 : 41.491377 : -87.51022 : Dyer, IN +46312 : 41.639735 : -87.46084 : East Chicago, IN +46319 : 41.527235 : -87.42458 : Griffith, IN +46320 : 41.610035 : -87.50574 : Hammond, IN +46321 : 41.551457 : -87.50143 : Munster, IN +46322 : 41.549851 : -87.45806 : Highland, IN +46323 : 41.587718 : -87.45528 : Hammond, IN +46324 : 41.583535 : -87.50391 : Hammond, IN +46325 : 41.461543 : -87.372779 : Hammond, IN +46327 : 41.634385 : -87.50911 : Hammond, IN +46332 : 39.77127 : -86.373314 : Washington, IN +46340 : 41.397147 : -86.76103 : Hanna, IN +46341 : 41.32374 : -87.20898 : Hebron, IN +46342 : 41.533786 : -87.26403 : Hobart, IN +46345 : 41.526628 : -86.70041 : Kingsbury, IN +46346 : 41.479757 : -86.6925 : Kingsford Heights, IN +46347 : 41.305178 : -87.01522 : Kouts, IN +46348 : 41.316401 : -86.87244 : La Crosse, IN +46349 : 41.111996 : -87.43686 : Lake Village, IN +46350 : 41.605749 : -86.71983 : La Porte, IN +46352 : 41.498992 : -86.709883 : La Porte, IN +46355 : 41.359415 : -87.27081 : Leroy, IN +46356 : 41.269789 : -87.41353 : Lowell, IN +46360 : 41.707539 : -86.87902 : Michigan City, IN +46361 : 41.70354 : -86.915077 : Michigan City, IN +46365 : 41.598294 : -86.53889 : Mill Creek, IN +46366 : 41.212184 : -86.77019 : North Judson, IN +46368 : 41.58327 : -87.18154 : Portage, IN +46369 : 40.41663 : -86.26679 : Russiaville, IN +46371 : 41.677087 : -86.60481 : Rolling Prairie, IN +46372 : 41.143358 : -87.322049 : Roselawn, IN +46373 : 41.44862 : -87.47404 : Saint John, IN +46374 : 41.204744 : -86.90009 : San Pierre, IN +46375 : 41.492085 : -87.4519 : Schererville, IN +46376 : 41.176325 : -87.46426 : Schneider, IN +46377 : 41.191665 : -87.34695 : Shelby, IN +46379 : 41.167119 : -87.43781 : Sumava Resorts, IN +46380 : 41.194816 : -86.968614 : Tefft, IN +46381 : 41.170584 : -87.33142 : Thayer, IN +46382 : 41.479916 : -86.77328 : Union Mills, IN +46383 : 41.47339 : -87.03165 : Valparaiso, IN +46384 : 41.490545 : -87.076094 : Valparaiso, IN +46385 : 41.484652 : -87.11269 : Valparaiso, IN +46386 : 41.428873 : -87.170527 : Porter, IN +46390 : 41.420078 : -86.88131 : Wanatah, IN +46391 : 41.550192 : -86.91068 : Westville, IN +46392 : 41.186662 : -87.05359 : Wheatfield, IN +46393 : 41.510333 : -87.17829 : Wheeler, IN +46394 : 41.679185 : -87.50015 : Whiting, IN +46401 : 41.590686 : -87.319937 : Gary, IN +46402 : 41.601086 : -87.33681 : Gary, IN +46403 : 41.604654 : -87.25695 : Gary, IN +46404 : 41.588636 : -87.37271 : Gary, IN +46405 : 41.570086 : -87.26447 : Lake Station, IN +46406 : 41.589135 : -87.40962 : Gary, IN +46407 : 41.580469 : -87.33646 : Gary, IN +46408 : 41.542536 : -87.3581 : Gary, IN +46409 : 41.544736 : -87.32716 : Gary, IN +46410 : 41.487369 : -87.34024 : Merrillville, IN +46411 : 41.461543 : -87.372779 : Merrillville, IN +46415 : 40.479112 : -86.397372 : Burlington, IN +46501 : 41.224036 : -86.24521 : Argos, IN +46502 : 41.259773 : -85.97379 : Atwood, IN +46504 : 41.301049 : -86.1114 : Bourbon, IN +46506 : 41.450744 : -86.1692 : Bremen, IN +46507 : 41.725061 : -85.81792 : Bristol, IN +46508 : 41.154441 : -85.96915 : Burket, IN +46510 : 41.12274 : -85.88733 : Claypool, IN +46511 : 41.218388 : -86.42163 : Culver, IN +46513 : 41.361567 : -86.44545 : Donaldson, IN +46514 : 41.707616 : -85.97605 : Elkhart, IN +46515 : 41.641449 : -85.938348 : Elkhart, IN +46516 : 41.676899 : -85.96044 : Elkhart, IN +46517 : 41.646499 : -85.96923 : Elkhart, IN +46518 : 39.580105 : -86.308673 : Madison, IN +46524 : 41.291767 : -86.03216 : Etna Green, IN +46526 : 41.567559 : -85.84885 : Goshen, IN +46527 : 41.597739 : -85.858076 : Goshen, IN +46528 : 41.600649 : -85.81902 : Goshen, IN +46530 : 41.741872 : -86.13717 : Granger, IN +46531 : 41.356991 : -86.50975 : Grovertown, IN +46532 : 41.411513 : -86.61127 : Hamlet, IN +46534 : 41.282822 : -86.61613 : Knox, IN +46535 : 41.720636 : -86.192003 : Granger, IN +46536 : 41.519839 : -86.2795 : Lakeville, IN +46537 : 41.458188 : -86.3076 : Lapaz, IN +46538 : 41.323642 : -85.78997 : Leesburg, IN +46539 : 41.168118 : -86.01203 : Mentone, IN +46540 : 41.685374 : -85.69409 : Middlebury, IN +46542 : 41.408621 : -85.86531 : Milford, IN +46543 : 41.525634 : -85.68403 : Millersburg, IN +46544 : 41.650672 : -86.16002 : Mishawaka, IN +46545 : 41.681487 : -86.16811 : Mishawaka, IN +46546 : 41.688432 : -86.196485 : Mishawaka, IN +46550 : 41.444183 : -85.99829 : Nappanee, IN +46552 : 41.708183 : -86.50412 : New Carlisle, IN +46553 : 41.48922 : -85.84083 : New Paris, IN +46554 : 41.547845 : -86.42047 : North Liberty, IN +46555 : 41.328153 : -85.6852 : North Webster, IN +46556 : 41.701415 : -86.24498 : Notre Dame, IN +46561 : 41.672698 : -86.07877 : Osceola, IN +46562 : 41.213756 : -85.70397 : Pierceton, IN +46563 : 41.347159 : -86.32023 : Plymouth, IN +46565 : 41.696334 : -85.58665 : Shipshewana, IN +46566 : 41.105868 : -85.74168 : Sidney, IN +46567 : 41.411075 : -85.736 : Syracuse, IN +46570 : 41.208493 : -86.12107 : Tippecanoe, IN +46571 : 41.565561 : -85.54707 : Topeka, IN +46572 : 41.325513 : -86.260569 : Tyner, IN +46573 : 41.538432 : -86.04261 : Wakarusa, IN +46574 : 41.472858 : -86.49379 : Walkerton, IN +46580 : 41.2281 : -85.85778 : Warsaw, IN +46581 : 41.239365 : -85.864267 : Warsaw, IN +46582 : 41.281518 : -85.81927 : Warsaw, IN +46590 : 41.22163 : -85.81795 : Winona Lake, IN +46595 : 41.526405 : -86.17013 : Wyatt, IN +46601 : 41.671197 : -86.25253 : South Bend, IN +46604 : 41.664198 : -86.221805 : South Bend, IN +46612 : 41.628483 : -86.234589 : South Bend, IN +46613 : 41.654547 : -86.25043 : South Bend, IN +46614 : 41.626588 : -86.24804 : South Bend, IN +46615 : 41.671848 : -86.21105 : South Bend, IN +46616 : 41.69248 : -86.26514 : South Bend, IN +46617 : 41.684504 : -86.23576 : South Bend, IN +46619 : 41.667797 : -86.31341 : South Bend, IN +46620 : 41.596769 : -86.292991 : South Bend, IN +46624 : 41.733223 : -86.283278 : South Bend, IN +46626 : 41.677397 : -86.252506 : South Bend, IN +46628 : 41.700776 : -86.30357 : South Bend, IN +46629 : 41.672543 : -86.27329 : South Bend, IN +46634 : 41.596769 : -86.292991 : South Bend, IN +46635 : 41.708505 : -86.20906 : South Bend, IN +46637 : 41.73104 : -86.24391 : South Bend, IN +46660 : 41.596769 : -86.292991 : South Bend, IN +46671 : 41.532773 : -85.539454 : Topeka, IN +46680 : 41.596769 : -86.292991 : South Bend, IN +46692 : 40.752777 : -85.744328 : Noble, IN +46696 : 41.156891 : -86.604952 : Franklin, IN +46699 : 41.596769 : -86.292991 : South Bend, IN +46701 : 41.361895 : -85.43989 : Albion, IN +46702 : 40.838891 : -85.62014 : Andrews, IN +46703 : 41.656798 : -85.0223 : Angola, IN +46704 : 41.103797 : -85.292474 : Arcola, IN +46705 : 41.523914 : -85.06155 : Ashley, IN +46706 : 41.352638 : -85.04792 : Auburn, IN +46710 : 41.353742 : -85.24367 : Avilla, IN +46711 : 40.660174 : -84.94244 : Berne, IN +46713 : 40.829196 : -85.489198 : Bippus, IN +46714 : 40.728816 : -85.16565 : Bluffton, IN +46720 : 41.395275 : -85.423462 : Brimfield, IN +46721 : 41.424095 : -84.8726 : Butler, IN +46723 : 41.238825 : -85.32693 : Churubusco, IN +46725 : 41.166034 : -85.48313 : Columbia City, IN +46730 : 41.44551 : -85.15149 : Corunna, IN +46731 : 40.793562 : -85.0974 : Craigville, IN +46732 : 41.386918 : -85.63924 : Cromwell, IN +46733 : 40.831351 : -84.93704 : Decatur, IN +46737 : 41.724694 : -84.95619 : Fremont, IN +46738 : 41.334204 : -85.13569 : Garrett, IN +46740 : 40.599769 : -84.96856 : Geneva, IN +46741 : 41.202549 : -84.93811 : Grabill, IN +46742 : 41.544911 : -84.89154 : Hamilton, IN +46743 : 41.215338 : -84.85575 : Harlan, IN +46745 : 40.954897 : -85.00759 : Hoagland, IN +46746 : 41.722976 : -85.39367 : Howe, IN +46747 : 41.556391 : -85.15428 : Hudson, IN +46748 : 41.243248 : -85.16711 : Huntertown, IN +46750 : 40.872261 : -85.49061 : Huntington, IN +46755 : 41.449897 : -85.26765 : Kendallville, IN +46759 : 40.598916 : -85.17871 : Keystone, IN +46760 : 41.359626 : -85.56204 : Kimmell, IN +46761 : 41.634457 : -85.35825 : Lagrange, IN +46763 : 41.28867 : -85.22236 : Laotto, IN +46764 : 41.209244 : -85.6322 : Larwill, IN +46765 : 41.219699 : -85.02486 : Leo, IN +46766 : 40.708804 : -85.29184 : Liberty Center, IN +46767 : 41.464213 : -85.59288 : Ligonier, IN +46768 : 39.712549 : -86.370409 : Plainfield, IN +46769 : 40.74532 : -84.937926 : Linn Grove, IN +46770 : 40.852768 : -85.30702 : Markle, IN +46771 : 41.665489 : -85.267567 : Mongo, IN +46772 : 40.736015 : -84.92161 : Monroe, IN +46773 : 40.988714 : -84.87284 : Monroeville, IN +46774 : 41.081548 : -84.98664 : New Haven, IN +46776 : 41.732206 : -85.16794 : Orland, IN +46777 : 40.880397 : -85.15936 : Ossian, IN +46778 : 40.611419 : -85.152604 : Petroleum, IN +46779 : 41.578442 : -85.03134 : Pleasant Lake, IN +46780 : 40.74532 : -84.937926 : Pleasant Mills, IN +46781 : 40.641626 : -85.24984 : Poneto, IN +46782 : 40.83204 : -85.005402 : Preble, IN +46783 : 40.967646 : -85.34315 : Roanoke, IN +46784 : 41.493637 : -85.37745 : Rome City, IN +46785 : 41.317967 : -84.89306 : Saint Joe, IN +46786 : 41.536899 : -85.319241 : South Milford, IN +46787 : 41.080236 : -85.62796 : South Whitley, IN +46788 : 41.267553 : -84.93525 : Spencerville, IN +46789 : 41.583493 : -85.199186 : Stroh, IN +46791 : 40.830096 : -85.24399 : Uniondale, IN +46792 : 40.683261 : -85.43218 : Warren, IN +46793 : 41.441775 : -85.01837 : Waterloo, IN +46794 : 41.462326 : -85.45882 : Wawaka, IN +46795 : 41.551546 : -85.35463 : Wolcottville, IN +46796 : 41.336115 : -85.500246 : Wolflake, IN +46797 : 41.129274 : -84.86982 : Woodburn, IN +46798 : 40.942397 : -85.23342 : Yoder, IN +46799 : 40.916397 : -85.28232 : Zanesville, IN +46801 : 41.093763 : -85.070713 : Fort Wayne, IN +46802 : 41.071681 : -85.15101 : Fort Wayne, IN +46803 : 41.070498 : -85.10706 : Fort Wayne, IN +46804 : 41.054247 : -85.23878 : Fort Wayne, IN +46805 : 41.098248 : -85.12061 : Fort Wayne, IN +46806 : 41.048148 : -85.11114 : Fort Wayne, IN +46807 : 41.046848 : -85.14481 : Fort Wayne, IN +46808 : 41.094348 : -85.16151 : Fort Wayne, IN +46809 : 41.023147 : -85.1826 : Fort Wayne, IN +46814 : 41.044502 : -85.30984 : Fort Wayne, IN +46815 : 41.105691 : -85.06509 : Fort Wayne, IN +46816 : 41.006281 : -85.0692 : Fort Wayne, IN +46818 : 41.148298 : -85.22159 : Fort Wayne, IN +46819 : 40.993914 : -85.14262 : Fort Wayne, IN +46825 : 41.150677 : -85.12181 : Fort Wayne, IN +46835 : 41.138599 : -85.05941 : Fort Wayne, IN +46845 : 41.200465 : -85.10219 : Fort Wayne, IN +46848 : 41.221366 : -85.172053 : Huntertown, IN +46850 : 41.093763 : -85.070713 : Fort Wayne, IN +46851 : 41.093763 : -85.070713 : Fort Wayne, IN +46852 : 41.093763 : -85.070713 : Fort Wayne, IN +46853 : 41.093763 : -85.070713 : Fort Wayne, IN +46854 : 41.093763 : -85.070713 : Fort Wayne, IN +46855 : 41.093763 : -85.070713 : Fort Wayne, IN +46856 : 41.093763 : -85.070713 : Fort Wayne, IN +46857 : 41.093763 : -85.070713 : Fort Wayne, IN +46858 : 41.093763 : -85.070713 : Fort Wayne, IN +46859 : 41.093763 : -85.070713 : Fort Wayne, IN +46860 : 41.093763 : -85.070713 : Fort Wayne, IN +46861 : 41.093763 : -85.070713 : Fort Wayne, IN +46862 : 41.093763 : -85.070713 : Fort Wayne, IN +46863 : 41.093763 : -85.070713 : Fort Wayne, IN +46864 : 41.093763 : -85.070713 : Fort Wayne, IN +46865 : 41.126298 : -85.090669 : Fort Wayne, IN +46866 : 41.093763 : -85.070713 : Fort Wayne, IN +46867 : 41.093763 : -85.070713 : Fort Wayne, IN +46868 : 41.093763 : -85.070713 : Fort Wayne, IN +46869 : 41.093763 : -85.070713 : Fort Wayne, IN +46885 : 41.093763 : -85.070713 : Fort Wayne, IN +46891 : 41.018247 : -85.148284 : Fort Wayne, IN +46895 : 41.093763 : -85.070713 : Fort Wayne, IN +46896 : 41.093763 : -85.070713 : Fort Wayne, IN +46897 : 41.093763 : -85.070713 : Fort Wayne, IN +46898 : 41.093763 : -85.070713 : Fort Wayne, IN +46899 : 41.093763 : -85.070713 : Fort Wayne, IN +46901 : 40.501576 : -86.14677 : Kokomo, IN +46902 : 40.450623 : -86.12127 : Kokomo, IN +46903 : 40.469625 : -86.11894 : Kokomo, IN +46904 : 40.469625 : -86.11894 : Kokomo, IN +46910 : 41.040643 : -86.03829 : Akron, IN +46911 : 40.614885 : -85.93863 : Amboy, IN +46912 : 41.040988 : -86.206925 : Athens, IN +46913 : 40.507086 : -86.50127 : Bringhurst, IN +46914 : 40.646736 : -86.09952 : Bunker Hill, IN +46915 : 40.495181 : -86.394248 : Burlington, IN +46916 : 40.584272 : -86.573952 : Burrows, IN +46917 : 40.626913 : -86.475 : Camden, IN +46919 : 40.580773 : -85.86648 : Converse, IN +46920 : 40.472125 : -86.47781 : Cutler, IN +46921 : 40.911001 : -86.10052 : Deedsville, IN +46922 : 41.040988 : -86.206925 : Delong, IN +46923 : 40.597574 : -86.65297 : Delphi, IN +46926 : 40.873913 : -86.06339 : Denver, IN +46928 : 40.412026 : -85.65476 : Fairmount, IN +46929 : 40.542108 : -86.497 : Flora, IN +46930 : 40.409668 : -85.57179 : Fowlerton, IN +46931 : 40.947157 : -86.26393 : Fulton, IN +46932 : 40.593036 : -86.23191 : Galveston, IN +46933 : 40.48684 : -85.60772 : Gas City, IN +46935 : 41.040988 : -86.206925 : Grass Creek, IN +46936 : 40.482338 : -85.94279 : Greentown, IN +46937 : 40.418662 : -86.018139 : Hemlock, IN +46938 : 40.468157 : -85.63456 : Jonesboro, IN +46939 : 41.007625 : -86.4016 : Kewanna, IN +46940 : 40.680911 : -85.72135 : La Fontaine, IN +46941 : 40.832028 : -85.70333 : Lagro, IN +46942 : 40.736111 : -86.37341 : Lake Cicott, IN +46943 : 40.974439 : -85.83873 : Laketon, IN +46945 : 41.040988 : -86.206925 : Leiters Ford, IN +46946 : 41.035728 : -85.73528 : Liberty Mills, IN +46947 : 40.754787 : -86.36684 : Logansport, IN +46950 : 40.882776 : -86.38446 : Lucerne, IN +46951 : 40.952117 : -86.1172 : Macy, IN +46952 : 40.58119 : -85.66324 : Marion, IN +46953 : 40.53089 : -85.65922 : Marion, IN +46957 : 40.387885 : -85.49905 : Matthews, IN +46958 : 40.820851 : -86.11735 : Mexico, IN +46959 : 40.614644 : -86.10749 : Miami, IN +46960 : 41.159868 : -86.50246 : Monterey, IN +46961 : 40.765286 : -86.1918 : New Waverly, IN +46962 : 40.996628 : -85.7758 : North Manchester, IN +46965 : 40.412741 : -86.101484 : Oakford, IN +46966 : 41.046274 : -86.563025 : Harrison, IN +46967 : 40.694298 : -86.204238 : Onward, IN +46968 : 41.172438 : -86.55239 : Ora, IN +46970 : 40.753091 : -86.07185 : Peru, IN +46971 : 40.780955 : -86.016441 : Grissom AFB, IN +46974 : 40.935304 : -85.92906 : Roann, IN +46975 : 41.073678 : -86.23521 : Rochester, IN +46977 : 40.584272 : -86.573952 : Rockfield, IN +46978 : 40.860779 : -86.50183 : Royal Center, IN +46979 : 40.427588 : -86.26918 : Russiaville, IN +46980 : 40.848927 : -85.792501 : Servia, IN +46982 : 41.054969 : -85.90441 : Silver Lake, IN +46984 : 40.671369 : -85.828846 : Somerset, IN +46985 : 40.950873 : -86.57394 : Star City, IN +46986 : 40.504346 : -85.82678 : Swayzee, IN +46987 : 40.569731 : -85.76697 : Sweetser, IN +46988 : 40.870115 : -86.23359 : Twelve Mile, IN +46989 : 40.457599 : -85.49089 : Upland, IN +46990 : 40.898561 : -85.7457 : Urbana, IN +46991 : 40.620755 : -85.50548 : Van Buren, IN +46992 : 40.795068 : -85.82953 : Wabash, IN +46994 : 40.668348 : -86.24943 : Walton, IN +46995 : 40.442117 : -86.215482 : West Middleton, IN +46996 : 41.048063 : -86.64799 : Winamac, IN +46998 : 40.569059 : -86.34952 : Young America, IN +47001 : 39.060204 : -84.93094 : Aurora, IN +47003 : 39.567147 : -84.82042 : West College Corner, IN +47006 : 39.291624 : -85.21961 : Batesville, IN +47010 : 39.518217 : -84.82728 : Bath, IN +47011 : 38.848761 : -85.07263 : Bennington, IN +47012 : 39.43115 : -84.99568 : Brookville, IN +47016 : 39.37427 : -84.91113 : Cedar Grove, IN +47017 : 38.93049 : -85.19406 : Cross Plains, IN +47018 : 38.992471 : -85.06601 : Dillsboro, IN +47019 : 38.881346 : -84.94437 : East Enterprise, IN +47020 : 38.813326 : -84.94113 : Florence, IN +47021 : 38.966859 : -85.1453 : Friendship, IN +47022 : 39.206203 : -84.94922 : Guilford, IN +47023 : 39.07308 : -85.38747 : Holton, IN +47024 : 39.491509 : -85.19242 : Laurel, IN +47025 : 39.129059 : -84.85887 : Lawrenceburg, IN +47030 : 39.428752 : -85.13141 : Metamora, IN +47031 : 39.126201 : -85.14049 : Milan, IN +47032 : 39.075691 : -85.06057 : Moores Hill, IN +47033 : 39.281429 : -85.1739 : Morris, IN +47034 : 39.205405 : -85.32865 : Napoleon, IN +47035 : 39.310292 : -84.90196 : New Trenton, IN +47036 : 39.382381 : -85.24073 : Oldenburg, IN +47037 : 39.1548 : -85.30949 : Osgood, IN +47038 : 38.855749 : -84.83861 : Patriot, IN +47039 : 39.111625 : -85.255114 : Pierceville, IN +47040 : 38.944426 : -84.91227 : Rising Sun, IN +47041 : 39.240684 : -85.08587 : Sunman, IN +47042 : 39.035173 : -85.26017 : Versailles, IN +47043 : 38.788449 : -85.06618 : Vevay, IN +47045 : 38.77905 : -84.99462 : Jefferson, IN +47048 : 39.155801 : -86.516419 : Bloomington, IN +47060 : 39.288178 : -84.87774 : West Harrison, IN +47070 : 38.897246 : -85.726384 : Lovett, IN +47093 : 38.762649 : -85.041244 : Jefferson, IN +47102 : 38.749542 : -85.80264 : Austin, IN +47104 : 38.539899 : -85.421753 : Bethlehem, IN +47106 : 38.457573 : -85.91774 : Borden, IN +47107 : 38.190314 : -86.115257 : Bradford, IN +47108 : 38.648032 : -86.26288 : Campbellsburg, IN +47110 : 38.096971 : -86.172327 : Central, IN +47111 : 38.453813 : -85.65443 : Charlestown, IN +47112 : 38.208144 : -86.12978 : Corydon, IN +47114 : 38.287227 : -86.06805 : Crandall, IN +47115 : 38.350106 : -86.22652 : Depauw, IN +47116 : 38.328419 : -86.61356 : Eckerty, IN +47117 : 38.12173 : -85.97453 : Elizabeth, IN +47118 : 38.311323 : -86.47439 : English, IN +47119 : 38.345815 : -85.89095 : Floyds Knobs, IN +47120 : 38.435326 : -86.18702 : Fredericksburg, IN +47122 : 38.300674 : -85.96698 : Georgetown, IN +47123 : 38.284524 : -86.46103 : Grantsburg, IN +47124 : 38.363632 : -85.99239 : Greenville, IN +47125 : 38.461255 : -86.2983 : Hardinsburg, IN +47126 : 38.544777 : -85.7737 : Henryville, IN +47128 : 38.557243 : -86.261089 : Madison, IN +47129 : 38.303945 : -85.76787 : Clarksville, IN +47130 : 38.309105 : -85.72035 : Jeffersonville, IN +47131 : 38.437021 : -85.704973 : Jeffersonville, IN +47132 : 38.286819 : -85.732062 : Jeffersonville, IN +47133 : 38.286819 : -85.732062 : Jeffersonville, IN +47134 : 38.286819 : -85.732062 : Jeffersonville, IN +47135 : 38.038838 : -86.07212 : Laconia, IN +47136 : 38.237852 : -85.96834 : Lanesville, IN +47137 : 38.200101 : -86.36988 : Leavenworth, IN +47138 : 38.678365 : -85.6097 : Lexington, IN +47139 : 38.700523 : -85.90405 : Little York, IN +47140 : 38.37482 : -86.35313 : Marengo, IN +47141 : 38.543388 : -85.60373 : Marysville, IN +47142 : 38.079482 : -86.23083 : Mauckport, IN +47143 : 38.473919 : -85.76702 : Memphis, IN +47144 : 38.286819 : -85.732062 : Jeffersonville, IN +47145 : 38.344403 : -86.29997 : Milltown, IN +47146 : 38.298486 : -85.896961 : Mount Saint Francis, IN +47147 : 38.591735 : -85.53195 : Nabb, IN +47150 : 38.30382 : -85.82522 : New Albany, IN +47151 : 38.298486 : -85.896961 : New Albany, IN +47160 : 38.165541 : -86.05223 : New Middletown, IN +47161 : 38.312878 : -86.09478 : New Salisbury, IN +47162 : 38.548693 : -85.49124 : New Washington, IN +47163 : 38.544512 : -85.66831 : Otisco, IN +47164 : 38.410145 : -86.09643 : Palmyra, IN +47165 : 38.49903 : -86.01293 : Pekin, IN +47166 : 38.313345 : -86.16656 : Ramsey, IN +47167 : 38.605039 : -86.08928 : Salem, IN +47169 : 38.609733 : -86.055202 : Washington, IN +47170 : 38.684426 : -85.80304 : Scottsburg, IN +47172 : 38.387722 : -85.75936 : Sellersburg, IN +47174 : 38.210303 : -86.46657 : Sulphur, IN +47175 : 38.355935 : -86.55656 : Taswell, IN +47177 : 38.603451 : -85.76711 : Underwood, IN +47190 : 38.437021 : -85.704973 : Jeffersonville, IN +47199 : 38.286819 : -85.732062 : Jeffersonville, IN +47201 : 39.185341 : -85.9456 : Columbus, IN +47202 : 39.192972 : -85.885168 : Columbus, IN +47203 : 39.232235 : -85.86356 : Columbus, IN +47220 : 38.876537 : -86.04252 : Brownstown, IN +47223 : 39.049336 : -85.49272 : Butlerville, IN +47224 : 38.896209 : -85.21936 : Canaan, IN +47225 : 39.424072 : -85.347677 : Clarksburg, IN +47226 : 39.28249 : -85.86852 : Clifford, IN +47227 : 38.872926 : -85.64367 : Commiskey, IN +47228 : 38.974458 : -85.962761 : Cortland, IN +47229 : 38.802486 : -85.84894 : Crothersville, IN +47230 : 38.802781 : -85.62922 : Deputy, IN +47231 : 38.8937 : -85.5097 : Dupont, IN +47232 : 39.129171 : -85.8013 : Elizabethtown, IN +47234 : 39.370375 : -85.78008 : Flat Rock, IN +47235 : 38.982358 : -86.13561 : Freetown, IN +47236 : 39.152228 : -85.726135 : Grammer, IN +47240 : 39.333248 : -85.47579 : Greensburg, IN +47241 : 38.873216 : -86.518002 : Bedford, IN +47243 : 38.699654 : -85.47234 : Hanover, IN +47244 : 39.246458 : -85.70234 : Hartsville, IN +47245 : 39.001301 : -85.619906 : Hayden, IN +47246 : 39.297144 : -85.76741 : Hope, IN +47247 : 39.0601 : -85.88879 : Jonesville, IN +47249 : 38.897974 : -86.056681 : Kurtz, IN +47250 : 38.787175 : -85.38031 : Madison, IN +47256 : 39.037187 : -85.617307 : North Vernon, IN +47257 : 39.005651 : -85.611994 : North Vernon, IN +47260 : 38.846345 : -86.18327 : Medora, IN +47261 : 39.292004 : -85.491788 : Millhousen, IN +47262 : 39.001301 : -85.619906 : Nebraska, IN +47263 : 39.308947 : -85.33006 : New Point, IN +47264 : 38.962997 : -86.27469 : Norman, IN +47265 : 39.011225 : -85.63325 : North Vernon, IN +47270 : 38.838706 : -85.71245 : Paris Crossing, IN +47272 : 39.419641 : -85.62782 : Saint Paul, IN +47273 : 39.085027 : -85.7316 : Scipio, IN +47274 : 38.958688 : -85.89917 : Seymour, IN +47280 : 39.296605 : -85.95025 : Taylorsville, IN +47281 : 38.805185 : -86.09283 : Vallonia, IN +47282 : 38.982269 : -85.60914 : Vernon, IN +47283 : 39.171916 : -85.58067 : Westport, IN +47288 : 39.952253 : -87.453249 : Cayuga, IN +47302 : 40.164393 : -85.38114 : Muncie, IN +47303 : 40.221103 : -85.37602 : Muncie, IN +47304 : 40.215398 : -85.43636 : Muncie, IN +47305 : 40.192293 : -85.38494 : Muncie, IN +47306 : 40.202293 : -85.408221 : Muncie, IN +47307 : 40.162093 : -85.442772 : Muncie, IN +47308 : 40.227938 : -85.396685 : Muncie, IN +47317 : 39.902534 : -85.520201 : Kennard, IN +47320 : 40.290747 : -85.25293 : Albany, IN +47322 : 39.656994 : -85.167996 : Bentonville, IN +47324 : 39.757864 : -84.848442 : Boston, IN +47325 : 39.685481 : -85.02454 : Brownsville, IN +47326 : 40.548194 : -84.96724 : Bryant, IN +47327 : 39.816703 : -85.17784 : Cambridge City, IN +47330 : 39.802089 : -85.00994 : Centerville, IN +47331 : 39.644794 : -85.14929 : Connersville, IN +47334 : 40.117139 : -85.54205 : Daleville, IN +47335 : 39.812688 : -85.204359 : Dublin, IN +47336 : 40.38509 : -85.2115 : Dunkirk, IN +47337 : 39.802917 : -85.43806 : Dunreith, IN +47338 : 40.339779 : -85.34956 : Eaton, IN +47339 : 39.97566 : -85.10107 : Economy, IN +47340 : 40.184743 : -85.13 : Farmland, IN +47341 : 39.963113 : -84.9142 : Fountain City, IN +47342 : 40.320458 : -85.50656 : Gaston, IN +47344 : 39.876764 : -85.46546 : Greensboro, IN +47345 : 39.883711 : -85.04618 : Greens Fork, IN +47346 : 39.918857 : -85.16333 : Hagerstown, IN +47348 : 40.449883 : -85.36442 : Hartford City, IN +47351 : 39.904323 : -85.5198 : Kennard, IN +47352 : 39.802646 : -85.35541 : Lewisville, IN +47353 : 39.622812 : -84.92284 : Liberty, IN +47354 : 40.043267 : -85.20909 : Losantville, IN +47355 : 40.042138 : -84.93926 : Lynn, IN +47356 : 40.035904 : -85.52036 : Middletown, IN +47357 : 39.773709 : -85.14847 : Milton, IN +47358 : 40.043409 : -85.11692 : Modoc, IN +47359 : 40.550511 : -85.28118 : Montpelier, IN +47360 : 40.00296 : -85.25831 : Mooreland, IN +47361 : 40.004196 : -85.38641 : Mount Summit, IN +47362 : 39.92698 : -85.3697 : New Castle, IN +47366 : 39.931785 : -85.398625 : New Lisbon, IN +47367 : 40.079197 : -85.389978 : Oakville, IN +47368 : 40.187403 : -85.20421 : Parker City, IN +47369 : 40.495879 : -85.14637 : Pennville, IN +47370 : 39.861314 : -85.147437 : Pershing, IN +47371 : 40.419489 : -84.96936 : Portland, IN +47373 : 40.34703 : -85.15474 : Redkey, IN +47374 : 39.831061 : -84.89067 : Richmond, IN +47375 : 39.860417 : -85.015983 : Richmond, IN +47380 : 40.285505 : -85.02063 : Ridgeville, IN +47381 : 40.382778 : -84.86603 : Salamonia, IN +47382 : 40.236181 : -84.91901 : Saratoga, IN +47383 : 40.168528 : -85.2698 : Selma, IN +47384 : 39.90952 : -85.56716 : Shirley, IN +47385 : 39.832904 : -85.44117 : Spiceland, IN +47386 : 40.058307 : -85.38566 : Springport, IN +47387 : 39.838735 : -85.28409 : Straughn, IN +47388 : 40.005999 : -85.44341 : Sulphur Springs, IN +47390 : 40.212425 : -84.83422 : Union City, IN +47392 : 39.903236 : -84.94334 : Webster, IN +47393 : 39.953627 : -84.99542 : Williamsburg, IN +47394 : 40.173141 : -84.97922 : Winchester, IN +47395 : 40.05085 : -84.938878 : Lynn, IN +47396 : 40.186603 : -85.5056 : Yorktown, IN +47398 : 40.461432 : -85.377969 : Hartford City, IN +47401 : 39.131576 : -86.49743 : Bloomington, IN +47402 : 39.173234 : -86.501543 : Bloomington, IN +47403 : 39.121719 : -86.57409 : Bloomington, IN +47404 : 39.188246 : -86.56779 : Bloomington, IN +47405 : 39.173447 : -86.515145 : Bloomington, IN +47406 : 39.173597 : -86.51676 : Bloomington, IN +47407 : 39.173234 : -86.501543 : Bloomington, IN +47408 : 39.183164 : -86.50293 : Bloomington, IN +47412 : 37.975102 : -87.626938 : Evansville, IN +47420 : 38.912898 : -86.55097 : Avoca, IN +47421 : 38.865549 : -86.46897 : Bedford, IN +47424 : 39.021657 : -86.90202 : Bloomfield, IN +47426 : 39.173234 : -86.501543 : Clear Creek, IN +47427 : 39.232338 : -87.03271 : Coal City, IN +47429 : 39.245995 : -86.62275 : Ellettsville, IN +47430 : 38.773826 : -86.28146 : Fort Ritner, IN +47431 : 39.235092 : -86.88719 : Freedom, IN +47432 : 38.507726 : -86.62922 : French Lick, IN +47433 : 39.355692 : -86.66247 : Gosport, IN +47434 : 39.012984 : -86.545732 : Harrodsburg, IN +47435 : 39.196272 : -86.230212 : Helmsburg, IN +47436 : 38.978916 : -86.4169 : Heltonville, IN +47437 : 38.722153 : -86.670987 : Huron, IN +47438 : 39.160126 : -87.19961 : Jasonville, IN +47439 : 39.037144 : -86.961577 : Koleen, IN +47441 : 39.039636 : -87.16987 : Linton, IN +47443 : 38.96555 : -87.09917 : Lyons, IN +47445 : 39.125078 : -87.19332 : Midland, IN +47446 : 38.733355 : -86.49319 : Mitchell, IN +47448 : 39.199357 : -86.2395 : Nashville, IN +47449 : 38.926709 : -87.0031 : Newberry, IN +47451 : 38.896413 : -86.52474 : Oolitic, IN +47452 : 38.647931 : -86.43438 : Orleans, IN +47453 : 38.924067 : -86.74308 : Owensburg, IN +47454 : 38.533167 : -86.48362 : Paoli, IN +47455 : 39.311243 : -86.95343 : Patricksburg, IN +47456 : 39.448838 : -86.73117 : Quincy, IN +47457 : 39.037144 : -86.961577 : Scotland, IN +47458 : 39.173234 : -86.501543 : Smithville, IN +47459 : 39.110903 : -86.74855 : Solsberry, IN +47460 : 39.290029 : -86.77844 : Spencer, IN +47462 : 38.967187 : -86.63699 : Springville, IN +47463 : 39.085896 : -86.6689 : Stanford, IN +47464 : 39.298595 : -86.6512 : Stinesville, IN +47465 : 39.039348 : -87.04871 : Switz City, IN +47467 : 38.768275 : -86.34441 : Tunnelton, IN +47468 : 39.251349 : -86.3935 : Unionville, IN +47469 : 38.584248 : -86.61296 : West Baden Springs, IN +47470 : 38.845709 : -86.68869 : Williams, IN +47471 : 39.123925 : -86.9845 : Worthington, IN +47485 : 39.191057 : -87.231182 : Lewis, IN +47488 : 39.246268 : -86.163826 : Hamblen, IN +47490 : 39.173234 : -86.501543 : Bloomington, IN +47501 : 38.658196 : -87.17619 : Washington, IN +47512 : 38.777038 : -87.31447 : Bicknell, IN +47513 : 38.316017 : -86.70118 : Birdseye, IN +47514 : 38.137325 : -86.58477 : Branchville, IN +47515 : 38.184046 : -86.71714 : Bristow, IN +47516 : 38.762261 : -87.4228 : Bruceville, IN +47519 : 38.619866 : -86.98761 : Cannelburg, IN +47520 : 37.934311 : -86.67821 : Cannelton, IN +47521 : 38.387935 : -86.74717 : Celestine, IN +47522 : 38.893458 : -86.8507 : Crane, IN +47523 : 38.170876 : -86.99889 : Dale, IN +47524 : 38.507039 : -87.55539 : Decker, IN +47525 : 38.031757 : -86.55613 : Derby, IN +47527 : 38.473956 : -86.77777 : Dubois, IN +47528 : 38.824546 : -87.25186 : Edwardsport, IN +47529 : 38.869876 : -87.08288 : Elnora, IN +47531 : 38.056909 : -86.82196 : Evanston, IN +47532 : 38.22309 : -86.86155 : Ferdinand, IN +47535 : 38.867886 : -87.30865 : Freelandville, IN +47536 : 38.112396 : -86.83649 : Fulda, IN +47537 : 38.099889 : -87.04073 : Gentryville, IN +47541 : 38.241887 : -87.04145 : Holland, IN +47542 : 38.302272 : -86.96864 : Huntingburg, IN +47545 : 38.413906 : -87.0006 : Ireland, IN +47546 : 38.408794 : -86.93876 : Jasper, IN +47547 : 38.364749 : -86.876173 : Jasper, IN +47549 : 38.364749 : -86.876173 : Jasper, IN +47550 : 38.077016 : -86.92258 : Lamar, IN +47551 : 38.127871 : -86.558 : Leopold, IN +47552 : 38.118547 : -86.99567 : Lincoln City, IN +47553 : 38.702827 : -86.89775 : Loogootee, IN +47556 : 38.16644 : -86.917205 : Mariah Hill, IN +47557 : 38.588354 : -87.34174 : Monroe City, IN +47558 : 38.660051 : -87.04626 : Montgomery, IN +47561 : 38.864563 : -87.44554 : Oaktown, IN +47562 : 38.837695 : -86.98512 : Odon, IN +47564 : 38.470473 : -87.09905 : Otwell, IN +47567 : 38.477037 : -87.30217 : Petersburg, IN +47568 : 38.791938 : -87.13975 : Plainville, IN +47573 : 38.744136 : -87.321357 : Ragsdale, IN +47574 : 37.934212 : -86.56537 : Rome, IN +47575 : 38.313717 : -86.81523 : Saint Anthony, IN +47576 : 38.19297 : -86.60853 : Saint Croix, IN +47577 : 38.160168 : -86.80978 : Saint Meinrad, IN +47578 : 38.892783 : -87.1913 : Sandborn, IN +47579 : 38.115573 : -86.91993 : Santa Claus, IN +47580 : 38.345103 : -86.75914 : Schnellville, IN +47581 : 38.663011 : -86.77554 : Shoals, IN +47584 : 38.248608 : -87.24115 : Spurgeon, IN +47585 : 38.267827 : -87.14299 : Stendal, IN +47586 : 37.971622 : -86.73903 : Tell City, IN +47588 : 38.012451 : -86.79698 : Troy, IN +47590 : 38.356658 : -87.10155 : Velpen, IN +47591 : 38.668827 : -87.50791 : Vincennes, IN +47596 : 38.862609 : -87.2247 : Westphalia, IN +47597 : 38.652821 : -87.30088 : Wheatland, IN +47598 : 38.384501 : -87.20987 : Winslow, IN +47601 : 38.05732 : -87.26579 : Boonville, IN +47610 : 38.047188 : -87.39041 : Chandler, IN +47611 : 38.022045 : -87.05408 : Chrisney, IN +47612 : 38.190517 : -87.7024 : Cynthiana, IN +47613 : 38.170645 : -87.42886 : Elberfeld, IN +47614 : 38.130034 : -87.163636 : Folsomville, IN +47615 : 37.965531 : -86.95436 : Grandview, IN +47616 : 38.218814 : -87.92435 : Griffin, IN +47617 : 37.903557 : -87.249886 : Hatfield, IN +47618 : 37.997128 : -87.574963 : Inglefield, IN +47619 : 38.199662 : -87.31132 : Lynnville, IN +47620 : 37.940511 : -87.88918 : Mount Vernon, IN +47625 : 39.00249 : -85.625718 : North Vernon, IN +47629 : 38.06242 : -87.245214 : Newburgh, IN +47630 : 37.958873 : -87.37998 : Newburgh, IN +47631 : 38.117974 : -87.91918 : New Harmony, IN +47633 : 38.168191 : -87.78113 : Poseyville, IN +47634 : 37.93889 : -87.19167 : Richland, IN +47635 : 37.883451 : -87.09771 : Rockport, IN +47637 : 38.132339 : -87.14259 : Tennyson, IN +47638 : 38.081681 : -87.78055 : Wadesville, IN +47639 : 38.187983 : -87.5658 : Haubstadt, IN +47640 : 38.484278 : -87.5039 : Hazleton, IN +47647 : 38.215226 : -87.42319 : Buckskin, IN +47648 : 38.240456 : -87.56035 : Fort Branch, IN +47649 : 38.343295 : -87.44275 : Francisco, IN +47654 : 38.25312 : -87.39205 : Mackey, IN +47660 : 38.323439 : -87.34145 : Oakland City, IN +47665 : 38.287411 : -87.72954 : Owensville, IN +47666 : 38.411923 : -87.58462 : Patoka, IN +47667 : 38.27312 : -87.692037 : Owensville, IN +47670 : 38.34841 : -87.57478 : Princeton, IN +47671 : 40.519221 : -87.255079 : Oxford, IN +47672 : 38.187432 : -87.716121 : Cynthiana, IN +47683 : 38.278452 : -87.37714 : Somerville, IN +47701 : 37.997128 : -87.574963 : Evansville, IN +47702 : 37.997128 : -87.574963 : Evansville, IN +47703 : 37.997128 : -87.574963 : Evansville, IN +47704 : 37.997128 : -87.574963 : Evansville, IN +47705 : 37.997128 : -87.574963 : Evansville, IN +47706 : 37.997128 : -87.574963 : Evansville, IN +47708 : 37.974642 : -87.57349 : Evansville, IN +47710 : 37.999542 : -87.57621 : Evansville, IN +47711 : 38.000442 : -87.54178 : Evansville, IN +47712 : 37.966292 : -87.63664 : Evansville, IN +47713 : 37.962542 : -87.55796 : Evansville, IN +47714 : 37.959092 : -87.52468 : Evansville, IN +47715 : 37.975476 : -87.47506 : Evansville, IN +47716 : 37.997128 : -87.574963 : Evansville, IN +47718 : 38.420839 : -86.570962 : Jackson, IN +47719 : 37.997128 : -87.574963 : Evansville, IN +47720 : 38.045951 : -87.62723 : Evansville, IN +47721 : 37.978035 : -87.600791 : Evansville, IN +47722 : 37.970192 : -87.542014 : Evansville, IN +47724 : 37.997128 : -87.574963 : Evansville, IN +47725 : 38.096771 : -87.52112 : Evansville, IN +47727 : 38.031942 : -87.538915 : Evansville, IN +47728 : 37.997128 : -87.574963 : Evansville, IN +47729 : 38.110995 : -87.527249 : Scott, IN +47730 : 37.997128 : -87.574963 : Evansville, IN +47731 : 37.997128 : -87.574963 : Evansville, IN +47732 : 37.997128 : -87.574963 : Evansville, IN +47733 : 37.997128 : -87.574963 : Evansville, IN +47734 : 37.997128 : -87.574963 : Evansville, IN +47735 : 37.997128 : -87.574963 : Evansville, IN +47736 : 37.997128 : -87.574963 : Evansville, IN +47737 : 37.997128 : -87.574963 : Evansville, IN +47739 : 37.997128 : -87.574963 : Evansville, IN +47740 : 37.997128 : -87.574963 : Evansville, IN +47741 : 37.997128 : -87.574963 : Evansville, IN +47744 : 37.977492 : -87.597316 : Evansville, IN +47747 : 37.997128 : -87.574963 : Evansville, IN +47750 : 37.962292 : -87.505512 : Evansville, IN +47765 : 39.952416 : -86.922974 : New Market, IN +47801 : 39.433602 : -87.410094 : Terre Haute, IN +47802 : 39.393237 : -87.3977 : Terre Haute, IN +47803 : 39.46706 : -87.34452 : Terre Haute, IN +47804 : 39.495436 : -87.39209 : Terre Haute, IN +47805 : 39.535285 : -87.35222 : Terre Haute, IN +47807 : 39.470986 : -87.39996 : Terre Haute, IN +47808 : 39.433602 : -87.410094 : Terre Haute, IN +47809 : 39.470986 : -87.41107 : Terre Haute, IN +47811 : 39.433602 : -87.410094 : Terre Haute, IN +47812 : 39.433602 : -87.410094 : Terre Haute, IN +47813 : 39.433602 : -87.410094 : Terre Haute, IN +47814 : 39.433602 : -87.410094 : Terre Haute, IN +47830 : 39.779078 : -87.221819 : Bellmore, IN +47831 : 39.877847 : -87.443566 : Blanford, IN +47832 : 39.869467 : -87.24589 : Bloomingdale, IN +47833 : 39.360169 : -86.99353 : Bowling Green, IN +47834 : 39.52503 : -87.12738 : Brazil, IN +47836 : 39.647929 : -87.17529 : Bridgeton, IN +47837 : 39.625607 : -87.11502 : Carbon, IN +47838 : 38.957093 : -87.3793 : Carlisle, IN +47840 : 39.406161 : -87.06899 : Centerpoint, IN +47841 : 39.282127 : -87.11557 : Clay City, IN +47842 : 39.66851 : -87.43577 : Clinton, IN +47845 : 39.387544 : -87.090363 : Coalmont, IN +47846 : 39.377883 : -87.20462 : Cory, IN +47847 : 39.830942 : -87.47013 : Dana, IN +47848 : 39.065547 : -87.25714 : Dugger, IN +47849 : 39.193884 : -87.5449 : Fairbanks, IN +47850 : 39.25182 : -87.40974 : Farmersburg, IN +47851 : 39.573663 : -87.24536 : Fontanet, IN +47852 : 39.080474 : -87.449558 : Graysville, IN +47853 : 39.536856 : -87.0721 : Harmony, IN +47854 : 39.819742 : -87.41458 : Hillsdale, IN +47855 : 39.185497 : -87.29997 : Hymera, IN +47856 : 39.813543 : -87.13635 : Judson, IN +47857 : 39.526913 : -87.086882 : Knightsville, IN +47858 : 39.255569 : -87.23587 : Lewis, IN +47859 : 39.865058 : -87.17504 : Marshall, IN +47860 : 39.725201 : -87.33149 : Mecca, IN +47861 : 39.061837 : -87.56655 : Merom, IN +47862 : 39.783738 : -87.35609 : Montezuma, IN +47863 : 39.580862 : -87.46293 : New Goshen, IN +47864 : 39.041245 : -87.475747 : New Lebanon, IN +47865 : 39.020687 : -87.39149 : Paxton, IN +47866 : 39.293977 : -87.30983 : Pimento, IN +47868 : 39.414547 : -86.90202 : Poland, IN +47869 : 39.433602 : -87.410094 : Prairie Creek, IN +47870 : 39.371187 : -87.475871 : Prairieton, IN +47871 : 39.388638 : -87.301367 : Riley, IN +47872 : 39.758142 : -87.1754 : Rockville, IN +47874 : 39.625041 : -87.27765 : Rosedale, IN +47875 : 39.877847 : -87.443566 : Saint Bernice, IN +47876 : 39.505935 : -87.46156 : Saint Mary Of The Woods, IN +47878 : 39.492838 : -87.266549 : Seelyville, IN +47879 : 39.182707 : -87.38029 : Shelburn, IN +47880 : 39.600636 : -87.419569 : Shepardsville, IN +47881 : 39.487119 : -87.18939 : Staunton, IN +47882 : 39.090479 : -87.40667 : Sullivan, IN +47884 : 39.622536 : -87.45451 : Universal, IN +47885 : 39.508235 : -87.46511 : West Terre Haute, IN +47895 : 39.714267 : -87.524376 : Helt, IN +47901 : 40.418585 : -86.88975 : Lafayette, IN +47902 : 40.388656 : -86.894908 : Lafayette, IN +47903 : 40.304402 : -86.824468 : Lafayette, IN +47904 : 40.428735 : -86.8768 : Lafayette, IN +47905 : 40.41836 : -86.81847 : Lafayette, IN +47906 : 40.461012 : -86.93664 : West Lafayette, IN +47907 : 40.424923 : -86.916215 : West Lafayette, IN +47909 : 40.35589 : -86.88972 : Lafayette, IN +47916 : 39.983709 : -87.05507 : Alamo, IN +47917 : 40.469643 : -87.50098 : Ambia, IN +47918 : 40.294316 : -87.21957 : Attica, IN +47920 : 40.543522 : -86.81628 : Battle Ground, IN +47921 : 40.506071 : -87.36849 : Boswell, IN +47922 : 40.8685 : -87.35899 : Brook, IN +47923 : 40.605 : -86.8894 : Brookston, IN +47924 : 40.487219 : -86.76381 : Buck Creek, IN +47925 : 40.882284 : -86.74363 : Buffalo, IN +47926 : 40.767098 : -86.59362 : Burnettsville, IN +47928 : 39.946144 : -87.46611 : Cayuga, IN +47929 : 40.671905 : -86.89189 : Chalmers, IN +47930 : 40.247657 : -86.72533 : Clarks Hill, IN +47932 : 40.133867 : -87.40081 : Covington, IN +47933 : 40.034554 : -86.89143 : Crawfordsville, IN +47934 : 40.040014 : -86.893614 : Crawfordsville, IN +47935 : 40.040014 : -86.893614 : Crawfordsville, IN +47936 : 40.040014 : -86.893614 : Crawfordsville, IN +47937 : 40.040014 : -86.893614 : Crawfordsville, IN +47938 : 40.040014 : -86.893614 : Crawfordsville, IN +47939 : 40.040014 : -86.893614 : Crawfordsville, IN +47940 : 40.118998 : -86.76265 : Darlington, IN +47941 : 40.375691 : -86.76703 : Dayton, IN +47942 : 40.692374 : -87.4346 : Earl Park, IN +47943 : 41.074738 : -87.26193 : Fair Oaks, IN +47944 : 40.617152 : -87.32659 : Fowler, IN +47946 : 40.986799 : -86.87659 : Francesville, IN +47948 : 40.773474 : -87.28615 : Goodland, IN +47949 : 40.072123 : -87.13698 : Hillsboro, IN +47950 : 40.794442 : -86.65353 : Idaville, IN +47951 : 40.77759 : -87.44607 : Kentland, IN +47952 : 39.968437 : -87.29994 : Kingman, IN +47954 : 39.903358 : -86.80388 : Ladoga, IN +47955 : 40.19705 : -86.88781 : Linden, IN +47957 : 41.083487 : -86.87605 : Medaryville, IN +47958 : 40.163921 : -87.14796 : Mellott, IN +47959 : 40.860496 : -86.88963 : Monon, IN +47960 : 40.777036 : -86.75982 : Monticello, IN +47962 : 40.473159 : -87.027571 : Montmorenci, IN +47963 : 40.960029 : -87.44715 : Morocco, IN +47964 : 40.952608 : -87.29837 : Mount Ayr, IN +47965 : 39.950948 : -86.92076 : New Market, IN +47966 : 39.885739 : -87.4078 : Newport, IN +47967 : 40.192176 : -86.98346 : New Richmond, IN +47968 : 39.961958 : -86.73576 : New Ross, IN +47969 : 40.205056 : -87.15089 : Newtown, IN +47970 : 40.480675 : -87.10907 : Otterbein, IN +47971 : 40.520834 : -87.2444 : Oxford, IN +47974 : 40.043359 : -87.4655 : Perrysville, IN +47975 : 40.448708 : -87.25568 : Pine Village, IN +47976 : 40.606301 : -87.310042 : Earl Park, IN +47977 : 40.763755 : -87.15306 : Remington, IN +47978 : 40.962747 : -87.13684 : Rensselaer, IN +47980 : 40.753293 : -86.88769 : Reynolds, IN +47981 : 40.246558 : -86.91652 : Romney, IN +47982 : 40.196628 : -87.5271 : State Line, IN +47983 : 40.285727 : -86.77511 : Stockwell, IN +47984 : 40.606301 : -87.310042 : Talbot, IN +47986 : 40.512643 : -87.20706 : Templeton, IN +47987 : 40.118561 : -87.23646 : Veedersburg, IN +47988 : 39.986538 : -87.147674 : Wallace, IN +47989 : 39.881586 : -87.04635 : Waveland, IN +47990 : 40.071792 : -87.06369 : Waynetown, IN +47991 : 40.277121 : -87.413 : West Lebanon, IN +47992 : 40.319429 : -87.04867 : Westpoint, IN +47993 : 40.300013 : -87.38396 : Williamsport, IN +47994 : 40.170546 : -87.06795 : Wingate, IN +47995 : 40.758188 : -87.03629 : Wolcott, IN +47996 : 40.388656 : -86.894908 : West Lafayette, IN +47997 : 40.667985 : -86.7225 : Yeoman, IN +48001 : 42.631359 : -82.554 : Algonac, MI +48002 : 42.938385 : -82.91582 : Allenton, MI +48003 : 42.931178 : -83.04585 : Almont, MI +48004 : 42.824095 : -82.66522 : Anchorville, MI +48005 : 42.842554 : -82.91471 : Armada, MI +48006 : 43.062285 : -82.69327 : Avoca, MI +48007 : 42.606088 : -83.297593 : Troy, MI +48009 : 42.544084 : -83.21527 : Birmingham, MI +48012 : 42.604425 : -83.292382 : Birmingham, MI +48014 : 43.01185 : -82.93255 : Capac, MI +48015 : 42.479137 : -83.02449 : Center Line, MI +48017 : 42.535534 : -83.15112 : Clawson, MI +48019 : 42.755627 : -83.612581 : Rose, MI +48021 : 42.466086 : -82.94641 : Eastpointe, MI +48022 : 43.013805 : -82.79404 : Emmett, MI +48023 : 42.693915 : -82.66859 : Fair Haven, MI +48025 : 42.524134 : -83.25454 : Franklin, MI +48026 : 42.536402 : -82.95044 : Fraser, MI +48027 : 42.952553 : -82.68571 : Goodells, MI +48028 : 42.563129 : -82.62325 : Harsens Island, MI +48030 : 42.459022 : -83.09819 : Hazel Park, MI +48032 : 43.125531 : -82.59617 : Jeddo, MI +48034 : 42.474234 : -83.29078 : Southfield, MI +48035 : 42.554134 : -82.90786 : Clinton Township, MI +48036 : 42.587117 : -82.89837 : Clinton Township, MI +48037 : 42.567543 : -83.149978 : Southfield, MI +48038 : 42.603172 : -82.94459 : Clinton Township, MI +48039 : 42.710445 : -82.50811 : Marine City, MI +48040 : 42.910198 : -82.47973 : Marysville, MI +48041 : 42.93281 : -82.80345 : Memphis, MI +48042 : 42.68347 : -82.92958 : Macomb, MI +48043 : 42.596784 : -82.88031 : Mount Clemens, MI +48044 : 42.650265 : -82.93416 : Macomb, MI +48045 : 42.582961 : -82.83063 : Harrison Township, MI +48046 : 42.672322 : -82.903065 : Mount Clemens, MI +48047 : 42.670932 : -82.77754 : New Baltimore, MI +48048 : 42.739751 : -82.79758 : New Haven, MI +48049 : 43.03154 : -82.59251 : North Street, MI +48050 : 42.786198 : -82.8092 : New Haven, MI +48051 : 42.682081 : -82.83068 : New Baltimore, MI +48054 : 42.769956 : -82.52595 : East China, MI +48059 : 43.088742 : -82.48614 : Fort Gratiot, MI +48060 : 42.978974 : -82.44402 : Port Huron, MI +48061 : 42.824095 : -82.66522 : Port Huron, MI +48062 : 42.829226 : -82.77538 : Richmond, MI +48063 : 42.85452 : -82.68244 : Columbus, MI +48064 : 42.773535 : -82.67684 : Casco, MI +48065 : 42.826805 : -83.02963 : Romeo, MI +48066 : 42.503285 : -82.93851 : Roseville, MI +48067 : 42.488735 : -83.13752 : Royal Oak, MI +48068 : 42.660091 : -83.3863 : Royal Oak, MI +48069 : 42.472235 : -83.14051 : Pleasant Ridge, MI +48070 : 42.482585 : -83.16812 : Huntington Woods, MI +48071 : 42.501385 : -83.10474 : Madison Heights, MI +48072 : 42.497035 : -83.18532 : Berkley, MI +48073 : 42.518635 : -83.16357 : Royal Oak, MI +48074 : 42.948521 : -82.57049 : Smiths Creek, MI +48075 : 42.465275 : -83.2264 : Southfield, MI +48076 : 42.499335 : -83.22829 : Southfield, MI +48079 : 42.833034 : -82.50425 : Saint Clair, MI +48080 : 42.462036 : -82.90232 : Saint Clair Shores, MI +48081 : 42.497736 : -82.89979 : Saint Clair Shores, MI +48082 : 42.526965 : -82.88809 : Saint Clair Shores, MI +48083 : 42.556943 : -83.11506 : Troy, MI +48084 : 42.563505 : -83.18405 : Troy, MI +48085 : 42.597323 : -83.116567 : Troy, MI +48086 : 42.660091 : -83.3863 : Southfield, MI +48088 : 42.516851 : -82.982757 : Warren, MI +48089 : 42.467086 : -82.99866 : Warren, MI +48090 : 42.672322 : -82.903065 : Warren, MI +48091 : 42.465886 : -83.056 : Warren, MI +48092 : 42.511293 : -83.0597 : Warren, MI +48093 : 42.514885 : -82.99768 : Warren, MI +48094 : 42.727731 : -83.03847 : Washington, MI +48095 : 42.779239 : -83.02605 : Washington, MI +48096 : 42.753378 : -82.91658 : Ray, MI +48097 : 43.131709 : -82.81411 : Yale, MI +48098 : 42.599133 : -83.15235 : Troy, MI +48099 : 42.587643 : -83.173666 : Troy, MI +48101 : 42.254788 : -83.21027 : Allen Park, MI +48103 : 42.280887 : -83.79147 : Ann Arbor, MI +48104 : 42.266805 : -83.72297 : Ann Arbor, MI +48105 : 42.307288 : -83.70443 : Ann Arbor, MI +48106 : 42.253502 : -83.836571 : Ann Arbor, MI +48107 : 42.253502 : -83.836571 : Ann Arbor, MI +48108 : 42.232807 : -83.72671 : Ann Arbor, MI +48109 : 42.291637 : -83.71831 : Ann Arbor, MI +48110 : 42.008164 : -83.664277 : Azalia, MI +48111 : 42.194865 : -83.49083 : Belleville, MI +48112 : 42.239933 : -83.150823 : Belleville, MI +48113 : 42.253502 : -83.836571 : Ann Arbor, MI +48114 : 42.566097 : -83.75725 : Brighton, MI +48115 : 42.160216 : -83.911693 : Bridgewater, MI +48116 : 42.509476 : -83.77718 : Brighton, MI +48117 : 42.05589 : -83.40605 : Carleton, MI +48118 : 42.316922 : -84.03445 : Chelsea, MI +48120 : 42.306288 : -83.15863 : Dearborn, MI +48121 : 42.239933 : -83.150823 : Dearborn, MI +48122 : 42.281638 : -83.18188 : Melvindale, MI +48123 : 42.239933 : -83.150823 : Dearborn, MI +48124 : 42.294987 : -83.25049 : Dearborn, MI +48125 : 42.277388 : -83.25987 : Dearborn Heights, MI +48126 : 42.333787 : -83.18179 : Dearborn, MI +48127 : 42.335687 : -83.28332 : Dearborn Heights, MI +48128 : 42.320237 : -83.26872 : Dearborn, MI +48130 : 42.344837 : -83.89907 : Dexter, MI +48131 : 41.965806 : -83.67133 : Dundee, MI +48133 : 41.777302 : -83.49818 : Erie, MI +48134 : 42.107026 : -83.28711 : Flat Rock, MI +48135 : 42.324338 : -83.3382 : Garden City, MI +48136 : 42.239933 : -83.150823 : Garden City, MI +48137 : 42.445724 : -84.06078 : Gregory, MI +48138 : 42.130091 : -83.16017 : Grosse Ile, MI +48139 : 42.449117 : -83.80332 : Hamburg, MI +48140 : 41.876895 : -83.58184 : Ida, MI +48141 : 42.292582 : -83.31414 : Inkster, MI +48143 : 42.454366 : -83.83372 : Lakeland, MI +48144 : 41.754298 : -83.63047 : Lambertville, MI +48145 : 41.846349 : -83.44652 : La Salle, MI +48146 : 42.243488 : -83.18097 : Lincoln Park, MI +48150 : 42.365936 : -83.36513 : Livonia, MI +48151 : 42.239933 : -83.150823 : Livonia, MI +48152 : 42.427835 : -83.36299 : Livonia, MI +48153 : 42.239933 : -83.150823 : Livonia, MI +48154 : 42.396194 : -83.37161 : Livonia, MI +48157 : 41.811196 : -83.44141 : Luna Pier, MI +48158 : 42.14784 : -84.03123 : Manchester, MI +48159 : 42.01968 : -83.54756 : Maybee, MI +48160 : 42.081363 : -83.68414 : Milan, MI +48161 : 41.904793 : -83.41669 : Monroe, MI +48162 : 41.940898 : -83.38515 : Monroe, MI +48164 : 42.128069 : -83.38785 : New Boston, MI +48165 : 42.501401 : -83.62916 : New Hudson, MI +48166 : 41.988228 : -83.29818 : Newport, MI +48167 : 42.425506 : -83.48945 : Northville, MI +48168 : 41.885451 : -83.418524 : South Monroe, MI +48169 : 42.455063 : -83.93425 : Pinckney, MI +48170 : 42.370837 : -83.4856 : Plymouth, MI +48173 : 42.073793 : -83.21575 : Rockwood, MI +48174 : 42.212372 : -83.37223 : Romulus, MI +48175 : 42.405636 : -83.578088 : Salem, MI +48176 : 42.16489 : -83.78387 : Saline, MI +48177 : 41.807647 : -83.579334 : Samaria, MI +48178 : 42.45644 : -83.66673 : South Lyon, MI +48179 : 42.049534 : -83.26128 : South Rockwood, MI +48180 : 42.231788 : -83.26481 : Taylor, MI +48182 : 41.773203 : -83.57793 : Temperance, MI +48183 : 42.137071 : -83.21446 : Trenton, MI +48184 : 42.276688 : -83.3786 : Wayne, MI +48185 : 42.335937 : -83.378 : Westland, MI +48186 : 42.293787 : -83.37464 : Westland, MI +48187 : 42.33087 : -83.47575 : Canton, MI +48188 : 42.289354 : -83.47401 : Canton, MI +48189 : 42.422746 : -83.78009 : Whitmore Lake, MI +48190 : 42.134658 : -83.59684 : Whittaker, MI +48191 : 42.121345 : -83.57071 : Willis, MI +48192 : 42.199989 : -83.17402 : Wyandotte, MI +48195 : 42.205289 : -83.19812 : Southgate, MI +48197 : 42.223482 : -83.63316 : Ypsilanti, MI +48198 : 42.247039 : -83.58215 : Ypsilanti, MI +48201 : 42.343787 : -83.05879 : Detroit, MI +48202 : 42.375237 : -83.07837 : Detroit, MI +48203 : 42.421936 : -83.09981 : Highland Park, MI +48204 : 42.365337 : -83.14254 : Detroit, MI +48205 : 42.433703 : -82.98068 : Detroit, MI +48206 : 42.375787 : -83.10849 : Detroit, MI +48207 : 42.352837 : -83.02449 : Detroit, MI +48208 : 42.348937 : -83.08994 : Detroit, MI +48209 : 42.307088 : -83.11467 : Detroit, MI +48210 : 42.338137 : -83.12785 : Detroit, MI +48211 : 42.379019 : -83.04483 : Detroit, MI +48212 : 42.410037 : -83.05826 : Hamtramck, MI +48213 : 42.395904 : -82.99632 : Detroit, MI +48214 : 42.368137 : -82.99314 : Detroit, MI +48215 : 42.378287 : -82.95243 : Detroit, MI +48216 : 42.328338 : -83.07805 : Detroit, MI +48217 : 42.277738 : -83.1552 : Detroit, MI +48218 : 42.269288 : -83.13676 : River Rouge, MI +48219 : 42.425236 : -83.24902 : Detroit, MI +48220 : 42.460986 : -83.13398 : Ferndale, MI +48221 : 42.426786 : -83.14969 : Detroit, MI +48222 : 42.239933 : -83.150823 : Detroit, MI +48223 : 42.394586 : -83.24422 : Detroit, MI +48224 : 42.410487 : -82.94348 : Detroit, MI +48225 : 42.438186 : -82.9283 : Harper Woods, MI +48226 : 42.331821 : -83.04888 : Detroit, MI +48227 : 42.388786 : -83.1918 : Detroit, MI +48228 : 42.355437 : -83.21722 : Detroit, MI +48229 : 42.250505 : -83.14829 : Ecorse, MI +48230 : 42.386087 : -82.92426 : Grosse Pointe, MI +48231 : 42.239933 : -83.150823 : Detroit, MI +48232 : 42.239933 : -83.150823 : Detroit, MI +48233 : 42.239933 : -83.150823 : Detroit, MI +48234 : 42.432686 : -83.04422 : Detroit, MI +48235 : 42.427636 : -83.19547 : Detroit, MI +48236 : 42.425836 : -82.90003 : Grosse Pointe, MI +48237 : 42.467235 : -83.17952 : Oak Park, MI +48238 : 42.396736 : -83.14152 : Detroit, MI +48239 : 42.379436 : -83.29105 : Redford, MI +48240 : 42.426285 : -83.30197 : Redford, MI +48242 : 42.20649 : -83.35297 : Detroit, MI +48243 : 42.239933 : -83.150823 : Detroit, MI +48244 : 42.239933 : -83.150823 : Detroit, MI +48246 : 42.712944 : -83.348152 : Independence, MI +48254 : 42.239933 : -83.150823 : Detroit, MI +48255 : 42.239933 : -83.150823 : Detroit, MI +48258 : 42.239933 : -83.150823 : Detroit, MI +48260 : 42.239933 : -83.150823 : Detroit, MI +48264 : 42.239933 : -83.150823 : Detroit, MI +48265 : 42.239933 : -83.150823 : Detroit, MI +48266 : 42.239933 : -83.150823 : Detroit, MI +48267 : 42.239933 : -83.150823 : Detroit, MI +48268 : 42.239933 : -83.150823 : Detroit, MI +48269 : 42.239933 : -83.150823 : Detroit, MI +48272 : 42.239933 : -83.150823 : Detroit, MI +48274 : 42.239933 : -83.150823 : Detroit, MI +48275 : 42.239933 : -83.150823 : Detroit, MI +48277 : 42.239933 : -83.150823 : Detroit, MI +48278 : 42.239933 : -83.150823 : Detroit, MI +48279 : 42.239933 : -83.150823 : Detroit, MI +48288 : 42.239933 : -83.150823 : Detroit, MI +48295 : 42.239933 : -83.150823 : Detroit, MI +48297 : 42.239933 : -83.150823 : Detroit, MI +48299 : 42.239933 : -83.150823 : Detroit, MI +48301 : 42.546445 : -83.28083 : Bloomfield Hills, MI +48302 : 42.5863 : -83.29705 : Bloomfield Hills, MI +48303 : 42.660091 : -83.3863 : Bloomfield Hills, MI +48304 : 42.586677 : -83.22956 : Bloomfield Hills, MI +48305 : 42.569278 : -82.911243 : Clinton, MI +48306 : 42.708151 : -83.16584 : Rochester, MI +48307 : 42.662293 : -83.12781 : Rochester, MI +48308 : 42.638533 : -83.131426 : Rochester, MI +48309 : 42.662732 : -83.18111 : Rochester, MI +48310 : 42.563644 : -83.07158 : Sterling Heights, MI +48311 : 42.672322 : -82.903065 : Sterling Heights, MI +48312 : 42.558151 : -83.00446 : Sterling Heights, MI +48313 : 42.598734 : -82.99938 : Sterling Heights, MI +48314 : 42.609789 : -83.04844 : Sterling Heights, MI +48315 : 42.662902 : -82.99392 : Utica, MI +48316 : 42.689632 : -83.06154 : Utica, MI +48317 : 42.639777 : -83.04255 : Utica, MI +48318 : 42.672322 : -82.903065 : Utica, MI +48320 : 42.611783 : -83.33757 : Keego Harbor, MI +48321 : 42.660091 : -83.3863 : Auburn Hills, MI +48322 : 42.541268 : -83.37551 : West Bloomfield, MI +48323 : 42.572442 : -83.37159 : West Bloomfield, MI +48324 : 42.595233 : -83.39974 : West Bloomfield, MI +48325 : 42.660091 : -83.3863 : West Bloomfield, MI +48326 : 42.661129 : -83.24571 : Auburn Hills, MI +48327 : 42.642764 : -83.40273 : Waterford, MI +48328 : 42.642302 : -83.35133 : Waterford, MI +48329 : 42.68828 : -83.38967 : Waterford, MI +48330 : 42.675435 : -83.363697 : Drayton Plains, MI +48331 : 42.508809 : -83.40875 : Farmington, MI +48332 : 42.660091 : -83.3863 : Farmington, MI +48333 : 42.660091 : -83.3863 : Farmington, MI +48334 : 42.5065 : -83.35363 : Farmington, MI +48335 : 42.465142 : -83.39853 : Farmington, MI +48336 : 42.458502 : -83.3464 : Farmington, MI +48340 : 42.668532 : -83.29585 : Pontiac, MI +48341 : 42.626947 : -83.30243 : Pontiac, MI +48342 : 42.644581 : -83.28211 : Pontiac, MI +48343 : 42.660091 : -83.3863 : Pontiac, MI +48346 : 42.720966 : -83.4044 : Clarkston, MI +48347 : 42.660091 : -83.3863 : Clarkston, MI +48348 : 42.768373 : -83.37805 : Clarkston, MI +48350 : 42.747677 : -83.52283 : Davisburg, MI +48353 : 42.644709 : -83.71792 : Hartland, MI +48356 : 42.66415 : -83.58982 : Highland, MI +48357 : 42.656281 : -83.63297 : Highland, MI +48359 : 42.722932 : -83.28537 : Lake Orion, MI +48360 : 42.74628 : -83.2612 : Lake Orion, MI +48361 : 42.660091 : -83.3863 : Lake Orion, MI +48362 : 42.783379 : -83.2471 : Lake Orion, MI +48363 : 42.765582 : -83.17281 : Oakland, MI +48366 : 42.803277 : -83.18412 : Lakeville, MI +48367 : 42.838438 : -83.14416 : Leonard, MI +48370 : 42.820082 : -83.20932 : Oxford, MI +48371 : 42.823968 : -83.27921 : Oxford, MI +48374 : 42.467945 : -83.51766 : Novi, MI +48375 : 42.462734 : -83.45865 : Novi, MI +48376 : 42.470984 : -83.474785 : Novi, MI +48377 : 42.511766 : -83.47314 : Novi, MI +48380 : 42.586597 : -83.66826 : Milford, MI +48381 : 42.571402 : -83.59318 : Milford, MI +48382 : 42.593035 : -83.48997 : Commerce Township, MI +48383 : 42.657361 : -83.54529 : White Lake, MI +48386 : 42.642431 : -83.47193 : White Lake, MI +48387 : 42.7253 : -83.311605 : Union Lake, MI +48390 : 42.549483 : -83.47969 : Walled Lake, MI +48391 : 42.660091 : -83.3863 : Walled Lake, MI +48393 : 42.532251 : -83.53378 : Wixom, MI +48396 : 42.523233 : -83.537887 : Wixom, MI +48397 : 42.491736 : -83.040222 : Warren, MI +48398 : 42.660091 : -83.3863 : Clawson, MI +48401 : 43.357999 : -82.65433 : Applegate, MI +48410 : 43.558856 : -82.945483 : Argyle, MI +48411 : 42.940019 : -83.536923 : Atlas, MI +48412 : 43.053648 : -83.16651 : Attica, MI +48413 : 43.803691 : -83.00181 : Bad Axe, MI +48414 : 42.869478 : -84.0761 : Bancroft, MI +48415 : 43.268788 : -83.79486 : Birch Run, MI +48416 : 43.214645 : -82.98356 : Brown City, MI +48417 : 43.262162 : -83.93995 : Burt, MI +48418 : 42.816358 : -83.95884 : Byron, MI +48419 : 43.420791 : -82.6415 : Carsonville, MI +48420 : 43.176375 : -83.726 : Clio, MI +48421 : 43.154173 : -83.3933 : Columbiaville, MI +48422 : 43.263998 : -82.64573 : Croswell, MI +48423 : 43.029526 : -83.5218 : Davison, MI +48426 : 43.50461 : -83.06289 : Decker, MI +48427 : 43.519997 : -82.71234 : Deckerville, MI +48428 : 42.936145 : -83.13471 : Dryden, MI +48429 : 42.918766 : -83.99148 : Durand, MI +48430 : 42.78459 : -83.74074 : Fenton, MI +48432 : 43.89867 : -83.01232 : Filion, MI +48433 : 43.072177 : -83.84883 : Flushing, MI +48434 : 43.66139 : -82.60984 : Forestville, MI +48435 : 43.239123 : -83.36195 : Fostoria, MI +48436 : 42.870299 : -83.89144 : Gaines, MI +48437 : 43.111009 : -83.62016 : Genesee, MI +48438 : 42.911611 : -83.48421 : Goodrich, MI +48439 : 42.925677 : -83.63585 : Grand Blanc, MI +48440 : 42.952899 : -83.40536 : Hadley, MI +48441 : 43.812371 : -82.69274 : Harbor Beach, MI +48442 : 42.800191 : -83.5968 : Holly, MI +48444 : 43.038967 : -83.06067 : Imlay City, MI +48445 : 43.952534 : -83.02017 : Kinde, MI +48446 : 43.048777 : -83.33073 : Lapeer, MI +48448 : 42.955783 : -84.300929 : Sciota, MI +48449 : 42.988946 : -83.94468 : Lennon, MI +48450 : 43.243891 : -82.52701 : Lexington, MI +48451 : 42.800911 : -83.81366 : Linden, MI +48453 : 43.336126 : -83.03213 : Marlette, MI +48454 : 43.198014 : -82.82558 : Melvin, MI +48455 : 42.938891 : -83.29409 : Metamora, MI +48456 : 43.660079 : -82.74685 : Minden City, MI +48457 : 43.182851 : -83.89507 : Montrose, MI +48458 : 43.116959 : -83.69025 : Mount Morris, MI +48460 : 43.131102 : -83.98443 : New Lothrop, MI +48461 : 43.210744 : -83.20549 : North Branch, MI +48462 : 42.84391 : -83.43109 : Ortonville, MI +48463 : 43.167457 : -83.52542 : Otisville, MI +48464 : 43.219132 : -83.42227 : Otter Lake, MI +48465 : 43.618879 : -82.6874 : Palms, MI +48466 : 43.264205 : -82.81674 : Peck, MI +48467 : 44.023181 : -83.00241 : Port Austin, MI +48468 : 43.938529 : -82.77514 : Port Hope, MI +48469 : 43.452038 : -82.54948 : Port Sanilac, MI +48470 : 43.736207 : -82.75005 : Ruth, MI +48471 : 43.418054 : -82.83687 : Sandusky, MI +48472 : 43.512287 : -82.9635 : Snover, MI +48473 : 42.950128 : -83.82612 : Swartz Creek, MI +48475 : 43.673699 : -82.9257 : Ubly, MI +48476 : 42.939379 : -84.03166 : Vernon, MI +48501 : 42.965926 : -83.780835 : Flint, MI +48502 : 43.014077 : -83.69012 : Flint, MI +48503 : 43.011227 : -83.69291 : Flint, MI +48504 : 43.043627 : -83.73126 : Flint, MI +48505 : 43.062076 : -83.69728 : Flint, MI +48506 : 43.047826 : -83.64688 : Flint, MI +48507 : 42.973263 : -83.70142 : Flint, MI +48509 : 43.020176 : -83.60433 : Burton, MI +48519 : 42.984777 : -83.61155 : Burton, MI +48529 : 42.972477 : -83.67085 : Burton, MI +48531 : 43.002 : -83.692507 : Flint, MI +48532 : 43.005477 : -83.76098 : Flint, MI +48550 : 43.034927 : -83.688706 : Flint, MI +48551 : 42.978995 : -83.713124 : Flint, MI +48552 : 42.977895 : -83.713074 : Flint, MI +48553 : 42.973627 : -83.720306 : Flint, MI +48554 : 42.972244 : -83.79463 : Flint, MI +48555 : 43.011277 : -83.710756 : Flint, MI +48556 : 43.032677 : -83.646255 : Flint, MI +48557 : 43.080578 : -83.783675 : Flint, MI +48559 : 43.002 : -83.692507 : Flint, MI +48563 : 44.407339 : -84.695963 : Markey, MI +48567 : 42.993102 : -83.655654 : Flint, MI +48601 : 43.413975 : -83.91427 : Saginaw, MI +48602 : 43.423925 : -83.97142 : Saginaw, MI +48603 : 43.441975 : -84.01177 : Saginaw, MI +48604 : 43.473075 : -83.94479 : Saginaw, MI +48605 : 43.458776 : -84.051827 : Saginaw, MI +48606 : 43.348535 : -84.032612 : Saginaw, MI +48607 : 43.431375 : -83.93267 : Saginaw, MI +48608 : 43.348535 : -84.032612 : Saginaw, MI +48609 : 43.40153 : -84.09438 : Saginaw, MI +48610 : 44.142282 : -84.14497 : Alger, MI +48611 : 43.617796 : -84.07918 : Auburn, MI +48612 : 43.87787 : -84.42078 : Beaverton, MI +48613 : 43.93724 : -84.12889 : Bentley, MI +48614 : 43.25118 : -84.29816 : Brant, MI +48615 : 43.422568 : -84.47433 : Breckenridge, MI +48616 : 43.190239 : -84.11987 : Chesaning, MI +48617 : 43.828266 : -84.74219 : Clare, MI +48618 : 43.747084 : -84.55669 : Coleman, MI +48619 : 44.825431 : -84.04695 : Comins, MI +48620 : 43.807728 : -84.37785 : Edenville, MI +48621 : 44.718279 : -83.98795 : Fairview, MI +48622 : 43.840787 : -84.86734 : Farwell, MI +48623 : 43.518309 : -84.1337 : Freeland, MI +48624 : 44.041529 : -84.46503 : Gladwin, MI +48625 : 44.052759 : -84.83959 : Harrison, MI +48626 : 43.416335 : -84.22384 : Hemlock, MI +48627 : 44.462149 : -84.747 : Higgins Lake, MI +48628 : 43.807162 : -84.33789 : Hope, MI +48629 : 44.305812 : -84.75589 : Houghton Lake, MI +48630 : 44.327064 : -84.77405 : Houghton Lake Heights, MI +48631 : 43.67579 : -83.97973 : Kawkawlin, MI +48632 : 43.864435 : -85.00864 : Lake, MI +48633 : 43.959478 : -84.93861 : Lake George, MI +48634 : 43.748816 : -84.01217 : Linwood, MI +48635 : 44.399711 : -83.99444 : Lupton, MI +48636 : 44.616344 : -84.27784 : Luzerne, MI +48637 : 43.410627 : -84.33926 : Merrill, MI +48640 : 43.605457 : -84.27234 : Midland, MI +48641 : 43.538252 : -84.387753 : Midland, MI +48642 : 43.652404 : -84.21671 : Midland, MI +48647 : 44.654024 : -84.10388 : Mio, MI +48649 : 43.150386 : -84.1976 : Oakley, MI +48650 : 43.851276 : -83.97901 : Pinconning, MI +48651 : 44.258616 : -84.646 : Prudenville, MI +48652 : 43.862479 : -84.19641 : Rhodes, MI +48653 : 44.484145 : -84.66089 : Roscommon, MI +48654 : 44.468977 : -84.19608 : Rose City, MI +48655 : 43.297082 : -84.14652 : Saint Charles, MI +48656 : 44.360384 : -84.43815 : Saint Helen, MI +48657 : 43.69784 : -84.39169 : Sanford, MI +48658 : 43.985129 : -83.93628 : Standish, MI +48659 : 44.080925 : -84.02506 : Sterling, MI +48661 : 44.288158 : -84.21162 : West Branch, MI +48662 : 43.400958 : -84.41672 : Wheeler, MI +48663 : 43.467315 : -83.975475 : Saginaw, MI +48667 : 43.647297 : -84.387331 : Midland, MI +48670 : 43.637471 : -84.256758 : Midland, MI +48674 : 43.612884 : -84.197125 : Midland, MI +48686 : 43.647297 : -84.387331 : Midland, MI +48701 : 43.587817 : -83.53468 : Akron, MI +48703 : 44.06434 : -83.65821 : Au Gres, MI +48705 : 44.708179 : -83.63681 : Barton City, MI +48706 : 43.607523 : -83.9162 : Bay City, MI +48707 : 43.737798 : -83.933337 : Bay City, MI +48708 : 43.583323 : -83.87869 : Bay City, MI +48710 : 43.556574 : -83.994328 : University Center, MI +48720 : 43.831509 : -83.34887 : Bay Port, MI +48721 : 44.79652 : -83.32907 : Black River, MI +48722 : 43.346632 : -83.84636 : Bridgeport, MI +48723 : 43.490117 : -83.3881 : Caro, MI +48724 : 43.460075 : -83.92772 : Carrollton, MI +48725 : 43.944466 : -83.23974 : Caseville, MI +48726 : 43.604819 : -83.17889 : Cass City, MI +48727 : 43.314176 : -83.18115 : Clifford, MI +48728 : 44.746486 : -83.83882 : Curran, MI +48729 : 43.492259 : -83.17874 : Deford, MI +48730 : 44.335904 : -83.48516 : East Tawas, MI +48731 : 43.83014 : -83.16143 : Elkton, MI +48732 : 43.605861 : -83.81298 : Essexville, MI +48733 : 43.542822 : -83.61267 : Fairgrove, MI +48734 : 43.340413 : -83.74123 : Frankenmuth, MI +48735 : 43.664593 : -83.26005 : Gagetown, MI +48736 : 43.49442 : -83.624431 : Gilford, MI +48737 : 44.54684 : -83.70977 : Glennie, MI +48738 : 44.563997 : -83.32459 : Greenbush, MI +48739 : 44.379147 : -83.83539 : Hale, MI +48740 : 44.663477 : -83.3516 : Harrisville, MI +48741 : 43.410781 : -83.17248 : Kingston, MI +48742 : 44.725546 : -83.43887 : Lincoln, MI +48743 : 44.442563 : -83.87538 : Long Lake, MI +48744 : 43.34896 : -83.35883 : Mayville, MI +48745 : 44.580133 : -83.49441 : Mikado, MI +48746 : 43.274498 : -83.53822 : Millington, MI +48747 : 43.519522 : -83.76529 : Munger, MI +48748 : 44.328794 : -83.66579 : National City, MI +48749 : 44.046475 : -83.87572 : Omer, MI +48750 : 44.447318 : -83.41927 : Oscoda, MI +48754 : 43.736747 : -83.24746 : Owendale, MI +48755 : 43.85672 : -83.28557 : Pigeon, MI +48756 : 44.206123 : -83.99306 : Prescott, MI +48757 : 43.462775 : -83.68564 : Reese, MI +48758 : 43.407321 : -83.676156 : Richville, MI +48759 : 43.737971 : -83.43007 : Sebewaing, MI +48760 : 43.331961 : -83.25403 : Silverwood, MI +48761 : 44.54106 : -83.91915 : South Branch, MI +48762 : 44.821813 : -83.50181 : Spruce, MI +48763 : 44.250144 : -83.55805 : Tawas City, MI +48764 : 44.266549 : -83.519166 : Tawas City, MI +48765 : 44.147192 : -83.73723 : Turner, MI +48766 : 44.127342 : -83.84369 : Twining, MI +48767 : 43.645608 : -83.46527 : Unionville, MI +48768 : 43.370434 : -83.57917 : Vassar, MI +48769 : 43.327048 : -83.657355 : Tuscola, MI +48770 : 44.246004 : -83.81849 : Whittemore, MI +48787 : 43.334958 : -83.749418 : Frankenmuth, MI +48801 : 43.377113 : -84.66256 : Alma, MI +48802 : 43.389262 : -84.666661 : Alma, MI +48803 : 42.581148 : -83.09901 : Troy, MI +48804 : 43.640574 : -84.847417 : Mount Pleasant, MI +48805 : 42.599184 : -84.371973 : Okemos, MI +48806 : 43.179346 : -84.50765 : Ashley, MI +48807 : 43.145475 : -84.41579 : Bannister, MI +48808 : 42.821233 : -84.46099 : Bath, MI +48809 : 43.085313 : -85.24478 : Belding, MI +48811 : 43.184647 : -84.84871 : Carson City, MI +48812 : 43.413761 : -84.975271 : Cedar Lake, MI +48813 : 42.580076 : -84.8228 : Charlotte, MI +48815 : 42.841491 : -85.25046 : Clarksville, MI +48816 : 42.757633 : -83.938967 : Cohoctah, MI +48817 : 43.000193 : -84.0634 : Corunna, MI +48818 : 43.272279 : -84.90913 : Crystal, MI +48819 : 42.552218 : -84.27674 : Dansville, MI +48820 : 42.842438 : -84.58612 : Dewitt, MI +48821 : 42.645985 : -84.64772 : Dimondale, MI +48822 : 42.8288 : -84.76379 : Eagle, MI +48823 : 42.747922 : -84.47143 : East Lansing, MI +48824 : 42.725884 : -84.4792 : East Lansing, MI +48825 : 42.723784 : -84.464775 : East Lansing, MI +48826 : 42.599184 : -84.371973 : East Lansing, MI +48827 : 42.507093 : -84.6579 : Eaton Rapids, MI +48829 : 43.404412 : -85.03033 : Edmore, MI +48830 : 43.362879 : -84.83662 : Elm Hall, MI +48831 : 43.098253 : -84.37722 : Elsie, MI +48832 : 43.411924 : -84.77657 : Elwell, MI +48833 : 42.944209 : -84.600723 : Eureka, MI +48834 : 43.141649 : -85.04948 : Fenwick, MI +48835 : 43.011103 : -84.74589 : Fowler, MI +48836 : 42.666646 : -84.07542 : Fowlerville, MI +48837 : 42.749774 : -84.7503 : Grand Ledge, MI +48838 : 43.1791 : -85.26533 : Greenville, MI +48840 : 42.760217 : -84.39027 : Haslett, MI +48841 : 43.104499 : -84.23568 : Henderson, MI +48842 : 42.639235 : -84.52702 : Holt, MI +48843 : 42.612243 : -83.91835 : Howell, MI +48844 : 42.603479 : -83.911173 : Howell, MI +48845 : 43.096466 : -84.84627 : Hubbardston, MI +48846 : 42.981932 : -85.06679 : Ionia, MI +48847 : 43.269967 : -84.59181 : Ithaca, MI +48848 : 42.884921 : -84.3569 : Laingsburg, MI +48849 : 42.788151 : -85.13565 : Lake Odessa, MI +48850 : 43.447625 : -85.25628 : Lakeview, MI +48851 : 42.962965 : -84.94611 : Lyons, MI +48852 : 43.355304 : -85.04326 : Mcbrides, MI +48853 : 43.102399 : -84.69278 : Maple Rapids, MI +48854 : 42.582902 : -84.44738 : Mason, MI +48855 : 42.678059 : -83.915592 : Howell, MI +48856 : 43.197414 : -84.73336 : Middleton, MI +48857 : 42.845703 : -84.16581 : Morrice, MI +48858 : 43.60616 : -84.78306 : Mount Pleasant, MI +48859 : 43.564736 : -84.847297 : Mount Pleasant, MI +48860 : 43.026842 : -84.92633 : Muir, MI +48861 : 42.733673 : -84.92575 : Mulliken, MI +48862 : 43.356518 : -84.497138 : North Star, MI +48863 : 42.603479 : -83.911173 : Oak Grove, MI +48864 : 42.702128 : -84.41946 : Okemos, MI +48865 : 43.090038 : -85.11754 : Orleans, MI +48866 : 42.997636 : -84.37643 : Ovid, MI +48867 : 42.99605 : -84.17896 : Owosso, MI +48870 : 43.113587 : -85.007665 : Palo, MI +48871 : 43.160914 : -84.68397 : Perrinton, MI +48872 : 42.807435 : -84.22291 : Perry, MI +48873 : 42.987795 : -84.84263 : Pewamo, MI +48874 : 43.184467 : -84.6032 : Pompeii, MI +48875 : 42.864338 : -84.91289 : Portland, MI +48876 : 42.640719 : -84.73826 : Potterville, MI +48877 : 43.403224 : -84.84062 : Riverdale, MI +48878 : 43.713365 : -84.77731 : Rosebush, MI +48879 : 42.998998 : -84.57704 : Saint Johns, MI +48880 : 43.422397 : -84.60041 : Saint Louis, MI +48881 : 42.929829 : -85.20938 : Saranac, MI +48882 : 42.803973 : -84.295949 : Shaftsburg, MI +48883 : 43.534764 : -84.68228 : Shepherd, MI +48884 : 43.21107 : -85.04772 : Sheridan, MI +48885 : 43.247555 : -85.16587 : Sidney, MI +48886 : 43.426703 : -85.14998 : Six Lakes, MI +48887 : 42.944929 : -85.074665 : Smyrna, MI +48888 : 43.297366 : -85.10506 : Stanton, MI +48889 : 43.293977 : -84.79415 : Sumner, MI +48890 : 42.759217 : -84.98054 : Sunfield, MI +48891 : 43.402185 : -84.92216 : Vestaburg, MI +48892 : 42.643684 : -84.17011 : Webberville, MI +48893 : 43.662482 : -84.98244 : Weidman, MI +48894 : 42.928735 : -84.7996 : Westphalia, MI +48895 : 42.68669 : -84.27844 : Williamston, MI +48896 : 43.523617 : -84.90307 : Winn, MI +48897 : 42.705285 : -85.12449 : Woodland, MI +48901 : 42.599184 : -84.371973 : Lansing, MI +48906 : 42.764167 : -84.56153 : Lansing, MI +48907 : 42.596071 : -84.838206 : Lansing, MI +48908 : 42.596071 : -84.838206 : Lansing, MI +48909 : 42.599184 : -84.371973 : Lansing, MI +48910 : 42.704435 : -84.54915 : Lansing, MI +48911 : 42.677335 : -84.56913 : Lansing, MI +48912 : 42.734434 : -84.52497 : Lansing, MI +48913 : 42.599184 : -84.371973 : Lansing, MI +48915 : 42.737701 : -84.57106 : Lansing, MI +48916 : 42.599184 : -84.371973 : Lansing, MI +48917 : 42.735535 : -84.62698 : Lansing, MI +48918 : 42.599184 : -84.371973 : Lansing, MI +48919 : 42.728585 : -84.551728 : Lansing, MI +48921 : 42.723735 : -84.555629 : Lansing, MI +48922 : 42.732535 : -84.558679 : Lansing, MI +48924 : 42.599184 : -84.371973 : Lansing, MI +48929 : 42.732535 : -84.558679 : Lansing, MI +48930 : 42.732535 : -84.558679 : Lansing, MI +48933 : 42.731885 : -84.55492 : Lansing, MI +48937 : 42.748734 : -84.559029 : Lansing, MI +48950 : 42.599184 : -84.371973 : Lansing, MI +48956 : 42.732535 : -84.558679 : Lansing, MI +48980 : 42.599184 : -84.371973 : Lansing, MI +49001 : 42.278891 : -85.55107 : Kalamazoo, MI +49002 : 42.210792 : -85.55958 : Portage, MI +49003 : 42.245412 : -85.529858 : Kalamazoo, MI +49004 : 42.330089 : -85.56635 : Kalamazoo, MI +49005 : 42.323045 : -85.493232 : Kalamazoo, MI +49006 : 42.295005 : -85.62247 : Kalamazoo, MI +49007 : 42.29714 : -85.58573 : Kalamazoo, MI +49008 : 42.26549 : -85.61098 : Kalamazoo, MI +49009 : 42.272538 : -85.69255 : Kalamazoo, MI +49010 : 42.531244 : -85.87438 : Allegan, MI +49011 : 42.089314 : -85.23333 : Athens, MI +49012 : 42.347289 : -85.35242 : Augusta, MI +49013 : 42.308798 : -86.12201 : Bangor, MI +49014 : 42.311089 : -85.13845 : Battle Creek, MI +49015 : 42.30244 : -85.22294 : Battle Creek, MI +49016 : 42.34381 : -85.29136 : Battle Creek, MI +49017 : 42.35714 : -85.20257 : Battle Creek, MI +49018 : 42.246402 : -85.004511 : Battle Creek, MI +49019 : 42.245412 : -85.529858 : Kalamazoo, MI +49020 : 42.246402 : -85.004511 : Bedford, MI +49021 : 42.447038 : -85.04264 : Bellevue, MI +49022 : 42.10809 : -86.41801 : Benton Harbor, MI +49023 : 42.001551 : -86.715294 : Benton Harbor, MI +49024 : 42.216541 : -85.61773 : Portage, MI +49026 : 42.371729 : -85.9679 : Bloomingdale, MI +49027 : 42.345815 : -86.0795 : Breedsville, MI +49028 : 41.850631 : -85.18987 : Bronson, MI +49029 : 42.142445 : -85.09728 : Burlington, MI +49030 : 41.854639 : -85.32984 : Burr Oak, MI +49031 : 41.907837 : -85.98937 : Cassopolis, MI +49032 : 41.924331 : -85.51068 : Centreville, MI +49033 : 42.239592 : -85.09307 : Ceresco, MI +49034 : 42.239393 : -85.33499 : Climax, MI +49035 : 42.595121 : -85.308555 : Cloverdale, MI +49036 : 41.912776 : -85.0142 : Coldwater, MI +49038 : 42.209307 : -86.3337 : Coloma, MI +49039 : 42.224757 : -86.372276 : Hagar Shores, MI +49040 : 41.960856 : -85.33059 : Colon, MI +49041 : 42.245412 : -85.529858 : Comstock, MI +49042 : 41.847413 : -85.66411 : Constantine, MI +49043 : 42.296105 : -86.26647 : Covert, MI +49045 : 42.105719 : -85.99417 : Decatur, MI +49046 : 42.504149 : -85.39257 : Delton, MI +49047 : 42.004729 : -86.1208 : Dowagiac, MI +49048 : 42.292335 : -85.525359 : Kalamazoo, MI +49050 : 42.504137 : -85.24582 : Dowling, MI +49051 : 42.184303 : -85.24228 : East Leroy, MI +49052 : 42.111949 : -85.31673 : Fulton, MI +49053 : 42.289991 : -85.41657 : Galesburg, MI +49055 : 42.37346 : -85.85725 : Gobles, MI +49056 : 42.395965 : -86.0545 : Grand Junction, MI +49057 : 42.19923 : -86.16943 : Hartford, MI +49058 : 42.64275 : -85.29296 : Hastings, MI +49060 : 42.424387 : -85.4055 : Hickory Corners, MI +49061 : 41.878312 : -85.81527 : Jones, MI +49062 : 42.36175 : -85.814072 : Kendall, MI +49063 : 42.393586 : -86.209904 : Lacota, MI +49064 : 42.215357 : -86.04822 : Lawrence, MI +49065 : 42.144087 : -85.84205 : Lawton, MI +49066 : 42.037422 : -85.35683 : Leonidas, MI +49067 : 42.026876 : -85.8033 : Marcellus, MI +49068 : 42.277837 : -84.94869 : Marshall, MI +49069 : 42.204494 : -84.949919 : Marshall, MI +49070 : 42.540492 : -85.63686 : Martin, MI +49071 : 42.234417 : -85.7807 : Mattawan, MI +49072 : 42.005815 : -85.46428 : Mendon, MI +49073 : 42.588988 : -85.124 : Nashville, MI +49074 : 42.245412 : -85.529858 : Nazareth, MI +49075 : 41.916374 : -85.45029 : Nottawa, MI +49076 : 42.439324 : -84.91041 : Olivet, MI +49077 : 42.245412 : -85.529858 : Oshtemo, MI +49078 : 42.459989 : -85.71069 : Otsego, MI +49079 : 42.22514 : -85.90002 : Paw Paw, MI +49080 : 42.462935 : -85.61256 : Plainwell, MI +49081 : 42.171777 : -85.617824 : Portage, MI +49082 : 41.943472 : -84.87559 : Quincy, MI +49083 : 42.379689 : -85.45022 : Richland, MI +49084 : 42.178035 : -86.38557 : Riverside, MI +49085 : 42.074435 : -86.47935 : Saint Joseph, MI +49087 : 42.117421 : -85.67594 : Schoolcraft, MI +49088 : 42.187577 : -85.42621 : Scotts, MI +49089 : 42.010485 : -85.23198 : Sherwood, MI +49090 : 42.403593 : -86.24912 : South Haven, MI +49091 : 41.822244 : -85.43234 : Sturgis, MI +49092 : 42.09724 : -84.97543 : Tekonsha, MI +49093 : 41.958306 : -85.63829 : Three Rivers, MI +49094 : 42.06137 : -85.11971 : Union City, MI +49095 : 41.916613 : -85.89022 : Vandalia, MI +49096 : 42.63222 : -85.01188 : Vermontville, MI +49097 : 42.117028 : -85.5073 : Vicksburg, MI +49098 : 42.186679 : -86.25718 : Watervliet, MI +49099 : 41.792628 : -85.67233 : White Pigeon, MI +49101 : 41.944869 : -86.48827 : Baroda, MI +49102 : 41.949244 : -86.26909 : Berrien Center, MI +49103 : 41.944691 : -86.34979 : Berrien Springs, MI +49104 : 42.001551 : -86.715294 : Berrien Springs, MI +49106 : 41.94263 : -86.55586 : Bridgman, MI +49107 : 41.830012 : -86.38349 : Buchanan, MI +49111 : 42.022092 : -86.29071 : Eau Claire, MI +49112 : 41.797792 : -86.02616 : Edwardsburg, MI +49113 : 41.801264 : -86.50367 : Galien, MI +49115 : 41.876483 : -86.63715 : Harbert, MI +49116 : 41.848782 : -86.67044 : Lakeside, MI +49117 : 41.784691 : -86.75519 : New Buffalo, MI +49119 : 41.875968 : -86.54919 : New Troy, MI +49120 : 41.828055 : -86.23981 : Niles, MI +49121 : 42.001551 : -86.715294 : Niles, MI +49125 : 41.890521 : -86.59362 : Sawyer, MI +49126 : 42.036334 : -86.37416 : Sodus, MI +49127 : 42.015092 : -86.51351 : Stevensville, MI +49128 : 41.820452 : -86.61984 : Three Oaks, MI +49129 : 41.827718 : -86.69237 : Union Pier, MI +49130 : 41.787096 : -85.83605 : Union, MI +49137 : 42.424092 : -84.102395 : Lyndon, MI +49157 : 44.21551 : -85.298079 : Richland, MI +49169 : 44.30476 : -86.015026 : Dickson, MI +49201 : 42.252268 : -84.38842 : Jackson, MI +49202 : 42.262135 : -84.41052 : Jackson, MI +49203 : 42.227536 : -84.40913 : Jackson, MI +49204 : 42.252847 : -84.213755 : Jackson, MI +49220 : 41.992765 : -84.3329 : Addison, MI +49221 : 41.900927 : -84.04585 : Adrian, MI +49224 : 42.261257 : -84.75151 : Albion, MI +49226 : 42.379469 : -85.976841 : Bloomingdale, MI +49227 : 41.956743 : -84.76598 : Allen, MI +49228 : 41.821595 : -83.87435 : Blissfield, MI +49229 : 41.991654 : -83.82631 : Britton, MI +49230 : 42.089891 : -84.22768 : Brooklyn, MI +49232 : 41.731009 : -84.65993 : Camden, MI +49233 : 42.071196 : -84.3494 : Cement City, MI +49234 : 42.121774 : -84.36382 : Clarklake, MI +49235 : 41.853441 : -84.20769 : Clayton, MI +49236 : 42.067837 : -83.95779 : Clinton, MI +49237 : 42.177223 : -84.651 : Concord, MI +49238 : 41.910884 : -83.78699 : Deerfield, MI +49239 : 41.782499 : -84.604662 : Frontier, MI +49240 : 42.284771 : -84.18971 : Grass Lake, MI +49241 : 42.107907 : -84.60334 : Hanover, MI +49242 : 41.89958 : -84.62624 : Hillsdale, MI +49245 : 42.147222 : -84.80789 : Homer, MI +49246 : 42.118019 : -84.49338 : Horton, MI +49247 : 41.857385 : -84.34907 : Hudson, MI +49248 : 41.766891 : -84.01395 : Jasper, MI +49249 : 42.048979 : -84.4396 : Jerome, MI +49250 : 42.018585 : -84.64548 : Jonesville, MI +49251 : 42.464769 : -84.41116 : Leslie, MI +49252 : 42.034427 : -84.77046 : Litchfield, MI +49253 : 41.974999 : -84.27972 : Manitou Beach, MI +49254 : 42.230336 : -84.32597 : Michigan Center, MI +49255 : 41.776287 : -84.8376 : Montgomery, MI +49256 : 41.746349 : -84.21557 : Morenci, MI +49257 : 42.054795 : -84.503905 : Moscow, MI +49258 : 41.884795 : -84.593491 : Mosherville, MI +49259 : 42.371819 : -84.25886 : Munith, MI +49261 : 42.164338 : -84.24575 : Napoleon, MI +49262 : 41.963683 : -84.46824 : North Adams, MI +49263 : 42.158739 : -84.18274 : Norvell, MI +49264 : 42.443387 : -84.56022 : Onondaga, MI +49265 : 42.020199 : -84.16796 : Onsted, MI +49266 : 41.844894 : -84.55244 : Osseo, MI +49267 : 41.757599 : -83.70951 : Ottawa Lake, MI +49268 : 41.869086 : -83.93858 : Palmyra, MI +49269 : 42.285987 : -84.59305 : Parma, MI +49270 : 41.886364 : -83.69556 : Petersburg, MI +49271 : 41.832213 : -84.45404 : Pittsford, MI +49272 : 42.398355 : -84.34471 : Pleasant Lake, MI +49274 : 41.843254 : -84.75263 : Reading, MI +49275 : 41.988026 : -83.865674 : Ridgeway, MI +49276 : 41.798043 : -83.79433 : Riga, MI +49277 : 42.395023 : -84.46144 : Rives Junction, MI +49278 : 41.912292 : -84.32652 : Rollin, MI +49279 : 41.791959 : -84.10866 : Sand Creek, MI +49280 : 41.79583 : -84.186608 : Seneca, MI +49281 : 42.050744 : -84.37762 : Somerset, MI +49282 : 42.050628 : -84.39902 : Somerset Center, MI +49283 : 42.203838 : -84.55243 : Spring Arbor, MI +49284 : 42.38806 : -84.70868 : Springport, MI +49285 : 42.458785 : -84.19374 : Stockbridge, MI +49286 : 42.012268 : -83.93878 : Tecumseh, MI +49287 : 42.035005 : -84.09154 : Tipton, MI +49288 : 41.733173 : -84.44772 : Waldron, MI +49289 : 41.770793 : -84.09996 : Weston, MI +49301 : 42.97252 : -85.47798 : Ada, MI +49302 : 42.834137 : -85.41889 : Alto, MI +49303 : 43.271422 : -85.84023 : Bailey, MI +49304 : 43.895264 : -85.88157 : Baldwin, MI +49305 : 43.747406 : -85.16304 : Barryton, MI +49306 : 43.078615 : -85.59318 : Belmont, MI +49307 : 43.697651 : -85.47815 : Big Rapids, MI +49309 : 43.747881 : -85.86094 : Bitely, MI +49310 : 43.523037 : -85.04876 : Blanchard, MI +49311 : 42.633006 : -85.643043 : Bradley, MI +49312 : 43.693086 : -85.81962 : Brohman, MI +49314 : 42.731193 : -85.840372 : Burnips, MI +49315 : 42.802932 : -85.72542 : Byron Center, MI +49316 : 42.794914 : -85.55091 : Caledonia, MI +49317 : 43.071201 : -85.480856 : Cannonsburg, MI +49318 : 43.22724 : -85.82054 : Casnovia, MI +49319 : 43.224155 : -85.54811 : Cedar Springs, MI +49320 : 43.755335 : -85.278303 : Chippewa Lake, MI +49321 : 43.059661 : -85.67384 : Comstock Park, MI +49322 : 43.368957 : -85.37282 : Coral, MI +49323 : 42.721597 : -85.77879 : Dorr, MI +49325 : 42.763599 : -85.31026 : Freeport, MI +49326 : 43.244538 : -85.34217 : Gowen, MI +49327 : 43.34022 : -85.82566 : Grant, MI +49328 : 42.634199 : -85.75809 : Hopkins, MI +49329 : 43.405689 : -85.47744 : Howard City, MI +49330 : 43.231933 : -85.73768 : Kent City, MI +49331 : 42.944838 : -85.34928 : Lowell, MI +49332 : 43.623053 : -85.25883 : Mecosta, MI +49333 : 42.689437 : -85.46466 : Middleville, MI +49335 : 42.739942 : -85.66543 : Moline, MI +49336 : 43.494361 : -85.43184 : Morley, MI +49337 : 43.430588 : -85.73515 : Newaygo, MI +49338 : 43.764906 : -85.57223 : Paris, MI +49339 : 43.335474 : -85.49536 : Pierson, MI +49340 : 43.617313 : -85.09604 : Remus, MI +49341 : 43.117214 : -85.5189 : Rockford, MI +49342 : 43.696188 : -85.30996 : Rodney, MI +49343 : 43.291089 : -85.50812 : Sand Lake, MI +49344 : 42.588087 : -85.5824 : Shelbyville, MI +49345 : 43.161106 : -85.69952 : Sparta, MI +49346 : 43.587286 : -85.37833 : Stanwood, MI +49347 : 43.3157 : -85.35285 : Trufant, MI +49348 : 42.681969 : -85.62761 : Wayland, MI +49349 : 43.57219 : -85.76662 : White Cloud, MI +49351 : 43.031413 : -85.550267 : Rockford, MI +49355 : 43.031413 : -85.550267 : Ada, MI +49356 : 43.031413 : -85.550267 : Ada, MI +49357 : 43.031413 : -85.550267 : Ada, MI +49368 : 44.321979 : -85.713857 : Slagle, MI +49394 : 43.60034 : -85.82081 : Lincoln, MI +49401 : 42.973667 : -85.9318 : Allendale, MI +49402 : 43.930995 : -86.05421 : Branch, MI +49403 : 43.125652 : -85.84983 : Conklin, MI +49404 : 43.06507 : -85.94516 : Coopersville, MI +49405 : 43.907681 : -86.19014 : Custer, MI +49406 : 42.643315 : -86.20404 : Douglas, MI +49408 : 42.575519 : -86.12461 : Fennville, MI +49409 : 43.080865 : -86.215413 : Ferrysburg, MI +49410 : 44.016249 : -86.14028 : Fountain, MI +49411 : 44.100701 : -86.2662 : Free Soil, MI +49412 : 43.464943 : -85.95005 : Fremont, MI +49413 : 43.554311 : -85.800884 : Fremont, MI +49415 : 43.135994 : -86.13348 : Fruitport, MI +49416 : 42.630533 : -86.072032 : Glenn, MI +49417 : 43.04117 : -86.19013 : Grand Haven, MI +49418 : 42.891709 : -85.76466 : Grandville, MI +49419 : 42.679762 : -85.98996 : Hamilton, MI +49420 : 43.708002 : -86.30604 : Hart, MI +49421 : 43.595939 : -86.0865 : Hesperia, MI +49422 : 42.985596 : -86.444751 : Holland, MI +49423 : 42.765918 : -86.10544 : Holland, MI +49424 : 42.823232 : -86.12726 : Holland, MI +49425 : 43.443787 : -86.10895 : Holton, MI +49426 : 42.873302 : -85.87861 : Hudsonville, MI +49427 : 42.826676 : -85.844378 : Jamestown, MI +49428 : 42.904275 : -85.82314 : Jenison, MI +49429 : 42.985596 : -86.444751 : Jenison, MI +49430 : 43.010337 : -85.89754 : Lamont, MI +49431 : 43.967306 : -86.43044 : Ludington, MI +49434 : 42.768619 : -86.20597 : Macatawa, MI +49435 : 43.032323 : -85.83015 : Marne, MI +49436 : 43.678258 : -86.46576 : Mears, MI +49437 : 43.436692 : -86.37093 : Montague, MI +49440 : 43.234014 : -86.25131 : Muskegon, MI +49441 : 43.199364 : -86.2668 : Muskegon, MI +49442 : 43.232615 : -86.1955 : Muskegon, MI +49443 : 43.295493 : -86.468853 : Muskegon, MI +49444 : 43.198048 : -86.22774 : Muskegon, MI +49445 : 43.278021 : -86.2682 : Muskegon, MI +49446 : 43.551783 : -86.40265 : New Era, MI +49448 : 43.091183 : -86.07346 : Nunica, MI +49449 : 43.791699 : -86.40276 : Pentwater, MI +49450 : 42.484769 : -86.07944 : Pullman, MI +49451 : 43.200998 : -85.96376 : Ravenna, MI +49452 : 43.520576 : -86.27335 : Rothbury, MI +49453 : 42.668174 : -86.18724 : Saugatuck, MI +49454 : 43.946244 : -86.28427 : Scottville, MI +49455 : 43.607628 : -86.37004 : Shelby, MI +49456 : 43.08767 : -86.19345 : Spring Lake, MI +49457 : 43.360182 : -86.18835 : Twin Lake, MI +49458 : 43.945299 : -86.11684 : Walhalla, MI +49459 : 43.733491 : -86.11462 : Walkerville, MI +49460 : 42.935483 : -86.14141 : West Olive, MI +49461 : 43.389775 : -86.34028 : Whitehall, MI +49463 : 43.295493 : -86.468853 : Wabaningo, MI +49464 : 42.829252 : -85.99621 : Zeeland, MI +49468 : 43.031413 : -85.550267 : Grandville, MI +49501 : 42.984226 : -85.629101 : Grand Rapids, MI +49502 : 43.031413 : -85.550267 : Grand Rapids, MI +49503 : 42.964176 : -85.65885 : Grand Rapids, MI +49504 : 42.977925 : -85.69733 : Grand Rapids, MI +49505 : 43.000076 : -85.64785 : Grand Rapids, MI +49506 : 42.945727 : -85.61899 : Grand Rapids, MI +49507 : 42.933077 : -85.65435 : Grand Rapids, MI +49508 : 42.876661 : -85.62856 : Grand Rapids, MI +49509 : 42.905877 : -85.70392 : Grand Rapids, MI +49510 : 43.031413 : -85.550267 : Grand Rapids, MI +49512 : 42.888821 : -85.5616 : Grand Rapids, MI +49514 : 43.031413 : -85.550267 : Grand Rapids, MI +49515 : 43.031413 : -85.550267 : Grand Rapids, MI +49516 : 43.031413 : -85.550267 : Grand Rapids, MI +49518 : 43.031413 : -85.550267 : Grand Rapids, MI +49523 : 43.031413 : -85.550267 : Grand Rapids, MI +49525 : 43.022199 : -85.61168 : Grand Rapids, MI +49530 : 43.031413 : -85.550267 : Grand Rapids, MI +49544 : 42.999561 : -85.75371 : Grand Rapids, MI +49546 : 42.927801 : -85.54582 : Grand Rapids, MI +49548 : 42.868228 : -85.66391 : Grand Rapids, MI +49550 : 43.031413 : -85.550267 : Grand Rapids, MI +49555 : 43.031413 : -85.550267 : Grand Rapids, MI +49560 : 43.031413 : -85.550267 : Grand Rapids, MI +49564 : 44.933988 : -85.950661 : Glen Arbor, MI +49565 : 44.115429 : -85.78338 : Newkirk, MI +49582 : 44.544624 : -85.832785 : Colfax, MI +49588 : 43.031413 : -85.550267 : Grand Rapids, MI +49590 : 44.851771 : -85.394202 : Whitewater, MI +49599 : 43.031413 : -85.550267 : Grand Rapids, MI +49601 : 44.243788 : -85.46006 : Cadillac, MI +49610 : 44.789382 : -85.488449 : Acme, MI +49611 : 44.976915 : -84.97282 : Alba, MI +49612 : 44.877741 : -85.24163 : Alden, MI +49613 : 44.494139 : -86.21509 : Arcadia, MI +49614 : 44.433903 : -86.12625 : Bear Lake, MI +49615 : 44.970267 : -85.21448 : Bellaire, MI +49616 : 44.592766 : -86.08323 : Benzonia, MI +49617 : 44.643593 : -86.04382 : Beulah, MI +49618 : 44.306885 : -85.60119 : Boon, MI +49619 : 44.306548 : -86.00977 : Brethren, MI +49620 : 44.516368 : -85.68623 : Buckley, MI +49621 : 44.872464 : -85.78716 : Cedar, MI +49622 : 45.074263 : -85.26929 : Central Lake, MI +49623 : 43.889404 : -85.67131 : Chase, MI +49625 : 44.44905 : -85.88908 : Copemish, MI +49626 : 44.245509 : -86.29477 : Eastlake, MI +49627 : 45.107683 : -85.36212 : Eastport, MI +49628 : 44.617592 : -86.22663 : Elberta, MI +49629 : 44.900873 : -85.40671 : Elk Rapids, MI +49630 : 44.845213 : -86.02479 : Empire, MI +49631 : 43.893894 : -85.26394 : Evart, MI +49632 : 44.233529 : -84.97463 : Falmouth, MI +49633 : 44.555245 : -85.22931 : Fife Lake, MI +49634 : 44.215959 : -86.29048 : Filer City, MI +49635 : 44.631 : -86.21484 : Frankfort, MI +49636 : 44.884904 : -85.98588 : Glen Arbor, MI +49637 : 44.647716 : -85.70649 : Grawn, MI +49638 : 44.30192 : -85.75597 : Harrietta, MI +49639 : 43.84716 : -85.40908 : Hersey, MI +49640 : 44.701761 : -86.05033 : Honor, MI +49642 : 43.880898 : -85.78999 : Idlewild, MI +49643 : 44.634131 : -85.8079 : Interlochen, MI +49644 : 44.105814 : -85.92846 : Irons, MI +49645 : 44.371587 : -86.0122 : Kaleva, MI +49646 : 44.743834 : -85.08986 : Kalkaska, MI +49647 : 44.515487 : -85.527652 : Paradise, MI +49648 : 45.000254 : -85.3651 : Kewadin, MI +49649 : 44.561602 : -85.52611 : Kingsley, MI +49650 : 44.725887 : -85.85676 : Lake Ann, MI +49651 : 44.382889 : -85.14305 : Lake City, MI +49652 : 43.867421 : -85.772312 : Yates, MI +49653 : 44.975051 : -85.72325 : Lake Leelanau, MI +49654 : 45.023384 : -85.75697 : Leland, MI +49655 : 44.023714 : -85.44877 : Leroy, MI +49656 : 44.05505 : -85.69759 : Luther, MI +49657 : 44.204505 : -85.1771 : McBain, MI +49659 : 44.905437 : -85.03401 : Mancelona, MI +49660 : 44.234322 : -86.27234 : Manistee, MI +49663 : 44.426913 : -85.37836 : Manton, MI +49664 : 44.888566 : -85.89914 : Maple City, MI +49665 : 44.095357 : -85.11843 : Marion, MI +49666 : 44.635328 : -85.5614 : Mayfield, MI +49667 : 44.335387 : -84.91649 : Merritt, MI +49668 : 44.405334 : -85.71981 : Mesick, MI +49670 : 45.107479 : -85.62347 : Northport, MI +49673 : 44.955872 : -85.490005 : Old Mission, MI +49674 : 45.066568 : -85.597374 : Omena, MI +49675 : 44.365757 : -86.21149 : Onekama, MI +49676 : 44.829056 : -85.27959 : Rapid City, MI +49677 : 43.906666 : -85.5155 : Reed City, MI +49679 : 43.878924 : -85.15802 : Sears, MI +49680 : 44.654872 : -85.26096 : South Boardman, MI +49682 : 44.993085 : -85.63635 : Suttons Bay, MI +49683 : 44.531456 : -85.9334 : Thompsonville, MI +49684 : 44.74136 : -85.67316 : Traverse City, MI +49685 : 44.816178 : -85.575147 : Traverse City, MI +49686 : 44.735559 : -85.54511 : Traverse City, MI +49688 : 44.117243 : -85.43612 : Tustin, MI +49689 : 44.209541 : -85.9109 : Wellston, MI +49690 : 44.774285 : -85.41696 : Williamsburg, MI +49695 : 44.918887 : -85.131606 : Custer, MI +49696 : 44.816178 : -85.575147 : Traverse City, MI +49701 : 45.773926 : -84.72714 : Mackinaw City, MI +49705 : 45.355074 : -84.47898 : Afton, MI +49706 : 45.431122 : -84.77654 : Alanson, MI +49707 : 45.08583 : -83.46411 : Alpena, MI +49709 : 45.016358 : -84.14518 : Atlanta, MI +49710 : 46.274091 : -84.17164 : Barbeau, MI +49711 : 45.523425 : -85.332038 : Bay Shore, MI +49712 : 45.215511 : -85.00995 : Boyne City, MI +49713 : 45.206973 : -84.86185 : Boyne Falls, MI +49715 : 46.411782 : -84.66502 : Brimley, MI +49716 : 45.515594 : -84.72353 : Brutus, MI +49717 : 45.430705 : -84.691207 : Burt Lake, MI +49718 : 45.714093 : -84.79969 : Carp Lake, MI +49719 : 45.998074 : -84.32615 : Cedarville, MI +49720 : 45.294169 : -85.24516 : Charlevoix, MI +49721 : 45.589694 : -84.4625 : Cheboygan, MI +49722 : 45.416693 : -84.86646 : Conway, MI +49723 : 45.625353 : -85.041872 : Cross Village, MI +49724 : 46.33614 : -84.43525 : Dafter, MI +49725 : 45.992931 : -83.98087 : De Tour Village, MI +49726 : 45.994672 : -83.75198 : Drummond Island, MI +49727 : 45.1379 : -85.12252 : East Jordan, MI +49728 : 46.355548 : -84.99249 : Eckerman, MI +49729 : 45.160264 : -85.26699 : Ellsworth, MI +49730 : 45.039542 : -84.86774 : Elmira, MI +49732 : 45.354266 : -84.301497 : Forest, MI +49733 : 44.809476 : -84.71727 : Frederic, MI +49734 : 45.028411 : -84.612207 : Gaylord, MI +49735 : 44.989608 : -84.67492 : Gaylord, MI +49736 : 46.064734 : -84.15477 : Goetzville, MI +49737 : 45.580183 : -85.113678 : Good Hart, MI +49738 : 44.683274 : -84.6253 : Grayling, MI +49739 : 44.682996 : -84.610441 : Grayling, MI +49740 : 45.502308 : -84.99025 : Harbor Springs, MI +49743 : 45.282088 : -83.93526 : Hawks, MI +49744 : 44.993111 : -83.65723 : Herron, MI +49745 : 46.01207 : -84.45048 : Hessel, MI +49746 : 45.068394 : -83.96071 : Hillman, MI +49747 : 44.827421 : -83.61368 : Hubbard Lake, MI +49748 : 46.340461 : -85.16591 : Hulbert, MI +49749 : 45.418813 : -84.59578 : Indian River, MI +49750 : 44.884763 : -84.35977 : Lewiston, MI +49751 : 44.963659 : -84.43175 : Johannesburg, MI +49752 : 46.250359 : -84.48228 : Kinross, MI +49753 : 44.99718 : -83.7918 : Lachine, MI +49755 : 45.631602 : -84.79103 : Levering, MI +49756 : 44.839929 : -84.30787 : Lewiston, MI +49757 : 45.856777 : -84.62643 : Mackinac Island, MI +49758 : 44.682965 : -84.287698 : Greenwood, MI +49759 : 45.433394 : -84.09811 : Millersburg, MI +49760 : 46.048831 : -84.94734 : Moran, MI +49761 : 45.563799 : -84.52405 : Mullett Lake, MI +49762 : 46.142357 : -85.29284 : Naubinway, MI +49764 : 45.423768 : -84.82611 : Oden, MI +49765 : 45.354463 : -84.23956 : Onaway, MI +49766 : 44.920907 : -83.45125 : Ossineke, MI +49768 : 46.659548 : -85.09913 : Paradise, MI +49769 : 45.567787 : -84.81464 : Pellston, MI +49770 : 45.360111 : -84.93774 : Petoskey, MI +49774 : 46.165132 : -84.33219 : Pickford, MI +49775 : 45.758378 : -84.46507 : Pointe Aux Pins, MI +49776 : 45.248956 : -83.69012 : Posen, MI +49777 : 45.311011 : -83.49878 : Presque Isle, MI +49778 : 46.410777 : -84.336519 : Brimley, MI +49779 : 45.413252 : -83.83626 : Rogers City, MI +49780 : 46.204512 : -84.73671 : Rudyard, MI +49781 : 45.923952 : -84.7255 : Saint Ignace, MI +49782 : 45.739114 : -85.55339 : Beaver Island, MI +49783 : 46.460895 : -84.32485 : Sault Sainte Marie, MI +49784 : 46.410777 : -84.336519 : Kincheloe, MI +49785 : 46.181451 : -84.405367 : Kincheloe, MI +49786 : 46.410777 : -84.336519 : Kincheloe, MI +49788 : 46.267303 : -84.45633 : Kincheloe, MI +49790 : 46.387377 : -84.966792 : Strongs, MI +49791 : 45.48586 : -84.59227 : Topinabee, MI +49792 : 45.354677 : -84.30074 : Tower, MI +49793 : 46.199197 : -85.05287 : Trout Lake, MI +49795 : 45.169729 : -84.60248 : Vanderbilt, MI +49796 : 45.269001 : -84.9475 : Walloon Lake, MI +49797 : 44.870234 : -84.659847 : Waters, MI +49799 : 45.268255 : -84.60141 : Wolverine, MI +49801 : 45.87178 : -87.99717 : Iron Mountain, MI +49802 : 45.800687 : -88.08323 : Kingsford, MI +49805 : 47.322703 : -88.40806 : Allouez, MI +49806 : 46.436663 : -86.88541 : Au Train, MI +49807 : 45.770006 : -87.34617 : Bark River, MI +49808 : 46.650313 : -87.86241 : Big Bay, MI +49812 : 45.59232 : -87.50316 : Carney, MI +49813 : 45.435313 : -87.37679 : Cedar River, MI +49814 : 46.501074 : -87.92354 : Champion, MI +49815 : 46.186913 : -88.04546 : Channing, MI +49816 : 46.323845 : -86.90766 : Chatham, MI +49817 : 45.921508 : -86.45869 : Cooks, MI +49818 : 45.936883 : -87.26197 : Cornell, MI +49819 : 46.604141 : -87.614805 : Arnold, MI +49820 : 46.191702 : -85.72148 : Curtis, MI +49821 : 45.521574 : -87.61977 : Daggett, MI +49822 : 46.470986 : -87.06843 : Deerton, MI +49825 : 46.364487 : -86.98096 : Eben Junction, MI +49826 : 46.364395 : -86.99621 : Rumely, MI +49827 : 46.156073 : -85.57069 : Engadine, MI +49829 : 45.751671 : -87.08951 : Escanaba, MI +49831 : 45.994849 : -87.81615 : Felch, MI +49833 : 46.291233 : -87.33355 : Little Lake, MI +49834 : 45.947706 : -87.77089 : Foster City, MI +49835 : 45.769159 : -86.55894 : Garden, MI +49836 : 46.180416 : -85.90176 : Germfask, MI +49837 : 45.847136 : -87.04529 : Gladstone, MI +49838 : 46.095949 : -85.71737 : Gould City, MI +49839 : 46.655567 : -85.95837 : Grand Marais, MI +49840 : 46.000666 : -85.9963 : Gulliver, MI +49841 : 46.299186 : -87.43312 : Gwinn, MI +49845 : 45.692178 : -87.351342 : Harris, MI +49847 : 45.709804 : -87.61054 : Hermansville, MI +49848 : 45.376503 : -87.63243 : Ingalls, MI +49849 : 46.458207 : -87.72709 : Ishpeming, MI +49852 : 45.781167 : -87.81759 : Loretto, MI +49853 : 46.301265 : -85.72321 : McMillan, MI +49854 : 46.042121 : -86.33946 : Manistique, MI +49855 : 46.554402 : -87.42223 : Marquette, MI +49858 : 45.1431 : -87.60897 : Menominee, MI +49861 : 46.54081 : -88.14742 : Michigamme, MI +49862 : 46.37503 : -86.70615 : Munising, MI +49863 : 45.610678 : -87.55411 : Nadeau, MI +49864 : 45.840744 : -86.66216 : Nahma, MI +49865 : 46.604141 : -87.614805 : National Mine, MI +49866 : 46.517192 : -87.58245 : Negaunee, MI +49868 : 46.434201 : -85.54758 : Newberry, MI +49869 : 46.07199 : -87.533429 : Wells, MI +49870 : 45.792399 : -87.90824 : Norway, MI +49871 : 46.440274 : -87.58988 : Palmer, MI +49872 : 45.987113 : -87.0742 : Perkins, MI +49873 : 45.889823 : -87.50716 : Perronville, MI +49874 : 45.693128 : -87.50966 : Powers, MI +49876 : 45.80007 : -87.99141 : Quinnesec, MI +49877 : 46.108829 : -87.78294 : Ralph, MI +49878 : 45.926298 : -86.90898 : Rapid River, MI +49879 : 46.345957 : -88.01972 : Republic, MI +49880 : 46.086125 : -87.20146 : Rock, MI +49881 : 46.085875 : -87.99607 : Sagola, MI +49883 : 46.460628 : -85.98878 : Seney, MI +49884 : 46.399545 : -86.43315 : Shingleton, MI +49885 : 46.356104 : -87.25211 : Skandia, MI +49886 : 45.695551 : -87.50457 : Spalding, MI +49887 : 45.417184 : -87.6281 : Stephenson, MI +49891 : 46.229173 : -87.01715 : Trenary, MI +49892 : 45.755894 : -87.78838 : Vulcan, MI +49893 : 45.314014 : -87.63114 : Wallace, MI +49894 : 45.778066 : -87.07647 : Wells, MI +49895 : 46.191294 : -86.64901 : Wetmore, MI +49896 : 45.685664 : -87.37748 : Wilson, MI +49901 : 47.297841 : -88.39491 : Ahmeek, MI +49902 : 46.045407 : -88.37681 : Alpha, MI +49903 : 46.234686 : -88.45043 : Amasa, MI +49905 : 47.101109 : -88.71833 : Atlantic Mine, MI +49908 : 46.795417 : -88.52645 : Baraga, MI +49910 : 46.576653 : -89.57618 : Bergland, MI +49911 : 46.480948 : -90.05138 : Bessemer, MI +49912 : 46.46077 : -89.15645 : Bruce Crossing, MI +49913 : 47.239083 : -88.46121 : Calumet, MI +49915 : 46.063428 : -88.62738 : Caspian, MI +49916 : 47.010896 : -88.54077 : Chassell, MI +49917 : 47.283086 : -88.38434 : Copper City, MI +49918 : 47.467597 : -87.88212 : Copper Harbor, MI +49919 : 46.559834 : -88.52201 : Covington, MI +49920 : 46.12624 : -88.35677 : Crystal Falls, MI +49921 : 47.093922 : -88.57894 : Dodgeville, MI +49922 : 47.122751 : -88.4818 : Dollar Bay, MI +49924 : 47.414054 : -88.297959 : Houghton, MI +49925 : 46.555946 : -89.34434 : Ewen, MI +49927 : 46.056611 : -88.59396 : Gaastra, MI +49929 : 46.780926 : -89.09762 : Greenland, MI +49930 : 47.145007 : -88.57829 : Hancock, MI +49931 : 47.11929 : -88.57259 : Houghton, MI +49934 : 47.170691 : -88.43396 : Hubbell, MI +49935 : 46.108022 : -88.70073 : Iron River, MI +49938 : 46.47351 : -90.15732 : Ironwood, MI +49942 : 47.269659 : -88.41589 : Kearsarge, MI +49943 : 46.421861 : -88.879139 : Iron River, MI +49945 : 47.17583 : -88.32904 : Lake Linden, MI +49946 : 46.766303 : -88.37867 : Lanse, MI +49947 : 46.420235 : -89.66518 : Marenisco, MI +49948 : 46.730077 : -89.02038 : Mass City, MI +49950 : 47.400603 : -88.14768 : Mohawk, MI +49952 : 46.7596 : -88.84928 : Nisula, MI +49953 : 46.846455 : -89.35119 : Ontonagon, MI +49955 : 47.034828 : -88.6719 : Painesdale, MI +49958 : 46.830728 : -88.65751 : Pelkie, MI +49959 : 46.470746 : -89.99603 : Ramsay, MI +49960 : 46.739853 : -89.18126 : Rockland, MI +49961 : 46.469552 : -88.73659 : Sidnaw, MI +49962 : 46.877 : -88.17166 : Skanee, MI +49963 : 47.069257 : -88.63936 : South Range, MI +49964 : 46.081472 : -88.62806 : Stambaugh, MI +49965 : 47.001469 : -88.88179 : Toivola, MI +49967 : 46.459705 : -89.0028 : Trout Creek, MI +49968 : 46.466645 : -89.91876 : Wakefield, MI +49969 : 46.258959 : -89.26594 : Watersmeet, MI +49970 : 46.53227 : -88.60459 : Watton, MI +49971 : 46.754237 : -89.57925 : White Pine, MI +49974 : 46.158139 : -84.361116 : Pickford, MI +49990 : 46.045288 : -88.375199 : Alpha, MI +50001 : 41.363615 : -93.41494 : Ackworth, IA +50002 : 41.507565 : -94.64805 : Adair, IA +50003 : 41.612628 : -94.03587 : Adel, IA +50005 : 42.116477 : -93.00357 : Albion, IA +50006 : 42.50767 : -93.40082 : Alden, IA +50007 : 41.804875 : -93.60475 : Alleman, IA +50008 : 40.688451 : -93.37907 : Allerton, IA +50009 : 41.644716 : -93.46641 : Altoona, IA +50010 : 42.02933 : -93.60966 : Ames, IA +50011 : 42.035998 : -93.465172 : Ames, IA +50012 : 42.023557 : -93.648465 : Ames, IA +50013 : 42.023535 : -93.640818 : Ames, IA +50014 : 42.033235 : -93.66741 : Ames, IA +50015 : 41.672687 : -93.572173 : Ankeny, IA +50020 : 41.445635 : -94.75806 : Anita, IA +50021 : 41.725288 : -93.60475 : Ankeny, IA +50022 : 41.410484 : -95.00852 : Atlantic, IA +50025 : 41.741295 : -94.92781 : Audubon, IA +50026 : 41.853498 : -94.43912 : Bagley, IA +50027 : 41.472488 : -92.46899 : Barnes City, IA +50028 : 41.820644 : -93.14743 : Baxter, IA +50029 : 41.845871 : -94.55588 : Bayard, IA +50031 : 42.038746 : -94.143566 : Beaver, IA +50032 : 41.666513 : -93.53916 : Berwick, IA +50033 : 41.360357 : -93.79219 : Bevington, IA +50034 : 42.490439 : -93.64187 : Blairsburg, IA +50035 : 41.704455 : -93.46171 : Bondurant, IA +50036 : 42.074515 : -93.87437 : Boone, IA +50037 : 42.036552 : -93.931686 : Boone, IA +50038 : 41.519724 : -93.90483 : Booneville, IA +50039 : 41.830156 : -94.01444 : Bouton, IA +50040 : 42.174905 : -94.10552 : Boxholm, IA +50041 : 42.632923 : -93.2459 : Bradford, IA +50042 : 41.534416 : -94.90323 : Brayton, IA +50043 : 42.417866 : -93.375544 : Buckeye, IA +50044 : 41.202354 : -92.88621 : Bussey, IA +50046 : 41.89949 : -93.5311 : Cambridge, IA +50047 : 41.491089 : -93.48058 : Carlisle, IA +50048 : 41.514342 : -94.52139 : Casey, IA +50049 : 41.02891 : -93.29857 : Chariton, IA +50050 : 42.16372 : -94.50771 : Churdan, IA +50051 : 42.13644 : -93.14222 : Clemons, IA +50052 : 40.639737 : -93.45615 : Clio, IA +50054 : 41.682808 : -93.23591 : Colfax, IA +50055 : 41.880967 : -93.29691 : Collins, IA +50056 : 42.011477 : -93.31293 : Colo, IA +50057 : 41.185045 : -93.1683 : Columbia, IA +50058 : 41.87131 : -94.6884 : Coon Rapids, IA +50059 : 41.919495 : -94.34518 : Cooper, IA +50060 : 40.756632 : -93.31527 : Corydon, IA +50061 : 41.491203 : -93.78537 : Cumming, IA +50062 : 41.23022 : -93.23904 : Dallas, IA +50063 : 41.687847 : -93.94852 : Dallas Center, IA +50064 : 42.114858 : -94.23112 : Dana, IA +50065 : 40.623677 : -93.80106 : Davis City, IA +50066 : 41.827287 : -94.21237 : Dawson, IA +50067 : 40.734072 : -93.85169 : Decatur, IA +50068 : 40.937432 : -93.45659 : Derby, IA +50069 : 41.53106 : -94.00842 : De Soto, IA +50070 : 41.488275 : -94.23785 : Dexter, IA +50071 : 42.653654 : -93.50761 : Dows, IA +50072 : 41.468077 : -94.12488 : Earlham, IA +50073 : 41.792118 : -93.52595 : Elkhart, IA +50074 : 40.852515 : -94.07546 : Ellston, IA +50075 : 42.325266 : -93.56507 : Ellsworth, IA +50076 : 41.592497 : -94.87032 : Exira, IA +50078 : 41.93746 : -92.865 : Ferguson, IA +50101 : 42.682176 : -93.61472 : Galt, IA +50102 : 42.24489 : -93.39783 : Garden City, IA +50103 : 40.801638 : -93.60711 : Garden Grove, IA +50104 : 41.472819 : -92.3841 : Gibson, IA +50105 : 42.110624 : -93.64504 : Gilbert, IA +50106 : 41.87955 : -92.79387 : Gilman, IA +50107 : 42.036623 : -94.21948 : Grand Junction, IA +50108 : 40.834902 : -93.95414 : Grand River, IA +50109 : 41.759988 : -93.81486 : Granger, IA +50110 : 41.84115 : -94.9812 : Gray, IA +50111 : 41.67822 : -93.7935 : Grimes, IA +50112 : 41.736434 : -92.72123 : Grinnell, IA +50115 : 41.690084 : -94.52602 : Guthrie Center, IA +50116 : 41.17969 : -92.94775 : Hamilton, IA +50117 : 41.671777 : -94.84924 : Hamlin, IA +50118 : 41.457014 : -93.39078 : Hartford, IA +50119 : 41.313748 : -92.93875 : Harvey, IA +50120 : 41.940175 : -92.96979 : Haverhill, IA +50122 : 42.30884 : -93.31162 : Hubbard, IA +50123 : 40.854525 : -93.49863 : Humeston, IA +50124 : 41.893335 : -93.59844 : Huxley, IA +50125 : 41.354068 : -93.57506 : Indianola, IA +50126 : 42.515426 : -93.26217 : Iowa Falls, IA +50127 : 41.777174 : -93.21383 : Ira, IA +50128 : 41.855913 : -94.29981 : Jamaica, IA +50129 : 42.017677 : -94.37939 : Jefferson, IA +50130 : 42.302683 : -93.65232 : Jewell, IA +50131 : 41.674757 : -93.71865 : Johnston, IA +50132 : 42.393155 : -93.70867 : Kamrar, IA +50133 : 40.70332 : -94.08143 : Kellerton, IA +50134 : 41.949947 : -93.6648 : Kelley, IA +50135 : 41.736358 : -92.89481 : Kellogg, IA +50136 : 41.463624 : -92.26841 : Keswick, IA +50137 : 41.607887 : -92.90573 : Killduff, IA +50138 : 41.307595 : -93.10226 : Knoxville, IA +50139 : 41.182964 : -93.36927 : Lacona, IA +50140 : 40.630919 : -93.94857 : Lamoni, IA +50141 : 41.88053 : -92.95464 : Laurel, IA +50142 : 42.00533 : -92.77525 : Le Grand, IA +50143 : 41.324195 : -92.80631 : Leighton, IA +50144 : 40.736802 : -93.74273 : Leon, IA +50145 : 41.203946 : -93.50069 : Liberty Center, IA +50146 : 41.668493 : -94.26066 : Linden, IA +50147 : 40.60243 : -93.52778 : Lineville, IA +50148 : 42.187863 : -93.00381 : Liscomb, IA +50149 : 41.137674 : -94.08042 : Lorimor, IA +50150 : 41.120845 : -92.93572 : Lovilia, IA +50151 : 41.06058 : -93.49076 : Lucas, IA +50152 : 41.967091 : -93.82106 : Luther, IA +50153 : 41.573516 : -92.79458 : Lynnville, IA +50154 : 42.168307 : -93.39718 : McCallsburg, IA +50155 : 41.210955 : -94.18994 : Macksburg, IA +50156 : 41.877415 : -93.79925 : Madrid, IA +50157 : 41.7388 : -92.56155 : Malcom, IA +50158 : 42.042506 : -92.90646 : Marshalltown, IA +50160 : 41.373193 : -93.74093 : Martensdale, IA +50161 : 41.86625 : -93.40134 : Maxwell, IA +50162 : 41.939663 : -93.07114 : Melbourne, IA +50163 : 41.242194 : -93.173193 : Melcher, IA +50164 : 41.504978 : -94.4065 : Menlo, IA +50165 : 40.847504 : -93.30502 : Millerton, IA +50166 : 41.283703 : -93.41399 : Milo, IA +50167 : 41.750745 : -94.04659 : Minburn, IA +50168 : 41.780089 : -93.26916 : Mingo, IA +50169 : 41.661112 : -93.35327 : Mitchellville, IA +50170 : 41.528347 : -93.10517 : Monroe, IA +50171 : 41.581309 : -92.53946 : Montezuma, IA +50173 : 41.980296 : -92.711 : Montour, IA +50174 : 41.039527 : -93.95498 : Murray, IA +50177 : 41.685742 : -92.532032 : Grinnell, IA +50197 : 41.334549 : -93.099205 : Knoxville, IA +50198 : 41.334549 : -93.099205 : Knoxville, IA +50201 : 42.026021 : -93.4484 : Nevada, IA +50206 : 42.250902 : -93.2007 : New Providence, IA +50207 : 41.445018 : -92.64823 : New Sharon, IA +50208 : 41.702148 : -93.04467 : Newton, IA +50210 : 41.193148 : -93.71388 : New Virginia, IA +50211 : 41.470726 : -93.68225 : Norwalk, IA +50212 : 42.045766 : -94.0443 : Ogden, IA +50213 : 41.031309 : -93.77004 : Osceola, IA +50214 : 41.456325 : -93.0738 : Otley, IA +50216 : 41.701873 : -94.36488 : Panora, IA +50217 : 42.17191 : -94.25943 : Paton, IA +50218 : 41.348815 : -93.88068 : Patterson, IA +50219 : 41.411394 : -92.91126 : Pella, IA +50220 : 41.846679 : -94.10961 : Perry, IA +50222 : 41.223389 : -93.94309 : Peru, IA +50223 : 42.162453 : -94.01728 : Pilot Mound, IA +50225 : 41.381537 : -93.27056 : Pleasantville, IA +50226 : 41.782755 : -93.71405 : Polk City, IA +50227 : 42.594986 : -93.42826 : Popejoy, IA +50228 : 41.584485 : -93.24161 : Prairie City, IA +50229 : 41.381146 : -93.77547 : Prole, IA +50230 : 42.303222 : -93.45343 : Radcliffe, IA +50231 : 42.237408 : -93.60253 : Randall, IA +50232 : 41.557079 : -92.97056 : Reasnor, IA +50233 : 41.604233 : -94.20931 : Redfield, IA +50234 : 41.89347 : -93.1813 : Rhodes, IA +50235 : 41.931753 : -94.20565 : Rippey, IA +50236 : 42.168363 : -93.49432 : Roland, IA +50237 : 41.536205 : -93.38182 : Runnells, IA +50238 : 40.962051 : -93.18373 : Russell, IA +50239 : 42.135419 : -93.2024 : Saint Anthony, IA +50240 : 41.304096 : -93.79728 : Saint Charles, IA +50241 : 41.308451 : -93.73157 : Saint Marys, IA +50242 : 41.56512 : -92.69484 : Searsboro, IA +50243 : 41.864393 : -93.69541 : Sheldahl, IA +50244 : 41.871283 : -93.67508 : Slater, IA +50246 : 42.281552 : -93.7952 : Stanhope, IA +50247 : 42.010415 : -93.16827 : State Center, IA +50248 : 42.186442 : -93.59867 : Story City, IA +50249 : 42.280223 : -93.90657 : Stratford, IA +50250 : 41.500086 : -94.32731 : Stuart, IA +50251 : 41.5714 : -92.85941 : Sully, IA +50252 : 41.449489 : -93.31782 : Swan, IA +50254 : 40.99355 : -94.07635 : Thayer, IA +50255 : 41.336267 : -92.178366 : Thornburg, IA +50256 : 41.277693 : -92.903 : Tracy, IA +50257 : 41.204733 : -93.84553 : Truro, IA +50258 : 42.232454 : -93.07833 : Union, IA +50259 : 42.383133 : -93.250567 : Gifford, IA +50261 : 41.490848 : -93.94509 : Van Meter, IA +50262 : 40.857503 : -93.79945 : Van Wert, IA +50263 : 41.601516 : -93.86151 : Waukee, IA +50264 : 40.89222 : -93.70988 : Weldon, IA +50265 : 41.570916 : -93.73568 : West Des Moines, IA +50266 : 41.581181 : -93.78287 : West Des Moines, IA +50268 : 41.403794 : -92.3541 : What Cheer, IA +50269 : 42.261478 : -93.00738 : Whitten, IA +50271 : 42.486287 : -93.54644 : Williams, IA +50272 : 41.08869 : -93.25821 : Williamson, IA +50273 : 41.332618 : -94.03802 : Winterset, IA +50274 : 41.394625 : -94.86276 : Wiota, IA +50275 : 41.01619 : -93.59181 : Woodburn, IA +50276 : 41.855315 : -93.92795 : Woodward, IA +50277 : 41.779131 : -94.35418 : Yale, IA +50278 : 42.158866 : -93.29673 : Zearing, IA +50294 : 42.266846 : -93.927086 : Stratford, IA +50301 : 41.672687 : -93.572173 : Des Moines, IA +50302 : 41.672687 : -93.572173 : Des Moines, IA +50303 : 41.672687 : -93.572173 : Des Moines, IA +50304 : 41.672687 : -93.572173 : Des Moines, IA +50305 : 41.672687 : -93.572173 : Des Moines, IA +50306 : 41.672687 : -93.572173 : Des Moines, IA +50307 : 41.672687 : -93.572173 : Des Moines, IA +50308 : 41.672687 : -93.572173 : Des Moines, IA +50309 : 41.585939 : -93.62004 : Des Moines, IA +50310 : 41.625988 : -93.67403 : Des Moines, IA +50311 : 41.601189 : -93.68076 : Des Moines, IA +50312 : 41.587039 : -93.67356 : Des Moines, IA +50313 : 41.637638 : -93.61636 : Des Moines, IA +50314 : 41.602989 : -93.63237 : Des Moines, IA +50315 : 41.545089 : -93.61904 : Des Moines, IA +50316 : 41.606339 : -93.59829 : Des Moines, IA +50317 : 41.606939 : -93.54829 : Des Moines, IA +50318 : 41.672687 : -93.572173 : Des Moines, IA +50319 : 41.592089 : -93.603967 : Des Moines, IA +50320 : 41.537059 : -93.58072 : Des Moines, IA +50321 : 41.542789 : -93.66189 : Des Moines, IA +50322 : 41.630521 : -93.7238 : Urbandale, IA +50323 : 41.625788 : -93.80235 : Urbandale, IA +50325 : 41.60787 : -93.78093 : Clive, IA +50327 : 41.587818 : -93.505751 : Pleasant Hill, IA +50328 : 41.672687 : -93.572173 : Des Moines, IA +50329 : 41.672687 : -93.572173 : Des Moines, IA +50330 : 41.672687 : -93.572173 : Des Moines, IA +50331 : 41.672687 : -93.572173 : Des Moines, IA +50332 : 41.672687 : -93.572173 : Des Moines, IA +50333 : 41.672687 : -93.572173 : Des Moines, IA +50334 : 41.672687 : -93.572173 : Des Moines, IA +50335 : 41.672687 : -93.572173 : Des Moines, IA +50336 : 41.672687 : -93.572173 : Des Moines, IA +50338 : 41.672687 : -93.572173 : Des Moines, IA +50339 : 41.672687 : -93.572173 : Des Moines, IA +50340 : 41.672687 : -93.572173 : Des Moines, IA +50347 : 41.672687 : -93.572173 : Des Moines, IA +50350 : 41.672687 : -93.572173 : Des Moines, IA +50359 : 41.672687 : -93.572173 : Des Moines, IA +50360 : 41.672687 : -93.572173 : Des Moines, IA +50361 : 41.672687 : -93.572173 : Des Moines, IA +50362 : 41.672687 : -93.572173 : Des Moines, IA +50363 : 41.672687 : -93.572173 : Des Moines, IA +50364 : 41.672687 : -93.572173 : Des Moines, IA +50367 : 41.672687 : -93.572173 : Des Moines, IA +50368 : 41.672687 : -93.572173 : Des Moines, IA +50369 : 41.672687 : -93.572173 : Des Moines, IA +50380 : 41.672687 : -93.572173 : Des Moines, IA +50381 : 41.672687 : -93.572173 : Des Moines, IA +50391 : 41.672687 : -93.572173 : Des Moines, IA +50392 : 41.587839 : -93.627368 : Des Moines, IA +50393 : 41.672687 : -93.572173 : Des Moines, IA +50394 : 41.672687 : -93.572173 : Des Moines, IA +50395 : 41.672687 : -93.572173 : Des Moines, IA +50396 : 41.672687 : -93.572173 : Des Moines, IA +50397 : 41.672687 : -93.572173 : Des Moines, IA +50398 : 41.594543 : -93.785502 : West Des Moines, IA +50401 : 43.153969 : -93.20037 : Mason City, IA +50402 : 43.081604 : -93.260879 : Mason City, IA +50405 : 43.418395 : -93.525253 : Lake Mills, IA +50420 : 42.811536 : -93.46844 : Alexander, IA +50421 : 42.842616 : -93.6187 : Belmond, IA +50423 : 43.104076 : -93.8041 : Britt, IA +50424 : 43.392145 : -93.94282 : Buffalo Center, IA +50426 : 43.414156 : -93.01693 : Carpenter, IA +50427 : 42.834852 : -93.222587 : Chapin, IA +50428 : 43.1375 : -93.38463 : Clear Lake, IA +50430 : 42.985613 : -93.96138 : Corwith, IA +50431 : 42.735305 : -93.37056 : Coulter, IA +50432 : 43.222661 : -93.7909 : Crystal Lake, IA +50433 : 42.922595 : -93.04392 : Dougherty, IA +50434 : 43.260087 : -93.43553 : Fertile, IA +50435 : 43.157144 : -92.76056 : Floyd, IA +50436 : 43.259165 : -93.65625 : Forest City, IA +50438 : 43.102343 : -93.61033 : Garner, IA +50439 : 42.930305 : -93.62645 : Goodell, IA +50440 : 43.329416 : -93.07297 : Grafton, IA +50441 : 42.743106 : -93.21518 : Hampton, IA +50444 : 43.287532 : -93.3836 : Hanlontown, IA +50446 : 43.343138 : -93.45694 : Joice, IA +50447 : 42.926804 : -93.80821 : Kanawha, IA +50448 : 43.349766 : -93.22573 : Kensett, IA +50449 : 43.002473 : -93.58292 : Klemme, IA +50450 : 43.418877 : -93.52078 : Lake Mills, IA +50451 : 43.379814 : -94.09044 : Lakota, IA +50452 : 42.77929 : -93.36842 : Latimer, IA +50453 : 43.363881 : -93.6468 : Leland, IA +50454 : 43.38301 : -92.7293 : Little Cedar, IA +50455 : 43.450496 : -92.64331 : McIntire, IA +50456 : 43.289041 : -93.20838 : Manly, IA +50457 : 42.916174 : -93.48318 : Meservey, IA +50458 : 43.147661 : -93.00519 : Nora Springs, IA +50459 : 43.444448 : -93.24015 : Northwood, IA +50460 : 43.220043 : -92.72237 : Orchard, IA +50461 : 43.290536 : -92.82115 : Osage, IA +50464 : 43.248524 : -93.09976 : Plymouth, IA +50465 : 43.484445 : -93.91817 : Rake, IA +50466 : 43.376582 : -92.54755 : Riceville, IA +50467 : 43.206593 : -93.08574 : Rock Falls, IA +50468 : 43.048973 : -92.95458 : Rockford, IA +50469 : 42.994932 : -93.20192 : Rockwell, IA +50470 : 42.7402 : -93.55338 : Rowan, IA +50471 : 43.148134 : -92.88759 : Rudd, IA +50472 : 43.402708 : -92.93841 : Saint Ansgar, IA +50473 : 43.46592 : -93.66671 : Scarville, IA +50475 : 42.88516 : -93.22082 : Sheffield, IA +50476 : 43.441028 : -92.77702 : Stacyville, IA +50477 : 42.97779 : -93.32768 : Swaledale, IA +50478 : 43.385425 : -93.77734 : Thompson, IA +50479 : 42.939528 : -93.39301 : Thornton, IA +50480 : 43.242739 : -94.04333 : Titonka, IA +50481 : 43.356439 : -92.788967 : Toeterville, IA +50482 : 43.124246 : -93.48259 : Ventura, IA +50483 : 43.104175 : -93.99988 : Wesley, IA +50484 : 43.236648 : -93.92137 : Woden, IA +50501 : 42.499242 : -94.18256 : Fort Dodge, IA +50510 : 42.768165 : -94.97033 : Albert City, IA +50511 : 43.0739 : -94.22602 : Algona, IA +50514 : 43.398596 : -94.47223 : Armstrong, IA +50515 : 43.023296 : -94.85188 : Ayrshire, IA +50516 : 42.624944 : -94.13904 : Badger, IA +50517 : 43.295639 : -94.22578 : Bancroft, IA +50518 : 42.523953 : -94.35401 : Barnum, IA +50519 : 42.884723 : -94.27644 : Bode, IA +50520 : 42.802568 : -94.41955 : Bradgate, IA +50521 : 42.346859 : -94.10732 : Burnside, IA +50522 : 43.192938 : -94.19512 : Burt, IA +50523 : 42.36534 : -94.29779 : Callender, IA +50524 : 42.603391 : -94.36129 : Clare, IA +50525 : 42.738313 : -93.7385 : Clarion, IA +50526 : 42.733001 : -93.73523 : Clarion, IA +50527 : 42.973868 : -94.78269 : Curlew, IA +50528 : 43.117331 : -94.54767 : Cylinder, IA +50529 : 42.720708 : -94.20185 : Dakota City, IA +50530 : 42.26594 : -94.0518 : Dayton, IA +50531 : 43.465883 : -94.61632 : Dolliver, IA +50532 : 42.456733 : -93.99814 : Duncombe, IA +50533 : 42.659143 : -93.90684 : Eagle Grove, IA +50535 : 42.453686 : -95.16395 : Early, IA +50536 : 43.115156 : -94.6931 : Emmetsburg, IA +50538 : 42.279123 : -94.41373 : Farnhamville, IA +50539 : 43.225165 : -94.42583 : Fenton, IA +50540 : 42.58816 : -94.84192 : Fonda, IA +50541 : 42.71032 : -94.45293 : Gilmore City, IA +50542 : 42.764886 : -93.94113 : Goldfield, IA +50543 : 42.269537 : -94.29539 : Gowrie, IA +50544 : 42.259002 : -94.17666 : Harcourt, IA +50545 : 42.818996 : -94.07424 : Hardy, IA +50546 : 42.836636 : -94.70587 : Havelock, IA +50548 : 42.720313 : -94.22517 : Humboldt, IA +50551 : 42.475817 : -94.7321 : Jolley, IA +50552 : 42.455148 : -94.45652 : Knierim, IA +50554 : 42.844055 : -94.84275 : Laurens, IA +50556 : 43.448529 : -94.19697 : Ledyard, IA +50557 : 42.358466 : -94.05829 : Lehigh, IA +50558 : 42.872099 : -94.17339 : Livermore, IA +50559 : 43.204803 : -94.31526 : Lone Rock, IA +50560 : 42.947984 : -94.10845 : Lu Verne, IA +50561 : 42.417882 : -94.85098 : Lytton, IA +50562 : 42.949884 : -94.66372 : Mallard, IA +50563 : 42.52503 : -94.53628 : Manson, IA +50565 : 42.855822 : -95.00245 : Marathon, IA +50566 : 42.437122 : -94.3214 : Moorland, IA +50567 : 42.527637 : -95.10125 : Nemaha, IA +50568 : 42.612476 : -95.00006 : Newell, IA +50569 : 42.417893 : -94.1494 : Otho, IA +50570 : 42.899575 : -94.37557 : Ottosen, IA +50571 : 42.638478 : -94.58979 : Palmer, IA +50573 : 42.878058 : -94.624 : Plover, IA +50574 : 42.724938 : -94.68365 : Pocahontas, IA +50575 : 42.55602 : -94.68307 : Pomeroy, IA +50576 : 42.814277 : -95.18071 : Rembrandt, IA +50577 : 42.846831 : -93.98159 : Renwick, IA +50578 : 43.291538 : -94.54121 : Ringsted, IA +50579 : 42.395906 : -94.63294 : Rockwell City, IA +50581 : 42.842111 : -94.53114 : Rolfe, IA +50582 : 42.778791 : -94.29535 : Rutland, IA +50583 : 42.43142 : -94.99323 : Sac City, IA +50585 : 42.907223 : -95.14315 : Sioux Rapids, IA +50586 : 42.402475 : -94.4351 : Somers, IA +50587 : 42.339118 : -94.488618 : Rinard, IA +50588 : 42.646924 : -95.1807 : Storm Lake, IA +50590 : 43.392985 : -94.31496 : Swea City, IA +50591 : 42.684486 : -94.05446 : Thor, IA +50592 : 42.728665 : -95.18303 : Truesdale, IA +50593 : 42.658595 : -94.90006 : Varina, IA +50594 : 42.587704 : -94.02502 : Vincent, IA +50595 : 42.464579 : -93.82056 : Webster City, IA +50597 : 42.97944 : -94.46472 : West Bend, IA +50598 : 43.077787 : -94.41061 : Whittemore, IA +50599 : 42.579038 : -93.80387 : Woolstock, IA +50601 : 42.563333 : -93.04954 : Ackley, IA +50602 : 42.74806 : -92.80277 : Allison, IA +50603 : 43.191256 : -92.46546 : Alta Vista, IA +50604 : 42.606337 : -92.8988 : Aplington, IA +50605 : 42.834044 : -93.0135 : Aredale, IA +50606 : 42.752057 : -91.67149 : Arlington, IA +50607 : 42.616399 : -91.73262 : Aurora, IA +50608 : 42.58243 : -92.95988 : Austinville, IA +50609 : 42.226183 : -92.81015 : Beaman, IA +50611 : 42.805321 : -92.91579 : Bristow, IA +50612 : 42.275046 : -92.39722 : Buckingham, IA +50613 : 42.527184 : -92.45609 : Cedar Falls, IA +50614 : 42.469768 : -92.309475 : Cedar Falls, IA +50616 : 43.072978 : -92.66719 : Charles City, IA +50619 : 42.788967 : -92.66584 : Clarksville, IA +50620 : 43.110765 : -92.744821 : Colwell, IA +50621 : 42.238432 : -92.90748 : Conrad, IA +50622 : 42.671132 : -92.33825 : Denver, IA +50623 : 42.526943 : -92.21802 : Dewar, IA +50624 : 42.463161 : -92.66183 : Dike, IA +50625 : 42.754361 : -92.9751 : Dumont, IA +50626 : 42.576054 : -92.16575 : Dunkerton, IA +50627 : 42.357549 : -93.0975 : Eldora, IA +50628 : 43.26232 : -92.41457 : Elma, IA +50629 : 42.640202 : -92.06988 : Fairbank, IA +50630 : 42.963377 : -92.20768 : Fredericksburg, IA +50631 : 42.882349 : -92.30477 : Frederika, IA +50632 : 42.079127 : -92.70805 : Garwin, IA +50633 : 42.671214 : -93.13215 : Geneva, IA +50634 : 42.417252 : -92.21396 : Gilbertville, IA +50635 : 42.190943 : -92.70755 : Gladbrook, IA +50636 : 42.891377 : -92.80848 : Greene, IA +50638 : 42.361095 : -92.78015 : Grundy Center, IA +50641 : 42.605576 : -91.91229 : Hazleton, IA +50642 : 42.43442 : -92.79802 : Holland, IA +50643 : 42.377311 : -92.46513 : Hudson, IA +50644 : 42.470191 : -91.89268 : Independence, IA +50645 : 43.031136 : -92.46149 : Ionia, IA +50647 : 42.646089 : -92.473 : Janesville, IA +50648 : 42.453206 : -92.09319 : Jesup, IA +50649 : 42.662282 : -92.91099 : Kesley, IA +50650 : 42.612267 : -91.6572 : Lamont, IA +50651 : 42.325098 : -92.19383 : La Porte City, IA +50652 : 42.263223 : -92.69186 : Lincoln, IA +50653 : 42.966003 : -92.87985 : Marble Rock, IA +50654 : 42.440131 : -91.60941 : Masonville, IA +50655 : 42.774435 : -91.88645 : Maynard, IA +50657 : 42.343304 : -92.673819 : Morrison, IA +50658 : 42.953461 : -92.53473 : Nashua, IA +50659 : 43.072094 : -92.32323 : New Hampton, IA +50660 : 42.568395 : -92.62664 : New Hartford, IA +50661 : 43.117425 : -92.414422 : North Washington, IA +50662 : 42.682886 : -91.92182 : Oelwein, IA +50664 : 42.862275 : -91.843639 : Oran, IA +50665 : 42.576102 : -92.78183 : Parkersburg, IA +50666 : 42.855231 : -92.50295 : Plainfield, IA +50667 : 42.468387 : -92.21818 : Raymond, IA +50668 : 42.693119 : -92.22915 : Readlyn, IA +50669 : 42.329448 : -92.60686 : Reinbeck, IA +50670 : 42.710399 : -92.59746 : Shell Rock, IA +50671 : 42.643265 : -91.81038 : Stanley, IA +50672 : 42.410168 : -93.06747 : Steamboat Rock, IA +50673 : 42.527131 : -92.71138 : Stout, IA +50674 : 42.846877 : -92.11188 : Sumner, IA +50675 : 42.193577 : -92.4828 : Traer, IA +50676 : 42.807994 : -92.26368 : Tripoli, IA +50677 : 42.741016 : -92.45984 : Waverly, IA +50680 : 42.451112 : -92.91453 : Wellsburg, IA +50681 : 42.778924 : -92.00735 : Westgate, IA +50682 : 42.459398 : -91.71229 : Winthrop, IA +50701 : 42.473536 : -92.36382 : Waterloo, IA +50702 : 42.475886 : -92.33578 : Waterloo, IA +50703 : 42.513636 : -92.32418 : Waterloo, IA +50704 : 42.469768 : -92.309475 : Waterloo, IA +50706 : 42.407588 : -92.26657 : Waterloo, IA +50707 : 42.477887 : -92.28275 : Evansdale, IA +50799 : 42.469768 : -92.309475 : Waterloo, IA +50801 : 41.070905 : -94.38448 : Creston, IA +50830 : 41.029408 : -94.21128 : Afton, IA +50831 : 40.931394 : -94.219334 : Arispe, IA +50833 : 40.671295 : -94.71131 : Bedford, IA +50835 : 40.69705 : -94.33067 : Benton, IA +50836 : 40.621398 : -94.47619 : Blockton, IA +50837 : 41.237084 : -94.68361 : Bridgewater, IA +50839 : 41.048733 : -94.823088 : Carbon, IA +50840 : 40.796387 : -94.47102 : Clearfield, IA +50841 : 41.002701 : -94.76142 : Corning, IA +50842 : 41.039762 : -94.461622 : Cromwell, IA +50843 : 41.242612 : -94.9015 : Cumberland, IA +50845 : 40.814077 : -94.33601 : Diagonal, IA +50846 : 41.307029 : -94.55679 : Fontanelle, IA +50847 : 41.142185 : -94.98414 : Grant, IA +50848 : 40.780854 : -94.7643 : Gravity, IA +50849 : 41.308843 : -94.42424 : Greenfield, IA +50851 : 40.909175 : -94.52311 : Lenox, IA +50853 : 41.247145 : -94.77195 : Massena, IA +50854 : 40.700115 : -94.22607 : Mount Ayr, IA +50857 : 40.944133 : -94.87537 : Nodaway, IA +50858 : 41.20657 : -94.41573 : Orient, IA +50859 : 41.053745 : -94.59728 : Prescott, IA +50860 : 40.618619 : -94.33102 : Redding, IA +50861 : 40.905544 : -94.27107 : Shannon City, IA +50862 : 40.80692 : -94.64762 : Sharpsburg, IA +50863 : 40.857182 : -94.19272 : Tingley, IA +50864 : 40.960481 : -94.99017 : Villisca, IA +50936 : 41.672687 : -93.572173 : Des Moines, IA +50940 : 41.672687 : -93.572173 : Des Moines, IA +50947 : 41.672687 : -93.572173 : Des Moines, IA +50950 : 41.672687 : -93.572173 : Des Moines, IA +50980 : 41.672687 : -93.572173 : Des Moines, IA +50981 : 41.672687 : -93.572173 : Des Moines, IA +51001 : 42.819093 : -96.48967 : Akron, IA +51002 : 42.687676 : -95.3188 : Alta, IA +51003 : 42.983011 : -95.99636 : Alton, IA +51004 : 42.378152 : -95.90784 : Anthon, IA +51005 : 42.710831 : -95.43137 : Aurelia, IA +51006 : 42.316288 : -95.61045 : Battle Creek, IA +51007 : 42.403236 : -96.1881 : Bronson, IA +51008 : 42.809286 : -96.2687 : Brunsville, IA +51009 : 42.9552 : -95.570082 : Calumet, IA +51010 : 42.075717 : -95.91108 : Castana, IA +51011 : 42.916772 : -96.51603 : Chatsworth, IA +51012 : 42.754004 : -95.54919 : Cherokee, IA +51014 : 42.759208 : -95.71139 : Cleghorn, IA +51015 : 42.345024 : -96.087523 : Climbing Hill, IA +51016 : 42.471378 : -95.80529 : Correctionville, IA +51017 : 42.896225 : -96.309509 : Craig, IA +51018 : 42.462159 : -95.67654 : Cushing, IA +51019 : 42.276668 : -95.71998 : Danbury, IA +51020 : 42.511431 : -95.4187 : Galva, IA +51022 : 42.974759 : -95.86981 : Granville, IA +51023 : 43.005927 : -96.4709 : Hawarden, IA +51024 : 42.609657 : -96.23855 : Hinton, IA +51025 : 42.496494 : -95.55529 : Holstein, IA +51026 : 42.250507 : -96.08298 : Hornick, IA +51027 : 42.971195 : -96.32512 : Ireton, IA +51028 : 42.596358 : -95.98619 : Kingsley, IA +51029 : 42.876589 : -95.54106 : Larrabee, IA +51030 : 42.497015 : -96.18789 : Lawton, IA +51031 : 42.79728 : -96.17167 : Le Mars, IA +51033 : 42.907563 : -95.25334 : Linn Grove, IA +51034 : 42.165283 : -95.79109 : Mapleton, IA +51035 : 42.793354 : -95.7903 : Marcus, IA +51036 : 42.969595 : -96.18713 : Maurice, IA +51037 : 42.821249 : -95.62735 : Meriden, IA +51038 : 42.714106 : -96.30291 : Merrill, IA +51039 : 42.474905 : -96.05563 : Moville, IA +51040 : 42.027176 : -96.11875 : Onawa, IA +51041 : 43.015685 : -96.06156 : Orange City, IA +51044 : 42.29688 : -95.91104 : Oto, IA +51045 : 42.820632 : -96.05654 : Oyens, IA +51046 : 42.976116 : -95.65772 : Paullina, IA +51047 : 42.934345 : -95.34343 : Peterson, IA +51048 : 42.571699 : -95.85556 : Pierson, IA +51049 : 42.626822 : -95.61438 : Quimby, IA +51050 : 42.786134 : -95.9482 : Remsen, IA +51051 : 42.20486 : -95.95294 : Rodney, IA +51052 : 42.307882 : -96.28232 : Salix, IA +51053 : 42.498879 : -95.28976 : Schaller, IA +51054 : 42.38556 : -96.34194 : Sergeant Bluff, IA +51055 : 42.221763 : -96.24606 : Sloan, IA +51056 : 42.23092 : -95.94724 : Smithland, IA +51057 : 42.837641 : -96.178616 : Struble, IA +51058 : 42.996361 : -95.4558 : Sutherland, IA +51059 : 42.036864 : -95.9662 : Turin, IA +51060 : 42.0477 : -95.70185 : Ute, IA +51061 : 42.576775 : -95.71945 : Washta, IA +51062 : 42.725792 : -96.53712 : Westfield, IA +51063 : 42.137272 : -96.16648 : Whiting, IA +51101 : 42.493559 : -96.39562 : Sioux City, IA +51102 : 42.368406 : -96.317951 : Sioux City, IA +51103 : 42.505387 : -96.4293 : Sioux City, IA +51104 : 42.524145 : -96.40292 : Sioux City, IA +51105 : 42.505046 : -96.38003 : Sioux City, IA +51106 : 42.466292 : -96.35291 : Sioux City, IA +51107 : 42.411155 : -96.210839 : Bronson, IA +51108 : 42.554944 : -96.36139 : Sioux City, IA +51109 : 42.528033 : -96.47647 : Sioux City, IA +51111 : 42.406357 : -96.37617 : Sioux City, IA +51201 : 43.184994 : -95.85888 : Sheldon, IA +51230 : 43.352016 : -96.30802 : Alvord, IA +51231 : 43.091483 : -95.73297 : Archer, IA +51232 : 43.306169 : -95.7969 : Ashton, IA +51234 : 43.19528 : -96.01511 : Boyden, IA +51235 : 43.291936 : -96.22202 : Doon, IA +51237 : 43.332554 : -96.00036 : George, IA +51238 : 43.072732 : -95.89855 : Hospers, IA +51239 : 43.192342 : -96.15012 : Hull, IA +51240 : 43.30957 : -96.45816 : Inwood, IA +51241 : 43.451905 : -96.44319 : Larchwood, IA +51242 : 43.43813 : -96.33334 : Lester, IA +51243 : 43.443704 : -95.88832 : Little Rock, IA +51244 : 43.242958 : -95.93448 : Matlock, IA +51245 : 43.086954 : -95.61476 : Primghar, IA +51246 : 43.430275 : -96.1663 : Rock Rapids, IA +51247 : 43.192619 : -96.32412 : Rock Valley, IA +51248 : 43.189668 : -95.65409 : Sanborn, IA +51249 : 43.406831 : -95.73876 : Sibley, IA +51250 : 43.075142 : -96.19039 : Sioux Center, IA +51301 : 43.150381 : -95.14466 : Spencer, IA +51330 : 43.415305 : -95.643435 : Allendorf, IA +51331 : 43.364496 : -95.12861 : Arnolds Park, IA +51333 : 43.133063 : -95.00965 : Dickens, IA +51334 : 43.401328 : -94.81524 : Estherville, IA +51338 : 43.193363 : -95.31854 : Everly, IA +51340 : 43.082426 : -95.151095 : Fostoria, IA +51341 : 43.014514 : -95.03657 : Gillett Grove, IA +51342 : 43.239934 : -94.74138 : Graettinger, IA +51343 : 43.003251 : -95.12714 : Greenville, IA +51344 : 43.393113 : -94.70471 : Gruver, IA +51345 : 43.407616 : -95.43752 : Harris, IA +51346 : 43.183038 : -95.46787 : Hartley, IA +51347 : 43.437775 : -95.31637 : Lake Park, IA +51349 : 43.320149 : -95.47513 : May City, IA +51350 : 43.30288 : -95.59597 : Melvin, IA +51351 : 43.33158 : -95.16337 : Milford, IA +51354 : 43.413538 : -95.53675 : Ocheyedan, IA +51355 : 43.38762 : -95.13802 : Okoboji, IA +51357 : 43.057948 : -95.27482 : Royal, IA +51358 : 43.133294 : -94.90006 : Ruthven, IA +51360 : 43.428983 : -95.10892 : Spirit Lake, IA +51363 : 43.432156 : -94.94569 : Superior, IA +51364 : 43.303488 : -94.96903 : Terril, IA +51365 : 43.309573 : -94.74784 : Wallingford, IA +51366 : 42.951621 : -95.01145 : Webb, IA +51401 : 42.066399 : -94.86786 : Carroll, IA +51430 : 42.09809 : -95.02441 : Arcadia, IA +51431 : 42.345965 : -95.35615 : Arthur, IA +51432 : 41.911924 : -95.135602 : Aspinwall, IA +51433 : 42.279474 : -94.88642 : Auburn, IA +51436 : 42.186982 : -95.00487 : Breda, IA +51439 : 42.08255 : -95.57938 : Charter Oak, IA +51440 : 41.913691 : -94.81453 : Dedham, IA +51441 : 42.113042 : -95.31482 : Deloit, IA +51442 : 42.019336 : -95.35379 : Denison, IA +51443 : 42.096445 : -94.71141 : Glidden, IA +51444 : 42.005206 : -94.97547 : Halbur, IA +51445 : 42.332677 : -95.46823 : Ida Grove, IA +51446 : 41.785808 : -95.20173 : Irwin, IA +51447 : 41.7196 : -95.19538 : Kirkman, IA +51448 : 42.204515 : -95.30928 : Kiron, IA +51449 : 42.266805 : -94.73571 : Lake City, IA +51450 : 42.302091 : -95.03061 : Lake View, IA +51451 : 42.184035 : -94.69246 : Lanesboro, IA +51452 : 42.126994 : -94.78449 : Lidderdale, IA +51453 : 42.27586 : -94.54041 : Lohrville, IA +51454 : 41.885538 : -95.22158 : Manilla, IA +51455 : 41.913633 : -95.06939 : Manning, IA +51458 : 42.315531 : -95.23551 : Odebolt, IA +51459 : 42.040772 : -94.63292 : Ralston, IA +51460 : 42.130428 : -95.574593 : Ricketts, IA +51461 : 42.172338 : -95.44924 : Schleswig, IA +51462 : 42.022139 : -94.56409 : Scranton, IA +51463 : 41.910011 : -94.92775 : Templeton, IA +51465 : 42.072884 : -95.20261 : Vail, IA +51466 : 42.256867 : -95.09307 : Wall Lake, IA +51467 : 42.072073 : -95.10711 : Westside, IA +51496 : 41.916027 : -94.944563 : Templeton, IA +51501 : 41.251631 : -95.87447 : Council Bluffs, IA +51502 : 41.269884 : -95.79752 : Council Bluffs, IA +51503 : 41.2544 : -95.79062 : Council Bluffs, IA +51510 : 41.292647 : -95.91398 : Carter Lake, IA +51515 : 41.233503 : -95.135861 : Griswold, IA +51520 : 41.952624 : -95.45818 : Arion, IA +51521 : 41.48079 : -95.33881 : Avoca, IA +51523 : 41.9134 : -96.085 : Blencoe, IA +51525 : 41.231387 : -95.4044 : Carson, IA +51526 : 41.362096 : -95.87321 : Crescent, IA +51527 : 41.828495 : -95.34363 : Defiance, IA +51528 : 41.927255 : -95.49821 : Dow City, IA +51529 : 41.856963 : -95.61754 : Dunlap, IA +51530 : 41.77364 : -95.42761 : Earling, IA +51531 : 41.596716 : -95.0716 : Elk Horn, IA +51532 : 41.140956 : -95.13004 : Elliott, IA +51533 : 41.029684 : -95.38295 : Emerson, IA +51534 : 41.039679 : -95.73092 : Glenwood, IA +51535 : 41.232047 : -95.13871 : Griswold, IA +51536 : 41.388872 : -95.36782 : Hancock, IA +51537 : 41.638566 : -95.29692 : Harlan, IA +51540 : 41.020978 : -95.49852 : Hastings, IA +51541 : 41.137694 : -95.39897 : Henderson, IA +51542 : 41.427994 : -95.84004 : Honey Creek, IA +51543 : 41.6485 : -95.08334 : Kimballton, IA +51544 : 41.313817 : -95.10424 : Lewis, IA +51545 : 41.812797 : -96.03218 : Little Sioux, IA +51546 : 41.64252 : -95.78134 : Logan, IA +51547 : 41.77 : -95.644264 : Kirkman, IA +51548 : 41.307465 : -95.62675 : McClelland, IA +51549 : 41.182061 : -95.44357 : Macedonia, IA +51550 : 41.695375 : -95.87353 : Magnolia, IA +51551 : 40.998667 : -95.58941 : Malvern, IA +51552 : 41.470605 : -95.11291 : Marne, IA +51553 : 41.425925 : -95.5461 : Minden, IA +51554 : 41.142148 : -95.69205 : Mineola, IA +51555 : 41.557887 : -95.90651 : Missouri Valley, IA +51556 : 41.64243 : -96.02872 : Modale, IA +51557 : 41.739005 : -95.99657 : Mondamin, IA +51558 : 41.911376 : -95.86092 : Moorhead, IA +51559 : 41.455142 : -95.64792 : Neola, IA +51560 : 41.320647 : -95.39748 : Oakland, IA +51561 : 41.022849 : -95.80303 : Pacific Junction, IA +51562 : 41.725547 : -95.49415 : Panama, IA +51563 : 41.568945 : -95.58503 : Persia, IA +51564 : 41.816224 : -95.90556 : Pisgah, IA +51565 : 41.650114 : -95.52275 : Portsmouth, IA +51566 : 41.006437 : -95.22603 : Red Oak, IA +51570 : 41.52279 : -95.46501 : Shelby, IA +51571 : 41.123653 : -95.62225 : Silver City, IA +51572 : 41.987483 : -95.78317 : Soldier, IA +51573 : 40.979256 : -95.09722 : Stanton, IA +51574 : 41.595686 : -95.44193 : Tennant, IA +51575 : 41.231146 : -95.61155 : Treynor, IA +51576 : 41.388244 : -95.68777 : Underwood, IA +51577 : 41.470851 : -95.20256 : Walnut, IA +51578 : 41.719352 : -95.3958 : Westphalia, IA +51579 : 41.743335 : -95.71117 : Woodbine, IA +51591 : 41.030256 : -95.156205 : Red Oak, IA +51593 : 41.332943 : -95.587197 : Harlan, IA +51601 : 40.750107 : -95.36514 : Shenandoah, IA +51602 : 40.738309 : -95.149305 : Shenandoah, IA +51603 : 40.738309 : -95.149305 : Shenandoah, IA +51630 : 40.588924 : -95.21254 : Blanchard, IA +51631 : 40.615698 : -95.00942 : Braddyville, IA +51632 : 40.738639 : -95.03595 : Clarinda, IA +51636 : 40.671163 : -95.21698 : Coin, IA +51637 : 40.616696 : -95.11568 : College Springs, IA +51638 : 40.822954 : -95.27007 : Essex, IA +51639 : 40.707376 : -95.47445 : Farragut, IA +51640 : 40.622159 : -95.66736 : Hamburg, IA +51645 : 40.884496 : -95.42637 : Imogene, IA +51646 : 40.732886 : -94.88772 : New Market, IA +51647 : 40.599361 : -95.36419 : Northboro, IA +51648 : 40.741715 : -95.7976 : Percival, IA +51649 : 40.865993 : -95.54687 : Randolph, IA +51650 : 40.679816 : -95.56494 : Riverton, IA +51651 : 40.65747 : -95.024969 : Shambaugh, IA +51652 : 40.76261 : -95.60679 : Sidney, IA +51653 : 40.886487 : -95.67001 : Tabor, IA +51654 : 40.836473 : -95.76463 : Thurman, IA +51656 : 40.737446 : -95.156217 : Yorktown, IA +52001 : 42.515252 : -90.6794 : Dubuque, IA +52002 : 42.50963 : -90.75329 : Dubuque, IA +52003 : 42.460604 : -90.68576 : Dubuque, IA +52004 : 42.484861 : -90.804116 : Dubuque, IA +52030 : 42.154059 : -90.59176 : Andrew, IA +52031 : 42.250445 : -90.47115 : Bellevue, IA +52032 : 42.273028 : -90.81319 : Bernard, IA +52033 : 42.29025 : -90.99759 : Cascade, IA +52035 : 42.662381 : -91.18541 : Colesburg, IA +52036 : 42.473959 : -91.34228 : Delaware, IA +52037 : 41.967074 : -90.63216 : Delmar, IA +52038 : 42.585197 : -91.55268 : Dundee, IA +52039 : 42.558403 : -90.86042 : Durango, IA +52040 : 42.490907 : -91.12842 : Dyersville, IA +52041 : 42.491416 : -91.26333 : Earlville, IA +52042 : 42.678463 : -91.3618 : Edgewood, IA +52043 : 42.855022 : -91.40882 : Elkader, IA +52044 : 42.748558 : -91.32445 : Elkport, IA +52045 : 42.451496 : -90.92851 : Epworth, IA +52046 : 42.442226 : -91.00932 : Farley, IA +52047 : 42.959691 : -91.35552 : Farmersburg, IA +52048 : 42.738079 : -91.25078 : Garber, IA +52049 : 42.886672 : -91.19866 : Garnavillo, IA +52050 : 42.603334 : -91.34528 : Greeley, IA +52052 : 42.765031 : -91.11376 : Guttenberg, IA +52053 : 42.631604 : -90.96492 : Holy Cross, IA +52054 : 42.28911 : -90.6341 : La Motte, IA +52055 : 42.862739 : -91.252459 : Littleport, IA +52056 : 42.60483 : -91.07654 : Luxemburg, IA +52057 : 42.484297 : -91.45231 : Manchester, IA +52060 : 42.087769 : -90.67352 : Maquoketa, IA +52064 : 42.092925 : -90.3107 : Miles, IA +52065 : 42.559621 : -91.10572 : New Vienna, IA +52066 : 42.682337 : -90.95239 : North Buena Vista, IA +52068 : 42.431983 : -90.816 : Peosta, IA +52069 : 42.051619 : -90.40762 : Preston, IA +52070 : 42.071239 : -90.20261 : Sabula, IA +52071 : 42.36059 : -90.53879 : Saint Donatus, IA +52072 : 42.927724 : -91.38723 : Saint Olaf, IA +52073 : 42.640962 : -90.82532 : Sherrill, IA +52074 : 42.124141 : -90.4557 : Spragueville, IA +52075 : 42.161997 : -90.47987 : Springbrook, IA +52076 : 42.697689 : -91.51505 : Strawberry Point, IA +52077 : 42.815385 : -91.55738 : Volga, IA +52078 : 42.398112 : -91.12294 : Worthington, IA +52079 : 42.286954 : -90.71627 : Zwingle, IA +52099 : 42.484861 : -90.804116 : Dubuque, IA +52101 : 43.345879 : -91.77187 : Decorah, IA +52131 : 43.47865 : -91.765621 : Burr Oak, IA +52132 : 43.194235 : -91.89585 : Calmar, IA +52133 : 43.119538 : -91.66528 : Castalia, IA +52134 : 43.468995 : -92.40092 : Chester, IA +52135 : 43.00106 : -91.66064 : Clermont, IA +52136 : 43.382021 : -92.10263 : Cresco, IA +52140 : 43.442183 : -91.53338 : Dorchester, IA +52141 : 42.935873 : -91.62785 : Elgin, IA +52142 : 42.834286 : -91.79794 : Fayette, IA +52144 : 43.141414 : -91.94764 : Fort Atkinson, IA +52146 : 43.195154 : -91.16405 : Harpers Ferry, IA +52147 : 42.960176 : -91.95858 : Hawkeye, IA +52149 : 43.463765 : -91.689862 : Highlandville, IA +52151 : 43.358764 : -91.25436 : Lansing, IA +52154 : 43.1101 : -92.15576 : Lawler, IA +52155 : 43.419137 : -92.28859 : Lime Springs, IA +52156 : 43.051922 : -91.45842 : Luana, IA +52157 : 43.019203 : -91.20377 : McGregor, IA +52158 : 43.042838 : -91.18417 : Marquette, IA +52159 : 43.061204 : -91.37925 : Monona, IA +52160 : 43.48058 : -91.30746 : New Albin, IA +52161 : 43.130438 : -91.74913 : Ossian, IA +52162 : 43.104035 : -91.5526 : Postville, IA +52163 : 43.21661 : -92.09219 : Protivin, IA +52164 : 42.839782 : -91.88949 : Randalia, IA +52165 : 43.308213 : -91.97807 : Ridgeway, IA +52166 : 43.069086 : -91.92847 : Saint Lucas, IA +52168 : 43.203977 : -91.95204 : Spillville, IA +52169 : 42.845037 : -91.65943 : Wadena, IA +52170 : 43.212565 : -91.29941 : Waterville, IA +52171 : 43.068101 : -92.05255 : Waucoma, IA +52172 : 43.265791 : -91.47755 : Waukon, IA +52175 : 42.983744 : -91.81803 : West Union, IA +52201 : 41.320371 : -91.54755 : Ainsworth, IA +52202 : 42.158477 : -91.63859 : Alburnett, IA +52203 : 41.808301 : -91.87512 : Amana, IA +52204 : 41.686351 : -92.063603 : Amana, IA +52205 : 42.106972 : -91.27531 : Anamosa, IA +52206 : 41.993799 : -91.86755 : Atkins, IA +52207 : 42.088117 : -90.83793 : Baldwin, IA +52208 : 41.887989 : -92.2727 : Belle Plaine, IA +52209 : 41.911228 : -92.08549 : Blairstown, IA +52210 : 42.32437 : -92.0019 : Brandon, IA +52211 : 41.753372 : -92.45012 : Brooklyn, IA +52212 : 42.115943 : -91.09397 : Center Junction, IA +52213 : 42.193727 : -91.7792 : Center Point, IA +52214 : 42.198823 : -91.5075 : Central City, IA +52215 : 41.914489 : -92.39359 : Chelsea, IA +52216 : 41.888182 : -91.04567 : Clarence, IA +52217 : 42.080758 : -92.40188 : Clutier, IA +52218 : 42.291075 : -91.54024 : Coggon, IA +52219 : 42.235999 : -91.42313 : Prairieburg, IA +52220 : 41.728994 : -91.99748 : Conroy, IA +52221 : 41.640716 : -92.33182 : Guernsey, IA +52222 : 41.575609 : -92.34104 : Deep River, IA +52223 : 42.424914 : -91.33937 : Delhi, IA +52224 : 42.162873 : -92.30485 : Dysart, IA +52225 : 42.011889 : -92.32398 : Elberon, IA +52226 : 41.992936 : -90.7392 : Elwood, IA +52227 : 41.89239 : -91.5666 : Ely, IA +52228 : 41.912296 : -91.78792 : Fairfax, IA +52229 : 42.145175 : -92.1509 : Garrison, IA +52231 : 41.358606 : -92.06066 : Harper, IA +52232 : 41.809975 : -92.32815 : Hartwick, IA +52233 : 42.044409 : -91.68102 : Hiawatha, IA +52235 : 41.55464 : -91.53532 : Hills, IA +52236 : 41.732868 : -91.87587 : Homestead, IA +52237 : 42.346132 : -91.24208 : Hopkinton, IA +52239 : 41.961726 : -92.570891 : Tama, IA +52240 : 41.649867 : -91.52019 : Iowa City, IA +52241 : 41.688215 : -91.58676 : Coralville, IA +52242 : 41.662116 : -91.54143 : Iowa City, IA +52243 : 41.642657 : -91.599974 : Iowa City, IA +52244 : 41.572682 : -91.661901 : Iowa City, IA +52245 : 41.662083 : -91.50834 : Iowa City, IA +52246 : 41.650916 : -91.56058 : Iowa City, IA +52247 : 41.503882 : -91.70969 : Kalona, IA +52248 : 41.341027 : -91.94174 : Keota, IA +52249 : 42.005883 : -92.19669 : Keystone, IA +52251 : 41.741215 : -92.19199 : Ladora, IA +52252 : 42.191979 : -91.225836 : Langworthy, IA +52253 : 41.909156 : -91.36209 : Lisbon, IA +52254 : 41.950398 : -90.8085 : Lost Nation, IA +52255 : 41.86521 : -90.94316 : Lowden, IA +52257 : 41.913959 : -92.17163 : Luzerne, IA +52301 : 41.790216 : -92.07684 : Marengo, IA +52302 : 42.042648 : -91.58262 : Marion, IA +52305 : 42.018441 : -91.35217 : Martelle, IA +52306 : 41.900204 : -91.25428 : Mechanicsville, IA +52307 : 41.790988 : -91.91522 : Middle Amana, IA +52308 : 41.572665 : -92.15933 : Millersburg, IA +52309 : 42.109395 : -90.8869 : Monmouth, IA +52310 : 42.221176 : -91.19335 : Monticello, IA +52312 : 42.006556 : -91.24671 : Morley, IA +52313 : 42.259239 : -92.10136 : Mount Auburn, IA +52314 : 41.929178 : -91.43684 : Mount Vernon, IA +52315 : 41.995899 : -91.96896 : Newhall, IA +52316 : 41.527681 : -92.09326 : North English, IA +52317 : 41.755771 : -91.61238 : North Liberty, IA +52318 : 41.900443 : -91.90704 : Norway, IA +52319 : 41.642657 : -91.599974 : Oakdale, IA +52320 : 42.003337 : -91.14736 : Olin, IA +52321 : 42.134893 : -91.00372 : Onslow, IA +52322 : 41.6896 : -91.76183 : Oxford, IA +52323 : 41.983923 : -90.95702 : Oxford Junction, IA +52324 : 42.065474 : -91.8005 : Palo, IA +52325 : 41.597014 : -91.91805 : Parnell, IA +52326 : 42.394662 : -91.75917 : Quasqueton, IA +52327 : 41.483058 : -91.56899 : Riverside, IA +52328 : 42.073765 : -91.66287 : Robins, IA +52329 : 42.349458 : -91.84325 : Rowley, IA +52330 : 42.338694 : -91.49604 : Ryan, IA +52332 : 42.093056 : -91.88379 : Shellsburg, IA +52333 : 41.809993 : -91.50849 : Solon, IA +52334 : 41.736497 : -91.94243 : South Amana, IA +52335 : 41.449599 : -92.05579 : South English, IA +52336 : 42.0626 : -91.44072 : Springville, IA +52337 : 41.888096 : -91.14794 : Stanwood, IA +52338 : 41.840184 : -91.68552 : Swisher, IA +52339 : 41.95277 : -92.58225 : Tama, IA +52340 : 41.710231 : -91.66955 : Tiffin, IA +52341 : 42.112232 : -91.72605 : Toddville, IA +52342 : 42.02524 : -92.57177 : Toledo, IA +52344 : 42.079415 : -91.599215 : Troy Mills, IA +52345 : 42.222388 : -91.87908 : Urbana, IA +52346 : 42.010556 : -92.08308 : Van Horne, IA +52347 : 41.715992 : -92.29288 : Victor, IA +52348 : 41.990295 : -92.38059 : Vining, IA +52349 : 42.172481 : -92.01595 : Vinton, IA +52350 : 42.091217 : -91.385047 : Viola, IA +52351 : 41.876767 : -91.83532 : Walford, IA +52352 : 42.290421 : -91.77461 : Walker, IA +52353 : 41.300042 : -91.69743 : Washington, IA +52354 : 41.90889 : -91.9818 : Watkins, IA +52355 : 41.459739 : -92.17863 : Webster, IA +52356 : 41.478896 : -91.85354 : Wellman, IA +52358 : 41.680696 : -91.33428 : West Branch, IA +52359 : 41.356493 : -91.81527 : West Chester, IA +52361 : 41.651571 : -92.01394 : Williamsburg, IA +52362 : 42.054649 : -91.00591 : Wyoming, IA +52401 : 41.97545 : -91.65912 : Cedar Rapids, IA +52402 : 42.021016 : -91.65231 : Cedar Rapids, IA +52403 : 41.982201 : -91.61409 : Cedar Rapids, IA +52404 : 41.947335 : -91.68819 : Cedar Rapids, IA +52405 : 41.980283 : -91.70835 : Cedar Rapids, IA +52406 : 42.287191 : -91.777472 : Cedar Rapids, IA +52407 : 42.079415 : -91.599215 : Cedar Rapids, IA +52408 : 42.079415 : -91.599215 : Cedar Rapids, IA +52409 : 42.079415 : -91.599215 : Cedar Rapids, IA +52410 : 42.079415 : -91.599215 : Cedar Rapids, IA +52411 : 42.049941 : -91.72511 : Cedar Rapids, IA +52497 : 42.079415 : -91.599215 : Cedar Rapids, IA +52498 : 42.079415 : -91.599215 : Cedar Rapids, IA +52499 : 42.079415 : -91.599215 : Cedar Rapids, IA +52501 : 41.023872 : -92.41741 : Ottumwa, IA +52530 : 40.995466 : -92.30407 : Agency, IA +52531 : 41.026796 : -92.7984 : Albia, IA +52533 : 41.0255 : -92.15955 : Batavia, IA +52534 : 41.273646 : -92.68082 : Beacon, IA +52535 : 40.86112 : -91.97867 : Birmingham, IA +52536 : 40.947787 : -92.62879 : Blakesburg, IA +52537 : 40.73045 : -92.44441 : Bloomfield, IA +52538 : 40.745286 : -92.408679 : West Grove, IA +52540 : 41.153462 : -91.82082 : Brighton, IA +52542 : 40.649744 : -92.0662 : Cantril, IA +52543 : 41.218744 : -92.51977 : Cedar, IA +52544 : 40.730159 : -92.88994 : Centerville, IA +52548 : 41.085573 : -92.52863 : Chillicothe, IA +52549 : 40.616347 : -92.92738 : Cincinnati, IA +52550 : 41.330967 : -92.34521 : Delta, IA +52551 : 40.798007 : -92.13296 : Douds, IA +52552 : 40.837112 : -92.56458 : Drakesville, IA +52553 : 41.151537 : -92.64227 : Eddyville, IA +52554 : 40.919465 : -92.22521 : Eldon, IA +52555 : 40.648624 : -92.83592 : Exline, IA +52556 : 41.017736 : -91.95 : Fairfield, IA +52557 : 41.016566 : -91.96821 : Fairfield, IA +52560 : 40.852256 : -92.24785 : Floris, IA +52561 : 41.214824 : -92.43864 : Fremont, IA +52562 : 41.26457 : -92.24888 : Hayesville, IA +52563 : 41.17196 : -92.28491 : Hedrick, IA +52565 : 40.747997 : -91.96126 : Keosauqua, IA +52566 : 41.14579 : -92.49948 : Kirkville, IA +52567 : 40.946765 : -92.07173 : Libertyville, IA +52568 : 41.178396 : -92.25004 : Martinsburg, IA +52569 : 40.948022 : -93.02537 : Melrose, IA +52570 : 40.679958 : -92.162 : Milton, IA +52571 : 40.86655 : -92.84446 : Moravia, IA +52572 : 40.679322 : -92.68369 : Moulton, IA +52573 : 40.620468 : -91.93352 : Mount Sterling, IA +52574 : 40.797559 : -92.96436 : Mystic, IA +52576 : 41.201922 : -92.1148 : Ollie, IA +52577 : 41.281669 : -92.65534 : Oskaloosa, IA +52580 : 41.130669 : -92.09695 : Packwood, IA +52581 : 40.792046 : -93.04963 : Plano, IA +52583 : 40.801913 : -93.14736 : Promise City, IA +52584 : 40.66442 : -92.24541 : Pulaski, IA +52585 : 41.194129 : -91.98027 : Richland, IA +52586 : 41.339202 : -92.46875 : Rose Hill, IA +52588 : 40.873769 : -92.13113 : Selma, IA +52590 : 40.673728 : -93.1281 : Seymour, IA +52591 : 41.328837 : -92.19641 : Sigourney, IA +52593 : 40.777917 : -92.73565 : Udell, IA +52594 : 40.833045 : -92.6867 : Unionville, IA +52595 : 41.286619 : -92.61893 : University Park, IA +52601 : 40.814207 : -91.11911 : Burlington, IA +52619 : 40.542869 : -91.57544 : Argyle, IA +52620 : 40.697875 : -91.8051 : Bonaparte, IA +52621 : 41.209047 : -91.53273 : Crawfordsville, IA +52623 : 40.865859 : -91.33459 : Danville, IA +52624 : 40.741062 : -91.33664 : Denmark, IA +52625 : 40.675175 : -91.57393 : Donnellson, IA +52626 : 40.655336 : -91.72385 : Farmington, IA +52627 : 40.637694 : -91.33866 : Fort Madison, IA +52630 : 40.823716 : -91.74754 : Hillsboro, IA +52631 : 40.784287 : -91.60716 : Houghton, IA +52632 : 40.409641 : -91.40001 : Keokuk, IA +52635 : 40.991682 : -91.75175 : Lockridge, IA +52637 : 41.008896 : -91.13674 : Mediapolis, IA +52638 : 40.828014 : -91.25499 : Middletown, IA +52639 : 40.547399 : -91.43864 : Montrose, IA +52640 : 41.09739 : -91.27859 : Morning Sun, IA +52641 : 40.974026 : -91.57195 : Mount Pleasant, IA +52642 : 40.977395 : -91.692312 : Rome, IA +52644 : 41.038005 : -91.39992 : Mount Union, IA +52645 : 40.920995 : -91.39965 : New London, IA +52646 : 41.069373 : -91.01429 : Oakville, IA +52647 : 41.133346 : -91.54559 : Olds, IA +52648 : 40.594704 : -91.415648 : Pilot Grove, IA +52649 : 40.848485 : -91.61691 : Salem, IA +52650 : 40.952014 : -91.16545 : Sperry, IA +52651 : 40.87657 : -91.81242 : Stockport, IA +52652 : 41.103879 : -91.54664 : Swedesburg, IA +52653 : 41.171534 : -91.17035 : Wapello, IA +52654 : 41.141336 : -91.66882 : Wayland, IA +52655 : 40.830534 : -91.17849 : West Burlington, IA +52656 : 40.719775 : -91.47271 : West Point, IA +52657 : 40.758742 : -91.478305 : Saint Paul, IA +52658 : 40.707554 : -91.23415 : Wever, IA +52659 : 41.126832 : -91.44152 : Winfield, IA +52660 : 40.980185 : -91.29172 : Yarmouth, IA +52701 : 41.978834 : -90.25171 : Andover, IA +52706 : 41.509085 : -90.754327 : Blue Grass, IA +52720 : 41.578393 : -91.15931 : Atalissa, IA +52721 : 41.749701 : -90.96586 : Bennett, IA +52722 : 41.551883 : -90.48975 : Bettendorf, IA +52726 : 41.498603 : -90.77596 : Blue Grass, IA +52727 : 41.96264 : -90.32975 : Bryant, IA +52728 : 41.456515 : -90.73252 : Buffalo, IA +52729 : 41.823151 : -90.75572 : Calamus, IA +52730 : 41.780515 : -90.28869 : Camanche, IA +52731 : 41.963196 : -90.47705 : Charlotte, IA +52732 : 41.861633 : -90.21539 : Clinton, IA +52733 : 41.880619 : -90.519519 : Clinton, IA +52736 : 41.880619 : -90.519519 : Clinton, IA +52737 : 41.259329 : -91.37449 : Columbus City, IA +52738 : 41.265956 : -91.3677 : Columbus Junction, IA +52739 : 41.378166 : -91.36693 : Conesville, IA +52742 : 41.825848 : -90.52951 : De Witt, IA +52745 : 41.73542 : -90.77717 : Dixon, IA +52746 : 41.712643 : -90.68748 : Donahue, IA +52747 : 41.603249 : -90.91015 : Durant, IA +52748 : 41.659064 : -90.56866 : Eldridge, IA +52749 : 41.355531 : -91.12994 : Fruitland, IA +52750 : 41.926933 : -90.41181 : Goose Lake, IA +52751 : 41.836317 : -90.67008 : Grand Mound, IA +52752 : 41.277239 : -91.18897 : Grandview, IA +52753 : 41.609382 : -90.35986 : Le Claire, IA +52754 : 41.349983 : -91.24664 : Letts, IA +52755 : 41.476534 : -91.43307 : Lone Tree, IA +52756 : 41.732418 : -90.53286 : Long Grove, IA +52757 : 41.801711 : -90.35223 : Low Moor, IA +52758 : 41.744689 : -90.44392 : McCausland, IA +52759 : 41.462494 : -90.808767 : Montpelier, IA +52760 : 41.57371 : -91.08369 : Moscow, IA +52761 : 41.413372 : -91.00612 : Muscatine, IL +52765 : 41.720483 : -90.86944 : New Liberty, IA +52766 : 41.473955 : -91.31035 : Nichols, IA +52767 : 41.56823 : -90.4191 : Pleasant Valley, IA +52768 : 41.677679 : -90.37338 : Princeton, IA +52769 : 41.594283 : -90.8469 : Stockton, IA +52771 : 41.999113 : -90.218704 : Teeds Grove, IA +52772 : 41.750868 : -91.13361 : Tipton, IA +52773 : 41.617234 : -90.75849 : Walcott, IA +52774 : 41.907575 : -90.59624 : Welton, IA +52776 : 41.573818 : -91.26586 : West Liberty, IA +52777 : 41.843587 : -90.86097 : Wheatland, IA +52778 : 41.604559 : -91.00644 : Wilton, IA +52801 : 41.522832 : -90.57503 : Davenport, IA +52802 : 41.513182 : -90.61672 : Davenport, IA +52803 : 41.538582 : -90.56223 : Davenport, IA +52804 : 41.546931 : -90.61964 : Davenport, IA +52805 : 41.613034 : -90.606284 : Davenport, IA +52806 : 41.574581 : -90.60303 : Davenport, IA +52807 : 41.565433 : -90.53924 : Davenport, IA +52808 : 41.613034 : -90.606284 : Davenport, IA +52809 : 41.613034 : -90.606284 : Davenport, IA +52820 : 42.689339 : -90.682257 : Tennyson, WI +53001 : 43.61014 : -88.03047 : Adell, WI +53002 : 43.461969 : -88.36432 : Allenton, WI +53003 : 43.211067 : -88.51649 : Ashippun, WI +53004 : 43.498943 : -87.86211 : Belgium, WI +53005 : 43.060872 : -88.09478 : Brookfield, WI +53006 : 43.623996 : -88.51089 : Brownsville, WI +53007 : 43.10836 : -88.06893 : Butler, WI +53008 : 43.018696 : -88.302997 : Brookfield, WI +53009 : 43.76983 : -88.494357 : Byron, WI +53010 : 43.602787 : -88.2653 : Campbellsport, WI +53011 : 43.657079 : -88.08008 : Cascade, WI +53012 : 43.305412 : -87.99794 : Cedarburg, WI +53013 : 43.575272 : -87.84597 : Cedar Grove, WI +53014 : 44.033215 : -88.17626 : Chilton, WI +53015 : 43.914168 : -87.76689 : Cleveland, WI +53016 : 43.313002 : -88.71989 : Clyman, WI +53017 : 43.199526 : -88.26177 : Colgate, WI +53018 : 43.05348 : -88.39844 : Delafield, WI +53019 : 43.699527 : -88.32233 : Eden, WI +53020 : 43.85255 : -88.01085 : Elkhart Lake, WI +53021 : 43.483263 : -87.98908 : Fredonia, WI +53022 : 43.219155 : -88.12043 : Germantown, WI +53023 : 43.777582 : -88.10103 : Glenbeulah, WI +53024 : 43.32546 : -87.94573 : Grafton, WI +53026 : 43.718294 : -87.618716 : Greenbush, WI +53027 : 43.313361 : -88.37332 : Hartford, WI +53029 : 43.132743 : -88.34737 : Hartland, WI +53031 : 43.639395 : -87.915705 : Hingham, WI +53032 : 43.446666 : -88.62795 : Horicon, WI +53033 : 43.233282 : -88.2396 : Hubertus, WI +53034 : 43.345528 : -88.60135 : Hustisford, WI +53035 : 43.395861 : -88.53606 : Iron Ridge, WI +53036 : 43.178685 : -88.5739 : Ixonia, WI +53037 : 43.322213 : -88.17011 : Jackson, WI +53038 : 43.075784 : -88.77595 : Johnson Creek, WI +53039 : 43.378828 : -88.70876 : Juneau, WI +53040 : 43.52413 : -88.19215 : Kewaskum, WI +53042 : 43.924095 : -88.00285 : Kiel, WI +53044 : 43.740794 : -87.78303 : Kohler, WI +53045 : 43.055315 : -88.1503 : Brookfield, WI +53046 : 43.153447 : -88.16124 : Lannon, WI +53047 : 43.257364 : -88.62873 : Lebanon, WI +53048 : 43.584926 : -88.44594 : Lomira, WI +53049 : 43.887372 : -88.28802 : Malone, WI +53050 : 43.499518 : -88.53911 : Mayville, WI +53051 : 43.151183 : -88.11034 : Menomonee Falls, WI +53052 : 43.018696 : -88.302997 : Menomonee Falls, WI +53056 : 43.146023 : -88.30975 : Merton, WI +53057 : 43.80576 : -88.25436 : Mount Calvary, WI +53058 : 43.108775 : -88.40276 : Nashotah, WI +53059 : 43.289159 : -88.52623 : Neosho, WI +53060 : 43.433807 : -88.062338 : Newburg, WI +53061 : 43.949961 : -88.09962 : New Holstein, WI +53062 : 44.067942 : -88.223131 : New Holstein, WI +53063 : 43.97207 : -87.7766 : Newton, WI +53064 : 43.018696 : -88.302997 : North Lake, WI +53065 : 43.689915 : -88.56586 : Oakfield, WI +53066 : 43.108241 : -88.48935 : Oconomowoc, WI +53069 : 43.114118 : -88.43771 : Okauchee, WI +53070 : 43.622793 : -87.80364 : Oostburg, WI +53072 : 43.076953 : -88.268 : Pewaukee, WI +53073 : 43.758674 : -87.98005 : Plymouth, WI +53074 : 43.40181 : -87.88001 : Port Washington, WI +53075 : 43.564477 : -87.99094 : Random Lake, WI +53076 : 43.265289 : -88.20144 : Richfield, WI +53078 : 43.3182 : -88.45169 : Rubicon, WI +53079 : 43.808108 : -88.18164 : Saint Cloud, WI +53080 : 43.394676 : -87.95887 : Saukville, WI +53081 : 43.736145 : -87.72893 : Sheboygan, WI +53082 : 43.718294 : -87.618716 : Sheboygan, WI +53083 : 43.797567 : -87.75664 : Sheboygan, WI +53085 : 43.731685 : -87.83406 : Sheboygan Falls, WI +53086 : 43.33278 : -88.27907 : Slinger, WI +53088 : 44.075128 : -88.30106 : Stockbridge, WI +53089 : 43.14004 : -88.22641 : Sussex, WI +53090 : 43.446623 : -88.17879 : West Bend, WI +53091 : 43.502688 : -88.43299 : Theresa, WI +53092 : 43.223907 : -87.95085 : Thiensville, WI +53093 : 43.665399 : -87.94735 : Waldo, WI +53094 : 43.170606 : -88.73058 : Watertown, WI +53095 : 43.40328 : -88.18026 : West Bend, WI +53097 : 43.234506 : -88.00914 : Mequon, WI +53098 : 43.231506 : -88.70634 : Watertown, WI +53099 : 43.414202 : -88.704914 : Woodland, WI +53101 : 42.58098 : -87.662878 : Bassett, WI +53102 : 42.500141 : -88.079983 : Benet Lake, WI +53103 : 42.886982 : -88.20955 : Big Bend, WI +53104 : 42.551693 : -88.04908 : Bristol, WI +53105 : 42.662671 : -88.28132 : Burlington, WI +53108 : 42.825711 : -87.94293 : Caledonia, WI +53109 : 42.535968 : -88.144386 : Camp Lake, WI +53110 : 42.948416 : -87.86101 : Cudahy, WI +53114 : 42.60027 : -88.74978 : Darien, WI +53115 : 42.63427 : -88.6383 : Delavan, WI +53118 : 42.991622 : -88.47085 : Dousman, WI +53119 : 42.881035 : -88.47117 : Eagle, WI +53120 : 42.797775 : -88.40435 : East Troy, WI +53121 : 42.711105 : -88.54214 : Elkhorn, WI +53122 : 43.050762 : -88.0842 : Elm Grove, WI +53125 : 42.546003 : -88.56234 : Fontana, WI +53126 : 42.778642 : -87.96609 : Franksville, WI +53127 : 42.960098 : -88.374455 : Genesee Depot, WI +53128 : 42.526028 : -88.33443 : Genoa City, WI +53129 : 42.937448 : -87.99839 : Greendale, WI +53130 : 42.941264 : -88.05121 : Hales Corners, WI +53132 : 42.896145 : -88.00891 : Franklin, WI +53134 : 42.560001 : -88.594815 : Walworth, WI +53137 : 43.000999 : -88.66382 : Helenville, WI +53138 : 42.66749 : -88.541721 : Honey Creek, WI +53139 : 42.691937 : -88.12599 : Kansasville, WI +53140 : 42.60217 : -87.82979 : Kenosha, WI +53141 : 42.58098 : -87.662878 : Kenosha, WI +53142 : 42.559823 : -87.87878 : Kenosha, WI +53143 : 42.56427 : -87.83043 : Kenosha, WI +53144 : 42.601842 : -87.87617 : Kenosha, WI +53146 : 42.973663 : -88.15414 : New Berlin, WI +53147 : 42.587613 : -88.45828 : Lake Geneva, WI +53148 : 42.649557 : -88.35965 : Lyons, WI +53149 : 42.872477 : -88.34409 : Mukwonago, WI +53150 : 42.901235 : -88.12464 : Muskego, WI +53151 : 42.980163 : -88.09438 : New Berlin, WI +53152 : 42.574616 : -88.232632 : New Munster, WI +53153 : 42.935259 : -88.40501 : North Prairie, WI +53154 : 42.884347 : -87.8992 : Oak Creek, WI +53156 : 42.879242 : -88.58987 : Palmyra, WI +53157 : 42.540048 : -88.358167 : Pell Lake, WI +53158 : 42.529075 : -87.87201 : Pleasant Prairie, WI +53159 : 42.555695 : -88.296914 : Powers Lake, WI +53167 : 42.742629 : -88.22308 : Rochester, WI +53168 : 42.573081 : -88.12444 : Salem, WI +53170 : 42.550263 : -88.17065 : Silver Lake, WI +53171 : 42.642298 : -87.903161 : Somers, WI +53172 : 42.909816 : -87.86395 : South Milwaukee, WI +53176 : 42.642223 : -88.41179 : Springfield, WI +53177 : 42.699169 : -87.91692 : Sturtevant, WI +53178 : 43.015999 : -88.59572 : Sullivan, WI +53179 : 42.515668 : -88.13454 : Trevor, WI +53181 : 42.515596 : -88.25761 : Twin Lakes, WI +53182 : 42.696322 : -88.04658 : Union Grove, WI +53183 : 43.002534 : -88.37771 : Wales, WI +53184 : 42.532636 : -88.59862 : Walworth, WI +53185 : 42.798555 : -88.19409 : Waterford, WI +53186 : 43.015289 : -88.20924 : Waukesha, WI +53187 : 43.018696 : -88.302997 : Waukesha, WI +53188 : 43.020762 : -88.26852 : Waukesha, WI +53189 : 42.967394 : -88.264 : Waukesha, WI +53190 : 42.818747 : -88.73279 : Whitewater, WI +53191 : 42.573162 : -88.54021 : Williams Bay, WI +53192 : 42.511818 : -88.18285 : Wilmot, WI +53194 : 42.58098 : -87.662878 : Woodworth, WI +53195 : 42.512403 : -88.48262 : Zenda, WI +53197 : 42.566752 : -88.56557 : Walworth, WI +53201 : 43.011264 : -87.958409 : Milwaukee, WI +53202 : 43.046213 : -87.9005 : Milwaukee, WI +53203 : 43.037963 : -87.91548 : Milwaukee, WI +53204 : 43.017414 : -87.92625 : Milwaukee, WI +53205 : 43.053763 : -87.93473 : Milwaukee, WI +53206 : 43.076179 : -87.93476 : Milwaukee, WI +53207 : 42.985465 : -87.89998 : Milwaukee, WI +53208 : 43.047863 : -87.96618 : Milwaukee, WI +53209 : 43.11941 : -87.94727 : Milwaukee, WI +53210 : 43.068962 : -87.97423 : Milwaukee, WI +53211 : 43.083012 : -87.8859 : Milwaukee, WI +53212 : 43.072062 : -87.9103 : Milwaukee, WI +53213 : 43.049012 : -88.00012 : Milwaukee, WI +53214 : 43.020363 : -88.01273 : Milwaukee, WI +53215 : 42.999364 : -87.94343 : Milwaukee, WI +53216 : 43.086711 : -87.9749 : Milwaukee, WI +53217 : 43.14351 : -87.90894 : Milwaukee, WI +53218 : 43.11096 : -87.99436 : Milwaukee, WI +53219 : 42.996614 : -87.99213 : Milwaukee, WI +53220 : 42.969115 : -87.99141 : Milwaukee, WI +53221 : 42.953915 : -87.9457 : Milwaukee, WI +53222 : 43.083261 : -88.02823 : Milwaukee, WI +53223 : 43.163692 : -87.98717 : Milwaukee, WI +53224 : 43.153865 : -88.04032 : Milwaukee, WI +53225 : 43.11576 : -88.04121 : Milwaukee, WI +53226 : 43.048545 : -88.04239 : Milwaukee, WI +53227 : 42.997647 : -88.03717 : Milwaukee, WI +53228 : 42.966681 : -88.03798 : Milwaukee, WI +53233 : 43.037313 : -87.93373 : Milwaukee, WI +53234 : 43.017412 : -87.569664 : Milwaukee, WI +53235 : 42.971156 : -87.87452 : Saint Francis, WI +53237 : 43.017412 : -87.569664 : Milwaukee, WI +53245 : 44.056094 : -87.985595 : Eaton, WI +53259 : 43.038663 : -87.913934 : Milwaukee, WI +53263 : 43.074583 : -88.06044 : Milwaukee, WI +53267 : 43.044013 : -87.909834 : Milwaukee, WI +53268 : 43.038513 : -87.909584 : Milwaukee, WI +53270 : 43.038763 : -87.903634 : Milwaukee, WI +53274 : 43.017412 : -87.569664 : Milwaukee, WI +53277 : 43.038863 : -87.902384 : Milwaukee, WI +53278 : 43.038863 : -87.902384 : Milwaukee, WI +53280 : 43.040963 : -87.957786 : Milwaukee, WI +53281 : 43.040963 : -87.957786 : Milwaukee, WI +53284 : 43.017412 : -87.569664 : Milwaukee, WI +53285 : 43.017412 : -87.569664 : Milwaukee, WI +53288 : 43.040613 : -87.909784 : Milwaukee, WI +53290 : 43.037263 : -87.914034 : Milwaukee, WI +53293 : 43.040813 : -87.919135 : Milwaukee, WI +53295 : 43.017412 : -87.569664 : Milwaukee, WI +53401 : 42.727153 : -87.675979 : Racine, WI +53402 : 42.767286 : -87.79747 : Racine, WI +53403 : 42.704519 : -87.80062 : Racine, WI +53404 : 42.743169 : -87.80534 : Racine, WI +53405 : 42.714369 : -87.82424 : Racine, WI +53406 : 42.730807 : -87.85827 : Racine, WI +53407 : 42.731224 : -87.782818 : Racine, WI +53408 : 42.727153 : -87.675979 : Racine, WI +53449 : 42.999481 : -88.782526 : Jefferson, WI +53490 : 42.727153 : -87.675979 : Racine, WI +53501 : 42.605454 : -89.070448 : Afton, WI +53502 : 42.71815 : -89.44315 : Albany, WI +53503 : 43.150122 : -89.92545 : Arena, WI +53504 : 42.698173 : -89.85736 : Argyle, WI +53505 : 42.642661 : -88.82547 : Avalon, WI +53506 : 43.15498 : -90.28594 : Avoca, WI +53507 : 43.008697 : -89.90117 : Barneveld, WI +53508 : 42.865397 : -89.55461 : Belleville, WI +53510 : 42.729814 : -90.31984 : Belmont, WI +53511 : 42.526464 : -89.04291 : Beloit, WI +53512 : 42.669779 : -89.072779 : Beloit, WI +53515 : 43.131939 : -89.7438 : Black Earth, WI +53516 : 42.802663 : -89.85943 : Blanchardville, WI +53517 : 43.031138 : -89.83672 : Blue Mounds, WI +53518 : 43.23854 : -90.59683 : Blue River, WI +53520 : 42.613107 : -89.37364 : Brodhead, WI +53521 : 42.839241 : -89.40088 : Brooklyn, WI +53522 : 42.552731 : -89.79624 : Browntown, WI +53523 : 42.99273 : -89.02274 : Cambridge, WI +53525 : 42.551253 : -88.85412 : Clinton, WI +53526 : 42.970855 : -90.33452 : Cobb, WI +53527 : 43.073751 : -89.1967 : Cottage Grove, WI +53528 : 43.116408 : -89.64371 : Cross Plains, WI +53529 : 43.228109 : -89.53605 : Dane, WI +53530 : 42.686745 : -90.10983 : Darlington, WI +53531 : 43.055415 : -89.09349 : Deerfield, WI +53532 : 43.240098 : -89.33659 : De Forest, WI +53533 : 42.974296 : -90.14404 : Dodgeville, WI +53534 : 42.841688 : -89.07223 : Edgerton, WI +53535 : 43.011323 : -90.133932 : Edmund, WI +53536 : 42.772516 : -89.2802 : Evansville, WI +53537 : 42.668944 : -89.20998 : Footville, WI +53538 : 42.924942 : -88.84813 : Fort Atkinson, WI +53540 : 43.222854 : -90.2935 : Gotham, WI +53541 : 42.572413 : -90.02605 : Gratiot, WI +53542 : 42.632325 : -89.15942 : Hanover, WI +53543 : 43.043206 : -90.35954 : Highland, WI +53544 : 42.878192 : -89.92864 : Hollandale, WI +53545 : 42.69146 : -89.04277 : Janesville, WI +53546 : 42.666761 : -88.99528 : Janesville, WI +53547 : 42.729359 : -89.030111 : Janesville, WI +53549 : 42.993905 : -88.79321 : Jefferson, WI +53550 : 42.567333 : -89.49397 : Juda, WI +53551 : 43.082761 : -88.90838 : Lake Mills, WI +53553 : 42.92239 : -90.28554 : Linden, WI +53554 : 42.906219 : -90.42574 : Livingston, WI +53555 : 43.325153 : -89.56074 : Lodi, WI +53556 : 43.213963 : -90.23909 : Lone Rock, WI +53557 : 43.339823 : -88.79719 : Lowell, WI +53558 : 43.015498 : -89.28954 : McFarland, WI +53559 : 43.172619 : -89.07464 : Marshall, WI +53560 : 43.177861 : -89.78012 : Mazomanie, WI +53561 : 43.37262 : -89.69418 : Merrimac, WI +53562 : 43.103711 : -89.51106 : Middleton, WI +53563 : 42.778497 : -88.95595 : Milton, WI +53565 : 42.852038 : -90.1745 : Mineral Point, WI +53566 : 42.603462 : -89.64037 : Monroe, WI +53569 : 42.989241 : -90.43855 : Montfort, WI +53570 : 42.745346 : -89.61455 : Monticello, WI +53571 : 43.277409 : -89.35853 : Morrisonville, WI +53572 : 42.985255 : -89.73647 : Mount Horeb, WI +53573 : 43.1914 : -90.45655 : Muscoda, WI +53574 : 42.81636 : -89.64075 : New Glarus, WI +53575 : 42.929208 : -89.38478 : Oregon, WI +53576 : 42.635236 : -89.24268 : Orfordville, WI +53577 : 43.302123 : -90.07619 : Plain, WI +53578 : 43.318318 : -89.74928 : Prairie Du Sac, WI +53579 : 43.296299 : -88.86721 : Reeseville, WI +53580 : 42.85044 : -90.37608 : Rewey, WI +53581 : 43.361048 : -90.40776 : Richland Center, WI +53582 : 43.020516 : -89.97928 : Ridgeway, WI +53583 : 43.267183 : -89.76912 : Sauk City, WI +53584 : 43.279435 : -90.287566 : Sextonville, WI +53585 : 42.518695 : -88.7226 : Sharon, WI +53586 : 42.5744 : -90.23935 : Shullsburg, WI +53587 : 42.584521 : -89.9026 : South Wayne, WI +53588 : 43.174503 : -90.07267 : Spring Green, WI +53589 : 42.926473 : -89.22432 : Stoughton, WI +53590 : 43.189953 : -89.2253 : Sun Prairie, WI +53591 : 43.06956 : -89.423861 : Sun Prairie, WI +53593 : 42.988593 : -89.55543 : Verona, WI +53594 : 43.18584 : -88.97553 : Waterloo, WI +53595 : 42.976078 : -90.141299 : Dodgeville, WI +53596 : 43.192403 : -89.26288 : Sun Prairie, WI +53597 : 43.182873 : -89.45408 : Waunakee, WI +53598 : 43.21352 : -89.34203 : Windsor, WI +53599 : 42.649309 : -89.862202 : Woodford, WI +53648 : 42.547163 : -88.079487 : Salem, WI +53698 : 43.680522 : -90.26952 : Union Center, WI +53701 : 43.06956 : -89.423861 : Madison, WI +53702 : 43.06956 : -89.423861 : Madison, WI +53703 : 43.078646 : -89.37727 : Madison, WI +53704 : 43.121416 : -89.34968 : Madison, WI +53705 : 43.073395 : -89.45049 : Madison, WI +53706 : 43.074296 : -89.40774 : Madison, WI +53707 : 43.06956 : -89.423861 : Madison, WI +53708 : 43.06956 : -89.423861 : Madison, WI +53709 : 43.06956 : -89.423861 : Madison, WI +53710 : 43.06956 : -89.423861 : Madison, WI +53711 : 43.036696 : -89.44499 : Madison, WI +53713 : 43.037647 : -89.39154 : Madison, WI +53714 : 43.099861 : -89.31786 : Madison, WI +53715 : 43.061546 : -89.40024 : Madison, WI +53716 : 43.065621 : -89.32085 : Madison, WI +53717 : 43.072994 : -89.51992 : Madison, WI +53718 : 43.095178 : -89.2704 : Madison, WI +53719 : 43.029497 : -89.50531 : Madison, WI +53725 : 43.06956 : -89.423861 : Madison, WI +53726 : 43.06956 : -89.423861 : Madison, WI +53744 : 43.06956 : -89.423861 : Madison, WI +53777 : 43.06956 : -89.423861 : Madison, WI +53778 : 43.06956 : -89.423861 : Madison, WI +53779 : 43.098202 : -89.324196 : Madison, WI +53780 : 43.06956 : -89.423861 : Madison, WI +53782 : 43.06956 : -89.423861 : Madison, WI +53783 : 43.15955 : -89.285235 : Madison, WI +53784 : 43.048908 : -89.338447 : Madison, WI +53785 : 43.06956 : -89.423861 : Madison, WI +53786 : 43.06956 : -89.423861 : Madison, WI +53787 : 43.06956 : -89.423861 : Madison, WI +53788 : 43.076691 : -89.37632 : Madison, WI +53789 : 43.06956 : -89.423861 : Madison, WI +53790 : 43.06956 : -89.423861 : Madison, WI +53791 : 43.06956 : -89.423861 : Madison, WI +53792 : 43.06956 : -89.423861 : Madison, WI +53793 : 43.06956 : -89.423861 : Madison, WI +53794 : 43.06956 : -89.423861 : Madison, WI +53801 : 42.922835 : -91.09378 : Bagley, WI +53802 : 42.873625 : -90.936354 : Beetown, WI +53803 : 42.563769 : -90.36783 : Benton, WI +53804 : 42.873162 : -90.91222 : Bloomington, WI +53805 : 43.136963 : -90.69831 : Boscobel, WI +53806 : 42.734625 : -90.95124 : Cassville, WI +53807 : 42.607138 : -90.44812 : Cuba City, WI +53808 : 42.627951 : -90.5939 : Dickeyville, WI +53809 : 42.98995 : -90.63483 : Fennimore, WI +53810 : 42.818053 : -90.9931 : Glen Haven, WI +53811 : 42.532592 : -90.49997 : Hazel Green, WI +53812 : 42.859325 : -90.791337 : Kieler, WI +53813 : 42.847591 : -90.70167 : Lancaster, WI +53816 : 42.996023 : -90.85263 : Mount Hope, WI +53817 : 42.941786 : -90.97564 : Patch Grove, WI +53818 : 42.743948 : -90.48625 : Platteville, WI +53820 : 42.695285 : -90.69309 : Potosi, WI +53821 : 43.036566 : -91.11838 : Prairie Du Chien, WI +53824 : 42.859325 : -90.791337 : Sinsinawa, WI +53825 : 42.928048 : -90.56703 : Stitzer, WI +53826 : 43.124756 : -90.90828 : Wauzeka, WI +53827 : 43.063729 : -90.82292 : Woodman, WI +53886 : 42.522232 : -90.340446 : New Diggings, WI +53901 : 43.549851 : -89.47101 : Portage, WI +53910 : 43.908737 : -89.80722 : Adams, WI +53911 : 43.321005 : -89.36681 : Arlington, WI +53913 : 43.483503 : -89.74753 : Baraboo, WI +53916 : 43.456814 : -88.84058 : Beaver Dam, WI +53917 : 43.414202 : -88.704914 : Beaver Dam, WI +53919 : 43.734566 : -88.78585 : Brandon, WI +53920 : 43.660412 : -89.59309 : Briggsville, WI +53922 : 43.518602 : -88.71347 : Burnett, WI +53923 : 43.559975 : -89.13762 : Cambria, WI +53924 : 43.503482 : -90.26902 : Cazenovia, WI +53925 : 43.340383 : -89.04091 : Columbus, WI +53926 : 43.664224 : -89.19684 : Dalton, WI +53927 : 43.95546 : -89.941771 : Dellwood, WI +53928 : 43.426936 : -89.14912 : Doylestown, WI +53929 : 43.752732 : -90.2853 : Elroy, WI +53930 : 43.691602 : -89.48924 : Endeavor, WI +53931 : 43.740108 : -88.86812 : Fairwater, WI +53932 : 43.407179 : -89.05837 : Fall River, WI +53933 : 43.566325 : -88.90158 : Fox Lake, WI +53934 : 43.967604 : -89.85287 : Friendship, WI +53935 : 43.588986 : -89.06787 : Friesland, WI +53936 : 43.868852 : -89.70736 : Grand Marsh, WI +53937 : 43.378638 : -90.15726 : Hillpoint, WI +53939 : 43.693508 : -89.12856 : Kingston, WI +53940 : 43.589593 : -89.79306 : Lake Delton, WI +53941 : 43.579867 : -90.13608 : La Valle, WI +53942 : 43.468211 : -90.161478 : Lime Ridge, WI +53943 : 43.401354 : -90.04308 : Loganville, WI +53944 : 43.705113 : -89.89911 : Lyndon Station, WI +53946 : 43.727646 : -89.02574 : Markesan, WI +53947 : 43.747501 : -89.1405 : Marquette, WI +53948 : 43.783534 : -90.0566 : Mauston, WI +53949 : 43.792518 : -89.34061 : Montello, WI +53950 : 43.90147 : -90.13777 : New Lisbon, WI +53951 : 43.393526 : -89.84489 : North Freedom, WI +53952 : 43.776098 : -89.60323 : Oxford, WI +53953 : 43.765621 : -89.45736 : Packwaukee, WI +53954 : 43.522529 : -89.32342 : Pardeeville, WI +53955 : 43.404191 : -89.4171 : Poynette, WI +53956 : 43.544491 : -89.01137 : Randolph, WI +53957 : 43.535249 : -89.006845 : Randolph, WI +53958 : 43.393767 : -89.95589 : Reedsburg, WI +53959 : 43.53414 : -89.99183 : Reedsburg, WI +53960 : 43.442214 : -89.24134 : Rio, WI +53961 : 43.469055 : -89.93827 : Rock Springs, WI +53962 : 43.685137 : -90.26578 : Union Center, WI +53963 : 43.633781 : -88.7351 : Waupun, WI +53964 : 43.907282 : -89.49412 : Westfield, WI +53965 : 43.645603 : -89.78104 : Wisconsin Dells, WI +53968 : 43.648089 : -90.24377 : Wonewoc, WI +53969 : 43.49534 : -89.30897 : Wyocena, WI +53981 : 43.412658 : -90.274101 : Willow, WI +53995 : 43.39269 : -89.404154 : Poynette, WI +54001 : 45.326339 : -92.37857 : Amery, WI +54002 : 44.96915 : -92.37326 : Baldwin, WI +54003 : 44.782907 : -92.44657 : Beldenville, WI +54004 : 45.319095 : -92.13016 : Clayton, WI +54005 : 45.237727 : -92.22901 : Clear Lake, WI +54006 : 45.586187 : -92.64165 : Cushing, WI +54007 : 45.189667 : -92.37018 : Deer Park, WI +54009 : 45.351585 : -92.60246 : Dresser, WI +54010 : 44.734759 : -92.465532 : East Ellsworth, WI +54011 : 44.718955 : -92.46651 : Ellsworth, WI +54012 : 45.115377 : -92.28686 : Emerald, WI +54013 : 45.06461 : -92.18504 : Glenwood City, WI +54014 : 44.626915 : -92.548 : Hager City, WI +54015 : 44.957487 : -92.44589 : Hammond, WI +54016 : 44.978518 : -92.71996 : Hudson, WI +54017 : 45.122052 : -92.53691 : New Richmond, WI +54020 : 45.299735 : -92.64222 : Osceola, WI +54021 : 44.752662 : -92.77958 : Prescott, WI +54022 : 44.854636 : -92.61729 : River Falls, WI +54023 : 44.970887 : -92.5478 : Roberts, WI +54024 : 45.469339 : -92.62088 : Saint Croix Falls, WI +54025 : 45.142151 : -92.6819 : Somerset, WI +54026 : 45.221875 : -92.53507 : Star Prairie, WI +54027 : 44.938989 : -92.18637 : Wilson, WI +54028 : 44.944206 : -92.27961 : Woodville, WI +54034 : 43.690997 : -90.478904 : Forest, WI +54035 : 43.747687 : -88.418643 : Fond du Lac, WI +54052 : 43.489717 : -90.712433 : Kickapoo, WI +54061 : 44.393405 : -88.72588 : New London, WI +54082 : 45.068411 : -92.74248 : Saint Joseph, WI +54101 : 44.788898 : -88.04535 : Abrams, WI +54102 : 45.503625 : -88.08108 : Amberg, WI +54103 : 45.655708 : -88.48292 : Armstrong Creek, WI +54104 : 45.428789 : -88.25278 : Athelstane, WI +54106 : 44.472424 : -88.45746 : Black Creek, WI +54107 : 44.710588 : -88.45159 : Bonduel, WI +54110 : 44.179504 : -88.07449 : Brillion, WI +54111 : 44.826617 : -88.4018 : Cecil, WI +54112 : 45.054842 : -88.0547 : Coleman, WI +54113 : 44.264904 : -88.312 : Combined Locks, WI +54114 : 45.245131 : -88.1504 : Crivitz, WI +54115 : 44.42042 : -88.07896 : De Pere, WI +54119 : 45.613142 : -88.17458 : Dunbar, WI +54120 : 45.755118 : -88.43264 : Fence, WI +54121 : 45.873589 : -88.27342 : Florence, WI +54123 : 44.205239 : -88.15899 : Forest Junction, WI +54124 : 44.904959 : -88.37822 : Gillett, WI +54125 : 45.634252 : -88.33667 : Goodman, WI +54126 : 44.291766 : -88.05059 : Greenleaf, WI +54127 : 44.795823 : -88.26895 : Green Valley, WI +54128 : 44.860223 : -88.79585 : Gresham, WI +54129 : 44.131149 : -88.19443 : Hilbert, WI +54130 : 44.293197 : -88.25922 : Kaukauna, WI +54131 : 44.416326 : -88.464873 : Freedom, WI +54135 : 44.901909 : -88.59535 : Keshena, WI +54136 : 44.268387 : -88.33656 : Kimberly, WI +54137 : 44.76022 : -88.25467 : Krakow, WI +54138 : 45.312629 : -88.47583 : Lakewood, WI +54139 : 44.943923 : -88.06843 : Lena, WI +54140 : 44.286637 : -88.31001 : Little Chute, WI +54141 : 44.728341 : -88.00712 : Little Suamico, WI +54143 : 45.092448 : -87.64929 : Marinette, WI +54149 : 45.204046 : -88.51121 : Mountain, WI +54150 : 44.984514 : -88.85947 : Neopit, WI +54151 : 45.732689 : -87.96996 : Niagara, WI +54152 : 44.565437 : -88.46717 : Nichols, WI +54153 : 44.886571 : -87.89935 : Oconto, WI +54154 : 44.86802 : -88.16446 : Oconto Falls, WI +54155 : 44.52284 : -88.18008 : Oneida, WI +54156 : 45.595032 : -87.95018 : Pembine, WI +54157 : 45.057605 : -87.77449 : Peshtigo, WI +54159 : 45.207353 : -87.80061 : Porterfield, WI +54160 : 44.1196 : -88.09784 : Potter, WI +54161 : 45.116325 : -88.16811 : Pound, WI +54162 : 44.65711 : -88.24208 : Pulaski, WI +54165 : 44.51523 : -88.31075 : Seymour, WI +54166 : 44.779241 : -88.60636 : Shawano, WI +54169 : 44.173538 : -88.27525 : Sherwood, WI +54170 : 44.506022 : -88.56461 : Shiocton, WI +54171 : 44.718335 : -88.10117 : Sobieski, WI +54173 : 44.640367 : -88.03732 : Suamico, WI +54174 : 45.047766 : -88.37913 : Suring, WI +54175 : 45.30942 : -88.61753 : Townsend, WI +54177 : 45.370117 : -87.87769 : Wausaukee, WI +54180 : 44.325856 : -88.16205 : Wrightstown, WI +54182 : 44.731453 : -88.369842 : Zachow, WI +54201 : 44.613604 : -87.46502 : Algoma, WI +54202 : 45.059668 : -87.13196 : Baileys Harbor, WI +54203 : 44.109853 : -87.483874 : Branch, WI +54204 : 44.753401 : -87.64628 : Brussels, WI +54205 : 44.58906 : -87.62271 : Casco, WI +54206 : 44.237283 : -87.801108 : Kossuth, WI +54207 : 44.086144 : -87.98331 : Collins, WI +54208 : 44.358527 : -87.79747 : Denmark, WI +54209 : 45.027668 : -87.28234 : Egg Harbor, WI +54210 : 45.271782 : -87.04561 : Ellison Bay, WI +54211 : 45.158078 : -87.16796 : Ephraim, WI +54212 : 45.146473 : -87.24154 : Fish Creek, WI +54213 : 44.693392 : -87.51197 : Forestville, WI +54214 : 44.200758 : -87.71974 : Francis Creek, WI +54215 : 44.224851 : -87.79943 : Kellnersville, WI +54216 : 44.456022 : -87.54429 : Kewaunee, WI +54217 : 44.55681 : -87.71413 : Luxemburg, WI +54220 : 44.096194 : -87.68919 : Manitowoc, WI +54221 : 44.132295 : -87.599031 : Manitowoc, WI +54226 : 45.059713 : -87.006012 : Maplewood, WI +54227 : 44.27809 : -87.79026 : Maribel, WI +54228 : 44.257289 : -87.64866 : Mishicot, WI +54229 : 44.559995 : -87.81553 : New Franken, WI +54230 : 44.142939 : -87.9131 : Reedsville, WI +54232 : 44.008575 : -87.92456 : Saint Nazianz, WI +54234 : 45.186528 : -87.11618 : Sister Bay, WI +54235 : 44.844133 : -87.38044 : Sturgeon Bay, WI +54240 : 44.326784 : -87.62239 : Tisch Mills, WI +54241 : 44.174245 : -87.58613 : Two Rivers, WI +54242 : 44.829002 : -91.210194 : Ludington, WI +54245 : 44.037618 : -87.90026 : Valders, WI +54246 : 45.365984 : -86.89946 : Washington Island, WI +54247 : 44.19011 : -87.79109 : Whitelaw, WI +54301 : 44.489059 : -88.01674 : Green Bay, WI +54302 : 44.505782 : -87.97947 : Green Bay, WI +54303 : 44.530892 : -88.04482 : Green Bay, WI +54304 : 44.499346 : -88.06318 : Green Bay, WI +54305 : 44.460064 : -88.007382 : Green Bay, WI +54306 : 44.460064 : -88.007382 : Green Bay, WI +54307 : 44.460064 : -88.007382 : Green Bay, WI +54308 : 44.459509 : -87.805912 : Green Bay, WI +54310 : 45.210664 : -87.041244 : Liberty Grove, WI +54311 : 44.485243 : -87.92232 : Green Bay, WI +54313 : 44.564261 : -88.10326 : Green Bay, WI +54324 : 44.460064 : -88.007382 : Green Bay, WI +54337 : 45.610429 : -92.324516 : Bone Lake, WI +54344 : 44.42504 : -88.111252 : Green Bay, WI +54353 : 45.54142 : -92.398168 : Georgetown, WI +54383 : 46.18508 : -91.959307 : Wascott, WI +54401 : 44.958382 : -89.6693 : Wausau, WI +54402 : 44.900936 : -89.7701 : Wausau, WI +54403 : 44.976118 : -89.59209 : Wausau, WI +54404 : 44.466554 : -90.02136 : Marshfield, WI +54405 : 44.950905 : -90.30486 : Abbotsford, WI +54406 : 44.421111 : -89.30618 : Amherst, WI +54407 : 44.513056 : -89.30422 : Amherst Junction, WI +54408 : 45.03324 : -89.28376 : Aniwa, WI +54409 : 45.121666 : -89.13388 : Antigo, WI +54410 : 44.536298 : -90.04317 : Arpin, WI +54411 : 45.040345 : -90.01829 : Athens, WI +54412 : 44.662975 : -89.9943 : Auburndale, WI +54413 : 44.283542 : -90.12791 : Babcock, WI +54414 : 44.95258 : -89.16252 : Birnamwood, WI +54415 : 44.619128 : -89.918563 : Blenker, WI +54416 : 44.879391 : -88.95511 : Bowler, WI +54417 : 45.025111 : -89.64609 : Brokaw, WI +54418 : 45.221567 : -88.96427 : Bryant, WI +54419 : 45.222391 : -90.329035 : Chelsea, WI +54420 : 44.619487 : -90.36605 : Chili, WI +54421 : 44.903 : -90.30657 : Colby, WI +54422 : 44.984128 : -90.44176 : Curtiss, WI +54423 : 44.585504 : -89.42139 : Custer, WI +54424 : 45.28142 : -89.20118 : Deerbrook, WI +54425 : 45.006072 : -90.33146 : Dorchester, WI +54426 : 44.907131 : -89.9777 : Edgar, WI +54427 : 44.834167 : -89.23917 : Eland, WI +54428 : 45.440199 : -89.13837 : Elcho, WI +54429 : 44.780171 : -89.247809 : Elderon, WI +54430 : 45.138072 : -88.88498 : Elton, WI +54431 : 45.116388 : -90.352237 : Little Black, WI +54432 : 44.900936 : -89.7701 : Galloway, WI +54433 : 45.186932 : -90.81846 : Gilman, WI +54434 : 45.206757 : -90.484132 : Jump River, WI +54435 : 45.372921 : -89.43748 : Gleason, WI +54436 : 44.557846 : -90.44622 : Granton, WI +54437 : 44.775105 : -90.62639 : Greenwood, WI +54439 : 45.206757 : -90.484132 : Hannibal, WI +54440 : 44.830734 : -89.37414 : Hatley, WI +54441 : 44.645158 : -90.10523 : Hewitt, WI +54442 : 45.345991 : -89.67087 : Irma, WI +54443 : 44.612879 : -89.74163 : Junction City, WI +54444 : 45.249382 : -89.032136 : Kempster, WI +54446 : 44.758265 : -90.48248 : Loyal, WI +54447 : 45.077541 : -90.7324 : Lublin, WI +54448 : 44.935076 : -89.83699 : Marathon, WI +54449 : 44.656686 : -90.18152 : Marshfield, WI +54450 : 45.006232 : -89.047379 : Mattoon, WI +54451 : 45.171131 : -90.40527 : Medford, WI +54452 : 45.181311 : -89.70469 : Merrill, WI +54454 : 44.620203 : -89.87223 : Milladore, WI +54455 : 44.787003 : -89.69066 : Mosinee, WI +54456 : 44.553719 : -90.61457 : Neillsville, WI +54457 : 44.260056 : -89.88239 : Nekoosa, WI +54458 : 44.490241 : -89.310944 : Nelsonville, WI +54459 : 45.434426 : -90.26806 : Ogema, WI +54460 : 44.945107 : -90.53973 : Owen, WI +54462 : 45.392118 : -89.0051 : Pearson, WI +54463 : 45.516138 : -89.17824 : Pelican Lake, WI +54464 : 45.249382 : -89.032136 : Phlox, WI +54465 : 45.393536 : -88.88706 : Pickerel, WI +54466 : 44.404914 : -90.24246 : Pittsville, WI +54467 : 44.452277 : -89.54399 : Plover, WI +54469 : 44.348816 : -89.86368 : Port Edwards, WI +54470 : 45.297753 : -90.16658 : Rib Lake, WI +54471 : 44.918707 : -89.44139 : Ringle, WI +54472 : 44.466554 : -90.02136 : Marshfield, WI +54473 : 44.641554 : -89.33596 : Rosholt, WI +54474 : 44.885168 : -89.61922 : Rothschild, WI +54475 : 44.484001 : -89.79403 : Rudolph, WI +54476 : 44.903194 : -89.57937 : Schofield, WI +54479 : 44.764411 : -90.33179 : Spencer, WI +54480 : 45.064903 : -90.29794 : Stetsonville, WI +54481 : 44.524054 : -89.55621 : Stevens Point, WI +54484 : 44.793747 : -90.06026 : Stratford, WI +54485 : 45.381803 : -89.20073 : Summit Lake, WI +54486 : 44.734445 : -89.04525 : Tigerton, WI +54487 : 45.510639 : -89.73162 : Tomahawk, WI +54488 : 44.844939 : -90.32891 : Unity, WI +54489 : 44.456798 : -89.99623 : Vesper, WI +54490 : 45.321034 : -90.40218 : Westboro, WI +54491 : 45.211554 : -88.74259 : White Lake, WI +54492 : 44.509433 : -89.528584 : Stevens Point, WI +54493 : 44.729524 : -90.79351 : Willard, WI +54494 : 44.373468 : -89.78761 : Wisconsin Rapids, WI +54495 : 44.376507 : -89.90771 : Wisconsin Rapids, WI +54498 : 45.034443 : -90.63063 : Withee, WI +54499 : 44.797279 : -89.18442 : Wittenberg, WI +54501 : 45.64672 : -89.39408 : Rhinelander, WI +54511 : 45.69606 : -88.81274 : Argonne, WI +54512 : 46.083178 : -89.66605 : Boulder Junction, WI +54513 : 45.54608 : -90.13535 : Brantwood, WI +54514 : 46.024995 : -90.44778 : Butternut, WI +54515 : 45.536545 : -90.50935 : Catawba, WI +54517 : 46.136639 : -90.93065 : Clam Lake, WI +54519 : 46.040996 : -89.28591 : Conover, WI +54520 : 45.522208 : -88.9105 : Crandon, WI +54521 : 45.922669 : -89.24825 : Eagle River, WI +54524 : 45.85263 : -90.41709 : Fifield, WI +54525 : 46.429932 : -90.22247 : Gile, WI +54526 : 45.500701 : -90.85944 : Glen Flora, WI +54527 : 46.119661 : -90.64288 : Glidden, WI +54529 : 45.707456 : -89.68877 : Harshaw, WI +54530 : 45.549336 : -90.73047 : Hawkins, WI +54531 : 45.754415 : -89.79791 : Hazelhurst, WI +54532 : 45.337678 : -89.735524 : Heafford Junction, WI +54534 : 46.40553 : -90.21811 : Hurley, WI +54536 : 46.346699 : -90.33543 : Iron Belt, WI +54537 : 45.527003 : -90.61228 : Kennan, WI +54538 : 45.964667 : -89.90731 : Lac Du Flambeau, WI +54539 : 45.811923 : -89.57988 : Lake Tomahawk, WI +54540 : 46.149936 : -89.36592 : Land O Lakes, WI +54541 : 45.55375 : -88.6624 : Laona, WI +54542 : 45.920035 : -88.68929 : Long Lake, WI +54543 : 45.731478 : -89.52525 : McNaughton, WI +54545 : 46.122746 : -89.83996 : Manitowish Waters, WI +54546 : 46.273618 : -90.70102 : Mellen, WI +54547 : 46.183572 : -90.05754 : Mercer, WI +54548 : 45.869921 : -89.79346 : Minocqua, WI +54550 : 46.410758 : -90.25072 : Montreal, WI +54551 : 46.187253 : -89.769399 : Presque Isle, WI +54552 : 45.927783 : -90.34311 : Park Falls, WI +54554 : 46.056677 : -89.08234 : Phelps, WI +54555 : 45.716124 : -90.40013 : Phillips, WI +54556 : 45.549425 : -90.31571 : Prentice, WI +54557 : 46.221041 : -89.73707 : Presque Isle, WI +54558 : 45.914371 : -89.4897 : Saint Germain, WI +54559 : 46.495575 : -90.45101 : Saxon, WI +54560 : 45.995755 : -89.52565 : Sayner, WI +54561 : 46.058408 : -89.4516 : Star Lake, WI +54562 : 45.815926 : -89.10942 : Three Lakes, WI +54563 : 45.477056 : -90.98354 : Tony, WI +54564 : 45.63298 : -89.96658 : Tripoli, WI +54565 : 46.309371 : -90.4354 : Upson, WI +54566 : 45.432682 : -88.67339 : Wabeno, WI +54568 : 45.924341 : -89.68496 : Woodruff, WI +54601 : 43.797116 : -91.21141 : La Crosse, WI +54602 : 43.907739 : -91.167621 : La Crosse, WI +54603 : 43.848665 : -91.24922 : La Crosse, WI +54610 : 44.362741 : -91.85287 : Alma, WI +54611 : 44.44202 : -90.93859 : Alma Center, WI +54612 : 44.253423 : -91.48885 : Arcadia, WI +54613 : 44.061018 : -89.90838 : Arkdale, WI +54614 : 43.894741 : -90.97441 : Bangor, WI +54615 : 44.277231 : -90.80066 : Black River Falls, WI +54616 : 44.293183 : -91.23075 : Blair, WI +54618 : 43.95685 : -90.29445 : Camp Douglas, WI +54619 : 43.749142 : -90.78473 : Cashton, WI +54620 : 44.087601 : -90.842289 : Cataract, WI +54621 : 43.659389 : -91.08195 : Chaseburg, WI +54622 : 44.248179 : -91.83124 : Cochrane, WI +54623 : 43.713575 : -91.02348 : Coon Valley, WI +54624 : 43.433893 : -91.15949 : De Soto, WI +54625 : 44.130528 : -91.52601 : Dodge, WI +54626 : 43.217285 : -91.05946 : Eastman, WI +54627 : 44.168986 : -91.25737 : Ettrick, WI +54628 : 43.373139 : -91.0025 : Ferryville, WI +54629 : 44.13288 : -91.67722 : Fountain City, WI +54630 : 44.087366 : -91.35965 : Galesville, WI +54631 : 43.291992 : -90.83048 : Gays Mills, WI +54632 : 43.559832 : -91.16957 : Genoa, WI +54634 : 43.610055 : -90.40896 : Hillsboro, WI +54635 : 44.400995 : -91.04608 : Hixton, WI +54636 : 43.978816 : -91.2512 : Holmen, WI +54637 : 43.880649 : -90.27423 : Hustler, WI +54638 : 43.795422 : -90.37609 : Kendall, WI +54639 : 43.610629 : -90.62108 : La Farge, WI +54640 : 43.246161 : -91.05429 : Lynxville, WI +54641 : 43.94521 : -90.049489 : Mather, WI +54642 : 44.15175 : -91.04558 : Melrose, WI +54643 : 44.186869 : -90.635831 : Millston, WI +54644 : 44.029269 : -91.06484 : Mindoro, WI +54645 : 43.31493 : -90.9287 : Mount Sterling, WI +54646 : 44.057528 : -90.07117 : Necedah, WI +54648 : 43.836783 : -90.62066 : Norwalk, WI +54649 : 43.971514 : -90.361161 : Oakdale, WI +54650 : 43.899664 : -91.22963 : Onalaska, WI +54651 : 43.740893 : -90.56934 : Ontario, WI +54652 : 43.454264 : -90.76116 : Readstown, WI +54653 : 43.869244 : -90.91873 : Rockland, WI +54654 : 43.265154 : -90.959 : Seneca, WI +54655 : 43.388055 : -90.76632 : Soldiers Grove, WI +54656 : 43.96977 : -90.80796 : Sparta, WI +54657 : 43.194284 : -90.8911 : Steuben, WI +54658 : 43.68804 : -91.19665 : Stoddard, WI +54659 : 44.309131 : -91.11676 : Taylor, WI +54660 : 43.984412 : -90.48416 : Tomah, WI +54661 : 44.026843 : -91.4513 : Trempealeau, WI +54662 : 44.003084 : -90.562005 : Tunnel City, WI +54664 : 43.502238 : -90.65131 : Viola, WI +54665 : 43.543934 : -90.89904 : Viroqua, WI +54666 : 44.134587 : -90.43289 : Warrens, WI +54667 : 43.656393 : -90.85562 : Westby, WI +54669 : 43.903949 : -91.08847 : West Salem, WI +54670 : 43.833159 : -90.49044 : Wilton, WI +54699 : 43.900433 : -91.071758 : West Salem, WI +54701 : 44.780427 : -91.48065 : Eau Claire, WI +54702 : 44.726626 : -91.285931 : Eau Claire, WI +54703 : 44.82961 : -91.50521 : Eau Claire, WI +54720 : 44.80416 : -91.43963 : Altoona, WI +54721 : 44.62411 : -92.07828 : Arkansaw, WI +54722 : 44.699923 : -91.12509 : Augusta, WI +54723 : 44.608838 : -92.44607 : Bay City, WI +54724 : 45.101683 : -91.48415 : Bloomer, WI +54725 : 45.062111 : -92.02641 : Boyceville, WI +54726 : 44.946486 : -91.02282 : Boyd, WI +54727 : 44.963809 : -91.16181 : Cadott, WI +54728 : 45.312195 : -91.64173 : Chetek, WI +54729 : 44.932711 : -91.38877 : Chippewa Falls, WI +54730 : 45.012181 : -91.73021 : Colfax, WI +54731 : 45.36469 : -91.04968 : Conrath, WI +54732 : 45.155211 : -91.17005 : Cornell, WI +54733 : 45.275752 : -91.85084 : Dallas, WI +54734 : 45.086186 : -92.12453 : Downing, WI +54735 : 44.946496 : -91.90344 : Downsville, WI +54736 : 44.613891 : -91.92402 : Durand, WI +54737 : 44.718959 : -91.99704 : Eau Galle, WI +54738 : 44.586469 : -91.48873 : Eleva, WI +54739 : 44.872678 : -91.69231 : Elk Mound, WI +54740 : 44.763269 : -92.1517 : Elmwood, WI +54741 : 44.601345 : -90.98854 : Fairchild, WI +54742 : 44.763678 : -91.29172 : Fall Creek, WI +54743 : 44.311074 : -91.806396 : Gilmanton, WI +54744 : 45.319786 : -91.881754 : Hillsdale, WI +54745 : 45.253108 : -91.1559 : Holcombe, WI +54746 : 44.550251 : -90.89542 : Humbird, WI +54747 : 44.38161 : -91.47913 : Independence, WI +54748 : 45.074725 : -91.2563 : Jim Falls, WI +54749 : 44.949207 : -92.08073 : Knapp, WI +54750 : 44.615442 : -92.30798 : Maiden Rock, WI +54751 : 44.86877 : -91.92915 : Menomonie, WI +54754 : 44.434537 : -90.79473 : Merrillan, WI +54755 : 44.584633 : -91.68767 : Mondovi, WI +54756 : 44.451724 : -91.95785 : Nelson, WI +54757 : 45.235611 : -91.52127 : New Auburn, WI +54758 : 44.555876 : -91.21713 : Osseo, WI +54759 : 44.478326 : -92.14053 : Pepin, WI +54760 : 44.424662 : -91.20833 : Pigeon Falls, WI +54761 : 44.624559 : -92.17732 : Plum City, WI +54762 : 45.24647 : -91.99273 : Prairie Farm, WI +54763 : 45.186997 : -91.88073 : Ridgeland, WI +54764 : 44.946496 : -91.90344 : Rock Falls, WI +54765 : 45.142866 : -91.699794 : Sand Creek, WI +54766 : 45.323865 : -90.89376 : Sheldon, WI +54767 : 44.833746 : -92.25937 : Spring Valley, WI +54768 : 44.963528 : -90.93012 : Stanley, WI +54769 : 44.530201 : -92.23721 : Stockholm, WI +54770 : 44.545046 : -91.38753 : Strum, WI +54771 : 44.95298 : -90.79784 : Thorp, WI +54772 : 45.084813 : -91.89724 : Wheeler, WI +54773 : 44.377781 : -91.30948 : Whitehall, WI +54774 : 45.07413 : -91.294397 : Chippewa Falls, WI +54801 : 45.850775 : -91.94361 : Spooner, WI +54805 : 45.418325 : -92.02914 : Almena, WI +54806 : 46.577191 : -90.89707 : Ashland, WI +54810 : 45.455304 : -92.40153 : Balsam Lake, WI +54812 : 45.39701 : -91.86337 : Barron, WI +54813 : 45.646145 : -92.01923 : Barronett, WI +54814 : 46.856701 : -90.85401 : Bayfield, WI +54816 : 46.682796 : -91.143254 : Benoit, WI +54817 : 45.661506 : -91.54526 : Birchwood, WI +54818 : 45.423409 : -91.848206 : Brill, WI +54819 : 45.45273 : -91.29437 : Bruce, WI +54820 : 46.588243 : -91.55208 : Brule, WI +54821 : 46.213138 : -91.13997 : Cable, WI +54822 : 45.401622 : -91.72727 : Cameron, WI +54824 : 45.454867 : -92.52701 : Centuria, WI +54826 : 45.505963 : -92.17646 : Comstock, WI +54827 : 46.802909 : -91.10944 : Cornucopia, WI +54828 : 45.858431 : -91.25765 : Couderay, WI +54829 : 45.552434 : -92.05004 : Cumberland, WI +54830 : 46.036193 : -92.21802 : Danbury, WI +54832 : 46.326236 : -91.29643 : Drummond, WI +54834 : 45.742668 : -91.47648 : Edgewater, WI +54835 : 45.671767 : -91.23317 : Exeland, WI +54836 : 46.449996 : -92.21831 : Foxboro, WI +54837 : 45.679878 : -92.42153 : Frederic, WI +54838 : 46.233591 : -91.81795 : Gordon, WI +54839 : 46.360155 : -91.14425 : Grand View, WI +54840 : 45.75118 : -92.67182 : Grantsburg, WI +54841 : 45.612444 : -91.77624 : Haugen, WI +54842 : 46.513247 : -91.84824 : Hawthorne, WI +54843 : 46.005082 : -91.35255 : Hayward, WI +54844 : 46.765166 : -91.21312 : Herbster, WI +54845 : 45.811685 : -92.13692 : Hertel, WI +54846 : 46.372151 : -90.74865 : High Bridge, WI +54847 : 46.553351 : -91.37996 : Iron River, WI +54848 : 45.477445 : -91.105 : Ladysmith, WI +54849 : 46.476428 : -91.67634 : Lake Nebagamon, WI +54850 : 46.799835 : -90.73209 : La Pointe, WI +54851 : 45.468941 : -92.521938 : Lewis, WI +54853 : 45.577963 : -92.45652 : Luck, WI +54854 : 46.626518 : -91.6952 : Maple, WI +54855 : 46.396053 : -90.81506 : Marengo, WI +54856 : 46.433167 : -91.10883 : Mason, WI +54857 : 45.591546 : -91.60046 : Mikana, WI +54858 : 45.52624 : -92.46971 : Milltown, WI +54859 : 46.127976 : -91.84389 : Minong, WI +54861 : 46.599122 : -90.65361 : Odanah, WI +54862 : 45.766112 : -91.13603 : Ojibwa, WI +54863 : 45.458812 : -91.712017 : Stanley, WI +54864 : 46.587809 : -91.8074 : Poplar, WI +54865 : 46.757192 : -91.39611 : Port Wing, WI +54867 : 45.767489 : -91.22193 : Radisson, WI +54868 : 45.517226 : -91.72638 : Rice Lake, WI +54870 : 45.714265 : -91.77498 : Sarona, WI +54871 : 45.750367 : -91.99048 : Shell Lake, WI +54872 : 45.780793 : -92.39152 : Siren, WI +54873 : 46.354613 : -91.71166 : Solon Springs, WI +54874 : 46.58521 : -91.95129 : South Range, WI +54875 : 45.947509 : -91.67526 : Springbrook, WI +54876 : 45.842713 : -91.47902 : Stone Lake, WI +54880 : 46.684273 : -92.09474 : Superior, WI +54886 : 45.882227 : -90.967711 : Winter, WI +54888 : 45.967422 : -91.87907 : Trego, WI +54889 : 45.407855 : -92.15619 : Turtle Lake, WI +54890 : 46.525129 : -91.921631 : Wascott, WI +54891 : 46.69297 : -90.93744 : Washburn, WI +54893 : 45.870441 : -92.29416 : Webster, WI +54895 : 45.422669 : -91.42678 : Weyerhaeuser, WI +54896 : 45.843581 : -90.94323 : Winter, WI +54901 : 44.043984 : -88.53528 : Oshkosh, WI +54902 : 43.988616 : -88.54699 : Oshkosh, WI +54903 : 44.06858 : -88.644873 : Oshkosh, WI +54904 : 44.018871 : -88.61324 : Oshkosh, WI +54906 : 44.06858 : -88.644873 : Oshkosh, WI +54909 : 44.28018 : -89.36002 : Almond, WI +54911 : 44.276986 : -88.39445 : Appleton, WI +54912 : 44.416326 : -88.464873 : Appleton, WI +54913 : 44.322836 : -88.40492 : Appleton, WI +54914 : 44.267411 : -88.4383 : Appleton, WI +54915 : 44.244753 : -88.37783 : Appleton, WI +54919 : 44.416326 : -88.464873 : Appleton, WI +54921 : 44.307561 : -89.54673 : Bancroft, WI +54922 : 44.538848 : -88.74381 : Bear Creek, WI +54923 : 43.978561 : -88.95413 : Berlin, WI +54926 : 44.617819 : -89.016622 : Big Falls, WI +54927 : 44.101044 : -88.65531 : Butte Des Morts, WI +54928 : 44.732083 : -88.88507 : Caroline, WI +54929 : 44.63605 : -88.74673 : Clintonville, WI +54930 : 44.025668 : -89.52124 : Coloma, WI +54931 : 44.416326 : -88.464873 : Dale, WI +54932 : 43.830749 : -88.6258 : Eldorado, WI +54933 : 44.666988 : -88.70686 : Embarrass, WI +54934 : 44.00443 : -88.84108 : Eureka, WI +54935 : 43.769889 : -88.4281 : Fond Du Lac, WI +54936 : 43.740559 : -88.522984 : Fond Du Lac, WI +54937 : 43.785391 : -88.48704 : Fond Du Lac, WI +54940 : 44.237843 : -88.84998 : Fremont, WI +54941 : 43.841808 : -88.97443 : Green Lake, WI +54942 : 44.29382 : -88.53557 : Greenville, WI +54943 : 44.122177 : -89.57305 : Hancock, WI +54944 : 44.333183 : -88.6167 : Hortonville, WI +54945 : 44.558941 : -89.13383 : Iola, WI +54946 : 44.336537 : -89.146258 : King, WI +54947 : 44.191271 : -88.68846 : Larsen, WI +54948 : 44.779838 : -88.87123 : Leopolis, WI +54949 : 44.472791 : -88.91625 : Manawa, WI +54950 : 44.669461 : -88.89693 : Marion, WI +54951 : 44.416326 : -88.464873 : Medina, WI +54952 : 44.212448 : -88.40959 : Menasha, WI +54956 : 44.180085 : -88.48273 : Neenah, WI +54957 : 44.198944 : -88.678863 : Neenah, WI +54960 : 43.959371 : -89.22575 : Neshkoro, WI +54961 : 44.394143 : -88.75521 : New London, WI +54962 : 44.481372 : -89.03101 : Ogdensburg, WI +54963 : 44.042594 : -88.7627 : Omro, WI +54964 : 43.923141 : -88.72654 : Pickett, WI +54965 : 44.167646 : -89.04218 : Pine River, WI +54966 : 44.220945 : -89.51227 : Plainfield, WI +54967 : 44.13777 : -88.99443 : Poy Sippi, WI +54968 : 43.842646 : -89.13955 : Princeton, WI +54969 : 44.269991 : -88.775457 : Readfield, WI +54970 : 44.057375 : -89.09788 : Redgranite, WI +54971 : 43.849309 : -88.84494 : Ripon, WI +54974 : 43.797693 : -88.66261 : Rosendale, WI +54975 : 44.461926 : -88.915027 : Royalton, WI +54976 : 44.176716 : -89.11271 : Saxeville, WI +54977 : 44.454684 : -89.15371 : Scandinavia, WI +54978 : 44.805167 : -88.9006 : Tilleda, WI +54979 : 43.877109 : -88.52573 : Van Dyne, WI +54980 : 43.987186 : -88.77247 : Waukau, WI +54981 : 44.331217 : -89.11499 : Waupaca, WI +54982 : 44.064068 : -89.29417 : Wautoma, WI +54983 : 44.319005 : -88.9404 : Weyauwega, WI +54984 : 44.186455 : -89.20231 : Wild Rose, WI +54985 : 44.075084 : -88.51758 : Winnebago, WI +54986 : 44.110806 : -88.73155 : Winneconne, WI +54990 : 44.461926 : -88.915027 : Iola, WI +55001 : 44.903133 : -92.81904 : Afton, MN +55002 : 45.513447 : -92.894239 : Almelund, MN +55003 : 45.017767 : -92.78039 : Bayport, MN +55005 : 45.395494 : -93.23584 : Bethel, MN +55006 : 45.722 : -93.19781 : Braham, MN +55007 : 45.955831 : -93.1044 : Brook Park, MN +55008 : 45.566735 : -93.24381 : Cambridge, MN +55009 : 44.493575 : -92.89402 : Cannon Falls, MN +55010 : 44.544465 : -93.15353 : Castle Rock, MN +55011 : 45.335128 : -93.27434 : Cedar, MN +55012 : 45.41766 : -92.80597 : Center City, MN +55013 : 45.365164 : -92.88864 : Chisago City, MN +55014 : 45.153516 : -93.14463 : Circle Pines, MN +55016 : 44.830966 : -92.93739 : Cottage Grove, MN +55017 : 45.677366 : -93.42013 : Dalbo, MN +55018 : 44.422975 : -93.00089 : Dennison, MN +55019 : 44.415567 : -93.23269 : Dundas, MN +55020 : 44.571365 : -93.36011 : Elko, MN +55021 : 44.29478 : -93.28732 : Faribault, MN +55024 : 44.649263 : -93.15222 : Farmington, MN +55025 : 45.272117 : -92.9911 : Forest Lake, MN +55026 : 44.523212 : -92.33216 : Frontenac, MN +55027 : 44.408846 : -92.63312 : Goodhue, MN +55029 : 45.642235 : -93.201107 : Grandy, MN +55030 : 45.842603 : -93.11924 : Grasston, MN +55031 : 44.607553 : -92.98548 : Hampton, MN +55032 : 45.586488 : -93.01179 : Harris, MN +55033 : 44.726517 : -92.86147 : Hastings, MN +55036 : 45.871294 : -93.11852 : Henriette, MN +55037 : 46.008128 : -92.79349 : Hinckley, MN +55038 : 45.161267 : -92.99596 : Hugo, MN +55040 : 45.470239 : -93.27947 : Isanti, MN +55041 : 44.42278 : -92.2948 : Lake City, MN +55042 : 44.999023 : -92.90939 : Lake Elmo, MN +55043 : 44.9316 : -92.77001 : Lakeland, MN +55044 : 44.669564 : -93.26654 : Lakeville, MN +55045 : 45.387281 : -92.83551 : Lindstrom, MN +55046 : 44.464394 : -93.42243 : Lonsdale, MN +55047 : 45.195606 : -92.81649 : Marine On Saint Croix, MN +55049 : 44.172277 : -93.23924 : Medford, MN +55051 : 45.897003 : -93.29452 : Mora, MN +55052 : 44.232811 : -93.43992 : Morristown, MN +55053 : 44.338132 : -93.05543 : Nerstrand, MN +55054 : 44.571056 : -93.354267 : New Market, MN +55055 : 44.871166 : -93.00187 : Newport, MN +55056 : 45.509818 : -92.97816 : North Branch, MN +55057 : 44.459969 : -93.16623 : Northfield, MN +55060 : 44.07393 : -93.22716 : Owatonna, MN +55063 : 45.824236 : -92.95813 : Pine City, MN +55065 : 44.534866 : -93.02959 : Randolph, MN +55066 : 44.539036 : -92.53637 : Red Wing, MN +55067 : 46.074687 : -92.718004 : Rock Creek, MN +55068 : 44.732105 : -93.13437 : Rosemount, MN +55069 : 45.690784 : -92.96843 : Rush City, MN +55070 : 45.395912 : -93.37005 : Saint Francis, MN +55071 : 44.835366 : -92.99254 : Saint Paul Park, MN +55072 : 46.131798 : -92.71377 : Sandstone, MN +55073 : 45.275771 : -92.83001 : Scandia, MN +55074 : 45.381784 : -92.7278 : Shafer, MN +55075 : 44.887966 : -93.04546 : South Saint Paul, MN +55076 : 44.844833 : -93.03528 : Inver Grove Heights, MN +55077 : 44.825391 : -93.06893 : Inver Grove Heights, MN +55078 : 45.513447 : -92.894239 : Stacy, MN +55079 : 45.403157 : -93.02829 : Stacy, MN +55080 : 45.651767 : -93.21439 : Stanchfield, MN +55082 : 45.054551 : -92.82581 : Stillwater, MN +55083 : 45.021016 : -92.983726 : Stillwater, MN +55084 : 45.424065 : -92.68321 : Taylors Falls, MN +55085 : 44.674317 : -92.96823 : Vermillion, MN +55087 : 44.247889 : -93.39305 : Warsaw, MN +55088 : 44.541055 : -93.38713 : Webster, MN +55089 : 44.586242 : -92.70293 : Welch, MN +55090 : 45.054666 : -92.95703 : Willernie, MN +55092 : 45.329115 : -93.06834 : Wyoming, MN +55101 : 44.964852 : -93.08397 : Saint Paul, MN +55102 : 44.935315 : -93.12049 : Saint Paul, MN +55103 : 44.964115 : -93.12261 : Saint Paul, MN +55104 : 44.953665 : -93.15922 : Saint Paul, MN +55105 : 44.934465 : -93.16554 : Saint Paul, MN +55106 : 44.967565 : -93.05001 : Saint Paul, MN +55107 : 44.928315 : -93.08876 : Saint Paul, MN +55108 : 44.982515 : -93.17489 : Saint Paul, MN +55109 : 45.010632 : -93.01845 : Saint Paul, MN +55110 : 45.081266 : -93.01146 : Saint Paul, MN +55111 : 44.882838 : -93.200671 : Saint Paul, MN +55112 : 45.076365 : -93.19335 : Saint Paul, MN +55113 : 45.011215 : -93.15536 : Saint Paul, MN +55114 : 44.964815 : -93.19581 : Saint Paul, MN +55115 : 45.060048 : -92.95762 : Saint Paul, MN +55116 : 44.913815 : -93.17459 : Saint Paul, MN +55117 : 44.989065 : -93.10666 : Saint Paul, MN +55118 : 44.903165 : -93.10026 : Saint Paul, MN +55119 : 44.957315 : -93.00616 : Saint Paul, MN +55120 : 44.873398 : -93.14538 : Saint Paul, MN +55121 : 44.844965 : -93.14431 : Saint Paul, MN +55122 : 44.804548 : -93.19871 : Saint Paul, MN +55123 : 44.804048 : -93.13378 : Saint Paul, MN +55124 : 44.743963 : -93.20624 : Saint Paul, MN +55125 : 44.921982 : -92.94234 : Saint Paul, MN +55126 : 45.085643 : -93.1353 : Saint Paul, MN +55127 : 45.076708 : -93.0828 : Saint Paul, MN +55128 : 44.985792 : -92.96532 : Saint Paul, MN +55129 : 44.896938 : -92.90241 : Saint Paul, MN +55133 : 45.005902 : -93.105869 : Saint Paul, MN +55144 : 45.005902 : -93.105869 : Saint Paul, MN +55145 : 45.005902 : -93.105869 : Saint Paul, MN +55146 : 44.942656 : -93.082793 : Saint Paul, MN +55150 : 44.884265 : -93.16415 : Mendota, MN +55155 : 44.952165 : -93.095518 : Saint Paul, MN +55161 : 45.005902 : -93.105869 : Saint Paul, MN +55164 : 44.990915 : -93.106593 : Saint Paul, MN +55165 : 45.005902 : -93.105869 : Saint Paul, MN +55166 : 45.005902 : -93.105869 : Saint Paul, MN +55168 : 45.005902 : -93.105869 : Saint Paul, MN +55169 : 45.005902 : -93.105869 : Saint Paul, MN +55170 : 45.005902 : -93.105869 : Saint Paul, MN +55171 : 45.005902 : -93.105869 : Saint Paul, MN +55172 : 45.005902 : -93.105869 : Saint Paul, MN +55175 : 45.005902 : -93.105869 : Saint Paul, MN +55177 : 45.005902 : -93.105869 : Saint Paul, MN +55182 : 45.005902 : -93.105869 : Saint Paul, MN +55184 : 46.837172 : -92.202829 : Duluth, MN +55187 : 45.005902 : -93.105869 : Saint Paul, MN +55188 : 45.005902 : -93.105869 : Saint Paul, MN +55189 : 45.005902 : -93.105869 : Saint Paul, MN +55190 : 45.005902 : -93.105869 : Saint Paul, MN +55191 : 45.005902 : -93.105869 : Saint Paul, MN +55272 : 46.147161 : -93.084687 : Kroschel, MN +55301 : 45.237867 : -93.66261 : Albertville, MN +55302 : 45.246631 : -94.11692 : Annandale, MN +55303 : 45.247509 : -93.418 : Anoka, MN +55304 : 45.254715 : -93.28652 : Andover, MN +55305 : 44.953763 : -93.43346 : Hopkins, MN +55306 : 44.732569 : -93.28909 : Burnsville, MN +55307 : 44.613278 : -94.10728 : Arlington, MN +55308 : 45.426203 : -93.85017 : Becker, MN +55309 : 45.358004 : -93.74294 : Big Lake, MN +55310 : 44.761856 : -94.8845 : Bird Island, MN +55311 : 45.102133 : -93.48757 : Osseo, MN +55312 : 44.723259 : -94.33922 : Brownton, MN +55313 : 45.175558 : -93.85441 : Buffalo, MN +55314 : 44.751001 : -94.60782 : Buffalo Lake, MN +55315 : 44.736595 : -93.65619 : Carver, MN +55316 : 45.170714 : -93.38452 : Champlin, MN +55317 : 44.866236 : -93.54487 : Chanhassen, MN +55318 : 44.809954 : -93.6105 : Chaska, MN +55319 : 45.470068 : -93.92956 : Clear Lake, MN +55320 : 45.387625 : -94.0599 : Clearwater, MN +55321 : 45.085142 : -94.18748 : Cokato, MN +55322 : 44.768762 : -93.77839 : Cologne, MN +55323 : 45.015914 : -93.47188 : Crystal Bay, MN +55324 : 45.057766 : -94.40368 : Darwin, MN +55325 : 45.091115 : -94.31758 : Dassel, MN +55327 : 45.217054 : -93.47612 : Dayton, MN +55328 : 45.032489 : -93.79591 : Delano, MN +55329 : 45.321197 : -94.56778 : Eden Valley, MN +55330 : 45.317152 : -93.58117 : Elk River, MN +55331 : 44.901368 : -93.58278 : Excelsior, MN +55332 : 44.529702 : -94.71718 : Fairfax, MN +55333 : 44.541889 : -94.8735 : Franklin, MN +55334 : 44.542729 : -94.21773 : Gaylord, MN +55335 : 44.527707 : -94.53092 : Gibbon, MN +55336 : 44.773886 : -94.17294 : Glencoe, MN +55337 : 44.770297 : -93.27302 : Burnsville, MN +55338 : 44.670908 : -94.01337 : Green Isle, MN +55339 : 44.730662 : -93.9577 : Hamburg, MN +55340 : 45.07343 : -93.56455 : Hamel, MN +55341 : 45.15546 : -93.66369 : Hanover, MN +55342 : 44.74323 : -94.72447 : Hector, MN +55343 : 44.921599 : -93.40857 : Hopkins, MN +55344 : 44.867013 : -93.42557 : Eden Prairie, MN +55345 : 44.915413 : -93.48443 : Minnetonka, MN +55346 : 44.880435 : -93.4869 : Eden Prairie, MN +55347 : 44.831413 : -93.46031 : Eden Prairie, MN +55348 : 44.848263 : -93.398727 : Maple Plain, MN +55349 : 45.064272 : -94.07175 : Howard Lake, MN +55350 : 44.896255 : -94.38604 : Hutchinson, MN +55352 : 44.657463 : -93.6133 : Jordan, MN +55353 : 45.328802 : -94.32528 : Kimball, MN +55354 : 44.881515 : -94.05846 : Lester Prairie, MN +55355 : 45.104473 : -94.52868 : Litchfield, MN +55356 : 44.985463 : -93.58388 : Long Lake, MN +55357 : 45.088013 : -93.65053 : Loretto, MN +55358 : 45.244744 : -94.00289 : Maple Lake, MN +55359 : 45.002212 : -93.69319 : Maple Plain, MN +55360 : 44.909362 : -93.89981 : Mayer, MN +55361 : 44.940212 : -93.592735 : Minnetonka Beach, MN +55362 : 45.301337 : -93.80774 : Monticello, MN +55363 : 45.046143 : -93.92085 : Montrose, MN +55364 : 44.933712 : -93.66038 : Mound, MN +55365 : 45.200875 : -93.888099 : Monticello, MN +55366 : 44.673454 : -94.229311 : New Auburn, MN +55367 : 44.886776 : -93.97154 : New Germany, MN +55368 : 44.756883 : -93.91666 : Norwood, MN +55369 : 45.120764 : -93.43183 : Osseo, MN +55370 : 44.787651 : -94.04714 : Plato, MN +55371 : 45.576431 : -93.57644 : Princeton, MN +55372 : 44.704646 : -93.42139 : Prior Lake, MN +55373 : 45.087513 : -93.73548 : Rockford, MN +55374 : 45.197646 : -93.57104 : Rogers, MN +55375 : 44.906512 : -93.7439 : Saint Bonifacius, MN +55376 : 45.20382 : -93.67618 : Saint Michael, MN +55377 : 45.540181 : -93.815434 : Santiago, MN +55378 : 44.761796 : -93.3722 : Savage, MN +55379 : 44.776138 : -93.52556 : Shakopee, MN +55380 : 45.315823 : -93.979766 : Silver Creek, MN +55381 : 44.904987 : -94.18802 : Silver Lake, MN +55382 : 45.299358 : -94.19821 : South Haven, MN +55383 : 44.805487 : -93.766524 : Norwood, MN +55384 : 44.936423 : -93.62868 : Spring Park, MN +55385 : 44.724926 : -94.49346 : Stewart, MN +55386 : 44.858595 : -93.66341 : Victoria, MN +55387 : 44.849912 : -93.78514 : Waconia, MN +55388 : 44.955136 : -93.84467 : Watertown, MN +55389 : 45.291986 : -94.43811 : Watkins, MN +55390 : 45.066811 : -93.97836 : Waverly, MN +55391 : 44.963063 : -93.52912 : Wayzata, MN +55392 : 45.015914 : -93.47188 : Navarre, MN +55393 : 45.200875 : -93.888099 : Maple Plain, MN +55394 : 44.805487 : -93.766524 : Young America, MN +55395 : 44.960829 : -94.05525 : Winsted, MN +55396 : 44.536882 : -94.36811 : Winthrop, MN +55397 : 44.801162 : -93.92368 : Young America, MN +55398 : 45.455085 : -93.57873 : Zimmerman, MN +55399 : 44.805487 : -93.766524 : Young America, MN +55401 : 44.984615 : -93.27137 : Minneapolis, MN +55402 : 44.975565 : -93.27053 : Minneapolis, MN +55403 : 44.971765 : -93.28557 : Minneapolis, MN +55404 : 44.963365 : -93.26179 : Minneapolis, MN +55405 : 44.971798 : -93.30273 : Minneapolis, MN +55406 : 44.938615 : -93.22082 : Minneapolis, MN +55407 : 44.934915 : -93.25424 : Minneapolis, MN +55408 : 44.947515 : -93.28742 : Minneapolis, MN +55409 : 44.924115 : -93.28362 : Minneapolis, MN +55410 : 44.911564 : -93.31947 : Minneapolis, MN +55411 : 44.999165 : -93.29823 : Minneapolis, MN +55412 : 45.027715 : -93.30337 : Minneapolis, MN +55413 : 44.997665 : -93.24927 : Minneapolis, MN +55414 : 44.980379 : -93.23003 : Minneapolis, MN +55415 : 44.973415 : -93.25941 : Minneapolis, MN +55416 : 44.946664 : -93.34215 : Minneapolis, MN +55417 : 44.905365 : -93.23662 : Minneapolis, MN +55418 : 45.019315 : -93.24304 : Minneapolis, MN +55419 : 44.902414 : -93.29012 : Minneapolis, MN +55420 : 44.837964 : -93.27657 : Minneapolis, MN +55421 : 45.050434 : -93.25007 : Minneapolis, MN +55422 : 45.014764 : -93.33965 : Minneapolis, MN +55423 : 44.877164 : -93.28124 : Minneapolis, MN +55424 : 44.904414 : -93.34045 : Minneapolis, MN +55425 : 44.846765 : -93.2449 : Minneapolis, MN +55426 : 44.952064 : -93.37795 : Minneapolis, MN +55427 : 45.006764 : -93.38223 : Minneapolis, MN +55428 : 45.059997 : -93.37702 : Minneapolis, MN +55429 : 45.064714 : -93.34155 : Minneapolis, MN +55430 : 45.059265 : -93.29977 : Minneapolis, MN +55431 : 44.829564 : -93.30982 : Minneapolis, MN +55432 : 45.095674 : -93.25336 : Minneapolis, MN +55433 : 45.163848 : -93.3195 : Minneapolis, MN +55434 : 45.164248 : -93.2531 : Minneapolis, MN +55435 : 44.875614 : -93.33487 : Minneapolis, MN +55436 : 44.903864 : -93.37056 : Minneapolis, MN +55437 : 44.822764 : -93.34422 : Minneapolis, MN +55438 : 44.8257 : -93.38212 : Minneapolis, MN +55439 : 44.875997 : -93.37021 : Minneapolis, MN +55440 : 45.015914 : -93.47188 : Minneapolis, MN +55441 : 45.001997 : -93.42421 : Minneapolis, MN +55442 : 45.046701 : -93.42892 : Minneapolis, MN +55443 : 45.108581 : -93.33988 : Minneapolis, MN +55444 : 45.106065 : -93.30461 : Minneapolis, MN +55445 : 45.112742 : -93.3789 : Minneapolis, MN +55446 : 45.039312 : -93.47988 : Minneapolis, MN +55447 : 45.003363 : -93.49262 : Minneapolis, MN +55448 : 45.186232 : -93.29635 : Minneapolis, MN +55449 : 45.168287 : -93.20001 : Minneapolis, MN +55450 : 44.882365 : -93.20847 : Minneapolis, MN +55454 : 44.969465 : -93.24327 : Minneapolis, MN +55455 : 44.971965 : -93.23588 : Minneapolis, MN +55458 : 45.015914 : -93.47188 : Minneapolis, MN +55459 : 45.015914 : -93.47188 : Minneapolis, MN +55460 : 45.015914 : -93.47188 : Minneapolis, MN +55468 : 45.015914 : -93.47188 : Minneapolis, MN +55470 : 45.015914 : -93.47188 : Minneapolis, MN +55472 : 45.015914 : -93.47188 : Minneapolis, MN +55473 : 44.805487 : -93.766524 : Minneapolis, MN +55474 : 45.015914 : -93.47188 : Minneapolis, MN +55478 : 45.015914 : -93.47188 : Minneapolis, MN +55479 : 45.015914 : -93.47188 : Minneapolis, MN +55480 : 45.015914 : -93.47188 : Minneapolis, MN +55483 : 45.015914 : -93.47188 : Minneapolis, MN +55484 : 45.015914 : -93.47188 : Minneapolis, MN +55485 : 45.015914 : -93.47188 : Minneapolis, MN +55486 : 45.015914 : -93.47188 : Minneapolis, MN +55487 : 45.015914 : -93.47188 : Minneapolis, MN +55488 : 45.015914 : -93.47188 : Minneapolis, MN +55530 : 45.281604 : -93.546333 : Elk River, MN +55550 : 44.805487 : -93.766524 : Young America, MN +55551 : 44.805487 : -93.766524 : Young America, MN +55552 : 44.805487 : -93.766524 : Young America, MN +55553 : 44.805487 : -93.766524 : Young America, MN +55554 : 44.805487 : -93.766524 : Norwood, MN +55555 : 44.805487 : -93.766524 : Young America, MN +55556 : 44.805487 : -93.766524 : Young America, MN +55557 : 44.805487 : -93.766524 : Young America, MN +55558 : 44.805487 : -93.766524 : Young America, MN +55559 : 44.805487 : -93.766524 : Young America, MN +55560 : 44.805487 : -93.766524 : Young America, MN +55561 : 44.805487 : -93.766524 : Monticello, MN +55562 : 44.805487 : -93.766524 : Young America, MN +55563 : 44.805487 : -93.766524 : Monticello, MN +55564 : 44.805487 : -93.766524 : Young America, MN +55565 : 45.200875 : -93.888099 : Monticello, MN +55566 : 44.805487 : -93.766524 : Young America, MN +55567 : 44.805487 : -93.766524 : Young America, MN +55568 : 44.805487 : -93.766524 : Young America, MN +55569 : 45.015914 : -93.47188 : Osseo, MN +55570 : 45.015914 : -93.47188 : Maple Plain, MN +55571 : 45.015914 : -93.47188 : Maple Plain, MN +55572 : 45.015914 : -93.47188 : Maple Plain, MN +55573 : 45.015914 : -93.47188 : Young America, MN +55574 : 45.015914 : -93.47188 : Maple Plain, MN +55575 : 45.015914 : -93.47188 : Howard Lake, MN +55576 : 45.015914 : -93.47188 : Maple Plain, MN +55577 : 45.015914 : -93.47188 : Maple Plain, MN +55578 : 45.015914 : -93.47188 : Maple Plain, MN +55579 : 45.015914 : -93.47188 : Maple Plain, MN +55580 : 45.200875 : -93.888099 : Monticello, MN +55581 : 45.200875 : -93.888099 : Monticello, MN +55582 : 45.200875 : -93.888099 : Monticello, MN +55583 : 44.805487 : -93.766524 : Norwood, MN +55584 : 45.200875 : -93.888099 : Monticello, MN +55585 : 45.200875 : -93.888099 : Monticello, MN +55586 : 45.200875 : -93.888099 : Monticello, MN +55587 : 45.200875 : -93.888099 : Monticello, MN +55588 : 44.989512 : -93.880245 : Monticello, MN +55589 : 45.200875 : -93.888099 : Monticello, MN +55590 : 45.200875 : -93.888099 : Monticello, MN +55591 : 45.200875 : -93.888099 : Monticello, MN +55592 : 45.200875 : -93.888099 : Maple Plain, MN +55593 : 45.015914 : -93.47188 : Maple Plain, MN +55594 : 44.805487 : -93.766524 : Young America, MN +55595 : 45.015914 : -93.47188 : Loretto, MN +55596 : 45.015914 : -93.47188 : Loretto, MN +55597 : 45.015914 : -93.47188 : Loretto, MN +55598 : 45.015914 : -93.47188 : Loretto, MN +55599 : 45.015914 : -93.47188 : Loretto, MN +55601 : 47.258584 : -91.29977 : Beaver Bay, MN +55602 : 47.309443 : -91.87839 : Brimson, MN +55603 : 47.502703 : -91.20122 : Finland, MN +55604 : 47.939037 : -90.54659 : Grand Marais, MN +55605 : 47.967442 : -89.73735 : Grand Portage, MN +55606 : 47.940908 : -90.01705 : Hovland, MN +55607 : 47.664633 : -91.52953 : Isabella, MN +55608 : 44.741484 : -93.113155 : Rosemount, MN +55609 : 46.94939 : -91.78525 : Knife River, MN +55612 : 47.757804 : -90.63836 : Lutsen, MN +55613 : 47.651374 : -90.95917 : Schroeder, MN +55614 : 47.314743 : -91.25765 : Silver Bay, MN +55615 : 47.677189 : -90.81276 : Tofte, MN +55616 : 47.077723 : -91.66464 : Two Harbors, MN +55676 : 46.471964 : -92.687947 : Barnum, MN +55701 : 47.640367 : -92.442797 : Adolph, MN +55702 : 46.956644 : -92.63972 : Alborn, MN +55703 : 47.764569 : -92.76689 : Angora, MN +55704 : 46.22572 : -92.76706 : Askov, MN +55705 : 47.45225 : -92.24109 : Aurora, MN +55706 : 47.688083 : -91.91856 : Babbitt, MN +55707 : 46.533977 : -92.62697 : Barnum, MN +55708 : 47.533314 : -92.34084 : Biwabik, MN +55709 : 47.372262 : -93.38998 : Bovey, MN +55710 : 47.655096 : -92.66189 : Britt, MN +55711 : 46.870672 : -92.65082 : Brookston, MN +55712 : 46.275431 : -92.57886 : Bruno, MN +55713 : 47.49307 : -92.77783 : Buhl, MN +55715 : 47.494762 : -92.780293 : Buhl, MN +55716 : 47.32211 : -93.27581 : Calumet, MN +55717 : 47.058166 : -92.46078 : Canyon, MN +55718 : 46.649697 : -92.48477 : Carlton, MN +55719 : 47.509833 : -92.87637 : Chisholm, MN +55720 : 46.727077 : -92.48612 : Cloquet, MN +55721 : 47.247648 : -93.66491 : Cohasset, MN +55722 : 47.285247 : -93.43112 : Coleraine, MN +55723 : 47.854987 : -92.77077 : Cook, MN +55724 : 47.172574 : -92.41048 : Cotton, MN +55725 : 48.262021 : -92.61519 : Crane Lake, MN +55726 : 46.667284 : -92.87081 : Cromwell, MN +55728 : 47.757041 : -93.64059 : Bigfork, MN +55730 : 47.087782 : -93.921429 : Grand Rapids, MN +55731 : 47.913365 : -91.91712 : Ely, MN +55732 : 47.624206 : -92.23909 : Embarrass, MN +55733 : 46.708371 : -92.36434 : Esko, MN +55734 : 47.4211 : -92.51331 : Eveleth, MN +55735 : 46.250308 : -93.04462 : Finlayson, MN +55736 : 46.929033 : -92.90614 : Floodwood, MN +55738 : 47.296271 : -92.65485 : Forbes, MN +55741 : 47.4741 : -92.40533 : Gilbert, MN +55742 : 47.169979 : -93.13179 : Goodland, MN +55744 : 47.243062 : -93.52599 : Grand Rapids, MN +55745 : 47.087782 : -93.921429 : Grand Rapids, MN +55746 : 47.413817 : -92.94228 : Hibbing, MN +55747 : 47.640367 : -92.442797 : Hibbing, MN +55748 : 46.956138 : -93.60042 : Hill City, MN +55749 : 46.463827 : -92.40766 : Holyoke, MN +55750 : 47.517269 : -92.0706 : Hoyt Lakes, MN +55751 : 47.405699 : -92.63067 : Iron, MN +55752 : 46.974237 : -93.2632 : Jacobson, MN +55753 : 47.39654 : -93.07651 : Keewatin, MN +55756 : 46.374991 : -92.59795 : Kerrick, MN +55757 : 46.512349 : -92.92803 : Kettle River, MN +55758 : 47.511214 : -92.74026 : Kinney, MN +55760 : 46.67746 : -93.28391 : Mcgregor, MN +55761 : 47.512426 : -92.409999 : McKinley, MN +55763 : 47.310374 : -92.20091 : Makinen, MN +55764 : 47.319362 : -93.30077 : Marble, MN +55765 : 47.086392 : -92.75843 : Meadowlands, MN +55766 : 47.249626 : -92.412343 : Melrude, MN +55767 : 46.44429 : -92.7699 : Moose Lake, MN +55768 : 47.502878 : -92.66548 : Mountain Iron, MN +55769 : 47.406731 : -93.1645 : Nashwauk, MN +55771 : 48.098627 : -92.80495 : Orr, MN +55772 : 48.081686 : -93.083438 : Nett Lake, MN +55775 : 47.30797 : -93.20693 : Pengilly, MN +55777 : 47.640367 : -92.442797 : Virginia, MN +55778 : 46.626514 : -93.133317 : Clark, MN +55779 : 46.908416 : -92.44913 : Saginaw, MN +55780 : 46.670691 : -92.69235 : Sawyer, MN +55781 : 47.672765 : -93.05481 : Side Lake, MN +55782 : 47.813694 : -92.23977 : Soudan, MN +55783 : 46.379971 : -92.82748 : Sturgeon Lake, MN +55784 : 47.061875 : -93.20456 : Swan River, MN +55785 : 46.878205 : -93.70721 : Swatara, MN +55786 : 47.314189 : -93.38487 : Taconite, MN +55787 : 46.679313 : -93.13241 : Tamarack, MN +55790 : 47.825059 : -92.3247 : Tower, MN +55791 : 47.640367 : -92.442797 : Twig, MN +55792 : 47.527383 : -92.53371 : Virginia, MN +55793 : 47.116453 : -93.26881 : Warba, MN +55795 : 46.317812 : -92.84315 : Willow River, MN +55796 : 47.930468 : -91.79943 : Winton, MN +55797 : 46.534005 : -92.41983 : Wrenshall, MN +55798 : 46.723028 : -92.96594 : Wright, MN +55801 : 47.005566 : -92.001934 : Duluth, MN +55802 : 46.774593 : -92.09206 : Duluth, MN +55803 : 46.972432 : -92.10105 : Duluth, MN +55804 : 46.86242 : -91.98342 : Duluth, MN +55805 : 46.798339 : -92.09568 : Duluth, MN +55806 : 46.770773 : -92.12718 : Duluth, MN +55807 : 46.738841 : -92.16969 : Duluth, MN +55808 : 46.674141 : -92.2276 : Duluth, MN +55810 : 46.753414 : -92.24355 : Duluth, MN +55811 : 46.821489 : -92.18242 : Duluth, MN +55812 : 46.809438 : -92.07319 : Duluth, MN +55814 : 47.640367 : -92.442797 : Duluth, MN +55815 : 47.640367 : -92.442797 : Duluth, MN +55816 : 47.640367 : -92.442797 : Duluth, MN +55901 : 44.048931 : -92.49459 : Rochester, MN +55902 : 43.991846 : -92.49166 : Rochester, MN +55903 : 43.996613 : -92.540929 : Rochester, MN +55904 : 43.988708 : -92.42937 : Rochester, MN +55905 : 44.022513 : -92.466826 : Rochester, MN +55906 : 44.064733 : -92.44427 : Rochester, MN +55909 : 43.564175 : -92.72645 : Adams, MN +55910 : 44.128262 : -91.95965 : Altura, MN +55912 : 43.671988 : -92.97908 : Austin, MN +55917 : 43.88481 : -93.07546 : Blooming Prairie, MN +55918 : 43.743087 : -92.86434 : Brownsdale, MN +55919 : 43.664102 : -91.29057 : Brownsville, MN +55920 : 44.024835 : -92.6388 : Byron, MN +55921 : 43.630012 : -91.48667 : Caledonia, MN +55922 : 43.569417 : -91.90736 : Canton, MN +55923 : 43.84113 : -92.1606 : Chatfield, MN +55924 : 44.035716 : -93.01627 : Claremont, MN +55925 : 43.910929 : -91.39015 : Dakota, MN +55926 : 43.731945 : -92.70852 : Dexter, MN +55927 : 44.026272 : -92.86903 : Dodge Center, MN +55929 : 43.975269 : -92.14213 : Dover, MN +55931 : 43.511822 : -91.46635 : Eitzen, MN +55932 : 44.135053 : -92.28314 : Elgin, MN +55933 : 43.65099 : -92.70596 : Elkton, MN +55934 : 44.006609 : -92.24856 : Eyota, MN +55935 : 43.74676 : -92.12889 : Fountain, MN +55936 : 43.715085 : -92.57812 : Grand Meadow, MN +55939 : 43.55123 : -92.04994 : Harmony, MN +55940 : 43.885028 : -92.80894 : Hayfield, MN +55941 : 43.756567 : -91.36126 : Hokah, MN +55942 : 44.019989 : -91.68187 : Homer, MN +55943 : 43.769776 : -91.57534 : Houston, MN +55944 : 44.035512 : -92.75013 : Kasson, MN +55945 : 44.273406 : -92.04934 : Kellogg, MN +55946 : 44.268145 : -92.9651 : Kenyon, MN +55947 : 43.829382 : -91.33919 : La Crescent, MN +55949 : 43.70844 : -91.95965 : Lanesboro, MN +55950 : 43.743278 : -92.96929 : Lansing, MN +55951 : 43.525845 : -92.51616 : Le Roy, MN +55952 : 43.959148 : -91.84932 : Lewiston, MN +55953 : 43.519177 : -92.96466 : Lyle, MN +55954 : 43.498082 : -91.89429 : Mabel, IA +55955 : 44.068344 : -92.75616 : Mantorville, MN +55956 : 44.272368 : -92.53501 : Mazeppa, MN +55957 : 44.244633 : -92.29074 : Millville, MN +55959 : 44.093056 : -91.74422 : Minnesota City, MN +55960 : 44.152623 : -92.53706 : Oronoco, MN +55961 : 43.6122 : -92.46452 : Ostrander, MN +55962 : 43.762272 : -91.8453 : Peterson, MN +55963 : 44.196932 : -92.65482 : Pine Island, MN +55964 : 44.164431 : -92.17048 : Plainview, MN +55965 : 43.646355 : -92.12329 : Preston, MN +55967 : 43.786802 : -92.50425 : Racine, MN +55968 : 44.340826 : -92.282467 : Reads Landing, MN +55969 : 44.079021 : -91.84612 : Rollingstone, MN +55970 : 43.599507 : -92.83756 : Rose Creek, MN +55971 : 43.80784 : -91.75117 : Rushford, MN +55972 : 43.977555 : -92.06276 : Saint Charles, MN +55973 : 43.797677 : -92.7799 : Sargeant, MN +55974 : 43.57279 : -91.65004 : Spring Grove, MN +55975 : 43.686356 : -92.37242 : Spring Valley, MN +55976 : 43.862105 : -92.49849 : Stewartville, MN +55977 : 43.550714 : -92.65902 : Taopi, MN +55978 : 44.301714 : -92.178277 : West Albany, MN +55979 : 43.93422 : -91.95325 : Utica, MN +55981 : 44.374261 : -92.04204 : Wabasha, MN +55982 : 43.82009 : -92.87749 : Waltham, MN +55983 : 44.285672 : -92.79816 : Wanamingo, MN +55985 : 44.157166 : -92.89357 : West Concord, MN +55987 : 44.033867 : -91.65106 : Winona, MN +55988 : 44.025446 : -91.77304 : Stockton, MN +55990 : 43.714071 : -92.26493 : Wykoff, MN +55991 : 44.24431 : -92.41336 : Zumbro Falls, MN +55992 : 44.297157 : -92.68312 : Zumbrota, MN +56001 : 44.15644 : -93.99388 : Mankato, MN +56002 : 44.056047 : -94.069828 : Mankato, MN +56003 : 44.184909 : -94.04244 : Mankato, MN +56006 : 44.056047 : -94.069828 : Mankato, MN +56007 : 43.652042 : -93.36916 : Albert Lea, MN +56009 : 43.667207 : -93.55598 : Alden, MN +56010 : 43.899907 : -94.20634 : Amboy, MN +56011 : 44.616113 : -93.76906 : Belle Plaine, MN +56013 : 43.630763 : -94.10129 : Blue Earth, MN +56014 : 43.589604 : -93.81676 : Bricelyn, MN +56016 : 43.764506 : -93.33357 : Clarks Grove, MN +56017 : 44.304948 : -93.80077 : Cleveland, MN +56019 : 44.11754 : -94.88998 : Comfrey, MN +56020 : 43.613686 : -93.53072 : Conger, MN +56021 : 44.277333 : -94.31424 : Courtland, MN +56022 : 44.049908 : -94.83877 : Darfur, MN +56023 : 43.782104 : -94.01341 : Delavan, MN +56024 : 44.153696 : -93.86918 : Eagle Lake, MN +56025 : 43.764111 : -93.90534 : Easton, MN +56026 : 43.884985 : -93.2917 : Ellendale, MN +56027 : 43.482104 : -94.09837 : Elmore, IA +56028 : 44.207288 : -93.68716 : Elysian, MN +56029 : 43.516115 : -93.51768 : Emmons, MN +56030 : 44.325833 : -94.605226 : Essig, MN +56031 : 43.646916 : -94.45856 : Fairmont, MN +56032 : 43.766208 : -93.56339 : Freeborn, MN +56033 : 43.579548 : -93.93826 : Frost, MN +56034 : 44.029058 : -94.18186 : Garden City, MN +56035 : 43.819798 : -93.26713 : Geneva, MN +56036 : 43.550747 : -93.21987 : Glenville, MN +56037 : 44.017609 : -94.05231 : Good Thunder, MN +56039 : 43.680519 : -94.33773 : Granada, MN +56041 : 44.149047 : -94.5238 : Hanska, MN +56042 : 43.796535 : -93.49143 : Hartland, MN +56043 : 43.65048 : -93.224 : Hayward, MN +56044 : 44.555899 : -93.95354 : Henderson, MN +56045 : 43.762109 : -93.18959 : Hollandale, MN +56046 : 43.955103 : -93.274017 : Hope, MN +56047 : 43.738397 : -94.228897 : Huntley, MN +56048 : 44.102188 : -93.71255 : Janesville, MN +56050 : 44.28491 : -93.95806 : Kasota, MN +56051 : 43.535709 : -93.71308 : Kiester, MN +56052 : 44.320314 : -93.57071 : Kilkenny, MN +56054 : 44.431776 : -94.37742 : Lafayette, MN +56055 : 44.128212 : -94.23883 : Lake Crystal, MN +56056 : 44.070204 : -94.57143 : La Salle, MN +56057 : 44.393899 : -93.72583 : Le Center, MN +56058 : 44.449976 : -93.90513 : Le Sueur, MN +56060 : 43.930032 : -94.43935 : Lewisville, MN +56062 : 44.045998 : -94.4211 : Madelia, MN +56063 : 44.204121 : -93.81923 : Madison Lake, MN +56064 : 43.723693 : -93.45161 : Manchester, MN +56065 : 43.931415 : -93.92866 : Mapleton, MN +56068 : 43.848573 : -93.81718 : Minnesota Lake, MN +56069 : 44.429956 : -93.56982 : Montgomery, MN +56071 : 44.546463 : -93.57848 : New Prague, MN +56072 : 43.899778 : -93.53178 : New Richland, MN +56073 : 44.308395 : -94.46149 : New Ulm, MN +56074 : 44.331757 : -94.19561 : Nicollet, MN +56075 : 43.735594 : -94.43584 : Northrop, MN +56076 : 43.671266 : -93.11918 : Oakland, MN +56078 : 44.007228 : -93.77764 : Pemberton, MN +56080 : 44.080713 : -93.85663 : Saint Clair, MN +56081 : 43.986563 : -94.63345 : Saint James, MN +56082 : 44.337276 : -93.99282 : Saint Peter, MN +56083 : 44.21838 : -95.13348 : Sanborn, MN +56084 : 44.302893 : -94.738827 : Searles, MN +56085 : 44.29717 : -94.73426 : Sleepy Eye, MN +56087 : 44.239384 : -94.98313 : Springfield, MN +56088 : 43.834331 : -94.4436 : Truman, MN +56089 : 43.563452 : -93.42694 : Twin Lakes, MN +56090 : 43.95885 : -94.22403 : Vernon Center, MN +56091 : 43.930363 : -93.69492 : Waldorf, MN +56093 : 44.067673 : -93.5103 : Waseca, MN +56096 : 44.234274 : -93.5884 : Waterville, MN +56097 : 43.731479 : -93.71837 : Wells, MN +56098 : 43.764936 : -94.18016 : Winnebago, MN +56101 : 43.870469 : -95.13275 : Windom, MN +56110 : 43.626278 : -95.93973 : Adrian, MN +56111 : 43.645226 : -94.8715 : Alpha, MN +56113 : 44.398668 : -96.17095 : Arco, MN +56114 : 43.971169 : -95.6128 : Avoca, MN +56115 : 44.227802 : -95.9021 : Balaton, MN +56116 : 43.621142 : -96.3866 : Beaver Creek, MN +56117 : 43.513198 : -95.69138 : Bigelow, MN +56118 : 43.936146 : -95.02938 : Bingham Lake, MN +56119 : 43.702735 : -95.46946 : Brewster, MN +56120 : 43.957826 : -94.79571 : Butterfield, MN +56121 : 43.535662 : -94.62877 : Ceylon, MN +56122 : 43.89707 : -95.95855 : Chandler, MN +56123 : 44.084381 : -95.59321 : Currie, MN +56125 : 44.053323 : -95.549899 : Dovray, MN +56126 : 43.820313 : -95.523182 : Graham Lakes, MN +56127 : 43.556667 : -94.77432 : Dunnell, MN +56128 : 43.89387 : -96.1285 : Edgerton, MN +56129 : 43.495384 : -95.90691 : Ellsworth, IA +56130 : 44.238659 : -96.052227 : Florence, MN +56131 : 43.861532 : -95.59378 : Fulda, MN +56132 : 44.212536 : -95.75998 : Garvin, MN +56134 : 43.783098 : -96.22202 : Hardwick, MN +56135 : 46.829136 : -94.430518 : Powers, MN +56136 : 44.512114 : -96.41157 : Hendricks, MN +56137 : 43.826163 : -95.34591 : Heron Lake, MN +56138 : 43.529153 : -96.36669 : Hills, MN +56139 : 44.092188 : -96.18168 : Holland, MN +56140 : 43.907841 : -96.36802 : Ihlen, MN +56141 : 43.884657 : -95.77444 : Iona, MN +56142 : 44.476959 : -96.23 : Ivanhoe, MN +56143 : 43.625811 : -95.00447 : Jackson, MN +56144 : 43.854184 : -96.39022 : Jasper, MN +56145 : 44.057605 : -95.18517 : Jeffers, MN +56146 : 43.674883 : -96.252794 : Kanaranzi, MN +56147 : 43.750164 : -96.06591 : Kenneth, MN +56149 : 44.268332 : -96.30822 : Lake Benton, MN +56150 : 43.649239 : -95.19501 : Lakefield, MN +56151 : 44.015184 : -95.91403 : Lake Wilson, MN +56152 : 44.227021 : -95.28014 : Lamberton, MN +56153 : 43.834517 : -96.0186 : Leota, MN +56155 : 43.763442 : -95.94459 : Lismore, MN +56156 : 43.653947 : -96.2303 : Luverne, MN +56157 : 44.396043 : -95.92771 : Lynd, MN +56158 : 43.642511 : -96.06011 : Magnolia, MN +56159 : 43.942515 : -94.93058 : Mountain Lake, MN +56160 : 43.847252 : -94.77124 : Odin, MN +56161 : 43.724852 : -95.32545 : Okabena, MN +56162 : 43.843264 : -94.68446 : Ormsby, MN +56164 : 44.020814 : -96.32473 : Pipestone, MN +56165 : 43.725227 : -95.7032 : Reading, MN +56166 : 44.2127 : -95.3633 : Revere, MN +56167 : 43.536338 : -95.38554 : Round Lake, MN +56168 : 43.608503 : -95.80946 : Rushmore, MN +56169 : 44.319682 : -95.98835 : Russell, MN +56170 : 44.17521 : -96.07363 : Ruthton, MN +56171 : 43.660847 : -94.74357 : Sherburn, MN +56172 : 44.007631 : -95.75803 : Slayton, MN +56173 : 43.521947 : -96.24301 : Steen, MN +56174 : 44.031366 : -95.30674 : Storden, MN +56175 : 44.260625 : -95.62371 : Tracy, MN +56176 : 43.771341 : -94.72593 : Trimont, MN +56177 : 43.887295 : -96.25132 : Trosky, MN +56178 : 44.274909 : -96.12408 : Tyler, MN +56180 : 44.249331 : -95.46821 : Walnut Grove, MN +56181 : 43.672105 : -94.61716 : Welcome, MN +56183 : 44.043567 : -95.41116 : Westbrook, MN +56185 : 43.783453 : -95.82563 : Wilmont, MN +56186 : 44.028354 : -96.07063 : Woodstock, MN +56187 : 43.623255 : -95.59604 : Worthington, MN +56201 : 45.118846 : -95.04504 : Willmar, MN +56207 : 45.532754 : -96.06453 : Alberta, MN +56208 : 45.228278 : -96.00539 : Appleton, MN +56209 : 45.128657 : -94.79069 : Atwater, MN +56210 : 45.559291 : -96.558886 : Barry, MN +56211 : 45.593033 : -96.6879 : Beardsley, MN +56212 : 45.140784 : -96.32855 : Bellingham, MN +56214 : 44.59231 : -95.33465 : Belview, MN +56215 : 45.317872 : -95.57247 : Benson, MN +56216 : 44.945988 : -95.05923 : Blomkest, MN +56218 : 44.838823 : -95.94042 : Boyd, MN +56219 : 45.606998 : -96.81833 : Browns Valley, MN +56220 : 44.725437 : -96.2921 : Canby, MN +56221 : 45.556847 : -96.1897 : Chokio, MN +56222 : 44.974538 : -95.36594 : Clara City, MN +56223 : 44.761504 : -95.8183 : Clarkfield, MN +56224 : 44.375214 : -95.06695 : Clements, MN +56225 : 45.459383 : -96.44694 : Clinton, MN +56226 : 45.409218 : -95.69334 : Clontarf, MN +56227 : 45.290863 : -96.16888 : Correll, MN +56228 : 44.933861 : -94.67563 : Cosmos, MN +56229 : 44.609098 : -95.70555 : Cottonwood, MN +56230 : 44.79129 : -95.09671 : Danube, MN +56231 : 45.27133 : -95.7711 : Danvers, MN +56232 : 44.932368 : -96.04823 : Dawson, MN +56235 : 45.697239 : -96.01767 : Donnelly, MN +56236 : 45.664974 : -96.39608 : Dumont, MN +56237 : 44.616243 : -95.43173 : Echo, MN +56239 : 44.515475 : -95.89576 : Ghent, MN +56240 : 45.568463 : -96.45916 : Graceville, MN +56241 : 44.794723 : -95.56737 : Granite Falls, MN +56243 : 45.168724 : -94.68641 : Grove City, MN +56244 : 45.488399 : -95.78157 : Hancock, MN +56245 : 44.690608 : -95.65028 : Hanley Falls, MN +56246 : 45.34373 : -94.83013 : Hawick, MN +56248 : 45.800145 : -96.13895 : Herman, MN +56249 : 45.299531 : -95.8996 : Holloway, MN +56251 : 45.133103 : -94.91976 : Kandiyohi, MN +56252 : 45.18553 : -95.30198 : Kerkhoven, MN +56253 : 44.959237 : -94.88831 : Lake Lillian, MN +56255 : 44.397402 : -95.42013 : Lucan, MN +56256 : 45.036047 : -96.19573 : Madison, MN +56257 : 44.986761 : -96.40968 : Marietta, MN +56258 : 44.446885 : -95.77281 : Marshall, MN +56260 : 44.943885 : -95.48031 : Maynard, MN +56262 : 45.113285 : -95.86913 : Milan, MN +56263 : 44.417337 : -95.54999 : Milroy, MN +56264 : 44.58701 : -95.98153 : Minneota, MN +56265 : 44.985313 : -95.7066 : Montevideo, MN +56266 : 44.417533 : -94.91902 : Morgan, MN +56267 : 45.584124 : -95.9092 : Morris, MN +56270 : 44.552749 : -94.98994 : Morton, MN +56271 : 45.242264 : -95.42422 : Murdock, MN +56273 : 45.327429 : -94.99921 : New London, MN +56274 : 45.897971 : -96.24441 : Norcross, MN +56276 : 45.245844 : -96.32641 : Odessa, MN +56277 : 44.766441 : -94.99624 : Olivia, MN +56278 : 45.335958 : -96.40032 : Ortonville, MN +56279 : 45.200641 : -95.17748 : Pennock, MN +56280 : 44.633159 : -96.16532 : Porter, MN +56281 : 44.945831 : -95.17628 : Prinsburg, MN +56282 : 45.028945 : -95.22418 : Raymond, MN +56283 : 44.540923 : -95.12732 : Redwood Falls, MN +56284 : 44.783251 : -95.20682 : Renville, MN +56285 : 44.79624 : -95.35045 : Sacred Heart, MN +56286 : 44.716494 : -96.054791 : St. Leo, MN +56287 : 44.475845 : -95.32579 : Seaforth, MN +56288 : 45.238936 : -94.95001 : Spicer, MN +56289 : 45.344013 : -95.22335 : Sunburg, MN +56291 : 44.598116 : -96.06801 : Taunton, MN +56292 : 44.501023 : -95.45228 : Vesta, MN +56293 : 44.403815 : -95.25784 : Wabasso, MN +56294 : 44.317104 : -95.21378 : Wanda, MN +56295 : 45.024344 : -95.82794 : Watson, MN +56296 : 45.823795 : -96.47706 : Wheaton, MN +56297 : 44.6367 : -95.55359 : Wood Lake, MN +56301 : 45.526066 : -94.20649 : Saint Cloud, MN +56302 : 45.49343 : -94.643922 : Saint Cloud, MN +56303 : 45.568516 : -94.19251 : Saint Cloud, MN +56304 : 45.547283 : -94.11303 : Saint Cloud, MN +56307 : 45.632455 : -94.58257 : Albany, MN +56308 : 45.88645 : -95.38287 : Alexandria, MN +56309 : 46.080287 : -95.80539 : Ashby, MN +56310 : 45.624705 : -94.44973 : Avon, MN +56311 : 45.902998 : -95.88297 : Barrett, MN +56312 : 45.460931 : -94.96697 : Belgrade, MN +56313 : 45.785883 : -93.55343 : Bock, MN +56314 : 45.814436 : -94.42539 : Bowlus, MN +56315 : 45.968739 : -95.5942 : Brandon, MN +56316 : 45.510591 : -95.13636 : Brooten, MN +56317 : 46.061307 : -94.208731 : Buckman, MN +56318 : 45.85303 : -94.67459 : Burtrum, MN +56319 : 45.990781 : -95.27033 : Carlos, MN +56320 : 45.462728 : -94.42511 : Cold Spring, MN +56321 : 45.578278 : -94.419941 : Collegeville, MN +56323 : 45.63381 : -95.72642 : Cyrus, MN +56324 : 46.169964 : -95.90465 : Dalton, MN +56325 : 45.562459 : -94.94661 : Elrosa, MN +56326 : 46.011931 : -95.68104 : Evansville, MN +56327 : 45.778773 : -95.60302 : Farwell, MN +56328 : 45.953535 : -94.52834 : Flensburg, MN +56329 : 45.695411 : -93.90417 : Foley, MN +56330 : 45.732493 : -93.73102 : Foreston, MN +56331 : 45.67539 : -94.67303 : Freeport, MN +56332 : 45.950306 : -95.50754 : Garfield, MN +56333 : 45.691714 : -94.05629 : Gilman, MN +56334 : 45.609555 : -95.35104 : Glenwood, MN +56335 : 45.601429 : -94.85864 : Greenwald, MN +56336 : 45.819474 : -94.76247 : Grey Eagle, MN +56338 : 46.035241 : -93.9153 : Hillman, MN +56339 : 45.825031 : -95.81104 : Hoffman, MN +56340 : 45.749908 : -94.45647 : Holdingford, MN +56341 : 45.830998 : -95.541618 : Holmes City, MN +56342 : 46.212757 : -93.45729 : Isle, MN +56343 : 45.795887 : -95.66742 : Kensington, MN +56344 : 46.061307 : -94.208731 : Lastrup, MN +56345 : 45.994029 : -94.37183 : Little Falls, MN +56347 : 45.973572 : -94.8582 : Long Prairie, MN +56349 : 45.728732 : -95.52504 : Lowry, MN +56350 : 46.274325 : -93.26096 : McGrath, MN +56352 : 45.659491 : -94.81417 : Melrose, MN +56353 : 45.760191 : -93.63247 : Milaca, MN +56354 : 46.063391 : -95.28168 : Miltona, MN +56355 : 45.92084 : -95.23965 : Nelson, MN +56356 : 45.628804 : -94.75466 : New Munich, MN +56357 : 45.699995 : -93.80256 : Oak Park, MN +56358 : 45.831767 : -93.44162 : Ogilvie, MN +56359 : 46.073505 : -93.66983 : Onamia, MN +56360 : 45.884771 : -95.10486 : Osakis, MN +56361 : 46.156758 : -95.33754 : Parkers Prairie, MN +56362 : 45.389395 : -94.70519 : Paynesville, MN +56363 : 45.697362 : -93.646503 : Pease, MN +56364 : 45.996396 : -94.08461 : Pierz, MN +56366 : 47.572516 : -93.899486 : Bowstring, MN +56367 : 45.745266 : -94.18176 : Rice, MN +56368 : 45.448703 : -94.52597 : Richmond, MN +56369 : 45.470635 : -94.33862 : Rockville, MN +56371 : 45.432316 : -94.63552 : Roscoe, MN +56372 : 45.52886 : -94.593338 : Saint Cloud, MN +56373 : 45.840565 : -94.26434 : Royalton, MN +56374 : 45.582653 : -94.32974 : Saint Joseph, MN +56375 : 45.702598 : -94.27609 : Saint Stephen, MN +56376 : 45.498506 : -94.66271 : Saint Martin, MN +56377 : 45.622966 : -94.20959 : Sartell, MN +56378 : 45.729898 : -94.97236 : Sauk Centre, MN +56379 : 45.608178 : -94.13838 : Sauk Rapids, MN +56381 : 45.578335 : -95.55201 : Starbuck, MN +56382 : 45.904129 : -94.62373 : Swanville, MN +56384 : 45.80679 : -94.57067 : Upsala, MN +56385 : 45.702767 : -95.21433 : Villard, MN +56386 : 46.114445 : -93.51986 : Wahkon, MN +56387 : 45.550378 : -94.22429 : Waite Park, MN +56388 : 45.946528 : -93.84788 : Mount Morris, MN +56389 : 45.799542 : -95.08213 : West Union, MN +56393 : 45.52886 : -94.593338 : Saint Cloud, MN +56395 : 45.52886 : -94.593338 : Saint Cloud, MN +56396 : 45.52886 : -94.593338 : Saint Cloud, MN +56397 : 45.52886 : -94.593338 : Saint Cloud, MN +56398 : 45.52886 : -94.593338 : Saint Cloud, MN +56399 : 45.52886 : -94.593338 : Saint Cloud, MN +56401 : 46.352758 : -94.16289 : Brainerd, MN +56425 : 46.347175 : -94.27017 : Baxter, MN +56430 : 46.862332 : -94.641872 : Ah Gwah Ching, MN +56431 : 46.507241 : -93.66458 : Aitkin, MN +56432 : 45.910946 : -94.633724 : Acton, MN +56433 : 46.977161 : -94.70512 : Akeley, MN +56434 : 46.376819 : -94.93781 : Aldrich, MN +56435 : 46.823666 : -94.50471 : Backus, MN +56436 : 47.143679 : -94.68589 : Benedict, MN +56437 : 46.252854 : -95.06222 : Bertha, MN +56438 : 46.149276 : -94.83088 : Browerville, MN +56440 : 46.129933 : -94.95278 : Clarissa, MN +56441 : 46.528094 : -93.98055 : Crosby, MN +56442 : 46.67066 : -94.10686 : Crosslake, MN +56443 : 46.194584 : -94.6196 : Cushing, MN +56444 : 46.438976 : -93.89064 : Deerwood, MN +56446 : 46.145445 : -95.07071 : Eagle Bend, MN +56447 : 46.735697 : -93.94205 : Emily, MN +56448 : 46.747211 : -94.07246 : Fifty Lakes, MN +56449 : 46.166054 : -94.29254 : Fort Ripley, MN +56450 : 46.244818 : -93.8155 : Garrison, MN +56452 : 46.963355 : -94.4646 : Hackensack, MN +56453 : 46.32091 : -95.14567 : Hewitt, MN +56455 : 46.483523 : -93.99978 : Ironton, MN +56456 : 46.650706 : -94.33651 : Jenkins, MN +56458 : 47.206754 : -94.97109 : Lake George, MN +56459 : 46.498749 : -94.251926 : Lake Hubert, MN +56460 : 47.239049 : -95.265379 : Itasca, MN +56461 : 47.260013 : -94.84475 : Laporte, MN +56464 : 46.770167 : -95.09659 : Menahga, MN +56465 : 46.527729 : -94.11071 : Merrifield, MN +56466 : 46.362398 : -94.63849 : Motley, MN +56467 : 46.970017 : -94.85013 : Nevis, MN +56468 : 46.501623 : -94.28917 : Nisswa, MN +56469 : 46.702947 : -93.5203 : Palisade, MN +56470 : 46.974221 : -95.06581 : Park Rapids, MN +56472 : 46.602684 : -94.29986 : Pequot Lakes, MN +56473 : 46.368605 : -94.4846 : Pillager, MN +56474 : 46.718997 : -94.38716 : Pine River, MN +56475 : 46.099545 : -94.50864 : Randall, MN +56477 : 46.630023 : -95.01222 : Sebeka, MN +56478 : 46.605266 : -94.900729 : Nimrod, MN +56479 : 46.380664 : -94.80503 : Staples, MN +56481 : 46.434002 : -94.95748 : Verndale, MN +56482 : 46.447659 : -95.14289 : Wadena, MN +56483 : 46.439079 : -95.137497 : Wadena, MN +56484 : 47.099774 : -94.53347 : Walker, MN +56501 : 46.809965 : -95.8518 : Detroit Lakes, MN +56502 : 46.933961 : -95.678375 : Detroit Lakes, MN +56508 : 46.732051 : -95.997757 : Lake Eunice, MN +56510 : 47.322444 : -96.51915 : Ada, MN +56511 : 46.863375 : -95.99585 : Audubon, MN +56513 : 46.723274 : -96.54727 : Baker, MN +56514 : 46.653912 : -96.42891 : Barnesville, MN +56515 : 46.284496 : -95.70975 : Battle Lake, MN +56516 : 47.4514 : -95.98766 : Bejou, MN +56517 : 47.55171 : -96.53492 : Beltrami, MN +56518 : 46.467905 : -95.25532 : Bluffton, MN +56519 : 47.158015 : -96.51487 : Borup, MN +56520 : 46.27324 : -96.54888 : Breckenridge, MN +56521 : 47.015728 : -95.87008 : Callaway, MN +56522 : 46.130213 : -96.40019 : Campbell, MN +56523 : 47.651391 : -96.80408 : Climax, MN +56524 : 46.235125 : -95.61543 : Clitherall, MN +56525 : 46.659932 : -96.74693 : Comstock, MN +56527 : 46.383585 : -95.31644 : Deer Creek, MN +56528 : 46.528138 : -95.79661 : Dent, MN +56529 : 46.878062 : -96.70242 : Dilworth, MN +56531 : 45.990556 : -95.96704 : Elbow Lake, MN +56533 : 46.405807 : -96.15831 : Elizabeth, MN +56534 : 46.470638 : -96.01013 : Erhard, MN +56535 : 47.666426 : -96.03701 : Erskine, MN +56536 : 47.050391 : -96.53933 : Felton, MN +56537 : 46.282084 : -96.06798 : Fergus Falls, MN +56538 : 46.412413 : -95.713452 : Fergus Falls, MN +56540 : 47.557644 : -96.26954 : Fertile, MN +56541 : 47.325074 : -96.469194 : Flom, MN +56542 : 47.571567 : -95.73784 : Fosston, MN +56543 : 46.290371 : -96.33238 : Foxhome, MN +56544 : 46.742349 : -95.62935 : Frazee, MN +56545 : 47.363986 : -96.2396 : Gary, MN +56546 : 47.10033 : -96.74309 : Georgetown, MN +56547 : 46.884481 : -96.56301 : Glyndon, MN +56548 : 47.36461 : -96.78265 : Halstad, MN +56549 : 46.864977 : -96.30781 : Hawley, MN +56550 : 47.271427 : -96.76456 : Hendrum, MN +56551 : 46.31855 : -95.45375 : Henning, MN +56552 : 46.988379 : -96.23607 : Hitterdal, MN +56553 : 46.434718 : -96.62429 : Kent, MN +56554 : 46.861527 : -96.10974 : Lake Park, MN +56556 : 47.656231 : -95.88214 : Mcintosh, MN +56557 : 47.330624 : -95.87672 : Mahnomen, MN +56560 : 46.861413 : -96.75367 : Moorhead, MN +56561 : 46.890034 : -96.506156 : Moorhead, MN +56562 : 46.890034 : -96.506156 : Moorhead, MN +56563 : 46.890034 : -96.506156 : Moorhead, MN +56565 : 46.040316 : -96.31772 : Nashua, MN +56566 : 47.257131 : -95.61749 : Naytahwaush, MN +56567 : 46.534993 : -95.38106 : New York Mills, MN +56568 : 47.53525 : -96.78313 : Nielsville, MN +56569 : 47.093608 : -95.84166 : Ogema, MN +56570 : 46.895156 : -95.36174 : Osage, MN +56571 : 46.428432 : -95.559 : Ottertail, MN +56572 : 46.608461 : -96.0663 : Pelican Rapids, MN +56573 : 46.607429 : -95.55911 : Perham, MN +56574 : 47.197932 : -96.72953 : Perley, MN +56575 : 47.042394 : -95.43451 : Ponsford, MN +56576 : 46.467527 : -95.69675 : Richville, MN +56577 : 46.933961 : -95.678375 : Richwood, MN +56578 : 46.920986 : -95.66842 : Rochert, MN +56579 : 46.459359 : -96.34149 : Rothsay, MN +56580 : 46.754039 : -96.63715 : Sabin, MN +56581 : 47.457626 : -96.78723 : Shelly, MN +56583 : 46.014161 : -96.40019 : Tintah, MN +56584 : 47.245894 : -96.24825 : Twin Valley, MN +56585 : 47.087171 : -96.24725 : Ulen, MN +56586 : 46.330985 : -95.84679 : Underwood, MN +56587 : 46.64246 : -95.83042 : Vergas, MN +56588 : 46.246571 : -95.5305 : Vining, MN +56589 : 47.174775 : -95.74517 : Waubun, MN +56590 : 46.033624 : -96.13988 : Wendell, MN +56591 : 46.933961 : -95.678375 : White Earth, MN +56592 : 47.530842 : -96.00853 : Winger, MN +56593 : 46.821648 : -95.391968 : Wolf Lake, MN +56594 : 46.565562 : -96.66702 : Wolverton, MN +56601 : 47.504496 : -94.87105 : Bemidji, MN +56619 : 47.625699 : -94.822154 : Bemidji, MN +56621 : 47.436583 : -95.41337 : Bagley, MN +56623 : 48.663939 : -94.54953 : Baudette, MN +56626 : 47.340327 : -94.245 : Bena, MN +56627 : 48.186112 : -93.80726 : Big Falls, MN +56628 : 47.667203 : -93.58773 : Bigfork, MN +56629 : 48.551313 : -94.17684 : Birchdale, MN +56630 : 47.722624 : -94.5319 : Blackduck, MN +56631 : 47.087782 : -93.921429 : Bowstring, MN +56633 : 47.373207 : -94.58834 : Cass Lake, MN +56634 : 47.67265 : -95.42809 : Clearbrook, MN +56636 : 47.382872 : -93.84832 : Deer River, MN +56637 : 47.611885 : -93.83267 : Talmoon, MN +56639 : 47.852874 : -93.50758 : Effie, MN +56641 : 47.243893 : -94.23203 : Federal Dam, MN +56643 : 46.631748 : -93.515456 : Fleming, MN +56644 : 47.755904 : -95.5078 : Gonvick, MN +56646 : 47.771933 : -95.64403 : Gully, MN +56647 : 47.666705 : -94.61868 : Hines, MN +56649 : 48.579947 : -93.38142 : International Falls, MN +56650 : 47.997931 : -94.55748 : Kelliher, MN +56651 : 47.465509 : -95.64614 : Lengby, MN +56652 : 47.702771 : -95.22132 : Leonard, MN +56653 : 48.366833 : -93.56367 : Littlefork, MN +56654 : 48.527572 : -93.83554 : Loman, MN +56655 : 46.975876 : -94.21508 : Longville, MN +56657 : 47.578093 : -93.62929 : Marcell, MN +56658 : 48.27888 : -93.755536 : Margie, MN +56659 : 47.64542 : -94.05089 : Max, MN +56660 : 47.954759 : -94.20965 : Mizpah, MN +56661 : 47.821937 : -94.18727 : Northome, MN +56662 : 46.850438 : -93.94081 : Outing, MN +56663 : 47.464399 : -94.44806 : Pennington, MN +56666 : 48.018746 : -94.87594 : Ponemah, MN +56667 : 47.750406 : -94.91254 : Puposky, MN +56668 : 48.603143 : -93.29771 : Ranier, MN +56669 : 48.443118 : -93.14296 : Ray, MN +56670 : 47.854118 : -94.93168 : Redby, MN +56671 : 47.871135 : -95.14362 : Redlake, MN +56672 : 47.036967 : -94.02951 : Remer, MN +56673 : 48.730013 : -95.09004 : Roosevelt, MN +56676 : 47.506665 : -95.21527 : Shevlin, MN +56678 : 47.508863 : -95.11397 : Solway, MN +56679 : 48.27888 : -93.755536 : South International Falls, MN +56680 : 47.663689 : -93.94631 : Spring Lake, MN +56681 : 47.617774 : -94.24098 : Squaw Lake, MN +56682 : 48.769244 : -95.747559 : Swift, MN +56683 : 47.690018 : -94.71889 : Tenstrike, MN +56684 : 47.855588 : -95.69895 : Trail, MN +56685 : 48.153759 : -94.51934 : Waskish, MN +56686 : 48.786139 : -94.91418 : Williams, MN +56687 : 47.501402 : -94.99344 : Wilton, MN +56688 : 47.756467 : -93.93298 : Wirt, MN +56701 : 48.118625 : -96.1793 : Thief River Falls, MN +56710 : 48.192532 : -96.9986 : Alvarado, MN +56711 : 49.342144 : -95.03571 : Angle Inlet, MN +56712 : 48.071847 : -96.74918 : Angus, MN +56713 : 48.342579 : -96.79448 : Argyle, MN +56714 : 48.795471 : -96.01816 : Badger, MN +56715 : 47.808866 : -95.97713 : Brooks, MN +56716 : 47.761982 : -96.58055 : Crookston, MN +56720 : 48.574128 : -96.89632 : Donaldson, MN +56721 : 47.956458 : -96.98774 : East Grand Forks, MN +56722 : 47.970507 : -96.66654 : Euclid, MN +56723 : 47.826487 : -96.83308 : Fisher, MN +56724 : 48.445999 : -95.74148 : Gatzke, MN +56725 : 48.128712 : -95.82013 : Goodridge, MN +56726 : 48.698749 : -96.20637 : Greenbush, MN +56727 : 48.32162 : -95.47515 : Grygla, MN +56728 : 48.787016 : -96.95434 : Hallock, MN +56729 : 48.655487 : -96.59592 : Halma, MN +56731 : 48.909857 : -97.09566 : Humboldt, MN +56732 : 48.565296 : -96.47578 : Karlstad, MN +56733 : 48.634961 : -96.92156 : Kennedy, MN +56734 : 48.732852 : -96.63392 : Lake Bronson, MN +56735 : 48.892011 : -96.68027 : Lancaster, MN +56736 : 47.702366 : -96.1539 : Mentor, MN +56737 : 48.436061 : -96.06973 : Middle River, MN +56738 : 48.348745 : -96.32534 : Newfolden, MN +56740 : 48.771938 : -96.812921 : Noyes, MN +56741 : 49.242285 : -94.84003 : Oak Island, MN +56742 : 47.899103 : -95.84846 : Oklee, MN +56744 : 48.233942 : -97.11882 : Oslo, MN +56748 : 47.915369 : -96.02739 : Plummer, MN +56750 : 47.886448 : -96.29033 : Red Lake Falls, MN +56751 : 48.817919 : -95.75167 : Roseau, MN +56754 : 48.011365 : -96.20491 : Saint Hilaire, MN +56755 : 48.954448 : -97.13949 : Saint Vincent, MN +56756 : 48.869494 : -95.51436 : Salol, MN +56757 : 48.478075 : -96.83465 : Stephen, MN +56758 : 48.472648 : -96.5018 : Strandquist, MN +56759 : 48.565391 : -96.07014 : Strathcona, MN +56760 : 48.232438 : -96.44919 : Viking, MN +56761 : 48.609478 : -95.6602 : Wannaska, MN +56762 : 48.195512 : -96.74207 : Warren, MN +56763 : 48.890886 : -95.33831 : Warroad, MN +57001 : 42.974216 : -96.63848 : Alcester, SD +57002 : 44.287058 : -96.67784 : Aurora, SD +57003 : 43.726266 : -96.74702 : Baltic, SD +57004 : 43.069991 : -96.79091 : Beresford, SD +57005 : 43.590014 : -96.58362 : Brandon, SD +57006 : 44.305418 : -96.7906 : Brookings, SD +57007 : 44.369696 : -96.790705 : Brookings, SD +57010 : 42.819124 : -96.8163 : Burbank, SD +57012 : 43.608442 : -97.25757 : Canistota, SD +57013 : 43.294672 : -96.60442 : Canton, SD +57014 : 43.111838 : -96.9563 : Centerville, SD +57015 : 43.410132 : -96.97587 : Chancellor, SD +57016 : 43.89916 : -96.95926 : Chester, SD +57017 : 44.001123 : -96.81166 : Colman, SD +57018 : 43.797629 : -96.96107 : Colton, SD +57020 : 43.672525 : -96.81757 : Crooks, SD +57021 : 43.268424 : -96.99369 : Davis, SD +57022 : 43.833265 : -96.70684 : Dell Rapids, SD +57024 : 43.997522 : -96.65717 : Egan, SD +57025 : 42.728534 : -96.69785 : Elk Point, SD +57026 : 44.252315 : -96.5166 : Elkton, SD +57027 : 43.192357 : -96.51982 : Fairview, SD +57028 : 44.047857 : -96.58896 : Flandreau, SD +57029 : 43.335663 : -97.47022 : Freeman, SD +57030 : 43.735778 : -96.54332 : Garretson, SD +57031 : 42.886177 : -97.18884 : Gayville, SD +57032 : 43.424257 : -96.67817 : Harrisburg, SD +57033 : 43.614888 : -96.95463 : Hartford, SD +57034 : 43.134318 : -96.51959 : Hudson, SD +57035 : 43.643112 : -97.07195 : Humboldt, SD +57036 : 43.281047 : -97.15149 : Hurley, SD +57037 : 43.104527 : -97.24905 : Irene, SD +57038 : 42.585305 : -96.57657 : Jefferson, SD +57039 : 43.350093 : -96.87487 : Lennox, SD +57040 : 43.060656 : -97.58708 : Lesterville, SD +57041 : 43.723468 : -96.86695 : Lyons, SD +57042 : 43.995586 : -97.134 : Madison, SD +57043 : 43.42258 : -97.29026 : Marion, SD +57044 : 42.846853 : -97.08438 : Meckling, SD +57045 : 43.214133 : -97.53946 : Menno, SD +57046 : 42.945468 : -97.2884 : Mission Hill, SD +57047 : 43.50934 : -97.21919 : Monroe, SD +57048 : 43.734095 : -97.18706 : Montrose, SD +57049 : 42.524771 : -96.49955 : North Sioux City, SD +57050 : 44.159515 : -97.00957 : Nunda, SD +57051 : 44.219545 : -97.34057 : Oldham, SD +57052 : 43.29183 : -97.7082 : Olivet, SD +57053 : 43.414257 : -97.13198 : Parker, SD +57054 : 44.129029 : -97.23971 : Ramona, SD +57055 : 43.668009 : -96.73032 : Renner, SD +57056 : 43.521559 : -96.558738 : Rowena, SD +57057 : 44.102243 : -96.95951 : Rutland, SD +57058 : 43.73161 : -97.38526 : Salem, SD +57059 : 43.133482 : -97.74525 : Scotland, SD +57061 : 44.245062 : -97.04171 : Sinai, SD +57062 : 42.861759 : -97.93431 : Springfield, SD +57063 : 42.944651 : -97.68587 : Tabor, SD +57064 : 43.450592 : -96.84498 : Tea, SD +57065 : 43.917178 : -96.65524 : Trent, SD +57066 : 42.991775 : -97.86353 : Tyndall, SD +57067 : 43.012455 : -97.48749 : Utica, SD +57068 : 43.582689 : -96.48692 : Valley Springs, SD +57069 : 42.812664 : -96.94651 : Vermillion, SD +57070 : 43.194321 : -97.13077 : Viborg, SD +57071 : 44.278584 : -96.93911 : Volga, SD +57072 : 42.989201 : -97.2048 : Volin, SD +57073 : 43.005861 : -97.0545 : Wakonda, SD +57074 : 44.156514 : -96.46401 : Ward, SD +57075 : 43.993676 : -96.96892 : Wentworth, SD +57076 : 43.994948 : -97.36611 : Winfred, SD +57077 : 43.327859 : -96.76115 : Worthing, SD +57078 : 42.888538 : -97.40958 : Yankton, SD +57079 : 42.867556 : -97.390268 : Yankton, SD +57101 : 43.546358 : -96.69063 : Sioux Falls, SD +57103 : 43.537075 : -96.69527 : Sioux Falls, SD +57104 : 43.560826 : -96.7324 : Sioux Falls, SD +57105 : 43.525226 : -96.73297 : Sioux Falls, SD +57106 : 43.514392 : -96.80375 : Sioux Falls, SD +57107 : 43.577696 : -96.80101 : Sioux Falls, SD +57108 : 43.488472 : -96.72258 : Sioux Falls, SD +57109 : 43.674582 : -96.79134 : Sioux Falls, SD +57110 : 43.544375 : -96.65801 : Sioux Falls, SD +57115 : 43.521895 : -96.868464 : Buffalo Ridge, SD +57117 : 43.674582 : -96.79134 : Sioux Falls, SD +57118 : 43.674582 : -96.79134 : Sioux Falls, SD +57188 : 43.674582 : -96.79134 : Sioux Falls, SD +57189 : 43.674582 : -96.79134 : Sioux Falls, SD +57192 : 43.674582 : -96.79134 : Sioux Falls, SD +57193 : 43.674582 : -96.79134 : Sioux Falls, SD +57194 : 43.674582 : -96.79134 : Sioux Falls, SD +57195 : 43.674582 : -96.79134 : Sioux Falls, SD +57196 : 43.674582 : -96.79134 : Sioux Falls, SD +57197 : 43.674582 : -96.79134 : Sioux Falls, SD +57198 : 43.674582 : -96.79134 : Sioux Falls, SD +57201 : 44.916657 : -97.11346 : Watertown, SD +57202 : 44.977634 : -97.188372 : Waverly, SD +57211 : 44.543593 : -97.358948 : Cleveland, SD +57212 : 44.377534 : -97.13878 : Arlington, SD +57213 : 44.551141 : -96.51511 : Astoria, SD +57214 : 44.484691 : -97.20668 : Badger, SD +57216 : 45.285323 : -96.5024 : Big Stone City, SD +57217 : 45.085704 : -97.688 : Bradley, SD +57218 : 44.652381 : -96.5922 : Brandt, SD +57219 : 45.278469 : -97.78645 : Bristol, SD +57220 : 44.459833 : -96.91759 : Bruce, SD +57221 : 44.588318 : -97.46092 : Bryant, SD +57223 : 44.723825 : -97.01425 : Castlewood, SD +57224 : 45.859112 : -97.15011 : Claire City, SD +57225 : 44.877579 : -97.74574 : Clark, SD +57226 : 44.790157 : -96.69548 : Clear Lake, SD +57227 : 45.377288 : -96.64746 : Corona, SD +57230 : 44.34715 : -97.471509 : De Smet, SD +57231 : 44.374289 : -97.57442 : De Smet, SD +57232 : 45.631637 : -97.36164 : Eden, SD +57233 : 44.494263 : -97.42038 : Erwin, SD +57234 : 44.587419 : -96.90648 : Estelline, SD +57235 : 45.053712 : -97.31065 : Florence, SD +57236 : 44.971494 : -97.58996 : Garden City, SD +57237 : 44.797788 : -96.5007 : Gary, SD +57238 : 44.865062 : -96.85949 : Goodwin, SD +57239 : 45.489637 : -97.3198 : Grenville, SD +57241 : 44.695445 : -97.21584 : Hayti, SD +57242 : 44.775741 : -97.35251 : Hazel, SD +57243 : 44.917623 : -97.43149 : Henry, SD +57244 : 44.416191 : -97.23974 : Hetland, SD +57245 : 44.889964 : -96.91932 : Kranzburg, SD +57246 : 45.048009 : -96.66287 : Labolt, SD +57247 : 45.725677 : -97.42649 : Lake City, SD +57248 : 44.578302 : -97.18354 : Lake Norden, SD +57249 : 44.355088 : -97.35081 : Lake Preston, SD +57251 : 45.268329 : -96.9274 : Marvin, SD +57252 : 45.215805 : -96.6092 : Milbank, SD +57253 : 45.151477 : -96.839235 : Milbank, SD +57255 : 45.859799 : -96.91988 : New Effington, SD +57256 : 45.217342 : -97.19567 : Ortley, SD +57257 : 45.478644 : -97.02057 : Peever, SD +57258 : 44.889927 : -97.92375 : Raymond, SD +57259 : 45.013469 : -96.55366 : Revillo, SD +57260 : 45.871636 : -96.7185 : Rosholt, SD +57261 : 45.536715 : -97.54435 : Roslyn, SD +57262 : 45.667565 : -97.04528 : Sisseton, SD +57263 : 45.128333 : -97.03365 : South Shore, SD +57264 : 45.104925 : -96.79467 : Stockholm, SD +57265 : 45.014788 : -96.78889 : Strandburg, SD +57266 : 45.278474 : -97.10544 : Summit, SD +57268 : 44.573144 : -96.68409 : Toronto, SD +57269 : 45.227773 : -96.79342 : Twin Brooks, SD +57270 : 45.83907 : -97.37321 : Veblen, SD +57271 : 44.736853 : -97.50123 : Vienna, SD +57272 : 45.084154 : -97.47891 : Wallace, SD +57273 : 45.369654 : -97.2924 : Waubay, SD +57274 : 45.316779 : -97.54052 : Webster, SD +57276 : 44.428052 : -96.63173 : White, SD +57278 : 44.623706 : -97.68489 : Willow Lake, SD +57279 : 45.391241 : -96.82332 : Wilmot, SD +57301 : 43.711862 : -98.03185 : Mitchell, SD +57309 : 43.383541 : -96.806422 : Perry, SD +57311 : 43.645927 : -97.76631 : Alexandria, SD +57312 : 44.195319 : -98.3734 : Alpena, SD +57313 : 43.302262 : -98.35489 : Armour, SD +57314 : 44.046328 : -98.00076 : Artesian, SD +57315 : 43.006529 : -98.04587 : Avon, SD +57317 : 43.104344 : -98.97227 : Bonesteel, SD +57319 : 43.548586 : -97.45467 : Bridgewater, SD +57321 : 43.87045 : -97.54046 : Canova, SD +57322 : 44.638862 : -97.97146 : Carpenter, SD +57323 : 44.157714 : -97.7152 : Carthage, SD +57324 : 44.305089 : -98.04565 : Cavour, SD +57325 : 43.781193 : -99.29864 : Chamberlain, SD +57326 : 43.71725 : -99.131736 : Chamberlain, SD +57328 : 43.438138 : -98.44031 : Corsica, SD +57329 : 43.002628 : -98.16211 : Dante, SD +57330 : 43.261271 : -98.16163 : Delmont, SD +57331 : 43.481227 : -98.04772 : Dimock, SD +57332 : 43.565083 : -97.63714 : Emery, SD +57334 : 43.549862 : -97.99713 : Ethan, SD +57335 : 43.037683 : -98.74998 : Fairfax, SD +57337 : 44.008344 : -97.79178 : Fedora, SD +57339 : 44.074578 : -99.43287 : Fort Thompson, SD +57340 : 43.772732 : -97.8416 : Fulton, SD +57341 : 44.070421 : -99.01332 : Gann Valley, SD +57342 : 43.257067 : -98.69907 : Geddes, SD +57344 : 43.449261 : -98.61919 : Harrison, SD +57345 : 44.601978 : -99.44519 : Highmore, SD +57346 : 44.246147 : -99.45466 : Stephan, SD +57347 : 43.73319 : -97.607194 : Benton, SD +57348 : 44.625453 : -98.37219 : Hitchcock, SD +57349 : 44.025045 : -97.56056 : Howard, SD +57350 : 44.377801 : -98.20936 : Huron, SD +57353 : 44.391844 : -97.82982 : Iroquois, SD +57354 : 43.334069 : -97.756924 : Kaylor, SD +57355 : 43.754325 : -98.96882 : Kimball, SD +57356 : 43.144738 : -98.51408 : Lake Andes, SD +57357 : 43.136365 : -98.427173 : Ravinia, SD +57358 : 44.070966 : -98.42594 : Lane, SD +57359 : 43.896226 : -98.14931 : Letcher, SD +57361 : 43.007052 : -98.4172 : Marty, SD +57362 : 44.523028 : -99.03397 : Miller, SD +57363 : 43.69156 : -98.2555 : Mount Vernon, SD +57364 : 43.429115 : -98.61012 : New Holland, SD +57365 : 43.808858 : -99.38782 : Oacoma, SD +57366 : 43.391523 : -97.94713 : Parkston, SD +57367 : 43.062919 : -98.53232 : Pickstown, SD +57368 : 43.733471 : -98.47215 : Plankinton, SD +57369 : 43.435193 : -98.89387 : Platte, SD +57370 : 43.854809 : -99.15712 : Pukwana, SD +57371 : 44.430739 : -99.22041 : Ree Heights, SD +57373 : 44.514512 : -98.8941 : Saint Lawrence, SD +57374 : 43.738472 : -97.60039 : Spencer, SD +57375 : 43.556293 : -98.46986 : Stickney, SD +57376 : 43.220164 : -97.94616 : Tripp, SD +57379 : 44.276539 : -98.52872 : Virgil, SD +57380 : 43.045048 : -98.29838 : Wagner, SD +57381 : 44.428879 : -98.71147 : Wessington, SD +57382 : 44.051324 : -98.63556 : Wessington Springs, SD +57383 : 43.69412 : -98.70407 : White Lake, SD +57384 : 44.414842 : -98.47279 : Wolsey, SD +57385 : 44.05448 : -98.28766 : Woonsocket, SD +57386 : 44.492158 : -97.98222 : Yale, SD +57399 : 44.414319 : -98.279548 : Huron, SD +57401 : 45.46932 : -98.49646 : Aberdeen, SD +57402 : 45.589567 : -98.352014 : Aberdeen, SD +57411 : 45.470676 : -99.257022 : Bryant, SD +57420 : 45.327593 : -100.12424 : Akaska, SD +57421 : 45.755146 : -97.92723 : Amherst, SD +57422 : 45.418297 : -97.92959 : Andover, SD +57424 : 45.008745 : -98.52375 : Ashton, SD +57426 : 45.727807 : -98.50795 : Barnard, SD +57427 : 45.499572 : -98.30102 : Bath, SD +57428 : 45.459575 : -99.67824 : Bowdle, SD +57429 : 45.163452 : -98.319296 : Brentford, SD +57430 : 45.827391 : -97.73978 : Britton, SD +57432 : 45.674523 : -98.01846 : Claremont, SD +57433 : 45.625285 : -98.31005 : Columbia, SD +57434 : 45.175381 : -98.08986 : Conde, SD +57435 : 45.160833 : -98.92417 : Cresbard, SD +57436 : 44.863792 : -98.08876 : Doland, SD +57437 : 45.796151 : -99.62497 : Eureka, SD +57438 : 45.06623 : -99.1345 : Faulkton, SD +57439 : 45.32904 : -98.083721 : Ferney, SD +57440 : 44.857069 : -98.27191 : Frankfort, SD +57441 : 45.834246 : -98.51539 : Frederick, SD +57442 : 45.007901 : -100.05209 : Gettysburg, SD +57443 : 45.697865 : -98.317734 : Cambria, SD +57445 : 45.458312 : -98.13416 : Groton, SD +57446 : 45.864171 : -98.18814 : Hecla, SD +57448 : 45.593008 : -99.44937 : Hosmer, SD +57449 : 45.726524 : -98.21765 : Houghton, SD +57450 : 45.253428 : -99.84288 : Hoven, SD +57451 : 45.43694 : -99.02218 : Ipswich, SD +57452 : 45.549059 : -99.88459 : Java, SD +57454 : 45.612148 : -97.76274 : Langford, SD +57455 : 45.041882 : -99.76851 : Lebanon, SD +57456 : 45.743673 : -98.94361 : Leola, SD +57457 : 45.893818 : -99.15407 : Longlake, SD +57460 : 45.26493 : -98.65019 : Mansfield, SD +57461 : 45.152388 : -98.42497 : Mellette, SD +57462 : 45.425378 : -98.77372 : Mina, SD +57465 : 45.151166 : -98.65671 : Northville, SD +57466 : 45.213867 : -99.48135 : Onaka, SD +57467 : 44.84796 : -99.11828 : Orient, SD +57468 : 45.493324 : -97.78571 : Pierpont, SD +57469 : 44.864263 : -98.5409 : Redfield, SD +57470 : 44.899458 : -98.86967 : Rockham, SD +57471 : 45.42443 : -99.3053 : Roscoe, SD +57472 : 45.486222 : -100.04843 : Selby, SD +57473 : 45.020366 : -99.50178 : Seneca, SD +57474 : 45.287179 : -98.27899 : Stratford, SD +57475 : 45.223419 : -99.62537 : Tolstoy, SD +57476 : 44.713517 : -98.61569 : Tulare, SD +57477 : 45.032244 : -98.14355 : Turton, SD +57479 : 45.321875 : -98.46429 : Warner, SD +57481 : 45.663385 : -98.62274 : Westport, SD +57501 : 44.425356 : -100.29145 : Pierre, SD +57520 : 44.830961 : -100.11167 : Agar, SD +57521 : 43.839641 : -101.26996 : Belvidere, SD +57522 : 44.500958 : -99.99188 : Blunt, SD +57523 : 43.190783 : -99.28191 : Burke, SD +57526 : 43.483177 : -100.19302 : Carter, SD +57528 : 43.205207 : -99.76123 : Colome, SD +57529 : 43.263007 : -99.5615 : Dallas, SD +57531 : 43.990243 : -100.52716 : Draper, SD +57532 : 44.326157 : -100.43382 : Fort Pierre, SD +57533 : 43.229236 : -99.42096 : Gregory, SD +57534 : 43.630273 : -99.7528 : Hamill, SD +57536 : 44.461748 : -99.77535 : Harrold, SD +57537 : 44.545795 : -101.12947 : Hayes, SD +57538 : 43.070066 : -99.16628 : Herrick, SD +57540 : 44.466602 : -99.61724 : Holabird, SD +57541 : 43.615797 : -99.93186 : Ideal, SD +57542 : 43.573247 : -99.48175 : Iona, SD +57543 : 43.829457 : -101.52963 : Kadoka, SD +57544 : 43.908053 : -99.81529 : Kennebec, SD +57547 : 43.501449 : -101.51685 : Long Valley, SD +57548 : 44.057302 : -99.54871 : Lower Brule, SD +57551 : 43.223447 : -101.65737 : Martin, SD +57552 : 44.159861 : -101.19002 : Midland, SD +57553 : 44.478744 : -101.63569 : Milesville, SD +57555 : 43.233874 : -100.64693 : Mission, SD +57557 : 44.475844 : -100.529517 : Mission Ridge, SD +57559 : 43.889878 : -100.74257 : Murdo, SD +57560 : 43.493132 : -101.16474 : Norris, SD +57562 : 43.908211 : -101.00351 : Okaton, SD +57563 : 43.360304 : -100.38868 : Okreek, SD +57564 : 44.68577 : -100.04014 : Onida, SD +57565 : 45.426656 : -101.077412 : Timber Lake, SD +57566 : 43.321116 : -101.05768 : Parmelee, SD +57567 : 44.036966 : -101.71251 : Philip, SD +57568 : 43.893368 : -100.0569 : Presho, SD +57569 : 43.839997 : -99.57459 : Reliance, SD +57570 : 43.232817 : -100.90791 : Rosebud, SD +57571 : 43.085296 : -99.09765 : Saint Charles, SD +57572 : 43.111157 : -100.94904 : Saint Francis, SD +57574 : 43.126441 : -101.3747 : Tuthill, SD +57576 : 43.934133 : -100.2916 : Vivian, SD +57577 : 43.552017 : -101.67309 : Wanblee, SD +57578 : 43.026834 : -99.81844 : Wewela, SD +57579 : 43.579476 : -100.77982 : White River, SD +57580 : 43.289115 : -99.97143 : Winner, SD +57584 : 43.528885 : -100.09039 : Witten, SD +57585 : 43.557963 : -100.38483 : Wood, SD +57601 : 45.472087 : -100.45819 : Mobridge, SD +57620 : 45.454454 : -102.5039 : Bison, SD +57621 : 45.764511 : -101.07093 : Bullhead, SD +57622 : 44.617992 : -101.53458 : Cherry Creek, SD +57623 : 45.103367 : -101.63974 : Dupree, SD +57625 : 44.926725 : -101.18538 : Eagle Butte, SD +57626 : 44.947869 : -102.02661 : Faith, SD +57628 : 45.55964 : -101.20322 : Firesteel, SD +57629 : 44.992051 : -101.568656 : Glad Valley, SD +57630 : 45.098685 : -100.879214 : Glencross, SD +57631 : 45.592102 : -100.28391 : Glenham, SD +57632 : 45.834848 : -100.1001 : Herreid, SD +57633 : 45.448377 : -101.44983 : Isabel, SD +57634 : 45.814856 : -101.85821 : Keldron, SD +57636 : 45.03794 : -101.42207 : Lantry, SD +57638 : 46.034096 : -102.11476 : Lemmon, ND +57639 : 45.708402 : -101.154581 : Little Eagle, SD +57640 : 45.768967 : -102.70446 : Lodgepole, SD +57641 : 45.869314 : -101.318 : McIntosh, SD +57642 : 45.796863 : -100.77282 : McLaughlin, SD +57643 : 45.708402 : -101.154581 : Mahto, SD +57644 : 45.402823 : -102.13021 : Meadow, SD +57645 : 45.884074 : -101.7111 : Morristown, SD +57646 : 45.700753 : -100.09434 : Mound City, SD +57647 : 45.098685 : -100.879214 : Parade, SD +57648 : 45.896895 : -100.28995 : Pollock, SD +57649 : 45.511837 : -102.85815 : Prairie City, SD +57650 : 45.849098 : -103.01489 : Ralph, SD +57651 : 45.414346 : -103.14501 : Reva, SD +57652 : 45.125932 : -100.56202 : Ridgeview, SD +57653 : 45.690446 : -102.25384 : Shadehill, SD +57656 : 45.354993 : -101.0562 : Timber Lake, SD +57657 : 45.51978 : -100.88176 : Trail City, SD +57658 : 45.68838 : -100.51908 : Wakpala, SD +57659 : 45.708402 : -101.154581 : Walker, SD +57660 : 45.831561 : -101.48462 : Watauga, SD +57661 : 45.198748 : -100.85342 : Whitehorse, SD +57671 : 45.924062 : -101.354116 : McIntosh, SD +57673 : 44.556082 : -98.928401 : York, SD +57683 : 45.984316 : -102.101218 : Orange, ND +57700 : 44.090788 : -103.284511 : Rapid City, SD +57701 : 44.085288 : -103.21335 : Rapid City, SD +57702 : 44.052788 : -103.34302 : Rapid City, SD +57703 : 44.05164 : -103.13061 : Rapid City, SD +57706 : 44.144225 : -103.08527 : Ellsworth AFB, SD +57708 : 44.271094 : -103.420131 : Bethlehem, SD +57709 : 44.076106 : -103.317149 : Rapid City, SD +57714 : 43.31492 : -101.92918 : Allen, SD +57716 : 43.134526 : -102.16756 : Batesland, SD +57717 : 44.768396 : -103.83095 : Belle Fourche, SD +57718 : 44.173449 : -103.33329 : Black Hawk, SD +57719 : 44.122693 : -103.06315 : Box Elder, SD +57720 : 45.547869 : -103.58054 : Buffalo, SD +57722 : 43.473186 : -102.98607 : Buffalo Gap, SD +57724 : 45.616269 : -103.92593 : Camp Crook, SD +57725 : 43.940637 : -102.8122 : Caputa, SD +57729 : 44.308909 : -102.09713 : Creighton, SD +57730 : 43.789695 : -103.63631 : Custer, SD +57732 : 44.338702 : -103.70916 : Deadwood, SD +57735 : 43.424499 : -103.90273 : Edgemont, SD +57736 : 44.338785 : -102.41529 : Elm Springs, SD +57737 : 44.560996 : -102.57677 : Enning, SD +57738 : 43.682883 : -103.24356 : Fairburn, SD +57741 : 44.40932 : -103.455428 : Fort Meade, SD +57742 : 44.65371 : -103.68084 : Fruitdale, SD +57744 : 43.796169 : -103.07698 : Hermosa, SD +57745 : 43.965949 : -103.62797 : Hill City, SD +57747 : 43.401616 : -103.5051 : Hot Springs, SD +57748 : 44.59203 : -101.98721 : Howes, SD +57750 : 43.654636 : -101.94355 : Interior, SD +57751 : 43.892254 : -103.41721 : Keystone, SD +57752 : 43.389365 : -102.17671 : Kyle, SD +57754 : 44.312922 : -103.83118 : Lead, SD +57755 : 45.869257 : -103.29412 : Ludlow, SD +57756 : 43.24449 : -102.49502 : Manderson, SD +57758 : 45.033915 : -102.78168 : Mud Butte, SD +57759 : 44.197255 : -103.53733 : Nemo, SD +57760 : 44.854326 : -103.32109 : Newell, SD +57761 : 44.133058 : -102.78887 : New Underwood, SD +57762 : 44.688572 : -103.59186 : Nisland, SD +57763 : 43.178182 : -103.22927 : Oelrichs, SD +57764 : 43.257154 : -102.77414 : Oglala, SD +57765 : 44.939762 : -102.41764 : Opal, SD +57766 : 43.364717 : -103.23035 : Oral, SD +57767 : 44.110334 : -102.58976 : Owanka, SD +57769 : 44.236634 : -103.33998 : Piedmont, SD +57770 : 43.046493 : -102.57323 : Pine Ridge, SD +57772 : 43.331433 : -102.38093 : Porcupine, SD +57773 : 43.609557 : -103.59517 : Pringle, SD +57774 : 43.156481 : -103.70735 : Provo, SD +57775 : 44.042842 : -102.07873 : Quinn, SD +57776 : 45.578941 : -103.493668 : Redig, SD +57777 : 44.735001 : -102.45764 : Red Owl, SD +57778 : 44.079794 : -103.8513 : Rochford, SD +57779 : 44.578116 : -103.75465 : Saint Onge, SD +57780 : 43.726261 : -102.41628 : Scenic, SD +57782 : 43.239655 : -103.527757 : Smithwick, SD +57783 : 44.48837 : -103.87853 : Spearfish, SD +57785 : 44.409616 : -103.46597 : Sturgis, SD +57787 : 44.619045 : -102.76873 : Union Center, SD +57788 : 44.60302 : -103.36866 : Vale, SD +57790 : 44.018548 : -102.23778 : Wall, SD +57791 : 44.067091 : -102.47618 : Wasta, SD +57792 : 44.562488 : -102.41683 : White Owl, SD +57793 : 44.472475 : -103.62933 : Whitewood, SD +57794 : 43.138184 : -102.36897 : Wounded Knee, SD +57796 : 43.994049 : -102.236971 : Wall, SD +57799 : 44.492688 : -103.86974 : Spearfish, SD +57840 : 44.798968 : -98.200789 : Harrison, SD +57841 : 45.632378 : -98.704197 : Carlisle, SD +57949 : 42.505818 : -96.499259 : Big Sioux, SD +58000 : 48.226422 : -101.274388 : Minot, ND +58001 : 46.448462 : -96.73165 : Abercrombie, ND +58002 : 46.859694 : -97.214587 : Absaraka, ND +58004 : 47.028291 : -97.25029 : Amenia, ND +58005 : 47.057098 : -96.95043 : Argusville, ND +58006 : 47.10167 : -97.2147 : Arthur, ND +58007 : 47.020312 : -97.45571 : Ayr, ND +58008 : 46.304176 : -96.99819 : Barney, ND +58009 : 47.331202 : -97.25077 : Blanchard, ND +58011 : 46.920174 : -97.54484 : Buffalo, ND +58012 : 46.912684 : -97.18939 : Casselton, ND +58013 : 46.076891 : -97.35562 : Cayuga, ND +58014 : 46.775027 : -97.352437 : Chaffee, ND +58015 : 46.581114 : -96.823 : Christine, ND +58016 : 47.34623 : -97.46372 : Clifford, ND +58017 : 46.059066 : -97.80989 : Cogswell, ND +58018 : 46.437401 : -96.89354 : Colfax, ND +58021 : 46.729689 : -97.07941 : Davenport, ND +58027 : 46.630659 : -97.6003 : Enderlin, ND +58029 : 47.118212 : -97.38881 : Erie, ND +58030 : 46.043951 : -96.66927 : Fairmount, ND +58031 : 46.767912 : -97.67144 : Fingal, ND +58032 : 46.098941 : -97.63549 : Forman, ND +58033 : 46.449141 : -97.91961 : Fort Ransom, ND +58035 : 47.25098 : -97.426 : Galesburg, ND +58036 : 47.15096 : -96.96482 : Gardner, ND +58038 : 47.251489 : -96.98522 : Grandin, ND +58039 : 46.153098 : -96.80909 : Great Bend, ND +58040 : 46.214772 : -97.66923 : Gwinner, ND +58041 : 46.052141 : -96.91067 : Hankinson, ND +58042 : 46.984696 : -96.9327 : Harwood, ND +58043 : 45.979819 : -97.57406 : Havana, ND +58045 : 47.389215 : -97.05327 : Hillsboro, ND +58046 : 47.293363 : -97.75338 : Hope, ND +58047 : 46.724294 : -96.8728 : Horace, ND +58048 : 47.198818 : -97.21831 : Hunter, ND +58049 : 46.657292 : -97.98732 : Kathryn, ND +58051 : 46.634764 : -97.02012 : Kindred, ND +58052 : 46.650902 : -97.28313 : Leonard, ND +58053 : 46.067238 : -97.18736 : Lidgerwood, ND +58054 : 46.43383 : -97.67678 : Lisbon, ND +58056 : 47.252754 : -97.93864 : Luverne, ND +58057 : 46.451477 : -97.24848 : Mcleod, ND +58058 : 46.167324 : -96.98251 : Mantador, ND +58059 : 46.839654 : -97.12241 : Mapleton, ND +58060 : 46.253432 : -97.44507 : Milnor, ND +58061 : 46.27338 : -96.88178 : Mooreton, ND +58062 : 46.669107 : -97.81842 : Nome, ND +58063 : 46.947243 : -97.81827 : Oriska, ND +58064 : 47.151891 : -97.60401 : Page, ND +58065 : 46.650741 : -98.195722 : Pillsbury, ND +58067 : 46.072821 : -97.49872 : Rutland, ND +58068 : 46.564908 : -97.43763 : Sheldon, ND +58069 : 46.232799 : -97.85092 : Stirum, ND +58071 : 46.930679 : -97.68708 : Tower City, ND +58072 : 46.934311 : -98.02374 : Valley City, ND +58074 : 46.283291 : -96.917614 : Wahpeton, ND +58075 : 46.28232 : -96.68494 : Wahpeton, ND +58076 : 46.271839 : -96.608142 : Wahpeton, ND +58077 : 46.533488 : -96.93756 : Walcott, ND +58078 : 46.875367 : -96.90503 : West Fargo, ND +58079 : 46.883504 : -97.35616 : Wheatland, ND +58081 : 46.282064 : -97.13477 : Wyndmere, ND +58102 : 46.900348 : -96.80016 : Fargo, ND +58103 : 46.860864 : -96.81602 : Fargo, ND +58104 : 46.812118 : -96.839 : Fargo, ND +58105 : 46.9414 : -96.967371 : Fargo, ND +58106 : 46.934596 : -97.229718 : Fargo, ND +58107 : 46.934596 : -97.229718 : Fargo, ND +58108 : 46.934596 : -97.229718 : Fargo, ND +58109 : 46.82352 : -96.8148 : Fargo, ND +58121 : 46.934596 : -97.229718 : Fargo, ND +58122 : 46.934596 : -97.229718 : Fargo, ND +58123 : 46.934596 : -97.229718 : Fargo, ND +58124 : 46.934596 : -97.229718 : Fargo, ND +58125 : 46.934596 : -97.229718 : Fargo, ND +58126 : 46.934596 : -97.229718 : Fargo, ND +58201 : 47.899217 : -97.05896 : Grand Forks, ND +58202 : 47.920679 : -97.07228 : Grand Forks, ND +58203 : 47.938898 : -97.08401 : Grand Forks, ND +58204 : 47.943847 : -97.37255 : Grand Forks AFB, ND +58205 : 47.933481 : -97.394446 : Grand Forks AFB, ND +58206 : 47.933481 : -97.394446 : Grand Forks, ND +58207 : 47.933481 : -97.394446 : Grand Forks, ND +58208 : 47.933481 : -97.394446 : Grand Forks, ND +58210 : 48.391059 : -98.11173 : Adams, ND +58212 : 47.694 : -97.99703 : Aneta, ND +58213 : 48.204374 : -97.30774 : Ardoch, ND +58214 : 47.930777 : -97.49066 : Arvilla, ND +58216 : 48.883906 : -97.4489 : Bathgate, ND +58218 : 47.592267 : -97.07503 : Buxton, ND +58219 : 47.472415 : -96.8887 : Caledonia, ND +58220 : 48.797042 : -97.69887 : Cavalier, ND +58222 : 48.62293 : -97.67862 : Crystal, ND +58223 : 47.505171 : -97.05906 : Cummings, ND +58224 : 48.173113 : -97.95766 : Dahlen, ND +58225 : 48.593133 : -97.22272 : Drayton, ND +58227 : 48.527038 : -97.90612 : Edinburg, ND +58228 : 47.882652 : -97.35564 : Emerado, ND +58229 : 48.497876 : -98.23678 : Fairdale, ND +58230 : 47.475797 : -97.80427 : Finley, ND +58231 : 48.214268 : -97.82544 : Fordville, ND +58233 : 48.228707 : -97.52498 : Forest River, ND +58234 : 47.889186 : -98.125687 : Brantford, SD +58235 : 48.084335 : -97.47238 : Gilby, ND +58236 : 48.714076 : -97.44741 : Glasston, ND +58237 : 48.415911 : -97.4096 : Grafton, ND +58238 : 48.782885 : -97.4149 : Hamilton, ND +58239 : 48.950929 : -98.66921 : Hannah, ND +58240 : 47.631 : -97.48511 : Hatton, ND +58241 : 48.710208 : -97.69893 : Hensel, ND +58243 : 48.515762 : -97.66385 : Hoople, ND +58244 : 48.144073 : -97.63321 : Inkster, ND +58249 : 48.811921 : -98.31033 : Langdon, ND +58250 : 48.288615 : -98.00082 : Lankin, ND +58251 : 47.942137 : -97.67455 : Larimore, ND +58254 : 47.765244 : -98.16357 : Mcville, ND +58255 : 48.999101 : -98.35241 : Maida, ND +58256 : 48.083218 : -97.18994 : Manvel, ND +58257 : 47.490878 : -97.29392 : Mayville, ND +58258 : 48.008825 : -97.35424 : Mekinock, ND +58259 : 48.052404 : -98.12379 : Michigan, ND +58260 : 48.622954 : -98.05162 : Milton, ND +58261 : 48.288316 : -97.28711 : Minto, ND +58262 : 48.689123 : -97.86695 : Mountain, ND +58265 : 48.956342 : -97.59021 : Neche, ND +58266 : 48.000075 : -97.85041 : Niagara, ND +58267 : 47.76354 : -97.59279 : Northwood, ND +58269 : 48.695247 : -98.17672 : Osnabrock, ND +58270 : 48.39642 : -97.78025 : Park River, ND +58271 : 48.943042 : -97.27924 : Pembina, ND +58272 : 48.013283 : -97.99298 : Petersburg, ND +58273 : 48.303376 : -97.69767 : Pisek, ND +58274 : 47.491179 : -97.46343 : Portland, ND +58275 : 47.67933 : -97.121 : Reynolds, ND +58276 : 48.628551 : -97.44823 : Saint Thomas, ND +58277 : 47.608142 : -97.8179 : Sharon, ND +58278 : 47.772417 : -97.11074 : Thompson, ND +58281 : 48.855352 : -98.6171 : Wales, ND +58282 : 48.915739 : -97.92312 : Walhalla, ND +58293 : 48.528451 : -97.504912 : Farmington, ND +58300 : 48.10066 : -98.984266 : Poplar Grove, ND +58301 : 48.122688 : -98.87752 : Devils Lake, ND +58310 : 48.617378 : -99.63453 : Agate, ND +58311 : 48.637939 : -98.61192 : Alsen, ND +58313 : 48.165299 : -100.0384 : Balta, ND +58316 : 48.837507 : -99.76388 : Belcourt, ND +58317 : 48.628607 : -99.37707 : Bisbee, ND +58318 : 48.864955 : -100.41403 : Bottineau, ND +58319 : 47.663508 : -99.664406 : Bremen, ND +58320 : 48.28641 : -99.404705 : Brinsmade, ND +58321 : 48.204745 : -98.31437 : Brocket, ND +58323 : 48.849591 : -98.90525 : Calvin, ND +58324 : 48.485321 : -99.2076 : Cando, ND +58325 : 48.272135 : -99.16654 : Churchs Ferry, ND +58327 : 48.088486 : -98.56277 : Crary, ND +58329 : 48.855835 : -100.03636 : Dunseith, ND +58330 : 48.427738 : -98.52492 : Edmore, ND +58331 : 48.65545 : -99.11415 : Egeland, ND +58332 : 48.058376 : -99.77766 : Esmond, ND +58333 : 47.580254 : -99.65457 : Sykeston, ND +58335 : 47.968523 : -99.02831 : Fort Totten, ND +58337 : 47.587372 : -99.667737 : Hamberg, ND +58338 : 48.530196 : -98.641 : Hampden, ND +58339 : 48.900063 : -99.427769 : Hansboro, ND +58341 : 47.767862 : -99.84416 : Harvey, ND +58343 : 48.311156 : -99.70744 : Knox, ND +58344 : 48.021136 : -98.33502 : Lakota, ND +58345 : 48.303578 : -98.33378 : Lawton, ND +58346 : 48.286717 : -99.42675 : Leeds, ND +58348 : 47.955217 : -99.52317 : Maddock, ND +58351 : 48.100632 : -99.29718 : Minnewaukan, ND +58352 : 48.696001 : -98.87272 : Munich, ND +58353 : 48.636915 : -99.61665 : Mylo, ND +58355 : 48.591846 : -98.36827 : Nekoma, ND +58356 : 47.669608 : -99.10553 : New Rockford, ND +58357 : 47.931081 : -99.22269 : Oberon, ND +58358 : 46.084899 : -100.630803 : Fort Yates, ND +58359 : 48.091057 : -100.1644 : Orrin, ND +58361 : 47.75436 : -98.33975 : Pekin, ND +58362 : 48.223375 : -99.09558 : Penn, ND +58363 : 48.742513 : -99.42744 : Perth, ND +58365 : 48.84741 : -99.26643 : Rocklake, ND +58366 : 48.653781 : -99.91768 : Rolette, ND +58367 : 48.855873 : -99.58558 : Rolla, ND +58368 : 48.273263 : -100.00991 : Rugby, ND +58369 : 48.937584 : -99.8055 : Saint John, ND +58370 : 47.994379 : -98.86913 : Saint Michael, ND +58371 : 47.799663 : -99.211615 : Grandfield, ND +58372 : 48.947387 : -99.02227 : Sarles, ND +58374 : 47.839733 : -99.07241 : Sheyenne, ND +58377 : 48.478826 : -98.87311 : Starkweather, ND +58379 : 47.934575 : -98.82459 : Tokio, ND +58380 : 47.836237 : -98.51502 : Tolna, ND +58381 : 47.840223 : -98.74895 : Warwick, ND +58382 : 48.318106 : -98.79973 : Webster, ND +58384 : 48.609924 : -100.26587 : Willow City, ND +58385 : 48.470278 : -99.67497 : Wolford, ND +58386 : 48.3223 : -99.59878 : York, ND +58401 : 46.906983 : -98.72826 : Jamestown, ND +58402 : 46.97882 : -98.960032 : Jamestown, ND +58405 : 46.913344 : -98.699553 : Jamestown, ND +58413 : 46.052308 : -99.27476 : Ashley, ND +58415 : 46.362812 : -98.48404 : Berlin, ND +58416 : 47.555709 : -98.34567 : Binford, ND +58418 : 47.42157 : -99.63946 : Bowdon, ND +58420 : 47.073601 : -98.85843 : Buchanan, ND +58421 : 47.450049 : -99.08527 : Carrington, ND +58422 : 47.609264 : -99.42568 : Cathay, ND +58423 : 47.49417 : -99.84212 : Chaseley, ND +58424 : 46.888946 : -99.11315 : Cleveland, ND +58425 : 47.446297 : -98.13417 : Cooperstown, ND +58426 : 47.227781 : -98.58545 : Courtenay, ND +58428 : 46.868175 : -99.74913 : Dawson, ND +58429 : 47.201159 : -98.13662 : Dazey, ND +58430 : 47.581276 : -100.27173 : Denhoff, ND +58431 : 46.522016 : -98.48352 : Dickey, ND +58432 : 46.892518 : -98.375536 : Eckelson, ND +58433 : 46.366866 : -98.72145 : Edgeley, ND +58436 : 46.067077 : -98.58044 : Ellendale, ND +58438 : 47.652764 : -99.61938 : Fessenden, ND +58439 : 46.014472 : -98.83181 : Forbes, ND +58440 : 46.310458 : -99.13151 : Fredonia, ND +58441 : 46.163828 : -98.38912 : Fullerton, ND +58442 : 46.596847 : -99.1616 : Gackle, ND +58443 : 47.435273 : -98.63842 : Glenfield, ND +58444 : 47.480027 : -100.13717 : Goodrich, ND +58445 : 47.54777 : -98.80594 : Grace City, ND +58448 : 47.31361 : -98.2122 : Hannaford, ND +58451 : 47.456626 : -99.9372 : Hurdsfield, ND +58452 : 47.456477 : -98.230415 : Jessie, ND +58454 : 46.57995 : -98.89748 : Jud, ND +58455 : 47.290251 : -98.75318 : Kensal, ND +58456 : 46.270766 : -98.93292 : Kulm, ND +58458 : 46.367889 : -98.29376 : Lamoure, ND +58460 : 46.309847 : -99.32181 : Lehr, ND +58461 : 46.654622 : -98.20015 : Litchville, ND +58463 : 47.483877 : -100.48694 : Mcclusky, ND +58464 : 47.583586 : -98.5889 : Mchenry, ND +58466 : 46.611528 : -98.36911 : Marion, ND +58467 : 46.867794 : -99.33125 : Medina, ND +58472 : 46.638134 : -98.63923 : Montpelier, ND +58474 : 46.090506 : -98.11584 : Oakes, ND +58475 : 47.149515 : -99.566 : Pettibone, ND +58476 : 47.189716 : -98.97328 : Pingree, ND +58477 : 47.229815 : -100.5398 : Regan, ND +58478 : 47.135224 : -99.74552 : Robinson, ND +58479 : 47.092093 : -98.25077 : Rogers, ND +58480 : 46.92853 : -98.25936 : Sanborn, ND +58481 : 46.947101 : -98.4288 : Spiritwood, ND +58482 : 46.862714 : -99.9205 : Steele, ND +58483 : 46.631342 : -99.39898 : Streeter, ND +58484 : 47.399657 : -98.44052 : Sutton, ND +58486 : 47.435936 : -99.40469 : Sykeston, ND +58487 : 46.856925 : -99.60568 : Tappen, ND +58488 : 47.177348 : -99.99415 : Tuttle, ND +58489 : 46.0327 : -99.61847 : Venturia, ND +58490 : 46.368093 : -98.06074 : Verona, ND +58492 : 47.154922 : -98.43993 : Wimbledon, ND +58494 : 47.141711 : -100.27279 : Wing, ND +58495 : 46.278442 : -99.56198 : Wishek, ND +58496 : 47.153361 : -99.31052 : Woodworth, ND +58497 : 46.770483 : -98.56496 : Ypsilanti, ND +58501 : 46.83962 : -100.7723 : Bismarck, ND +58502 : 46.8887 : -100.681855 : Bismarck, ND +58503 : 46.861794 : -100.78026 : Bismarck, ND +58504 : 46.768617 : -100.75381 : Bismarck, ND +58505 : 46.82126 : -100.78131 : Bismarck, ND +58506 : 46.980475 : -100.520063 : Bismarck, ND +58507 : 46.980475 : -100.520063 : Bismarck, ND +58520 : 46.657221 : -101.53747 : Almont, ND +58521 : 47.03541 : -100.71786 : Baldwin, ND +58523 : 47.229528 : -101.75965 : Beulah, ND +58524 : 46.596608 : -100.09497 : Braddock, ND +58528 : 46.249361 : -100.63867 : Cannon Ball, ND +58529 : 46.320916 : -101.60406 : Carson, ND +58530 : 47.133382 : -101.18309 : Center, ND +58531 : 47.575888 : -101.19002 : Coleharbor, ND +58532 : 46.86485 : -100.10694 : Driscoll, ND +58533 : 46.408171 : -101.82853 : Elgin, ND +58535 : 46.501898 : -101.24737 : Flasher, ND +58538 : 46.062798 : -100.72114 : Fort Yates, ND +58540 : 47.646187 : -101.52739 : Garrison, ND +58541 : 47.396933 : -102.08106 : Golden Valley, ND +58542 : 46.05082 : -100.03576 : Hague, ND +58544 : 46.488312 : -100.29283 : Hazelton, ND +58545 : 47.290543 : -101.61207 : Hazen, ND +58549 : 46.467732 : -99.93796 : Kintyre, ND +58552 : 46.257466 : -100.23833 : Linton, ND +58553 : 46.814568 : -100.40137 : Mckenzie, ND +58554 : 46.812148 : -100.90891 : Mandan, ND +58558 : 46.813571 : -100.53101 : Menoken, ND +58559 : 47.429223 : -100.72662 : Mercer, ND +58560 : 46.677294 : -100.28185 : Moffit, ND +58561 : 46.477491 : -99.71689 : Napoleon, ND +58562 : 46.346028 : -102.0077 : New Leipzig, ND +58563 : 46.909229 : -101.4391 : New Salem, ND +58564 : 46.291855 : -101.34592 : Raleigh, ND +58565 : 47.494559 : -101.37668 : Riverdale, ND +58566 : 46.59174 : -100.93332 : Saint Anthony, ND +58568 : 46.155222 : -100.94635 : Selfridge, ND +58569 : 46.258711 : -101.17563 : Shields, ND +58570 : 46.421762 : -100.93017 : Solen, ND +58571 : 47.281472 : -101.37642 : Stanton, ND +58572 : 46.885406 : -100.30355 : Sterling, ND +58573 : 46.094998 : -100.24342 : Strasburg, ND +58575 : 47.543706 : -100.87466 : Turtle Lake, ND +58576 : 47.446392 : -101.15667 : Underwood, ND +58577 : 47.302682 : -101.04618 : Washburn, ND +58579 : 47.178883 : -100.76 : Wilton, ND +58580 : 47.281173 : -101.9254 : Zap, ND +58581 : 46.014164 : -99.83606 : Zeeland, ND +58601 : 46.878057 : -102.8041 : Dickinson, ND +58602 : 46.820185 : -102.663913 : Dickinson, ND +58620 : 46.486096 : -103.31682 : Amidon, ND +58621 : 47.077257 : -103.93051 : Beach, ND +58622 : 46.922727 : -103.21389 : Belfield, ND +58623 : 46.182799 : -103.40453 : Bowman, ND +58625 : 47.252561 : -102.18789 : Dodge, ND +58626 : 47.346329 : -102.61222 : Dunn Center, ND +58627 : 47.219032 : -103.23327 : Fairfield, ND +58630 : 46.860364 : -102.56782 : Gladstone, ND +58631 : 46.759443 : -101.83368 : Glen Ullin, ND +58632 : 46.713628 : -103.94995 : Golva, ND +58634 : 47.393108 : -103.36899 : Grassy Butte, ND +58636 : 47.371929 : -102.34345 : Halliday, ND +58638 : 46.877355 : -102.0497 : Hebron, ND +58639 : 46.043733 : -102.60353 : Hettinger, ND +58640 : 47.411564 : -102.82766 : Killdeer, ND +58641 : 46.666229 : -102.48549 : Lefor, ND +58642 : 47.151337 : -102.82216 : Manning, ND +58643 : 46.2715 : -103.93203 : Marmarth, ND +58644 : 47.402085 : -102.622139 : Marshall, ND +58645 : 46.92752 : -103.56872 : Medora, ND +58646 : 46.379559 : -102.28758 : Mott, ND +58647 : 46.511555 : -102.8735 : New England, ND +58649 : 46.140764 : -102.92304 : Reeder, ND +58650 : 46.405798 : -102.60398 : Regent, ND +58651 : 46.329565 : -103.68539 : Rhame, ND +58652 : 46.891017 : -102.28356 : Richardton, ND +58653 : 46.172025 : -103.09161 : Scranton, ND +58654 : 46.85992 : -103.78322 : Sentinel Butte, ND +58655 : 46.808668 : -103.03364 : South Heart, ND +58656 : 46.975615 : -102.46219 : Taylor, ND +58673 : 47.304598 : -102.203219 : Dodge, ND +58701 : 48.19983 : -101.28579 : Minot, ND +58702 : 48.336898 : -101.451285 : Minot, ND +58703 : 48.277024 : -101.31942 : Minot, ND +58704 : 48.41647 : -101.3274 : Minot AFB, ND +58705 : 48.234184 : -101.297161 : Minot AFB, ND +58707 : 48.245267 : -101.301179 : Minot, ND +58710 : 47.87756 : -100.23677 : Anamoose, ND +58711 : 48.94424 : -101.28912 : Antler, ND +58712 : 47.985515 : -100.53158 : Balfour, ND +58713 : 48.552669 : -100.63594 : Bantry, ND +58716 : 47.82781 : -101.08118 : Benedict, ND +58718 : 48.327365 : -101.81878 : Berthold, ND +58721 : 48.811975 : -102.27362 : Bowbells, ND +58722 : 48.251187 : -101.47331 : Burlington, ND +58723 : 47.785232 : -100.69257 : Butte, ND +58725 : 48.466756 : -101.70175 : Carpio, ND +58727 : 48.844129 : -102.80485 : Columbus, ND +58730 : 48.889528 : -103.32304 : Crosby, ND +58731 : 48.422289 : -100.98409 : Deering, ND +58733 : 48.171782 : -101.60981 : Des Lacs, ND +58734 : 48.506446 : -101.96379 : Donnybrook, ND +58735 : 47.869756 : -101.49673 : Douglas, ND +58736 : 47.916124 : -100.38123 : Drake, ND +58737 : 48.917722 : -102.40401 : Flaxton, ND +58740 : 48.485288 : -101.22156 : Glenburn, ND +58741 : 48.269326 : -100.82468 : Granville, ND +58744 : 48.102064 : -100.61537 : Karlsruhe, ND +58746 : 48.719925 : -102.08301 : Kenmare, ND +58747 : 47.808989 : -100.51007 : Kief, ND +58748 : 48.687522 : -100.6606 : Kramer, ND +58750 : 48.611257 : -101.4194 : Lansford, ND +58752 : 48.845965 : -102.57917 : Lignite, ND +58755 : 48.632655 : -102.93658 : Mcgregor, ND +58756 : 47.962814 : -101.81113 : Makoti, ND +58757 : 47.702563 : -102.58745 : Mandaree, ND +58758 : 47.781908 : -100.10165 : Martin, ND +58759 : 47.855591 : -101.26056 : Max, ND +58760 : 48.686244 : -101.15787 : Maxbass, ND +58761 : 48.770684 : -101.55153 : Mohall, ND +58762 : 48.671806 : -100.96154 : Newburg, ND +58763 : 47.983034 : -102.54126 : New Town, ND +58764 : 48.676056 : -101.53884 : Clay, ND +58765 : 48.857983 : -103.03833 : Noonan, ND +58768 : 48.250987 : -101.00165 : Norwich, ND +58769 : 48.330437 : -102.23239 : Palermo, ND +58770 : 47.927133 : -102.13973 : Parshall, ND +58771 : 48.073998 : -101.9763 : Plaza, ND +58772 : 48.973939 : -102.60078 : Portal, ND +58773 : 48.574749 : -102.65064 : Powers Lake, ND +58775 : 47.710089 : -101.84406 : Roseglen, ND +58776 : 48.24767 : -102.62331 : Ross, ND +58778 : 47.783028 : -100.93423 : Ruso, ND +58779 : 47.811566 : -101.86084 : Ryder, ND +58781 : 48.037844 : -101.09637 : Sawyer, ND +58782 : 48.944324 : -101.72643 : Sherwood, ND +58783 : 48.900962 : -100.76402 : Souris, ND +58784 : 48.366981 : -102.4235 : Stanley, ND +58785 : 48.271451 : -101.11174 : Surrey, ND +58787 : 48.76715 : -101.81935 : Tolley, ND +58788 : 48.363285 : -100.47477 : Towner, ND +58789 : 48.567655 : -100.80621 : Upham, ND +58790 : 48.053192 : -100.93425 : Velva, ND +58792 : 47.971295 : -100.76841 : Voltaire, ND +58793 : 48.871815 : -101.04936 : Westhope, ND +58794 : 48.298407 : -102.76645 : White Earth, ND +58795 : 48.64055 : -103.15693 : Wildrose, ND +58801 : 48.20496 : -103.71908 : Williston, ND +58802 : 48.168836 : -103.614824 : Williston, ND +58830 : 48.586475 : -103.46708 : Alamo, ND +58831 : 47.826449 : -103.65916 : Alexander, ND +58832 : 48.843926 : -103.924225 : Westby, ND +58833 : 48.894491 : -103.51215 : Ambrose, ND +58835 : 47.73943 : -103.46564 : Arnegard, ND +58838 : 47.83202 : -103.886 : Cartwright, ND +58843 : 48.278037 : -103.39021 : Epping, ND +58844 : 48.894636 : -103.75867 : Fortuna, ND +58845 : 48.629988 : -103.93903 : Grenora, ND +58847 : 47.8845 : -102.90911 : Keene, ND +58849 : 48.326813 : -103.19462 : Ray, ND +58852 : 48.388509 : -102.94589 : Tioga, ND +58853 : 48.069085 : -103.84342 : Trenton, ND +58854 : 47.835713 : -103.22565 : Watford City, ND +58856 : 48.567291 : -103.71711 : Zahl, ND +58888 : 47.612579 : -101.304214 : Garrison, ND +58982 : 48.986763 : -101.69363 : Colquhoun, ND +59000 : 46.506905 : -108.289304 : Roundup, MT +59001 : 45.522248 : -109.48875 : Absarokee, MT +59002 : 45.932174 : -108.68933 : Acton, MT +59003 : 45.486308 : -106.33169 : Ashland, MT +59004 : 46.017965 : -106.99199 : Ashland, MT +59006 : 45.947154 : -108.0969 : Ballantine, MT +59007 : 45.159808 : -109.14649 : Bearcreek, MT +59008 : 45.103044 : -109.06992 : Belfry, MT +59010 : 45.949226 : -107.2284 : Bighorn, MT +59011 : 45.883409 : -109.91891 : Big Timber, MT +59012 : 45.351247 : -106.58858 : Birney, MT +59013 : 45.464156 : -109.11927 : Boyd, MT +59014 : 45.242325 : -108.73073 : Bridger, MT +59015 : 46.096447 : -108.83134 : Broadview, MT +59016 : 45.457795 : -106.97057 : Busby, MT +59018 : 45.894359 : -110.61105 : Clyde Park, MT +59019 : 45.602343 : -109.2671 : Columbus, MT +59020 : 45.058868 : -109.90084 : Cooke City, MT +59022 : 45.613564 : -107.37805 : Crow Agency, MT +59024 : 46.095217 : -107.6318 : Custer, MT +59025 : 45.090049 : -106.69221 : Decker, MT +59026 : 45.430445 : -108.76441 : Edgar, MT +59027 : 45.310206 : -110.8895 : Emigrant, MT +59028 : 45.373162 : -109.64134 : Fishtail, MT +59029 : 45.391138 : -108.89916 : Fromberg, MT +59030 : 45.145353 : -110.60771 : Gardiner, MT +59031 : 45.521423 : -107.42566 : Garryowen, MT +59032 : 47.041005 : -108.80868 : Grass Range, MT +59033 : 45.734139 : -109.77529 : Greycliff, MT +59034 : 45.780451 : -107.63987 : Hardin, MT +59035 : 45.224859 : -107.98299 : Yellowtail, MT +59036 : 46.435446 : -109.86994 : Harlowton, MT +59037 : 45.862261 : -108.29474 : Huntley, MT +59038 : 46.208375 : -107.22415 : Hysham, MT +59039 : 46.69244 : -107.6368 : Ingomar, MT +59041 : 45.505519 : -108.92119 : Joliet, MT +59043 : 45.585984 : -106.63862 : Lame Deer, MT +59044 : 45.665424 : -108.75601 : Laurel, MT +59046 : 46.418078 : -109.03637 : Lavina, MT +59047 : 45.674463 : -110.53834 : Livingston, MT +59050 : 45.272302 : -107.45873 : Lodge Grass, MT +59052 : 45.550177 : -110.05667 : McLeod, MT +59053 : 46.491523 : -110.50499 : Martinsdale, MT +59054 : 46.56503 : -107.9138 : Melstone, MT +59055 : 46.13263 : -109.89746 : Melville, MT +59057 : 45.846359 : -108.95391 : Molt, MT +59058 : 47.05992 : -107.80028 : Mosby, MT +59059 : 46.455469 : -108.0903 : Musselshell, MT +59061 : 45.45236 : -109.83681 : Nye, MT +59062 : 45.154425 : -106.13017 : Otter, MT +59063 : 45.622948 : -108.96 : Park City, MT +59064 : 45.903794 : -107.92181 : Pompeys Pillar, MT +59065 : 45.336151 : -110.75099 : Pray, MT +59066 : 45.353002 : -108.49163 : Pryor, MT +59067 : 45.951002 : -109.28883 : Rapelje, MT +59068 : 45.241761 : -109.32217 : Red Lodge, MT +59069 : 45.708186 : -109.54126 : Reed Point, MT +59070 : 45.352866 : -109.17158 : Roberts, MT +59071 : 45.343978 : -109.50168 : Roscoe, MT +59072 : 46.53932 : -108.53775 : Roundup, MT +59073 : 46.444224 : -108.395473 : Roundup, MT +59074 : 46.367286 : -109.27608 : Ryegate, MT +59075 : 45.395656 : -107.93409 : Saint Xavier, MT +59076 : 46.2644 : -107.07438 : Sanders, MT +59077 : 47.130621 : -107.52697 : Sand Springs, MT +59078 : 46.383158 : -109.49616 : Shawmut, MT +59079 : 46.001031 : -108.3527 : Shepherd, MT +59081 : 45.006307 : -109.98238 : Silver Gate, MT +59082 : 45.33333 : -110.477384 : Springdale, MT +59083 : 46.017965 : -106.99199 : Sumatra, MT +59084 : 47.173641 : -108.281168 : Teigen, MT +59085 : 46.501026 : -110.14681 : Two Dot, MT +59086 : 46.075387 : -110.57954 : Wilsall, MT +59087 : 47.000478 : -108.29005 : Winnett, MT +59088 : 46.059495 : -108.0755 : Worden, MT +59089 : 45.076746 : -107.44633 : Wyola, MT +59101 : 45.737525 : -108.48754 : Billings, MT +59102 : 45.778852 : -108.5742 : Billings, MT +59103 : 45.978288 : -108.194508 : Billings, MT +59104 : 45.978288 : -108.194508 : Billings, MT +59105 : 45.836121 : -108.46819 : Billings, MT +59106 : 45.777818 : -108.66944 : Billings, MT +59107 : 45.825204 : -108.393388 : Billings, MT +59108 : 45.978288 : -108.194508 : Billings, MT +59111 : 45.978288 : -108.194508 : Billings, MT +59112 : 45.978288 : -108.194508 : Billings, MT +59114 : 45.978288 : -108.194508 : Billings, MT +59115 : 45.978288 : -108.194508 : Billings, MT +59116 : 45.978288 : -108.194508 : Billings, MT +59117 : 45.978288 : -108.194508 : Billings, MT +59201 : 48.126066 : -105.65893 : Wolf Point, MT +59211 : 48.695994 : -104.35503 : Antelope, MT +59212 : 48.1154 : -104.19036 : Bainville, MT +59213 : 48.132347 : -104.88114 : Brockton, MT +59214 : 47.274624 : -105.84727 : Brockway, MT +59215 : 47.520661 : -105.8743 : Circle, MT +59217 : 47.577478 : -104.25806 : Crane, MT +59218 : 48.132161 : -104.51429 : Culbertson, MT +59219 : 48.519946 : -104.25492 : Dagmar, MT +59221 : 47.900376 : -104.13403 : Fairview, MT +59222 : 48.739987 : -105.15836 : Flaxville, MT +59223 : 48.006744 : -106.46104 : Fort Peck, MT +59225 : 48.202722 : -105.96719 : Frazer, MT +59226 : 48.317939 : -104.44433 : Froid, MT +59230 : 48.15381 : -106.69558 : Glasgow, MT +59231 : 48.404667 : -106.53357 : Saint Marie, MT +59240 : 48.330241 : -106.609665 : Glentana, MT +59241 : 48.39962 : -107.09765 : Hinsdale, MT +59242 : 48.40892 : -104.70869 : Homestead, MT +59243 : 47.71754 : -104.63734 : Lambert, MT +59244 : 48.599534 : -106.33328 : Larslan, MT +59245 : 48.280119 : -104.94413 : McCabe, MT +59247 : 48.503927 : -104.48487 : Medicine Lake, MT +59248 : 48.13336 : -106.33547 : Nashua, MT +59250 : 48.860359 : -106.47675 : Opheim, MT +59252 : 48.893223 : -104.7741 : Outlook, MT +59253 : 48.730966 : -105.85564 : Peerless, MT +59254 : 48.77466 : -104.56769 : Plentywood, MT +59255 : 48.136011 : -105.16175 : Poplar, MT +59256 : 48.694565 : -104.552352 : Raymond, MT +59257 : 48.750625 : -104.96702 : Redstone, MT +59258 : 48.591968 : -104.61326 : Reserve, MT +59259 : 47.777938 : -105.04227 : Richey, MT +59260 : 48.717859 : -106.07899 : Richland, MT +59261 : 48.544159 : -107.40301 : Saco, MT +59262 : 47.463172 : -104.36846 : Savage, MT +59263 : 48.809655 : -105.45829 : Scobey, MT +59270 : 47.683129 : -104.20547 : Sidney, MT +59273 : 48.330241 : -106.609665 : Vandalia, MT +59274 : 47.859083 : -105.35001 : Vida, MT +59275 : 48.887447 : -104.20951 : Westby, MT +59276 : 48.897816 : -105.16316 : Whitetail, MT +59301 : 46.343483 : -105.81164 : Miles City, MT +59311 : 45.189905 : -104.38569 : Alzada, MT +59312 : 46.017965 : -106.99199 : Angela, MT +59313 : 46.357253 : -104.25299 : Baker, MT +59314 : 45.078881 : -105.37586 : Biddle, MT +59315 : 47.441629 : -104.86652 : Bloomfield, MT +59316 : 45.567085 : -104.539066 : Boyes, MT +59317 : 45.385223 : -105.34448 : Broadus, MT +59318 : 47.426998 : -107.44215 : Brusett, MT +59319 : 45.567085 : -104.539066 : Capitol, MT +59322 : 47.049949 : -106.58157 : Cohagen, MT +59323 : 45.915952 : -106.65505 : Colstrip, MT +59324 : 45.797477 : -104.47482 : Ekalaka, MT +59326 : 46.810255 : -105.04391 : Fallon, MT +59327 : 46.077231 : -106.68186 : Forsyth, MT +59330 : 47.107345 : -104.72683 : Glendive, MT +59332 : 45.386374 : -104.75677 : Hammond, MT +59333 : 46.271872 : -106.21374 : Hathaway, MT +59336 : 46.429205 : -104.94036 : Ismay, MT +59337 : 47.349999 : -106.95207 : Jordan, MT +59338 : 46.579645 : -105.62183 : Kinsey, MT +59339 : 47.253136 : -105.19476 : Lindsay, MT +59341 : 46.860997 : -105.345182 : Mildred, MT +59343 : 45.666174 : -105.47959 : Olive, MT +59344 : 46.43208 : -104.61063 : Plevna, MT +59345 : 45.391078 : -105.630461 : Powderville, MT +59347 : 46.632549 : -106.39641 : Rosebud, MT +59348 : 45.365698 : -105.95632 : Sonnette, MT +59349 : 46.897901 : -105.46339 : Terry, MT +59351 : 45.942409 : -105.71211 : Volborg, MT +59353 : 46.969132 : -104.19232 : Wibaux, MT +59354 : 46.127895 : -104.45228 : Willard, MT +59400 : 48.643651 : -111.745326 : Shelby, MT +59401 : 47.509157 : -111.27408 : Great Falls, MT +59402 : 47.510209 : -111.195906 : Malmstrom A F B, MT +59403 : 47.258392 : -111.341975 : Great Falls, MT +59404 : 47.514307 : -111.34499 : Great Falls, MT +59405 : 47.476152 : -111.26909 : Great Falls, MT +59406 : 47.619998 : -111.239305 : Great Falls, MT +59410 : 47.503261 : -112.48018 : Augusta, MT +59411 : 48.871429 : -113.43734 : Babb, MT +59412 : 47.351391 : -110.86564 : Belt, MT +59414 : 47.526385 : -111.27845 : Black Eagle, MT +59416 : 48.037351 : -111.66825 : Brady, MT +59417 : 48.556986 : -113.0698 : Browning, MT +59418 : 47.248497 : -109.26308 : Buffalo, MT +59419 : 48.007556 : -112.32535 : Bynum, MT +59420 : 47.834943 : -110.98801 : Carter, MT +59421 : 47.223693 : -111.70821 : Cascade, MT +59422 : 47.840047 : -112.35083 : Choteau, MT +59424 : 47.383325 : -110.02055 : Coffee Creek, MT +59425 : 48.190331 : -111.96872 : Conrad, MT +59427 : 48.680309 : -112.47009 : Cut Bank, MT +59430 : 47.316304 : -109.96291 : Denton, MT +59432 : 48.177132 : -112.61804 : Dupuyer, MT +59433 : 47.895071 : -111.77961 : Dutton, MT +59434 : 48.424793 : -113.20424 : East Glacier Park, MT +59435 : 48.609072 : -111.731852 : Ethridge, MT +59436 : 47.624913 : -112.03006 : Fairfield, MT +59440 : 47.696452 : -111.15265 : Floweree, MT +59441 : 46.906403 : -109.09551 : Forestgrove, MT +59442 : 47.83055 : -110.64869 : Fort Benton, MT +59443 : 47.547517 : -111.82545 : Fort Shaw, MT +59444 : 48.635319 : -111.24083 : Galata, MT +59445 : 47.055715 : -109.468299 : Garneill, MT +59446 : 47.661952 : -110.1846 : Geraldine, MT +59447 : 47.268612 : -110.44229 : Geyser, MT +59448 : 48.309341 : -112.81115 : Heart Butte, MT +59450 : 47.530558 : -110.57208 : Highwood, MT +59451 : 47.468715 : -109.35624 : Hilger, MT +59452 : 46.883052 : -110.09673 : Hobson, MT +59453 : 46.678858 : -109.64119 : Judith Gap, MT +59454 : 48.744885 : -111.97141 : Kevin, MT +59456 : 48.281911 : -111.30771 : Ledger, MT +59457 : 47.054233 : -109.48065 : Lewistown, MT +59460 : 48.008655 : -110.47512 : Loma, MT +59461 : 48.609072 : -111.731852 : Lothair, MT +59462 : 47.089167 : -109.91488 : Moccasin, MT +59463 : 47.057303 : -110.84279 : Monarch, MT +59464 : 46.956343 : -109.7023 : Moore, MT +59465 : 46.926021 : -110.71696 : Neihart, MT +59466 : 48.842195 : -111.59529 : Oilmont, MT +59467 : 48.093269 : -112.30254 : Pendroy, MT +59468 : 47.69094 : -111.63998 : Power, MT +59469 : 47.261238 : -110.725 : Raynesford, MT +59471 : 47.377169 : -108.84397 : Roy, MT +59472 : 47.409591 : -111.13517 : Sand Coulee, MT +59473 : 48.65417 : -113.126262 : Santa Rita, MT +59474 : 48.479975 : -111.76863 : Shelby, MT +59477 : 47.459112 : -111.96711 : Simms, MT +59479 : 47.104848 : -110.26076 : Stanford, MT +59480 : 47.188396 : -111.16349 : Stockett, MT +59482 : 48.881178 : -111.91516 : Sunburst, MT +59483 : 47.465072 : -111.79735 : Sun River, MT +59484 : 48.979905 : -111.92471 : Sweet Grass, MT +59485 : 47.429273 : -111.59357 : Ulm, MT +59486 : 48.336146 : -112.31498 : Valier, MT +59487 : 47.577613 : -111.60477 : Vaughn, MT +59489 : 47.065531 : -109.430106 : Winifred, MT +59500 : 48.555536 : -109.68953 : Havre, MT +59501 : 48.584562 : -109.78365 : Havre, MT +59520 : 48.141017 : -110.06828 : Big Sandy, MT +59521 : 48.321712 : -109.9578 : Box Elder, MT +59522 : 48.487928 : -111.00381 : Chester, MT +59523 : 48.485856 : -109.17406 : Chinook, MT +59524 : 48.148715 : -108.37109 : Dodson, MT +59525 : 48.733088 : -110.32495 : Gildford, MT +59526 : 48.483212 : -108.72208 : Harlem, MT +59527 : 48.023133 : -108.69955 : Hays, MT +59528 : 48.555089 : -110.41769 : Hingham, MT +59529 : 48.843446 : -108.73813 : Hogeland, MT +59530 : 48.631693 : -110.67384 : Inverness, MT +59531 : 48.675352 : -110.8269 : Joplin, MT +59532 : 48.597362 : -110.077 : Kremlin, MT +59535 : 48.031253 : -109.28416 : Lloyd, MT +59537 : 48.817553 : -107.87318 : Loring, MT +59538 : 48.235694 : -107.80711 : Malta, MT +59540 : 48.525132 : -110.54993 : Rudyard, MT +59542 : 48.824171 : -108.44428 : Turner, MT +59544 : 48.751881 : -107.61505 : Whitewater, MT +59545 : 48.962291 : -111.16737 : Whitlash, MT +59546 : 47.896703 : -108.54135 : Zortman, MT +59547 : 48.607955 : -109.01285 : Zurich, MT +59601 : 46.588803 : -112.04193 : Helena, MT +59602 : 46.696501 : -111.96895 : Helena, MT +59604 : 46.6672 : -111.968877 : Helena, MT +59620 : 47.184233 : -112.330214 : Helena, MT +59623 : 46.590083 : -112.040173 : Helena, MT +59624 : 46.610002 : -112.062393 : Helena, MT +59625 : 46.601832 : -112.041346 : Helena, MT +59626 : 47.184233 : -112.330214 : Helena, MT +59631 : 46.231547 : -112.34456 : Basin, MT +59632 : 46.205729 : -112.06748 : Boulder, MT +59633 : 46.818147 : -112.3409 : Canyon Creek, MT +59634 : 46.479732 : -111.97496 : Clancy, MT +59635 : 46.578943 : -111.8821 : East Helena, MT +59636 : 46.620549 : -112.10446 : Fort Harrison, MT +59638 : 46.376532 : -112.14074 : Jefferson City, MT +59639 : 46.973643 : -112.62547 : Lincoln, MT +59640 : 46.748706 : -112.30023 : Marysville, MT +59641 : 46.206922 : -111.634364 : Radersburg, MT +59642 : 46.24656 : -110.79404 : Ringling, MT +59643 : 46.186442 : -111.56253 : Toston, MT +59644 : 46.394352 : -111.44665 : Townsend, MT +59645 : 46.615309 : -111.01063 : White Sulphur Springs, MT +59647 : 46.45447 : -111.650954 : Winston, MT +59648 : 47.035168 : -112.09073 : Wolf Creek, MT +59701 : 45.996957 : -112.51279 : Butte, MT +59702 : 45.905345 : -112.637705 : Butte, MT +59703 : 45.905345 : -112.637705 : Butte, MT +59707 : 45.905345 : -112.637705 : Butte, MT +59710 : 45.125532 : -112.12007 : Alder, MT +59711 : 46.141686 : -112.98902 : Anaconda, MT +59713 : 46.650216 : -112.59075 : Avon, MT +59714 : 45.85291 : -111.18037 : Belgrade, MT +59715 : 45.707153 : -110.9878 : Bozeman, MT +59716 : 45.268367 : -111.32651 : Big Sky, MT +59717 : 45.627982 : -110.90128 : Bozeman, MT +59718 : 45.680811 : -111.137 : Bozeman, MT +59719 : 45.627982 : -110.90128 : Bozeman, MT +59720 : 44.99257 : -111.62521 : Cameron, MT +59721 : 45.849728 : -111.86233 : Cardwell, MT +59722 : 46.392658 : -112.7369 : Deer Lodge, MT +59724 : 45.149805 : -112.70073 : Dell, MT +59725 : 45.146179 : -112.77411 : Dillon, MT +59727 : 45.794048 : -112.77595 : Divide, MT +59728 : 46.481128 : -112.43358 : Elliston, MT +59729 : 45.30767 : -111.70176 : Ennis, MT +59730 : 45.417898 : -111.19888 : Gallatin Gateway, MT +59731 : 46.565168 : -112.80722 : Garrison, MT +59732 : 45.149805 : -112.70073 : Glen, MT +59733 : 46.606751 : -112.97866 : Gold Creek, MT +59735 : 45.688676 : -111.78292 : Harrison, MT +59736 : 45.26938 : -113.35533 : Jackson, MT +59739 : 44.712015 : -112.25568 : Lima, MT +59740 : 45.462512 : -111.76367 : McAllister, MT +59741 : 45.810687 : -111.33138 : Manhattan, MT +59743 : 45.631031 : -112.6757 : Melrose, MT +59745 : 45.587974 : -111.60577 : Norris, MT +59746 : 45.534274 : -113.17025 : Polaris, MT +59747 : 45.659738 : -111.88987 : Pony, MT +59748 : 46.025762 : -112.77156 : Ramsay, MT +59749 : 45.528809 : -112.1097 : Sheridan, MT +59750 : 45.946694 : -112.6987 : Butte, MT +59751 : 45.681898 : -112.30548 : Silver Star, MT +59752 : 45.899881 : -111.53143 : Three Forks, MT +59754 : 45.513742 : -112.4186 : Twin Bridges, MT +59755 : 45.296409 : -111.94237 : Virginia City, MT +59756 : 46.201464 : -112.76555 : Warm Springs, MT +59758 : 44.727561 : -111.18723 : West Yellowstone, MT +59759 : 45.851349 : -112.1695 : Whitehall, MT +59760 : 45.782744 : -111.634532 : Willow Creek, MT +59761 : 45.595349 : -113.61624 : Wisdom, MT +59762 : 45.757767 : -112.99552 : Wise River, MT +59771 : 45.72465 : -111.123775 : Bozeman, MT +59772 : 45.636149 : -111.064676 : Bozeman, MT +59773 : 45.627982 : -110.90128 : Bozeman, MT +59795 : 45.349274 : -111.735925 : Ennis, MT +59798 : 44.658614 : -111.099869 : West Yellowstone, MT +59801 : 46.855423 : -114.01229 : Missoula, MT +59802 : 46.896821 : -113.95551 : Missoula, MT +59803 : 46.790915 : -114.00439 : Missoula, MT +59804 : 46.854974 : -114.10566 : Missoula, MT +59806 : 47.116034 : -114.049824 : Missoula, MT +59807 : 46.910342 : -113.958686 : Missoula, MT +59808 : 46.92275 : -114.07639 : Missoula, MT +59812 : 47.116034 : -114.049824 : Missoula, MT +59817 : 45.652577 : -111.190888 : Four Corners, MT +59820 : 46.971146 : -114.49692 : Alberton, MT +59821 : 47.169203 : -114.05215 : Arlee, MT +59823 : 46.900409 : -113.64027 : Bonner, MT +59824 : 47.425832 : -114.17894 : Charlo, MT +59825 : 46.716741 : -113.62908 : Clinton, MT +59826 : 47.500385 : -113.72687 : Condon, MT +59827 : 45.905748 : -114.07478 : Conner, MT +59828 : 46.313969 : -114.04819 : Corvallis, MT +59829 : 45.836508 : -114.20624 : Darby, MT +59830 : 47.388827 : -115.347934 : De Borgia, MT +59831 : 47.291275 : -114.37296 : Dixon, MT +59832 : 46.695594 : -113.22547 : Drummond, MT +59833 : 46.642043 : -114.07435 : Florence, MT +59834 : 47.049623 : -114.25074 : Frenchtown, MT +59835 : 46.060169 : -114.040777 : Grantsdale, MT +59836 : 47.015705 : -113.42635 : Greenough, MT +59837 : 46.522136 : -113.29281 : Hall, MT +59840 : 46.214883 : -114.14786 : Hamilton, MT +59841 : 46.336533 : -114.22296 : Pinesdale, MT +59842 : 47.365882 : -115.49151 : Haugan, MT +59843 : 46.878117 : -112.97934 : Helmville, MT +59844 : 48.03036 : -115.96844 : Heron, MT +59845 : 47.740524 : -114.63534 : Hot Springs, MT +59846 : 47.107612 : -114.44619 : Huson, MT +59847 : 46.752798 : -114.35326 : Lolo, MT +59848 : 47.689156 : -114.67899 : Lonepine, MT +59851 : 46.871508 : -113.88196 : Milltown, MT +59853 : 48.017227 : -115.81962 : Noxon, MT +59854 : 47.044698 : -113.09214 : Ovando, MT +59855 : 47.597618 : -114.11853 : Pablo, MT +59856 : 47.387824 : -114.799 : Paradise, MT +59858 : 46.293656 : -113.36273 : Philipsburg, MT +59859 : 47.452071 : -114.8171 : Plains, MT +59860 : 47.696131 : -114.16094 : Polson, MT +59863 : 47.594957 : -114.101443 : Ravalli, MT +59864 : 47.540256 : -114.12898 : Ronan, MT +59865 : 47.317264 : -114.04402 : Saint Ignatius, MT +59866 : 47.3245 : -115.13788 : Saint Regis, MT +59867 : 47.417172 : -115.45113 : Saltese, MT +59868 : 47.222677 : -113.52551 : Seeley Lake, MT +59870 : 46.53135 : -114.03182 : Stevensville, MT +59871 : 45.887807 : -113.84407 : Sula, MT +59872 : 47.113918 : -114.84507 : Superior, MT +59873 : 47.710209 : -115.23463 : Thompson Falls, MT +59874 : 47.844268 : -115.60569 : Trout Creek, MT +59875 : 46.39449 : -114.18711 : Victor, MT +59901 : 48.201414 : -114.32202 : Kalispell, MT +59902 : 48.189424 : -114.143531 : Kalispell, MT +59903 : 48.22372 : -114.429648 : Kalispell, MT +59904 : 48.240382 : -114.256123 : Kalispell, MT +59910 : 47.802143 : -114.30638 : Big Arm, MT +59911 : 47.952716 : -113.96215 : Bigfork, MT +59912 : 48.438331 : -114.23052 : Columbia Falls, MT +59913 : 48.428564 : -114.01396 : Coram, MT +59914 : 47.868708 : -114.2778 : Dayton, MT +59915 : 47.829886 : -114.39536 : Elmo, MT +59916 : 48.249467 : -113.62889 : Essex, MT +59917 : 48.840305 : -114.99727 : Eureka, MT +59918 : 48.75853 : -114.84363 : Fortine, MT +59919 : 48.185481 : -113.83078 : Hungry Horse, MT +59920 : 48.034766 : -114.49865 : Kila, MT +59921 : 48.605472 : -113.88505 : Lake McDonald, MT +59922 : 48.005656 : -114.24184 : Lakeside, MT +59923 : 48.309374 : -115.3286 : Libby, MT +59925 : 48.080862 : -114.80804 : Marion, MT +59926 : 48.36435 : -113.98182 : Martin City, MT +59927 : 48.595224 : -114.70843 : Olney, MT +59928 : 48.863964 : -114.42793 : Polebridge, MT +59929 : 47.923911 : -114.37322 : Proctor, MT +59930 : 48.875701 : -115.27461 : Rexford, MT +59931 : 47.911242 : -114.19568 : Rollins, MT +59932 : 48.073924 : -114.22384 : Somers, MT +59933 : 48.68464 : -114.74914 : Stryker, MT +59934 : 48.611903 : -114.90532 : Trego, MT +59935 : 48.671585 : -115.862 : Troy, MT +59936 : 48.497774 : -113.92599 : West Glacier, MT +59937 : 48.409454 : -114.43069 : Whitefish, MT +60001 : 42.324761 : -88.452481 : Alden, IL +60002 : 42.46617 : -88.09995 : Antioch, IL +60004 : 42.108428 : -87.97723 : Arlington Heights, IL +60005 : 42.069327 : -87.98464 : Arlington Heights, IL +60006 : 41.811929 : -87.68732 : Arlington Heights, IL +60007 : 42.005978 : -87.99847 : Elk Grove Village, IL +60008 : 42.07506 : -88.02508 : Rolling Meadows, IL +60009 : 41.811929 : -87.68732 : Elk Grove Village, IL +60010 : 42.160791 : -88.15231 : Barrington, IL +60011 : 42.322814 : -87.610053 : Barrington, IL +60012 : 42.265643 : -88.31664 : Crystal Lake, IL +60013 : 42.217523 : -88.24338 : Cary, IL +60014 : 42.226623 : -88.33066 : Crystal Lake, IL +60015 : 42.169325 : -87.86556 : Deerfield, IL +60016 : 42.047178 : -87.89058 : Des Plaines, IL +60017 : 42.028779 : -87.894366 : Des Plaines, IL +60018 : 42.008429 : -87.89234 : Des Plaines, IL +60019 : 42.024278 : -87.907066 : Des Plaines, IL +60020 : 42.409445 : -88.17822 : Fox Lake, IL +60021 : 42.194946 : -88.21676 : Fox River Grove, IL +60022 : 42.130976 : -87.76252 : Glencoe, IL +60025 : 42.07672 : -87.81922 : Glenview, IL +60026 : 41.811929 : -87.68732 : Glenview Nas, IL +60029 : 42.056529 : -87.79286 : Golf, IL +60030 : 42.338955 : -88.03433 : Grayslake, IL +60031 : 42.375821 : -87.93517 : Gurnee, IL +60033 : 42.424338 : -88.61431 : Harvard, IL +60034 : 42.468318 : -88.43125 : Hebron, IL +60035 : 42.181875 : -87.80956 : Highland Park, IL +60037 : 42.21196 : -87.80808 : Fort Sheridan, IL +60038 : 42.097976 : -88.014072 : Palatine, IL +60039 : 42.324761 : -88.452481 : Crystal Lake, IL +60040 : 42.205724 : -87.81421 : Highwood, IL +60041 : 42.372721 : -88.15303 : Ingleside, IL +60042 : 42.277691 : -88.20074 : Island Lake, IL +60043 : 42.088128 : -87.716 : Kenilworth, IL +60044 : 42.286222 : -87.86309 : Lake Bluff, IL +60045 : 42.238087 : -87.86093 : Lake Forest, IL +60046 : 42.410687 : -88.05462 : Lake Villa, IL +60047 : 42.199957 : -88.05859 : Lake Zurich, IL +60048 : 42.290922 : -87.95169 : Libertyville, IL +60049 : 42.198674 : -88.041875 : Long Grove, IL +60050 : 42.348406 : -88.24769 : Mchenry, IL +60051 : 42.324761 : -88.452481 : Mchenry, IL +60053 : 42.041999 : -87.78882 : Morton Grove, IL +60054 : 42.35344 : -88.260692 : McHenry, IL +60055 : 42.097976 : -88.014072 : Palatine, IL +60056 : 42.065427 : -87.93621 : Mount Prospect, IL +60060 : 42.263623 : -88.01172 : Mundelein, IL +60061 : 42.229856 : -87.96779 : Vernon Hills, IL +60062 : 42.124576 : -87.84303 : Northbrook, IL +60064 : 42.326072 : -87.85202 : North Chicago, IL +60065 : 41.811929 : -87.68732 : Northbrook, IL +60067 : 42.10979 : -88.04917 : Palatine, IL +60068 : 42.01183 : -87.84158 : Park Ridge, IL +60069 : 42.188074 : -87.92717 : Lincolnshire, IL +60070 : 42.105576 : -87.92816 : Prospect Heights, IL +60071 : 42.464639 : -88.3028 : Richmond, IL +60072 : 42.405464 : -88.30274 : Ringwood, IL +60073 : 42.366253 : -88.09647 : Round Lake, IL +60074 : 42.143819 : -88.02546 : Palatine, IL +60075 : 42.322814 : -87.610053 : Russell, IL +60076 : 42.03618 : -87.7321 : Skokie, IL +60077 : 42.033313 : -87.75764 : Skokie, IL +60078 : 41.811929 : -87.68732 : Palatine, IL +60079 : 42.322814 : -87.610053 : Waukegan, IL +60080 : 42.442519 : -88.276047 : Solon Mills, IL +60081 : 42.441869 : -88.22167 : Spring Grove, IL +60082 : 42.116377 : -87.812064 : Techny, IL +60083 : 42.428187 : -87.92935 : Wadsworth, IL +60084 : 42.263181 : -88.14328 : Wauconda, IL +60085 : 42.361271 : -87.86187 : Waukegan, IL +60086 : 42.43335 : -87.776595 : North Chicago, IL +60087 : 42.404272 : -87.86525 : Waukegan, IL +60088 : 42.312372 : -87.85284 : Great Lakes, IL +60089 : 42.167638 : -87.96393 : Buffalo Grove, IL +60090 : 42.131526 : -87.92958 : Wheeling, IL +60091 : 42.077178 : -87.72373 : Wilmette, IL +60092 : 42.322814 : -87.610053 : Libertyville, IL +60093 : 42.104127 : -87.75016 : Winnetka, IL +60094 : 41.811929 : -87.68732 : Palatine, IL +60095 : 41.811929 : -87.68732 : Palatine, IL +60096 : 42.48067 : -87.83018 : Winthrop Harbor, IL +60097 : 42.384504 : -88.3495 : Wonder Lake, IL +60098 : 42.316121 : -88.43884 : Woodstock, IL +60099 : 42.451371 : -87.84862 : Zion, IL +60101 : 41.931573 : -88.00222 : Addison, IL +60102 : 42.17315 : -88.31849 : Algonquin, IL +60103 : 41.977477 : -88.17257 : Bartlett, IL +60104 : 41.882924 : -87.87642 : Bellwood, IL +60105 : 41.839679 : -88.088716 : Bensenville, IL +60106 : 41.956479 : -87.95117 : Bensenville, IL +60107 : 42.023977 : -88.17657 : Streamwood, IL +60108 : 41.94954 : -88.08256 : Bloomingdale, IL +60109 : 42.052112 : -88.54829 : Burlington, IL +60110 : 42.121188 : -88.27227 : Carpentersville, IL +60111 : 41.998231 : -88.84223 : Clare, IL +60112 : 41.921121 : -88.6899 : Cortland, IL +60113 : 41.93171 : -88.96438 : Creston, IL +60114 : 41.839679 : -88.088716 : Addison, IL +60115 : 41.924127 : -88.74617 : Dekalb, IL +60116 : 41.839679 : -88.088716 : Carol Stream, IL +60117 : 41.839679 : -88.088716 : Bloomingdale, IL +60118 : 42.101502 : -88.28891 : Dundee, IL +60119 : 41.876506 : -88.46429 : Elburn, IL +60120 : 42.037176 : -88.25922 : Elgin, IL +60121 : 42.04133 : -88.3126 : Elgin, IL +60122 : 42.067101 : -88.304994 : Elgin, IL +60123 : 42.034776 : -88.32393 : Elgin, IL +60125 : 41.839679 : -88.088716 : Carol Stream, IL +60126 : 41.89103 : -87.94181 : Elmhurst, IL +60127 : 41.878878 : -88.134469 : Milton, IL +60128 : 41.839679 : -88.088716 : Carol Stream, IL +60129 : 42.034502 : -88.97084 : Esmond, IL +60130 : 41.871331 : -87.81235 : Forest Park, IL +60131 : 41.93548 : -87.87468 : Franklin Park, IL +60132 : 41.839679 : -88.088716 : Carol Stream, IL +60133 : 41.980896 : -88.144475 : Hanover Park, IL +60134 : 41.885728 : -88.31957 : Geneva, IL +60135 : 42.10028 : -88.6906 : Genoa, IL +60136 : 42.099479 : -88.36942 : Gilberts, IL +60137 : 41.869779 : -88.06285 : Glen Ellyn, IL +60138 : 41.839679 : -88.088716 : Glen Ellyn, IL +60139 : 41.920228 : -88.07891 : Glendale Heights, IL +60140 : 42.086218 : -88.5036 : Hampshire, IL +60141 : 41.858028 : -87.83865 : Hines, IL +60142 : 42.171973 : -88.42891 : Huntley, IL +60143 : 41.972328 : -88.02196 : Itasca, IL +60144 : 41.936977 : -88.420178 : Kaneville, IL +60145 : 42.102014 : -88.76647 : Kingston, IL +60146 : 42.100571 : -88.87665 : Kirkland, IL +60147 : 41.936977 : -88.420178 : Lafox, IL +60148 : 41.875429 : -88.01723 : Lombard, IL +60149 : 41.964197 : -88.951205 : Dement, IL +60150 : 41.933061 : -88.88293 : Malta, IL +60151 : 41.91842 : -88.57626 : Maple Park, IL +60152 : 42.242199 : -88.61034 : Marengo, IL +60153 : 41.880281 : -87.84455 : Maywood, IL +60154 : 41.851257 : -87.88351 : Westchester, IL +60155 : 41.857931 : -87.85477 : Broadview, IL +60156 : 42.185733 : -88.348484 : Lake in the Hills, IL +60157 : 41.970628 : -88.05606 : Medinah, IL +60159 : 41.811929 : -87.68732 : Schaumburg, IL +60160 : 41.89988 : -87.85978 : Melrose Park, IL +60161 : 41.811929 : -87.68732 : Melrose Park, IL +60162 : 41.872997 : -87.90101 : Hillside, IL +60163 : 41.886794 : -87.91052 : Berkeley, IL +60164 : 41.91823 : -87.89627 : Melrose Park, IL +60165 : 41.90158 : -87.88046 : Stone Park, IL +60168 : 41.811929 : -87.68732 : Schaumburg, IL +60170 : 42.025776 : -88.425931 : Plato Center, IL +60171 : 41.92583 : -87.84013 : River Grove, IL +60172 : 41.980761 : -88.08704 : Roselle, IL +60173 : 42.051927 : -88.04814 : Schaumburg, IL +60174 : 41.919808 : -88.30498 : Saint Charles, IL +60175 : 41.944577 : -88.38326 : Saint Charles, IL +60176 : 41.95683 : -87.87193 : Schiller Park, IL +60177 : 41.99215 : -88.30609 : South Elgin, IL +60178 : 41.990505 : -88.68704 : Sycamore, IL +60179 : 42.079336 : -88.223655 : Hoffman Estates, IL +60180 : 42.229437 : -88.52606 : Union, IL +60181 : 41.880429 : -87.97813 : Villa Park, IL +60182 : 41.908736 : -88.59915 : Virgil, IL +60183 : 41.936977 : -88.420178 : Wasco, IL +60184 : 41.953427 : -88.25176 : Wayne, IL +60185 : 41.891978 : -88.20502 : West Chicago, IL +60186 : 41.839679 : -88.088716 : West Chicago, IL +60187 : 41.858279 : -88.10904 : Wheaton, IL +60188 : 41.918578 : -88.13688 : Carol Stream, IL +60189 : 41.839679 : -88.088716 : Wheaton, IL +60190 : 41.875228 : -88.15261 : Winfield, IL +60191 : 41.962979 : -87.97688 : Wood Dale, IL +60192 : 42.065827 : -88.21399 : Schaumburg, IL +60193 : 42.01299 : -88.09675 : Schaumburg, IL +60194 : 42.037108 : -88.10719 : Schaumburg, IL +60195 : 42.067809 : -88.10828 : Schaumburg, IL +60196 : 42.056376 : -88.072522 : Schaumburg, IL +60197 : 41.839679 : -88.088716 : Carol Stream, IL +60198 : 41.839679 : -88.088716 : Carol Stream, IL +60199 : 41.839679 : -88.088716 : Carol Stream, IL +60201 : 42.056391 : -87.69684 : Evanston, IL +60202 : 42.030327 : -87.68828 : Evanston, IL +60203 : 42.048879 : -87.7175 : Evanston, IL +60204 : 41.811929 : -87.68732 : Evanston, IL +60208 : 42.058629 : -87.684506 : Evanston, IL +60209 : 42.04973 : -87.679408 : Evanston, IL +60301 : 41.887981 : -87.79562 : Oak Park, IL +60302 : 41.893941 : -87.78899 : Oak Park, IL +60303 : 41.811929 : -87.68732 : Oak Park, IL +60304 : 41.87355 : -87.7885 : Oak Park, IL +60305 : 41.893031 : -87.81718 : River Forest, IL +60330 : 41.882081 : -87.821359 : River Forest, IL +60401 : 41.350484 : -87.62408 : Beecher, IL +60402 : 41.836981 : -87.79095 : Berwyn, IL +60406 : 41.656592 : -87.68154 : Blue Island, IL +60407 : 41.230524 : -88.25503 : Braceville, IL +60408 : 41.262178 : -88.22307 : Braidwood, IL +60409 : 41.614188 : -87.54638 : Calumet City, IL +60410 : 41.439518 : -88.20898 : Channahon, IL +60411 : 41.511307 : -87.6101 : Chicago Heights, IL +60412 : 41.811929 : -87.68732 : Chicago Heights, IL +60415 : 41.702482 : -87.77869 : Chicago Ridge, IL +60416 : 41.292011 : -88.2783 : Coal City, IL +60417 : 41.439034 : -87.61173 : Crete, IL +60419 : 41.626839 : -87.59865 : Dolton, IL +60420 : 41.089453 : -88.42783 : Dwight, IL +60421 : 41.429681 : -88.10284 : Elwood, IL +60422 : 41.539384 : -87.68424 : Flossmoor, IL +60423 : 41.501178 : -87.83875 : Frankfort, IL +60424 : 41.174117 : -88.30954 : Gardner, IL +60425 : 41.544584 : -87.61289 : Glenwood, IL +60426 : 41.609078 : -87.66264 : Harvey, IL +60429 : 41.574034 : -87.67857 : Hazel Crest, IL +60430 : 41.556734 : -87.66464 : Homewood, IL +60431 : 41.52493 : -88.19022 : Joliet, IL +60432 : 41.533631 : -88.05592 : Joliet, IL +60433 : 41.511644 : -88.05698 : Joliet, IL +60434 : 41.52543 : -88.084208 : Joliet, IL +60435 : 41.54338 : -88.11963 : Joliet, IL +60436 : 41.50798 : -88.10553 : Joliet, IL +60437 : 41.168761 : -88.55792 : Kinsman, IL +60438 : 41.565685 : -87.54819 : Lansing, IL +60439 : 41.676028 : -87.98258 : Lemont, IL +60440 : 41.703097 : -88.07462 : Bolingbrook, IL +60441 : 41.598235 : -88.02753 : Lockport, IL +60442 : 41.407474 : -87.96883 : Manhattan, IL +60443 : 41.503468 : -87.73695 : Matteson, IL +60444 : 41.243419 : -88.40325 : Mazon, IL +60445 : 41.631683 : -87.73309 : Midlothian, IL +60446 : 41.64273 : -88.09934 : Romeoville, IL +60447 : 41.473553 : -88.29167 : Minooka, IL +60448 : 41.536782 : -87.88582 : Mokena, IL +60449 : 41.422555 : -87.75531 : Monee, IL +60450 : 41.370642 : -88.40749 : Morris, IL +60451 : 41.509231 : -87.96475 : New Lenox, IL +60452 : 41.605633 : -87.75356 : Oak Forest, IL +60453 : 41.715082 : -87.7546 : Oak Lawn, IL +60454 : 41.811929 : -87.68732 : Oak Lawn, IL +60455 : 41.742432 : -87.80678 : Bridgeview, IL +60456 : 41.730533 : -87.73198 : Hometown, IL +60457 : 41.723782 : -87.82825 : Hickory Hills, IL +60458 : 41.746432 : -87.83557 : Justice, IL +60459 : 41.744082 : -87.77022 : Burbank, IL +60460 : 41.00148 : -88.52981 : Odell, IL +60461 : 41.51829 : -87.69274 : Olympia Fields, IL +60462 : 41.623532 : -87.83542 : Orland Park, IL +60463 : 41.663548 : -87.79148 : Palos Heights, IL +60464 : 41.664582 : -87.84378 : Palos Park, IL +60465 : 41.699432 : -87.82977 : Palos Hills, IL +60466 : 41.472934 : -87.68767 : Park Forest, IL +60467 : 41.598255 : -87.89201 : Orland Park, IL +60468 : 41.331114 : -87.79917 : Peotone, IL +60469 : 41.628034 : -87.68694 : Posen, IL +60470 : 41.169068 : -88.6494 : Ransom, IL +60471 : 41.483844 : -87.72134 : Richton Park, IL +60472 : 41.642933 : -87.70814 : Robbins, IL +60473 : 41.597472 : -87.59909 : South Holland, IL +60474 : 41.173313 : -88.27494 : South Wilmington, IL +60475 : 41.470084 : -87.63369 : Steger, IL +60476 : 41.570384 : -87.60839 : Thornton, IL +60477 : 41.5738 : -87.80389 : Tinley Park, IL +60478 : 41.561134 : -87.72398 : Country Club Hills, IL +60479 : 41.231718 : -88.52659 : Verona, IL +60480 : 41.737616 : -87.87778 : Willow Springs, IL +60481 : 41.298186 : -88.1464 : Wilmington, IL +60482 : 41.688827 : -87.79265 : Worth, IL +60490 : 41.684752 : -88.14203 : Bolingbrook, IL +60499 : 41.811929 : -87.68732 : Bedford Park, IL +60501 : 41.784832 : -87.81 : Summit Argo, IL +60504 : 41.760067 : -88.25218 : Aurora, IL +60505 : 41.756129 : -88.29699 : Aurora, IL +60506 : 41.766029 : -88.35254 : Aurora, IL +60507 : 41.936977 : -88.420178 : Aurora, IL +60510 : 41.845228 : -88.30995 : Batavia, IL +60511 : 41.75537 : -88.54865 : Big Rock, IL +60512 : 41.706034 : -88.41296 : Bristol, IL +60513 : 41.822681 : -87.84753 : Brookfield, IL +60514 : 41.779533 : -87.95798 : Clarendon Hills, IL +60515 : 41.80348 : -88.01827 : Downers Grove, IL +60516 : 41.761463 : -88.01334 : Downers Grove, IL +60517 : 41.75253 : -88.04864 : Woodridge, IL +60518 : 41.599139 : -88.91932 : Earlville, IL +60519 : 41.778379 : -88.24268 : Eola, IL +60520 : 41.776884 : -88.64655 : Hinckley, IL +60521 : 41.772915 : -87.92996 : Hinsdale, IL +60522 : 41.839679 : -88.088716 : Hinsdale, IL +60523 : 41.837716 : -87.96041 : Oak Brook, IL +60525 : 41.788536 : -87.87605 : La Grange, IL +60526 : 41.829831 : -87.8704 : La Grange Park, IL +60527 : 41.839679 : -88.088716 : Hinsdale, IL +60530 : 41.792378 : -88.9516 : Lee, IL +60531 : 41.620636 : -88.78895 : Leland, IL +60532 : 41.789079 : -88.08536 : Lisle, IL +60534 : 41.812331 : -87.82318 : Lyons, IL +60536 : 41.598631 : -88.55317 : Millbrook, IL +60537 : 41.56253 : -88.59921 : Millington, IL +60538 : 41.721886 : -88.32972 : Montgomery, IL +60539 : 41.823478 : -88.3332 : Mooseheart, IL +60540 : 41.764779 : -88.14579 : Naperville, IL +60541 : 41.529433 : -88.53552 : Newark, IL +60542 : 41.809387 : -88.32931 : North Aurora, IL +60543 : 41.684896 : -88.34177 : Oswego, IL +60544 : 41.607624 : -88.19736 : Plainfield, IL +60545 : 41.665654 : -88.53697 : Plano, IL +60546 : 41.836131 : -87.82163 : Riverside, IL +60548 : 41.645393 : -88.63052 : Sandwich, IL +60549 : 41.490329 : -88.74998 : Serena, IL +60550 : 41.769322 : -88.86858 : Shabbona, IL +60551 : 41.527585 : -88.68292 : Sheridan, IL +60552 : 41.645998 : -88.69 : Somonauk, IL +60553 : 41.830628 : -89.01704 : Steward, IL +60554 : 41.779939 : -88.45183 : Sugar Grove, IL +60555 : 41.82552 : -88.19452 : Warrenville, IL +60556 : 41.768498 : -88.77539 : Waterman, IL +60557 : 41.438531 : -88.76933 : Wedron, IL +60558 : 41.805531 : -87.90103 : Western Springs, IL +60559 : 41.795358 : -87.97778 : Westmont, IL +60560 : 41.631342 : -88.43996 : Yorkville, IL +60561 : 41.745623 : -87.98108 : Darien, IL +60563 : 41.794885 : -88.16188 : Naperville, IL +60564 : 41.707118 : -88.19634 : Naperville, IL +60565 : 41.728738 : -88.12824 : Naperville, IL +60566 : 41.839679 : -88.088716 : Naperville, IL +60567 : 41.839679 : -88.088716 : Naperville, IL +60568 : 41.935616 : -88.43238 : Aurora, IL +60570 : 41.839679 : -88.088716 : Hinsdale, IL +60572 : 41.839679 : -88.088716 : Aurora, IL +60597 : 41.839679 : -88.088716 : Fox Valley, IL +60598 : 41.839679 : -88.088716 : Aurora, IL +60599 : 41.839679 : -88.088716 : Fox Valley, IL +60601 : 41.886456 : -87.62325 : Chicago, IL +60602 : 41.882937 : -87.62874 : Chicago, IL +60603 : 41.880446 : -87.63014 : Chicago, IL +60604 : 41.877589 : -87.62818 : Chicago, IL +60605 : 41.860019 : -87.6187 : Chicago, IL +60606 : 41.882582 : -87.6376 : Chicago, IL +60607 : 41.875882 : -87.65114 : Chicago, IL +60608 : 41.850532 : -87.6699 : Chicago, IL +60609 : 41.814283 : -87.65282 : Chicago, IL +60610 : 41.898582 : -87.6371 : Chicago, IL +60611 : 41.904667 : -87.62504 : Chicago, IL +60612 : 41.880682 : -87.6877 : Chicago, IL +60613 : 41.953256 : -87.6629 : Chicago, IL +60614 : 41.922682 : -87.65432 : Chicago, IL +60615 : 41.801525 : -87.60215 : Chicago, IL +60616 : 41.8474 : -87.63126 : Chicago, IL +60617 : 41.719973 : -87.5557 : Chicago, IL +60618 : 41.945681 : -87.7048 : Chicago, IL +60619 : 41.744834 : -87.60444 : Chicago, IL +60620 : 41.740483 : -87.65282 : Chicago, IL +60621 : 41.776983 : -87.6404 : Chicago, IL +60622 : 41.900332 : -87.66927 : Chicago, IL +60623 : 41.850232 : -87.718 : Chicago, IL +60624 : 41.879365 : -87.72199 : Chicago, IL +60625 : 41.971614 : -87.70256 : Chicago, IL +60626 : 42.009731 : -87.66938 : Chicago, IL +60628 : 41.695434 : -87.62255 : Chicago, IL +60629 : 41.777482 : -87.71155 : Chicago, IL +60630 : 41.971044 : -87.75869 : Chicago, IL +60631 : 41.99623 : -87.81091 : Chicago, IL +60632 : 41.809299 : -87.7105 : Chicago, IL +60633 : 41.655423 : -87.55365 : Chicago, IL +60634 : 41.944454 : -87.79654 : Chicago, IL +60636 : 41.776633 : -87.66854 : Chicago, IL +60637 : 41.779384 : -87.60544 : Chicago, IL +60638 : 41.787982 : -87.7738 : Chicago, IL +60639 : 41.921431 : -87.75415 : Chicago, IL +60640 : 41.973181 : -87.6665 : Chicago, IL +60641 : 41.946431 : -87.74576 : Chicago, IL +60643 : 41.696433 : -87.65993 : Chicago, IL +60644 : 41.881331 : -87.75671 : Chicago, IL +60645 : 42.008956 : -87.69634 : Chicago, IL +60646 : 41.995331 : -87.7601 : Chicago, IL +60647 : 41.921126 : -87.70085 : Chicago, IL +60648 : 41.335445 : -87.785286 : Peotone, IL +60649 : 41.761734 : -87.57072 : Chicago, IL +60650 : 41.818682 : -87.743454 : Chicago, IL +60651 : 41.901485 : -87.74055 : Chicago, IL +60652 : 41.7446 : -87.71188 : Chicago, IL +60653 : 41.819833 : -87.61269 : Chicago, IL +60654 : 41.888627 : -87.63538 : Chicago, IL +60655 : 41.696283 : -87.69912 : Chicago, IL +60656 : 41.97508 : -87.8163 : Chicago, IL +60657 : 41.940832 : -87.65852 : Chicago, IL +60659 : 41.991381 : -87.70378 : Chicago, IL +60660 : 41.990631 : -87.6667 : Chicago, IL +60661 : 41.882082 : -87.64461 : Chicago, IL +60663 : 41.811929 : -87.68732 : Chicago, IL +60664 : 41.811929 : -87.68732 : Chicago, IL +60665 : 41.811929 : -87.68732 : Chicago, IL +60666 : 41.968029 : -87.891214 : Amf Ohare, IL +60667 : 41.811929 : -87.68732 : Chicago, IL +60668 : 41.811929 : -87.68732 : Chicago, IL +60669 : 41.811929 : -87.68732 : Chicago, IL +60670 : 41.811929 : -87.68732 : Chicago, IL +60671 : 41.811929 : -87.68732 : Chicago, IL +60672 : 41.811929 : -87.68732 : Chicago, IL +60673 : 41.811929 : -87.68732 : Chicago, IL +60674 : 41.811929 : -87.68732 : Chicago, IL +60675 : 41.811929 : -87.68732 : Chicago, IL +60677 : 41.811929 : -87.68732 : Chicago, IL +60678 : 41.811929 : -87.68732 : Chicago, IL +60679 : 41.811929 : -87.68732 : Chicago, IL +60680 : 41.811929 : -87.68732 : Chicago, IL +60681 : 41.811929 : -87.68732 : Chicago, IL +60683 : 41.811929 : -87.68732 : Chicago, IL +60684 : 41.811929 : -87.68732 : Chicago, IL +60685 : 41.811929 : -87.68732 : Chicago, IL +60687 : 41.811929 : -87.68732 : Chicago, IL +60690 : 41.811929 : -87.68732 : Chicago, IL +60691 : 41.811929 : -87.68732 : Chicago, IL +60692 : 41.867532 : -87.672553 : Chicago, IL +60693 : 42.096428 : -87.71791 : Chicago, IL +60694 : 41.811929 : -87.68732 : Chicago, IL +60697 : 41.811929 : -87.68732 : Chicago, IL +60699 : 41.811929 : -87.68732 : Chicago, IL +60701 : 41.811929 : -87.68732 : Chicago, IL +60706 : 41.96418 : -87.81686 : Harwood Heights, IL +60707 : 41.922681 : -87.80805 : Elmwood Park, IL +60712 : 42.005331 : -87.73545 : Lincolnwood, IL +60714 : 42.032379 : -87.81563 : Niles, IL +60803 : 41.675861 : -87.73189 : Alsip, IL +60804 : 41.844382 : -87.7599 : Cicero, IL +60805 : 41.719933 : -87.70249 : Evergreen Park, IL +60827 : 41.649717 : -87.63292 : Riverdale, IL +60901 : 41.114132 : -87.86784 : Kankakee, IL +60902 : 41.146464 : -87.888971 : Kankakee, IL +60910 : 41.078981 : -87.80536 : Aroma Park, IL +60911 : 40.883641 : -87.9667 : Ashkum, IL +60912 : 40.968579 : -87.61611 : Beaverville, IL +60913 : 41.147958 : -88.06412 : Bonfield, IL +60914 : 41.170442 : -87.86891 : Bourbonnais, IL +60915 : 41.144256 : -87.86239 : Bradley, IL +60917 : 41.04699 : -88.18649 : Buckingham, IL +60918 : 40.598963 : -88.03308 : Buckley, IL +60919 : 40.987824 : -88.23737 : Cabery, IL +60920 : 41.024846 : -88.30797 : Campus, IL +60921 : 40.757447 : -88.29306 : Chatsworth, IL +60922 : 41.005603 : -87.90649 : Chebanse, IL +60924 : 40.565374 : -87.88177 : Cissna Park, IL +60926 : 40.572516 : -87.81825 : Claytonville, IL +60927 : 40.937573 : -87.94105 : Clifton, IL +60928 : 40.766096 : -87.85474 : Crescent City, IL +60929 : 40.873 : -88.28676 : Cullom, IL +60930 : 40.823527 : -87.9874 : Danforth, IL +60931 : 40.876303 : -87.60159 : Donovan, IL +60932 : 40.465251 : -87.80112 : East Lynn, IL +60933 : 40.465744 : -88.26994 : Elliott, IL +60934 : 40.966528 : -88.34937 : Emington, IL +60935 : 41.17569 : -88.17268 : Essex, IL +60936 : 40.463079 : -88.3731 : Gibson City, IL +60938 : 40.767194 : -87.98929 : Gilman, IL +60939 : 40.748087 : -87.82876 : Goodwine, IL +60940 : 41.244016 : -87.64464 : Grant Park, IL +60941 : 41.05113 : -88.08957 : Herscher, IL +60942 : 40.465869 : -87.66766 : Hoopeston, IL +60944 : 41.146464 : -87.888971 : Hopkins Park, IL +60945 : 40.827011 : -87.58356 : Iroquois, IL +60946 : 40.908942 : -88.21304 : Kempton, IL +60948 : 40.526477 : -88.0821 : Loda, IL +60949 : 40.375602 : -88.11524 : Ludlow, IL +60950 : 41.250408 : -87.85125 : Manteno, IL +60951 : 40.912916 : -87.75589 : Martinton, IL +60952 : 40.562833 : -88.25053 : Melvin, IL +60953 : 40.624025 : -87.69618 : Milford, IL +60954 : 41.147918 : -87.63579 : Momence, IL +60955 : 40.706634 : -87.99624 : Onarga, IL +60956 : 40.966993 : -87.716074 : Papineau, IL +60957 : 40.448736 : -88.11405 : Paxton, IL +60959 : 40.779834 : -88.18012 : Piper City, IL +60960 : 40.439688 : -87.89016 : Rankin, IL +60961 : 41.105629 : -88.23794 : Reddick, IL +60962 : 40.625486 : -88.18667 : Roberts, IL +60963 : 40.372447 : -87.6603 : Rossville, IL +60964 : 41.045785 : -87.68963 : Saint Anne, IL +60966 : 40.762507 : -87.57423 : Sheldon, IL +60967 : 40.613942 : -87.59259 : Stockland, IL +60968 : 40.6756 : -88.10761 : Thawville, IL +60969 : 41.109101 : -88.14732 : Union Hill, IL +60970 : 40.784447 : -87.74051 : Watseka, IL +60973 : 40.543697 : -87.66475 : Wellington, IL +60974 : 40.710295 : -87.73137 : Woodland, IL +61001 : 42.472458 : -90.12098 : Apple River, IL +61006 : 41.865034 : -89.21536 : Ashton, IL +61007 : 42.199457 : -89.59662 : Baileyville, IL +61008 : 42.257229 : -88.84755 : Belvidere, IL +61010 : 42.131245 : -89.26637 : Byron, IL +61011 : 42.376423 : -88.9325 : Caledonia, IL +61012 : 42.401104 : -88.74726 : Capron, IL +61013 : 42.375078 : -89.63382 : Cedarville, IL +61014 : 41.97068 : -89.87508 : Chadwick, IL +61015 : 41.982993 : -89.2128 : Chana, IL +61016 : 42.222221 : -88.9543 : Cherry Valley, IL +61017 : 41.902977 : -89.804293 : Coleta, IL +61018 : 42.403305 : -89.55466 : Dakota, IL +61019 : 42.440374 : -89.40925 : Davis, IL +61020 : 42.101928 : -89.09369 : Davis Junction, IL +61021 : 41.843702 : -89.47636 : Dixon, IL +61024 : 42.436585 : -89.30394 : Durand, IL +61025 : 42.483971 : -90.58945 : East Dubuque, IL +61027 : 42.332038 : -89.761171 : Eleroy, IL +61028 : 42.298773 : -90.17778 : Elizabeth, IL +61030 : 42.119619 : -89.58242 : Forreston, IL +61031 : 41.84036 : -89.31176 : Franklin Grove, IL +61032 : 42.300918 : -89.63208 : Freeport, IL +61036 : 42.400744 : -90.39738 : Galena, IL +61037 : 41.788761 : -89.76182 : Galt, IL +61038 : 42.255617 : -88.74344 : Garden Prairie, IL +61039 : 42.213851 : -89.47449 : German Valley, IL +61041 : 42.270426 : -90.31077 : Hanover, IL +61042 : 41.69339 : -89.56986 : Harmon, IL +61043 : 42.045123 : -89.313593 : Holcomb, IL +61044 : 42.320303 : -89.91237 : Kent, IL +61046 : 42.111421 : -89.82436 : Lanark, IL +61047 : 42.139244 : -89.3968 : Leaf River, IL +61048 : 42.381064 : -89.83062 : Lena, IL +61049 : 42.054546 : -89.02456 : Lindenwood, IL +61050 : 42.4447 : -89.72708 : McConnell, IL +61051 : 41.965904 : -89.75896 : Milledgeville, IL +61052 : 42.110548 : -89.00751 : Monroe Center, IL +61053 : 42.1009 : -89.98255 : Mount Carroll, IL +61054 : 42.046139 : -89.44025 : Mount Morris, IL +61057 : 41.830896 : -89.39613 : Nachusa, IL +61058 : 41.797256 : -89.599529 : Nelson, IL +61059 : 42.455036 : -89.94561 : Nora, IL +61060 : 42.475891 : -89.63404 : Orangeville, IL +61061 : 42.00663 : -89.33932 : Oregon, IL +61062 : 42.250987 : -89.83571 : Pearl City, IL +61063 : 42.307665 : -89.34453 : Pecatonica, IL +61064 : 41.989386 : -89.59084 : Polo, IL +61065 : 42.364394 : -88.84665 : Poplar Grove, IL +61067 : 42.298218 : -89.47652 : Ridott, IL +61068 : 41.935139 : -89.06891 : Rochelle, IL +61070 : 42.407384 : -89.46228 : Rock City, IL +61071 : 41.759473 : -89.69452 : Rock Falls, IL +61072 : 42.447856 : -89.08485 : Rockton, IL +61073 : 42.419097 : -89.00407 : Roscoe, IL +61074 : 42.099635 : -90.12858 : Savanna, IL +61075 : 42.473737 : -90.25362 : Scales Mound, IL +61076 : 42.355422 : -89.667939 : Scioto Mills, IL +61077 : 42.236813 : -89.35828 : Seward, IL +61078 : 42.15834 : -89.73555 : Shannon, IL +61079 : 42.325364 : -89.170527 : Shirland, IL +61080 : 42.484835 : -89.02756 : South Beloit, IL +61081 : 41.813776 : -89.70537 : Sterling, IL +61084 : 42.112207 : -89.18633 : Stillman Valley, IL +61085 : 42.350108 : -90.02362 : Stockton, IL +61087 : 42.491388 : -89.98979 : Warren, IL +61088 : 42.271385 : -89.25099 : Winnebago, IL +61089 : 42.475078 : -89.81607 : Winslow, IL +61091 : 41.905844 : -89.54255 : Woosung, IL +61101 : 42.292221 : -89.12574 : Rockford, IL +61102 : 42.25517 : -89.1297 : Rockford, IL +61103 : 42.303365 : -89.08246 : Rockford, IL +61104 : 42.25537 : -89.07602 : Rockford, IL +61105 : 42.325364 : -89.170527 : Rockford, IL +61106 : 42.325364 : -89.170527 : Rockford, IL +61107 : 42.280019 : -89.03347 : Rockford, IL +61108 : 42.254087 : -89.01776 : Rockford, IL +61109 : 42.213439 : -89.05595 : Rockford, IL +61110 : 42.325364 : -89.170527 : Rockford, IL +61111 : 42.326227 : -89.02573 : Loves Park, IL +61112 : 42.245596 : -88.97586 : Rockford, IL +61114 : 42.306666 : -89.00839 : Rockford, IL +61115 : 42.352539 : -89.04186 : Machesney Park, IL +61125 : 42.325364 : -89.170527 : Rockford, IL +61126 : 42.325364 : -89.170527 : Rockford, IL +61130 : 42.325364 : -89.170527 : Loves Park, IL +61131 : 42.325364 : -89.170527 : Loves Park, IL +61132 : 42.325364 : -89.170527 : Loves Park, IL +61201 : 41.4903 : -90.56956 : Rock Island, IL +61202 : 41.466752 : -90.58714 : Rock Island, IL +61204 : 41.554901 : -90.615975 : Rock Island, IL +61206 : 41.554901 : -90.615975 : Rock Island, IL +61230 : 41.766003 : -90.22322 : Albany, IL +61231 : 41.202461 : -90.73137 : Aledo, IL +61232 : 41.440852 : -90.71957 : Andalusia, IL +61233 : 41.292977 : -90.29334 : Andover, IL +61234 : 41.412944 : -89.92236 : Annawan, IL +61235 : 41.409646 : -90.01821 : Atkinson, IL +61236 : 41.518317 : -90.35597 : Barstow, IL +61237 : 41.336752 : -90.852226 : Buffalo Prairie, IL +61238 : 41.286797 : -90.17486 : Cambridge, IL +61239 : 41.497667 : -90.39047 : Carbon Cliff, IL +61240 : 41.439784 : -90.428 : Coal Valley, IL +61241 : 41.483484 : -90.34046 : Colona, IL +61242 : 41.697188 : -90.30177 : Cordova, IL +61243 : 41.610151 : -89.66298 : Deer Grove, IL +61244 : 41.518733 : -90.41788 : East Moline, IL +61250 : 41.657803 : -90.08613 : Erie, IL +61251 : 41.738551 : -90.06922 : Fenton, IL +61252 : 41.863049 : -90.14524 : Fulton, IL +61254 : 41.464473 : -90.15854 : Geneseo, IL +61256 : 41.554666 : -90.40987 : Hampton, IL +61257 : 41.590161 : -90.20392 : Hillsdale, IL +61258 : 41.522044 : -89.91216 : Hooppole, IL +61259 : 41.369036 : -90.9284 : Illinois City, IL +61260 : 41.228561 : -90.87565 : Joy, IL +61261 : 41.719782 : -89.92116 : Lyndon, IL +61262 : 41.28595 : -90.36117 : Lynn Center, IL +61263 : 41.260255 : -90.60587 : Matherville, IL +61264 : 41.426583 : -90.57639 : Milan, IL +61265 : 41.490333 : -90.50006 : Moline, IL +61266 : 41.554901 : -90.615975 : Moline, IL +61270 : 41.819003 : -89.96623 : Morrison, IL +61272 : 41.223984 : -91.0123 : New Boston, IL +61273 : 41.357236 : -90.38482 : Orion, IL +61274 : 41.372408 : -90.27031 : Osco, IL +61275 : 41.599642 : -90.31978 : Port Byron, IL +61276 : 41.30589 : -90.5979 : Preemption, IL +61277 : 41.612038 : -89.93036 : Prophetstown, IL +61278 : 41.585883 : -90.343228 : Rapids City, IL +61279 : 41.31653 : -90.70671 : Reynolds, IL +61281 : 41.303101 : -90.50615 : Sherrard, IL +61282 : 41.501234 : -90.41404 : Silvis, IL +61283 : 41.605825 : -89.77628 : Tampico, IL +61284 : 41.406276 : -90.735 : Taylor Ridge, IL +61285 : 41.978758 : -90.09248 : Thomson, IL +61299 : 41.520333 : -90.541585 : Rock Island, IL +61301 : 41.347117 : -89.08974 : La Salle, IL +61310 : 41.707588 : -89.34371 : Amboy, IL +61311 : 41.042878 : -88.86268 : Ancona, IL +61312 : 41.435197 : -89.23432 : Arlington, IL +61313 : 41.064946 : -88.66836 : Blackstone, IL +61314 : 41.310471 : -89.67662 : Buda, IL +61315 : 41.289819 : -89.37069 : Bureau, IL +61316 : 41.261853 : -89.12523 : Cedar Point, IL +61317 : 41.4276 : -89.21243 : Cherry, IL +61318 : 41.710715 : -89.07807 : Compton, IL +61319 : 41.011259 : -88.74854 : Cornell, IL +61320 : 41.350864 : -89.17366 : Dalzell, IL +61321 : 40.963663 : -88.97932 : Dana, IL +61322 : 41.321814 : -89.3086 : Depue, IL +61323 : 41.435327 : -89.39583 : Dover, IL +61324 : 41.770952 : -89.41267 : Eldena, IL +61325 : 41.234167 : -88.82807 : Grand Ridge, IL +61326 : 41.264159 : -89.23655 : Granville, IL +61327 : 41.252101 : -89.32451 : Hennepin, IL +61328 : 41.504603 : -89.46289 : Kasbeer, IL +61329 : 41.380259 : -89.21239 : Ladd, IL +61330 : 41.53364 : -89.27691 : La Moille, IL +61331 : 41.747471 : -89.27713 : Lee Center, IL +61332 : 41.190024 : -88.98238 : Leonore, IL +61333 : 40.990965 : -88.88278 : Long Point, IL +61334 : 41.144329 : -89.08815 : Lostant, IL +61335 : 41.168946 : -89.2205 : McNabb, IL +61336 : 41.111077 : -89.21207 : Magnolia, IL +61337 : 41.427282 : -89.36622 : Malden, IL +61338 : 41.4547 : -89.66966 : Manlius, IL +61340 : 41.265597 : -89.25106 : Mark, IL +61341 : 41.336202 : -88.69727 : Marseilles, IL +61342 : 41.543149 : -89.10696 : Mendota, IL +61344 : 41.394429 : -89.84111 : Mineral, IL +61345 : 41.280262 : -89.79442 : Neponset, IL +61346 : 41.513879 : -89.71842 : New Bedford, IL +61348 : 41.292401 : -89.05943 : Oglesby, IL +61349 : 41.543342 : -89.44078 : Ohio, IL +61350 : 41.35263 : -88.84734 : Ottawa, IL +61353 : 41.690735 : -88.98815 : Paw Paw, IL +61354 : 41.330789 : -89.1299 : Peru, IL +61356 : 41.372528 : -89.44315 : Princeton, IL +61358 : 40.986256 : -89.04364 : Rutland, IL +61359 : 41.363772 : -89.26975 : Seatonville, IL +61360 : 41.320345 : -88.61017 : Seneca, IL +61361 : 41.400837 : -89.74444 : Sheffield, IL +61362 : 41.332908 : -89.20847 : Spring Valley, IL +61363 : 41.25645 : -89.17901 : Standard, IL +61364 : 41.129482 : -88.83666 : Streator, IL +61367 : 41.638122 : -89.26889 : Sublette, IL +61368 : 41.279825 : -89.50492 : Tiskilwa, IL +61369 : 40.992084 : -89.15231 : Toluca, IL +61370 : 41.21076 : -89.03886 : Tonica, IL +61371 : 41.499089 : -89.021881 : Triumph, IL +61372 : 41.466102 : -89.07794 : Troy Grove, IL +61373 : 41.37061 : -89.0149 : Utica, IL +61374 : 41.543813 : -89.35449 : Van Orin, IL +61375 : 41.037822 : -89.25682 : Varna, IL +61376 : 41.546706 : -89.60081 : Walnut, IL +61377 : 41.057649 : -89.04788 : Wenona, IL +61378 : 41.722744 : -89.15601 : West Brooklyn, IL +61379 : 41.369056 : -89.60321 : Wyanet, IL +61401 : 40.948073 : -90.36871 : Galesburg, IL +61402 : 40.932207 : -90.214412 : Galesburg, IL +61410 : 40.802633 : -90.39766 : Abingdon, IL +61411 : 40.401282 : -90.50153 : Adair, IL +61412 : 41.067549 : -90.57994 : Alexis, IL +61413 : 41.189123 : -90.36813 : Alpha, IL +61414 : 41.117342 : -90.16063 : Altona, IL +61415 : 40.661165 : -90.43908 : Avon, IL +61416 : 40.496817 : -90.56334 : Bardolph, IL +61417 : 40.781504 : -90.52901 : Berwick, IL +61418 : 40.854865 : -90.85925 : Biggsville, IL +61419 : 41.200711 : -90.11832 : Bishop Hill, IL +61420 : 40.555678 : -90.87087 : Blandinsville, IL +61421 : 41.174037 : -89.65849 : Bradford, IL +61422 : 40.550883 : -90.51766 : Bushnell, IL +61423 : 40.889288 : -90.50529 : Cameron, IL +61424 : 41.073398 : -89.63015 : Camp Grove, IL +61425 : 40.778519 : -91.05902 : Carman, IL +61426 : 41.118359 : -89.70575 : Castleton, IL +61427 : 40.499297 : -90.17764 : Cuba, IL +61428 : 40.952695 : -90.12141 : Dahinda, IL +61430 : 40.94399 : -90.31205 : East Galesburg, IL +61431 : 40.617275 : -90.29556 : Ellisville, IL +61432 : 40.642927 : -90.17174 : Fairview, IL +61433 : 40.449305 : -90.161761 : Fiatt, IL +61434 : 41.172197 : -90.03901 : Galva, IL +61435 : 40.972589 : -90.54835 : Gerlaw, IL +61436 : 40.859964 : -90.22212 : Gilson, IL +61437 : 40.854247 : -90.96542 : Gladstone, IL +61438 : 40.579737 : -90.64691 : Good Hope, IL +61439 : 41.02572 : -90.35566 : Henderson, IL +61440 : 40.324365 : -90.60351 : Industry, IL +61441 : 40.337555 : -90.30458 : Ipava, IL +61442 : 41.092081 : -90.92743 : Keithsburg, IL +61443 : 41.247536 : -89.92848 : Kewanee, IL +61447 : 40.867285 : -90.75759 : Kirkwood, IL +61448 : 40.910079 : -90.27171 : Knoxville, IL +61449 : 41.098764 : -89.97361 : La Fayette, IL +61450 : 40.567399 : -90.97066 : La Harpe, IL +61451 : 40.953365 : -89.94259 : Laura, IL +61452 : 40.249363 : -90.66845 : Littleton, IL +61453 : 41.010666 : -90.75393 : Little York, IL +61454 : 40.685436 : -91.05207 : Lomax, IL +61455 : 40.456986 : -90.6681 : Macomb, IL +61457 : 40.553989 : -90.355505 : Lee, IL +61458 : 40.776079 : -90.1938 : Maquon, IL +61459 : 40.503305 : -90.41808 : Marietta, IL +61460 : 40.734056 : -90.82654 : Media, IL +61462 : 40.918849 : -90.64466 : Monmouth, IL +61465 : 41.200936 : -90.45631 : New Windsor, IL +61466 : 41.100353 : -90.46726 : North Henderson, IL +61467 : 41.069414 : -90.24177 : Oneida, IL +61468 : 41.254936 : -90.40384 : Opheim, IL +61469 : 40.957929 : -90.93608 : Oquawka, IL +61470 : 40.614899 : -90.47345 : Prairie City, IL +61471 : 40.696535 : -90.82607 : Raritan, IL +61472 : 41.105401 : -90.38717 : Rio, IL +61473 : 40.70595 : -90.65724 : Roseville, IL +61474 : 40.740729 : -90.37946 : Saint Augustine, IL +61475 : 40.581413 : -90.7612 : Sciota, IL +61476 : 41.095037 : -90.80998 : Seaton, IL +61477 : 40.500643 : -90.31576 : Smithfield, IL +61478 : 40.777241 : -90.76454 : Smithshire, IL +61479 : 40.999497 : -89.65429 : Speer, IL +61480 : 40.727428 : -90.91347 : Stronghurst, IL +61482 : 40.368358 : -90.42469 : Table Grove, IL +61483 : 41.09638 : -89.86649 : Toulon, IL +61484 : 40.292388 : -90.42833 : Vermont, IL +61485 : 41.025484 : -90.08422 : Victoria, IL +61486 : 41.195087 : -90.57923 : Viola, IL +61488 : 41.030951 : -90.29705 : Wataga, IL +61489 : 40.929497 : -90.01888 : Williamsfield, IL +61490 : 41.183299 : -90.27637 : Woodhull, IL +61491 : 41.068691 : -89.76033 : Wyoming, IL +61501 : 40.234249 : -90.32941 : Astoria, IL +61516 : 40.850381 : -89.11878 : Benson, IL +61517 : 40.816162 : -89.84131 : Brimfield, IL +61518 : 40.744179 : -89.718401 : Brimfield, IL +61519 : 40.466397 : -90.09632 : Bryant, IL +61520 : 40.552853 : -90.02794 : Canton, IL +61523 : 40.914377 : -89.50654 : Chillicothe, IL +61524 : 40.490965 : -90.03285 : Dunfermline, IL +61525 : 40.849036 : -89.65554 : Dunlap, IL +61526 : 40.936244 : -89.62 : Edelstein, IL +61528 : 40.776845 : -89.7401 : Edwards, IL +61529 : 40.780415 : -89.95565 : Elmwood, IL +61530 : 40.718228 : -89.27153 : Eureka, IL +61531 : 40.68847 : -90.02166 : Farmington, IL +61532 : 40.35756 : -89.82389 : Forest City, IL +61533 : 40.577778 : -89.8297 : Glasford, IL +61534 : 40.40943 : -89.65687 : Green Valley, IL +61535 : 40.590353 : -89.54053 : Groveland, IL +61536 : 40.690205 : -89.78042 : Hanna City, IL +61537 : 41.113829 : -89.38486 : Henry, IL +61539 : 40.558329 : -89.76891 : Kingston Mines, IL +61540 : 41.030697 : -89.38586 : Lacon, IL +61541 : 40.975736 : -89.23943 : La Rose, IL +61542 : 40.39309 : -90.13748 : Lewistown, IL +61543 : 40.392048 : -89.99885 : Liverpool, IL +61544 : 40.688615 : -90.24422 : London Mills, IL +61545 : 40.873236 : -89.37082 : Lowpoint, IL +61546 : 40.442037 : -89.78797 : Manito, IL +61547 : 40.619174 : -89.72628 : Mapleton, IL +61548 : 40.784412 : -89.40841 : Metamora, IL +61550 : 40.613788 : -89.46031 : Morton, IL +61552 : 40.817587 : -89.56654 : Mossville, IL +61553 : 40.449305 : -90.161761 : Norris, IL +61554 : 40.567088 : -89.63382 : Pekin, IL +61555 : 40.56071 : -89.650232 : Pekin, IL +61558 : 40.554538 : -89.609951 : Pekin, IL +61559 : 40.935608 : -89.76802 : Princeville, IL +61560 : 41.198061 : -89.43131 : Putnam, IL +61561 : 40.795911 : -89.19419 : Roanoke, IL +61562 : 40.874269 : -89.506695 : Rome, IL +61563 : 40.489747 : -90.05501 : Saint David, IL +61564 : 40.49271 : -89.65194 : South Pekin, IL +61565 : 41.036199 : -89.48336 : Sparland, IL +61567 : 40.340202 : -89.90929 : Topeka, IL +61568 : 40.513656 : -89.47408 : Tremont, IL +61569 : 40.691022 : -89.89138 : Trivoli, IL +61570 : 40.920631 : -89.29547 : Washburn, IL +61571 : 40.701037 : -89.44294 : Washington, IL +61572 : 40.796752 : -90.02866 : Yates City, IL +61576 : 40.928331 : -89.348163 : Richland, IL +61584 : 40.288318 : -90.429294 : Vermont, IL +61593 : 39.809913 : -88.343237 : Garrett, IL +61601 : 40.693137 : -89.589847 : Peoria, IL +61602 : 40.677987 : -89.60864 : Peoria, IL +61603 : 40.712887 : -89.57904 : Peoria, IL +61604 : 40.709237 : -89.63633 : Peoria, IL +61605 : 40.678037 : -89.62737 : Peoria, IL +61606 : 40.699137 : -89.60972 : Peoria, IL +61607 : 40.642049 : -89.67147 : Peoria, IL +61610 : 40.643846 : -89.59908 : Creve Coeur, IL +61611 : 40.683387 : -89.54493 : East Peoria, IL +61612 : 40.744179 : -89.718401 : Peoria, IL +61613 : 40.742537 : -89.627948 : Peoria, IL +61614 : 40.755343 : -89.59799 : Peoria, IL +61615 : 40.764368 : -89.6448 : Peoria, IL +61616 : 40.743266 : -89.576628 : Peoria, IL +61625 : 40.696287 : -89.616648 : Peoria, IL +61628 : 40.744179 : -89.718401 : Peoria, IL +61629 : 40.692037 : -89.588747 : Peoria, IL +61630 : 40.744179 : -89.718401 : Peoria, IL +61632 : 40.765301 : -89.569207 : Peoria, IL +61633 : 40.731165 : -89.603081 : Peoria, IL +61634 : 40.689637 : -89.592597 : Peoria, IL +61635 : 40.744179 : -89.718401 : Peoria, IL +61636 : 40.699937 : -89.595147 : Peoria, IL +61637 : 40.702487 : -89.589797 : Peoria, IL +61638 : 40.796887 : -89.611146 : Peoria, IL +61639 : 40.709837 : -89.563646 : Peoria, IL +61640 : 40.785653 : -89.617657 : Peoria, IL +61641 : 40.640002 : -89.651987 : Peoria, IL +61643 : 40.744179 : -89.718401 : Peoria, IL +61644 : 40.765301 : -89.569207 : Peoria, IL +61650 : 40.744179 : -89.718401 : Peoria, IL +61651 : 40.744179 : -89.718401 : Peoria, IL +61652 : 40.87671 : -89.509113 : Peoria, IL +61653 : 40.744179 : -89.718401 : Peoria, IL +61654 : 40.744179 : -89.718401 : Peoria, IL +61655 : 40.744179 : -89.718401 : Peoria, IL +61656 : 40.744179 : -89.718401 : Peoria, IL +61675 : 40.582108 : -89.128871 : Carlock, IL +61701 : 40.477286 : -88.99592 : Bloomington, IL +61702 : 40.519236 : -88.864303 : Bloomington, IL +61704 : 40.459584 : -88.96939 : Bloomington, IL +61709 : 40.461431 : -88.953015 : Bloomington, IL +61710 : 40.477735 : -88.954174 : Bloomington, IL +61720 : 40.553838 : -88.5101 : Anchor, IL +61721 : 40.341123 : -89.32028 : Armington, IL +61722 : 40.434885 : -88.62237 : Arrowsmith, IL +61723 : 40.256893 : -89.25013 : Atlanta, IL +61724 : 40.336763 : -88.52604 : Bellflower, IL +61725 : 40.600045 : -89.13627 : Carlock, IL +61726 : 40.740106 : -88.70948 : Chenoa, IL +61727 : 40.145501 : -88.96776 : Clinton, IL +61728 : 40.56944 : -88.62727 : Colfax, IL +61729 : 40.619306 : -89.22353 : Congerville, IL +61730 : 40.537652 : -88.73274 : Cooksville, IL +61731 : 40.607615 : -88.49 : Cropsey, IL +61732 : 40.528515 : -89.19057 : Danvers, IL +61733 : 40.615875 : -89.32778 : Deer Creek, IL +61734 : 40.369256 : -89.54251 : Delavan, IL +61735 : 40.193547 : -88.79575 : Dewitt, IL +61736 : 40.395487 : -88.8498 : Downs, IL +61737 : 40.450325 : -88.72052 : Ellsworth, IL +61738 : 40.731662 : -89.03978 : El Paso, IL +61739 : 40.741158 : -88.51546 : Fairbury, IL +61740 : 40.882858 : -88.85739 : Flanagan, IL +61741 : 40.756972 : -88.40479 : Forrest, IL +61742 : 40.628105 : -89.28004 : Goodfield, IL +61743 : 40.877451 : -88.7778 : Graymont, IL +61744 : 40.740729 : -88.88791 : Gridley, IL +61745 : 40.32122 : -88.97442 : Heyworth, IL +61747 : 40.422027 : -89.42614 : Hopedale, IL +61748 : 40.627948 : -88.97711 : Hudson, IL +61749 : 40.091729 : -89.10358 : Kenney, IL +61750 : 40.122884 : -88.85664 : Lane, IL +61751 : 40.21927 : -89.285172 : Lawndale, IL +61752 : 40.345004 : -88.75786 : Le Roy, IL +61753 : 40.63872 : -88.7923 : Lexington, IL +61754 : 40.321811 : -89.15864 : McLean, IL +61755 : 40.533634 : -89.34345 : Mackinaw, IL +61756 : 40.027071 : -88.96715 : Maroa, IL +61758 : 40.52835 : -88.84075 : Merna, IL +61759 : 40.431577 : -89.32013 : Minier, IL +61760 : 40.893593 : -89.03266 : Minonk, IL +61761 : 40.515485 : -88.98629 : Normal, IL +61764 : 40.884053 : -88.63376 : Pontiac, IL +61766 : 40.564323 : -88.898663 : Towanda, IL +61769 : 40.885397 : -88.39957 : Saunemin, IL +61770 : 40.430727 : -88.52548 : Saybrook, IL +61771 : 40.738973 : -89.13579 : Secor, IL +61772 : 40.399689 : -89.06088 : Shirley, IL +61773 : 40.584937 : -88.38028 : Sibley, IL +61774 : 40.426186 : -89.2107 : Stanford, IL +61775 : 40.653799 : -88.39026 : Strawn, IL +61776 : 40.574936 : -88.88696 : Towanda, IL +61777 : 40.240627 : -88.96635 : Wapella, IL +61778 : 40.242378 : -89.1087 : Waynesville, IL +61790 : 40.51032 : -88.99803 : Normal, IL +61791 : 40.519236 : -88.864303 : Bloomington, IL +61799 : 40.488468 : -88.939637 : Bloomington, IL +61801 : 40.109647 : -88.21246 : Urbana, IL +61802 : 40.121648 : -88.17649 : Urbana, IL +61803 : 40.10593 : -88.224669 : Urbana, IL +61810 : 39.909736 : -87.93384 : Allerton, IL +61811 : 40.293159 : -87.61401 : Alvin, IL +61812 : 40.27363 : -87.88919 : Armstrong, IL +61813 : 39.918042 : -88.56139 : Bement, IL +61814 : 40.231345 : -87.58163 : Bismarck, IL +61815 : 40.112616 : -88.3708 : Bondville, IL +61816 : 39.91613 : -88.00203 : Broadlands, IL +61817 : 40.059068 : -87.70376 : Catlin, IL +61818 : 39.889596 : -88.72633 : Cerro Gordo, IL +61819 : 40.466273 : -90.095368 : Bryant, IL +61820 : 40.114931 : -88.24322 : Champaign, IL +61821 : 40.108631 : -88.2733 : Champaign, IL +61822 : 40.126854 : -88.29315 : Champaign, IL +61824 : 40.139946 : -88.196102 : Champaign, IL +61825 : 40.139946 : -88.196102 : Champaign, IL +61826 : 40.113139 : -88.361251 : Champaign, IL +61830 : 40.020978 : -88.72247 : Cisco, IL +61831 : 40.2159 : -87.78418 : Collison, IL +61832 : 40.133786 : -87.62898 : Danville, IL +61833 : 40.096186 : -87.64569 : Tilton, IL +61834 : 40.175463 : -87.6124 : Danville, IL +61839 : 40.139336 : -88.62966 : De Land, IL +61840 : 40.310244 : -88.30526 : Dewey, IL +61841 : 40.039632 : -87.83052 : Fairmount, IL +61842 : 40.251945 : -88.65279 : Farmer City, IL +61843 : 40.313921 : -88.3742 : Fisher, IL +61844 : 40.126299 : -87.86871 : Fithian, IL +61845 : 40.376141 : -88.4135 : Foosland, IL +61846 : 39.97412 : -87.63138 : Georgetown, IL +61847 : 40.310063 : -88.01922 : Gifford, IL +61848 : 40.306282 : -87.70192 : Henning, IL +61849 : 40.028716 : -87.9576 : Homer, IL +61850 : 39.92804 : -87.73629 : Indianola, IL +61851 : 39.950391 : -88.43939 : Ivesdale, IL +61852 : 39.901988 : -88.07537 : Longview, IL +61853 : 40.205916 : -88.40295 : Mahomet, IL +61854 : 40.213607 : -88.5296 : Mansfield, IL +61855 : 39.919693 : -88.67859 : Milmine, IL +61856 : 40.0334 : -88.57375 : Monticello, IL +61857 : 40.11594 : -87.84208 : Muncie, IL +61858 : 40.121098 : -87.74657 : Oakwood, IL +61859 : 40.149486 : -87.96347 : Ogden, IL +61862 : 40.296282 : -87.95553 : Penfield, IL +61863 : 39.907919 : -88.27977 : Pesotum, IL +61864 : 39.989282 : -88.15174 : Philo, IL +61865 : 40.306774 : -87.80716 : Potomac, IL +61866 : 40.307065 : -88.15575 : Rantoul, IL +61870 : 39.90241 : -87.62722 : Ridge Farm, IL +61871 : 40.192015 : -87.97138 : Royal, IL +61872 : 39.945328 : -88.36389 : Sadorus, IL +61873 : 40.124202 : -88.03401 : Saint Joseph, IL +61874 : 40.061694 : -88.25023 : Savoy, IL +61875 : 40.107548 : -88.42487 : Seymour, IL +61876 : 39.907331 : -87.82587 : Sidell, IL +61877 : 40.004053 : -88.07693 : Sidney, IL +61878 : 40.243692 : -88.17296 : Thomasboro, IL +61880 : 39.981936 : -88.2532 : Tolono, IL +61882 : 40.119483 : -88.75367 : Weldon, IL +61883 : 40.040115 : -87.63685 : Westville, IL +61884 : 40.10311 : -88.49744 : White Heath, IL +61901 : 40.810131 : -88.477739 : Bloomington, IL +61910 : 39.676634 : -88.30284 : Arcola, IL +61911 : 39.704391 : -88.45985 : Arthur, IL +61912 : 39.529566 : -88.03349 : Ashmore, IL +61913 : 39.809929 : -88.45309 : Atwood, IL +61914 : 39.639487 : -88.74383 : Bethany, IL +61917 : 39.706131 : -87.91691 : Brocton, IL +61919 : 39.783794 : -88.13861 : Camargo, IL +61920 : 39.496547 : -88.17348 : Charleston, IL +61924 : 39.786334 : -87.66325 : Chrisman, IL +61925 : 39.719012 : -88.82227 : Dalton City, IL +61928 : 39.45274 : -88.5144 : Gays, IL +61929 : 39.806718 : -88.6087 : Hammond, IL +61930 : 39.685822 : -88.11971 : Hindsboro, IL +61931 : 39.59477 : -88.34792 : Humboldt, IL +61932 : 39.797661 : -87.87017 : Hume, IL +61933 : 39.556054 : -87.92289 : Kansas, IL +61936 : 39.800512 : -88.71835 : La Place, IL +61937 : 39.724744 : -88.62995 : Lovington, IL +61938 : 39.474889 : -88.37421 : Mattoon, IL +61940 : 39.805101 : -87.81014 : Metcalf, IL +61941 : 39.801562 : -88.07823 : Murdock, IL +61942 : 39.802798 : -87.99744 : Newman, IL +61943 : 39.655063 : -88.01806 : Oakland, IL +61944 : 39.608494 : -87.69958 : Paris, IL +61949 : 39.646359 : -87.86014 : Redmon, IL +61951 : 39.582494 : -88.6021 : Sullivan, IL +61953 : 39.793493 : -88.29184 : Tuscola, IL +61955 : 39.679882 : -87.750216 : Vermilion, IL +61956 : 39.858506 : -88.15018 : Villa Grove, IL +61957 : 39.434148 : -88.60033 : Windsor, IL +62001 : 38.884434 : -89.74886 : Alhambra, IL +62002 : 38.906065 : -90.15909 : Alton, IL +62003 : 39.177478 : -90.142329 : Medora, IL +62006 : 39.079147 : -90.67372 : Batchtown, IL +62009 : 39.092526 : -89.8029 : Benld, IL +62010 : 38.912297 : -90.043 : Bethalto, IL +62011 : 39.11204 : -89.2134 : Bingham, IL +62012 : 39.038752 : -90.13819 : Brighton, IL +62013 : 38.968323 : -90.58121 : Brussels, IL +62014 : 39.039382 : -89.94935 : Bunker Hill, IL +62015 : 39.212833 : -89.55969 : Butler, IL +62016 : 39.301561 : -90.41674 : Carrollton, IL +62017 : 39.081889 : -89.37787 : Coffeen, IL +62018 : 38.905998 : -90.08306 : Cottage Hills, IL +62019 : 39.017877 : -89.46415 : Donnellson, IL +62021 : 38.976011 : -89.97461 : Dorsey, IL +62022 : 38.997296 : -90.3405 : Dow, IL +62023 : 39.110422 : -89.78428 : Eagarville, IL +62024 : 38.868136 : -90.08023 : East Alton, IL +62025 : 38.819297 : -89.9551 : Edwardsville, IL +62026 : 38.733748 : -89.94305 : Edwardsville, IL +62027 : 39.241734 : -90.54614 : Eldred, IL +62028 : 38.958848 : -90.35383 : Elsah, IL +62030 : 39.155608 : -90.1649 : Fidelity, IL +62031 : 39.103735 : -90.54252 : Fieldon, IL +62032 : 39.114972 : -89.28092 : Fillmore, IL +62033 : 39.127717 : -89.8288 : Gillespie, IL +62034 : 38.75592 : -89.97442 : Glen Carbon, IL +62035 : 38.947841 : -90.2216 : Godfrey, IL +62036 : 38.91384 : -90.57421 : Golden Eagle, IL +62037 : 38.985138 : -90.44563 : Grafton, IL +62040 : 38.720938 : -90.11431 : Granite City, IL +62043 : 39.213822 : -89.82872 : Brushy Mound, IL +62044 : 39.362285 : -90.22147 : Greenfield, IL +62045 : 39.236358 : -90.71359 : Hamburg, IL +62046 : 38.889879 : -89.84638 : Hamel, IL +62047 : 39.128014 : -90.6159 : Hardin, IL +62048 : 38.833898 : -90.09533 : Hartford, IL +62049 : 39.146809 : -89.48442 : Hillsboro, IL +62050 : 39.430595 : -90.54502 : Hillview, IL +62051 : 39.205747 : -89.40909 : Irving, IL +62052 : 39.114762 : -90.32442 : Jerseyville, IL +62053 : 39.322422 : -90.64246 : Kampsville, IL +62054 : 39.192501 : -90.34541 : Kane, IL +62056 : 39.179875 : -89.65721 : Litchfield, IL +62058 : 38.967324 : -89.76133 : Livingston, IL +62059 : 38.6565 : -90.16643 : Lovejoy, IL +62060 : 38.6807 : -90.15411 : Madison, IL +62061 : 38.78956 : -89.77538 : Marine, IL +62062 : 38.726548 : -89.9572 : Maryville, IL +62063 : 39.188838 : -90.14654 : Medora, IL +62065 : 39.235652 : -90.62842 : Michael, IL +62067 : 38.91973 : -90.01241 : Moro, IL +62069 : 39.077557 : -89.73423 : Mount Olive, IL +62070 : 39.328077 : -90.76896 : Mozier, IL +62071 : 38.6516 : -90.163909 : National Stock Yards, IL +62074 : 38.964162 : -89.68226 : New Douglas, IL +62075 : 39.299771 : -89.2864 : Nokomis, IL +62076 : 39.261791 : -89.421584 : Ohlman, IL +62077 : 39.031623 : -89.5228 : Panama, IL +62078 : 39.477337 : -90.48002 : Patterson, IL +62079 : 39.115848 : -90.13336 : Piasa, IL +62080 : 39.136284 : -89.10348 : Ramsey, IL +62081 : 39.261499 : -90.23039 : Rockbridge, IL +62082 : 39.481469 : -90.33999 : Roodhouse, IL +62083 : 39.354674 : -89.19993 : Rosamond, IL +62084 : 38.8494 : -90.08536 : Roxana, IL +62085 : 39.078047 : -89.80626 : Sawyerville, IL +62086 : 38.996375 : -89.57044 : Sorento, IL +62087 : 38.828347 : -90.05894 : South Roxana, IL +62088 : 39.011612 : -89.78855 : Staunton, IL +62089 : 39.130404 : -89.49298 : Taylor Springs, IL +62090 : 38.67065 : -90.17052 : Venice, IL +62091 : 39.053344 : -89.59324 : Walshville, IL +62092 : 39.433041 : -90.40655 : White Hall, IL +62093 : 39.068901 : -89.85425 : Wilsonville, IL +62094 : 39.249272 : -89.35236 : Witt, IL +62095 : 38.860447 : -90.09418 : Wood River, IL +62097 : 38.932347 : -89.84608 : Worden, IL +62098 : 39.376153 : -90.293302 : Wrights, IL +62201 : 38.62855 : -90.14609 : East Saint Louis, IL +62202 : 38.6163 : -90.159059 : East Saint Louis, IL +62203 : 38.598175 : -90.07575 : East Saint Louis, IL +62204 : 38.631383 : -90.10008 : East Saint Louis, IL +62205 : 38.6151 : -90.12675 : East Saint Louis, IL +62206 : 38.564451 : -90.1628 : East Saint Louis, IL +62207 : 38.59035 : -90.13276 : East Saint Louis, IL +62208 : 38.596199 : -90.00227 : Fairview Heights, IL +62214 : 38.377193 : -89.55998 : Addieville, IL +62215 : 38.517125 : -89.60258 : Albers, IL +62216 : 38.607817 : -89.60516 : Aviston, IL +62217 : 38.178395 : -89.84183 : Baldwin, IL +62218 : 38.535097 : -89.46426 : Bartelso, IL +62219 : 38.605187 : -89.43404 : Beckemeyer, IL +62220 : 38.50046 : -89.97654 : Belleville, IL +62221 : 38.532311 : -89.93996 : Belleville, IL +62222 : 38.439983 : -89.983521 : Belleville, IL +62223 : 38.55615 : -90.05078 : Belleville, IL +62224 : 38.439983 : -89.983521 : Mascoutah, IL +62225 : 38.544298 : -89.85054 : Scott Air Force Base, IL +62226 : 38.53895 : -90.00104 : Belleville, IL +62230 : 38.620018 : -89.5305 : Breese, IL +62231 : 38.623384 : -89.36368 : Carlyle, IL +62232 : 38.636749 : -90.01763 : Caseyville, IL +62233 : 37.921816 : -89.82842 : Chester, IL +62234 : 38.679282 : -89.99407 : Collinsville, IL +62236 : 38.442906 : -90.20775 : Columbia, IL +62237 : 38.188624 : -89.59789 : Coulterville, IL +62238 : 38.034281 : -89.54537 : Cutler, IL +62239 : 38.526792 : -90.19253 : Dupo, IL +62240 : 38.535325 : -90.21617 : East Carondelet, IL +62241 : 38.011729 : -89.89007 : Ellis Grove, IL +62242 : 38.092615 : -89.93485 : Evansville, IL +62243 : 38.425949 : -89.90389 : Freeburg, IL +62244 : 38.200113 : -90.2272 : Fults, IL +62245 : 38.554515 : -89.5631 : Germantown, IL +62246 : 38.889355 : -89.40987 : Greenville, IL +62247 : 38.977111 : -88.975507 : Hagarstown, IL +62248 : 38.299507 : -89.961825 : Hecker, IL +62249 : 38.752017 : -89.67478 : Highland, IL +62250 : 38.540238 : -89.26294 : Hoffman, IL +62252 : 38.601768 : -89.291549 : Huey, IL +62253 : 38.761214 : -89.29128 : Keyesport, IL +62254 : 38.601648 : -89.81317 : Lebanon, IL +62255 : 38.303147 : -89.79161 : Lenzburg, IL +62256 : 38.30426 : -90.135645 : Maeystown, IL +62257 : 38.260108 : -89.73627 : Marissa, IL +62258 : 38.481674 : -89.79432 : Mascoutah, IL +62259 : 38.013132 : -89.899569 : Menard, IL +62260 : 38.463718 : -90.09831 : Millstadt, IL +62261 : 37.988745 : -90.00785 : Modoc, IL +62262 : 38.931719 : -89.27132 : Mulberry Grove, IL +62263 : 38.346578 : -89.38453 : Nashville, IL +62264 : 38.318253 : -89.88852 : New Athens, IL +62265 : 38.520285 : -89.6807 : New Baden, IL +62266 : 38.478 : -89.67869 : New Memphis, IL +62268 : 38.271313 : -89.51773 : Oakdale, IL +62269 : 38.589849 : -89.91207 : O Fallon, IL +62270 : 38.227604 : -89.650381 : Dupo, IL +62271 : 38.439574 : -89.5286 : Okawville, IL +62272 : 38.006386 : -89.61645 : Percy, IL +62273 : 38.780229 : -89.5973 : Pierron, IL +62274 : 38.078231 : -89.38796 : Pinckneyville, IL +62275 : 38.812744 : -89.54888 : Pocahontas, IL +62277 : 38.095119 : -90.09885 : Prairie Du Rocher, IL +62278 : 38.214515 : -89.98785 : Red Bud, IL +62279 : 38.153322 : -90.13459 : Renault, IL +62280 : 37.845454 : -89.66878 : Rockwood, IL +62281 : 38.706847 : -89.77739 : Saint Jacob, IL +62282 : 38.363228 : -89.713921 : Saint Libory, IL +62283 : 38.647775 : -89.20166 : Shattuc, IL +62284 : 38.887748 : -89.32248 : Smithboro, IL +62285 : 38.399148 : -89.99604 : Smithton, IL +62286 : 38.122112 : -89.71168 : Sparta, IL +62288 : 38.002188 : -89.66723 : Steeleville, IL +62289 : 38.596948 : -89.75117 : Summerfield, IL +62292 : 38.214035 : -89.68346 : Tilden, IL +62293 : 38.611798 : -89.67691 : Trenton, IL +62294 : 38.725498 : -89.88891 : Troy, IL +62295 : 38.299904 : -90.30833 : Valmeyer, IL +62297 : 38.049616 : -89.80775 : Walsh, IL +62298 : 38.325969 : -90.14606 : Waterloo, IL +62301 : 39.929597 : -91.37415 : Quincy, IL +62305 : 39.96008 : -91.302633 : Quincy, IL +62306 : 39.97863 : -91.21256 : Quincy, IL +62310 : 40.416145 : -91.205805 : Adrian, IL +62311 : 40.223837 : -90.93288 : Augusta, IL +62312 : 39.704649 : -91.0368 : Barry, IL +62313 : 40.319528 : -91.20483 : Basco, IL +62314 : 39.756139 : -90.89509 : Baylis, IL +62316 : 40.232385 : -91.05746 : Bowen, IL +62318 : 40.513153 : -91.12851 : Burnside, IL +62319 : 40.147818 : -90.74246 : Camden, IL +62320 : 40.020397 : -91.07407 : Camp Point, IL +62321 : 40.414128 : -91.11577 : Carthage, IL +62323 : 39.817702 : -90.66923 : Chambersburg, IL +62324 : 39.988988 : -90.94976 : Clayton, IL +62325 : 40.034398 : -91.16278 : Coatsburg, IL +62326 : 40.421857 : -90.80333 : Colchester, IL +62329 : 40.571353 : -91.168221 : Colusa, IL +62330 : 40.630407 : -91.15278 : Dallas City, IL +62334 : 40.396983 : -91.25029 : Elvaston, IL +62336 : 40.467994 : -91.17125 : Ferris, IL +62338 : 39.98152 : -91.25754 : Fowler, IL +62339 : 40.112726 : -91.02632 : Golden, IL +62340 : 39.71345 : -90.72045 : Griggsville, IL +62341 : 40.402015 : -91.33182 : Hamilton, IL +62343 : 39.709855 : -91.22914 : Hull, IL +62344 : 40.18275 : -90.81819 : Huntsville, IL +62345 : 39.700245 : -91.14564 : Kinderhook, IL +62346 : 40.151799 : -90.95426 : La Prairie, IL +62347 : 39.876235 : -91.1106 : Liberty, IL +62348 : 40.180236 : -91.37791 : Lima, IL +62349 : 40.160393 : -91.20372 : Loraine, IL +62351 : 40.094396 : -91.26558 : Mendon, IL +62352 : 39.563599 : -90.64813 : Milton, IL +62353 : 39.983824 : -90.74134 : Mount Sterling, IL +62354 : 40.531825 : -91.36598 : Nauvoo, IL +62355 : 39.440654 : -90.77809 : Nebo, IL +62356 : 39.599949 : -91.09115 : New Canton, IL +62357 : 39.696523 : -90.84253 : New Salem, IL +62358 : 40.587769 : -91.26301 : Niota, IL +62359 : 40.028595 : -91.21286 : Paloma, IL +62360 : 39.813094 : -91.25561 : Payson, IL +62361 : 39.469982 : -90.63108 : Pearl, IL +62362 : 39.781349 : -90.74617 : Perry, IL +62363 : 39.606349 : -90.78642 : Pittsfield, IL +62365 : 39.795818 : -91.16751 : Plainville, IL +62366 : 39.450931 : -90.87779 : Pleasant Hill, IL +62367 : 40.304799 : -90.88699 : Plymouth, IL +62370 : 39.510835 : -90.99193 : Rockport, IL +62373 : 40.240004 : -91.35197 : Sutter, IL +62374 : 40.403553 : -90.8834 : Tennessee, IL +62375 : 39.983573 : -90.8842 : Timewell, IL +62376 : 40.09625 : -91.38474 : Ursa, IL +62378 : 39.884796 : -90.6289 : Versailles, IL +62379 : 40.314446 : -91.40638 : Warsaw, IL +62380 : 40.233504 : -91.19727 : West Point, IL +62394 : 37.726738 : -88.372434 : Equality, IL +62401 : 39.123807 : -88.56 : Effingham, IL +62407 : 39.148234 : -88.593764 : Summit, IL +62410 : 38.528202 : -87.72913 : Allendale, IL +62411 : 39.062913 : -88.73912 : Altamont, IL +62413 : 39.138761 : -87.83769 : Annapolis, IL +62414 : 39.167788 : -88.8255 : Beecher City, IL +62415 : 38.710336 : -87.703639 : Birds, IL +62417 : 38.720425 : -87.76815 : Bridgeport, IL +62418 : 39.018987 : -88.96134 : Brownstown, IL +62419 : 38.625864 : -87.99407 : Calhoun, IL +62420 : 39.299447 : -87.99863 : Casey, IL +62421 : 38.755492 : -87.95334 : Claremont, IL +62422 : 39.251624 : -88.86505 : Cowden, IL +62423 : 39.452478 : -87.57092 : Dennison, IL +62424 : 39.01077 : -88.428 : Dieterich, IL +62425 : 38.830182 : -88.09218 : Dundas, IL +62426 : 38.913064 : -88.66404 : Edgewood, IL +62427 : 38.869453 : -87.66502 : Flat Rock, IL +62428 : 39.25287 : -88.13528 : Greenup, IL +62431 : 39.228594 : -88.98873 : Herrick, IL +62432 : 39.139262 : -88.14862 : Hidalgo, IL +62433 : 39.113033 : -87.67563 : Hutsonville, IL +62434 : 38.835884 : -88.33505 : Ingraham, IL +62435 : 39.374287 : -88.244487 : Janesville, IL +62436 : 39.190088 : -88.2601 : Jewett, IL +62438 : 39.317235 : -88.87876 : Lakewood, IL +62439 : 38.738226 : -87.65984 : Lawrenceville, IL +62440 : 39.393267 : -88.28118 : Lerna, IL +62441 : 39.396463 : -87.69589 : Marshall, IL +62442 : 39.32463 : -87.86922 : Martinsville, IL +62443 : 38.95232 : -88.62883 : Mason, IL +62444 : 39.272317 : -88.75932 : Mode, IL +62445 : 39.183055 : -88.3404 : Montrose, IL +62446 : 38.48679 : -88.21636 : Mount Erie, IL +62447 : 39.32205 : -88.45037 : Neoga, IL +62448 : 38.974018 : -88.17881 : Newton, IL +62449 : 39.006483 : -87.90005 : Oblong, IL +62450 : 38.72456 : -88.08658 : Olney, IL +62451 : 39.006924 : -87.6117 : Palestine, IL +62452 : 38.588301 : -88.03692 : Parkersburg, IL +62454 : 39.004728 : -87.7495 : Robinson, IL +62458 : 39.042992 : -88.87463 : Saint Elmo, IL +62459 : 38.93148 : -88.0252 : Sainte Marie, IL +62460 : 38.596277 : -87.65542 : Saint Francisville, IL +62461 : 39.194021 : -88.6656 : Shumway, IL +62462 : 39.223922 : -88.47715 : Sigel, IL +62463 : 39.2807 : -88.62403 : Stewardson, IL +62464 : 38.98981 : -87.839627 : Stoy, IL +62465 : 39.354837 : -88.63491 : Strasburg, IL +62466 : 38.732726 : -87.85152 : Sumner, IL +62467 : 39.125573 : -88.45609 : Teutopolis, IL +62468 : 39.273828 : -88.25646 : Toledo, IL +62469 : 39.35239 : -88.33275 : Trilla, IL +62471 : 38.961799 : -89.10978 : Vandalia, IL +62473 : 39.012089 : -88.56383 : Watson, IL +62474 : 39.4505 : -87.99681 : Westfield, IL +62475 : 38.868463 : -88.05466 : West Liberty, IL +62476 : 38.527107 : -88.00583 : West Salem, IL +62477 : 39.229885 : -87.6664 : West Union, IL +62478 : 39.175832 : -87.72312 : West York, IL +62479 : 39.038732 : -88.31569 : Wheeler, IL +62480 : 38.994595 : -88.00464 : Willow Hill, IL +62481 : 39.122158 : -88.01982 : Yale, IL +62501 : 39.984292 : -88.81584 : Argenta, IL +62510 : 39.530502 : -89.03829 : Assumption, IL +62511 : 39.346468 : -89.73278 : Atwater, IL +62512 : 40.139482 : -89.2073 : Beason, IL +62513 : 39.716269 : -89.13269 : Blue Mound, IL +62514 : 39.759905 : -89.05465 : Boody, IL +62515 : 39.861289 : -89.37836 : Buffalo, IL +62517 : 39.591537 : -89.42755 : Bulpitt, IL +62518 : 40.05232 : -89.18832 : Chestnut, IL +62519 : 39.936817 : -89.40159 : Cornland, IL +62520 : 39.824457 : -89.45643 : Dawson, IL +62521 : 39.828586 : -88.92907 : Decatur, IL +62522 : 39.840482 : -89.00569 : Decatur, IL +62523 : 39.844086 : -88.95327 : Decatur, IL +62524 : 39.853981 : -88.981511 : Decatur, IL +62525 : 39.853981 : -88.981511 : Decatur, IL +62526 : 39.878041 : -88.95637 : Decatur, IL +62527 : 39.853981 : -88.981511 : Decatur, IL +62530 : 39.568077 : -89.65467 : Divernon, IL +62531 : 39.66363 : -89.39224 : Edinburg, IL +62532 : 39.777583 : -88.97972 : Elwin, IL +62533 : 39.442669 : -89.64068 : Farmersville, IL +62534 : 39.529092 : -88.7821 : Findlay, IL +62535 : 39.925806 : -88.95928 : Forsyth, IL +62536 : 39.642083 : -89.65936 : Glenarm, IL +62537 : 39.867151 : -89.11324 : Harristown, IL +62538 : 39.359529 : -89.52648 : Harvel, IL +62539 : 39.855984 : -89.2487 : Illiopolis, IL +62540 : 39.58755 : -89.41265 : Kincaid, IL +62541 : 39.969864 : -89.35051 : Lake Fork, IL +62543 : 39.965691 : -89.15936 : Latham, IL +62544 : 39.693983 : -88.98068 : Macon, IL +62545 : 39.77386 : -89.39012 : Mechanicsburg, IL +62546 : 39.430427 : -89.44719 : Morrisonville, IL +62547 : 39.771541 : -89.24331 : Mount Auburn, IL +62548 : 39.993254 : -89.29707 : Mount Pulaski, IL +62549 : 39.777116 : -88.87171 : Mt Zion, IL +62550 : 39.617542 : -89.00559 : Moweaqua, IL +62551 : 39.838505 : -89.15191 : Niantic, IL +62552 : 39.869841 : -88.81261 : Oakley, IL +62553 : 39.279357 : -89.10462 : Oconee, IL +62554 : 39.93706 : -88.86332 : Oreana, IL +62555 : 39.476356 : -89.21607 : Owaneco, IL +62556 : 39.465887 : -89.39095 : Palmer, IL +62557 : 39.3928 : -89.08194 : Pana, IL +62558 : 39.580159 : -89.54402 : Pawnee, IL +62560 : 39.312686 : -89.59541 : Raymond, IL +62561 : 39.85973 : -89.52972 : Riverton, IL +62563 : 39.71984 : -89.51229 : Rochester, IL +62565 : 39.409126 : -88.80153 : Shelbyville, IL +62567 : 39.638951 : -89.18982 : Stonington, IL +62568 : 39.548928 : -89.29692 : Taylorville, IL +62570 : 39.588585 : -89.44945 : Tovey, IL +62571 : 39.385344 : -88.95588 : Tower Hill, IL +62572 : 39.370091 : -89.67132 : Waggoner, IL +62573 : 39.940934 : -89.06707 : Warrensburg, IL +62601 : 39.754308 : -90.02786 : Alexander, IL +62605 : 40.300508 : -89.480688 : Emden, IL +62610 : 39.564501 : -90.43698 : Alsey, IL +62611 : 39.883346 : -90.39332 : Arenzville, IL +62612 : 39.891861 : -90.03125 : Ashland, IL +62613 : 39.982768 : -89.68326 : Athens, IL +62615 : 39.588902 : -89.75177 : Auburn, IL +62616 : 39.852164 : -90.143114 : Philadelphia, IL +62617 : 40.167991 : -90.16313 : Bath, IL +62618 : 40.005505 : -90.42314 : Beardstown, IL +62621 : 39.740558 : -90.53937 : Bluffs, IL +62622 : 39.979614 : -90.352444 : Bluff Springs, IL +62623 : 40.104623 : -89.96382 : Oakford, IL +62624 : 40.153557 : -90.35255 : Browning, IL +62625 : 39.909732 : -89.68831 : Cantrall, IL +62626 : 39.280289 : -89.8757 : Carlinville, IL +62627 : 40.051603 : -90.14057 : Chandlerville, IL +62628 : 39.770936 : -90.39307 : Chapin, IL +62629 : 39.676558 : -89.69902 : Chatham, IL +62630 : 39.260146 : -90.06937 : Chesterfield, IL +62631 : 39.817322 : -90.36618 : Concord, IL +62633 : 40.214759 : -89.87721 : Easton, IL +62634 : 40.02489 : -89.46592 : Elkhart, IL +62635 : 40.291512 : -89.47436 : Emden, IL +62638 : 39.609647 : -90.08116 : Franklin, IL +62639 : 40.04195 : -90.46831 : Frederick, IL +62640 : 39.436584 : -89.8028 : Girard, IL +62642 : 40.087711 : -89.72066 : Greenview, IL +62643 : 40.247835 : -89.44123 : Hartsburg, IL +62644 : 40.296415 : -90.05163 : Havana, IL +62648 : 37.803216 : -89.058643 : Herrin, IL +62649 : 39.348487 : -90.08365 : Hettick, IL +62650 : 39.730234 : -90.22941 : Jacksonville, IL +62651 : 39.698311 : -90.26153 : Jacksonville, IL +62652 : 39.564228 : -90.651349 : Milton, IL +62655 : 40.147371 : -90.00698 : Kilbourne, IL +62656 : 40.149927 : -89.36746 : Lincoln, IL +62659 : 40.031115 : -89.786723 : Lincoln'S New Salem, IL +62660 : 39.858933 : -90.200747 : Literberry, IL +62661 : 39.669508 : -89.84805 : Loami, IL +62662 : 39.749457 : -89.606017 : Lowder, IL +62663 : 39.544196 : -90.32677 : Manchester, IL +62664 : 40.200537 : -89.70427 : Mason City, IL +62665 : 39.818631 : -90.55791 : Meredosia, IL +62666 : 40.088774 : -89.56744 : Middletown, IL +62667 : 39.487357 : -89.99143 : Modesto, IL +62668 : 39.576392 : -90.24769 : Murrayville, IL +62670 : 39.735761 : -89.88669 : New Berlin, IL +62671 : 40.186852 : -89.56053 : New Holland, IL +62672 : 39.397248 : -89.80769 : Nilwood, IL +62673 : 40.095009 : -89.96998 : Oakford, IL +62674 : 39.429687 : -90.01499 : Palmyra, IL +62675 : 40.008726 : -89.85029 : Petersburg, IL +62676 : 39.128248 : -89.923215 : Hillyard, IL +62677 : 39.847253 : -89.88059 : Pleasant Plains, IL +62681 : 40.134957 : -90.55222 : Rushville, IL +62682 : 40.29916 : -89.60101 : San Jose, IL +62683 : 39.260862 : -89.926068 : Scottville, IL +62684 : 39.901588 : -89.58805 : Sherman, IL +62685 : 39.14665 : -90.00059 : Shipman, IL +62686 : 39.350726 : -89.78689 : Standard City, IL +62688 : 39.944264 : -89.93366 : Tallula, IL +62689 : 39.539071 : -89.761 : Thayer, IL +62690 : 39.503383 : -89.76667 : Virden, IL +62691 : 39.952909 : -90.21218 : Virginia, IL +62692 : 39.583983 : -89.9396 : Waverly, IL +62693 : 39.956803 : -89.54209 : Williamsville, IL +62694 : 39.628929 : -90.46107 : Winchester, IL +62695 : 39.627307 : -90.22101 : Woodson, IL +62701 : 39.80095 : -89.64999 : Springfield, IL +62702 : 39.819 : -89.64379 : Springfield, IL +62703 : 39.7715 : -89.63612 : Springfield, IL +62704 : 39.7778 : -89.67982 : Springfield, IL +62705 : 39.749457 : -89.606017 : Springfield, IL +62706 : 39.79885 : -89.653399 : Springfield, IL +62707 : 39.757896 : -89.66363 : Springfield, IL +62708 : 39.806089 : -89.586356 : Springfield, IL +62709 : 39.749457 : -89.606017 : Springfield, IL +62713 : 39.749457 : -89.606017 : Springfield, IL +62715 : 39.749457 : -89.606017 : Springfield, IL +62716 : 39.848201 : -89.536369 : Springfield, IL +62718 : 39.778044 : -89.646555 : Springfield, IL +62719 : 39.749457 : -89.606017 : Springfield, IL +62720 : 39.749457 : -89.606017 : Springfield, IL +62721 : 39.749457 : -89.606017 : Springfield, IL +62722 : 39.749457 : -89.606017 : Springfield, IL +62723 : 39.749457 : -89.606017 : Springfield, IL +62726 : 39.749457 : -89.606017 : Springfield, IL +62736 : 39.749457 : -89.606017 : Springfield, IL +62739 : 39.749457 : -89.606017 : Springfield, IL +62746 : 39.749457 : -89.606017 : Springfield, IL +62756 : 39.749457 : -89.606017 : Springfield, IL +62757 : 39.749457 : -89.606017 : Springfield, IL +62761 : 39.852361 : -89.541017 : Springfield, IL +62762 : 39.749457 : -89.606017 : Springfield, IL +62763 : 39.749457 : -89.606017 : Springfield, IL +62764 : 39.749457 : -89.606017 : Springfield, IL +62765 : 39.749457 : -89.606017 : Springfield, IL +62766 : 39.749457 : -89.606017 : Springfield, IL +62767 : 39.749457 : -89.606017 : Springfield, IL +62769 : 39.749457 : -89.606017 : Springfield, IL +62776 : 39.749457 : -89.606017 : Springfield, IL +62777 : 39.749457 : -89.606017 : Springfield, IL +62781 : 39.749457 : -89.606017 : Springfield, IL +62786 : 39.749457 : -89.606017 : Springfield, IL +62791 : 39.749457 : -89.606017 : Springfield, IL +62792 : 37.277483 : -89.186317 : Ullin, IL +62794 : 39.749457 : -89.606017 : Springfield, IL +62796 : 39.749457 : -89.606017 : Springfield, IL +62801 : 38.523736 : -89.1257 : Centralia, IL +62803 : 38.460331 : -89.30296 : Hoyleton, IL +62805 : 37.994296 : -88.941665 : Akin, IL +62806 : 38.375576 : -88.07169 : Albion, IL +62807 : 38.735571 : -88.91864 : Alma, IL +62808 : 38.319427 : -89.19145 : Ashley, IL +62809 : 38.268959 : -88.34267 : Barnhill, IL +62810 : 38.218349 : -88.73999 : Belle Rive, IL +62811 : 38.384799 : -87.90949 : Bellmont, IL +62812 : 38.000245 : -88.92407 : Benton, IL +62814 : 38.362934 : -88.72896 : Bluford, IL +62815 : 38.452172 : -87.9939 : Bone Gap, IL +62816 : 38.192726 : -88.93138 : Bonnie, IL +62817 : 37.954727 : -88.47128 : Broughton, IL +62818 : 38.378706 : -87.97291 : Browns, IL +62819 : 37.980455 : -89.01261 : Buckner, IL +62820 : 38.247883 : -88.22944 : Burnt Prairie, IL +62821 : 38.087838 : -88.15583 : Carmi, IL +62822 : 37.973175 : -89.05291 : Christopher, IL +62823 : 38.51684 : -88.43531 : Cisne, IL +62824 : 38.689663 : -88.35141 : Clay City, IL +62825 : 37.996241 : -89.06852 : Coello, IL +62827 : 38.160972 : -88.03291 : Crossville, IL +62828 : 38.190536 : -88.62439 : Dahlgren, IL +62829 : 37.999757 : -88.50469 : Dale, IL +62830 : 38.441538 : -88.96888 : Dix, IL +62831 : 38.22669 : -89.20884 : Du Bois, IL +62832 : 38.011729 : -89.24688 : Du Quoin, IL +62833 : 38.361654 : -88.16484 : Ellery, IL +62834 : 37.97622 : -88.120182 : Emma, IL +62835 : 38.101667 : -88.33357 : Enfield, IL +62836 : 38.096551 : -88.82763 : Ewing, IL +62837 : 38.374627 : -88.35735 : Fairfield, IL +62838 : 38.857185 : -88.7591 : Farina, IL +62839 : 38.667752 : -88.48855 : Flora, IL +62840 : 37.994296 : -88.941665 : Frankfort Heights, IL +62841 : 37.80308 : -89.009201 : Freeman Spur, IL +62842 : 38.460323 : -88.37124 : Geff, IL +62843 : 38.365545 : -88.19454 : Golden Gate, IL +62844 : 38.257064 : -88.00353 : Grayville, IL +62845 : 38.073931 : -88.142657 : Herald, IL +62846 : 38.149474 : -88.89634 : Ina, IL +62847 : 38.757302 : -88.473594 : Iola, IL +62848 : 38.436236 : -89.16184 : Irvington, IL +62849 : 38.594744 : -88.77464 : Iuka, IL +62850 : 38.513119 : -88.58911 : Johnsonville, IL +62851 : 38.423947 : -88.6692 : Keenes, IL +62852 : 38.351613 : -87.86464 : Keensburg, IL +62853 : 38.516025 : -88.91954 : Kell, IL +62854 : 38.768452 : -88.82814 : Kinmundy, IL +62855 : 38.403424 : -87.818672 : Lancaster, IL +62856 : 37.994296 : -88.941665 : Logan, IL +62857 : 38.911662 : -88.87747 : Loogootee, IL +62858 : 38.806292 : -88.48012 : Louisville, IL +62859 : 38.090004 : -88.53431 : McLeansboro, IL +62860 : 38.041978 : -88.73257 : Macedonia, IL +62861 : 38.032574 : -88.04663 : Maunie, IL +62862 : 38.219997 : -88.3121 : Mill Shoals, IL +62863 : 38.415676 : -87.81077 : Mount Carmel, IL +62864 : 38.322558 : -88.90842 : Mount Vernon, IL +62865 : 37.963264 : -89.06906 : Mulkeytown, IL +62866 : 38.16542 : -88.967551 : Nason, IL +62867 : 37.914363 : -88.12264 : New Haven, IL +62868 : 38.696562 : -88.23716 : Noble, IL +62869 : 37.971434 : -88.30419 : Norris City, IL +62870 : 38.614141 : -89.04738 : Odin, IL +62871 : 37.877628 : -88.29114 : Omaha, IL +62872 : 38.281485 : -88.7909 : Opdyke, IL +62874 : 37.921795 : -88.97892 : Orient, IL +62875 : 38.751756 : -89.09581 : Patoka, IL +62876 : 38.282464 : -89.19356 : Radom, IL +62877 : 38.388876 : -89.19244 : Richview, IL +62878 : 38.578119 : -88.49714 : Rinard, IL +62879 : 38.764802 : -88.35875 : Sailor Springs, IL +62880 : 38.875494 : -88.89365 : Saint Peter, IL +62881 : 38.623789 : -88.95361 : Salem, IL +62882 : 38.60823 : -89.11963 : Sandoval, IL +62883 : 38.164136 : -89.11908 : Scheller, IL +62884 : 38.085829 : -89.04697 : Sesser, IL +62885 : 38.859515 : -89.054 : Shobonier, IL +62886 : 38.374398 : -88.53537 : Sims, IL +62887 : 38.185822 : -88.36923 : Springerton, IL +62888 : 38.127516 : -89.22926 : Tamaroa, IL +62889 : 38.455562 : -88.8232 : Texico, IL +62890 : 37.913984 : -88.74922 : Thompsonville, IL +62891 : 38.01492 : -89.04226 : Valier, IL +62892 : 38.804938 : -89.08366 : Vernon, IL +62893 : 38.469244 : -89.03707 : Walnut Hill, IL +62894 : 38.212746 : -89.03866 : Waltonville, IL +62895 : 38.34239 : -88.58448 : Wayne City, IL +62896 : 37.894496 : -88.93037 : West Frankfort, IL +62897 : 38.084617 : -88.92096 : Whittington, IL +62898 : 38.335675 : -89.04867 : Woodlawn, IL +62899 : 38.661358 : -88.64744 : Xenia, IL +62901 : 37.707763 : -89.19246 : Carbondale, IL +62902 : 37.758646 : -89.415831 : Carbondale, IL +62903 : 37.758646 : -89.415831 : Carbondale, IL +62905 : 37.571235 : -89.33462 : Alto Pass, IL +62906 : 37.457806 : -89.21408 : Anna, IL +62907 : 37.871546 : -89.50721 : Ava, IL +62908 : 37.308412 : -88.88076 : Belknap, IL +62909 : 37.44725 : -88.876792 : Boles, IL +62910 : 37.140282 : -88.58186 : Brookport, IL +62912 : 37.477639 : -89.02992 : Buncombe, IL +62913 : 37.152775 : -89.325581 : Cache, IL +62914 : 37.025325 : -89.18974 : Cairo, IL +62915 : 37.782057 : -89.12184 : Cambria, IL +62916 : 37.933269 : -89.55501 : Campbell Hill, IL +62917 : 37.692923 : -88.65284 : Carrier Mills, IL +62918 : 37.766029 : -89.08355 : Carterville, IL +62919 : 37.495812 : -88.16099 : Cave In Rock, IL +62920 : 37.540571 : -89.25489 : Cobden, IL +62921 : 37.804876 : -89.08118 : Colp, IL +62922 : 37.613705 : -88.83922 : Creal Springs, IL +62923 : 37.34 : -89.03177 : Cypress, IL +62924 : 37.82526 : -89.20301 : De Soto, IL +62926 : 37.363981 : -89.15783 : Dongola, IL +62927 : 37.940448 : -89.24091 : Dowell, IL +62928 : 37.501552 : -88.58141 : Eddyville, IL +62930 : 37.822259 : -88.44456 : Eldorado, IL +62931 : 37.511139 : -88.28284 : Elizabethtown, IL +62932 : 37.907619 : -89.23151 : Elkville, IL +62933 : 37.774517 : -89.02583 : Energy, IL +62934 : 37.716434 : -88.37184 : Equality, IL +62935 : 37.836537 : -88.62298 : Galatia, IL +62938 : 37.374723 : -88.52571 : Golconda, IL +62939 : 37.558235 : -88.96661 : Goreville, IL +62940 : 37.727109 : -89.47618 : Gorham, IL +62941 : 37.239385 : -88.95184 : Grand Chain, IL +62942 : 37.629601 : -89.48077 : Grand Tower, IL +62943 : 37.342538 : -88.73381 : Grantsburg, IL +62944 : 37.333591 : -88.561428 : Hamletsburg, IL +62946 : 37.725834 : -88.54208 : Harrisburg, IL +62947 : 37.567779 : -88.39925 : Herod, IL +62948 : 37.804014 : -89.02702 : Herrin, IL +62949 : 37.835684 : -89.14346 : Hurst, IL +62950 : 37.75858 : -89.56055 : Jacob, IL +62951 : 37.820724 : -88.92647 : Johnston City, IL +62952 : 37.42084 : -89.31217 : Jonesboro, IL +62953 : 37.20812 : -88.84304 : Joppa, IL +62954 : 37.703552 : -88.26498 : Junction, IL +62955 : 37.500757 : -88.238292 : Karbers Ridge, IL +62956 : 37.279433 : -88.93959 : Karnak, IL +62957 : 37.305331 : -89.43066 : McClure, IL +62958 : 37.612173 : -89.17587 : Makanda, IL +62959 : 37.724504 : -88.92968 : Marion, IL +62960 : 37.18308 : -88.73327 : Metropolis, IL +62961 : 37.340918 : -89.254203 : Millcreek, IL +62962 : 37.097546 : -89.33547 : Miller City, IL +62963 : 37.08751 : -89.16532 : Mound City, IL +62964 : 37.119739 : -89.20174 : Mounds, IL +62965 : 37.801972 : -88.548695 : Muddy, IL +62966 : 37.771806 : -89.33971 : Murphysboro, IL +62967 : 37.582136 : -88.76394 : New Burnside, IL +62969 : 37.159227 : -89.34153 : Olive Branch, IL +62970 : 37.199769 : -89.10964 : Olmsted, IL +62971 : 37.758646 : -89.415831 : Oraville, IL +62972 : 37.548762 : -88.74145 : Ozark, IL +62973 : 37.311333 : -89.083056 : Perks, IL +62974 : 37.780592 : -88.82344 : Pittsburg, IL +62975 : 37.618822 : -89.3617 : Pomona, IL +62976 : 37.214012 : -89.21039 : Pulaski, IL +62977 : 37.844963 : -88.54416 : Raleigh, IL +62979 : 37.796784 : -88.24393 : Ridgway, IL +62982 : 37.426076 : -88.34815 : Rosiclare, IL +62983 : 37.884066 : -89.11128 : Royalton, IL +62984 : 37.712847 : -88.16553 : Shawneetown, IL +62985 : 37.458878 : -88.69466 : Simpson, IL +62987 : 37.635792 : -88.67912 : Stonefort, IL +62988 : 37.240381 : -89.28271 : Tamms, IL +62990 : 37.223589 : -89.42243 : Thebes, IL +62991 : 37.540479 : -88.86601 : Tunnel Hill, IL +62992 : 37.272477 : -89.17123 : Ullin, IL +62993 : 37.150263 : -89.27351 : Unity, IL +62994 : 37.901441 : -89.33485 : Vergennes, IL +62995 : 37.422815 : -88.88016 : Vienna, IL +62996 : 37.152714 : -89.1632 : Villa Ridge, IL +62997 : 37.983687 : -89.5905 : Willisville, IL +62998 : 37.508233 : -89.43987 : Wolf Lake, IL +62999 : 37.8974 : -89.05385 : Zeigler, IL +63001 : 38.638318 : -90.427118 : Allenton, MO +63005 : 38.646981 : -90.63155 : Chesterfield, MO +63006 : 38.638318 : -90.427118 : Chesterfield, MO +63010 : 38.42727 : -90.38515 : Arnold, MO +63011 : 38.601403 : -90.55209 : Ballwin, MO +63012 : 38.337458 : -90.42316 : Barnhart, MO +63013 : 38.415995 : -91.1603 : Beaufort, MO +63014 : 38.654011 : -91.33928 : Berger, MO +63015 : 38.401406 : -90.74276 : Catawissa, MO +63016 : 38.352825 : -90.63595 : Cedar Hill, MO +63017 : 38.647023 : -90.53918 : Chesterfield, MO +63019 : 38.226997 : -90.38215 : Crystal City, MO +63020 : 38.120303 : -90.55426 : De Soto, MO +63021 : 38.576253 : -90.53117 : Ballwin, MO +63022 : 38.638318 : -90.427118 : Ballwin, MO +63023 : 38.280328 : -90.70519 : Dittmer, MO +63024 : 38.638318 : -90.427118 : Ballwin, MO +63025 : 38.494203 : -90.61304 : Eureka, MO +63026 : 38.502854 : -90.46088 : Fenton, MO +63028 : 38.187767 : -90.4077 : Festus, MO +63030 : 38.129238 : -90.74342 : Fletcher, MO +63031 : 38.8016 : -90.33662 : Florissant, MO +63032 : 38.638318 : -90.427118 : Florissant, MO +63033 : 38.79505 : -90.28578 : Florissant, MO +63034 : 38.832863 : -90.29051 : Florissant, MO +63036 : 37.97861 : -90.34637 : French Village, MO +63037 : 38.412764 : -91.3246 : Gerald, MO +63038 : 38.578703 : -90.66508 : Glencoe, MO +63039 : 38.499489 : -90.83398 : Gray Summit, MO +63040 : 38.575835 : -90.61878 : Grover, MO +63041 : 38.262811 : -90.77513 : Grubville, MO +63042 : 38.7785 : -90.37005 : Hazelwood, MO +63043 : 38.725331 : -90.44451 : Maryland Heights, MO +63044 : 38.757318 : -90.42335 : Bridgeton, MO +63045 : 38.638318 : -90.427118 : Earth City, MO +63047 : 38.194104 : -90.472495 : Hematite, MO +63048 : 38.261863 : -90.3902 : Herculaneum, MO +63049 : 38.473921 : -90.52696 : High Ridge, MO +63050 : 38.259946 : -90.5666 : Hillsboro, MO +63051 : 38.405287 : -90.57059 : House Springs, MO +63052 : 38.385265 : -90.40339 : Imperial, MO +63053 : 38.252726 : -90.514875 : Kimmswick, MO +63055 : 38.535934 : -90.84698 : Labadie, MO +63056 : 38.404826 : -91.22652 : Leslie, MO +63057 : 38.341918 : -90.408223 : Liguori, MO +63060 : 38.247062 : -90.85642 : Lonedell, MO +63061 : 38.257711 : -90.80694 : Luebbering, MO +63065 : 38.252726 : -90.514875 : Mapaville, MO +63066 : 38.280943 : -90.652057 : Morse Mill, MO +63068 : 38.558836 : -91.24469 : New Haven, MO +63069 : 38.482353 : -90.73892 : Pacific, MO +63070 : 38.279016 : -90.40862 : Pevely, MO +63071 : 38.137345 : -90.83168 : Richwoods, MO +63072 : 38.369435 : -90.81792 : Robertsville, MO +63073 : 38.527729 : -91.017274 : Saint Albans, MO +63074 : 38.727184 : -90.38551 : Saint Ann, MO +63077 : 38.336093 : -90.98902 : Saint Clair, MO +63079 : 38.274398 : -91.085533 : Stanton, MO +63080 : 38.200244 : -91.14089 : Sullivan, MO +63084 : 38.434806 : -91.00353 : Union, MO +63087 : 38.024849 : -90.44667 : Valles Mines, MO +63088 : 38.553253 : -90.49157 : Valley Park, MO +63089 : 38.46292 : -90.88421 : Villa Ridge, MO +63090 : 38.535499 : -91.02348 : Washington, MO +63091 : 38.387446 : -91.39332 : Rosebud, MO +63099 : 38.638318 : -90.427118 : Fenton, MO +63101 : 38.631551 : -90.193 : Saint Louis, MO +63102 : 38.6352 : -90.18702 : Saint Louis, MO +63103 : 38.631451 : -90.21415 : Saint Louis, MO +63104 : 38.610701 : -90.21362 : Saint Louis, MO +63105 : 38.645484 : -90.32888 : Saint Louis, MO +63106 : 38.644451 : -90.20636 : Saint Louis, MO +63107 : 38.6628 : -90.20949 : Saint Louis, MO +63108 : 38.646201 : -90.25435 : Saint Louis, MO +63109 : 38.586052 : -90.2941 : Saint Louis, MO +63110 : 38.622601 : -90.26182 : Saint Louis, MO +63111 : 38.559302 : -90.25174 : Saint Louis, MO +63112 : 38.661351 : -90.28434 : Saint Louis, MO +63113 : 38.656701 : -90.24397 : Saint Louis, MO +63114 : 38.702651 : -90.36109 : Saint Louis, MO +63115 : 38.676851 : -90.24009 : Saint Louis, MO +63116 : 38.580552 : -90.26307 : Saint Louis, MO +63117 : 38.628402 : -90.32636 : Saint Louis, MO +63118 : 38.594901 : -90.2278 : Saint Louis, MO +63119 : 38.590652 : -90.35168 : Saint Louis, MO +63120 : 38.691901 : -90.25992 : Saint Louis, MO +63121 : 38.706301 : -90.29609 : Saint Louis, MO +63122 : 38.582702 : -90.40966 : Saint Louis, MO +63123 : 38.549452 : -90.32525 : Saint Louis, MO +63124 : 38.645802 : -90.37687 : Saint Louis, MO +63125 : 38.524066 : -90.2895 : Saint Louis, MO +63126 : 38.552303 : -90.37921 : Saint Louis, MO +63127 : 38.53987 : -90.40024 : Saint Louis, MO +63128 : 38.500734 : -90.37113 : Saint Louis, MO +63129 : 38.469953 : -90.32161 : Saint Louis, MO +63130 : 38.663951 : -90.32348 : Saint Louis, MO +63131 : 38.618582 : -90.43643 : Saint Louis, MO +63132 : 38.675784 : -90.37463 : Saint Louis, MO +63133 : 38.679684 : -90.30186 : Saint Louis, MO +63134 : 38.738217 : -90.33904 : Saint Louis, MO +63135 : 38.74785 : -90.30258 : Saint Louis, MO +63136 : 38.73835 : -90.26154 : Saint Louis, MO +63137 : 38.748183 : -90.21864 : Saint Louis, MO +63138 : 38.787849 : -90.21041 : Saint Louis, MO +63139 : 38.610901 : -90.29174 : Saint Louis, MO +63140 : 38.73965 : -90.32178 : Saint Louis, MO +63141 : 38.662302 : -90.45363 : Saint Louis, MO +63143 : 38.612452 : -90.31822 : Saint Louis, MO +63144 : 38.619152 : -90.34964 : Saint Louis, MO +63145 : 38.638318 : -90.427118 : Saint Louis, MO +63146 : 38.688585 : -90.44689 : Saint Louis, MO +63147 : 38.692861 : -90.21905 : Saint Louis, MO +63150 : 38.6531 : -90.243462 : Saint Louis, MO +63151 : 38.638318 : -90.427118 : Saint Louis, MO +63153 : 38.6531 : -90.243462 : Saint Louis, MO +63155 : 38.6531 : -90.243462 : Saint Louis, MO +63156 : 38.6531 : -90.243462 : Saint Louis, MO +63157 : 38.6531 : -90.243462 : Saint Louis, MO +63158 : 38.6531 : -90.243462 : Saint Louis, MO +63160 : 38.6531 : -90.243462 : Saint Louis, MO +63163 : 38.6531 : -90.243462 : Saint Louis, MO +63164 : 38.6531 : -90.243462 : Saint Louis, MO +63166 : 38.6531 : -90.243462 : Saint Louis, MO +63167 : 38.638318 : -90.427118 : Saint Louis, MO +63169 : 38.6531 : -90.243462 : Saint Louis, MO +63171 : 38.6531 : -90.243462 : Saint Louis, MO +63177 : 38.6531 : -90.243462 : Saint Louis, MO +63178 : 38.6531 : -90.243462 : Saint Louis, MO +63179 : 38.6531 : -90.243462 : Saint Louis, MO +63180 : 38.6531 : -90.243462 : Saint Louis, MO +63182 : 38.6531 : -90.243462 : Saint Louis, MO +63188 : 38.6531 : -90.243462 : Saint Louis, MO +63195 : 38.6531 : -90.243462 : Saint Louis, MO +63196 : 38.6531 : -90.243462 : Saint Louis, MO +63197 : 38.6531 : -90.243462 : Saint Louis, MO +63198 : 38.638318 : -90.427118 : Saint Louis, MO +63199 : 38.6531 : -90.243462 : Saint Louis, MO +63301 : 38.808583 : -90.50687 : Saint Charles, MO +63302 : 38.581299 : -90.872987 : Saint Charles, MO +63303 : 38.762715 : -90.53903 : Saint Charles, MO +63304 : 38.72926 : -90.65332 : Saint Charles, MO +63330 : 39.257008 : -90.82317 : Annada, MO +63332 : 38.590155 : -90.89093 : Augusta, MO +63333 : 39.03288 : -91.32983 : Bellflower, MO +63334 : 39.318552 : -91.18265 : Bowling Green, MO +63336 : 39.354092 : -90.93137 : Clarksville, MO +63338 : 38.750949 : -90.536784 : Cottleville, MO +63339 : 39.334216 : -91.37684 : Curryville, MO +63341 : 38.68879 : -90.78593 : Defiance, MO +63342 : 38.605967 : -90.996216 : Dutzow, MO +63343 : 39.151543 : -90.8136 : Elsberry, MO +63344 : 39.239548 : -91.01577 : Eolia, MO +63345 : 39.267199 : -91.56669 : Farber, MO +63346 : 38.750949 : -90.536784 : Flinthill, MO +63347 : 39.069965 : -90.75875 : Foley, MO +63348 : 38.814432 : -90.94433 : Foristell, MO +63349 : 38.96624 : -91.14919 : Hawk Point, MO +63350 : 38.898823 : -91.3682 : High Hill, MO +63351 : 38.862422 : -91.31284 : Jonesburg, MO +63352 : 39.249616 : -91.64872 : Laddonia, MO +63353 : 39.449012 : -91.07518 : Louisiana, MO +63357 : 38.647611 : -91.09159 : Marthasville, MO +63359 : 39.151911 : -91.34909 : Middletown, MO +63361 : 38.973583 : -91.53556 : Montgomery City, MO +63362 : 38.952724 : -90.89199 : Moscow Mills, MO +63363 : 38.881628 : -91.44852 : New Florence, MO +63365 : 38.716287 : -90.875127 : New Melle, MO +63366 : 38.786335 : -90.72121 : O Fallon, MO +63367 : 38.796601 : -90.78525 : Lake Saint Louis, MO +63369 : 38.935776 : -90.77801 : Old Monroe, MO +63370 : 39.085749 : -91.2243 : Olney, MO +63371 : 39.25597 : -90.883751 : Paynesville, MO +63373 : 38.935496 : -90.3683 : Portage Des Sioux, MO +63375 : 37.73473 : -89.856609 : Perryville, MO +63376 : 38.778579 : -90.62045 : Saint Peters, MO +63377 : 39.110908 : -91.08017 : Silex, MO +63378 : 38.770187 : -91.188586 : Treloar, MO +63379 : 38.991916 : -90.98649 : Troy, MO +63381 : 38.995145 : -91.2336 : Truxton, MO +63382 : 39.310099 : -91.48862 : Vandalia, MO +63383 : 38.818852 : -91.17 : Warrenton, MO +63384 : 39.081392 : -91.56266 : Wellsville, MO +63385 : 38.808884 : -90.85922 : Wentzville, MO +63386 : 38.876781 : -90.23706 : West Alton, MO +63387 : 39.184054 : -91.02078 : Whiteside, MO +63388 : 38.886456 : -91.76344 : Williamsburg, MO +63389 : 39.00006 : -90.77209 : Winfield, MO +63390 : 38.797388 : -91.03468 : Wright City, MO +63401 : 39.695798 : -91.40084 : Hannibal, MO +63430 : 40.381613 : -91.50598 : Alexandria, MO +63431 : 39.753475 : -92.3224 : Anabel, MO +63432 : 40.497304 : -91.9947 : Arbela, MO +63433 : 39.549602 : -91.18155 : Ashburn, MO +63434 : 39.906312 : -91.96806 : Bethel, MO +63435 : 40.178309 : -91.57389 : Canton, MO +63436 : 39.501697 : -91.5367 : Center, MO +63437 : 39.742551 : -92.24825 : Clarence, MO +63438 : 39.952258 : -91.69953 : Durham, MO +63439 : 39.788052 : -91.85812 : Emden, MO +63440 : 39.98803 : -91.73595 : Ewing, MO +63441 : 39.484069 : -91.32296 : Frankford, MO +63442 : 40.453333 : -92.1474 : Granger, MO +63443 : 39.677082 : -91.8584 : Hunnewell, MO +63445 : 40.415683 : -91.71817 : Kahoka, MO +63446 : 40.14036 : -92.01104 : Knox City, MO +63447 : 40.109412 : -91.91078 : La Belle, MO +63448 : 40.044294 : -91.51803 : La Grange, MO +63450 : 39.650093 : -92.14536 : Lentner, MO +63451 : 39.922732 : -92.19521 : Leonard, MO +63452 : 40.101973 : -91.79502 : Lewistown, MO +63453 : 40.489269 : -91.87248 : Luray, MO +63454 : 39.93264 : -91.63745 : Maywood, MO +63456 : 39.645523 : -91.72967 : Monroe City, MO +63457 : 40.143679 : -91.7066 : Monticello, MO +63458 : 39.98354 : -91.99255 : Newark, MO +63459 : 39.584889 : -91.38258 : New London, MO +63460 : 40.011886 : -92.20242 : Novelty, MO +63461 : 39.793879 : -91.54631 : Palmyra, MO +63462 : 39.430693 : -91.68647 : Perry, MO +63463 : 39.814354 : -91.74251 : Philadelphia, MO +63464 : 39.972337 : -92.06553 : Plevna, MO +63465 : 40.526542 : -91.68075 : Revere, MO +63466 : 40.431201 : -91.685103 : Saint Patrick, MO +63467 : 39.650045 : -91.270502 : Saverton, MO +63468 : 39.677131 : -92.01662 : Shelbina, MO +63469 : 39.820466 : -92.03371 : Shelbyville, MO +63471 : 39.925941 : -91.49636 : Taylor, MO +63472 : 40.396289 : -91.58325 : Wayland, MO +63473 : 40.246729 : -91.77368 : Williamstown, MO +63474 : 40.354422 : -91.91063 : Wyaconda, MO +63477 : 40.114109 : -91.912383 : La Belle, MO +63501 : 40.183335 : -92.58341 : Kirksville, MO +63530 : 39.911723 : -92.46408 : Atlanta, MO +63531 : 40.281881 : -92.23595 : Baring, MO +63532 : 39.75496 : -92.57057 : Bevier, MO +63533 : 40.181653 : -92.39699 : Brashear, MO +63534 : 39.7418 : -92.63582 : Callao, MO +63535 : 40.569026 : -92.64152 : Coatsville, MO +63536 : 40.486993 : -92.36284 : Downing, MO +63537 : 40.164349 : -92.1671 : Edina, MO +63538 : 39.952779 : -92.68007 : Elmer, MO +63539 : 39.893011 : -92.74503 : Ethel, MO +63540 : 40.096431 : -92.41809 : Gibbs, MO +63541 : 40.513638 : -92.60818 : Glenwood, MO +63543 : 40.361121 : -92.01979 : Gorin, MO +63544 : 40.244242 : -92.85127 : Green Castle, MO +63545 : 40.256611 : -92.98277 : Green City, MO +63546 : 40.335091 : -92.52631 : Greentop, MO +63547 : 40.145396 : -92.30285 : Hurdland, MO +63548 : 40.524127 : -92.51071 : Lancaster, MO +63549 : 40.018881 : -92.50308 : La Plata, MO +63551 : 40.496773 : -92.72414 : Livonia, MO +63552 : 39.747736 : -92.46878 : Macon, MO +63555 : 40.469438 : -92.18031 : Memphis, MO +63556 : 40.184189 : -93.12043 : Milan, MO +63557 : 39.963355 : -92.88684 : New Boston, MO +63558 : 39.728897 : -92.74979 : New Cambria, MO +63559 : 40.228235 : -92.72531 : Novinger, MO +63560 : 40.367584 : -93.11823 : Pollock, MO +63561 : 40.410297 : -92.55728 : Queen City, MO +63563 : 40.303327 : -92.07913 : Rutledge, MO +63565 : 40.472841 : -92.97298 : Unionville, MO +63566 : 40.031642 : -92.9641 : Winigan, MO +63567 : 40.411635 : -92.69113 : Worthington, MO +63588 : 36.018996 : -90.159327 : Clay, MO +63601 : 37.844197 : -90.53 : Park Hills, MO +63620 : 37.383001 : -90.6596 : Annapolis, MO +63621 : 37.520078 : -90.61694 : Arcadia, MO +63622 : 37.790928 : -90.89305 : Belgrade, MO +63623 : 37.682669 : -90.88172 : Belleview, MO +63624 : 37.740163 : -90.63962 : Bismarck, MO +63625 : 37.538148 : -90.96827 : Black, MO +63626 : 38.053566 : -90.64229 : Blackwell, MO +63627 : 38.051824 : -90.25527 : Bloomsdale, MO +63628 : 37.929597 : -90.5614 : Bonne Terre, MO +63629 : 37.416192 : -91.22224 : Bunker, MO +63630 : 38.020743 : -90.74557 : Cadet, MO +63631 : 37.753408 : -90.78593 : Caledonia, MO +63632 : 37.119566 : -90.444953 : Cascade, MO +63633 : 37.442703 : -91.02077 : Centerville, MO +63636 : 37.292529 : -90.60432 : Des Arc, MO +63637 : 37.73411 : -90.51428 : Doe Run, MO +63638 : 37.210461 : -91.00798 : Ellington, MO +63640 : 37.779206 : -90.41404 : Farmington, MO +63645 : 37.54834 : -90.30599 : Fredericktown, MO +63646 : 37.505462 : -90.845047 : Glover, MO +63648 : 37.827126 : -90.68325 : Irondale, MO +63650 : 37.614822 : -90.63284 : Ironton, MO +63651 : 37.675442 : -90.367713 : Knob Lick, MO +63653 : 37.863193 : -90.58935 : Leadwood, MO +63654 : 37.478054 : -90.83766 : Lesterville, MO +63655 : 37.416023 : -90.18886 : Marquand, MO +63656 : 37.611019 : -90.77656 : Middle Brook, MO +63660 : 37.913799 : -90.71264 : Mineral Point, MO +63661 : 37.89872 : -90.191972 : New Offenburg, MO +63662 : 37.513967 : -90.02477 : Patton, MO +63663 : 37.624572 : -90.64526 : Pilot Knob, MO +63664 : 37.91496 : -90.86797 : Potosi, MO +63665 : 37.313752 : -90.84892 : Redford, MO +63666 : 37.327153 : -91.024337 : Reynolds, MO +63670 : 37.91259 : -90.15155 : Sainte Genevieve, MO +63673 : 37.833644 : -89.98417 : Saint Mary, MO +63674 : 38.038731 : -90.65623 : Tiff, MO +63675 : 37.326021 : -90.68542 : Vulcan, MO +63701 : 37.32564 : -89.5659 : Cape Girardeau, MO +63702 : 37.350624 : -89.509405 : Cape Girardeau, MO +63703 : 37.291432 : -89.54065 : Cape Girardeau, MO +63705 : 37.366166 : -89.643941 : Cape Girardeau, MO +63730 : 37.101789 : -89.91359 : Advance, MO +63732 : 37.584014 : -89.6032 : Altenburg, MO +63735 : 36.992718 : -89.78369 : Bell City, MO +63736 : 37.093104 : -89.53997 : Benton, MO +63737 : 37.663253 : -89.652912 : Brazeau, MO +63738 : 37.082526 : -89.95595 : Brownwood, MO +63739 : 37.360527 : -89.79907 : Burfordville, MO +63740 : 37.182556 : -89.68379 : Chaffee, MO +63742 : 37.157131 : -89.44651 : Commerce, MO +63743 : 37.522361 : -89.81419 : Daisy, MO +63744 : 37.197279 : -89.739429 : Delta, MO +63745 : 37.24237 : -89.69768 : Dutchtown, MO +63746 : 37.734776 : -89.811616 : Farrar, MO +63747 : 37.555405 : -89.80068 : Friedheim, MO +63748 : 37.671971 : -89.61644 : Frohna, MO +63750 : 37.146953 : -90.1887 : Gipsy, MO +63751 : 37.332487 : -90.08675 : Glenallen, MO +63752 : 37.30925 : -89.69889 : Gordonville, MO +63753 : 37.212218 : -90.13105 : Grassy, MO +63755 : 37.413716 : -89.65428 : Jackson, MO +63758 : 37.189843 : -89.549 : Kelso, MO +63760 : 37.247942 : -89.88904 : Leopold, MO +63763 : 37.052849 : -90.16705 : McGee, MO +63764 : 37.309447 : -89.98127 : Marble Hill, MO +63766 : 37.437077 : -89.85836 : Millersville, MO +63767 : 37.043378 : -89.61264 : Morley, MO +63769 : 37.509022 : -89.76337 : Oak Ridge, MO +63770 : 37.593256 : -89.70949 : Old Appleton, MO +63771 : 37.076536 : -89.67823 : Oran, MO +63772 : 37.04613 : -89.779248 : Painton, MO +63774 : 37.094857 : -89.77451 : Perkins, MO +63775 : 37.716811 : -89.87601 : Perryville, MO +63776 : 37.734776 : -89.811616 : McBride, MO +63779 : 37.500656 : -89.639595 : Pocahontas, MO +63780 : 37.21183 : -89.52687 : Scott City, MO +63781 : 37.527341 : -89.92735 : Sedgewickville, MO +63782 : 37.101911 : -90.0292 : Sturdivant, MO +63783 : 37.605626 : -89.6774 : Uniontown, MO +63784 : 36.990215 : -89.6911 : Vanduser, MO +63785 : 37.265867 : -89.82401 : Whitewater, MO +63787 : 37.115431 : -90.10392 : Zalma, MO +63801 : 36.891163 : -89.58355 : Sikeston, MO +63804 : 37.005572 : -89.525934 : Blodgett, MO +63820 : 36.824596 : -89.32516 : Anniston, MO +63821 : 36.048279 : -90.23343 : Arbyrd, MO +63822 : 36.662399 : -90.00768 : Bernie, MO +63823 : 36.905584 : -89.44945 : Bertrand, MO +63824 : 37.00384 : -89.52535 : Blodgett, MO +63825 : 36.91732 : -89.93679 : Bloomfield, MO +63826 : 36.180226 : -89.84072 : Braggadocio, MO +63827 : 36.27471 : -89.87346 : Bragg City, MO +63828 : 36.754415 : -89.68706 : Canalou, MO +63829 : 36.041645 : -90.29776 : Cardwell, MO +63830 : 36.174029 : -89.67548 : Caruthersville, MO +63832 : 36.916675 : -89.222096 : Wyatt, MO +63833 : 36.642019 : -89.73149 : Catron, MO +63834 : 36.915335 : -89.31308 : Charleston, MO +63837 : 36.450404 : -89.97623 : Clarkton, MO +63838 : 36.603844 : -89.650005 : Conran, MO +63839 : 36.053078 : -89.81679 : Cooter, MO +63840 : 36.213318 : -89.748102 : Deering, MO +63841 : 36.784453 : -89.97428 : Dexter, MO +63845 : 36.74432 : -89.36142 : East Prairie, MO +63846 : 36.818652 : -89.81622 : Essex, MO +63847 : 36.442124 : -90.03097 : Gibson, MO +63848 : 36.449337 : -89.89562 : Gideon, MO +63849 : 36.124101 : -89.99144 : Gobler, MO +63850 : 36.822129 : -89.7817 : Grayridge, MO +63851 : 36.235881 : -89.74861 : Hayti, MO +63852 : 36.37451 : -90.00544 : Holcomb, MO +63853 : 36.058612 : -89.87038 : Holland, MO +63855 : 36.048254 : -90.08539 : Hornersville, MO +63857 : 36.237128 : -90.04866 : Kennett, MO +63859 : 36.267961 : -90.031801 : Independence, MO +63860 : 36.67088 : -89.57338 : Kewanee, MO +63862 : 36.588424 : -89.63377 : Lilbourn, MO +63863 : 36.569283 : -89.97423 : Malden, MO +63866 : 36.521724 : -89.6073 : Marston, MO +63867 : 36.751798 : -89.55184 : Matthews, MO +63868 : 36.845481 : -89.69113 : Morehouse, MO +63869 : 36.59793 : -89.54435 : New Madrid, MO +63870 : 36.611902 : -89.83489 : Parma, MO +63871 : 36.267825 : -89.822514 : Pascola, MO +63872 : 36.101239 : -90.114179 : Clay, MO +63873 : 36.436042 : -89.68851 : Portageville, MO +63874 : 36.550379 : -89.81874 : Risco, MO +63875 : 36.313319 : -90.165758 : Rives, MO +63876 : 36.131733 : -90.17023 : Senath, MO +63877 : 36.079378 : -89.84896 : Steele, MO +63878 : 36.507559 : -89.81877 : Tallapoosa, MO +63879 : 36.349977 : -89.80605 : Wardell, MO +63880 : 36.330522 : -90.0261 : Whiteoak, MO +63881 : 36.779519 : -89.206329 : Wolf Island, MO +63882 : 36.911648 : -89.22208 : Wyatt, MO +63901 : 36.759357 : -90.41689 : Poplar Bluff, MO +63902 : 36.712451 : -90.407013 : Poplar Bluff, MO +63931 : 36.66101 : -90.850785 : Briar, MO +63932 : 36.687259 : -90.23594 : Broseley, MO +63933 : 36.509916 : -90.09694 : Campbell, MO +63934 : 37.20739 : -90.38829 : Clubb, MO +63935 : 36.624115 : -90.8615 : Doniphan, MO +63936 : 36.808827 : -90.12915 : Dudley, MO +63937 : 36.936583 : -90.75026 : Ellsinore, MO +63938 : 36.512944 : -90.26609 : Fagus, MO +63939 : 36.647754 : -90.68117 : Fairdealing, MO +63940 : 36.772841 : -90.21801 : Fisk, MO +63941 : 36.918139 : -91.1528 : Fremont, MO +63942 : 36.546354 : -91.05402 : Gatewood, MO +63943 : 36.828561 : -90.81359 : Grandin, MO +63944 : 37.068349 : -90.42152 : Greenville, MO +63945 : 36.637085 : -90.52687 : Harviell, MO +63947 : 37.19068 : -90.2507 : Hiram, MO +63950 : 37.119566 : -90.444953 : Lodi, MO +63951 : 37.124019 : -90.27247 : Lowndes, MO +63952 : 37.028626 : -90.65619 : Mill Spring, MO +63953 : 36.585908 : -90.61875 : Naylor, MO +63954 : 36.559031 : -90.48646 : Neelyville, MO +63955 : 36.604837 : -90.68582 : Oxly, MO +63956 : 37.199631 : -90.52353 : Patterson, MO +63957 : 37.151397 : -90.69685 : Piedmont, MO +63960 : 36.956662 : -90.13128 : Puxico, MO +63961 : 36.58479 : -90.25221 : Qulin, MO +63962 : 36.712451 : -90.407013 : Rombauer, MO +63963 : 37.072189 : -90.30884 : Shook, MO +63964 : 37.248929 : -90.42887 : Silva, MO +63965 : 36.985902 : -90.99852 : Van Buren, MO +63966 : 36.947396 : -90.28499 : Wappapello, MO +63967 : 36.944333 : -90.48271 : Williamsville, MO +64001 : 39.10223 : -93.53531 : Alma, MO +64011 : 38.980527 : -94.07705 : Bates City, MO +64012 : 38.810856 : -94.53201 : Belton, MO +64013 : 38.964518 : -94.370275 : Blue Springs, MO +64014 : 39.017559 : -94.25767 : Blue Springs, MO +64015 : 39.016612 : -94.2987 : Blue Springs, MO +64016 : 39.118608 : -94.20783 : Buckner, MO +64017 : 39.203641 : -94.03213 : Camden, MO +64018 : 39.446161 : -94.73858 : Camden Point, MO +64019 : 38.763144 : -93.86635 : Centerview, MO +64020 : 38.97688 : -93.5895 : Concordia, MO +64021 : 39.116219 : -93.63663 : Corder, MO +64022 : 39.192552 : -93.68661 : Dover, MO +64024 : 39.340332 : -94.22601 : Excelsior Springs, MO +64028 : 39.283928 : -94.830159 : Farley, MO +64029 : 39.012404 : -94.21156 : Grain Valley, MO +64030 : 38.883548 : -94.52503 : Grandview, MO +64034 : 38.843576 : -94.34213 : Greenwood, MO +64035 : 39.29596 : -93.82164 : Hardin, MO +64036 : 39.214233 : -93.9294 : Henrietta, MO +64037 : 39.058604 : -93.73366 : Higginsville, MO +64040 : 38.712465 : -93.9882 : Holden, MO +64048 : 39.44609 : -94.35335 : Holt, MO +64050 : 39.09888 : -94.41447 : Independence, MO +64051 : 39.080369 : -94.387956 : Independence, MO +64052 : 39.076405 : -94.44943 : Independence, MO +64053 : 39.107845 : -94.46556 : Independence, MO +64054 : 39.108704 : -94.44115 : Independence, MO +64055 : 39.053255 : -94.4061 : Independence, MO +64056 : 39.115776 : -94.34846 : Independence, MO +64057 : 39.069165 : -94.35087 : Independence, MO +64058 : 39.150754 : -94.34502 : Independence, MO +64060 : 39.365318 : -94.3578 : Kearney, MO +64061 : 38.765972 : -94.09708 : Kingsville, MO +64062 : 39.443609 : -94.17063 : Lawson, MO +64063 : 38.913857 : -94.36397 : Lees Summit, MO +64064 : 38.98861 : -94.36474 : Lees Summit, MO +64065 : 38.966641 : -94.392885 : Lees Summit, MO +64066 : 39.134657 : -94.13247 : Levasy, MO +64067 : 39.176165 : -93.86963 : Lexington, MO +64068 : 39.246179 : -94.41763 : Liberty, MO +64069 : 39.282869 : -94.408998 : Liberty, MO +64070 : 38.895469 : -94.15315 : Lone Jack, MO +64071 : 39.049517 : -93.8359 : Mayview, MO +64072 : 39.237332 : -94.29621 : Missouri City, MO +64073 : 39.314899 : -94.293888 : Mosby, MO +64074 : 39.093759 : -94.0858 : Napoleon, MO +64075 : 38.99535 : -94.14225 : Oak Grove, MO +64076 : 38.98915 : -93.95373 : Odessa, MO +64077 : 39.22471 : -94.13971 : Orrick, MO +64078 : 38.706077 : -94.46049 : Peculiar, MO +64079 : 39.356596 : -94.78814 : Platte City, MO +64080 : 38.776782 : -94.26207 : Pleasant Hill, MO +64081 : 38.908657 : -94.40285 : Lees Summit, MO +64082 : 38.850243 : -94.3957 : Lees Summit, MO +64083 : 38.803528 : -94.45103 : Raymore, MO +64084 : 39.378901 : -94.07822 : Rayville, MO +64085 : 39.311978 : -93.96947 : Richmond, MO +64086 : 38.92811 : -94.32392 : Lees Summit, MO +64087 : 39.282869 : -94.408998 : Liberty, MO +64088 : 39.15207 : -94.18355 : Sibley, MO +64089 : 39.389339 : -94.56774 : Smithville, MO +64090 : 38.760865 : -94.16376 : Strasburg, MO +64092 : 39.228875 : -94.805673 : Waldron, MO +64093 : 38.772117 : -93.73519 : Warrensburg, MO +64096 : 39.214193 : -93.53825 : Waverly, MO +64097 : 39.120155 : -93.96495 : Wellington, MO +64098 : 39.445387 : -94.89833 : Weston, MO +64101 : 39.103037 : -94.60066 : Kansas City, MO +64102 : 39.093854 : -94.60411 : Kansas City, MO +64105 : 39.104204 : -94.58868 : Kansas City, MO +64106 : 39.103704 : -94.57311 : Kansas City, MO +64108 : 39.084554 : -94.58296 : Kansas City, MO +64109 : 39.065954 : -94.56643 : Kansas City, MO +64110 : 39.033505 : -94.57286 : Kansas City, MO +64111 : 39.056505 : -94.59439 : Kansas City, MO +64112 : 39.037605 : -94.59537 : Kansas City, MO +64113 : 39.013638 : -94.59471 : Kansas City, MO +64114 : 38.966056 : -94.59641 : Kansas City, MO +64116 : 39.14912 : -94.57314 : Kansas City, MO +64117 : 39.165253 : -94.53158 : Kansas City, MO +64118 : 39.213082 : -94.57248 : Kansas City, MO +64119 : 39.202654 : -94.51816 : Kansas City, MO +64120 : 39.125304 : -94.53234 : Kansas City, MO +64121 : 39.035038 : -94.356728 : Kansas City, MO +64123 : 39.113604 : -94.52287 : Kansas City, MO +64124 : 39.107304 : -94.53985 : Kansas City, MO +64125 : 39.104887 : -94.49541 : Kansas City, MO +64126 : 39.092304 : -94.49948 : Kansas City, MO +64127 : 39.089704 : -94.53968 : Kansas City, MO +64128 : 39.066754 : -94.5365 : Kansas City, MO +64129 : 39.051455 : -94.4966 : Kansas City, MO +64130 : 39.034838 : -94.54507 : Kansas City, MO +64131 : 38.972473 : -94.57656 : Kansas City, MO +64132 : 38.991406 : -94.551 : Kansas City, MO +64133 : 39.013905 : -94.4591 : Kansas City, MO +64134 : 38.928206 : -94.49832 : Kansas City, MO +64136 : 39.01543 : -94.39967 : Kansas City, MO +64137 : 38.929356 : -94.53932 : Kansas City, MO +64138 : 38.969806 : -94.47256 : Kansas City, MO +64139 : 38.959277 : -94.40868 : Kansas City, MO +64141 : 39.035038 : -94.356728 : Kansas City, MO +64142 : 39.035038 : -94.356728 : Kansas City, MO +64144 : 39.282869 : -94.408998 : Kansas City, MO +64145 : 38.896407 : -94.59666 : Kansas City, MO +64146 : 38.899843 : -94.57323 : Kansas City, MO +64147 : 38.849841 : -94.54555 : Kansas City, MO +64148 : 39.035038 : -94.356728 : Kansas City, MO +64149 : 38.872285 : -94.46712 : Kansas City, MO +64150 : 39.174903 : -94.62241 : Riverside, MO +64151 : 39.215652 : -94.63021 : Kansas City, MO +64152 : 39.216635 : -94.69991 : Kansas City, MO +64153 : 39.281602 : -94.71439 : Kansas City, MO +64154 : 39.261679 : -94.63353 : Kansas City, MO +64155 : 39.276828 : -94.57344 : Kansas City, MO +64156 : 39.281486 : -94.51296 : Kansas City, MO +64157 : 39.283535 : -94.4705 : Kansas City, MO +64158 : 39.230259 : -94.47794 : Kansas City, MO +64160 : 39.282869 : -94.408998 : Kansas City, MO +64161 : 39.164953 : -94.4669 : Kansas City, MO +64163 : 39.31835 : -94.67635 : Kansas City, MO +64164 : 39.335365 : -94.62462 : Kansas City, MO +64165 : 39.317974 : -94.57545 : Kansas City, MO +64166 : 39.322849 : -94.50755 : Kansas City, MO +64167 : 39.3173 : -94.48655 : Kansas City, MO +64168 : 39.343225 : -94.85161 : Kansas City, MO +64170 : 39.035038 : -94.356728 : Kansas City, MO +64171 : 39.035038 : -94.356728 : Kansas City, MO +64172 : 39.035038 : -94.356728 : Kansas City, MO +64173 : 39.035038 : -94.356728 : Kansas City, MO +64179 : 39.035038 : -94.356728 : Kansas City, MO +64180 : 39.035038 : -94.356728 : Kansas City, MO +64183 : 39.035038 : -94.356728 : Kansas City, MO +64184 : 39.035038 : -94.356728 : Kansas City, MO +64185 : 39.035038 : -94.356728 : Kansas City, MO +64187 : 39.035038 : -94.356728 : Kansas City, MO +64188 : 39.035038 : -94.356728 : Kansas City, MO +64189 : 39.035038 : -94.356728 : Kansas City, MO +64190 : 39.343225 : -94.85161 : Kansas City, MO +64191 : 39.035038 : -94.356728 : Kansas City, MO +64192 : 38.953942 : -94.5237 : Kansas City, MO +64193 : 39.035038 : -94.356728 : Kansas City, MO +64194 : 39.035038 : -94.356728 : Kansas City, MO +64195 : 39.343225 : -94.85161 : Kansas City, MO +64196 : 39.035038 : -94.356728 : Kansas City, MO +64197 : 39.035038 : -94.356728 : Kansas City, MO +64198 : 39.035038 : -94.356728 : Kansas City, MO +64199 : 39.035038 : -94.356728 : Kansas City, MO +64401 : 39.627397 : -94.72215 : Agency, MO +64402 : 40.247423 : -94.33216 : Albany, MO +64420 : 40.478118 : -94.423294 : Allendale, MO +64421 : 39.90444 : -94.92726 : Amazonia, MO +64422 : 39.898708 : -94.47948 : Amity, MO +64423 : 40.192991 : -94.85162 : Barnard, MO +64424 : 40.266201 : -94.0304 : Bethany, MO +64426 : 40.528127 : -93.8743 : Blythedale, MO +64427 : 40.115496 : -94.85573 : Bolckow, MO +64428 : 40.44627 : -95.06768 : Burlington Junction, MO +64429 : 39.743859 : -94.23378 : Cameron, MO +64430 : 39.827889 : -94.56785 : Clarksdale, MO +64431 : 40.527919 : -94.9968 : Clearmont, MO +64432 : 40.266289 : -94.66893 : Clyde, MO +64433 : 40.242954 : -94.68406 : Conception, MO +64434 : 40.264258 : -94.73379 : Conception Junction, MO +64436 : 39.850535 : -94.69403 : Cosby, MO +64437 : 40.135643 : -95.33869 : Craig, MO +64438 : 40.183995 : -94.40163 : Darlington, MO +64439 : 39.527667 : -94.76577 : Dearborn, MO +64440 : 39.585185 : -94.90957 : De Kalb, MO +64441 : 40.386181 : -94.28975 : Denver, MO +64442 : 40.481133 : -93.99079 : Eagleville, MO +64443 : 39.742355 : -94.65253 : Easton, MO +64444 : 39.493351 : -94.62989 : Edgerton, MO +64445 : 40.527275 : -95.12039 : Elmo, MO +64446 : 40.321432 : -95.41748 : Fairfax, MO +64447 : 39.892645 : -94.404415 : Fairport, MO +64448 : 39.599578 : -94.81076 : Faucett, MO +64449 : 40.041181 : -94.9786 : Fillmore, MO +64451 : 39.982831 : -95.18778 : Forest City, MO +64453 : 40.33816 : -94.44985 : Gentry, MO +64454 : 39.61222 : -94.5929 : Gower, MO +64455 : 40.187914 : -95.02142 : Graham, MO +64456 : 40.496954 : -94.38993 : Grant City, MO +64457 : 40.162731 : -94.68236 : Guilford, MO +64458 : 40.527055 : -94.15484 : Hatfield, MO +64459 : 39.917997 : -94.64152 : Helena, MO +64461 : 40.521372 : -94.8073 : Hopkins, MO +64463 : 40.057066 : -94.49898 : King City, MO +64464 : 40.024499 : -94.551058 : Polk, MO +64465 : 39.535467 : -94.30633 : Lathrop, MO +64466 : 40.17606 : -95.08755 : Maitland, MO +64467 : 40.390465 : -94.15285 : Martinsville, MO +64468 : 40.341716 : -94.87498 : Maryville, MO +64469 : 39.91125 : -94.35231 : Maysville, MO +64470 : 40.148933 : -95.23256 : Mound City, MO +64471 : 40.264749 : -94.19587 : New Hampton, MO +64473 : 39.986725 : -95.09514 : Oregon, MO +64474 : 39.771525 : -94.38471 : Osborn, MO +64475 : 40.43702 : -94.6186 : Parnell, MO +64476 : 40.447373 : -94.84243 : Pickering, MO +64477 : 39.571712 : -94.4603 : Plattsburg, MO +64478 : 40.287996 : -95.082241 : Quitman, MO +64479 : 40.351697 : -94.67399 : Ravenwood, MO +64480 : 40.061613 : -94.71818 : Rea, MO +64481 : 40.358817 : -93.90776 : Ridgeway, MO +64482 : 40.437038 : -95.53297 : Rock Port, MO +64483 : 40.03722 : -94.83935 : Rosendale, MO +64484 : 39.544889 : -95.03076 : Rushville, MO +64485 : 39.94728 : -94.8358 : Savannah, MO +64486 : 40.530798 : -94.62495 : Sheridan, MO +64487 : 40.30191 : -95.09462 : Skidmore, MO +64489 : 40.218842 : -94.5455 : Stanberry, MO +64490 : 39.74226 : -94.51483 : Stewartsville, MO +64491 : 40.452497 : -95.3661 : Tarkio, MO +64492 : 39.474988 : -94.54614 : Trimble, MO +64493 : 39.634086 : -94.31921 : Turney, MO +64494 : 39.981974 : -94.60288 : Union Star, MO +64496 : 40.497797 : -95.63121 : Watson, MO +64497 : 39.933989 : -94.22274 : Weatherby, MO +64498 : 40.554988 : -95.34418 : Westboro, MO +64499 : 40.402118 : -94.44024 : Worth, MO +64501 : 39.766144 : -94.84504 : Saint Joseph, MO +64502 : 39.676333 : -94.857364 : Saint Joseph, MO +64503 : 39.741794 : -94.83237 : Saint Joseph, MO +64504 : 39.707694 : -94.87354 : Saint Joseph, MO +64505 : 39.812344 : -94.84286 : Saint Joseph, MO +64506 : 39.787394 : -94.80941 : Saint Joseph, MO +64507 : 39.748827 : -94.80299 : Saint Joseph, MO +64508 : 39.676333 : -94.857364 : Saint Joseph, MO +64600 : 39.689033 : -93.555456 : Blue Mound, MO +64601 : 39.790132 : -93.54803 : Chillicothe, MO +64620 : 39.900508 : -94.08876 : Altamont, MO +64621 : 39.630482 : -93.478696 : Fairview, MO +64622 : 39.48743 : -93.5483 : Bogard, MO +64623 : 39.470242 : -93.3395 : Bosworth, MO +64624 : 39.581772 : -93.79569 : Braymer, MO +64625 : 39.757364 : -93.80512 : Breckenridge, MO +64628 : 39.792042 : -93.04973 : Brookfield, MO +64629 : 39.591141 : -93.792393 : Braymer, MO +64630 : 40.037077 : -93.17023 : Browning, MO +64631 : 39.79373 : -92.88165 : Bucklin, MO +64632 : 40.448528 : -93.77349 : Cainsville, MO +64633 : 39.355424 : -93.48123 : Carrollton, MO +64635 : 39.931666 : -93.45736 : Chula, MO +64636 : 40.109791 : -93.98136 : Coffey, MO +64637 : 39.575445 : -93.91742 : Cowgill, MO +64638 : 39.616309 : -93.62076 : Dawn, MO +64639 : 39.382255 : -93.22876 : De Witt, MO +64640 : 39.912973 : -93.96536 : Gallatin, MO +64641 : 40.165088 : -93.39425 : Galt, MO +64642 : 40.154895 : -93.8395 : Gilman City, MO +64643 : 39.610631 : -93.35686 : Hale, MO +64644 : 39.731689 : -93.99009 : Hamilton, MO +64645 : 40.299574 : -93.33273 : Harris, MO +64646 : 40.115577 : -93.31489 : Humphreys, MO +64647 : 40.036453 : -93.97143 : Jameson, MO +64648 : 39.977935 : -93.80694 : Jamesport, MO +64649 : 39.780045 : -94.09563 : Kidder, MO +64650 : 39.637805 : -94.04897 : Kingston, MO +64651 : 39.785731 : -93.17676 : Laclede, MO +64652 : 40.025913 : -93.43981 : Laredo, MO +64653 : 39.884096 : -93.19234 : Linneus, MO +64654 : 39.96054 : -93.988865 : Lock Springs, MO +64655 : 40.448227 : -93.25995 : Lucerne, MO +64656 : 39.671985 : -93.67718 : Ludlow, MO +64657 : 40.130633 : -94.21671 : McFall, MO +64658 : 39.668998 : -92.92916 : Marceline, MO +64659 : 39.78583 : -93.30007 : Meadville, MO +64660 : 39.57756 : -93.09683 : Mendon, MO +64661 : 40.522402 : -93.54965 : Mercer, MO +64664 : 39.743993 : -93.71189 : Mooresville, MO +64665 : 40.30922 : -93.794818 : Mount Moriah, MO +64667 : 40.385432 : -93.33102 : Newtown, MO +64668 : 39.344835 : -93.69201 : Norborne, MO +64670 : 40.051163 : -94.12713 : Pattonsburg, MO +64671 : 39.541896 : -94.05158 : Polo, MO +64672 : 40.542119 : -93.25234 : Powersville, MO +64673 : 40.391564 : -93.58237 : Princeton, MO +64674 : 39.958661 : -93.16074 : Purdin, MO +64676 : 39.657285 : -93.07282 : Rothville, MO +64677 : 39.869353 : -93.00865 : Purdin, MO +64679 : 40.230884 : -93.56742 : Spickard, MO +64680 : 39.410971 : -93.431928 : Stet, MO +64681 : 39.647537 : -93.23128 : Sumner, MO +64682 : 39.542571 : -93.46006 : Tina, MO +64683 : 40.07823 : -93.61143 : Trenton, MO +64686 : 39.743 : -93.62835 : Utica, MO +64687 : 39.315544 : -93.377455 : Wakenda, MO +64688 : 39.808311 : -93.37642 : Wheeling, MO +64689 : 39.868966 : -94.14693 : Winston, MO +64701 : 38.641509 : -94.34126 : Harrisonville, MO +64720 : 38.40388 : -94.34512 : Adrian, MO +64722 : 38.266148 : -94.55686 : Amoret, MO +64723 : 38.363183 : -94.57551 : Amsterdam, MO +64724 : 38.171591 : -94.02233 : Appleton City, MO +64725 : 38.493639 : -94.35764 : Archie, MO +64726 : 38.526134 : -93.93112 : Blairstown, MO +64728 : 37.692776 : -94.50225 : Bronaugh, MO +64730 : 38.259528 : -94.32317 : Butler, MO +64733 : 38.581879 : -93.82496 : Chilhowee, MO +64734 : 38.671517 : -94.57953 : Cleveland, MO +64735 : 38.364214 : -93.76042 : Clinton, MO +64738 : 37.899548 : -93.65335 : Collins, MO +64739 : 38.506491 : -94.09323 : Creighton, MO +64740 : 38.250989 : -93.7365 : Deepwater, MO +64741 : 37.825966 : -94.55673 : Deerfield, MO +64742 : 38.505786 : -94.56078 : Drexel, MO +64743 : 38.668901 : -94.22863 : East Lynne, MO +64744 : 37.853003 : -94.00271 : El Dorado Springs, MO +64745 : 38.164781 : -94.50955 : Foster, MO +64746 : 38.616741 : -94.49465 : Freeman, MO +64747 : 38.575037 : -94.18376 : Garden City, MO +64748 : 37.371365 : -94.09057 : Golden City, MO +64750 : 37.943914 : -94.12773 : Harwood, MO +64751 : 37.946913 : -94.42222 : Horton, MO +64752 : 38.081874 : -94.5645 : Hume, MO +64755 : 37.326648 : -94.31032 : Jasper, MO +64756 : 37.621338 : -94.01643 : Jerico Springs, MO +64759 : 37.507321 : -94.2761 : Lamar, MO +64761 : 38.585719 : -93.68518 : Leeton, MO +64762 : 37.555366 : -94.51496 : Liberal, MO +64763 : 38.137769 : -93.73225 : Lowry City, MO +64765 : 37.849889 : -94.338133 : Metz, MO +64766 : 37.501451 : -94.345591 : Milford, MO +64767 : 37.747201 : -94.22416 : Milo, MO +64769 : 37.499513 : -94.57635 : Mindenmines, MO +64770 : 38.277754 : -93.98973 : Montrose, MO +64771 : 37.766787 : -94.45313 : Moundville, MO +64772 : 37.838563 : -94.35075 : Nevada, MO +64776 : 38.039239 : -93.67676 : Osceola, MO +64777 : 38.251879 : -94.331993 : Passaic, MO +64778 : 37.906353 : -94.53424 : Richards, MO +64779 : 38.086255 : -94.38241 : Rich Hill, MO +64780 : 38.054666 : -94.07515 : Rockville, MO +64781 : 37.981824 : -93.80721 : Roscoe, MO +64783 : 38.005777 : -94.10004 : Schell City, MO +64784 : 37.665823 : -94.26399 : Sheldon, MO +64788 : 38.429061 : -94.00494 : Urich, MO +64789 : 38.024133 : -93.781478 : Vista, MO +64790 : 37.903772 : -94.21822 : Walker, MO +64801 : 37.09416 : -94.50169 : Joplin, MO +64802 : 37.206219 : -94.335453 : Joplin, MO +64803 : 37.206219 : -94.335453 : Joplin, MO +64804 : 37.047161 : -94.51124 : Joplin, MO +64810 : 36.739448 : -94.405903 : Goodman, MO +64830 : 37.236623 : -94.42087 : Alba, MO +64831 : 36.658583 : -94.44972 : Anderson, MO +64832 : 37.292467 : -94.5856 : Asbury, MO +64833 : 37.195692 : -94.12946 : Avilla, MO +64834 : 37.174256 : -94.55543 : Carl Junction, MO +64835 : 37.149458 : -94.44019 : Carterville, MO +64836 : 37.168985 : -94.31164 : Carthage, MO +64840 : 37.002574 : -94.32419 : Diamond, MO +64841 : 37.081103 : -94.41181 : Duenweg, MO +64842 : 36.799869 : -94.10161 : Fairview, MO +64843 : 36.734769 : -94.42691 : Goodman, MO +64844 : 36.913607 : -94.24731 : Granby, MO +64847 : 36.61041 : -94.4509 : Lanagan, MO +64848 : 37.172786 : -94.00043 : La Russell, MO +64849 : 37.256327 : -94.44382 : Neck City, MO +64850 : 36.86429 : -94.39016 : Neosho, MO +64853 : 36.828416 : -94.152072 : Newtonia, MO +64854 : 36.547736 : -94.47579 : Noel, MO +64855 : 37.260443 : -94.48079 : Oronogo, MO +64856 : 36.571849 : -94.28956 : Pineville, MO +64857 : 37.241939 : -94.43498 : Purcell, MO +64858 : 36.898694 : -94.52788 : Racine, MO +64859 : 37.146249 : -94.16048 : Reeds, MO +64861 : 36.712525 : -94.14484 : Rocky Comfort, MO +64862 : 37.086771 : -94.12545 : Sarcoxie, MO +64863 : 36.530266 : -94.60271 : South West City, MO +64864 : 36.902332 : -94.338957 : Saginaw, MO +64865 : 36.833365 : -94.59415 : Seneca, MO +64866 : 36.871373 : -94.15805 : Stark City, MO +64867 : 36.73901 : -94.22947 : Stella, MO +64868 : 36.632573 : -94.342802 : Tiff City, MO +64869 : 37.206219 : -94.335453 : Waco, MO +64870 : 37.155108 : -94.47465 : Webb City, MO +64873 : 37.011487 : -94.05116 : Wentworth, MO +64874 : 36.760347 : -94.05456 : Wheaton, MO +64930 : 39.781173 : -94.600647 : Washington, MO +64944 : 39.035038 : -94.356728 : Kansas City, MO +64999 : 39.035038 : -94.356728 : Kansas City, MO +65001 : 38.287405 : -92.02352 : Argyle, MO +65010 : 38.784123 : -92.24395 : Ashland, MO +65011 : 38.361276 : -92.72167 : Barnett, MO +65013 : 38.279787 : -91.74108 : Belle, MO +65014 : 38.31417 : -91.62432 : Bland, MO +65016 : 38.575173 : -91.90722 : Bonnots Mill, MO +65017 : 38.084663 : -92.49693 : Brumley, MO +65018 : 38.624862 : -92.56443 : California, MO +65020 : 38.032648 : -92.78269 : Camdenton, MO +65022 : 38.599175 : -92.178057 : Cedar City, MO +65023 : 38.630396 : -92.39311 : Centertown, MO +65024 : 38.633533 : -91.78052 : Chamois, MO +65025 : 38.662989 : -92.67253 : Clarksburg, MO +65026 : 38.311355 : -92.58395 : Eldon, MO +65031 : 38.223649 : -92.438629 : Etterville, MO +65032 : 38.351597 : -92.3956 : Eugene, MO +65034 : 38.561436 : -92.80171 : Fortuna, MO +65035 : 38.341076 : -91.92629 : Freeburg, MO +65036 : 38.675775 : -91.58968 : Gasconade, MO +65037 : 38.232201 : -92.82494 : Gravois Mills, MO +65038 : 38.196429 : -92.867804 : Laurie, MO +65039 : 38.692923 : -92.28803 : Hartsburg, MO +65040 : 38.35222 : -92.31857 : Henley, MO +65041 : 38.659798 : -91.47293 : Hermann, MO +65042 : 38.674914 : -92.610941 : High Point, MO +65043 : 38.632055 : -92.11831 : Holts Summit, MO +65046 : 38.77066 : -92.48206 : Jamestown, MO +65047 : 38.14008 : -92.58331 : Kaiser, MO +65048 : 38.364291 : -92.00546 : Koeltztown, MO +65049 : 38.192972 : -92.67262 : Lake Ozark, MO +65050 : 38.543408 : -92.69655 : Latham, MO +65051 : 38.477953 : -91.81695 : Linn, MO +65052 : 38.058473 : -92.6855 : Linn Creek, MO +65053 : 38.543762 : -92.35461 : Lohman, MO +65054 : 38.483274 : -91.95135 : Loose Creek, MO +65055 : 38.674914 : -92.610941 : McGirk, MO +65058 : 38.280617 : -92.166 : Meta, MO +65059 : 38.674735 : -91.8776 : Mokane, MO +65061 : 38.607257 : -91.64049 : Morrison, MO +65062 : 38.493511 : -91.65954 : Mount Sterling, MO +65063 : 38.723957 : -92.08132 : New Bloomfield, MO +65064 : 38.407056 : -92.48693 : Olean, MO +65065 : 38.130807 : -92.66935 : Osage Beach, MO +65066 : 38.33895 : -91.49522 : Owensville, MO +65067 : 38.751905 : -91.69826 : Portland, MO +65068 : 38.798727 : -92.6068 : Prairie Home, MO +65069 : 38.748204 : -91.57242 : Rhineland, MO +65072 : 38.248494 : -92.71511 : Rocky Mount, MO +65074 : 38.485815 : -92.46675 : Russellville, MO +65075 : 38.259655 : -92.25872 : Saint Elizabeth, MO +65076 : 38.36528 : -92.19491 : Saint Thomas, MO +65077 : 38.78615 : -91.80921 : Steedman, MO +65078 : 38.364491 : -93.00645 : Stover, MO +65079 : 38.156071 : -92.75899 : Sunrise Beach, MO +65080 : 38.634516 : -91.9766 : Tebbetts, MO +65081 : 38.642614 : -92.79811 : Tipton, MO +65082 : 38.217129 : -92.43221 : Tuscumbia, MO +65083 : 38.142363 : -92.43502 : Ulman, MO +65084 : 38.428609 : -92.84968 : Versailles, MO +65085 : 38.417602 : -92.02791 : Westphalia, MO +65101 : 38.535897 : -92.13905 : Jefferson City, MO +65102 : 38.530921 : -92.249342 : Jefferson City, MO +65103 : 38.530921 : -92.249342 : Jefferson City, MO +65104 : 38.530921 : -92.249342 : Jefferson City, MO +65105 : 38.530921 : -92.249342 : Jefferson City, MO +65106 : 38.530921 : -92.249342 : Jefferson City, MO +65107 : 38.530921 : -92.249342 : Jefferson City, MO +65108 : 38.530921 : -92.249342 : Jefferson City, MO +65109 : 38.568287 : -92.25329 : Jefferson City, MO +65110 : 38.530921 : -92.249342 : Jefferson City, MO +65111 : 38.530921 : -92.249342 : Jefferson City, MO +65201 : 38.926838 : -92.29003 : Columbia, MO +65202 : 39.00234 : -92.30033 : Columbia, MO +65203 : 38.925204 : -92.36887 : Columbia, MO +65205 : 39.044719 : -92.349574 : Columbia, MO +65211 : 38.903318 : -92.102153 : Columbia, MO +65212 : 38.937608 : -92.33043 : Columbia, MO +65215 : 38.953238 : -92.320783 : Columbia, MO +65216 : 38.903318 : -92.102153 : Columbia, MO +65217 : 38.903318 : -92.102153 : Columbia, MO +65218 : 38.903318 : -92.102153 : Columbia, MO +65230 : 39.29161 : -92.70579 : Armstrong, MO +65231 : 39.0159 : -91.8983 : Auxvasse, MO +65232 : 39.168227 : -91.75007 : Benton City, MO +65233 : 38.935305 : -92.73932 : Boonville, MO +65236 : 39.436768 : -93.11175 : Brunswick, MO +65237 : 38.782638 : -92.81139 : Bunceton, MO +65239 : 39.522573 : -92.43041 : Cairo, MO +65240 : 39.212252 : -92.13684 : Centralia, MO +65243 : 39.278949 : -92.36456 : Clark, MO +65244 : 39.487134 : -92.67946 : Clifton Hill, MO +65246 : 39.370265 : -92.99396 : Dalton, MO +65247 : 39.626821 : -92.4927 : Excello, MO +65248 : 39.148876 : -92.67027 : Fayette, MO +65250 : 39.024196 : -92.81278 : Franklin, MO +65251 : 38.852436 : -91.95808 : Fulton, MO +65254 : 39.235444 : -92.84612 : Glasgow, MO +65255 : 39.104503 : -92.23452 : Hallsville, MO +65256 : 39.137047 : -92.45914 : Harrisburg, MO +65257 : 39.286571 : -92.53612 : Higbee, MO +65258 : 39.516668 : -92.13198 : Holliday, MO +65259 : 39.442539 : -92.55356 : Huntsville, MO +65260 : 39.580455 : -92.41023 : Jacksonville, MO +65261 : 39.500486 : -92.9155 : Keytesville, MO +65262 : 38.959191 : -91.92948 : Kingdom City, MO +65263 : 39.460422 : -92.22005 : Madison, MO +65264 : 39.09551 : -91.67592 : Martinsburg, MO +65265 : 39.179316 : -91.88404 : Mexico, MO +65270 : 39.420353 : -92.4344 : Moberly, MO +65274 : 39.015654 : -92.68811 : New Franklin, MO +65275 : 39.463743 : -92.00144 : Paris, MO +65276 : 38.849336 : -92.93735 : Pilot Grove, MO +65278 : 39.342316 : -92.41251 : Renick, MO +65279 : 39.014478 : -92.53946 : Rocheport, MO +65280 : 39.213975 : -91.73545 : Rush Hill, MO +65281 : 39.461414 : -92.80488 : Salisbury, MO +65282 : 39.369471 : -91.81864 : Santa Fe, MO +65283 : 39.539711 : -91.86679 : Stoutsville, MO +65284 : 39.208685 : -92.29136 : Sturgeon, MO +65285 : 39.199784 : -91.99901 : Thompson, MO +65286 : 39.506878 : -93.20442 : Triplett, MO +65287 : 38.884926 : -92.52188 : Wooldridge, MO +65299 : 38.903318 : -92.102153 : Mid Missouri, MO +65301 : 38.702964 : -93.23231 : Sedalia, MO +65302 : 38.724577 : -93.281672 : Sedalia, MO +65305 : 38.732758 : -93.55485 : Whiteman Air Force Base, MO +65320 : 39.070941 : -92.94664 : Arrow Rock, MO +65321 : 39.093236 : -93.46794 : Blackburn, MO +65322 : 38.975799 : -92.96 : Blackwater, MO +65323 : 38.459369 : -93.62914 : Calhoun, MO +65324 : 38.151604 : -92.99055 : Climax Springs, MO +65325 : 38.451021 : -93.19156 : Cole Camp, MO +65326 : 38.203621 : -93.14236 : Edwards, MO +65327 : 38.972563 : -93.49429 : Emma, MO +65329 : 38.609313 : -92.97655 : Florence, MO +65330 : 39.226389 : -92.96214 : Gilliam, MO +65332 : 38.61917 : -93.41123 : Green Ridge, MO +65333 : 38.901528 : -93.32101 : Houstonia, MO +65334 : 38.825456 : -93.25182 : Hughesville, MO +65335 : 38.503623 : -93.33085 : Ionia, MO +65336 : 38.76699 : -93.56712 : Knob Noster, MO +65337 : 38.780854 : -93.4275 : La Monte, MO +65338 : 38.34463 : -93.26634 : Lincoln, MO +65339 : 39.180956 : -93.37889 : Malta Bend, MO +65340 : 39.10518 : -93.18783 : Marshall, MO +65344 : 39.310853 : -93.22589 : Miami, MO +65345 : 38.55338 : -93.11417 : Mora, MO +65347 : 38.99158 : -93.04083 : Nelson, MO +65348 : 38.708894 : -92.99077 : Otterville, MO +65349 : 39.221658 : -93.06252 : Slater, MO +65350 : 38.671012 : -93.09353 : Smithton, MO +65351 : 38.982222 : -93.40798 : Sweet Springs, MO +65354 : 38.675515 : -92.9168 : Syracuse, MO +65355 : 38.242861 : -93.36354 : Warsaw, MO +65360 : 38.525725 : -93.51705 : Windsor, MO +65401 : 37.94384 : -91.77105 : Rolla, MO +65402 : 37.963208 : -91.817936 : Rolla, MO +65409 : 37.876191 : -91.777182 : Rolla, MO +65432 : 38.062095 : -91.391848 : Cuba, MO +65433 : 37.309426 : -92.214372 : Bendavis, MO +65436 : 37.624096 : -91.96543 : Beulah, MO +65438 : 36.95653 : -91.49134 : Birch Tree, MO +65439 : 37.672965 : -91.1097 : Bixby, MO +65440 : 37.615344 : -91.1704 : Boss, MO +65441 : 38.126316 : -91.20688 : Bourbon, MO +65443 : 38.125349 : -92.08435 : Brinktown, MO +65444 : 37.365975 : -92.07367 : Bucyrus, MO +65446 : 37.817055 : -91.26828 : Cherryville, MO +65449 : 37.85017 : -91.49431 : Cook Station, MO +65452 : 37.95348 : -92.26091 : Crocker, MO +65453 : 38.092097 : -91.4163 : Cuba, MO +65456 : 37.780711 : -91.19197 : Davisville, MO +65457 : 37.829068 : -92.05671 : Devils Elbow, MO +65459 : 37.990962 : -92.09833 : Dixon, MO +65461 : 37.68574 : -92.04337 : Duke, MO +65462 : 37.693916 : -91.83904 : Edgar Springs, MO +65463 : 37.84762 : -92.7831 : Eldridge, MO +65464 : 37.191845 : -91.91627 : Elk Creek, MO +65466 : 37.165828 : -91.36574 : Eminence, MO +65468 : 37.260073 : -91.79134 : Eunice, MO +65470 : 37.532445 : -92.39099 : Falcon, MO +65473 : 37.737264 : -92.12685 : Fort Leonard Wood, MO +65479 : 37.353209 : -91.63376 : Hartshorn, MO +65483 : 37.316088 : -91.95471 : Houston, MO +65484 : 37.366219 : -92.20608 : Huggins, MO +65486 : 38.10273 : -92.30496 : Iberia, MO +65495 : 37.995489 : -92.101845 : Dixon, MO +65501 : 37.464282 : -91.54342 : Jadwin, MO +65529 : 37.926116 : -91.98054 : Jerome, MO +65530 : 39.235169 : -93.001374 : Gilliam, MO +65532 : 37.782433 : -91.67142 : Lake Spring, MO +65534 : 37.689335 : -92.28363 : Laquey, MO +65535 : 38.091816 : -91.29375 : Leasburg, MO +65536 : 37.678528 : -92.64733 : Lebanon, MO +65540 : 37.767937 : -91.75234 : Lecoma, MO +65541 : 37.622778 : -91.76321 : Lenox, MO +65542 : 37.489718 : -91.87351 : Licking, MO +65543 : 37.47449 : -92.2971 : Lynchburg, MO +65546 : 37.153294 : -91.337506 : Montier, MO +65548 : 36.996408 : -91.71697 : Mountain View, MO +65550 : 37.862197 : -91.93811 : Newburg, MO +65552 : 37.545213 : -92.17323 : Plato, MO +65555 : 37.37815 : -91.78576 : Raymondville, MO +65556 : 37.828549 : -92.40512 : Richland, MO +65557 : 37.508599 : -92.09108 : Roby, MO +65559 : 38.011872 : -91.61179 : Saint James, MO +65560 : 37.630896 : -91.51423 : Salem, MO +65564 : 37.241589 : -91.97203 : Solo, MO +65565 : 37.919808 : -91.25495 : Steelville, MO +65566 : 37.716972 : -91.13438 : Viburnum, MO +65567 : 37.840129 : -92.5161 : Stoutland, MO +65570 : 37.465392 : -92.09651 : Success, MO +65571 : 37.184223 : -91.65064 : Summersville, MO +65572 : 37.81186 : -92.217391 : Swedeborg, MO +65573 : 37.153294 : -91.337506 : Teresita, MO +65575 : 36.741969 : -91.851732 : West Plains, MO +65580 : 38.10675 : -91.7742 : Vichy, MO +65582 : 38.175146 : -91.94655 : Vienna, MO +65583 : 37.820367 : -92.19165 : Waynesville, MO +65584 : 37.827415 : -92.135741 : St. Robert, MO +65586 : 37.858464 : -91.426693 : Wesco, MO +65587 : 37.805756 : -92.22218 : Waynesville, MO +65588 : 36.996441 : -91.30515 : Winona, MO +65589 : 37.246525 : -91.82976 : Yukon, MO +65590 : 37.61082 : -92.94184 : Long Lane, MO +65591 : 37.97957 : -92.59117 : Montreal, MO +65601 : 37.537425 : -93.57069 : Aldrich, MO +65602 : 37.859361 : -92.705545 : Springfield, MO +65603 : 37.557203 : -93.86589 : Arcola, MO +65604 : 37.270684 : -93.59815 : Ash Grove, MO +65605 : 36.918018 : -93.71063 : Aurora, MO +65606 : 36.679742 : -91.36286 : Alton, MO +65607 : 37.736871 : -93.842468 : Caplinger Mills, MO +65608 : 36.921199 : -92.66205 : Ava, MO +65609 : 36.527558 : -92.14776 : Bakersfield, MO +65610 : 37.042293 : -93.52526 : Billings, MO +65611 : 36.54602 : -93.34364 : Blue Eye, MO +65612 : 37.218244 : -93.53629 : Bois D Arc, MO +65613 : 37.616822 : -93.40072 : Bolivar, MO +65614 : 36.734544 : -92.89942 : Bradleyville, MO +65615 : 36.660981 : -93.235798 : Branson, MO +65616 : 36.64417 : -93.25668 : Branson, MO +65617 : 37.436062 : -93.34884 : Brighton, MO +65618 : 36.755168 : -92.38351 : Brixey, MO +65619 : 37.134829 : -93.38497 : Brookline Station, MO +65620 : 37.020827 : -92.94999 : Bruner, MO +65622 : 37.630577 : -93.10129 : Buffalo, MO +65623 : 36.749457 : -93.90647 : Butterfield, MO +65624 : 36.725025 : -93.50573 : Cape Fair, MO +65625 : 36.681589 : -93.85105 : Cassville, MO +65626 : 36.610463 : -92.14245 : Caulfield, MO +65627 : 36.569847 : -93.01139 : Cedarcreek, MO +65629 : 36.897807 : -93.00082 : Chadwick, MO +65630 : 36.829356 : -93.20341 : Chestnutridge, MO +65631 : 37.015404 : -93.43738 : Clever, MO +65632 : 37.494752 : -92.83345 : Conway, MO +65633 : 36.901929 : -93.53989 : Crane, MO +65634 : 38.015379 : -93.195 : Cross Timbers, MO +65635 : 37.508827 : -93.70554 : Dadeville, MO +65636 : 37.277247 : -92.877874 : Diggins, MO +65637 : 36.753498 : -92.17819 : Dora, MO +65638 : 36.851944 : -92.33081 : Drury, MO +65640 : 37.707827 : -93.5614 : Dunnegan, MO +65641 : 36.536324 : -93.73134 : Eagle Rock, MO +65644 : 37.509611 : -93.03846 : Elkland, MO +65645 : 37.476695 : -93.539707 : Eudora, MO +65646 : 37.339631 : -93.70745 : Everton, MO +65647 : 36.690297 : -93.98011 : Exeter, MO +65648 : 37.391275 : -93.16252 : Fair Grove, MO +65649 : 37.618579 : -93.61158 : Fair Play, MO +65650 : 37.802535 : -93.44334 : Flemington, MO +65652 : 37.145969 : -92.94888 : Fordland, MO +65653 : 36.706492 : -93.11171 : Forsyth, MO +65654 : 37.021147 : -93.897434 : Freistatt, MO +65655 : 36.606281 : -92.43342 : Gainesville, MO +65656 : 36.771898 : -93.48394 : Galena, MO +65657 : 36.839078 : -93.00809 : Garrison, MO +65658 : 36.557301 : -93.64371 : Golden, MO +65659 : 37.746461 : -93.2482 : Goodson, MO +65660 : 37.330625 : -92.27211 : Graff, MO +65661 : 37.439717 : -93.83934 : Greenfield, MO +65662 : 37.465808 : -92.58794 : Grovespring, MO +65663 : 37.586048 : -93.23617 : Half Way, MO +65664 : 37.193688 : -93.62758 : Halltown, MO +65666 : 36.651607 : -92.442341 : Hardenville, MO +65667 : 37.302013 : -92.50741 : Hartville, MO +65668 : 37.913567 : -93.30305 : Hermitage, MO +65669 : 36.923067 : -93.30696 : Highlandville, MO +65672 : 36.600309 : -93.23552 : Hollister, MO +65673 : 36.617892 : -93.216187 : Hollister, MO +65674 : 37.793322 : -93.59877 : Humansville, MO +65675 : 36.930861 : -93.49861 : Hurley, MO +65676 : 36.569901 : -92.62804 : Isabella, MO +65679 : 36.603318 : -93.11007 : Kirbyville, MO +65680 : 36.660582 : -93.01608 : Kissee Mills, MO +65681 : 36.561455 : -93.46715 : Lampe, MO +65682 : 37.411943 : -93.96162 : Lockwood, MO +65684 : 37.298292 : -92.162456 : Morris, MO +65685 : 37.751804 : -93.16513 : Louisburg, MO +65686 : 36.63101 : -93.43392 : Kimberling City, MO +65688 : 36.648817 : -91.697596 : Brandsville, MO +65689 : 37.132577 : -92.09857 : Cabool, MO +65690 : 36.58466 : -91.30687 : Couch, MO +65692 : 36.602467 : -91.64615 : Koshkonong, MO +65701 : 36.79589 : -92.77286 : McClurg, MO +65702 : 37.073473 : -92.4949 : Macomb, MO +65704 : 37.128682 : -92.5821 : Mansfield, MO +65705 : 37.007586 : -93.61839 : Marionville, MO +65706 : 37.330958 : -92.90929 : Marshfield, MO +65707 : 37.220289 : -93.84181 : Miller, MO +65708 : 36.91816 : -93.91488 : Monett, MO +65710 : 37.487034 : -93.42709 : Morrisville, MO +65711 : 37.176376 : -92.27609 : Mountain Grove, MO +65712 : 37.101742 : -93.80738 : Mount Vernon, MO +65713 : 37.412437 : -92.76311 : Niangua, MO +65714 : 37.045593 : -93.30563 : Nixa, MO +65715 : 36.733415 : -92.58195 : Noble, MO +65717 : 37.093694 : -92.41231 : Norwood, MO +65720 : 36.935499 : -92.93715 : Oldfield, MO +65721 : 37.021086 : -93.21541 : Ozark, MO +65722 : 37.582527 : -92.76541 : Phillipsburg, MO +65723 : 36.956471 : -94.02134 : Pierce City, MO +65724 : 37.85245 : -93.31817 : Pittsburg, MO +65725 : 37.43378 : -93.26457 : Pleasant Hope, MO +65726 : 36.616515 : -93.241839 : Point Lookout, MO +65727 : 37.789907 : -93.27802 : Polk, MO +65728 : 36.87478 : -93.34371 : Ponce De Leon, MO +65729 : 36.525433 : -92.59234 : Pontiac, MO +65730 : 36.618869 : -94.156 : Powell, MO +65731 : 36.655356 : -93.12274 : Powersite, MO +65732 : 37.93345 : -93.17887 : Preston, MO +65733 : 36.483329 : -92.81449 : Protem, AR +65734 : 36.795164 : -93.94164 : Purdy, MO +65735 : 38.059763 : -93.48502 : Quincy, MO +65737 : 36.693007 : -93.37153 : Reeds Spring, MO +65738 : 37.124302 : -93.47407 : Republic, MO +65739 : 36.531361 : -93.28199 : Ridgedale, MO +65740 : 36.713014 : -93.16335 : Rockaway Beach, MO +65741 : 36.651607 : -92.442341 : Rockbridge, MO +65742 : 37.122896 : -93.0784 : Rogersville, MO +65744 : 36.614975 : -92.89513 : Rueter, MO +65745 : 36.530992 : -93.95233 : Seligman, MO +65746 : 37.157055 : -92.78857 : Seymour, MO +65747 : 36.587559 : -93.58793 : Shell Knob, MO +65752 : 37.343226 : -93.82877 : South Greenfield, MO +65753 : 37.000766 : -93.07945 : Sparta, MO +65754 : 36.850549 : -93.30942 : Spokane, MO +65755 : 36.802445 : -92.62563 : Squires, MO +65756 : 37.103672 : -93.95502 : Stotts City, MO +65757 : 37.281619 : -93.10971 : Strafford, MO +65759 : 36.739739 : -93.02965 : Taneyville, MO +65760 : 36.606892 : -92.26753 : Tecumseh, MO +65761 : 36.489216 : -92.69301 : Theodosia, AR +65762 : 36.681335 : -92.66205 : Thornfield, MO +65764 : 37.827158 : -92.98423 : Tunas, MO +65765 : 37.25807 : -93.343673 : Turners, MO +65766 : 36.545211 : -92.25803 : Udall, MO +65767 : 37.844753 : -93.17456 : Urbana, MO +65768 : 36.919476 : -92.25917 : Vanzant, MO +65769 : 36.935443 : -93.78328 : Verona, MO +65770 : 37.410221 : -93.54065 : Walnut Grove, MO +65771 : 36.773538 : -93.21227 : Walnut Shade, MO +65772 : 36.619334 : -94.01825 : Washburn, MO +65773 : 36.757025 : -92.53414 : Wasola, MO +65774 : 37.914579 : -93.49803 : Weaubleau, MO +65775 : 36.719145 : -91.87408 : West Plains, MO +65776 : 36.629135 : -91.986785 : South Fork, MO +65777 : 36.524268 : -91.98863 : Moody, MO +65778 : 36.531635 : -91.29933 : Myrtle, MO +65779 : 37.939779 : -93.38237 : Wheatland, MO +65781 : 37.340995 : -93.4179 : Willard, MO +65783 : 37.715074 : -92.92425 : Windyville, MO +65784 : 36.695557 : -92.32949 : Zanoni, MO +65785 : 37.703022 : -93.80653 : Stockton, MO +65786 : 37.968547 : -92.9428 : Macks Creek, MO +65787 : 38.067095 : -92.88033 : Roach, MO +65788 : 36.801103 : -91.70972 : Peace Valley, MO +65789 : 36.857128 : -91.88978 : Pomona, MO +65790 : 36.679277 : -92.10602 : Pottersville, MO +65791 : 36.543362 : -91.52391 : Thayer, MO +65793 : 36.996755 : -91.95796 : Willow Springs, MO +65801 : 37.25807 : -93.343673 : Springfield, MO +65802 : 37.212639 : -93.31817 : Springfield, MO +65803 : 37.257053 : -93.29015 : Springfield, MO +65804 : 37.161299 : -93.2519 : Springfield, MO +65805 : 37.25807 : -93.343673 : Springfield, MO +65806 : 37.206624 : -93.29923 : Springfield, MO +65807 : 37.168435 : -93.31297 : Springfield, MO +65808 : 37.25807 : -93.343673 : Springfield, MO +65809 : 37.167282 : -93.20199 : Springfield, MO +65810 : 37.120301 : -93.31461 : Springfield, MO +65814 : 37.25807 : -93.343673 : Springfield, MO +65817 : 37.25807 : -93.343673 : Springfield, MO +65890 : 37.25807 : -93.343673 : Springfield, MO +65898 : 37.180349 : -93.295137 : Springfield, MO +65899 : 37.181498 : -93.259586 : Springfield, MO +66002 : 39.553786 : -95.13472 : Atchison, KS +66006 : 38.789719 : -95.21058 : Baldwin City, KS +66007 : 39.145077 : -94.94259 : Basehor, KS +66008 : 39.703642 : -95.18541 : Bendena, KS +66010 : 38.102749 : -95.0154 : Blue Mound, KS +66012 : 39.065703 : -94.90453 : Bonner Springs, KS +66013 : 38.733271 : -94.6957 : Bucyrus, KS +66014 : 38.226434 : -94.98779 : Centerville, KS +66015 : 38.067424 : -95.40614 : Colony, KS +66016 : 39.47305 : -95.23992 : Cummings, KS +66017 : 39.720911 : -95.27417 : Denton, KS +66018 : 38.961396 : -94.97681 : De Soto, KS +66019 : 38.94575 : -95.00349 : Clearview City, KS +66020 : 39.331919 : -95.11389 : Easton, KS +66021 : 38.762545 : -95.00622 : Edgerton, KS +66023 : 39.521275 : -95.39413 : Effingham, KS +66024 : 39.756944 : -94.87824 : Elwood, KS +66025 : 38.917032 : -95.06455 : Eudora, KS +66026 : 38.404804 : -94.85125 : Fontana, KS +66027 : 39.348031 : -94.93177 : Fort Leavenworth, KS +66030 : 38.813839 : -94.9265 : Gardner, KS +66031 : 38.824863 : -94.899201 : New Century, KS +66032 : 38.278069 : -95.25997 : Garnett, KS +66033 : 38.368325 : -95.12925 : Greeley, KS +66035 : 39.85881 : -95.2569 : Highland, KS +66036 : 38.658068 : -94.852061 : Hillsdale, KS +66039 : 38.088951 : -95.17473 : Kincaid, KS +66040 : 38.35152 : -94.73705 : La Cygne, KS +66041 : 39.589832 : -95.31425 : Lancaster, KS +66042 : 38.442448 : -95.09067 : Lane, KS +66043 : 39.258624 : -94.89859 : Lansing, KS +66044 : 38.983551 : -95.23202 : Lawrence, KS +66045 : 38.952526 : -95.275623 : Lawrence, KS +66046 : 38.932303 : -95.22513 : Lawrence, KS +66047 : 38.920649 : -95.31219 : Lawrence, KS +66048 : 39.298776 : -94.93555 : Leavenworth, KS +66049 : 38.97583 : -95.30399 : Lawrence, KS +66050 : 39.025994 : -95.43138 : Lecompton, KS +66051 : 38.899901 : -94.831991 : Olathe, KS +66052 : 39.01201 : -95.06283 : Linwood, KS +66053 : 38.602219 : -94.68121 : Louisburg, KS +66054 : 39.201274 : -95.19892 : McLouth, KS +66056 : 38.141903 : -94.82166 : Mound City, KS +66058 : 39.548048 : -95.52321 : Muscotah, KS +66060 : 39.415907 : -95.32966 : Nortonville, KS +66061 : 38.889784 : -94.85558 : Olathe, KS +66062 : 38.860511 : -94.77581 : Olathe, KS +66063 : 38.899901 : -94.831991 : Olathe, KS +66064 : 38.489733 : -94.96465 : Osawatomie, KS +66066 : 39.214825 : -95.32501 : Oskaloosa, KS +66067 : 38.614986 : -95.27355 : Ottawa, KS +66070 : 39.201834 : -95.44963 : Ozawkie, KS +66071 : 38.574804 : -94.86706 : Paola, KS +66072 : 38.328516 : -94.98253 : Parker, KS +66073 : 39.097559 : -95.40163 : Perry, KS +66075 : 38.184882 : -94.70142 : Pleasanton, KS +66076 : 38.612869 : -95.44709 : Pomona, KS +66077 : 39.423964 : -95.1287 : Potter, KS +66078 : 38.49159 : -95.26646 : Princeton, KS +66079 : 38.542788 : -95.1232 : Rantoul, KS +66080 : 38.398831 : -95.2668 : Richmond, KS +66081 : 39.773145 : -95.233817 : Wolf River, KS +66083 : 38.736692 : -94.83362 : Spring Hill, KS +66085 : 38.798648 : -94.65527 : Stilwell, KS +66086 : 39.112379 : -95.08112 : Tonganoxie, KS +66087 : 39.79684 : -95.12869 : Troy, KS +66088 : 39.339975 : -95.45781 : Valley Falls, KS +66090 : 39.774356 : -94.95873 : Wathena, KS +66091 : 38.185196 : -95.33705 : Welda, KS +66092 : 38.698415 : -95.10414 : Wellsville, KS +66093 : 38.21086 : -95.50973 : Westphalia, KS +66094 : 39.959033 : -95.34005 : White Cloud, KS +66095 : 38.455968 : -95.44342 : Williamsburg, KS +66097 : 39.328743 : -95.24608 : Winchester, KS +66101 : 39.118054 : -94.62568 : Kansas City, KS +66102 : 39.112204 : -94.66643 : Kansas City, KS +66103 : 39.059254 : -94.62453 : Kansas City, KS +66104 : 39.137003 : -94.67203 : Kansas City, KS +66105 : 39.084954 : -94.63125 : Kansas City, KS +66106 : 39.066732 : -94.68872 : Kansas City, KS +66109 : 39.156275 : -94.80033 : Kansas City, KS +66110 : 39.096551 : -94.749538 : Kansas City, KS +66111 : 39.076554 : -94.79019 : Kansas City, KS +66112 : 39.117009 : -94.76614 : Kansas City, KS +66113 : 39.073539 : -94.723271 : Edwardsville, KS +66115 : 39.141419 : -94.61878 : Kansas City, KS +66117 : 39.096551 : -94.749538 : Kansas City, KS +66118 : 39.105854 : -94.61329 : Kansas City, KS +66119 : 39.096551 : -94.749538 : Kansas City, KS +66145 : 39.718697 : -96.129009 : Centralia, KS +66151 : 39.914389 : -95.734523 : Morrill, KS +66160 : 39.096551 : -94.749538 : Kansas City, KS +66201 : 39.007755 : -94.679486 : Shawnee Mission, KS +66202 : 39.023105 : -94.66658 : Shawnee Mission, KS +66203 : 39.020405 : -94.70583 : Shawnee Mission, KS +66204 : 38.992255 : -94.67528 : Shawnee Mission, KS +66205 : 39.030172 : -94.63097 : Shawnee Mission, KS +66206 : 38.959256 : -94.62223 : Shawnee Mission, KS +66207 : 38.957396 : -94.64691 : Shawnee Mission, KS +66208 : 38.999505 : -94.63102 : Shawnee Mission, KS +66209 : 38.900535 : -94.63248 : Shawnee Mission, KS +66210 : 38.924739 : -94.70473 : Shawnee Mission, KS +66211 : 38.925159 : -94.64136 : Shawnee Mission, KS +66212 : 38.959606 : -94.68189 : Shawnee Mission, KS +66213 : 38.899634 : -94.70758 : Shawnee Mission, KS +66214 : 38.961756 : -94.71498 : Shawnee Mission, KS +66215 : 38.961006 : -94.74145 : Shawnee Mission, KS +66216 : 39.009485 : -94.73924 : Shawnee Mission, KS +66217 : 39.021629 : -94.78107 : Shawnee Mission, KS +66218 : 39.011673 : -94.8126 : Shawnee Mission, KS +66219 : 38.963798 : -94.77155 : Shawnee Mission, KS +66220 : 38.964728 : -94.82117 : Shawnee Mission, KS +66221 : 38.865825 : -94.71231 : Shawnee Mission, KS +66222 : 38.899901 : -94.831991 : Shawnee Mission, KS +66223 : 38.860552 : -94.66594 : Shawnee Mission, KS +66224 : 38.862007 : -94.62127 : Shawnee Mission, KS +66225 : 38.899901 : -94.831991 : Shawnee Mission, KS +66226 : 39.029641 : -94.84844 : Shawnee Mission, KS +66227 : 38.972197 : -94.86987 : Shawnee Mission, KS +66250 : 38.899901 : -94.831991 : Shawnee Mission, KS +66251 : 38.899901 : -94.831991 : Shawnee Mission, KS +66276 : 38.899901 : -94.831991 : Shawnee Mission, KS +66279 : 38.899901 : -94.831991 : Shawnee Mission, KS +66282 : 38.899901 : -94.831991 : Shawnee Mission, KS +66283 : 38.899901 : -94.831991 : Shawnee Mission, KS +66285 : 38.899901 : -94.831991 : Shawnee Mission, KS +66286 : 38.899901 : -94.831991 : Shawnee Mission, KS +66352 : 39.814081 : -95.409339 : Robinson, KS +66356 : 37.57189 : -94.654599 : Lincoln, KS +66401 : 38.990708 : -96.29473 : Alma, KS +66402 : 38.918102 : -95.84417 : Auburn, KS +66403 : 39.877691 : -96.26985 : Axtell, KS +66404 : 39.891751 : -96.17343 : Baileyville, KS +66406 : 39.877735 : -96.41726 : Beattie, KS +66407 : 39.207942 : -96.18665 : Belvue, KS +66408 : 39.949989 : -95.96831 : Bern, KS +66409 : 38.935058 : -95.55745 : Berryton, KS +66411 : 39.656045 : -96.63791 : Blue Rapids, KS +66412 : 39.921671 : -96.77794 : Bremen, KS +66413 : 38.767905 : -95.88076 : Burlingame, KS +66414 : 38.82517 : -95.68963 : Carbondale, KS +66415 : 39.697296 : -96.14204 : Centralia, KS +66416 : 39.516144 : -95.85396 : Circleville, KS +66417 : 39.655741 : -96.03394 : Corning, KS +66418 : 39.267478 : -95.94736 : Delia, KS +66419 : 39.377827 : -95.60496 : Denison, KS +66420 : 38.964532 : -95.917186 : Dover, KS +66422 : 39.317301 : -96.06113 : Emmett, KS +66423 : 38.8421 : -96.12775 : Eskridge, KS +66424 : 39.681813 : -95.41505 : Everest, KS +66425 : 39.811818 : -95.72861 : Fairview, KS +66426 : 39.43982 : -96.506769 : Fostoria, KS +66427 : 39.689409 : -96.43876 : Frankfort, KS +66428 : 39.671207 : -95.92512 : Goff, KS +66429 : 39.094823 : -95.54874 : Grantville, KS +66431 : 38.810071 : -95.98397 : Harveyville, KS +66432 : 39.496479 : -96.07717 : Havensville, KS +66434 : 39.857155 : -95.54497 : Hiawatha, KS +66436 : 39.466971 : -95.7132 : Holton, KS +66438 : 39.853477 : -96.50361 : Home, KS +66439 : 39.659471 : -95.53567 : Horton, KS +66440 : 39.254902 : -95.69171 : Hoyt, KS +66441 : 39.01585 : -96.83653 : Junction City, KS +66442 : 39.074628 : -96.80662 : Fort Riley, KS +66449 : 39.383205 : -96.85876 : Leonardville, KS +66450 : 39.251831 : -96.31402 : Louisville, KS +66451 : 38.602873 : -95.67363 : Lyndon, KS +66481 : 37.302792 : -94.77251 : Weir, KS +66501 : 39.053241 : -96.23893 : McFarland, KS +66502 : 39.184986 : -96.56932 : Manhattan, KS +66503 : 39.241083 : -96.64914 : Manhattan, KS +66505 : 39.304937 : -96.675295 : Manhattan, KS +66506 : 39.194065 : -96.57872 : Manhattan, KS +66507 : 39.076048 : -96.0343 : Maple Hill, KS +66508 : 39.852696 : -96.63963 : Marysville, KS +66509 : 39.337531 : -95.75535 : Mayetta, KS +66510 : 38.503219 : -95.63079 : Melvern, KS +66512 : 39.201628 : -95.55387 : Meriden, KS +66514 : 39.149612 : -96.90611 : Milford, KS +66515 : 39.936121 : -95.70325 : Morrill, KS +66516 : 39.626301 : -95.72954 : Netawaka, KS +66517 : 39.113103 : -96.70935 : Ogden, KS +66518 : 39.964921 : -96.57004 : Oketo, KS +66520 : 39.417531 : -96.59975 : Olsburg, KS +66521 : 39.483435 : -96.21101 : Onaga, KS +66522 : 39.865907 : -95.9413 : Oneida, KS +66523 : 38.611619 : -95.83132 : Osage City, KS +66524 : 38.775185 : -95.52869 : Overbrook, KS +66526 : 39.06583 : -96.15801 : Paxico, KS +66527 : 39.747135 : -95.68096 : Powhattan, KS +66528 : 38.60969 : -95.54333 : Quenemo, KS +66531 : 39.303014 : -96.84635 : Riley, KS +66532 : 39.8202 : -95.36776 : Robinson, KS +66533 : 39.143168 : -95.95263 : Rossville, KS +66534 : 39.889544 : -95.82289 : Sabetha, KS +66535 : 39.21939 : -96.43346 : Saint George, KS +66536 : 39.200733 : -96.07148 : Saint Marys, KS +66537 : 38.771467 : -95.72799 : Scranton, KS +66538 : 39.840496 : -96.04833 : Seneca, KS +66539 : 39.136616 : -95.85898 : Silver Lake, KS +66540 : 39.502211 : -95.97495 : Soldier, KS +66541 : 39.977047 : -96.3636 : Summerfield, KS +66542 : 39.020437 : -95.55336 : Tecumseh, KS +66543 : 38.647459 : -95.61031 : Vassar, KS +66544 : 39.694315 : -96.28476 : Vermillion, KS +66546 : 38.895185 : -95.71995 : Wakarusa, KS +66547 : 39.220965 : -96.31279 : Wamego, KS +66548 : 39.691428 : -96.76189 : Waterville, KS +66549 : 39.427973 : -96.4027 : Westmoreland, KS +66550 : 39.654548 : -95.81925 : Wetmore, KS +66551 : 39.471738 : -96.257561 : Wheaton, KS +66552 : 39.585484 : -95.6202 : Whiting, KS +66554 : 39.472188 : -96.76806 : Randolph, KS +66555 : 39.783753 : -96.522806 : Marysville, KS +66601 : 38.988075 : -95.780662 : Topeka, KS +66603 : 39.0562 : -95.67547 : Topeka, KS +66604 : 39.04045 : -95.71698 : Topeka, KS +66605 : 39.013988 : -95.65056 : Topeka, KS +66606 : 39.058177 : -95.71088 : Topeka, KS +66607 : 39.044056 : -95.64804 : Topeka, KS +66608 : 39.077066 : -95.66824 : Topeka, KS +66609 : 38.988508 : -95.66869 : Topeka, KS +66610 : 38.981849 : -95.79016 : Topeka, KS +66611 : 39.0161 : -95.6979 : Topeka, KS +66612 : 39.040333 : -95.68048 : Topeka, KS +66614 : 39.015374 : -95.76057 : Topeka, KS +66615 : 39.067174 : -95.88115 : Topeka, KS +66616 : 39.065249 : -95.63808 : Topeka, KS +66617 : 39.130354 : -95.63373 : Topeka, KS +66618 : 39.126429 : -95.73302 : Topeka, KS +66619 : 38.946977 : -95.6938 : Topeka, KS +66620 : 39.042939 : -95.769657 : Topeka, KS +66621 : 39.042939 : -95.769657 : Topeka, KS +66622 : 39.042939 : -95.769657 : Topeka, KS +66624 : 39.042939 : -95.769657 : Topeka, KS +66625 : 39.042939 : -95.769657 : Topeka, KS +66626 : 39.042939 : -95.769657 : Topeka, KS +66628 : 39.042939 : -95.769657 : Topeka, KS +66629 : 39.042939 : -95.769657 : Topeka, KS +66634 : 39.042939 : -95.769657 : Topeka, KS +66635 : 39.199103 : -96.43889 : St. George, KS +66636 : 39.042939 : -95.769657 : Topeka, KS +66637 : 39.042939 : -95.769657 : Topeka, KS +66638 : 39.042939 : -95.769657 : Topeka, KS +66642 : 39.042939 : -95.769657 : Topeka, KS +66647 : 39.042939 : -95.769657 : Topeka, KS +66650 : 39.672989 : -95.788948 : Powhattan, KS +66652 : 39.042939 : -95.769657 : Topeka, KS +66653 : 39.042939 : -95.769657 : Topeka, KS +66658 : 39.042939 : -95.769657 : Topeka, KS +66667 : 39.042939 : -95.769657 : Topeka, KS +66675 : 39.042939 : -95.769657 : Topeka, KS +66683 : 39.042939 : -95.769657 : Topeka, KS +66686 : 39.042939 : -95.769657 : Topeka, KS +66692 : 39.042939 : -95.769657 : Topeka, KS +66699 : 39.042939 : -95.769657 : Topeka, KS +66701 : 37.823295 : -94.73389 : Fort Scott, KS +66710 : 37.551596 : -95.65671 : Altoona, KS +66711 : 37.644301 : -94.64895 : Arcadia, KS +66712 : 37.547763 : -94.70622 : Arma, KS +66713 : 37.026091 : -94.74929 : Baxter Springs, KS +66714 : 37.628076 : -95.73245 : Benedict, KS +66716 : 37.916575 : -95.07063 : Bronson, KS +66717 : 37.705016 : -95.69832 : Buffalo, KS +66720 : 37.666078 : -95.45681 : Chanute, KS +66721 : 37.59292 : -94.729782 : Lincoln, KS +66724 : 37.347065 : -94.82665 : Cherokee, KS +66725 : 37.17473 : -94.87713 : Columbus, KS +66727 : 37.559151 : -95.743835 : Coyville, KS +66728 : 37.16944 : -94.704133 : Crestline, KS +66732 : 37.799021 : -95.18806 : Elsmore, KS +66733 : 37.594166 : -95.24755 : Erie, KS +66734 : 37.616393 : -94.82712 : Farlington, KS +66735 : 37.522439 : -94.70402 : Franklin, KS +66736 : 37.539672 : -95.84307 : Fredonia, KS +66738 : 38.01707 : -94.71256 : Fulton, KS +66739 : 37.091398 : -94.65462 : Galena, KS +66740 : 37.464733 : -95.37039 : Galesburg, KS +66741 : 37.726754 : -94.65864 : Arcadia, KS +66742 : 37.923162 : -95.346697 : Gas, KS +66743 : 37.506616 : -94.86078 : Girard, KS +66746 : 37.66749 : -94.95144 : Hepler, KS +66747 : 37.424622 : -95.681454 : Neodesha, KS +66748 : 37.802718 : -95.43452 : Humboldt, KS +66749 : 37.926666 : -95.39695 : Iola, KS +66751 : 37.918044 : -95.2947 : La Harpe, KS +66752 : 37.332679 : -94.977587 : Ross, KS +66753 : 37.364275 : -95.00432 : McCune, KS +66754 : 38.017205 : -94.8929 : Mapleton, KS +66755 : 37.933658 : -95.16768 : Moran, KS +66756 : 37.554735 : -94.63283 : Mulberry, KS +66757 : 37.420016 : -95.683 : Neodesha, KS +66758 : 38.005429 : -95.56976 : Neosho Falls, KS +66759 : 37.568611 : -95.93926 : New Albany, KS +66760 : 37.344142 : -94.62156 : Opolis, KS +66761 : 37.900385 : -95.56255 : Piqua, KS +66762 : 37.408511 : -94.70414 : Pittsburg, KS +66763 : 37.455819 : -94.69088 : Frontenac, KS +66767 : 38.066976 : -94.69495 : Prescott, KS +66769 : 37.840828 : -94.89202 : Redfield, KS +66770 : 37.074648 : -94.71538 : Riverton, KS +66771 : 37.500157 : -95.15952 : Saint Paul, KS +66772 : 37.75459 : -95.18816 : Savonburg, KS +66773 : 37.27522 : -94.82738 : Scammon, KS +66775 : 37.691117 : -95.14826 : Stark, KS +66776 : 37.478331 : -95.48417 : Thayer, KS +66777 : 37.777886 : -95.93877 : Toronto, KS +66778 : 37.000262 : -94.84372 : Treece, KS +66779 : 37.848943 : -94.97218 : Uniontown, KS +66780 : 37.603419 : -95.06279 : Walnut, KS +66781 : 37.300262 : -94.75259 : Weir, KS +66782 : 37.284559 : -94.92613 : West Mineral, KS +66783 : 37.873778 : -95.7313 : Yates Center, KS +66801 : 38.410549 : -96.19736 : Emporia, KS +66804 : 39.964236 : -95.972744 : Bern, KS +66830 : 38.614057 : -96.08821 : Admire, KS +66833 : 38.672825 : -96.16385 : Allen, KS +66834 : 38.862376 : -96.47367 : Alta Vista, KS +66835 : 38.513771 : -96.25853 : Americus, KS +66838 : 38.536957 : -96.78484 : Burdick, KS +66839 : 38.211108 : -95.74293 : Burlington, KS +66840 : 38.064497 : -96.89128 : Burns, KS +66842 : 38.018802 : -96.66349 : Cassoday, KS +66843 : 38.224172 : -96.77229 : Cedar Point, KS +66845 : 38.344157 : -96.52969 : Cottonwood Falls, KS +66846 : 38.649811 : -96.49331 : Council Grove, KS +66849 : 38.877563 : -96.58981 : Dwight, KS +66850 : 38.395027 : -96.69377 : Elmdale, KS +66851 : 38.228452 : -96.92825 : Florence, KS +66852 : 38.078496 : -95.89505 : Gridley, KS +66853 : 38.000062 : -96.21271 : Hamilton, KS +66854 : 38.281776 : -95.9686 : Hartford, KS +66855 : 37.888276 : -96.242059 : Lamont, KS +66856 : 38.427161 : -95.82627 : Lebo, KS +66857 : 38.095388 : -95.63461 : Le Roy, KS +66858 : 38.473549 : -96.95611 : Lincolnville, KS +66859 : 38.556941 : -96.96494 : Lost Springs, KS +66860 : 38.126728 : -96.16635 : Madison, KS +66861 : 38.359189 : -97.01768 : Marion, KS +66862 : 38.14969 : -96.51545 : Matfield Green, KS +66863 : 37.831349 : -96.07111 : Neal, KS +66864 : 38.368683 : -95.98917 : Neosho Rapids, KS +66865 : 38.241502 : -96.20048 : Olpe, KS +66866 : 38.175115 : -97.1049 : Peabody, KS +66868 : 38.532132 : -95.97685 : Reading, KS +66869 : 38.415712 : -96.50104 : Strong City, KS +66870 : 37.925128 : -96.00967 : Virgil, KS +66871 : 38.382581 : -95.62641 : Waverly, KS +66872 : 38.79144 : -96.73809 : White City, KS +66873 : 38.682093 : -96.663865 : Wilsey, KS +66901 : 39.568803 : -97.64627 : Concordia, KS +66930 : 39.718857 : -97.49191 : Agenda, KS +66932 : 39.761524 : -98.92213 : Athol, KS +66933 : 39.675346 : -96.87232 : Barnes, KS +66935 : 39.824657 : -97.62881 : Belleville, KS +66936 : 39.908065 : -98.29451 : Burr Oak, KS +66937 : 39.594163 : -97.26295 : Clifton, KS +66938 : 39.594485 : -97.40544 : Clyde, KS +66939 : 39.837438 : -97.90386 : Courtland, KS +66940 : 39.81884 : -97.44917 : Cuba, KS +66941 : 39.827165 : -98.44356 : Esbon, KS +66942 : 39.791338 : -97.9986 : Formoso, KS +66943 : 39.688224 : -96.96583 : Greenleaf, KS +66944 : 39.841886 : -97.30119 : Haddam, KS +66945 : 39.888945 : -96.88156 : Hanover, KS +66946 : 39.968115 : -96.98906 : Hollenberg, KS +66948 : 39.609023 : -97.84511 : Jamestown, KS +66949 : 39.652106 : -98.18519 : Jewell, KS +66951 : 39.792636 : -99.03877 : Kensington, KS +66952 : 39.835476 : -98.58668 : Lebanon, KS +66953 : 39.689909 : -97.10565 : Linn, KS +66955 : 39.966106 : -97.3249 : Mahaska, KS +66956 : 39.790935 : -98.20722 : Mankato, KS +66958 : 39.883769 : -97.16491 : Morrowville, KS +66959 : 39.933522 : -97.53242 : Munden, KS +66960 : 39.934395 : -97.42125 : Narka, KS +66961 : 39.827894 : -97.650902 : Norway, KS +66962 : 39.618962 : -97.13434 : Palmer, KS +66963 : 39.633913 : -98.02957 : Randall, KS +66964 : 39.931181 : -97.81023 : Republic, KS +66966 : 39.776903 : -97.76394 : Scandia, KS +66967 : 39.794538 : -98.79561 : Smith Center, KS +66968 : 39.815522 : -97.06111 : Washington, KS +66969 : 39.798339 : -97.783181 : Scandia, KS +66970 : 39.936773 : -98.04227 : Webber, KS +66998 : 39.588426 : -97.788817 : Buffalo, KS +67001 : 37.779021 : -97.62602 : Andale, KS +67002 : 37.693585 : -97.11321 : Andover, KS +67003 : 37.144088 : -98.03857 : Anthony, KS +67004 : 37.270346 : -97.76478 : Argonia, KS +67005 : 37.067387 : -97.02831 : Arkansas City, KS +67008 : 37.454925 : -96.83152 : Atlanta, KS +67009 : 37.233697 : -98.24779 : Attica, KS +67010 : 37.68066 : -96.98153 : Augusta, KS +67012 : 37.660135 : -96.53372 : Beaumont, KS +67013 : 37.390809 : -97.29152 : Belle Plaine, KS +67016 : 37.886437 : -97.51828 : Bentley, KS +67017 : 37.818158 : -97.10839 : Benton, KS +67018 : 37.076529 : -97.87011 : Bluff City, KS +67019 : 37.314208 : -96.78463 : Burden, KS +67020 : 38.008128 : -97.67008 : Burrton, KS +67021 : 37.784193 : -98.89486 : Byers, KS +67022 : 37.062453 : -97.60782 : Caldwell, KS +67023 : 37.327404 : -96.65629 : Cambridge, KS +67024 : 37.104057 : -96.48447 : Cedar Vale, KS +67025 : 37.647611 : -97.78765 : Cheney, KS +67026 : 37.518342 : -97.49452 : Clearwater, KS +67028 : 37.469499 : -98.93543 : Coats, KS +67029 : 37.259332 : -99.33385 : Coldwater, KS +67030 : 37.787206 : -97.54135 : Colwich, KS +67031 : 37.400431 : -97.65338 : Conway Springs, KS +67033 : 37.519257 : -97.152533 : Richland, KS +67035 : 37.655003 : -98.39643 : Cunningham, KS +67036 : 37.298982 : -97.87357 : Danville, KS +67037 : 37.557434 : -97.25167 : Derby, KS +67038 : 37.150816 : -96.7426 : Dexter, KS +67039 : 37.513371 : -96.99851 : Douglass, KS +67041 : 38.054115 : -97.12711 : Elbing, KS +67042 : 37.830417 : -96.84294 : El Dorado, KS +67045 : 37.854192 : -96.32433 : Eureka, KS +67047 : 37.64248 : -96.07105 : Fall River, KS +67049 : 37.173305 : -97.84835 : Freeport, KS +67050 : 37.663743 : -97.68539 : Garden Plain, KS +67051 : 37.104798 : -97.19239 : Geuda Springs, KS +67052 : 37.651845 : -97.5739 : Goddard, KS +67053 : 38.246972 : -97.34817 : Goessel, KS +67054 : 37.590146 : -99.29989 : Greensburg, KS +67055 : 37.78335 : -97.205419 : Greenwich, KS +67056 : 38.007112 : -97.5139 : Halstead, KS +67057 : 37.041728 : -98.67631 : Hardtner, KS +67058 : 37.297898 : -98.03916 : Harper, KS +67059 : 37.658761 : -99.09672 : Haviland, KS +67060 : 37.552425 : -97.34785 : Haysville, KS +67061 : 37.088979 : -98.37544 : Hazelton, KS +67062 : 38.142541 : -97.43368 : Hesston, KS +67063 : 38.347058 : -97.21489 : Hillsboro, KS +67065 : 37.461079 : -98.54262 : Isabel, KS +67066 : 37.746879 : -98.75308 : Iuka, KS +67067 : 37.795395 : -97.27309 : Kechi, KS +67068 : 37.618339 : -98.10612 : Kingman, KS +67069 : 37.5731 : -98.23619 : Ninnescah, KS +67070 : 37.037218 : -98.49342 : Kiowa, KS +67071 : 37.316336 : -98.83859 : Lake City, KS +67072 : 37.561112 : -96.59795 : Latham, KS +67073 : 38.376681 : -97.31611 : Lehigh, KS +67074 : 37.686034 : -96.7069 : Leon, KS +67101 : 37.775593 : -97.46797 : Maize, KS +67102 : 37.043519 : -96.75924 : Maple City, KS +67103 : 37.26475 : -97.55569 : Mayfield, KS +67104 : 37.286936 : -98.60271 : Medicine Lodge, KS +67105 : 37.251663 : -97.66554 : Milan, KS +67106 : 37.447829 : -97.75943 : Milton, KS +67107 : 38.193313 : -97.52827 : Moundridge, KS +67108 : 37.831684 : -97.67462 : Mount Hope, KS +67109 : 37.581777 : -99.47608 : Mullinville, KS +67110 : 37.474542 : -97.22812 : Mulvane, KS +67111 : 37.625625 : -97.92699 : Murdock, KS +67112 : 37.442074 : -98.41625 : Nashville, KS +67114 : 38.051679 : -97.323 : Newton, KS +67117 : 38.073865 : -97.34635 : North Newton, KS +67118 : 37.460764 : -97.85182 : Norwich, KS +67119 : 37.253486 : -97.18161 : Oxford, KS +67120 : 37.459433 : -97.3804 : Peck, KS +67122 : 37.629754 : -96.40529 : Piedmont, KS +67123 : 37.946174 : -97.01423 : Potwin, KS +67124 : 37.642738 : -98.75394 : Pratt, KS +67127 : 37.196316 : -99.50499 : Protection, KS +67128 : 37.436662 : -98.03131 : Rago, KS +67131 : 37.42198 : -97.00329 : Rock, KS +67132 : 37.813869 : -96.57856 : Rosalia, KS +67133 : 37.573226 : -97.12421 : Rose Hill, KS +67134 : 37.494728 : -98.68324 : Sawyer, KS +67135 : 37.921185 : -97.44004 : Sedgwick, KS +67137 : 37.647292 : -96.22324 : Severy, KS +67138 : 37.253964 : -98.41429 : Sharon, KS +67140 : 37.065497 : -97.36562 : South Haven, KS +67142 : 37.468889 : -98.21584 : Spivey, KS +67143 : 37.363445 : -98.96044 : Sun City, KS +67144 : 37.804776 : -97.01477 : Towanda, KS +67146 : 37.395382 : -97.10432 : Udall, KS +67147 : 37.853935 : -97.33059 : Valley Center, KS +67149 : 37.538257 : -97.62031 : Viola, KS +67150 : 37.026317 : -98.20814 : Waldron, KS +67151 : 38.13467 : -97.25509 : Walton, KS +67152 : 37.268972 : -97.41247 : Wellington, KS +67154 : 37.963712 : -97.12193 : Whitewater, KS +67155 : 37.34323 : -99.14364 : Wilmore, KS +67156 : 37.256575 : -96.97885 : Winfield, KS +67159 : 37.422585 : -98.30304 : Zenda, KS +67201 : 37.651974 : -97.258997 : Wichita, KS +67202 : 37.686992 : -97.33362 : Wichita, KS +67203 : 37.703932 : -97.36237 : Wichita, KS +67204 : 37.754443 : -97.35763 : Wichita, KS +67205 : 37.738348 : -97.42917 : Wichita, KS +67206 : 37.703247 : -97.23166 : Wichita, KS +67207 : 37.669803 : -97.23289 : Wichita, KS +67208 : 37.701997 : -97.28114 : Wichita, KS +67209 : 37.67129 : -97.4372 : Wichita, KS +67210 : 37.638946 : -97.26652 : Wichita, KS +67211 : 37.667175 : -97.31917 : Wichita, KS +67212 : 37.700632 : -97.4343 : Wichita, KS +67213 : 37.669067 : -97.36204 : Wichita, KS +67214 : 37.705384 : -97.31777 : Wichita, KS +67215 : 37.626676 : -97.42398 : Wichita, KS +67216 : 37.619858 : -97.31751 : Wichita, KS +67217 : 37.62421 : -97.36312 : Wichita, KS +67218 : 37.670092 : -97.27953 : Wichita, KS +67219 : 37.765919 : -97.31997 : Wichita, KS +67220 : 37.745561 : -97.27841 : Wichita, KS +67221 : 37.628158 : -97.26626 : McConnell A F B, KS +67222 : 37.751267 : -97.262371 : Wichita, KS +67223 : 37.73674 : -97.499 : Wichita, KS +67226 : 37.750904 : -97.23115 : Wichita, KS +67227 : 37.62812 : -97.491566 : Wichita, KS +67228 : 37.774174 : -97.171098 : Wichita, KS +67230 : 37.683392 : -97.1706 : Wichita, KS +67231 : 37.556692 : -97.410154 : Wichita, KS +67232 : 37.639491 : -97.171372 : Wichita, KS +67233 : 37.568951 : -97.33449 : Wichita, KS +67235 : 37.692778 : -97.4959 : Wichita, KS +67236 : 37.542182 : -97.287134 : Wichita, KS +67251 : 37.693588 : -97.480419 : Wichita, KS +67256 : 37.693588 : -97.480419 : Wichita, KS +67257 : 37.693588 : -97.480419 : Wichita, KS +67259 : 37.693588 : -97.480419 : Wichita, KS +67260 : 37.693588 : -97.480419 : Wichita, KS +67275 : 37.693588 : -97.480419 : Wichita, KS +67276 : 37.693588 : -97.480419 : Wichita, KS +67277 : 37.693588 : -97.480419 : Wichita, KS +67278 : 37.693588 : -97.480419 : Wichita, KS +67301 : 37.216856 : -95.72898 : Independence, KS +67330 : 37.180641 : -95.30389 : Altamont, KS +67332 : 37.051587 : -95.2227 : Bartlett, KS +67333 : 37.021498 : -95.91616 : Caney, KS +67334 : 37.026172 : -96.17845 : Chautauqua, KS +67335 : 37.278991 : -95.54722 : Cherryvale, KS +67336 : 37.047431 : -95.08365 : Chetopa, KS +67337 : 37.041838 : -95.61814 : Coffeyville, KS +67339 : 37.050156 : -95.504561 : Howard, KS +67340 : 37.058083 : -95.70982 : Dearing, KS +67341 : 37.347626 : -95.41692 : Dennis, KS +67342 : 37.059559 : -95.356 : Edna, KS +67344 : 37.279439 : -95.93171 : Elk City, KS +67345 : 37.37477 : -96.19019 : Elk Falls, KS +67346 : 37.326384 : -96.43368 : Grenola, KS +67347 : 37.103604 : -95.9426 : Havana, KS +67349 : 37.479165 : -96.26594 : Howard, KS +67351 : 37.135671 : -95.58247 : Liberty, KS +67352 : 37.376701 : -96.07025 : Longton, KS +67353 : 37.337559 : -96.29965 : Moline, KS +67354 : 37.200877 : -95.41003 : Mound Valley, KS +67355 : 37.053112 : -96.01065 : Niotaze, KS +67356 : 37.182538 : -95.13678 : Oswego, KS +67357 : 37.339913 : -95.25834 : Parsons, KS +67360 : 37.074399 : -96.09053 : Peru, KS +67361 : 37.107867 : -96.22087 : Sedan, KS +67363 : 37.327608 : -95.71842 : Sycamore, KS +67364 : 37.035742 : -95.82167 : Tyro, KS +67401 : 38.827875 : -97.61553 : Salina, KS +67402 : 38.78359 : -97.650446 : Salina, KS +67410 : 38.94112 : -97.21973 : Abilene, KS +67411 : 37.872226 : -97.005915 : Fairview, KS +67416 : 38.674468 : -97.59811 : Assaria, KS +67417 : 39.433975 : -97.54588 : Aurora, KS +67418 : 39.18871 : -98.04615 : Barnard, KS +67419 : 38.362379 : -97.944818 : Union, KS +67420 : 39.440546 : -98.07736 : Beloit, KS +67422 : 39.03407 : -97.58943 : Bennington, KS +67423 : 38.980027 : -97.97921 : Beverly, KS +67425 : 38.813761 : -97.9286 : Brookville, KS +67427 : 38.50978 : -98.39638 : Bushton, KS +67428 : 38.369576 : -97.41789 : Canton, KS +67430 : 39.520894 : -98.43768 : Cawker City, KS +67431 : 38.959448 : -97.01425 : Chapman, KS +67432 : 39.341513 : -97.1552 : Clay Center, KS +67435 : 37.125692 : -96.190914 : Sedan, KS +67436 : 39.26795 : -97.73798 : Delphos, KS +67437 : 39.50357 : -98.55591 : Downs, KS +67438 : 38.499781 : -97.27114 : Durham, KS +67439 : 38.744056 : -98.22729 : Ellsworth, KS +67441 : 38.894257 : -97.11391 : Enterprise, KS +67442 : 38.660286 : -97.75005 : Falun, KS +67443 : 38.372202 : -97.53229 : Galva, KS +67444 : 38.527035 : -98.1392 : Geneseo, KS +67445 : 39.367111 : -97.82634 : Glasco, KS +67446 : 39.503154 : -98.3031 : Glen Elder, KS +67447 : 39.475173 : -96.99137 : Green, KS +67448 : 38.657542 : -97.40005 : Gypsum, KS +67449 : 38.677306 : -96.92129 : Herington, KS +67450 : 38.61616 : -98.43104 : Holyrood, KS +67451 : 38.689794 : -97.12005 : Hope, KS +67452 : 39.229204 : -98.38455 : Hunter, KS +67454 : 38.703443 : -98.13731 : Kanopolis, KS +67455 : 39.034792 : -98.17577 : Lincoln, KS +67456 : 38.590743 : -97.67156 : Lindsborg, KS +67457 : 38.40198 : -98.00626 : Little River, KS +67458 : 39.171661 : -97.30594 : Longford, KS +67459 : 38.57504 : -98.33675 : Lorraine, KS +67460 : 38.367298 : -97.67719 : Mcpherson, KS +67464 : 38.590489 : -97.89512 : Marquette, KS +67466 : 39.342965 : -97.47176 : Miltonvale, KS +67467 : 39.131275 : -97.70794 : Minneapolis, KS +67468 : 39.459244 : -97.22525 : Morganville, KS +67470 : 38.891137 : -97.51114 : New Cambria, KS +67472 : 39.248278 : -97.410025 : Chapman, KS +67473 : 39.409385 : -98.7059 : Osborne, KS +67474 : 39.579664 : -98.70224 : Portis, KS +67475 : 38.596837 : -97.05274 : Ramona, KS +67476 : 38.391722 : -97.648402 : Roxbury, KS +67478 : 39.384449 : -97.93323 : Simpson, KS +67479 : 38.702546 : -97.642827 : Smolan, KS +67480 : 38.950725 : -97.39924 : Solomon, KS +67481 : 39.023406 : -98.40165 : Sylvan Grove, KS +67482 : 39.027261 : -97.25917 : Talmage, KS +67483 : 38.538684 : -97.15947 : Tampa, KS +67484 : 38.998387 : -97.83261 : Tescott, KS +67485 : 39.32071 : -98.50294 : Tipton, KS +67487 : 39.180886 : -97.04513 : Wakefield, KS +67488 : 39.188023 : -97.435986 : Durham, KS +67490 : 38.817788 : -98.44972 : Wilson, KS +67491 : 38.367098 : -97.89977 : Windom, KS +67492 : 38.807138 : -96.9568 : Woodbine, KS +67495 : 39.339801 : -98.470661 : Tipton, KS +67501 : 38.034292 : -97.92382 : Hutchinson, KS +67502 : 38.094945 : -97.929 : Hutchinson, KS +67504 : 37.953219 : -98.085924 : Hutchinson, KS +67505 : 38.027185 : -97.93976 : South Hutchinson, KS +67510 : 37.992099 : -98.22479 : Abbyville, KS +67511 : 38.442368 : -99.04195 : Albert, KS +67512 : 38.238827 : -98.31957 : Alden, KS +67513 : 38.446509 : -99.53906 : Alexander, KS +67514 : 37.876541 : -98.18757 : Arlington, KS +67515 : 38.674455 : -100.05532 : Arnold, KS +67516 : 38.400425 : -99.68699 : Bazine, KS +67518 : 38.427837 : -100.16811 : Beeler, KS +67519 : 37.947324 : -99.10017 : Belpre, KS +67520 : 38.573848 : -99.18943 : Bison, KS +67521 : 38.618706 : -99.74865 : Brownell, KS +67522 : 38.122234 : -97.74843 : Buhler, KS +67523 : 38.200452 : -99.54314 : Burdett, KS +67524 : 38.360414 : -98.37397 : Chase, KS +67525 : 38.555566 : -98.56309 : Claflin, KS +67526 : 38.347872 : -98.56205 : Ellinwood, KS +67529 : 38.070818 : -99.2477 : Garfield, KS +67530 : 38.363151 : -98.78495 : Great Bend, KS +67543 : 37.898787 : -97.79101 : Haven, KS +67544 : 38.562172 : -98.76647 : Hoisington, KS +67545 : 38.15141 : -98.64732 : Hudson, KS +67546 : 38.224457 : -97.80321 : Inman, KS +67547 : 37.918313 : -99.43134 : Kinsley, KS +67548 : 38.560733 : -99.3193 : La Crosse, KS +67550 : 38.179418 : -99.12757 : Larned, KS +67552 : 37.876262 : -99.23229 : Lewis, KS +67553 : 38.654948 : -99.32062 : Liebenthal, KS +67554 : 38.356474 : -98.2025 : Lyons, KS +67556 : 38.589291 : -99.52231 : McCracken, KS +67557 : 37.934689 : -98.95861 : Macksville, KS +67559 : 38.41473 : -99.44681 : Nekoma, KS +67560 : 38.443723 : -99.92622 : Ness City, KS +67561 : 38.137119 : -98.08847 : Nickerson, KS +67563 : 37.861674 : -99.56069 : Offerle, KS +67564 : 38.526757 : -98.93228 : Olmitz, KS +67565 : 38.587486 : -99.04206 : Otis, KS +67566 : 37.953609 : -98.10291 : Partridge, KS +67567 : 38.262021 : -98.97856 : Pawnee Rock, KS +67568 : 38.006382 : -98.31657 : Plevna, KS +67570 : 37.784834 : -97.98231 : Pretty Prairie, KS +67572 : 38.660733 : -99.90598 : Ransom, KS +67573 : 38.278487 : -98.41672 : Raymond, KS +67574 : 38.193997 : -99.40331 : Rozel, KS +67575 : 38.445884 : -99.26298 : Rush Center, KS +67576 : 38.014216 : -98.79487 : Saint John, KS +67578 : 37.976752 : -98.59126 : Stafford, KS +67579 : 38.19784 : -98.20222 : Sterling, KS +67581 : 37.967166 : -98.41303 : Sylvia, KS +67583 : 37.804591 : -98.45617 : Turon, KS +67584 : 38.669493 : -100.19251 : Utica, KS +67585 : 37.94119 : -97.871147 : Yoder, KS +67601 : 38.881082 : -99.32559 : Hays, KS +67621 : 39.792611 : -99.13229 : Agra, KS +67622 : 39.891365 : -99.72471 : Almena, KS +67623 : 39.461403 : -98.95757 : Alton, KS +67625 : 39.360896 : -99.68559 : Bogue, KS +67626 : 38.86913 : -98.70904 : Bunker Hill, KS +67627 : 38.927648 : -99.216051 : Catharine, KS +67628 : 39.647706 : -98.96837 : Cedar, KS +67629 : 39.707176 : -100.17544 : Clayton, KS +67630 : 37.097273 : -96.100176 : Belleville, KS +67631 : 39.028141 : -100.08722 : Collyer, KS +67632 : 39.336054 : -99.60749 : Damar, KS +67634 : 38.834958 : -98.60426 : Dorrance, KS +67635 : 39.610945 : -100.45129 : Dresden, KS +67637 : 38.933306 : -99.60135 : Ellis, KS +67638 : 39.640967 : -98.84528 : Gaylord, KS +67639 : 39.652794 : -99.30712 : Glade, KS +67640 : 38.878181 : -99.03432 : Gorham, KS +67642 : 39.360338 : -99.8456 : Hill City, KS +67643 : 39.676204 : -100.29331 : Jennings, KS +67644 : 39.644576 : -99.1437 : Kirwin, KS +67645 : 39.609655 : -99.91904 : Lenora, KS +67646 : 39.65573 : -99.59094 : Logan, KS +67647 : 39.947283 : -99.53467 : Long Island, KS +67648 : 39.059815 : -98.55613 : Lucas, KS +67649 : 39.120158 : -98.69182 : Luray, KS +67650 : 39.359896 : -100.08518 : Morland, KS +67651 : 39.202987 : -99.04018 : Natoma, KS +67653 : 39.907372 : -100.20732 : Norcatur, KS +67654 : 39.822766 : -99.93288 : Norton, KS +67656 : 38.989828 : -99.75144 : Ogallah, KS +67657 : 39.22742 : -99.61488 : Palco, KS +67658 : 39.118835 : -98.91517 : Paradise, KS +67659 : 39.301053 : -99.98755 : Penokee, KS +67660 : 38.704467 : -99.1815 : Pfeifer, KS +67661 : 39.799834 : -99.32852 : Phillipsburg, KS +67663 : 39.212784 : -99.31688 : Plainville, KS +67664 : 39.823946 : -99.56002 : Prairie View, KS +67665 : 38.866551 : -98.8672 : Russell, KS +67666 : 39.684032 : -99.598374 : Towanda, KS +67667 : 38.711024 : -99.33117 : Schoenchen, KS +67669 : 39.436461 : -99.32578 : Stockton, KS +67670 : 39.799148 : -99.45494 : Stuttgart, KS +67671 : 38.861194 : -99.15047 : Victoria, KS +67672 : 39.015522 : -99.89944 : Wa Keeney, KS +67673 : 39.166845 : -98.79762 : Waldo, KS +67674 : 38.868064 : -99.07886 : Walker, KS +67675 : 39.450984 : -99.09119 : Woodston, KS +67701 : 39.394701 : -101.04485 : Colby, KS +67730 : 39.810204 : -101.1109 : Atwood, KS +67731 : 39.758864 : -101.54448 : Bird City, KS +67732 : 39.424782 : -101.3533 : Brewster, KS +67733 : 39.356075 : -101.51227 : Edson, KS +67734 : 39.488765 : -100.89755 : Gem, KS +67735 : 39.332837 : -101.75422 : Goodland, KS +67736 : 38.882722 : -100.46085 : Gove, KS +67737 : 39.117535 : -100.47735 : Grainfield, KS +67738 : 39.042757 : -100.64563 : Grinnell, KS +67739 : 39.893743 : -100.78687 : Herndon, KS +67740 : 39.356622 : -100.3861 : Hoxie, KS +67741 : 39.358034 : -102.00483 : Kanorado, KS +67743 : 39.406853 : -101.23341 : Levant, KS +67744 : 39.857038 : -100.93866 : Ludell, KS +67745 : 39.792736 : -101.36332 : McDonald, KS +67747 : 39.071265 : -101.04488 : Monument, KS +67748 : 39.11329 : -100.83926 : Oakley, KS +67749 : 39.832075 : -100.53872 : Oberlin, KS +67751 : 39.116982 : -100.35656 : Park, KS +67752 : 39.038252 : -100.2322 : Quinter, KS +67753 : 39.40544 : -100.74875 : Rexford, KS +67756 : 39.773872 : -101.82167 : Saint Francis, KS +67757 : 39.534756 : -100.59954 : Selden, KS +67758 : 38.865428 : -101.73575 : Sharon Springs, KS +67761 : 38.912898 : -101.50937 : Wallace, KS +67762 : 38.930464 : -101.99084 : Weskan, KS +67764 : 38.942421 : -101.20603 : Winona, KS +67801 : 37.755267 : -100.02632 : Dodge City, KS +67831 : 37.196075 : -99.77662 : Ashland, KS +67834 : 37.523175 : -99.63435 : Bucklin, KS +67835 : 37.84899 : -100.32811 : Cimarron, KS +67836 : 38.043992 : -102.00832 : Coolidge, KS +67837 : 37.554849 : -100.67514 : Copeland, KS +67838 : 38.039676 : -101.12571 : Deerfield, KS +67839 : 38.514924 : -100.43776 : Dighton, KS +67840 : 37.040749 : -99.98903 : Englewood, KS +67841 : 37.629346 : -100.22704 : Ensign, KS +67842 : 37.549041 : -99.74869 : Ford, KS +67844 : 37.401983 : -100.2073 : Fowler, KS +67845 : 39.296417 : -98.524566 : Bloom, KS +67846 : 37.976008 : -100.82503 : Garden City, KS +67849 : 38.134219 : -99.73853 : Hanston, KS +67850 : 38.591591 : -100.62302 : Healy, KS +67851 : 38.089121 : -101.01535 : Holcomb, KS +67852 : 37.989353 : -100.993268 : Holcomb, KS +67853 : 37.842421 : -100.49796 : Ingalls, KS +67854 : 38.080626 : -99.96701 : Jetmore, KS +67855 : 37.557733 : -101.68074 : Johnson, KS +67856 : 38.140691 : -100.415419 : Garfield, KS +67857 : 37.974098 : -101.5325 : Kendall, KS +67858 : 37.513348 : -99.692418 : Sodville, KS +67859 : 37.23521 : -100.75208 : Kismet, KS +67860 : 37.995238 : -101.2722 : Lakin, KS +67861 : 38.503037 : -101.39536 : Leoti, KS +67862 : 37.585473 : -101.91157 : Manter, KS +67863 : 38.551037 : -101.22087 : Marienthal, KS +67864 : 37.21313 : -100.34464 : Meade, KS +67865 : 37.394383 : -99.96723 : Minneola, KS +67867 : 37.586422 : -100.46228 : Montezuma, KS +67868 : 37.881899 : -100.67849 : Pierceville, KS +67869 : 37.257151 : -100.58189 : Plains, KS +67870 : 37.496762 : -101.00775 : Satanta, KS +67871 : 38.48461 : -100.93476 : Scott City, KS +67876 : 37.845029 : -99.72578 : Spearville, KS +67877 : 37.525821 : -100.84391 : Sublette, KS +67878 : 38.022874 : -101.80781 : Syracuse, KS +67879 : 38.478369 : -101.7871 : Tribune, KS +67880 : 37.569601 : -101.33268 : Ulysses, KS +67882 : 37.805301 : -99.88021 : Wright, KS +67901 : 37.067979 : -100.92813 : Liberal, KS +67905 : 37.021641 : -100.938049 : Liberal, KS +67938 : 39.43042 : -97.462993 : Colfax, KS +67950 : 37.011254 : -101.88893 : Elkhart, KS +67951 : 37.185269 : -101.349 : Hugoton, KS +67952 : 37.30755 : -101.18541 : Moscow, KS +67953 : 37.23606 : -101.83681 : Richfield, KS +67954 : 37.163412 : -101.61909 : Rolla, KS +68001 : 41.334744 : -96.94965 : Abie, NE +68002 : 41.47502 : -96.34446 : Arlington, NE +68003 : 41.068476 : -96.38189 : Ashland, NE +68004 : 42.009508 : -96.62313 : Bancroft, NE +68005 : 41.146848 : -95.90796 : Bellevue, NE +68007 : 41.36753 : -96.17269 : Bennington, NE +68008 : 41.538439 : -96.14965 : Blair, NE +68009 : 41.53827 : -96.182295 : Blair, NE +68010 : 41.25973 : -96.12833 : Boys Town, NE +68014 : 41.28216 : -96.9594 : Bruno, NE +68015 : 41.386373 : -96.64986 : Cedar Bluffs, NE +68016 : 41.03664 : -96.10884 : Cedar Creek, NE +68017 : 41.064961 : -96.64953 : Ceresco, NE +68018 : 41.309443 : -96.61679 : Colon, NE +68019 : 41.761217 : -96.37407 : Craig, NE +68020 : 41.988034 : -96.26545 : Decatur, NE +68022 : 41.274881 : -96.24565 : Elkhorn, NE +68023 : 41.463418 : -96.02777 : Fort Calhoun, NE +68025 : 41.434796 : -96.48869 : Fremont, NE +68026 : 41.567907 : -96.617443 : Fremont, NE +68028 : 41.118694 : -96.25535 : Gretna, NE +68029 : 41.665663 : -96.25866 : Herman, NE +68030 : 42.326727 : -96.48475 : Homer, NE +68031 : 41.62307 : -96.55172 : Hooper, NE +68032 : 41.344868 : -96.964345 : Linwood, NE +68033 : 41.134234 : -96.5315 : Ithaca, NE +68034 : 41.465023 : -96.2123 : Kennard, NE +68035 : 41.330124 : -96.42899 : Leshara, NE +68036 : 41.391914 : -96.96036 : Linwood, NE +68037 : 40.992426 : -96.14841 : Louisville, NE +68038 : 41.948587 : -96.45359 : Lyons, NE +68039 : 42.110959 : -96.3393 : Macy, NE +68040 : 41.285973 : -96.73951 : Malmo, NE +68041 : 41.22091 : -96.47719 : Mead, NE +68042 : 41.095604 : -96.43168 : Memphis, NE +68044 : 41.53608 : -96.44999 : Nickerson, NE +68045 : 41.830827 : -96.49444 : Oakland, NE +68046 : 41.151899 : -96.04484 : Papillion, NE +68047 : 42.112028 : -96.73093 : Pender, NE +68048 : 40.999245 : -95.91589 : Plattsmouth, NE +68050 : 41.309115 : -96.83506 : Prague, NE +68054 : 41.108443 : -96.07452 : Richfield, NE +68055 : 42.053783 : -96.50536 : Rosalie, NE +68056 : 41.092703 : -96.090546 : St Columbans, NE +68057 : 41.653831 : -96.708 : Scribner, NE +68058 : 41.003188 : -96.24529 : South Bend, NE +68059 : 41.074548 : -96.15635 : Springfield, NE +68061 : 41.783203 : -96.21577 : Tekamah, NE +68062 : 42.187938 : -96.67747 : Thurston, NE +68063 : 41.733433 : -96.50454 : Uehling, NE +68064 : 41.328149 : -96.3396 : Valley, NE +68065 : 41.077766 : -96.84586 : Valparaiso, NE +68066 : 41.199626 : -96.6226 : Wahoo, NE +68067 : 42.148163 : -96.48276 : Walthill, NE +68068 : 41.396848 : -96.20759 : Washington, NE +68069 : 41.255649 : -96.30195 : Waterloo, NE +68070 : 41.200338 : -96.78359 : Weston, NE +68071 : 42.232805 : -96.48868 : Winnebago, NE +68072 : 41.61023 : -96.503281 : Winslow, NE +68073 : 41.249536 : -96.40258 : Yutan, NE +68101 : 41.291736 : -96.171104 : Omaha, NE +68102 : 41.260566 : -95.9362 : Omaha, NE +68103 : 41.291736 : -96.171104 : Omaha, NE +68104 : 41.292445 : -96.0006 : Omaha, NE +68105 : 41.240854 : -95.96383 : Omaha, NE +68106 : 41.242313 : -95.99897 : Omaha, NE +68107 : 41.205198 : -95.95539 : Omaha, NE +68108 : 41.240562 : -95.93353 : Omaha, NE +68109 : 41.291736 : -96.171104 : Omaha, NE +68110 : 41.292321 : -95.93427 : Omaha, NE +68111 : 41.294547 : -95.96434 : Omaha, NE +68112 : 41.334947 : -95.95924 : Omaha, NE +68113 : 41.127805 : -95.90649 : Offutt A F B, NE +68114 : 41.264531 : -96.04798 : Omaha, NE +68116 : 41.294069 : -96.15352 : Omaha, NE +68117 : 41.208364 : -95.99675 : Omaha, NE +68118 : 41.263194 : -96.17108 : Omaha, NE +68119 : 41.291736 : -96.171104 : Omaha, NE +68120 : 41.291736 : -96.171104 : Omaha, NE +68122 : 41.348081 : -96.04609 : Omaha, NE +68123 : 41.117337 : -95.95126 : Bellevue, NE +68124 : 41.235064 : -96.05073 : Omaha, NE +68127 : 41.203029 : -96.05009 : Omaha, NE +68128 : 41.183458 : -96.05318 : La Vista, NE +68130 : 41.240036 : -96.18017 : Omaha, NE +68131 : 41.264418 : -95.96383 : Omaha, NE +68132 : 41.26565 : -95.99741 : Omaha, NE +68133 : 41.144085 : -96.00547 : Papillion, NE +68134 : 41.296748 : -96.05181 : Omaha, NE +68135 : 41.203791 : -96.17862 : Omaha, NE +68136 : 41.177298 : -96.18662 : Omaha, NE +68137 : 41.204631 : -96.12108 : Omaha, NE +68138 : 41.175935 : -96.13394 : Omaha, NE +68139 : 41.291736 : -96.171104 : Omaha, NE +68142 : 41.365763 : -96.10608 : Omaha, NE +68144 : 41.235248 : -96.11505 : Omaha, NE +68145 : 41.291736 : -96.171104 : Omaha, NE +68147 : 41.179338 : -95.95592 : Bellevue, NE +68152 : 41.344394 : -96.00077 : Omaha, NE +68154 : 41.264952 : -96.11422 : Omaha, NE +68155 : 41.291736 : -96.171104 : Omaha, NE +68157 : 41.182198 : -95.99058 : Omaha, NE +68164 : 41.296198 : -96.11027 : Omaha, NE +68172 : 41.291736 : -96.171104 : Omaha, NE +68175 : 41.291736 : -96.171104 : Omaha, NE +68176 : 41.291736 : -96.171104 : Omaha, NE +68178 : 41.291736 : -96.171104 : Omaha, NE +68179 : 41.291736 : -96.171104 : Omaha, NE +68180 : 41.291736 : -96.171104 : Omaha, NE +68181 : 41.291736 : -96.171104 : Omaha, NE +68182 : 41.291736 : -96.171104 : Omaha, NE +68183 : 41.291736 : -96.171104 : Omaha, NE +68198 : 41.291736 : -96.171104 : Omaha, NE +68226 : 41.12044 : -97.992289 : Central City, NE +68278 : 41.264333 : -95.946368 : Omaha, NE +68301 : 40.472055 : -96.52637 : Adams, NE +68303 : 40.247793 : -97.41164 : Alexandria, NE +68304 : 40.874192 : -96.38842 : Alvo, NE +68305 : 40.376356 : -95.84422 : Auburn, NE +68307 : 40.789284 : -96.13068 : Avoca, NE +68309 : 40.048634 : -96.57326 : Barneston, NE +68310 : 40.264193 : -96.74604 : Beatrice, NE +68313 : 40.781788 : -97.26849 : Beaver Crossing, NE +68314 : 41.009984 : -97.03437 : Bee, NE +68315 : 40.248038 : -97.5574 : Belvidere, NE +68316 : 41.014534 : -97.60967 : Benedict, NE +68317 : 40.680749 : -96.50073 : Bennet, NE +68318 : 40.14601 : -96.66049 : Blue Springs, NE +68319 : 40.910954 : -97.76081 : Bradshaw, NE +68320 : 40.487422 : -95.96011 : Brock, NE +68321 : 40.400172 : -95.69665 : Brownville, NE +68322 : 40.328889 : -97.54836 : Bruning, NE +68323 : 40.135672 : -96.35497 : Burchard, NE +68324 : 40.549923 : -96.29776 : Burr, NE +68325 : 40.042191 : -97.76979 : Byron, NE +68326 : 40.29141 : -97.68109 : Carleton, NE +68327 : 40.015959 : -97.61926 : Chester, NE +68328 : 40.473614 : -96.84511 : Clatonia, NE +68329 : 40.50482 : -96.17229 : Cook, NE +68330 : 40.716216 : -97.3522 : Cordova, NE +68331 : 40.481866 : -96.70362 : Cortland, NE +68332 : 40.327774 : -96.40254 : Crab Orchard, NE +68333 : 40.620175 : -96.96099 : Crete, NE +68335 : 40.29735 : -97.81152 : Davenport, NE +68336 : 40.965773 : -96.67667 : Davey, NE +68337 : 40.11127 : -95.83868 : Dawson, NE +68338 : 40.327793 : -97.26389 : Daykin, NE +68339 : 40.739508 : -96.84873 : Denton, NE +68340 : 40.135651 : -97.73636 : Deshler, NE +68341 : 40.389849 : -96.91229 : De Witt, NE +68342 : 40.105725 : -96.93428 : Diller, NE +68343 : 40.632861 : -97.13139 : Dorchester, NE +68344 : 40.56985 : -96.3806 : Douglas, NE +68345 : 40.034277 : -96.02099 : Du Bois, NE +68346 : 40.666814 : -96.02796 : Dunbar, NE +68347 : 40.805678 : -96.4362 : Eagle, NE +68348 : 40.289859 : -96.13044 : Elk Creek, NE +68349 : 40.837204 : -96.29537 : Elmwood, NE +68350 : 40.061702 : -97.07633 : Endicott, NE +68351 : 40.652298 : -97.43684 : Exeter, NE +68352 : 40.151358 : -97.20374 : Fairbury, NE +68354 : 40.633747 : -97.58041 : Fairmont, NE +68355 : 40.097217 : -95.58631 : Falls City, NE +68357 : 40.298643 : -96.54833 : Filley, NE +68358 : 40.533257 : -96.60568 : Firth, NE +68359 : 40.630445 : -97.28305 : Friend, NE +68360 : 40.95178 : -96.96787 : Garland, NE +68361 : 40.516034 : -97.60056 : Geneva, NE +68362 : 40.163122 : -97.42863 : Gilead, NE +68364 : 40.832663 : -97.22019 : Goehner, NE +68365 : 40.627475 : -97.72408 : Grafton, NE +68366 : 40.974167 : -96.43555 : Greenwood, NE +68367 : 41.03937 : -97.39671 : Gresham, NE +68368 : 40.563073 : -96.78914 : Hallam, NE +68370 : 40.154291 : -97.54895 : Hebron, NE +68371 : 40.763846 : -97.77856 : Henderson, NE +68372 : 40.612736 : -96.62295 : Hickman, NE +68374 : 40.211775 : -96.64233 : Holmesville, NE +68375 : 40.025484 : -97.47265 : Hubbell, NE +68376 : 40.172733 : -95.9426 : Humboldt, NE +68377 : 40.20808 : -97.02445 : Jansen, NE +68378 : 40.394814 : -96.01864 : Johnson, NE +68380 : 40.242528 : -96.40309 : Lewiston, NE +68381 : 40.081107 : -96.4838 : Liberty, NE +68382 : 40.653589 : -96.086904 : Lorton, NE +68401 : 40.744844 : -97.58296 : McCool Junction, NE +68402 : 40.918054 : -96.84839 : Malcolm, NE +68403 : 40.918749 : -96.16547 : Manley, NE +68404 : 40.617147 : -96.7559 : Martell, NE +68405 : 40.772835 : -97.05841 : Milford, NE +68406 : 40.501404 : -97.39726 : Milligan, NE +68407 : 40.912199 : -96.24729 : Murdock, NE +68409 : 40.915826 : -95.93611 : Murray, NE +68410 : 40.661439 : -95.87023 : Nebraska City, NE +68413 : 40.833188 : -96.00315 : Nehawka, NE +68414 : 40.32194 : -95.67683 : Nemaha, NE +68415 : 40.052388 : -96.81761 : Odell, NE +68416 : 40.401484 : -97.45367 : Ohiowa, NE +68417 : 40.728493 : -96.09516 : Otoe, NE +68418 : 40.702467 : -96.3845 : Palmyra, NE +68419 : 40.596093 : -96.50816 : Panama, NE +68420 : 40.106605 : -96.15968 : Pawnee City, NE +68421 : 40.48863 : -95.73152 : Peru, NE +68422 : 40.385662 : -96.71396 : Pickrell, NE +68423 : 40.806723 : -96.93931 : Pleasant Dale, NE +68424 : 40.298729 : -97.00106 : Plymouth, NE +68428 : 40.969816 : -96.82364 : Raymond, NE +68429 : 40.059775 : -97.380646 : Reynolds, NE +68430 : 40.679251 : -96.66579 : Roca, NE +68431 : 40.056628 : -95.43297 : Rulo, NE +68433 : 40.060469 : -95.74181 : Salem, NE +68434 : 40.909197 : -97.11206 : Seward, NE +68436 : 40.43034 : -97.73815 : Shickley, NE +68437 : 40.240436 : -95.63981 : Shubert, NE +68438 : 40.626661 : -96.745622 : Sprague, NE +68439 : 40.996127 : -97.2052 : Staplehurst, NE +68440 : 40.05097 : -97.03057 : Steele City, NE +68441 : 40.224384 : -96.24072 : Steinauer, NE +68442 : 40.229899 : -95.77517 : Stella, NE +68443 : 40.450262 : -96.37773 : Sterling, NE +68444 : 40.409283 : -97.58391 : Strang, NE +68445 : 40.400494 : -97.09357 : Swanton, NE +68446 : 40.656899 : -96.18201 : Syracuse, NE +68447 : 40.188015 : -96.08978 : Table Rock, NE +68448 : 40.537185 : -96.02353 : Talmage, NE +68450 : 40.373895 : -96.2097 : Tecumseh, NE +68452 : 40.394354 : -97.84507 : Ong, NE +68453 : 40.412117 : -97.33094 : Tobias, NE +68454 : 40.698235 : -96.28913 : Unadilla, NE +68455 : 40.820408 : -95.89714 : Union, NE +68456 : 40.898329 : -97.32084 : Utica, NE +68457 : 40.152937 : -95.69982 : Verdon, NE +68458 : 40.239986 : -96.49182 : Virginia, NE +68460 : 40.897974 : -97.45072 : Waco, NE +68461 : 40.764867 : -96.53044 : Walton, NE +68462 : 40.924298 : -96.52581 : Waverly, NE +68463 : 40.87142 : -96.14188 : Weeping Water, NE +68464 : 40.410478 : -97.20746 : Western, NE +68465 : 40.487481 : -96.99849 : Wilber, NE +68466 : 40.087289 : -96.65361 : Wymore, NE +68467 : 40.865237 : -97.58884 : York, NE +68501 : 40.865142 : -96.823133 : Lincoln, NE +68502 : 40.789051 : -96.69589 : Lincoln, NE +68503 : 40.823602 : -96.67552 : Lincoln, NE +68504 : 40.8442 : -96.65563 : Lincoln, NE +68505 : 40.82655 : -96.62564 : Lincoln, NE +68506 : 40.785557 : -96.64599 : Lincoln, NE +68507 : 40.85115 : -96.62914 : Lincoln, NE +68508 : 40.814191 : -96.70744 : Lincoln, NE +68509 : 40.784451 : -96.688799 : Lincoln, NE +68510 : 40.807106 : -96.65634 : Lincoln, NE +68512 : 40.7448 : -96.69574 : Lincoln, NE +68514 : 40.940125 : -96.662138 : Lincoln, NE +68516 : 40.749224 : -96.64566 : Lincoln, NE +68517 : 40.92185 : -96.61495 : Lincoln, NE +68520 : 40.798632 : -96.59023 : Lincoln, NE +68521 : 40.855645 : -96.71298 : Lincoln, NE +68522 : 40.790601 : -96.74974 : Lincoln, NE +68523 : 40.740529 : -96.76178 : Lincoln, NE +68524 : 40.859321 : -96.79586 : Lincoln, NE +68526 : 40.740833 : -96.59122 : Lincoln, NE +68527 : 40.849249 : -96.53061 : Lincoln, NE +68528 : 40.816765 : -96.78598 : Lincoln, NE +68529 : 40.879752 : -96.779796 : Lincoln, NE +68531 : 40.900801 : -96.720143 : Lincoln, NE +68532 : 40.796876 : -96.8585 : Lincoln, NE +68542 : 40.784451 : -96.688799 : Lincoln, NE +68544 : 40.784451 : -96.688799 : Lincoln, NE +68572 : 40.784451 : -96.688799 : Lincoln, NE +68583 : 40.784451 : -96.688799 : Lincoln, NE +68588 : 40.820645 : -96.692843 : Lincoln, NE +68601 : 41.437838 : -97.37192 : Columbus, NE +68602 : 41.53808 : -97.541795 : Columbus, NE +68620 : 41.708281 : -98.0246 : Albion, NE +68621 : 41.482181 : -96.63929 : Ames, NE +68622 : 41.909737 : -98.51413 : Bartlett, NE +68623 : 41.441371 : -98.1094 : Belgrade, NE +68624 : 41.342529 : -97.23485 : Bellwood, NE +68626 : 41.177056 : -97.00012 : Brainard, NE +68627 : 41.552082 : -98.17449 : Cedar Rapids, NE +68628 : 41.212516 : -97.83118 : Clarks, NE +68629 : 41.70879 : -97.12748 : Clarkson, NE +68631 : 41.692408 : -97.35456 : Creston, NE +68632 : 41.259891 : -97.12638 : David City, NE +68633 : 41.706209 : -96.89662 : Dodge, NE +68634 : 41.388893 : -97.49439 : Duncan, NE +68635 : 41.083432 : -97.01583 : Dwight, NE +68636 : 42.009216 : -98.13311 : Elgin, NE +68637 : 41.76983 : -98.64132 : Ericson, NE +68638 : 41.375063 : -97.96381 : Fullerton, NE +68640 : 41.44996 : -97.75199 : Genoa, NE +68641 : 41.73427 : -97.01367 : Howells, NE +68642 : 41.690401 : -97.49723 : Humphrey, NE +68643 : 41.691648 : -97.24781 : Leigh, NE +68644 : 41.707169 : -97.6865 : Lindsay, NE +68647 : 41.504301 : -97.60921 : Monroe, NE +68648 : 41.400937 : -96.78066 : Morse Bluff, NE +68649 : 41.484782 : -96.77567 : North Bend, NE +68651 : 41.21361 : -97.56993 : Osceola, NE +68652 : 41.861111 : -98.04549 : Petersburg, NE +68653 : 41.545453 : -97.48974 : Platte Center, NE +68654 : 41.068368 : -97.78036 : Polk, NE +68655 : 41.632602 : -98.24319 : Primrose, NE +68658 : 41.192785 : -97.29532 : Rising City, NE +68659 : 41.546604 : -96.93521 : Rogers, NE +68660 : 41.574309 : -97.86898 : Saint Edward, NE +68661 : 41.472784 : -97.06915 : Schuyler, NE +68662 : 41.184669 : -97.41634 : Shelby, NE +68663 : 41.306574 : -97.70019 : Silver Creek, NE +68664 : 41.704483 : -96.78794 : Snyder, NE +68665 : 41.693462 : -98.38523 : Spalding, NE +68666 : 41.113813 : -97.60295 : Stromsburg, NE +68667 : 41.106694 : -97.30554 : Surprise, NE +68669 : 41.08293 : -97.22235 : Ulysses, NE +68701 : 42.026209 : -97.41741 : Norfolk, NE +68702 : 41.916476 : -97.601348 : Norfolk, NE +68710 : 42.450185 : -96.85153 : Allen, NE +68711 : 42.214277 : -98.98515 : Amelia, NE +68713 : 42.573338 : -98.94136 : Atkinson, NE +68714 : 42.53961 : -99.52938 : Bassett, NE +68715 : 41.993408 : -97.60196 : Battle Creek, NE +68716 : 41.944906 : -96.8338 : Beemer, NE +68717 : 42.408389 : -97.20918 : Belden, NE +68718 : 42.651113 : -97.67271 : Bloomfield, NE +68719 : 42.845614 : -98.56946 : Bristow, NE +68720 : 42.337964 : -98.01432 : Brunswick, NE +68722 : 42.923088 : -98.85921 : Butte, NE +68723 : 42.281323 : -97.20373 : Carroll, NE +68724 : 42.62177 : -97.87578 : Center, NE +68725 : 42.182794 : -98.77798 : Chambers, NE +68726 : 42.163976 : -98.21846 : Clearwater, NE +68727 : 42.509494 : -97.20526 : Coleridge, NE +68728 : 42.379899 : -96.96331 : Concord, NE +68729 : 42.469145 : -97.9023 : Creighton, NE +68730 : 42.774493 : -97.51543 : Crofton, NE +68731 : 42.424303 : -96.43904 : Dakota City, NE +68732 : 42.459805 : -96.98116 : Dixon, NE +68733 : 42.288154 : -96.73644 : Emerson, NE +68734 : 42.475789 : -98.79953 : Emmet, NE +68735 : 42.189511 : -98.42285 : Ewing, NE +68736 : 42.750269 : -97.3801 : Fordyce, NE +68737 : 42.272213 : -97.67446 : Foster, NE +68738 : 42.264356 : -97.601337 : Hadar, NE +68739 : 42.624108 : -97.25267 : Hartington, NE +68740 : 42.145982 : -97.3009 : Hoskins, NE +68741 : 42.367879 : -96.58297 : Hubbard, NE +68742 : 42.376443 : -98.51848 : Inman, NE +68743 : 42.460155 : -96.60668 : Jackson, NE +68745 : 42.437732 : -97.09057 : Laurel, NE +68746 : 42.787371 : -98.43592 : Lynch, NE +68747 : 42.402076 : -97.4751 : Mclean, NE +68748 : 41.836046 : -97.45212 : Madison, NE +68749 : 42.609687 : -97.250378 : Magnet, NE +68751 : 42.481711 : -96.926042 : Maskell, NE +68752 : 41.995961 : -97.70788 : Meadow Grove, NE +68753 : 42.855832 : -99.44391 : Mills, NE +68755 : 42.946169 : -99.11638 : Naper, NE +68756 : 42.150892 : -98.02352 : Neligh, NE +68757 : 42.660607 : -96.92796 : Newcastle, NE +68758 : 41.769497 : -97.79839 : Newman Grove, NE +68759 : 42.700145 : -99.31812 : Newport, NE +68760 : 42.776379 : -98.07011 : Niobrara, NE +68761 : 42.049818 : -97.96188 : Oakdale, NE +68763 : 42.516792 : -98.60341 : Oneill, NE +68764 : 42.395137 : -98.22358 : Orchard, NE +68765 : 42.35077 : -97.61574 : Osmond, NE +68766 : 42.41927 : -98.40272 : Page, NE +68767 : 42.200994 : -97.54527 : Pierce, NE +68768 : 41.999564 : -97.06804 : Pilger, NE +68769 : 42.331689 : -97.80618 : Plainview, NE +68770 : 42.563297 : -96.76399 : Ponca, NE +68771 : 42.377338 : -97.35618 : Randolph, NE +68772 : 42.231317 : -99.59463 : Rose, NE +68773 : 42.367457 : -98.12019 : Royal, NE +68774 : 42.821095 : -97.27699 : Saint Helena, NE +68776 : 42.467095 : -96.4187 : South Sioux City, NE +68777 : 42.843338 : -98.68298 : Spencer, NE +68778 : 42.880251 : -99.8661 : Springview, NE +68779 : 41.955429 : -97.21583 : Stanton, NE +68780 : 42.591725 : -99.13746 : Stuart, NE +68781 : 42.028202 : -97.84085 : Tilden, NE +68782 : 42.811418 : -98.191178 : Verdel, NE +68783 : 42.620877 : -98.12001 : Verdigre, NE +68784 : 42.242742 : -96.87191 : Wakefield, NE +68785 : 42.437174 : -96.72103 : Waterbury, NE +68786 : 42.50198 : -97.55717 : Wausa, NE +68787 : 42.221382 : -97.03303 : Wayne, NE +68788 : 41.841032 : -96.72569 : West Point, NE +68789 : 42.534339 : -97.99902 : Winnetoon, NE +68790 : 42.175272 : -97.17016 : Winside, NE +68791 : 42.000682 : -96.9295 : Wisner, NE +68792 : 42.749481 : -97.14372 : Wynot, NE +68797 : 40.607095 : -97.859489 : Sutton, NE +68801 : 40.922826 : -98.33087 : Grand Island, NE +68802 : 40.872457 : -98.50213 : Grand Island, NE +68803 : 40.916866 : -98.38749 : Grand Island, NE +68810 : 40.860494 : -98.47051 : Alda, NE +68812 : 40.887707 : -99.2839 : Amherst, NE +68813 : 41.726833 : -99.82976 : Anselmo, NE +68814 : 41.296709 : -99.38123 : Ansley, NE +68815 : 41.420141 : -99.1444 : Arcadia, NE +68816 : 41.172932 : -98.12755 : Archer, NE +68817 : 41.251967 : -98.78701 : Ashton, NE +68818 : 40.83605 : -98.00493 : Aurora, NE +68819 : 41.348094 : -99.4839 : Berwyn, NE +68820 : 41.09121 : -98.69726 : Boelus, NE +68821 : 41.976053 : -99.81717 : Brewster, NE +68822 : 41.400263 : -99.63075 : Broken Bow, NE +68823 : 41.820617 : -99.12531 : Burwell, NE +68824 : 40.99858 : -98.60417 : Cairo, NE +68825 : 41.288656 : -99.95439 : Callaway, NE +68826 : 41.12561 : -98.00225 : Central City, NE +68827 : 41.031618 : -98.17004 : Chapman, NE +68828 : 41.556172 : -99.24938 : Comstock, NE +68831 : 41.125399 : -98.57308 : Dannebrog, NE +68832 : 40.763643 : -98.38794 : Doniphan, NE +68833 : 41.824292 : -100.15245 : Dunning, NE +68834 : 41.013936 : -99.6325 : Eddyville, NE +68835 : 41.336945 : -98.61248 : Elba, NE +68836 : 40.708697 : -99.37512 : Elm Creek, NE +68837 : 41.6477 : -99.05046 : Elyria, NE +68838 : 41.217633 : -98.67027 : Farwell, NE +68840 : 40.754582 : -98.86414 : Gibbon, NE +68841 : 40.769633 : -98.16372 : Giltner, NE +68842 : 41.517347 : -98.49117 : Greeley, NE +68843 : 40.894366 : -97.89355 : Hampton, NE +68844 : 41.067301 : -99.04756 : Hazard, NE +68845 : 40.713265 : -99.11839 : Kearney, NE +68846 : 41.068227 : -97.89516 : Hordville, NE +68847 : 40.709895 : -99.05499 : Kearney, NE +68848 : 40.686053 : -99.069318 : Kearney, NE +68849 : 40.849654 : -99.074058 : Kearney, NE +68850 : 40.786048 : -99.7424 : Lexington, NE +68852 : 41.158146 : -99.12336 : Litchfield, NE +68853 : 41.286479 : -98.96733 : Loup City, NE +68854 : 41.019927 : -98.00297 : Marquette, NE +68855 : 41.168004 : -99.33514 : Mason City, NE +68856 : 41.488642 : -99.81791 : Merna, NE +68858 : 40.966548 : -99.37818 : Miller, NE +68859 : 41.48443 : -98.79933 : North Loup, NE +68860 : 41.146805 : -99.77117 : Oconto, NE +68861 : 40.699986 : -99.25626 : Odessa, NE +68862 : 41.597942 : -98.93307 : Ord, NE +68863 : 40.752213 : -99.52687 : Overton, NE +68864 : 41.244441 : -98.22475 : Palmer, NE +68865 : 40.895553 : -98.20719 : Phillips, NE +68866 : 40.982236 : -99.11132 : Pleasanton, NE +68868 : 40.718287 : -98.52983 : Martin, NE +68869 : 41.014592 : -98.88267 : Ravenna, NE +68870 : 40.817442 : -99.15387 : Riverdale, NE +68871 : 41.121028 : -98.82619 : Rockville, NE +68872 : 41.097169 : -98.31587 : Saint Libory, NE +68873 : 41.230069 : -98.47449 : Saint Paul, NE +68874 : 41.639578 : -99.41055 : Sargent, NE +68875 : 41.523574 : -98.68461 : Scotia, NE +68876 : 40.786865 : -98.74701 : Shelton, NE +68878 : 40.970793 : -99.48582 : Sumner, NE +68879 : 41.826783 : -99.49058 : Taylor, NE +68880 : 41.393902 : -99.728097 : Weissert, NE +68881 : 41.44271 : -99.35516 : Westerville, NE +68882 : 41.413885 : -98.4231 : Wolbach, NE +68883 : 40.807789 : -98.5978 : Wood River, NE +68901 : 40.589299 : -98.38131 : Hastings, NE +68902 : 40.589594 : -98.397248 : Hastings, NE +68920 : 40.142462 : -99.35398 : Alma, NE +68922 : 40.318156 : -99.89562 : Arapahoe, NE +68923 : 40.370382 : -99.47144 : Atlanta, NE +68924 : 40.493457 : -99.11348 : Axtell, NE +68925 : 40.431821 : -98.43946 : Ayr, NE +68926 : 40.106595 : -99.8225 : Beaver City, NE +68927 : 40.534445 : -99.61498 : Bertrand, NE +68928 : 40.320042 : -98.59331 : Bladen, NE +68929 : 40.121789 : -99.04457 : Bloomington, NE +68930 : 40.284783 : -98.43446 : Blue Hill, NE +68932 : 40.303479 : -98.73884 : Campbell, NE +68933 : 40.523823 : -98.04812 : Clay Center, NE +68934 : 40.34357 : -98.15079 : Deweese, NE +68935 : 40.365387 : -97.96363 : Edgar, NE +68936 : 40.310905 : -99.7648 : Edison, NE +68937 : 40.627711 : -99.86334 : Elwood, NE +68938 : 40.425264 : -98.10957 : Fairfield, NE +68939 : 40.103792 : -98.94389 : Franklin, NE +68940 : 40.532115 : -99.24602 : Funk, NE +68941 : 40.459158 : -98.28892 : Glenvil, NE +68942 : 40.084405 : -98.30306 : Guide Rock, NE +68943 : 40.023871 : -97.9101 : Hardy, NE +68944 : 40.635514 : -98.09442 : Harvard, NE +68945 : 40.568436 : -98.78434 : Heartwell, NE +68946 : 40.099617 : -99.97619 : Hendley, NE +68947 : 40.306853 : -99.05694 : Hildreth, NE +68948 : 40.34435 : -100.03595 : Holbrook, NE +68949 : 40.434479 : -99.37311 : Holdrege, NE +68950 : 40.465821 : -98.65405 : Holstein, NE +68952 : 40.142355 : -98.66952 : Inavale, NE +68954 : 40.60418 : -98.23217 : Inland, NE +68955 : 40.595599 : -98.53981 : Juniata, NE +68956 : 40.642616 : -98.67681 : Kenesaw, NE +68957 : 40.275161 : -98.24659 : Lawrence, NE +68958 : 40.507276 : -99.50047 : Loomis, NE +68959 : 40.491484 : -98.92412 : Minden, NE +68960 : 40.085446 : -99.14622 : Naponee, NE +68961 : 40.19484 : -98.03859 : Nelson, NE +68963 : 40.478879 : -98.792699 : Norman, NE +68964 : 40.230878 : -97.89427 : Oak, NE +68966 : 40.145771 : -99.46708 : Orleans, NE +68967 : 40.247784 : -99.62187 : Oxford, NE +68969 : 40.176513 : -99.404864 : Ragan, NE +68970 : 40.090341 : -98.52808 : Red Cloud, NE +68971 : 40.113307 : -99.23875 : Republican City, NE +68972 : 40.083133 : -98.78853 : Riverton, NE +68973 : 40.459642 : -98.55892 : Roseland, NE +68974 : 40.126094 : -97.87696 : Ruskin, NE +68975 : 40.605538 : -97.94955 : Saronville, NE +68976 : 40.576873 : -99.74003 : Smithfield, NE +68977 : 40.092127 : -99.63058 : Stamford, NE +68978 : 40.03686 : -98.07828 : Superior, NE +68979 : 40.603945 : -97.85433 : Sutton, NE +68980 : 40.674132 : -98.26496 : Trumbull, NE +68981 : 40.287173 : -98.88958 : Upland, NE +68982 : 40.338567 : -99.18638 : Wilcox, NE +69001 : 40.225039 : -100.63052 : McCook, NE +69020 : 40.241652 : -100.3015 : Bartley, NE +69021 : 40.097723 : -101.54055 : Benkelman, NE +69022 : 40.317358 : -100.17857 : Cambridge, NE +69023 : 40.489063 : -101.88349 : Champion, NE +69024 : 40.242582 : -100.85376 : Culbertson, NE +69025 : 40.618751 : -100.50729 : Curtis, NE +69026 : 40.049447 : -100.44338 : Danbury, NE +69027 : 40.429297 : -101.53601 : Enders, NE +69028 : 40.656225 : -100.05391 : Eustis, NE +69029 : 40.756879 : -100.21881 : Farnam, NE +69030 : 40.032262 : -101.96041 : Haigler, NE +69031 : 40.383691 : -101.23172 : Hamlet, NE +69032 : 40.560493 : -100.95654 : Hayes Center, NE +69033 : 40.530405 : -101.67576 : Imperial, NE +69034 : 40.236212 : -100.42375 : Indianola, NE +69036 : 40.056031 : -100.28026 : Lebanon, NE +69037 : 40.142872 : -101.40758 : Max, NE +69038 : 40.638541 : -100.65778 : Maywood, NE +69039 : 40.646065 : -100.35262 : Moorefield, NE +69040 : 40.358455 : -101.11224 : Palisade, NE +69041 : 40.133487 : -101.7201 : Parks, NE +69042 : 40.519197 : -100.37754 : Stockville, NE +69043 : 40.150605 : -101.23375 : Stratton, NE +69044 : 40.160252 : -101.01311 : Trenton, NE +69045 : 40.484407 : -101.35561 : Wauneta, NE +69046 : 40.106363 : -100.11077 : Wilsonville, NE +69101 : 41.129363 : -100.77502 : North Platte, NE +69103 : 41.046447 : -100.746912 : North Platte, NE +69120 : 41.398865 : -100.22265 : Arnold, NE +69121 : 41.569138 : -101.68816 : Arthur, NE +69122 : 41.058171 : -102.08926 : Big Springs, NE +69123 : 41.036035 : -100.34398 : Brady, NE +69125 : 41.583579 : -102.85851 : Broadwater, NE +69127 : 41.091667 : -101.89092 : Brule, NE +69128 : 41.173278 : -103.9024 : Bushnell, NE +69129 : 41.104806 : -102.40905 : Chappell, NE +69130 : 40.868727 : -99.97697 : Cozad, NE +69131 : 41.406407 : -103.00711 : Dalton, NE +69132 : 40.808779 : -100.96318 : Dickens, NE +69133 : 41.207381 : -103.47126 : Dix, NE +69134 : 40.847471 : -101.38031 : Elsie, NE +69135 : 42.211636 : -100.2201 : Elsmere, NE +69138 : 40.952436 : -100.15719 : Gothenburg, NE +69140 : 40.850141 : -101.75824 : Grant, NE +69141 : 41.318554 : -102.97377 : Gurley, NE +69142 : 41.931243 : -100.27285 : Halsey, NE +69143 : 41.186837 : -101.03117 : Hershey, NE +69144 : 41.250772 : -101.60141 : Keystone, NE +69145 : 41.24058 : -103.6608 : Kimball, NE +69146 : 41.296221 : -101.77851 : Lemoyne, NE +69147 : 41.376624 : -102.05512 : Lewellen, NE +69148 : 41.521238 : -102.55973 : Lisco, NE +69149 : 41.168155 : -102.63874 : Lodgepole, NE +69150 : 40.845229 : -101.5378 : Madrid, NE +69151 : 41.020868 : -100.54009 : Maxwell, NE +69152 : 42.088889 : -101.09299 : Mullen, NE +69153 : 41.115512 : -101.69819 : Ogallala, NE +69154 : 41.402127 : -102.35025 : Oshkosh, NE +69155 : 41.154635 : -101.37877 : Paxton, NE +69156 : 41.233268 : -103.28325 : Potter, NE +69157 : 42.1088 : -100.3151 : Purdum, NE +69160 : 41.220549 : -102.995925 : Sidney, NE +69161 : 42.07739 : -100.74359 : Seneca, NE +69162 : 41.162214 : -103.01949 : Sidney, NE +69163 : 41.437215 : -100.53006 : Stapleton, NE +69165 : 41.194109 : -101.17899 : Sutherland, NE +69166 : 41.918663 : -100.52739 : Thedford, NE +69167 : 41.560479 : -100.98254 : Tryon, NE +69168 : 40.734776 : -101.98221 : Venango, NE +69169 : 40.820868 : -101.17982 : Wallace, NE +69170 : 40.770008 : -100.73442 : Wellfleet, NE +69171 : 40.892469 : -100.070257 : Willow Island, NE +69190 : 41.615307 : -102.331762 : Oshkosh, NE +69201 : 42.716711 : -100.64716 : Valentine, NE +69210 : 42.530382 : -99.88206 : Ainsworth, NE +69211 : 42.838967 : -101.36663 : Cody, NE +69212 : 42.914711 : -100.78789 : Crookston, NE +69214 : 42.61416 : -100.03899 : Johnstown, NE +69216 : 42.939915 : -100.92827 : Kilgore, NE +69217 : 42.519402 : -99.70826 : Long Pine, NE +69218 : 42.848109 : -101.65674 : Merriman, NE +69219 : 42.686576 : -101.09984 : Nenzel, NE +69220 : 42.940698 : -100.25556 : Sparks, NE +69221 : 42.63002 : -100.26756 : Wood Lake, NE +69301 : 42.13928 : -102.84937 : Alliance, NE +69331 : 41.823881 : -102.96652 : Angora, NE +69333 : 41.861313 : -101.98548 : Ashby, NE +69334 : 41.777948 : -103.31277 : Bayard, NE +69335 : 41.996022 : -102.18247 : Bingham, NE +69336 : 41.660814 : -103.10517 : Bridgeport, NE +69337 : 42.808213 : -103.00219 : Chadron, NE +69339 : 42.672974 : -103.39841 : Crawford, NE +69340 : 42.23242 : -102.19792 : Ellsworth, NE +69341 : 41.803503 : -103.65998 : Gering, NE +69343 : 42.567701 : -102.00083 : Gordon, NE +69345 : 41.549736 : -103.72421 : Harrisburg, NE +69346 : 42.624764 : -103.83101 : Harrison, NE +69347 : 42.580176 : -102.65443 : Hay Springs, NE +69348 : 42.369213 : -103.17741 : Hemingford, NE +69349 : 41.992583 : -104.04977 : Henry, NE +69350 : 41.926792 : -101.73705 : Hyannis, NE +69351 : 42.21773 : -102.42833 : Lakeside, NE +69352 : 41.849619 : -103.99465 : Lyman, NE +69353 : 41.746944 : -103.416351 : Mcgrew, NE +69354 : 42.485817 : -103.21227 : Marsland, NE +69355 : 41.781984 : -103.51728 : Melbeta, NE +69356 : 41.863357 : -103.47009 : Minatare, NE +69357 : 41.940693 : -103.78815 : Mitchell, NE +69358 : 41.986025 : -103.95935 : Morrill, NE +69360 : 42.737843 : -102.48573 : Rushville, NE +69361 : 41.885553 : -103.65241 : Scottsbluff, NE +69363 : 41.851012 : -103.70726 : Scottsbluff, NE +69365 : 42.963117 : -102.51068 : Whiteclay, NE +69366 : 41.92305 : -101.56145 : Whitman, NE +69367 : 42.755969 : -103.2562 : Whitney, NE +70000 : 30.08677 : -90.513522 : Laplace, LA +70001 : 29.984096 : -90.16902 : Metairie, LA +70002 : 30.011517 : -90.16245 : Metairie, LA +70003 : 29.997168 : -90.2138 : Metairie, LA +70004 : 29.677893 : -90.0901 : Metairie, LA +70005 : 29.999453 : -90.13398 : Metairie, LA +70006 : 30.013985 : -90.19128 : Metairie, LA +70009 : 29.677893 : -90.0901 : Metairie, LA +70010 : 29.677893 : -90.0901 : Metairie, LA +70011 : 29.677893 : -90.0901 : Metairie, LA +70021 : 29.960375 : -90.156143 : Jefferson, LA +70030 : 29.810193 : -90.44769 : Des Allemands, LA +70031 : 29.942703 : -90.29969 : Ama, LA +70032 : 29.958802 : -89.99902 : Arabi, LA +70033 : 29.677893 : -90.0901 : Metairie, LA +70036 : 29.715795 : -90.12419 : Barataria, LA +70037 : 29.822707 : -90.00616 : Belle Chasse, LA +70038 : 29.307982 : -89.38007 : Boothville, LA +70039 : 29.900075 : -90.38655 : Boutte, LA +70040 : 29.749706 : -89.94043 : Braithwaite, LA +70041 : 29.351783 : -89.51381 : Buras, LA +70042 : 29.380066 : -89.477464 : Carlisle, LA +70043 : 29.946404 : -89.96118 : Chalmette, LA +70044 : 29.96765 : -89.951441 : Chalmette, LA +70046 : 29.61829 : -89.872599 : Davant, LA +70047 : 29.969128 : -90.37563 : Destrehan, LA +70048 : 30.071155 : -90.546138 : Reserve, LA +70049 : 30.033974 : -90.5538 : Edgard, LA +70050 : 29.384033 : -89.59696 : Empire, LA +70051 : 30.058276 : -90.61738 : Garyville, LA +70052 : 30.053907 : -90.68915 : Gramercy, LA +70053 : 29.915355 : -90.05335 : Gretna, LA +70054 : 29.677893 : -90.0901 : Gretna, LA +70055 : 29.677893 : -90.0901 : Metairie, LA +70056 : 29.894261 : -90.03072 : Gretna, LA +70057 : 29.967081 : -90.41012 : Hahnville, LA +70058 : 29.878578 : -90.06903 : Harvey, LA +70059 : 29.677893 : -90.0901 : Harvey, LA +70060 : 29.677893 : -90.0901 : Metairie, LA +70062 : 29.991051 : -90.2469 : Kenner, LA +70063 : 29.677893 : -90.0901 : Kenner, LA +70064 : 29.677893 : -90.0901 : Kenner, LA +70065 : 30.022853 : -90.25133 : Kenner, LA +70066 : 29.999471 : -90.48708 : Killona, LA +70067 : 29.652752 : -90.1012 : Lafitte, LA +70068 : 30.073941 : -90.48516 : La Place, LA +70069 : 30.091158 : -90.483189 : La Place, LA +70070 : 29.907162 : -90.35142 : Luling, LA +70071 : 30.04401 : -90.69956 : Lutcher, LA +70072 : 29.869283 : -90.10933 : Marrero, LA +70073 : 29.677893 : -90.0901 : Marrero, LA +70075 : 29.935089 : -89.92089 : Meraux, LA +70076 : 30.055429 : -90.64073 : Mount Airy, LA +70078 : 29.981674 : -90.38595 : New Sarpy, LA +70079 : 30.007089 : -90.41389 : Norco, LA +70080 : 29.878373 : -90.43063 : Paradis, LA +70081 : 29.285081 : -89.364034 : Pilottown, LA +70082 : 29.572751 : -89.78139 : Pointe A La Hache, LA +70083 : 29.529091 : -89.7883 : Port Sulphur, LA +70084 : 30.059516 : -90.55987 : Reserve, LA +70085 : 29.86089 : -89.82225 : Saint Bernard, LA +70086 : 30.013027 : -90.85714 : Saint James, LA +70087 : 29.962601 : -90.30965 : Saint Rose, LA +70090 : 29.979997 : -90.71178 : Vacherie, LA +70091 : 29.277457 : -89.35898 : Venice, LA +70092 : 29.902193 : -89.89726 : Violet, LA +70093 : 29.877893 : -89.878719 : Violet, LA +70094 : 29.91534 : -90.17737 : Westwego, LA +70096 : 29.677893 : -90.0901 : Westwego, LA +70112 : 29.956804 : -90.07757 : New Orleans, LA +70113 : 29.943505 : -90.08408 : New Orleans, LA +70114 : 29.938155 : -90.03667 : New Orleans, LA +70115 : 29.927305 : -90.10197 : New Orleans, LA +70116 : 29.968054 : -90.06403 : New Orleans, LA +70117 : 29.970404 : -90.03036 : New Orleans, LA +70118 : 29.952305 : -90.12347 : New Orleans, LA +70119 : 29.974504 : -90.08747 : New Orleans, LA +70121 : 29.961875 : -90.16037 : New Orleans, LA +70122 : 30.006353 : -90.06264 : New Orleans, LA +70123 : 29.952605 : -90.20536 : New Orleans, LA +70124 : 30.006003 : -90.10947 : New Orleans, LA +70125 : 29.951705 : -90.10411 : New Orleans, LA +70126 : 30.016002 : -90.01972 : New Orleans, LA +70127 : 30.033475 : -89.97736 : New Orleans, LA +70128 : 30.05031 : -89.95638 : New Orleans, LA +70129 : 30.063059 : -89.88511 : New Orleans, LA +70130 : 29.938005 : -90.07195 : New Orleans, LA +70131 : 29.917005 : -89.98982 : New Orleans, LA +70139 : 30.032997 : -89.882564 : New Orleans, LA +70140 : 29.95612 : -90.078312 : New Orleans, LA +70141 : 29.677893 : -90.0901 : New Orleans, LA +70142 : 30.032997 : -89.882564 : New Orleans, LA +70143 : 30.032997 : -89.882564 : New Orleans, LA +70144 : 29.930433 : -90.038021 : New Orleans, LA +70145 : 30.032997 : -89.882564 : New Orleans, LA +70146 : 30.032997 : -89.882564 : New Orleans, LA +70148 : 30.030902 : -90.068022 : New Orleans, LA +70149 : 30.032997 : -89.882564 : New Orleans, LA +70150 : 30.032997 : -89.882564 : New Orleans, LA +70151 : 30.032997 : -89.882564 : New Orleans, LA +70152 : 30.032997 : -89.882564 : New Orleans, LA +70153 : 30.032997 : -89.882564 : New Orleans, LA +70154 : 30.032997 : -89.882564 : New Orleans, LA +70155 : 29.940138 : -90.109823 : New Orleans, LA +70156 : 30.032997 : -89.882564 : New Orleans, LA +70157 : 30.032997 : -89.882564 : New Orleans, LA +70158 : 29.922905 : -90.070922 : New Orleans, LA +70159 : 30.032997 : -89.882564 : New Orleans, LA +70160 : 30.032997 : -89.882564 : New Orleans, LA +70161 : 30.032997 : -89.882564 : New Orleans, LA +70162 : 30.032997 : -89.882564 : New Orleans, LA +70163 : 29.95006 : -90.07532 : New Orleans, LA +70164 : 30.032997 : -89.882564 : New Orleans, LA +70165 : 30.032997 : -89.882564 : New Orleans, LA +70166 : 30.032997 : -89.882564 : New Orleans, LA +70167 : 30.032997 : -89.882564 : New Orleans, LA +70170 : 30.032997 : -89.882564 : New Orleans, LA +70172 : 30.032997 : -89.882564 : New Orleans, LA +70174 : 30.032997 : -89.882564 : New Orleans, LA +70175 : 30.032997 : -89.882564 : New Orleans, LA +70176 : 30.032997 : -89.882564 : New Orleans, LA +70177 : 30.032997 : -89.882564 : New Orleans, LA +70178 : 30.032997 : -89.882564 : New Orleans, LA +70179 : 30.032997 : -89.882564 : New Orleans, LA +70181 : 29.677893 : -90.0901 : New Orleans, LA +70182 : 30.067646 : -89.815993 : New Orleans, LA +70183 : 29.677893 : -90.0901 : New Orleans, LA +70184 : 30.032997 : -89.882564 : New Orleans, LA +70185 : 30.032997 : -89.882564 : New Orleans, LA +70186 : 30.032997 : -89.882564 : New Orleans, LA +70187 : 30.032997 : -89.882564 : New Orleans, LA +70189 : 30.032997 : -89.882564 : New Orleans, LA +70190 : 30.032997 : -89.882564 : New Orleans, LA +70195 : 30.032997 : -89.882564 : New Orleans, LA +70199 : 29.987528 : -90.079501 : New Orleans, LA +70301 : 29.797776 : -90.81809 : Thibodaux, LA +70302 : 29.458689 : -90.502848 : Thibodaux, LA +70310 : 29.803282 : -90.816914 : Thibodaux, LA +70339 : 29.931838 : -91.19813 : Pierre Part, LA +70340 : 29.688425 : -91.220844 : Amelia, LA +70341 : 30.030819 : -91.07576 : Belle Rose, LA +70342 : 29.692515 : -91.22938 : Berwick, LA +70343 : 29.553952 : -90.59881 : Bourg, LA +70344 : 29.385126 : -90.61939 : Chauvin, LA +70345 : 29.523897 : -90.34043 : Cut Off, LA +70346 : 30.103905 : -91.00104 : Donaldsonville, LA +70352 : 29.696385 : -90.944418 : Donner, LA +70353 : 29.384672 : -90.69689 : Dulac, LA +70354 : 29.435146 : -90.30479 : Galliano, LA +70355 : 29.670214 : -90.46202 : Gheens, LA +70356 : 29.658394 : -90.97455 : Gibson, LA +70357 : 29.275485 : -90.24378 : Golden Meadow, LA +70358 : 29.227769 : -90.01211 : Grand Isle, LA +70359 : 29.696636 : -90.77238 : Gray, LA +70360 : 29.593377 : -90.7475 : Houma, LA +70361 : 29.382117 : -90.865568 : Houma, LA +70363 : 29.560581 : -90.6903 : Houma, LA +70364 : 29.626988 : -90.72076 : Houma, LA +70369 : 30.285602 : -92.096266 : Houma, LA +70371 : 29.865202 : -90.596159 : Kraemer, LA +70372 : 29.829135 : -90.9636 : Labadieville, LA +70373 : 29.535139 : -90.44546 : Larose, LA +70374 : 29.620122 : -90.49218 : Lockport, LA +70375 : 29.697038 : -90.55223 : Mathews, LA +70376 : 30.204707 : -90.869481 : Modeste, LA +70377 : 29.428462 : -90.52556 : Montegut, LA +70380 : 29.694806 : -91.18252 : Morgan City, LA +70381 : 29.694629 : -91.259347 : Morgan City, LA +70384 : 30.350849 : -92.107422 : Cankton, LA +70390 : 29.91599 : -91.02187 : Napoleonville, LA +70391 : 29.990967 : -91.05456 : Paincourtville, LA +70392 : 29.69828 : -91.31347 : Patterson, LA +70393 : 29.995157 : -91.02586 : Plattenville, LA +70394 : 29.715302 : -90.6097 : Raceland, LA +70395 : 29.718856 : -90.83425 : Schriever, LA +70397 : 29.352141 : -90.82604 : Theriot, LA +70401 : 30.517866 : -90.47254 : Hammond, LA +70402 : 30.513982 : -90.480403 : Hammond, LA +70403 : 30.484785 : -90.4762 : Hammond, LA +70404 : 30.505061 : -90.422504 : Hammond, LA +70420 : 30.482725 : -90.00103 : Abita Springs, LA +70421 : 30.612371 : -90.405312 : Akers, LA +70422 : 30.723034 : -90.52108 : Amite, LA +70426 : 30.932125 : -89.86251 : Angie, LA +70427 : 30.762908 : -89.87774 : Bogalusa, LA +70428 : 30.591363 : -89.941408 : Sun, LA +70429 : 30.83503 : -90.037115 : Bogalusa, LA +70431 : 30.613004 : -89.93089 : Bush, LA +70432 : 30.496278 : -90.131145 : Covington, LA +70433 : 30.470793 : -90.10491 : Covington, LA +70434 : 30.492753 : -90.125666 : Covington, LA +70435 : 30.53978 : -90.07953 : Covington, LA +70436 : 30.793858 : -90.51026 : Fluker, LA +70437 : 30.616777 : -90.1898 : Folsom, LA +70438 : 30.844465 : -90.12066 : Franklinton, LA +70440 : 30.375852 : -90.07828 : Mandeville, LA +70441 : 30.867259 : -90.74688 : Greensburg, LA +70442 : 30.686968 : -90.32332 : Husser, LA +70443 : 30.628735 : -90.51744 : Independence, LA +70444 : 30.923938 : -90.50206 : Kentwood, LA +70445 : 30.327126 : -89.93118 : Lacombe, LA +70446 : 30.623502 : -90.35689 : Loranger, LA +70447 : 30.424049 : -90.18519 : Madisonville, LA +70448 : 30.367119 : -90.05999 : Mandeville, LA +70449 : 30.272335 : -90.72701 : Maurepas, LA +70450 : 30.944302 : -90.26252 : Mount Hermon, LA +70451 : 30.546528 : -90.48375 : Natalbany, LA +70452 : 30.401481 : -89.76917 : Pearl River, LA +70453 : 30.702471 : -90.77604 : Pine Grove, LA +70454 : 30.427599 : -90.41728 : Ponchatoula, LA +70455 : 30.520782 : -90.30638 : Robert, LA +70456 : 30.769493 : -90.51064 : Roseland, LA +70457 : 30.42551 : -89.881256 : Saint Benedict, LA +70458 : 30.269565 : -89.77587 : Slidell, LA +70459 : 30.42551 : -89.881256 : Slidell, LA +70460 : 30.298048 : -89.81176 : Slidell, LA +70461 : 30.266707 : -89.73049 : Slidell, LA +70462 : 30.386031 : -90.57297 : Springfield, LA +70463 : 30.658471 : -89.90398 : Sun, LA +70464 : 30.534785 : -89.88582 : Talisheek, LA +70465 : 30.875453 : -90.51254 : Tangipahoa, LA +70466 : 30.560995 : -90.50196 : Tickfaw, LA +70467 : 30.90169 : -89.820725 : Angie, LA +70469 : 30.42551 : -89.881256 : Slidell, LA +70470 : 30.42551 : -89.881256 : Mandeville, LA +70471 : 30.400949 : -90.08105 : Mandeville, LA +70494 : 30.432586 : -90.452775 : Ponchatoula, LA +70499 : 30.847346 : -90.154156 : Franklinton, LA +70501 : 30.2334 : -92.00959 : Lafayette, LA +70502 : 30.319799 : -92.026969 : Lafayette, LA +70503 : 30.185867 : -92.04706 : Lafayette, LA +70504 : 30.21385 : -92.01866 : Lafayette, LA +70505 : 30.202251 : -92.01877 : Lafayette, LA +70506 : 30.211901 : -92.05912 : Lafayette, LA +70507 : 30.2786 : -92.02759 : Lafayette, LA +70508 : 30.163368 : -92.01974 : Lafayette, LA +70509 : 30.156506 : -92.000019 : Lafayette, LA +70510 : 29.943573 : -92.14872 : Abbeville, LA +70511 : 30.032434 : -92.176655 : Abbeville, LA +70512 : 30.411741 : -91.91702 : Arnaudville, LA +70513 : 29.907136 : -91.90578 : Avery Island, LA +70514 : 29.841827 : -91.54679 : Baldwin, LA +70515 : 30.47461 : -92.58568 : Basile, LA +70516 : 30.365586 : -92.30363 : Branch, LA +70517 : 30.301254 : -91.86169 : Breaux Bridge, LA +70518 : 30.134801 : -91.95251 : Broussard, LA +70519 : 30.079692 : -91.911387 : Cade, LA +70520 : 30.327199 : -92.0433 : Carencro, LA +70521 : 30.336379 : -91.84786 : Cecilia, LA +70522 : 29.75226 : -91.439679 : Centerville, LA +70523 : 29.883266 : -91.5301 : Charenton, LA +70524 : 30.566122 : -92.32115 : Chataignier, LA +70525 : 30.414588 : -92.21772 : Church Point, LA +70526 : 30.213767 : -92.37921 : Crowley, LA +70527 : 30.228409 : -92.301795 : Crowley, LA +70528 : 29.945707 : -91.98682 : Delcambre, LA +70529 : 30.198258 : -92.16211 : Duson, LA +70531 : 30.237007 : -92.51199 : Egan, LA +70532 : 30.477275 : -92.69691 : Elton, LA +70533 : 29.941157 : -92.03811 : Erath, LA +70534 : 30.182784 : -92.46576 : Estherwood, LA +70535 : 30.492895 : -92.41578 : Eunice, LA +70537 : 30.261809 : -92.5677 : Evangeline, LA +70538 : 29.759314 : -91.52561 : Franklin, LA +70540 : 29.761665 : -91.46569 : Garden City, LA +70541 : 30.419571 : -92.04753 : Grand Coteau, LA +70542 : 30.005408 : -92.54417 : Gueydan, LA +70543 : 30.328683 : -92.49549 : Iota, LA +70544 : 29.910582 : -91.6698 : Jeanerette, LA +70546 : 30.242533 : -92.66375 : Jennings, LA +70548 : 29.984184 : -92.3207 : Kaplan, LA +70549 : 30.082515 : -92.72596 : Lake Arthur, LA +70550 : 30.517709 : -92.1835 : Lawtell, LA +70551 : 30.475194 : -91.973736 : Leonville, LA +70552 : 30.076638 : -91.71294 : Loreauville, LA +70554 : 30.63 : -92.42652 : Mamou, LA +70555 : 30.101305 : -92.13152 : Maurice, LA +70556 : 30.188258 : -92.57614 : Mermentau, LA +70558 : 30.101464 : -92.06338 : Milton, LA +70559 : 30.142775 : -92.51166 : Morse, LA +70560 : 29.975453 : -91.84073 : New Iberia, LA +70562 : 29.739932 : -91.6331 : New Iberia, LA +70563 : 30.022348 : -91.78314 : New Iberia, LA +70569 : 29.909643 : -91.812552 : Lydia, LA +70570 : 30.530965 : -92.09521 : Opelousas, LA +70571 : 30.57445 : -92.086077 : Opelousas, LA +70575 : 29.866543 : -92.158982 : Perry, LA +70576 : 30.781744 : -92.41968 : Pine Prairie, LA +70577 : 30.549089 : -91.93006 : Port Barre, LA +70578 : 30.234581 : -92.26431 : Rayne, LA +70580 : 30.675449 : -92.42562 : Reddell, LA +70581 : 30.24711 : -92.73951 : Roanoke, LA +70582 : 30.148473 : -91.8003 : Saint Martinville, LA +70583 : 30.244311 : -92.10099 : Scott, LA +70584 : 30.394648 : -92.07786 : Sunset, LA +70585 : 30.871853 : -92.40532 : Turkey Creek, LA +70586 : 30.710639 : -92.30628 : Ville Platte, LA +70589 : 30.653805 : -92.05479 : Washington, LA +70591 : 30.246368 : -92.83199 : Welsh, LA +70592 : 30.103107 : -91.99993 : Youngsville, LA +70593 : 30.20812 : -92.095109 : Lafayette, LA +70594 : 29.700243 : -90.570722 : Raceland, LA +70596 : 30.20812 : -92.095109 : Lafayette, LA +70598 : 30.20812 : -92.095109 : Lafayette, LA +70601 : 30.226399 : -93.20496 : Lake Charles, LA +70602 : 30.264232 : -93.326527 : Lake Charles, LA +70605 : 30.165907 : -93.24905 : Lake Charles, LA +70606 : 30.264232 : -93.326527 : Lake Charles, LA +70607 : 30.129908 : -93.19632 : Lake Charles, LA +70609 : 30.264232 : -93.326527 : Lake Charles, LA +70611 : 30.32797 : -93.2109 : Lake Charles, LA +70612 : 30.264232 : -93.326527 : Lake Charles, LA +70615 : 30.239906 : -93.14977 : Lake Charles, LA +70616 : 30.264232 : -93.326527 : Lake Charles, LA +70629 : 30.264232 : -93.326527 : Lake Charles, LA +70630 : 30.077002 : -93.03224 : Bell City, LA +70631 : 29.778234 : -93.40907 : Cameron, LA +70632 : 29.836547 : -93.0363 : Creole, LA +70633 : 30.44431 : -93.41221 : Dequincy, LA +70634 : 30.835881 : -93.27071 : Deridder, LA +70637 : 30.685067 : -92.98065 : Dry Creek, LA +70638 : 30.86741 : -92.79442 : Elizabeth, LA +70639 : 30.994164 : -93.49998 : Evans, LA +70640 : 30.366126 : -92.91837 : Fenton, LA +70642 : 31.111979 : -93.200936 : Fullerton, LA +70643 : 29.77124 : -92.88732 : Grand Chenier, LA +70644 : 30.799893 : -92.94408 : Grant, LA +70645 : 29.995358 : -93.37575 : Hackberry, LA +70646 : 30.107308 : -92.91992 : Hayes, LA +70647 : 30.243213 : -93.00386 : Iowa, LA +70648 : 30.494379 : -92.85992 : Kinder, LA +70650 : 30.235892 : -92.91527 : Lacassine, LA +70651 : 30.518729 : -92.96199 : Leblanc, LA +70652 : 30.599065 : -93.2561 : Longville, LA +70653 : 30.685274 : -93.55827 : Merryville, LA +70654 : 30.710561 : -92.89081 : Mittie, LA +70655 : 30.620456 : -92.74582 : Oberlin, LA +70656 : 30.937089 : -92.94802 : Pitkin, LA +70657 : 30.472103 : -93.13957 : Ragley, LA +70658 : 30.518748 : -93.02735 : Reeves, LA +70659 : 30.921274 : -93.28194 : Rosepine, LA +70660 : 30.586251 : -93.42135 : Singer, LA +70661 : 30.338939 : -93.66472 : Starks, LA +70662 : 30.811926 : -93.00582 : Sugartown, LA +70663 : 30.245205 : -93.3636 : Sulphur, LA +70664 : 30.264232 : -93.326527 : Sulphur, LA +70665 : 30.154028 : -93.42412 : Sulphur, LA +70668 : 30.183689 : -93.59815 : Vinton, LA +70669 : 30.251665 : -93.27047 : Westlake, LA +70704 : 30.51589 : -91.080373 : Baker, LA +70706 : 30.608471 : -90.92758 : Denham Springs, LA +70707 : 30.204707 : -90.869481 : Gonzales, LA +70710 : 30.350306 : -91.26121 : Addis, LA +70711 : 30.508318 : -90.58546 : Albany, LA +70712 : 30.949066 : -91.59294 : Angola, LA +70714 : 30.584787 : -91.14763 : Baker, LA +70715 : 30.822847 : -91.70531 : Batchelor, LA +70716 : 30.261384 : -91.36026 : Bayou Goula, LA +70717 : 30.547187 : -91.59119 : Blanks, LA +70718 : 30.201004 : -90.868876 : Brittany, LA +70719 : 30.384402 : -91.25549 : Brusly, LA +70720 : 30.587305 : -91.33252 : Bueche, LA +70721 : 30.216906 : -91.07975 : Carville, LA +70722 : 30.823174 : -90.921 : Clinton, LA +70723 : 30.063433 : -90.84644 : Convent, LA +70725 : 30.130584 : -90.95909 : Darrow, LA +70726 : 30.468526 : -90.92827 : Denham Springs, LA +70727 : 30.337495 : -90.843449 : Denham Springs, LA +70728 : 30.295446 : -90.945836 : Duplessis, LA +70729 : 30.546033 : -91.41898 : Erwinville, LA +70730 : 30.810733 : -91.11541 : Ethel, LA +70732 : 30.605673 : -91.61612 : Fordoche, LA +70733 : 30.307865 : -90.80054 : French Settlement, LA +70734 : 30.211172 : -91.00875 : Geismar, LA +70736 : 30.633678 : -91.33786 : Glynn, LA +70737 : 30.229237 : -90.92251 : Gonzales, LA +70738 : 30.204707 : -90.869481 : Burnside, LA +70739 : 30.585687 : -90.98014 : Greenwell Springs, LA +70740 : 30.399271 : -91.42148 : Grosse Tete, LA +70743 : 30.019278 : -90.77619 : Hester, LA +70744 : 30.535477 : -90.67464 : Holden, LA +70747 : 30.878083 : -91.67672 : Innis, LA +70748 : 30.826285 : -91.22812 : Jackson, LA +70749 : 30.622391 : -91.41468 : Jarreau, LA +70750 : 30.514159 : -91.74246 : Krotz Springs, LA +70751 : 30.7513 : -91.566273 : Labarre, LA +70752 : 30.587852 : -91.39994 : Lakeland, LA +70753 : 30.917437 : -91.7126 : Lettsworth, LA +70754 : 30.447866 : -90.75228 : Livingston, LA +70755 : 30.568308 : -91.55075 : Livonia, LA +70756 : 30.548421 : -91.6325 : Lottie, LA +70757 : 30.483791 : -91.51619 : Maringouin, LA +70759 : 30.720494 : -91.58029 : Morganza, LA +70760 : 30.700337 : -91.44032 : New Roads, LA +70761 : 30.972292 : -91.07895 : Norwood, LA +70762 : 30.609979 : -91.46181 : Oscar, LA +70763 : 30.03318 : -90.73674 : Paulina, LA +70764 : 30.270694 : -91.24853 : Plaquemine, LA +70765 : 30.261384 : -91.36026 : Plaquemine, LA +70767 : 30.473536 : -91.26324 : Port Allen, LA +70769 : 30.31144 : -90.93955 : Prairieville, LA +70770 : 30.642585 : -90.99489 : Pride, LA +70772 : 30.439483 : -91.46806 : Rosedale, LA +70773 : 30.613588 : -91.36361 : Rougon, LA +70774 : 30.212699 : -90.81947 : Saint Amant, LA +70775 : 30.857355 : -91.37308 : Saint Francisville, LA +70776 : 30.264611 : -91.09595 : Saint Gabriel, LA +70777 : 30.722133 : -91.10915 : Slaughter, LA +70778 : 30.182068 : -90.85707 : Sorrento, LA +70780 : 30.287104 : -91.15362 : Sunshine, LA +70781 : 30.561065 : -91.48607 : Torbert, LA +70782 : 30.934986 : -91.53701 : Tunica, LA +70783 : 30.680083 : -91.39852 : Ventress, LA +70784 : 30.917453 : -91.358149 : Wakefield, LA +70785 : 30.521962 : -90.84035 : Walker, LA +70786 : 30.550219 : -90.958219 : Watson, LA +70787 : 30.962103 : -91.47351 : Weyanoke, LA +70788 : 30.153959 : -91.1593 : White Castle, LA +70789 : 30.925815 : -91.09672 : Wilson, LA +70791 : 30.655578 : -91.14015 : Zachary, LA +70792 : 30.027914 : -90.802759 : Uncle Sam, LA +70801 : 30.44884 : -91.18633 : Baton Rouge, LA +70802 : 30.44629 : -91.17305 : Baton Rouge, LA +70803 : 30.405002 : -91.186834 : Baton Rouge, LA +70804 : 30.386267 : -91.133905 : Baton Rouge, LA +70805 : 30.485639 : -91.15612 : Baton Rouge, LA +70806 : 30.44495 : -91.13806 : Baton Rouge, LA +70807 : 30.534088 : -91.17865 : Baton Rouge, LA +70808 : 30.411391 : -91.1497 : Baton Rouge, LA +70809 : 30.403341 : -91.08035 : Baton Rouge, LA +70810 : 30.361609 : -91.09041 : Baton Rouge, LA +70811 : 30.525121 : -91.13185 : Baton Rouge, LA +70812 : 30.504989 : -91.1188 : Baton Rouge, LA +70813 : 30.520111 : -91.194863 : Baton Rouge, LA +70814 : 30.484756 : -91.06862 : Baton Rouge, LA +70815 : 30.45514 : -91.06358 : Baton Rouge, LA +70816 : 30.425791 : -91.03815 : Baton Rouge, LA +70817 : 30.387642 : -90.99921 : Baton Rouge, LA +70818 : 30.537938 : -91.04812 : Baton Rouge, LA +70819 : 30.46534 : -91.01659 : Baton Rouge, LA +70820 : 30.373865 : -91.17065 : Baton Rouge, LA +70821 : 30.461252 : -91.044723 : Baton Rouge, LA +70822 : 30.51589 : -91.080373 : Baton Rouge, LA +70823 : 30.51589 : -91.080373 : Baton Rouge, LA +70825 : 30.51589 : -91.080373 : Baton Rouge, LA +70826 : 30.51589 : -91.080373 : Baton Rouge, LA +70827 : 30.433837 : -91.082468 : Baton Rouge, LA +70831 : 30.51589 : -91.080373 : Baton Rouge, LA +70832 : 30.484853 : -92.694679 : Elton, LA +70833 : 30.51589 : -91.080373 : Baton Rouge, LA +70835 : 30.51589 : -91.080373 : Baton Rouge, LA +70836 : 30.388292 : -91.08631 : Baton Rouge, LA +70837 : 30.51589 : -91.080373 : Baton Rouge, LA +70848 : 30.433083 : -91.102808 : Baton Rouge, LA +70874 : 30.590238 : -91.2054 : Baton Rouge, LA +70879 : 30.51589 : -91.080373 : Baton Rouge, LA +70883 : 30.51589 : -91.080373 : Baton Rouge, LA +70884 : 30.51589 : -91.080373 : Baton Rouge, LA +70892 : 30.51589 : -91.080373 : Baton Rouge, LA +70893 : 30.412991 : -91.171456 : Baton Rouge, LA +70894 : 30.51589 : -91.080373 : Baton Rouge, LA +70895 : 30.51589 : -91.080373 : Baton Rouge, LA +70896 : 30.51589 : -91.080373 : Baton Rouge, LA +70898 : 30.51589 : -91.080373 : Baton Rouge, LA +70952 : 30.117148 : -91.990319 : Youngsville, LA +71001 : 32.57761 : -92.9062 : Arcadia, LA +71002 : 32.129489 : -93.08273 : Ashland, LA +71003 : 32.642811 : -93.01709 : Athens, LA +71004 : 32.765739 : -93.88028 : Belcher, LA +71006 : 32.697056 : -93.6991 : Benton, LA +71007 : 32.420611 : -94.00923 : Bethany, LA +71008 : 32.331964 : -92.95173 : Bienville, LA +71009 : 32.579853 : -93.89317 : Blanchard, LA +71016 : 32.204949 : -93.10383 : Castor, LA +71018 : 32.803257 : -93.40802 : Cotton Valley, LA +71019 : 32.050033 : -93.31928 : Coushatta, LA +71021 : 32.969535 : -93.44959 : Cullen, LA +71023 : 32.487485 : -93.39035 : Doyline, LA +71024 : 32.502528 : -93.21326 : Dubberly, LA +71025 : 32.062391 : -93.367949 : East Point, LA +71027 : 32.234006 : -93.69008 : Frierson, LA +71028 : 32.518748 : -93.05705 : Gibsland, LA +71029 : 32.828541 : -93.83918 : Gilliam, LA +71030 : 32.191147 : -93.8191 : Gloster, LA +71031 : 32.01716 : -92.9059 : Goldonna, LA +71032 : 32.110359 : -93.78584 : Grand Cane, LA +71033 : 32.453029 : -93.99683 : Greenwood, LA +71034 : 32.176112 : -93.30398 : Hall Summit, LA +71036 : 32.062391 : -93.367949 : Harmon, LA +71037 : 32.569798 : -93.55133 : Haughton, LA +71038 : 32.954851 : -93.11344 : Haynesville, LA +71039 : 32.429157 : -93.29549 : Heflin, LA +71040 : 32.78288 : -93.03176 : Homer, LA +71043 : 32.890777 : -93.87995 : Hosston, LA +71044 : 32.983957 : -93.89254 : Ida, LA +71045 : 32.342739 : -93.16075 : Jamestown, LA +71046 : 32.168532 : -93.95402 : Keatchie, LA +71047 : 32.309864 : -93.87089 : Keithville, LA +71048 : 32.830135 : -92.85568 : Lisbon, LA +71049 : 31.991863 : -93.98356 : Logansport, LA +71050 : 32.117539 : -93.913834 : Longstreet, LA +71051 : 32.31718 : -93.50366 : Elm Grove, LA +71052 : 32.031067 : -93.68585 : Mansfield, LA +71053 : 32.048905 : -93.608059 : South Mansfield, LA +71055 : 32.631009 : -93.28751 : Minden, LA +71058 : 32.576948 : -93.250705 : Minden, LA +71059 : 32.044529 : -93.691972 : Mansfield, LA +71060 : 32.679068 : -93.97534 : Mooringsport, LA +71061 : 32.748354 : -93.97188 : Oil City, LA +71063 : 31.920574 : -93.48365 : Pelican, LA +71064 : 32.913383 : -93.68912 : Plain Dealing, LA +71065 : 31.810803 : -93.5082 : Pleasant Hill, LA +71066 : 31.874172 : -93.19719 : Powhatan, LA +71067 : 32.596886 : -93.5026 : Princeton, LA +71068 : 32.304429 : -93.33008 : Ringgold, LA +71069 : 32.978828 : -93.99733 : Rodessa, LA +71070 : 32.122435 : -92.98414 : Saline, LA +71071 : 32.924798 : -93.45295 : Sarepta, LA +71072 : 32.941481 : -93.3102 : Shongaloo, LA +71073 : 32.535107 : -93.30297 : Sibley, LA +71075 : 32.994597 : -93.45992 : Springhill, LA +71076 : 32.25043 : -93.155616 : Castor, LA +71078 : 32.278422 : -93.79469 : Stonewall, LA +71079 : 32.937726 : -92.80471 : Summerfield, LA +71080 : 32.366002 : -93.101086 : Taylor, LA +71082 : 32.849008 : -93.97599 : Vivian, LA +71095 : 32.34205 : -93.203923 : Jamestown, LA +71101 : 32.505352 : -93.74861 : Shreveport, LA +71102 : 32.607556 : -93.75256 : Shreveport, LA +71103 : 32.490777 : -93.76761 : Shreveport, LA +71104 : 32.484232 : -93.73671 : Shreveport, LA +71105 : 32.457903 : -93.7133 : Shreveport, LA +71106 : 32.426104 : -93.74542 : Shreveport, LA +71107 : 32.56443 : -93.8305 : Shreveport, LA +71108 : 32.449286 : -93.78 : Shreveport, LA +71109 : 32.474453 : -93.80022 : Shreveport, LA +71110 : 32.477994 : -93.61918 : Barksdale AFB, LA +71111 : 32.552315 : -93.70836 : Bossier City, LA +71112 : 32.478752 : -93.6704 : Bossier City, LA +71113 : 32.62762 : -93.608968 : Bossier City, LA +71115 : 32.350987 : -93.62938 : Shreveport, LA +71118 : 32.397255 : -93.8043 : Shreveport, LA +71119 : 32.487601 : -93.89064 : Shreveport, LA +71120 : 32.607556 : -93.75256 : Shreveport, LA +71129 : 32.42067 : -93.8877 : Shreveport, LA +71130 : 32.607556 : -93.75256 : Shreveport, LA +71133 : 32.607556 : -93.75256 : Shreveport, LA +71134 : 32.607556 : -93.75256 : Shreveport, LA +71135 : 32.607556 : -93.75256 : Shreveport, LA +71136 : 32.607556 : -93.75256 : Shreveport, LA +71137 : 32.607556 : -93.75256 : Shreveport, LA +71138 : 32.607556 : -93.75256 : Shreveport, LA +71148 : 32.607556 : -93.75256 : Shreveport, LA +71149 : 32.607556 : -93.75256 : Shreveport, LA +71151 : 32.607556 : -93.75256 : Shreveport, LA +71152 : 32.607556 : -93.75256 : Shreveport, LA +71153 : 32.607556 : -93.75256 : Shreveport, LA +71154 : 32.607556 : -93.75256 : Shreveport, LA +71156 : 32.607556 : -93.75256 : Shreveport, LA +71161 : 32.607556 : -93.75256 : Shreveport, LA +71162 : 32.607556 : -93.75256 : Shreveport, LA +71163 : 32.607556 : -93.75256 : Shreveport, LA +71164 : 32.607556 : -93.75256 : Shreveport, LA +71165 : 32.607556 : -93.75256 : Shreveport, LA +71166 : 32.607556 : -93.75256 : Shreveport, LA +71171 : 32.62762 : -93.608968 : Bossier City, LA +71172 : 32.62762 : -93.608968 : Bossier City, LA +71201 : 32.519393 : -92.10755 : Monroe, LA +71202 : 32.456862 : -92.08881 : Monroe, LA +71203 : 32.547067 : -92.04384 : Monroe, LA +71207 : 32.490777 : -92.159354 : Monroe, LA +71208 : 32.496764 : -92.075615 : Monroe, LA +71209 : 32.527693 : -92.075583 : Monroe, LA +71210 : 32.490777 : -92.159354 : Monroe, LA +71211 : 32.490777 : -92.159354 : Monroe, LA +71212 : 32.528593 : -92.072683 : Monroe, LA +71213 : 32.490777 : -92.159354 : Monroe, LA +71218 : 32.350427 : -91.7722 : Archibald, LA +71219 : 32.308243 : -91.71527 : Baskin, LA +71220 : 32.814969 : -91.90678 : Bastrop, LA +71221 : 32.823863 : -91.843528 : Bastrop, LA +71222 : 32.829213 : -92.65296 : Bernice, LA +71223 : 32.919093 : -91.67737 : Bonita, LA +71225 : 32.507942 : -92.34923 : Calhoun, LA +71226 : 32.277816 : -92.45283 : Chatham, LA +71227 : 32.533389 : -92.49164 : Choudrant, LA +71229 : 32.678312 : -91.89546 : Collinston, LA +71230 : 32.138935 : -91.691899 : Crowville, LA +71232 : 32.438621 : -91.50809 : Delhi, LA +71233 : 32.341594 : -91.216458 : Delta, LA +71234 : 32.641967 : -92.3529 : Downsville, LA +71235 : 32.683644 : -92.67179 : Dubach, LA +71237 : 32.597244 : -91.47664 : Epps, LA +71238 : 32.361562 : -92.37517 : Eros, LA +71240 : 32.490777 : -92.159354 : Fairbanks, LA +71241 : 32.764289 : -92.37657 : Farmerville, LA +71242 : 32.82388 : -91.398944 : Forest, LA +71243 : 31.950754 : -91.78463 : Fort Necessity, LA +71245 : 32.526277 : -92.71794 : Grambling, LA +71247 : 32.272141 : -92.72489 : Hodge, LA +71249 : 32.138935 : -91.691899 : Jigger, LA +71250 : 32.978295 : -91.61945 : Jones, LA +71251 : 32.229884 : -92.69763 : Jonesboro, LA +71253 : 32.995821 : -91.31686 : Kilbourne, LA +71254 : 32.806899 : -91.20759 : Lake Providence, LA +71256 : 32.957004 : -92.70152 : Lillie, LA +71259 : 32.286179 : -91.80804 : Mangham, LA +71260 : 32.885372 : -92.23581 : Marion, LA +71261 : 32.770852 : -91.74361 : Mer Rouge, LA +71263 : 32.887552 : -91.4107 : Oak Grove, LA +71264 : 32.601149 : -91.79917 : Oak Ridge, LA +71266 : 32.714211 : -91.45776 : Pioneer, LA +71268 : 32.341112 : -92.72027 : Quitman, LA +71269 : 32.457301 : -91.78754 : Rayville, LA +71270 : 32.52476 : -92.64696 : Ruston, LA +71272 : 32.525825 : -92.649298 : Ruston, LA +71273 : 32.606535 : -92.648384 : Ruston, LA +71275 : 32.513699 : -92.80633 : Simsboro, LA +71276 : 32.582205 : -91.11541 : Sondheimer, LA +71277 : 32.957393 : -92.57935 : Spearsville, LA +71279 : 32.49191 : -91.856326 : Start, LA +71280 : 32.700356 : -92.08283 : Sterlington, LA +71281 : 32.490777 : -92.159354 : Swartz, LA +71282 : 32.397286 : -91.17657 : Tallulah, LA +71284 : 32.341594 : -91.216458 : Tallulah, LA +71286 : 32.660116 : -91.20531 : Transylvania, LA +71291 : 32.526944 : -92.1599 : West Monroe, LA +71292 : 32.456034 : -92.18276 : West Monroe, LA +71294 : 32.490777 : -92.159354 : West Monroe, LA +71295 : 32.156791 : -91.72874 : Winnsboro, LA +71301 : 31.294532 : -92.46015 : Alexandria, LA +71302 : 31.261716 : -92.42469 : Alexandria, LA +71303 : 31.302432 : -92.50515 : Alexandria, LA +71306 : 31.075638 : -92.446135 : Alexandria, LA +71307 : 31.203393 : -92.526927 : Alexandria, LA +71309 : 31.30473 : -92.619593 : Alexandria, LA +71315 : 31.139651 : -92.398384 : Alexandria, LA +71316 : 31.252471 : -91.77031 : Acme, LA +71320 : 31.1741 : -91.72501 : Bordelonville, LA +71322 : 30.920328 : -92.16809 : Bunkie, LA +71323 : 31.247945 : -92.21624 : Center Point, LA +71324 : 32.138935 : -91.691899 : Chase, LA +71325 : 30.996931 : -92.32228 : Cheneyville, LA +71326 : 31.755985 : -91.57852 : Clayton, LA +71327 : 30.98676 : -92.04319 : Cottonport, LA +71328 : 31.365331 : -92.19546 : Deville, LA +71329 : 31.095889 : -91.97899 : Dupont, LA +71330 : 31.110171 : -92.23657 : Echo, LA +71331 : 31.21968 : -92.07345 : Effie, LA +71333 : 30.930026 : -92.08955 : Evergreen, LA +71334 : 31.667978 : -91.51382 : Ferriday, LA +71336 : 32.037425 : -91.64475 : Gilbert, LA +71339 : 31.024614 : -91.92715 : Hamburg, LA +71340 : 31.765818 : -91.82382 : Harrisonburg, LA +71341 : 31.060792 : -92.15702 : Hessmer, LA +71342 : 31.654792 : -92.12872 : Jena, LA +71343 : 31.586986 : -91.86725 : Jonesville, LA +71345 : 30.728695 : -91.9727 : Lebeau, LA +71346 : 31.114462 : -92.40455 : Lecompte, LA +71348 : 31.203393 : -92.526927 : Libuse, LA +71350 : 31.067379 : -92.05447 : Mansura, LA +71351 : 31.140727 : -92.08056 : Marksville, LA +71353 : 30.698425 : -91.75288 : Melville, LA +71354 : 31.381317 : -91.76914 : Monterey, LA +71355 : 31.05305 : -91.91001 : Moreauville, LA +71356 : 30.835875 : -92.06564 : Morrow, LA +71357 : 32.090387 : -91.24121 : Newellton, LA +71358 : 30.717386 : -91.89085 : Palmetto, LA +71359 : 31.203393 : -92.526927 : Pineville, LA +71360 : 31.352105 : -92.4006 : Pineville, LA +71361 : 31.36923 : -92.419836 : Pineville, LA +71362 : 30.945975 : -91.95294 : Plaucheville, LA +71363 : 31.596272 : -91.77941 : Rhinehart, LA +71365 : 31.203393 : -92.526927 : Ruby, LA +71366 : 31.924224 : -91.31265 : Saint Joseph, LA +71367 : 30.895994 : -92.3126 : Saint Landry, LA +71368 : 31.85889 : -91.67463 : Sicily Island, LA +71369 : 30.966506 : -91.82242 : Simmesport, LA +71371 : 31.695553 : -92.22751 : Trout, LA +71373 : 31.540784 : -91.48698 : Vidalia, LA +71375 : 31.796575 : -91.4343 : Waterproof, LA +71377 : 31.615767 : -91.78713 : Wildsville, LA +71378 : 31.938233 : -91.70832 : Wisner, LA +71401 : 31.769334 : -91.97998 : Aimwell, LA +71403 : 31.215039 : -93.42301 : Anacoco, LA +71404 : 31.755314 : -92.75474 : Atlanta, LA +71405 : 31.415125 : -92.394536 : Ball, LA +71406 : 31.733049 : -93.51746 : Belmont, LA +71407 : 31.527479 : -92.48404 : Bentley, LA +71409 : 31.332031 : -92.67485 : Boyce, LA +71410 : 31.963299 : -92.77985 : Calvin, LA +71411 : 31.903462 : -93.09805 : Campti, LA +71414 : 31.817257 : -93.02552 : Clarence, LA +71415 : 32.026445 : -92.13951 : Clarks, LA +71416 : 31.541077 : -92.89842 : Cloutierville, LA +71417 : 31.5254 : -92.6815 : Colfax, LA +71418 : 32.130124 : -92.06755 : Columbia, LA +71419 : 31.80442 : -93.71835 : Converse, LA +71422 : 32.08115 : -92.63979 : Dodson, LA +71423 : 31.563093 : -92.54954 : Dry Prong, LA +71424 : 31.168617 : -92.6977 : Elmer, LA +71425 : 31.899409 : -91.91043 : Enterprise, LA +71426 : 31.492622 : -93.46457 : Fisher, LA +71427 : 31.378139 : -92.88735 : Flatwoods, LA +71428 : 31.612444 : -93.097958 : Flora, LA +71429 : 31.398236 : -93.44422 : Florien, LA +71430 : 31.050239 : -92.52474 : Forest Hill, LA +71431 : 31.258681 : -92.677545 : Gardner, LA +71432 : 31.759474 : -92.38927 : Georgetown, LA +71433 : 31.004922 : -92.62099 : Glenmora, LA +71434 : 31.440908 : -92.94724 : Gorum, LA +71435 : 32.024884 : -92.16421 : Grayson, LA +71436 : 30.97759 : -92.572039 : McNary, LA +71438 : 31.118135 : -92.79996 : Hineston, LA +71439 : 31.330255 : -93.38882 : Hornbeck, LA +71440 : 31.951166 : -92.565884 : Joyce, LA +71441 : 31.95047 : -92.15107 : Kelly, LA +71443 : 31.1019 : -93.361238 : Kurthwood, LA +71444 : 31.120174 : -93.104943 : Lacamp, LA +71446 : 31.138723 : -93.22745 : Leesville, LA +71447 : 31.452874 : -92.79465 : Lena, LA +71448 : 31.203393 : -92.526927 : Longleaf, LA +71449 : 31.514631 : -93.54869 : Many, LA +71450 : 31.77112 : -93.41547 : Marthaville, LA +71452 : 31.612618 : -92.98075 : Melrose, LA +71454 : 31.671252 : -92.85932 : Montgomery, LA +71455 : 31.371519 : -92.97318 : Mora, LA +71456 : 31.660742 : -92.98886 : Natchez, LA +71457 : 31.751287 : -93.09021 : Natchitoches, LA +71458 : 31.747563 : -93.079055 : Natchitoches, LA +71459 : 31.072209 : -93.21762 : Leesville, LA +71460 : 31.448907 : -93.621234 : Negreet, LA +71461 : 31.114793 : -93.27979 : Newllano, LA +71462 : 31.672295 : -93.71997 : Noble, LA +71463 : 30.806617 : -92.65224 : Oakdale, LA +71465 : 31.861406 : -92.19259 : Olla, LA +71466 : 31.200922 : -92.72641 : Otis, LA +71467 : 31.529155 : -92.39418 : Pollock, LA +71468 : 31.494144 : -93.17508 : Provencal, LA +71469 : 31.693192 : -93.29586 : Robeline, LA +71471 : 31.749699 : -92.927989 : Saint Maurice, LA +71472 : 31.206148 : -92.80459 : Sieper, LA +71473 : 32.100491 : -92.43442 : Sikes, LA +71474 : 31.252873 : -93.02395 : Simpson, LA +71475 : 31.111979 : -93.200936 : Slagle, LA +71477 : 31.399855 : -92.604193 : Tioga, LA +71479 : 31.823038 : -92.34017 : Tullos, LA +71480 : 31.861708 : -92.29141 : Urania, LA +71481 : 31.592547 : -92.58483 : Verda, LA +71483 : 31.915828 : -92.6445 : Winnfield, LA +71485 : 31.163538 : -92.50144 : Woodworth, LA +71486 : 31.597407 : -93.66397 : Zwolle, LA +71496 : 31.110298 : -93.289988 : Leesville, LA +71497 : 31.747563 : -93.079055 : Natchitoches, LA +71545 : 31.66581 : -92.890325 : Montgomery, LA +71601 : 34.215648 : -91.98841 : Pine Bluff, AR +71602 : 34.261359 : -92.09592 : White Hall, AR +71603 : 34.189398 : -92.04495 : Pine Bluff, AR +71611 : 34.261465 : -91.955115 : Pine Bluff, AR +71612 : 34.277534 : -91.832539 : White Hall, AR +71613 : 34.157876 : -92.071284 : Pine Bluff, AR +71630 : 33.608935 : -91.20577 : Arkansas City, AR +71631 : 33.580919 : -92.26477 : Banks, AR +71635 : 33.125032 : -91.97037 : Crossett, AR +71638 : 33.525266 : -91.47922 : Dermott, AR +71639 : 33.900515 : -91.50041 : Dumas, AR +71640 : 33.118147 : -91.26107 : Eudora, AR +71642 : 33.375479 : -91.86188 : Fountain Hill, AR +71643 : 34.004537 : -91.5784 : Gould, AR +71644 : 34.110042 : -91.70488 : Grady, AR +71646 : 33.224814 : -91.79176 : Hamburg, AR +71647 : 33.384421 : -92.14897 : Hermitage, AR +71649 : 33.283901 : -91.25206 : Jennie, AR +71650 : 33.590601 : -91.732829 : Jerome, AR +71651 : 33.346473 : -92.31954 : Jersey, AR +71652 : 33.914079 : -92.33251 : Kingsland, AR +71653 : 33.351501 : -91.27133 : Lake Village, AR +71654 : 33.628723 : -91.38236 : McGehee, AR +71655 : 33.62086 : -91.76272 : Monticello, AR +71656 : 33.592575 : -91.81237 : Monticello, AR +71657 : 33.590601 : -91.732829 : Monticello, AR +71658 : 33.323463 : -91.54633 : Montrose, AR +71659 : 34.154012 : -91.80062 : Moscow, AR +71660 : 33.736301 : -92.18447 : New Edinburg, AR +71661 : 33.133126 : -91.53103 : Parkdale, AR +71662 : 33.818318 : -91.214054 : Pickens, AR +71663 : 33.236401 : -91.47982 : Portland, AR +71665 : 33.941582 : -92.14575 : Rison, AR +71666 : 33.763205 : -91.27239 : McGehee, AR +71667 : 33.945654 : -91.83957 : Star City, AR +71670 : 33.737729 : -91.41876 : Tillar, AR +71671 : 33.608004 : -92.08101 : Warren, AR +71674 : 33.873022 : -91.24235 : Watson, AR +71675 : 33.592313 : -91.93607 : Wilmar, AR +71676 : 33.059255 : -91.55866 : Wilmot, AR +71677 : 33.749668 : -91.4657 : Winchester, AR +71678 : 33.978738 : -91.699077 : Yorktown, AR +71691 : 33.608542 : -92.081022 : Warren, AR +71701 : 33.578096 : -92.81368 : Camden, AR +71711 : 33.589009 : -92.842649 : Camden, AR +71720 : 33.733334 : -92.64664 : Bearden, AR +71721 : 34.055486 : -93.189406 : Beirne, AR +71722 : 33.704074 : -93.13364 : Bluff City, AR +71724 : 33.326096 : -92.53866 : Calion, AR +71725 : 34.058224 : -92.56519 : Carthage, AR +71726 : 33.686264 : -93.01966 : Chidester, AR +71728 : 34.010316 : -93.097627 : Curtis, AR +71730 : 33.218456 : -92.64911 : El Dorado, AR +71731 : 33.198024 : -92.52891 : El Dorado, AR +71740 : 33.091077 : -93.18468 : Emerson, AR +71742 : 33.834201 : -92.43421 : Fordyce, AR +71743 : 33.913838 : -93.13855 : Gurdon, AR +71744 : 33.521575 : -92.47898 : Hampton, AR +71745 : 33.525889 : -92.39227 : Harrell, AR +71747 : 33.050688 : -92.18501 : Huttig, AR +71748 : 33.97547 : -92.647817 : Ivan, AR +71749 : 33.067477 : -92.76449 : Junction City, AR +71750 : 33.198024 : -92.52891 : Lawson, AR +71751 : 33.397936 : -92.77116 : Louann, AR +71752 : 33.362351 : -93.20045 : McNeil, AR +71753 : 33.249608 : -93.20427 : Magnolia, AR +71754 : 33.242571 : -93.22996 : Magnolia, AR +71758 : 33.325889 : -92.90485 : Mount Holly, AR +71759 : 33.323051 : -92.66095 : Norphlet, AR +71762 : 33.350296 : -92.7379 : Smackover, AR +71763 : 33.91855 : -92.80484 : Sparkman, AR +71764 : 33.4125 : -93.06263 : Stephens, AR +71765 : 33.123334 : -92.34988 : Strong, AR +71766 : 33.741892 : -92.48834 : Thornton, AR +71767 : 33.535994 : -92.543915 : Hampton, AR +71768 : 33.198024 : -92.52891 : Urbana, AR +71769 : 33.236156 : -93.234494 : Village, AR +71770 : 33.34937 : -93.31176 : Waldo, AR +71772 : 33.832537 : -93.1238 : Whelen Springs, AR +71801 : 33.657969 : -93.59486 : Hope, AR +71802 : 33.765584 : -93.559162 : Hope, AR +71820 : 33.780463 : -94.24384 : Alleene, AR +71822 : 33.675597 : -94.13465 : Ashdown, AR +71823 : 33.822226 : -94.13294 : Ben Lomond, AR +71825 : 33.867903 : -93.57136 : Blevins, AR +71826 : 33.102083 : -93.67372 : Bradley, AR +71827 : 33.378452 : -93.43692 : Buckner, AR +71828 : 33.70082 : -93.294126 : Cale, AR +71831 : 33.793524 : -93.807007 : Columbus, AR +71832 : 34.038226 : -94.33597 : De Queen, AR +71833 : 34.152505 : -94.03786 : Dierks, AR +71834 : 33.09863 : -93.95261 : Doddridge, AR +71835 : 33.70485 : -93.46779 : Emmet, AR +71836 : 33.731908 : -94.38751 : Foreman, AR +71837 : 33.271824 : -93.85202 : Fouke, AR +71838 : 33.638783 : -93.80828 : Fulton, AR +71839 : 33.312764 : -93.71734 : Garland City, AR +71840 : 33.316578 : -93.854484 : Genoa, AR +71841 : 34.163393 : -94.3049 : Gillham, AR +71842 : 33.927425 : -94.30834 : Horatio, AR +71844 : 33.70082 : -93.294126 : Laneburg, AR +71845 : 33.326251 : -93.58986 : Lewisville, AR +71846 : 33.961768 : -94.14717 : Lockesburg, AR +71847 : 33.920355 : -93.63751 : McCaskill, AR +71851 : 33.859173 : -93.92692 : Mineral Springs, AR +71852 : 33.985613 : -93.85214 : Nashville, AR +71853 : 33.582879 : -94.01151 : Ogden, AR +71854 : 33.428618 : -93.99236 : Texarkana, AR +71855 : 33.865305 : -93.7512 : Ozan, AR +71857 : 33.806886 : -93.36595 : Prescott, AR +71858 : 33.551439 : -93.28269 : Rosston, AR +71859 : 33.740704 : -93.91747 : Saratoga, AR +71860 : 33.35996 : -93.49293 : Stamps, AR +71861 : 33.108043 : -93.47283 : Taylor, AR +71862 : 33.761309 : -93.71273 : Washington, AR +71864 : 33.70082 : -93.294126 : Willisville, AR +71865 : 33.741986 : -94.14867 : Wilton, AR +71866 : 33.865609 : -94.38408 : Winthrop, AR +71901 : 34.506487 : -93.01941 : Hot Springs National Park, AR +71902 : 34.581374 : -93.099403 : Hot Springs National Park, AR +71903 : 34.581374 : -93.099403 : Hot Springs National Park, AR +71907 : 34.532516 : -93.048397 : Hot Springs, AR +71909 : 34.657742 : -92.9811 : Hot Springs Village, AR +71910 : 34.581374 : -93.099403 : Hot Springs Village, AR +71913 : 34.47056 : -93.08805 : Hot Springs National Park, AR +71914 : 34.513682 : -92.968531 : Hot Springs National Park, AR +71920 : 34.055486 : -93.189406 : Alpine, AR +71921 : 34.257603 : -93.45822 : Amity, AR +71922 : 34.033062 : -93.42614 : Antoine, AR +71923 : 34.111837 : -93.05585 : Arkadelphia, AR +71929 : 34.285033 : -93.19533 : Bismarck, AR +71932 : 34.537164 : -94.0972 : Board Camp, AR +71933 : 34.397266 : -93.4063 : Bonnerdale, AR +71935 : 34.373399 : -93.70591 : Caddo Gap, AR +71937 : 34.398483 : -94.39398 : Cove, AR +71940 : 34.082845 : -93.51733 : Delight, AR +71941 : 34.254277 : -92.95971 : Donaldson, AR +71942 : 34.223546 : -93.002367 : Friendship, AR +71943 : 34.320028 : -93.5993 : Glenwood, AR +71944 : 34.24238 : -94.35535 : Grannis, AR +71945 : 34.496472 : -94.3691 : Hatfield, AR +71946 : 34.459413 : -94.200221 : Hatton, AR +71949 : 34.727093 : -93.03315 : Jessieville, AR +71950 : 34.251107 : -93.76005 : Kirby, AR +71951 : 34.581374 : -93.099403 : Hot Springs National Park, AR +71952 : 34.29627 : -93.83656 : Langley, AR +71953 : 34.588479 : -94.21567 : Mena, AR +71956 : 34.663502 : -93.23591 : Mountain Pine, AR +71957 : 34.571277 : -93.58361 : Mount Ida, AR +71958 : 34.118589 : -93.69401 : Murfreesboro, AR +71959 : 34.229742 : -93.88694 : Newhope, AR +71960 : 34.480095 : -93.72298 : Norman, AR +71961 : 34.606137 : -93.82391 : Oden, AR +71962 : 34.072187 : -93.33704 : Okolona, AR +71964 : 34.424114 : -93.24096 : Pearcy, AR +71965 : 34.655204 : -93.73748 : Pencil Bluff, AR +71966 : 34.542995 : -93.66463 : Oden, AR +71968 : 34.522254 : -93.25662 : Royal, AR +71969 : 34.679542 : -93.61788 : Sims, AR +71970 : 34.669401 : -93.4857 : Story, AR +71971 : 34.299569 : -94.03479 : Umpire, AR +71972 : 34.381056 : -94.19716 : Vandervoort, AR +71973 : 34.302177 : -94.35083 : Wickes, AR +71998 : 34.055486 : -93.189406 : Arkadelphia, AR +71999 : 34.055486 : -93.189406 : Arkadelphia, AR +72001 : 35.058503 : -92.88762 : Adona, AR +72002 : 34.644387 : -92.50223 : Alexander, AR +72003 : 34.403216 : -91.40953 : Almyra, AR +72004 : 34.252213 : -91.7679 : Altheimer, AR +72005 : 35.569503 : -91.10435 : Amagon, AR +72006 : 35.251768 : -91.35603 : Augusta, AR +72007 : 34.998573 : -91.98417 : Austin, AR +72010 : 35.321261 : -91.54989 : Bald Knob, AR +72011 : 34.523858 : -92.46989 : Bauxite, AR +72012 : 35.095774 : -91.90636 : Beebe, AR +72013 : 35.452494 : -92.36279 : Bee Branch, AR +72014 : 35.429694 : -91.10723 : Beedeville, AR +72015 : 34.564734 : -92.59562 : Benton, AR +72016 : 34.993579 : -92.62183 : Bigelow, AR +72017 : 34.864607 : -91.40408 : Biscoe, AR +72018 : 34.597345 : -92.622857 : Benton, AR +72019 : 34.804791 : -92.28925 : North Little Rock, AR +72020 : 35.461798 : -91.46353 : Bradford, AR +72021 : 34.867846 : -91.19271 : Brinkley, AR +72022 : 34.606079 : -92.49472 : Bryant, AR +72023 : 34.967043 : -92.03537 : Cabot, AR +72024 : 34.776306 : -91.74635 : Carlisle, AR +72025 : 35.043093 : -93.00689 : Casa, AR +72026 : 34.505369 : -91.30213 : Casscoe, AR +72027 : 35.365909 : -92.57876 : Center Ridge, AR +72028 : 35.57727 : -92.545572 : Choctaw, AR +72029 : 34.697068 : -91.29347 : Clarendon, AR +72030 : 35.423473 : -92.67942 : Cleveland, AR +72031 : 35.586064 : -92.48355 : Clinton, AR +72032 : 35.075467 : -92.43401 : Conway, AR +72033 : 35.105306 : -92.354915 : Conway, AR +72034 : 35.074617 : -92.444426 : Conway, AR +72035 : 35.105306 : -92.354915 : Conway, AR +72036 : 35.011873 : -91.25449 : Cotton Plant, AR +72037 : 34.541185 : -91.875767 : Coy, AR +72038 : 34.438327 : -91.26907 : Crocketts Bluff, AR +72039 : 35.339128 : -92.4036 : Damascus, AR +72040 : 34.955641 : -91.52399 : Des Arc, AR +72041 : 34.745671 : -91.46945 : De Valls Bluff, AR +72042 : 34.283347 : -91.32515 : De Witt, AR +72043 : 35.633263 : -91.26187 : Diaz, AR +72044 : 35.624351 : -92.16056 : Edgemont, AR +72045 : 35.141743 : -92.07641 : El Paso, AR +72046 : 34.53785 : -91.92159 : England, AR +72047 : 35.220931 : -92.21721 : Enola, AR +72048 : 34.28965 : -91.13632 : Ethel, AR +72051 : 35.814005 : -92.32243 : Fox, AR +72052 : 35.144271 : -91.77722 : Garner, AR +72053 : 34.708292 : -92.22764 : College Station, AR +72055 : 34.109348 : -91.36875 : Gillett, AR +72057 : 34.14741 : -92.31641 : Grapevine, AR +72058 : 35.236993 : -92.37573 : Greenbrier, AR +72059 : 35.179148 : -91.259428 : Gregory, AR +72060 : 35.091184 : -91.58451 : Griffithville, AR +72061 : 35.311481 : -92.27505 : Guy, AR +72063 : 35.320423 : -92.7496 : Hattieville, AR +72064 : 34.781079 : -91.59288 : Hazen, AR +72065 : 34.52109 : -92.29743 : Hensley, AR +72066 : 34.785525 : -91.573785 : Hickory Plains, AR +72067 : 35.564065 : -92.1649 : Higden, AR +72068 : 35.169853 : -91.70833 : Higginson, AR +72069 : 34.584347 : -91.14873 : Holly Grove, AR +72070 : 35.023369 : -92.71047 : Houston, AR +72071 : 35.179148 : -91.259428 : Howell, AR +72072 : 34.516932 : -91.76502 : Humnoke, AR +72073 : 34.396301 : -91.66201 : Humphrey, AR +72074 : 35.04369 : -91.12029 : Hunter, AR +72075 : 35.640464 : -91.30412 : Jacksonport, AR +72076 : 34.879419 : -92.12244 : Jacksonville, AR +72078 : 34.751918 : -92.392487 : Jacksonville, AR +72079 : 34.401717 : -92.20272 : Jefferson, AR +72080 : 35.567694 : -92.82756 : Jerusalem, AR +72081 : 35.319143 : -91.65148 : Judsonia, AR +72082 : 35.233947 : -91.67048 : Kensett, AR +72083 : 34.604268 : -92.01479 : Keo, AR +72084 : 34.17618 : -92.65463 : Leola, AR +72085 : 35.362742 : -91.8275 : Letona, AR +72086 : 34.7964 : -91.90949 : Lonoke, AR +72087 : 34.581202 : -92.8236 : Lonsdale, AR +72088 : 35.598238 : -92.26358 : Fairfield Bay, AR +72089 : 34.635041 : -92.65974 : Bryant, AR +72098 : 34.89522 : -92.140701 : Jacksonville, AR +72099 : 34.908539 : -92.11722 : Little Rock Air Force Base, AR +72101 : 35.224432 : -91.15291 : McCrory, AR +72102 : 35.125583 : -91.82508 : McRae, AR +72103 : 34.598551 : -92.38169 : Mabelvale, AR +72104 : 34.364093 : -92.8146 : Malvern, AR +72105 : 34.437118 : -92.89278 : Jones Mill, AR +72106 : 34.969848 : -92.42483 : Mayflower, AR +72107 : 35.145915 : -92.54648 : Menifee, AR +72108 : 34.726737 : -91.10958 : Monroe, AR +72110 : 35.156491 : -92.75858 : Morrilton, AR +72111 : 35.227869 : -92.13033 : Mount Vernon, AR +72112 : 35.586065 : -91.24695 : Newport, AR +72113 : 34.854746 : -92.39981 : Maumelle, AR +72114 : 34.763924 : -92.26463 : North Little Rock, AR +72115 : 34.751918 : -92.392487 : North Little Rock, AR +72116 : 34.799541 : -92.24764 : North Little Rock, AR +72117 : 34.777238 : -92.17913 : North Little Rock, AR +72118 : 34.813269 : -92.30229 : North Little Rock, AR +72119 : 34.80165 : -92.259781 : North Little Rock, AR +72120 : 34.855962 : -92.21997 : Sherwood, AR +72121 : 35.432905 : -91.81901 : Pangburn, AR +72122 : 34.774077 : -92.7549 : Paron, AR +72123 : 35.256759 : -91.23819 : Patterson, AR +72124 : 34.751918 : -92.392487 : North Little Rock, AR +72125 : 35.056424 : -92.79432 : Perry, AR +72126 : 34.965699 : -92.86841 : Perryville, AR +72127 : 35.155206 : -92.61975 : Plumerville, AR +72128 : 34.32012 : -92.63984 : Poyen, AR +72129 : 34.330808 : -92.54349 : Prattsville, AR +72130 : 35.638247 : -92.06612 : Prim, AR +72131 : 35.402236 : -92.20204 : Quitman, AR +72132 : 34.443452 : -92.1854 : Redfield, AR +72133 : 34.165734 : -91.57169 : Reydell, AR +72134 : 34.640886 : -91.3892 : Roe, AR +72135 : 34.880442 : -92.55142 : Roland, AR +72136 : 35.230036 : -92.01106 : Romance, AR +72137 : 35.341123 : -92.06141 : Rose Bud, AR +72139 : 35.36083 : -91.50875 : Russell, AR +72140 : 34.383661 : -91.15428 : Saint Charles, AR +72141 : 35.51921 : -92.66488 : Scotland, AR +72142 : 34.689349 : -92.07792 : Scott, AR +72143 : 35.239022 : -91.73776 : Searcy, AR +72145 : 35.277393 : -91.732556 : Searcy, AR +72149 : 35.247376 : -91.73139 : Searcy, AR +72150 : 34.31985 : -92.39319 : Sheridan, AR +72152 : 34.352844 : -91.98078 : Sherrill, AR +72153 : 35.619538 : -92.32589 : Shirley, AR +72156 : 35.284619 : -92.6754 : Solgohachia, AR +72157 : 35.290158 : -92.55715 : Springfield, AR +72158 : 34.635041 : -92.65974 : Benton, AR +72160 : 34.479852 : -91.53854 : Stuttgart, AR +72164 : 34.687292 : -92.2399 : Sweet Home, AR +72165 : 35.594246 : -91.45052 : Thida, AR +72166 : 34.061917 : -91.24828 : Tichnor, AR +72167 : 34.433276 : -92.66087 : Traskwood, AR +72168 : 34.434204 : -91.98585 : Tucker, AR +72169 : 35.391629 : -91.22927 : Tupelo, AR +72170 : 34.576099 : -91.46138 : Ulm, AR +72173 : 35.102318 : -92.22148 : Vilonia, AR +72175 : 34.351954 : -91.77681 : Wabbaseka, AR +72176 : 35.008529 : -91.92244 : Ward, AR +72178 : 35.203213 : -91.606367 : West Point, AR +72179 : 35.505158 : -91.87084 : Wilburn, AR +72180 : 34.528857 : -92.21175 : Woodson, AR +72181 : 35.163915 : -92.45297 : Wooster, AR +72182 : 34.429059 : -92.059863 : Wright, AR +72183 : 34.600398 : -92.19513 : Wrightsville, AR +72189 : 35.179148 : -91.259428 : McCrory, AR +72190 : 34.751918 : -92.392487 : North Little Rock, AR +72199 : 34.827174 : -92.284718 : North Little Rock, AR +72201 : 34.745692 : -92.27987 : Little Rock, AR +72202 : 34.739224 : -92.27765 : Little Rock, AR +72203 : 34.883484 : -92.390766 : Little Rock, AR +72204 : 34.729159 : -92.34019 : Little Rock, AR +72205 : 34.752391 : -92.3355 : Little Rock, AR +72206 : 34.690671 : -92.26865 : Little Rock, AR +72207 : 34.771291 : -92.34242 : Little Rock, AR +72209 : 34.674192 : -92.35557 : Little Rock, AR +72210 : 34.71542 : -92.47087 : Little Rock, AR +72211 : 34.749723 : -92.41345 : Little Rock, AR +72212 : 34.783505 : -92.40807 : Little Rock, AR +72214 : 34.762141 : -92.228248 : Little Rock, AR +72215 : 34.751918 : -92.392487 : Little Rock, AR +72216 : 34.817834 : -92.235668 : Little Rock, AR +72217 : 34.830158 : -92.170174 : Little Rock, AR +72219 : 34.751918 : -92.392487 : Little Rock, AR +72221 : 34.751918 : -92.392487 : Little Rock, AR +72222 : 34.751918 : -92.392487 : Little Rock, AR +72223 : 34.796399 : -92.46821 : Little Rock, AR +72225 : 34.751918 : -92.392487 : Little Rock, AR +72227 : 34.771024 : -92.37117 : Little Rock, AR +72231 : 34.80189 : -92.189397 : Little Rock, AR +72259 : 34.661442 : -92.318651 : Little Rock, AR +72295 : 34.751918 : -92.392487 : Little Rock, AR +72301 : 35.150009 : -90.17636 : West Memphis, AR +72303 : 35.137366 : -90.285543 : West Memphis, AR +72310 : 35.852046 : -89.972762 : Armorel, AR +72311 : 34.719877 : -90.89796 : Aubrey, AR +72312 : 34.546696 : -90.767879 : Barton, AR +72313 : 35.712249 : -90.028429 : Bassett, AR +72314 : 35.357184 : -90.677331 : Birdeye, AR +72315 : 35.925991 : -89.91767 : Blytheville, AR +72316 : 35.694942 : -89.966819 : Blytheville, AR +72319 : 35.694942 : -89.966819 : Gosnell, AR +72320 : 34.764633 : -90.54588 : Brickeys, AR +72321 : 35.818518 : -89.93751 : Burdette, AR +72322 : 35.061156 : -90.81547 : Caldwell, AR +72324 : 35.387053 : -90.76307 : Cherry Valley, AR +72325 : 35.286354 : -90.253781 : Clarkedale, AR +72326 : 35.111687 : -90.8989 : Colt, AR +72327 : 35.232817 : -90.33123 : Crawfordsville, AR +72328 : 34.131527 : -90.97793 : Crumrod, AR +72329 : 35.621318 : -90.00576 : Driver, AR +72330 : 35.601699 : -90.20386 : Dyess, AR +72331 : 35.266812 : -90.46421 : Earle, AR +72332 : 35.103643 : -90.31096 : Edmondson, AR +72333 : 34.305697 : -90.85597 : Elaine, AR +72335 : 35.010683 : -90.78048 : Forrest City, AR +72336 : 35.100867 : -90.726069 : Forrest City, AR +72338 : 35.443275 : -90.17801 : Frenchmans Bayou, AR +72339 : 35.411831 : -90.27537 : Gilmore, AR +72340 : 34.935463 : -91.02712 : Goodwin, AR +72341 : 34.903767 : -90.76129 : Haynes, AR +72342 : 34.485028 : -90.64636 : Helena, AR +72345 : 35.531429 : -90.414113 : Marked Tree, AR +72346 : 35.079258 : -90.46399 : Heth, AR +72347 : 35.396138 : -90.99703 : Hickory Ridge, AR +72348 : 34.935197 : -90.44153 : Hughes, AR +72350 : 35.512756 : -90.14514 : Joiner, AR +72351 : 35.673312 : -90.0974 : Keiser, AR +72352 : 34.769714 : -90.755195 : La Grange, AR +72353 : 34.297754 : -91.00403 : Lambrook, AR +72354 : 35.624419 : -90.3249 : Lepanto, AR +72355 : 34.554466 : -90.76901 : Lexa, AR +72358 : 35.777085 : -89.89214 : Luxora, AR +72359 : 35.013693 : -90.72317 : Madison, AR +72360 : 34.764904 : -90.77793 : Marianna, AR +72364 : 35.200501 : -90.20234 : Marion, AR +72365 : 35.534421 : -90.41892 : Marked Tree, AR +72366 : 34.550982 : -90.94433 : Marvell, AR +72367 : 34.189902 : -90.97694 : Mellwood, AR +72368 : 34.805649 : -91.00582 : Moro, AR +72369 : 34.459854 : -90.78022 : Oneida, AR +72370 : 35.696385 : -90.02631 : Osceola, AR +72372 : 34.981162 : -90.96503 : Palestine, AR +72373 : 35.292009 : -90.5875 : Parkin, AR +72374 : 34.554559 : -90.84231 : Poplar Grove, AR +72376 : 35.102775 : -90.31884 : Proctor, AR +72377 : 35.679593 : -90.34153 : Rivervale, AR +72379 : 34.044682 : -91.0194 : Snow Lake, AR +72381 : 35.694942 : -89.966819 : Tomato, AR +72383 : 34.498519 : -91.05167 : Turner, AR +72384 : 35.375704 : -90.22848 : Turrell, AR +72385 : 35.296539 : -90.772419 : Twist, AR +72386 : 35.473821 : -90.36077 : Tyronza, AR +72387 : 35.328336 : -90.77134 : Vanndale, AR +72389 : 34.358049 : -90.88366 : Wabash, AR +72390 : 34.546274 : -90.65869 : West Helena, AR +72391 : 35.694942 : -89.966819 : West Ridge, AR +72392 : 34.929287 : -91.09866 : Wheatley, AR +72394 : 35.05102 : -90.63521 : Widener, AR +72395 : 35.585875 : -90.04742 : Wilson, AR +72396 : 35.229779 : -90.83237 : Wynne, AR +72397 : 35.296539 : -90.772419 : McCrory, AR +72401 : 35.844795 : -90.68443 : Jonesboro, AR +72402 : 35.80881 : -90.652887 : Jonesboro, AR +72403 : 35.830541 : -90.703915 : Jonesboro, AR +72404 : 35.781707 : -90.74506 : Jonesboro, AR +72410 : 35.930405 : -91.07664 : Alicia, AR +72411 : 35.747274 : -90.569 : Bay, AR +72412 : 36.128323 : -90.69114 : Beech Grove, AR +72413 : 36.323353 : -90.81054 : Biggers, AR +72414 : 35.823762 : -90.37402 : Black Oak, AR +72415 : 36.120567 : -91.15045 : Black Rock, AR +72416 : 35.927057 : -90.79589 : Bono, AR +72417 : 35.92007 : -90.57059 : Brookland, AR +72419 : 35.755308 : -90.32581 : Caraway, AR +72421 : 35.786094 : -90.97073 : Cash, AR +72422 : 36.410344 : -90.56479 : Corning, AR +72423 : 35.723939 : -91.203248 : Tuckerman, AR +72424 : 36.384555 : -90.73187 : Datto, AR +72425 : 36.21405 : -90.74383 : Delaplaine, AR +72426 : 35.855743 : -90.04314 : Dell, AR +72427 : 35.867472 : -90.94537 : Egypt, AR +72428 : 35.744651 : -90.22249 : Etowah, AR +72429 : 35.49293 : -90.95873 : Fisher, AR +72430 : 36.334551 : -90.19067 : Greenway, AR +72431 : 35.650914 : -91.07618 : Grubbs, AR +72432 : 35.555062 : -90.71725 : Harrisburg, AR +72433 : 36.042319 : -90.99827 : Hoxie, AR +72434 : 36.21601 : -91.15872 : Imboden, AR +72435 : 36.315305 : -90.57906 : Knobel, AR +72436 : 36.205251 : -90.49913 : Lafe, AR +72437 : 35.82847 : -90.44247 : Lake City, AR +72438 : 35.941576 : -90.22683 : Leachville, AR +72439 : 36.06805 : -90.748876 : Light, AR +72440 : 35.995653 : -91.26055 : Lynn, AR +72441 : 36.437727 : -90.38816 : McDougal, AR +72442 : 35.83821 : -90.17029 : Manila, AR +72443 : 36.179815 : -90.39082 : Marmaduke, AR +72444 : 36.422163 : -90.88239 : Maynard, AR +72445 : 35.972767 : -91.02349 : Minturn, AR +72447 : 35.910391 : -90.34016 : Monette, AR +72448 : 36.189695 : -90.379616 : Marmaduke, AR +72449 : 36.167303 : -90.81515 : O Kean, AR +72450 : 36.065711 : -90.5102 : Paragould, AR +72451 : 36.11635 : -90.525077 : Paragould, AR +72452 : 36.047718 : -90.516585 : Paragould, AR +72453 : 36.28117 : -90.66941 : Peach Orchard, AR +72454 : 36.393325 : -90.20277 : Piggott, AR +72455 : 36.304912 : -91.0141 : Pocahontas, AR +72456 : 36.438645 : -90.30302 : Pollard, AR +72457 : 36.092999 : -91.06249 : Portia, AR +72458 : 36.065739 : -91.15181 : Powhatan, AR +72459 : 36.20619 : -91.27997 : Ravenden, AR +72460 : 36.322642 : -91.22327 : Ravenden Springs, AR +72461 : 36.260606 : -90.28187 : Rector, AR +72462 : 36.362896 : -90.75676 : Reyno, AR +72464 : 36.458348 : -90.14377 : Saint Francis, AR +72465 : 35.964317 : -90.895421 : Sedgwick, AR +72466 : 36.051063 : -91.28209 : Smithville, AR +72467 : 35.843125 : -90.67579 : State University, AR +72469 : 35.961971 : -91.33713 : Strawberry, AR +72470 : 36.460317 : -90.70524 : Success, AR +72471 : 35.821708 : -91.1314 : Swifton, AR +72472 : 35.623029 : -90.52742 : Trumann, AR +72473 : 35.731301 : -91.20318 : Tuckerman, AR +72474 : 36.041332 : -90.671802 : Walcott, AR +72475 : 35.564737 : -90.93254 : Waldenburg, AR +72476 : 36.068015 : -90.94429 : Walnut Ridge, AR +72477 : 36.417305 : -90.896784 : Maynard, AR +72478 : 36.464979 : -91.053 : Warm Springs, AR +72479 : 35.62608 : -90.89575 : Weiner, AR +72482 : 36.279796 : -91.37245 : Williford, AR +72501 : 35.78108 : -91.63835 : Batesville, AR +72503 : 35.734617 : -91.534303 : Batesville, AR +72512 : 36.225645 : -91.75019 : Horseshoe Bend, AR +72513 : 36.24564 : -91.63703 : Ash Flat, AR +72515 : 36.293095 : -92.0417 : Bexar, AR +72516 : 36.064329 : -91.944673 : Boswell, AR +72517 : 36.126021 : -91.96619 : Brockwell, AR +72519 : 36.132092 : -92.16638 : Calico Rock, AR +72520 : 36.388724 : -91.7353 : Camp, AR +72521 : 35.956342 : -91.53548 : Cave City, AR +72522 : 35.819494 : -91.45128 : Charlotte, AR +72523 : 35.648717 : -91.84428 : Concord, AR +72524 : 35.836565 : -91.30334 : Cord, AR +72525 : 36.302469 : -91.59744 : Cherokee Village, AR +72526 : 35.873117 : -91.7544 : Cushman, AR +72527 : 35.733939 : -91.68913 : Desha, AR +72528 : 36.245162 : -92.12962 : Dolph, AR +72529 : 36.294732 : -91.55777 : Cherokee Village, AR +72530 : 35.615841 : -91.9451 : Drasco, AR +72531 : 36.317264 : -92.17314 : Elizabeth, AR +72532 : 36.088921 : -91.59919 : Evening Shade, AR +72533 : 35.965754 : -92.2303 : Fifty Six, AR +72534 : 35.588979 : -91.74043 : Floral, AR +72536 : 36.155897 : -91.75644 : Franklin, AR +72537 : 36.428401 : -92.23701 : Gamaliel, AR +72538 : 36.427702 : -92.11109 : Gepp, AR +72539 : 36.327307 : -91.72234 : Glencoe, AR +72540 : 35.929689 : -91.92632 : Guion, AR +72542 : 36.303556 : -91.48573 : Hardy, AR +72543 : 35.489516 : -92.02327 : Heber Springs, AR +72544 : 36.388751 : -92.20206 : Henderson, AR +72545 : 35.535238 : -92.021291 : Heber Springs, AR +72546 : 35.581607 : -91.930535 : Ida, AR +72550 : 35.710614 : -91.7639 : Locust Grove, AR +72553 : 35.698168 : -91.48003 : Magness, AR +72554 : 36.445205 : -91.5553 : Mammoth Spring, AR +72555 : 35.758314 : -91.86797 : Marcella, AR +72556 : 36.035962 : -91.92696 : Melbourne, AR +72557 : 36.374704 : -91.804608 : Moko, AR +72559 : 34.640273 : -92.558295 : Salem, AR +72560 : 35.863114 : -92.11108 : Mountain View, AR +72561 : 35.959567 : -91.76948 : Mount Pleasant, AR +72562 : 35.725631 : -91.42605 : Newark, AR +72564 : 35.623263 : -91.44076 : Oil Trough, AR +72565 : 36.204582 : -91.92355 : Oxford, AR +72566 : 36.186879 : -92.08691 : Pineville, AR +72567 : 35.819261 : -91.88291 : Pleasant Grove, AR +72568 : 35.561834 : -91.62566 : Pleasant Plains, AR +72569 : 36.085113 : -91.46586 : Poughkeepsie, AR +72571 : 35.643961 : -91.55966 : Rosie, AR +72572 : 35.892646 : -91.25768 : Saffell, AR +72573 : 36.058198 : -91.80836 : Sage, AR +72575 : 35.691868 : -91.598917 : Salado, AR +72576 : 36.359511 : -91.83303 : Salem, AR +72577 : 36.033231 : -91.70461 : Sidney, AR +72578 : 36.479925 : -91.8863 : Sturkie, AR +72579 : 35.785607 : -91.47502 : Sulphur Rock, AR +72581 : 35.555144 : -91.99286 : Tumbling Shoals, AR +72583 : 36.400178 : -91.98711 : Viola, AR +72584 : 36.136468 : -91.82757 : Violet Hill, AR +72585 : 36.170391 : -92.02036 : Wideman, AR +72587 : 36.226478 : -91.82045 : Wiseman, AR +72601 : 36.236984 : -93.09345 : Harrison, AR +72602 : 36.355213 : -93.122554 : Harrison, AR +72610 : 35.883787 : -92.41591 : Alco, AR +72611 : 36.272469 : -93.31302 : Alpena, AR +72613 : 36.431111 : -93.699392 : Beaver, AR +72615 : 36.308349 : -93.032099 : Bergman, AR +72616 : 36.350821 : -93.56324 : Berryville, AR +72617 : 36.004445 : -92.37364 : Big Flat, AR +72619 : 36.380815 : -92.5856 : Bull Shoals, AR +72623 : 36.484192 : -92.29736 : Clarkridge, AR +72624 : 36.0717 : -93.35157 : Compton, AR +72626 : 36.276949 : -92.53279 : Cotter, AR +72628 : 35.839126 : -93.27737 : Deer, AR +72629 : 35.755793 : -92.54556 : Dennard, AR +72630 : 36.461305 : -92.91702 : Diamond City, AR +72631 : 36.443322 : -93.77474 : Eureka Springs, AR +72632 : 36.392122 : -93.7476 : Eureka Springs, AR +72633 : 36.150276 : -92.89576 : Everton, AR +72634 : 36.263145 : -92.57635 : Flippin, AR +72635 : 36.297345 : -92.48429 : Gassville, AR +72636 : 35.916744 : -92.681408 : Gilbert, AR +72638 : 36.327014 : -93.40111 : Green Forest, AR +72639 : 36.021569 : -92.48605 : Harriet, AR +72640 : 36.000804 : -93.01818 : Hasty, AR +72641 : 35.979619 : -93.23783 : Jasper, AR +72642 : 36.378546 : -92.53817 : Lakeview, AR +72644 : 36.424286 : -92.925 : Lead Hill, AR +72645 : 35.800025 : -92.57586 : Leslie, AR +72648 : 36.083655 : -93.12978 : Marble Falls, AR +72650 : 35.896883 : -92.66479 : Marshall, AR +72651 : 36.389591 : -92.48025 : Midway, AR +72653 : 36.329026 : -92.35781 : Mountain Home, AR +72654 : 36.23638 : -92.372635 : Mountain Home, AR +72655 : 35.927363 : -93.0179 : Mount Judea, AR +72657 : 35.91896 : -92.127207 : Timbo, AR +72658 : 36.193278 : -92.29362 : Norfork, AR +72659 : 36.23638 : -92.372635 : Norfork, AR +72660 : 36.492129 : -93.3744 : Oak Grove, AR +72661 : 36.459703 : -92.60271 : Oakland, AR +72662 : 36.427675 : -93.19473 : Omaha, AR +72663 : 35.927802 : -92.32249 : Onia, AR +72666 : 35.955198 : -93.25985 : Parthenon, AR +72668 : 36.427511 : -92.76948 : Peel, AR +72669 : 36.087461 : -92.88803 : Pindall, AR +72670 : 35.924868 : -93.232298 : Ponca, AR +72672 : 36.264469 : -92.84044 : Pyatt, AR +72675 : 36.021564 : -92.77395 : Saint Joe, AR +72677 : 36.255295 : -92.68844 : Summit, AR +72679 : 35.721896 : -92.82678 : Tilly, AR +72680 : 35.880462 : -92.29117 : Timbo, AR +72682 : 36.136628 : -92.75237 : Valley Springs, AR +72683 : 35.906856 : -93.13425 : Vendor, AR +72685 : 36.062264 : -92.96277 : Western Grove, AR +72686 : 35.747154 : -92.90985 : Witts Springs, AR +72687 : 36.242942 : -92.69011 : Yellville, AR +72701 : 36.040467 : -94.13376 : Fayetteville, AR +72702 : 35.99403 : -94.219977 : Fayetteville, AR +72703 : 36.107078 : -94.11592 : Fayetteville, AR +72704 : 36.096998 : -94.2486 : Fayetteville, AR +72711 : 36.40137 : -94.07106 : Avoca, AR +72712 : 36.362525 : -94.23308 : Bentonville, AR +72714 : 36.458041 : -94.23551 : Bella Vista, AR +72715 : 36.472567 : -94.31606 : Bella Vista, AR +72716 : 36.299507 : -93.956801 : Bentonville, AR +72717 : 35.852946 : -94.4219 : Canehill, AR +72718 : 36.267484 : -94.22806 : Cave Springs, AR +72719 : 36.36157 : -94.29398 : Centerton, AR +72721 : 35.829657 : -93.8354 : Combs, AR +72722 : 36.3389 : -94.46394 : Decatur, AR +72727 : 35.970492 : -93.94296 : Elkins, AR +72728 : 36.210013 : -94.254573 : Elm Springs, AR +72729 : 35.797242 : -94.47662 : Evansville, AR +72730 : 36.03667 : -94.25261 : Farmington, AR +72732 : 36.434311 : -93.96045 : Garfield, AR +72733 : 36.486424 : -93.927748 : Gateway, AR +72734 : 36.269478 : -94.46137 : Gentry, AR +72735 : 36.087551 : -93.966645 : Goshen, AR +72736 : 36.412233 : -94.45226 : Gravette, AR +72737 : 35.928186 : -94.152899 : Greenland, AR +72738 : 36.155775 : -93.88706 : Hindsville, AR +72739 : 36.437635 : -94.33047 : Hiwasse, AR +72740 : 36.1161 : -93.68605 : Huntsville, AR +72741 : 35.99403 : -94.219977 : Johnson, AR +72742 : 35.992386 : -93.47918 : Kingston, AR +72744 : 35.954697 : -94.42735 : Lincoln, AR +72745 : 36.247575 : -94.11371 : Lowell, AR +72747 : 36.381787 : -94.58854 : Maysville, AR +72749 : 35.864399 : -94.43534 : Morrow, AR +72751 : 36.460576 : -94.13334 : Pea Ridge, AR +72752 : 35.824911 : -93.56071 : Pettigrew, AR +72753 : 35.951426 : -94.32246 : Prairie Grove, AR +72756 : 36.342235 : -94.07141 : Rogers, AR +72757 : 36.371981 : -94.115649 : Rogers, AR +72758 : 36.306616 : -94.14622 : Rogers, AR +72760 : 35.82635 : -93.73715 : Saint Paul, AR +72761 : 36.179905 : -94.50208 : Siloam Springs, AR +72762 : 36.186059 : -94.1937 : Springdale, AR +72764 : 36.182407 : -94.1082 : Springdale, AR +72765 : 36.172541 : -94.153512 : Springdale, AR +72766 : 35.99403 : -94.219977 : Springdale, AR +72768 : 36.484548 : -94.46911 : Sulphur Springs, AR +72769 : 36.027493 : -94.50146 : Summers, AR +72770 : 36.14998 : -94.242884 : Tontitown, AR +72773 : 36.019883 : -93.8651 : Wesley, AR +72774 : 35.896307 : -94.19661 : West Fork, AR +72776 : 35.934679 : -93.64583 : Witter, AR +72801 : 35.278429 : -93.13682 : Russellville, AR +72802 : 35.308848 : -93.10909 : Russellville, AR +72811 : 35.314678 : -93.113308 : Russellville, AR +72812 : 35.423102 : -93.054388 : Russellville, AR +72820 : 35.415616 : -93.73383 : Alix, AR +72821 : 35.44477 : -93.747 : Altus, AR +72822 : 35.329457 : -93.112368 : Russellville, AR +72823 : 35.261843 : -92.90795 : Atkins, AR +72824 : 35.108311 : -93.42594 : Belleville, AR +72826 : 35.161856 : -93.65615 : Blue Mountain, AR +72827 : 34.832089 : -93.71111 : Bluffton, AR +72828 : 34.929705 : -93.53009 : Briggsville, AR +72829 : 35.110131 : -93.17279 : Centerville, AR +72830 : 35.490105 : -93.4851 : Clarksville, AR +72832 : 35.435619 : -93.67368 : Coal Hill, AR +72833 : 35.044021 : -93.4195 : Danville, AR +72834 : 35.199221 : -93.17973 : Dardanelle, AR +72835 : 35.299773 : -93.35469 : Delaware, AR +72837 : 35.460782 : -93.10863 : Dover, AR +72838 : 34.88007 : -93.70593 : Gravelly, AR +72839 : 35.651525 : -93.29708 : Hagarville, AR +72840 : 35.437519 : -93.61675 : Hartman, AR +72841 : 34.866017 : -93.77678 : Harvey, AR +72842 : 35.111397 : -93.58735 : Havana, AR +72843 : 35.517382 : -92.95354 : Hector, AR +72845 : 35.376739 : -93.35706 : Knoxville, AR +72846 : 35.470638 : -93.36042 : Lamar, AR +72847 : 35.380528 : -93.28528 : London, AR +72851 : 35.289176 : -93.44323 : New Blaine, AR +72852 : 35.689689 : -93.55764 : Oark, AR +72853 : 35.014918 : -93.25496 : Ola, AR +72854 : 35.686766 : -93.42258 : Ozone, AR +72855 : 35.293281 : -93.72139 : Paris, AR +72856 : 35.794196 : -93.04185 : Pelsor, AR +72857 : 34.865448 : -93.33057 : Plainview, AR +72858 : 35.228264 : -93.03947 : Pottsville, AR +72860 : 34.949945 : -93.40287 : Rover, AR +72863 : 35.358493 : -93.52793 : Scranton, AR +72865 : 35.306084 : -93.57336 : Subiaco, AR +72901 : 35.373791 : -94.41371 : Fort Smith, AR +72902 : 35.38619 : -94.409114 : Fort Smith, AR +72903 : 35.357041 : -94.36914 : Fort Smith, AR +72904 : 35.406185 : -94.39103 : Fort Smith, AR +72905 : 35.191046 : -94.23816 : Fort Smith, AR +72906 : 35.191046 : -94.23816 : Fort Smith, AR +72908 : 35.301623 : -94.41283 : Fort Smith, AR +72913 : 35.191046 : -94.23816 : Fort Smith, AR +72914 : 35.191046 : -94.23816 : Fort Smith, AR +72916 : 35.265119 : -94.37789 : Fort Smith, AR +72917 : 35.191046 : -94.23816 : Fort Smith, AR +72918 : 35.191046 : -94.23816 : Fort Smith, AR +72919 : 35.191046 : -94.23816 : Fort Smith, AR +72921 : 35.48891 : -94.20897 : Alma, AR +72923 : 35.332908 : -94.30853 : Barling, AR +72924 : 34.882558 : -94.079724 : Bates, AR +72926 : 34.734204 : -94.05784 : Boles, AR +72927 : 35.105966 : -93.97531 : Booneville, AR +72928 : 35.297936 : -93.94723 : Branch, AR +72930 : 35.426502 : -94.04509 : Cecil, AR +72932 : 35.604409 : -94.37313 : Cedarville, AR +72933 : 35.312232 : -94.0371 : Charleston, AR +72934 : 35.668554 : -94.27583 : Chester, AR +72935 : 35.478787 : -94.11998 : Dyer, AR +72936 : 35.200061 : -94.24376 : Greenwood, AR +72937 : 35.15875 : -94.39462 : Hackett, AR +72938 : 35.026991 : -94.36684 : Hartford, AR +72940 : 35.105477 : -94.26995 : Huntington, AR +72941 : 35.348089 : -94.17279 : Lavaca, AR +72943 : 35.184949 : -93.80443 : Magazine, AR +72944 : 35.057119 : -94.234 : Mansfield, AR +72945 : 35.090489 : -94.35097 : Midland, AR +72946 : 35.649503 : -94.15357 : Mountainburg, AR +72947 : 35.528854 : -94.05225 : Mulberry, AR +72948 : 35.72446 : -94.41065 : Natural Dam, AR +72949 : 35.549469 : -93.81819 : Ozark, AR +72950 : 34.779465 : -93.90077 : Parks, AR +72951 : 35.312316 : -93.8805 : Ratcliff, AR +72952 : 35.562293 : -94.31088 : Rudy, AR +72955 : 35.594579 : -94.44989 : Uniontown, AR +72956 : 35.456536 : -94.34581 : Van Buren, AR +72957 : 35.494412 : -94.318648 : Van Buren, AR +72958 : 34.907335 : -94.13624 : Waldron, AR +72959 : 35.797792 : -94.11367 : Winslow, AR +73001 : 35.203206 : -98.357423 : Albert, OK +73002 : 34.936221 : -97.74453 : Alex, OK +73003 : 35.681402 : -97.5331 : Edmond, OK +73004 : 35.152892 : -97.85582 : Amber, OK +73005 : 35.050671 : -98.23984 : Anadarko, OK +73006 : 34.894964 : -98.38697 : Apache, OK +73007 : 35.685368 : -97.32739 : Arcadia, OK +73008 : 35.506456 : -97.63934 : Bethany, OK +73009 : 35.292476 : -98.35804 : Binger, OK +73010 : 35.118392 : -97.66381 : Blanchard, OK +73011 : 34.868514 : -97.71386 : Bradley, OK +73012 : 34.48532 : -97.852223 : Bray, OK +73013 : 35.623805 : -97.47909 : Edmond, OK +73014 : 35.587497 : -98.14506 : Calumet, OK +73015 : 35.113271 : -98.58643 : Carnegie, OK +73016 : 35.805831 : -97.68754 : Cashion, OK +73017 : 34.932493 : -98.11946 : Cement, OK +73018 : 35.040526 : -97.94723 : Chickasha, OK +73019 : 35.208566 : -97.44451 : Norman, OK +73020 : 35.465363 : -97.26645 : Choctaw, OK +73021 : 35.34525 : -98.66403 : Colony, OK +73022 : 35.618487 : -97.99188 : Concho, OK +73023 : 35.031247 : -97.881959 : Chickasha, OK +73024 : 35.370775 : -98.80897 : Corn, OK +73026 : 35.22704 : -97.28198 : Norman, OK +73027 : 35.975057 : -97.25088 : Coyle, OK +73028 : 35.96375 : -97.63071 : Crescent, OK +73029 : 34.907566 : -98.19738 : Cyril, OK +73030 : 34.485896 : -97.14753 : Davis, OK +73031 : 35.027 : -97.62801 : Dibble, OK +73032 : 34.400476 : -97.05041 : Dougherty, OK +73033 : 35.303547 : -98.55543 : Eakly, OK +73034 : 35.683768 : -97.44686 : Edmond, OK +73036 : 35.519046 : -97.95534 : El Reno, OK +73038 : 35.137863 : -98.43667 : Fort Cobb, OK +73040 : 35.631117 : -98.35764 : Geary, OK +73041 : 35.045196 : -98.87586 : Gotebo, OK +73042 : 35.218293 : -98.2484 : Gracemont, OK +73043 : 35.730049 : -98.38577 : Greenfield, OK +73044 : 35.857303 : -97.43176 : Guthrie, OK +73045 : 35.491184 : -97.16132 : Harrah, OK +73047 : 35.463837 : -98.32451 : Hinton, OK +73048 : 35.471566 : -98.54418 : Hydro, OK +73049 : 35.572909 : -97.29596 : Jones, OK +73050 : 35.941421 : -97.25495 : Langston, OK +73051 : 35.039068 : -97.29276 : Lexington, OK +73052 : 34.839562 : -97.60045 : Lindsay, OK +73053 : 35.372736 : -98.41223 : Lookeba, OK +73054 : 35.662619 : -97.18976 : Luther, OK +73055 : 34.637595 : -97.93235 : Marlow, OK +73056 : 36.153239 : -97.62988 : Marshall, OK +73057 : 34.828663 : -97.42481 : Maysville, OK +73058 : 35.821107 : -97.23455 : Meridian, OK +73059 : 35.313109 : -98.01237 : Minco, OK +73061 : 36.323723 : -97.00904 : Morrison, OK +73062 : 35.062348 : -98.73519 : Mountain View, OK +73063 : 36.06773 : -97.43987 : Mulhall, OK +73064 : 35.388059 : -97.73626 : Mustang, OK +73065 : 35.240232 : -97.60908 : Newcastle, OK +73066 : 35.491226 : -97.32434 : Nicoma Park, OK +73067 : 34.909551 : -97.9436 : Ninnekah, OK +73068 : 35.138421 : -97.32689 : Noble, OK +73069 : 35.228649 : -97.45629 : Norman, OK +73070 : 35.187611 : -97.397509 : Norman, OK +73071 : 35.225702 : -97.42394 : Norman, OK +73072 : 35.212681 : -97.48672 : Norman, OK +73073 : 36.151316 : -97.36279 : Orlando, OK +73074 : 34.831083 : -97.2718 : Paoli, OK +73075 : 34.741677 : -97.22846 : Pauls Valley, OK +73077 : 36.308588 : -97.28809 : Perry, OK +73078 : 35.654827 : -97.76238 : Piedmont, OK +73079 : 35.210855 : -98.01195 : Pocasset, OK +73080 : 35.017656 : -97.39646 : Purcell, OK +73082 : 34.790635 : -97.93807 : Rush Springs, OK +73083 : 35.666481 : -97.465436 : Edmond, OK +73084 : 35.52106 : -97.34173 : Spencer, OK +73085 : 35.489527 : -97.750009 : Yukon, OK +73086 : 34.49284 : -96.98606 : Sulphur, OK +73089 : 35.279882 : -97.78458 : Tuttle, OK +73090 : 35.394725 : -97.93552 : Union City, OK +73092 : 35.109275 : -98.08247 : Verden, OK +73093 : 35.089882 : -97.48837 : Washington, OK +73094 : 35.203206 : -98.357423 : Washita, OK +73095 : 34.913215 : -97.30452 : Wayne, OK +73096 : 35.527593 : -98.71259 : Weatherford, OK +73097 : 35.397259 : -97.65189 : Wheatland, OK +73098 : 34.634693 : -97.16322 : Wynnewood, OK +73099 : 35.506204 : -97.74814 : Yukon, OK +73101 : 35.491608 : -97.562817 : Oklahoma City, OK +73102 : 35.47156 : -97.52036 : Oklahoma City, OK +73103 : 35.489709 : -97.51819 : Oklahoma City, OK +73104 : 35.47596 : -97.50586 : Oklahoma City, OK +73105 : 35.509659 : -97.50211 : Oklahoma City, OK +73106 : 35.482309 : -97.53499 : Oklahoma City, OK +73107 : 35.484558 : -97.57336 : Oklahoma City, OK +73108 : 35.447126 : -97.55824 : Oklahoma City, OK +73109 : 35.43366 : -97.52496 : Oklahoma City, OK +73110 : 35.459478 : -97.39721 : Oklahoma City, OK +73111 : 35.504109 : -97.47889 : Oklahoma City, OK +73112 : 35.517857 : -97.57284 : Oklahoma City, OK +73113 : 35.551409 : -97.407537 : Oklahoma City, OK +73114 : 35.568806 : -97.52544 : Oklahoma City, OK +73115 : 35.440311 : -97.44201 : Oklahoma City, OK +73116 : 35.544864 : -97.55637 : Oklahoma City, OK +73117 : 35.476457 : -97.47411 : Oklahoma City, OK +73118 : 35.515008 : -97.53106 : Oklahoma City, OK +73119 : 35.42306 : -97.56051 : Oklahoma City, OK +73120 : 35.579488 : -97.56496 : Oklahoma City, OK +73121 : 35.50356 : -97.44693 : Oklahoma City, OK +73122 : 35.520506 : -97.6133 : Oklahoma City, OK +73123 : 35.535989 : -97.202331 : Oklahoma City, OK +73124 : 35.551409 : -97.407537 : Oklahoma City, OK +73125 : 35.465418 : -97.521816 : Oklahoma City, OK +73126 : 35.551409 : -97.407537 : Oklahoma City, OK +73127 : 35.481507 : -97.6423 : Oklahoma City, OK +73128 : 35.441759 : -97.62721 : Oklahoma City, OK +73129 : 35.431361 : -97.49267 : Oklahoma City, OK +73130 : 35.459512 : -97.35183 : Oklahoma City, OK +73131 : 35.576357 : -97.46924 : Oklahoma City, OK +73132 : 35.552755 : -97.63571 : Oklahoma City, OK +73134 : 35.612359 : -97.57152 : Oklahoma City, OK +73135 : 35.40017 : -97.43249 : Oklahoma City, OK +73136 : 35.61534 : -97.326151 : Oklahoma City, OK +73137 : 35.551409 : -97.407537 : Oklahoma City, OK +73139 : 35.388461 : -97.52713 : Oklahoma City, OK +73140 : 35.518509 : -97.427464 : Oklahoma City, OK +73141 : 35.498461 : -97.39314 : Oklahoma City, OK +73142 : 35.605785 : -97.63042 : Oklahoma City, OK +73143 : 35.551409 : -97.407537 : Oklahoma City, OK +73144 : 35.551409 : -97.407537 : Oklahoma City, OK +73145 : 35.433093 : -97.39844 : Oklahoma City, OK +73146 : 35.551409 : -97.407537 : Oklahoma City, OK +73147 : 35.551409 : -97.407537 : Oklahoma City, OK +73148 : 35.551409 : -97.407537 : Oklahoma City, OK +73149 : 35.395362 : -97.49701 : Oklahoma City, OK +73150 : 35.407113 : -97.33996 : Oklahoma City, OK +73151 : 35.568867 : -97.4055 : Oklahoma City, OK +73152 : 35.551409 : -97.407537 : Oklahoma City, OK +73153 : 35.551409 : -97.407537 : Oklahoma City, OK +73154 : 35.523758 : -97.525467 : Oklahoma City, OK +73155 : 35.551409 : -97.407537 : Oklahoma City, OK +73156 : 35.551409 : -97.407537 : Oklahoma City, OK +73157 : 35.551409 : -97.407537 : Oklahoma City, OK +73159 : 35.386411 : -97.55731 : Oklahoma City, OK +73160 : 35.34377 : -97.48596 : Oklahoma City, OK +73162 : 35.579254 : -97.63765 : Oklahoma City, OK +73163 : 35.551409 : -97.407537 : Oklahoma City, OK +73164 : 35.551409 : -97.407537 : Oklahoma City, OK +73165 : 35.338689 : -97.36747 : Oklahoma City, OK +73167 : 35.551409 : -97.407537 : Oklahoma City, OK +73169 : 35.388023 : -97.64135 : Oklahoma City, OK +73170 : 35.338716 : -97.53569 : Oklahoma City, OK +73172 : 35.517456 : -97.621769 : Oklahoma City, OK +73173 : 35.355645 : -97.64479 : Oklahoma City, OK +73177 : 35.551409 : -97.407537 : Oklahoma City, OK +73178 : 35.551409 : -97.407537 : Oklahoma City, OK +73179 : 35.416826 : -97.62787 : Oklahoma City, OK +73180 : 35.551409 : -97.407537 : Oklahoma City, OK +73184 : 35.551409 : -97.407537 : Oklahoma City, OK +73185 : 35.551409 : -97.407537 : Oklahoma City, OK +73189 : 35.551409 : -97.407537 : Oklahoma City, OK +73190 : 35.551409 : -97.407537 : Oklahoma City, OK +73193 : 35.551409 : -97.407537 : Oklahoma City, OK +73194 : 35.551409 : -97.407537 : Oklahoma City, OK +73196 : 35.551409 : -97.407537 : Oklahoma City, OK +73197 : 35.551409 : -97.407537 : Oklahoma City, OK +73198 : 35.551409 : -97.407537 : Oklahoma City, OK +73199 : 35.551409 : -97.407537 : Oklahoma City, OK +73301 : 30.326374 : -97.771258 : Austin, TX +73344 : 30.326374 : -97.771258 : Austin, TX +73367 : 34.752406 : -98.171022 : Sterling, OK +73371 : 36.248359 : -98.189412 : Ames, OK +73401 : 34.184742 : -97.12655 : Ardmore, OK +73402 : 34.288884 : -97.248074 : Ardmore, OK +73403 : 34.288884 : -97.248074 : Ardmore, OK +73425 : 34.447003 : -97.55801 : Countyline, OK +73430 : 33.925768 : -97.36956 : Burneyville, OK +73432 : 34.252682 : -96.43358 : Coleman, OK +73433 : 34.625144 : -97.39901 : Elmore City, OK +73434 : 34.647208 : -97.55044 : Foster, OK +73435 : 34.354547 : -97.4843 : Fox, OK +73436 : 34.293948 : -97.033905 : Gene Autry, OK +73437 : 34.363418 : -97.43017 : Graham, OK +73438 : 34.238486 : -97.48895 : Healdton, OK +73439 : 33.938714 : -96.71234 : Kingston, OK +73440 : 33.975243 : -96.90609 : Lebanon, OK +73441 : 33.877679 : -97.42814 : Leon, OK +73442 : 34.329621 : -97.68182 : Loco, OK +73443 : 34.175234 : -97.28894 : Lone Grove, OK +73444 : 34.499735 : -97.36406 : Hennepin, OK +73445 : 34.244011 : -96.751093 : Ravia, OK +73446 : 34.092658 : -96.74851 : Madill, OK +73447 : 34.225742 : -96.86109 : Mannsville, OK +73448 : 33.9401 : -97.11031 : Marietta, OK +73449 : 33.990978 : -96.54409 : Mead, OK +73450 : 34.273995 : -96.54837 : Milburn, OK +73453 : 34.033426 : -97.24379 : Overbrook, OK +73455 : 34.240761 : -96.75726 : Ravia, OK +73456 : 34.165558 : -97.62121 : Ringling, OK +73458 : 34.337522 : -97.23958 : Springer, OK +73459 : 33.794716 : -97.13848 : Thackerville, OK +73460 : 34.253452 : -96.68124 : Tishomingo, OK +73461 : 34.367986 : -96.43012 : Wapanucka, OK +73463 : 34.149455 : -97.43096 : Wilson, OK +73476 : 34.680871 : -97.300429 : Pernell, OK +73481 : 34.43664 : -97.50121 : Ratliff City, OK +73487 : 34.481151 : -97.46209 : Tatums, OK +73488 : 34.4836 : -97.54783 : Tussy, OK +73491 : 34.462809 : -97.65419 : Velma, OK +73501 : 34.608348 : -98.39414 : Lawton, OK +73502 : 34.630879 : -98.457646 : Lawton, OK +73503 : 34.69727 : -98.46808 : Fort Sill, OK +73505 : 34.613973 : -98.46255 : Lawton, OK +73506 : 34.630879 : -98.457646 : Lawton, OK +73507 : 34.621373 : -98.4001 : Lawton, OK +73520 : 34.243494 : -97.93843 : Addington, OK +73521 : 34.638773 : -99.31787 : Altus, OK +73522 : 34.723795 : -99.383928 : Altus, OK +73523 : 34.598197 : -99.440839 : Altus AFB, OK +73526 : 34.776114 : -99.30835 : Blair, OK +73527 : 34.613786 : -98.62492 : Cache, OK +73528 : 34.425098 : -98.65892 : Chattanooga, OK +73529 : 34.372622 : -97.97809 : Comanche, OK +73530 : 34.254376 : -99.05182 : Davidson, OK +73531 : 34.209826 : -98.54891 : Devol, OK +73532 : 34.649815 : -99.55555 : Duke, OK +73533 : 34.502833 : -97.95185 : Duncan, OK +73534 : 34.518944 : -97.973331 : Duncan, OK +73536 : 34.48532 : -97.852223 : Duncan, OK +73537 : 34.49515 : -99.67861 : Eldorado, OK +73538 : 34.747379 : -98.27805 : Elgin, OK +73539 : 34.457367 : -99.28051 : Elmer, OK +73540 : 34.465332 : -98.56181 : Faxon, OK +73541 : 34.809495 : -98.19821 : Fletcher, OK +73542 : 34.410061 : -98.96701 : Frederick, OK +73543 : 34.478901 : -98.37791 : Geronimo, OK +73544 : 34.681369 : -99.74534 : Gould, OK +73546 : 34.239154 : -98.72275 : Grandfield, OK +73547 : 34.976173 : -99.3952 : Granite, OK +73548 : 34.239192 : -98.11312 : Hastings, OK +73549 : 34.645375 : -99.15211 : Headrick, OK +73550 : 34.688567 : -99.90944 : Hollis, OK +73551 : 34.325802 : -98.86104 : Hollister, OK +73552 : 34.62256 : -98.75386 : Indiahoma, OK +73553 : 34.330239 : -98.70098 : Loveland, OK +73554 : 34.855652 : -99.52012 : Mangum, OK +73555 : 34.50847 : -98.96369 : Manitou, OK +73556 : 34.751924 : -99.39383 : Martha, OK +73557 : 34.72775 : -98.5008 : Medicine Park, OK +73558 : 34.630879 : -98.457646 : Meers, OK +73559 : 34.696985 : -98.96184 : Mountain Park, OK +73560 : 34.571329 : -99.45164 : Olustee, OK +73561 : 34.023916 : -97.64801 : Oscar, OK +73562 : 34.188182 : -98.43533 : Randlett, OK +73564 : 34.834172 : -98.97568 : Roosevelt, OK +73565 : 34.008894 : -97.93581 : Ryan, OK +73566 : 34.637179 : -98.96532 : Snyder, OK +73567 : 34.748538 : -98.16905 : Sterling, OK +73568 : 34.273576 : -98.23377 : Temple, OK +73569 : 33.916049 : -97.8621 : Terral, OK +73570 : 34.500298 : -99.12375 : Tipton, OK +73571 : 34.924584 : -99.86736 : Vinson, OK +73572 : 34.359739 : -98.3455 : Walters, OK +73573 : 34.16127 : -97.99784 : Waurika, OK +73575 : 34.48532 : -97.852223 : Duncan, OK +73601 : 35.508248 : -98.96917 : Clinton, OK +73620 : 35.591351 : -99.00873 : Arapaho, OK +73622 : 35.399588 : -99.00641 : Bessie, OK +73624 : 35.355453 : -99.17705 : Burns Flat, OK +73625 : 35.675986 : -99.19074 : Butler, OK +73626 : 35.394 : -99.28001 : Canute, OK +73627 : 35.215997 : -99.47006 : Carter, OK +73628 : 35.603809 : -99.6728 : Cheyenne, OK +73632 : 35.283812 : -98.94987 : Cordell, OK +73638 : 35.819529 : -99.77425 : Crawford, OK +73639 : 35.70364 : -98.93351 : Custer City, OK +73641 : 35.26727 : -99.18162 : Dill City, OK +73642 : 35.851512 : -99.90119 : Durham, OK +73644 : 35.405935 : -99.41658 : Elk City, OK +73645 : 35.250612 : -99.88029 : Erick, OK +73646 : 35.826514 : -98.62902 : Fay, OK +73647 : 35.45544 : -99.1744 : Foss, OK +73648 : 35.26946 : -99.680146 : Elk City, OK +73650 : 35.646142 : -99.38849 : Hammon, OK +73651 : 35.018385 : -99.09374 : Hobart, OK +73654 : 35.837115 : -99.36845 : Leedey, OK +73655 : 35.006152 : -99.24851 : Lone Wolf, OK +73656 : 35.26946 : -99.680146 : Mayfield, OK +73658 : 35.934444 : -98.70827 : Oakwood, OK +73659 : 35.848743 : -98.9029 : Putnam, OK +73660 : 35.610122 : -99.91743 : Reydon, OK +73661 : 35.167368 : -99.0517 : Rocky, OK +73662 : 35.321815 : -99.65314 : Sayre, OK +73663 : 36.13196 : -98.91683 : Seiling, OK +73664 : 35.167499 : -99.21043 : Sentinel, OK +73666 : 35.458562 : -99.87143 : Sweetwater, OK +73667 : 36.033979 : -98.99491 : Taloga, OK +73668 : 35.219721 : -99.99228 : Texola, OK +73669 : 35.739994 : -98.75502 : Thomas, OK +73673 : 35.04655 : -99.58042 : Willow, OK +73701 : 36.411133 : -97.85026 : Enid, OK +73702 : 36.379072 : -97.782595 : Enid, OK +73703 : 36.402666 : -97.92836 : Enid, OK +73705 : 36.379072 : -97.782595 : Enid, OK +73706 : 36.379072 : -97.782595 : Enid, OK +73716 : 36.49556 : -98.49057 : Aline, OK +73717 : 36.804875 : -98.69707 : Alva, OK +73718 : 36.224663 : -98.14881 : Ames, OK +73719 : 36.949448 : -98.28297 : Amorita, OK +73720 : 36.200563 : -97.88883 : Bison, OK +73722 : 36.920802 : -98.38429 : Burlington, OK +73724 : 36.06141 : -98.64291 : Canton, OK +73726 : 36.580451 : -98.47567 : Carmen, OK +73727 : 36.481331 : -98.04144 : Carrier, OK +73728 : 36.751276 : -98.37108 : Cherokee, OK +73729 : 36.404703 : -98.43861 : Cleo Springs, OK +73730 : 36.311257 : -97.5597 : Covington, OK +73731 : 36.648048 : -98.58222 : Dacoma, OK +73733 : 36.239024 : -97.68299 : Douglas, OK +73734 : 35.978156 : -97.8868 : Dover, OK +73735 : 36.285664 : -98.04193 : Drummond, OK +73736 : 36.347664 : -97.69316 : Fairmont, OK +73737 : 36.281915 : -98.52463 : Fairview, OK +73738 : 36.455282 : -97.55974 : Garber, OK +73739 : 36.521836 : -98.13462 : Goltry, OK +73741 : 36.557263 : -98.27451 : Helena, OK +73742 : 36.105884 : -97.88304 : Hennessey, OK +73743 : 36.563732 : -97.99385 : Hillsdale, OK +73744 : 35.966488 : -98.29013 : Hitchcock, OK +73746 : 36.692876 : -98.65816 : Hopeton, OK +73747 : 36.221983 : -98.32899 : Isabella, OK +73749 : 36.702485 : -98.1728 : Jet, OK +73750 : 35.856216 : -97.93743 : Kingfisher, OK +73753 : 36.56225 : -97.83368 : Kremlin, OK +73754 : 36.389599 : -98.09063 : Lahoma, OK +73755 : 36.14001 : -98.57918 : Longdale, OK +73756 : 36.007004 : -98.11234 : Loyal, OK +73757 : 36.267701 : -97.45245 : Lucien, OK +73758 : 36.949144 : -98.04938 : Manchester, OK +73759 : 36.832446 : -97.72414 : Medford, OK +73760 : 36.371779 : -98.16808 : Meno, OK +73761 : 36.685205 : -98.03095 : Nash, OK +73762 : 35.713606 : -97.97217 : Okarche, OK +73763 : 36.116401 : -98.33352 : Okeene, OK +73764 : 35.867757 : -98.17995 : Omega, OK +73766 : 36.662715 : -97.83063 : Pond Creek, OK +73768 : 36.383753 : -98.27411 : Ringwood, OK +73770 : 36.058133 : -98.588383 : Southard, OK +73771 : 36.844573 : -97.962 : Wakita, OK +73772 : 35.870276 : -98.43772 : Watonga, OK +73773 : 36.273144 : -97.90335 : Waukomis, OK +73801 : 36.433665 : -99.40838 : Woodward, OK +73802 : 36.543405 : -99.29047 : Woodward, OK +73832 : 36.122573 : -99.712 : Arnett, OK +73834 : 36.851116 : -99.5897 : Buffalo, OK +73835 : 35.986173 : -99.23866 : Camargo, OK +73838 : 36.253795 : -98.89818 : Chester, OK +73840 : 36.403804 : -99.64674 : Fargo, OK +73841 : 36.557966 : -99.57425 : Fort Supply, OK +73842 : 36.803902 : -99.18304 : Freedom, OK +73843 : 36.41954 : -99.84131 : Gage, OK +73844 : 36.853151 : -100.06947 : Gate, OK +73847 : 36.903089 : -100.22748 : Knowles, OK +73848 : 36.673357 : -99.88179 : Laverne, OK +73851 : 36.614425 : -99.77153 : May, OK +73852 : 36.456875 : -99.13004 : Mooreland, OK +73853 : 36.223999 : -99.1237 : Mutual, OK +73855 : 36.863262 : -99.88181 : Rosston, OK +73857 : 36.283175 : -99.32679 : Sharon, OK +73858 : 36.226355 : -99.89028 : Shattuck, OK +73859 : 36.140186 : -99.26866 : Vici, OK +73860 : 36.56306 : -98.86623 : Waynoka, OK +73901 : 36.756145 : -101.07462 : Adams, OK +73931 : 36.601946 : -100.76553 : Balko, OK +73932 : 36.710457 : -100.47888 : Beaver, OK +73933 : 36.740652 : -102.54473 : Boise City, OK +73937 : 36.563865 : -102.78868 : Felt, OK +73938 : 36.914169 : -100.61244 : Forgan, OK +73939 : 36.691413 : -101.738 : Goodwell, OK +73942 : 36.739447 : -101.48851 : Guymon, OK +73944 : 36.605467 : -101.1204 : Hardesty, OK +73945 : 36.832751 : -101.25618 : Hooker, OK +73946 : 36.922263 : -102.92339 : Kenton, OK +73947 : 36.844919 : -102.2005 : Keyes, OK +73949 : 36.56879 : -101.91782 : Texhoma, OK +73950 : 36.852475 : -100.89584 : Turpin, OK +73951 : 36.95279 : -101.06337 : Tyrone, OK +74001 : 36.487394 : -96.06384 : Avant, OK +74002 : 36.549109 : -96.146 : Barnsdall, OK +74003 : 36.741589 : -96.00614 : Bartlesville, OK +74004 : 36.711386 : -95.894042 : Bartlesville, OK +74005 : 36.711386 : -95.894042 : Bartlesville, OK +74006 : 36.733398 : -95.92404 : Bartlesville, OK +74008 : 35.951402 : -95.88361 : Bixby, OK +74009 : 36.665794 : -96.398424 : Bowring, OK +74010 : 35.843486 : -96.38183 : Bristow, OK +74011 : 35.992283 : -95.80542 : Broken Arrow, OK +74012 : 36.045907 : -95.80694 : Broken Arrow, OK +74013 : 36.139826 : -96.029725 : Broken Arrow, OK +74014 : 36.053246 : -95.70957 : Broken Arrow, OK +74015 : 36.188136 : -95.73199 : Catoosa, OK +74016 : 36.546415 : -95.44592 : Chelsea, OK +74017 : 36.327143 : -95.61192 : Claremore, OK +74018 : 36.343579 : -95.605964 : Claremore, OK +74020 : 36.260645 : -96.39586 : Cleveland, OK +74021 : 36.369251 : -95.8397 : Collinsville, OK +74022 : 36.909076 : -95.96577 : Copan, OK +74023 : 35.973286 : -96.75751 : Cushing, OK +74026 : 35.710256 : -96.76333 : Davenport, OK +74027 : 36.793303 : -95.63631 : Delaware, OK +74028 : 35.805114 : -96.53926 : Depew, OK +74029 : 36.808722 : -95.92617 : Dewey, OK +74030 : 35.987421 : -96.58776 : Drumright, OK +74031 : 36.336457 : -95.571646 : Foyil, OK +74032 : 36.214419 : -96.91672 : Glencoe, OK +74033 : 35.951244 : -96.00803 : Glenpool, OK +74034 : 36.232452 : -96.56882 : Hallett, OK +74035 : 36.417205 : -96.38379 : Hominy, OK +74036 : 36.145085 : -95.51443 : Inola, OK +74037 : 36.012562 : -95.98241 : Jenks, OK +74038 : 36.164934 : -96.56083 : Jennings, OK +74039 : 35.931488 : -96.22915 : Kellyville, OK +74041 : 35.94876 : -96.06237 : Kiefer, OK +74042 : 36.857305 : -95.61423 : Lenapah, OK +74043 : 35.918277 : -95.798809 : Leonard, OK +74044 : 36.111943 : -96.37159 : Mannford, OK +74045 : 36.241861 : -96.68338 : Maramec, OK +74046 : 35.901277 : -96.326053 : Milfay, OK +74047 : 35.853188 : -96.00205 : Mounds, OK +74048 : 36.690587 : -95.62751 : Nowata, OK +74050 : 36.074141 : -96.0619 : Oakhurst, OK +74051 : 36.60234 : -95.97544 : Ochelata, OK +74052 : 36.084211 : -96.5794 : Oilton, OK +74053 : 36.437088 : -95.71144 : Oologah, OK +74054 : 36.276739 : -96.36831 : Osage, OK +74055 : 36.278298 : -95.8305 : Owasso, OK +74056 : 36.764056 : -96.32123 : Pawhuska, OK +74058 : 36.358645 : -96.77143 : Pawnee, OK +74059 : 35.968675 : -97.04258 : Perkins, OK +74060 : 36.24973 : -96.2674 : Prue, OK +74061 : 36.533868 : -95.90865 : Ramona, OK +74062 : 36.024668 : -96.90773 : Ripley, OK +74063 : 36.139385 : -96.16523 : Sand Springs, OK +74064 : 36.68125 : -97.032304 : McCord, OK +74066 : 35.996582 : -96.1194 : Sapulpa, OK +74067 : 36.019575 : -96.093682 : Sapulpa, OK +74068 : 35.910408 : -96.57768 : Shamrock, OK +74070 : 36.381305 : -96.03998 : Skiatook, OK +74071 : 35.778763 : -96.26802 : Slick, OK +74072 : 36.957786 : -95.57108 : S Coffeyville, OK +74073 : 36.306323 : -96.02081 : Sperry, OK +74074 : 36.105571 : -97.07631 : Stillwater, OK +74075 : 36.149394 : -97.05784 : Stillwater, OK +74076 : 36.072372 : -97.055141 : Stillwater, OK +74077 : 36.093665 : -96.987458 : Stillwater, OK +74078 : 36.093665 : -96.987458 : Stillwater, OK +74079 : 35.744531 : -96.66342 : Stroud, OK +74080 : 36.527631 : -95.6992 : Talala, OK +74081 : 36.169806 : -96.44005 : Terlton, OK +74082 : 36.450115 : -95.881381 : Vera, OK +74083 : 36.935821 : -95.78336 : Wann, OK +74084 : 36.542944 : -96.31853 : Wynona, OK +74085 : 36.10865 : -96.70231 : Yale, OK +74101 : 36.039147 : -95.868667 : Tulsa, OK +74102 : 36.063095 : -95.804231 : Tulsa, OK +74103 : 36.156892 : -95.99508 : Tulsa, OK +74104 : 36.146143 : -95.95414 : Tulsa, OK +74105 : 36.099044 : -95.96615 : Tulsa, OK +74106 : 36.184692 : -95.98512 : Tulsa, OK +74107 : 36.102042 : -96.03144 : Tulsa, OK +74108 : 36.146897 : -95.79958 : Tulsa, OK +74110 : 36.181143 : -95.95424 : Tulsa, OK +74112 : 36.148444 : -95.90841 : Tulsa, OK +74114 : 36.126894 : -95.94657 : Tulsa, OK +74115 : 36.180144 : -95.91129 : Tulsa, OK +74116 : 36.169454 : -95.8242 : Tulsa, OK +74117 : 36.235961 : -95.88514 : Tulsa, OK +74119 : 36.142743 : -95.98872 : Tulsa, OK +74120 : 36.151143 : -95.97747 : Tulsa, OK +74121 : 36.139826 : -96.029725 : Tulsa, OK +74126 : 36.236691 : -95.98674 : Tulsa, OK +74127 : 36.160341 : -96.03435 : Tulsa, OK +74128 : 36.146577 : -95.85194 : Tulsa, OK +74129 : 36.126446 : -95.86763 : Tulsa, OK +74130 : 36.239642 : -95.95847 : Tulsa, OK +74131 : 36.057536 : -96.07119 : Tulsa, OK +74132 : 36.051893 : -96.02752 : Tulsa, OK +74133 : 36.04309 : -95.88417 : Tulsa, OK +74134 : 36.114797 : -95.82105 : Tulsa, OK +74135 : 36.101245 : -95.92475 : Tulsa, OK +74136 : 36.059495 : -95.93922 : Tulsa, OK +74137 : 36.025405 : -95.92953 : Tulsa, OK +74141 : 36.139826 : -96.029725 : Tulsa, OK +74145 : 36.096296 : -95.8847 : Tulsa, OK +74146 : 36.102112 : -95.85244 : Tulsa, OK +74147 : 36.139826 : -96.029725 : Tulsa, OK +74148 : 36.139826 : -96.029725 : Tulsa, OK +74149 : 36.139826 : -96.029725 : Tulsa, OK +74150 : 36.139826 : -96.029725 : Tulsa, OK +74152 : 36.139826 : -96.029725 : Tulsa, OK +74153 : 36.139826 : -96.029725 : Tulsa, OK +74155 : 36.139826 : -96.029725 : Tulsa, OK +74156 : 36.302391 : -95.960472 : Tulsa, OK +74157 : 36.139826 : -96.029725 : Tulsa, OK +74158 : 36.139826 : -96.029725 : Tulsa, OK +74159 : 36.077221 : -96.083477 : Tulsa, OK +74169 : 36.139826 : -96.029725 : Tulsa, OK +74170 : 36.139826 : -96.029725 : Tulsa, OK +74171 : 36.054345 : -95.957721 : Tulsa, OK +74172 : 36.154342 : -95.992323 : Tulsa, OK +74177 : 36.048045 : -95.957771 : Tulsa, OK +74182 : 36.139826 : -96.029725 : Tulsa, OK +74183 : 36.139826 : -96.029725 : Tulsa, OK +74184 : 36.139826 : -96.029725 : Tulsa, OK +74186 : 36.139826 : -96.029725 : Tulsa, OK +74187 : 36.139826 : -96.029725 : Tulsa, OK +74189 : 36.139826 : -96.029725 : Tulsa, OK +74192 : 36.139826 : -96.029725 : Tulsa, OK +74193 : 36.139826 : -96.029725 : Tulsa, OK +74194 : 36.139826 : -96.029725 : Tulsa, OK +74301 : 36.631673 : -95.17303 : Vinita, OK +74328 : 36.260756 : -94.69267 : Colcord, OK +74330 : 36.434328 : -95.25512 : Adair, OK +74331 : 36.618326 : -94.93424 : Afton, OK +74332 : 36.51509 : -95.22924 : Big Cabin, OK +74333 : 36.802232 : -95.07782 : Bluejacket, OK +74334 : 36.597953 : -94.647526 : Dodge, OK +74335 : 36.975692 : -94.85161 : Cardin, OK +74336 : 36.422876 : -94.796399 : Jay, OK +74337 : 36.167467 : -95.31925 : Chouteau, OK +74338 : 36.227439 : -94.67798 : Colcord, OK +74339 : 36.932957 : -94.87134 : Commerce, OK +74340 : 36.48721 : -94.98452 : Disney, OK +74342 : 36.420495 : -94.92621 : Eucha, OK +74343 : 36.747928 : -94.84022 : Fairland, OK +74344 : 36.599689 : -94.76673 : Grove, OK +74345 : 36.603587 : -94.72974 : Grove, OK +74346 : 36.444215 : -94.78345 : Jay, OK +74347 : 36.19 : -94.79595 : Kansas, OK +74349 : 36.523163 : -95.02428 : Ketchum, OK +74350 : 36.46898 : -95.04967 : Langley, OK +74352 : 36.148065 : -95.16801 : Locust Grove, OK +74353 : 36.292495 : -95.222792 : Mazie, OK +74354 : 36.880746 : -94.87142 : Miami, OK +74355 : 36.83408 : -94.877031 : Miami, OK +74358 : 36.915805 : -94.88039 : North Miami, OK +74359 : 36.415938 : -94.787091 : Oaks, OK +74360 : 36.981521 : -94.83278 : Picher, OK +74361 : 36.294174 : -95.30295 : Pryor, OK +74362 : 36.292495 : -95.222792 : Pryor, OK +74363 : 36.947372 : -94.72912 : Quapaw, OK +74364 : 36.197948 : -94.96707 : Rose, OK +74365 : 36.296196 : -95.10556 : Salina, OK +74366 : 36.394258 : -95.04869 : Spavinaw, OK +74367 : 36.412084 : -95.12924 : Strang, OK +74368 : 36.20822 : -94.85945 : Twin Oaks, OK +74369 : 36.897777 : -95.15249 : Welch, OK +74370 : 36.777702 : -94.68768 : Wyandotte, OK +74399 : 36.932944 : -94.873005 : Commerce, OK +74401 : 35.739681 : -95.40711 : Muskogee, OK +74402 : 35.764223 : -95.306916 : Muskogee, OK +74403 : 35.719962 : -95.33691 : Muskogee, OK +74421 : 35.755522 : -96.04744 : Beggs, OK +74422 : 35.645974 : -95.66931 : Boynton, OK +74423 : 35.668132 : -95.18582 : Braggs, OK +74425 : 35.172538 : -95.62824 : Canadian, OK +74426 : 35.443872 : -95.54393 : Checotah, OK +74427 : 35.700818 : -94.92552 : Cookson, OK +74428 : 35.550269 : -95.64874 : Council Hill, OK +74429 : 35.94785 : -95.6377 : Coweta, OK +74430 : 35.124644 : -95.66668 : Crowder, OK +74431 : 35.458946 : -95.94597 : Dewar, OK +74432 : 35.280145 : -95.57854 : Eufaula, OK +74434 : 35.799294 : -95.23355 : Fort Gibson, OK +74435 : 35.566657 : -95.09627 : Gore, OK +74436 : 35.815497 : -95.68608 : Haskell, OK +74437 : 35.447961 : -95.95038 : Henryetta, OK +74438 : 35.520519 : -95.75122 : Hitchita, OK +74440 : 35.269955 : -95.30205 : Hoyt, OK +74441 : 35.966254 : -95.15436 : Hulbert, OK +74442 : 35.152295 : -95.78957 : Indianola, OK +74444 : 36.053001 : -94.96682 : Moodys, OK +74445 : 35.616464 : -95.84645 : Morris, OK +74446 : 35.852293 : -95.31717 : Okay, OK +74447 : 35.628612 : -95.9734 : Okmulgee, OK +74450 : 35.59824 : -95.48434 : Oktaha, OK +74451 : 35.742956 : -94.96737 : Park Hill, OK +74452 : 36.10862 : -95.11169 : Peggs, OK +74454 : 35.867529 : -95.52647 : Porter, OK +74455 : 35.355394 : -95.28635 : Porum, OK +74456 : 35.712025 : -95.99717 : Preston, OK +74457 : 36.053046 : -94.7768 : Proctor, OK +74458 : 35.963567 : -95.513856 : Redbird, OK +74459 : 35.519193 : -95.49447 : Rentiesville, OK +74460 : 35.51833 : -95.9576 : Schulter, OK +74461 : 35.384048 : -95.70731 : Stidham, OK +74462 : 35.272967 : -95.16328 : Stigler, OK +74463 : 35.76342 : -95.54788 : Taft, OK +74464 : 35.923658 : -94.97185 : Tahlequah, OK +74465 : 35.900074 : -95.040008 : Tahlequah, OK +74466 : 35.963567 : -95.513856 : Tullahassee, OK +74467 : 35.961019 : -95.3611 : Wagoner, OK +74468 : 35.61546 : -95.56851 : Wainwright, OK +74469 : 35.493581 : -95.30914 : Warner, OK +74470 : 35.490036 : -95.15158 : Webbers Falls, OK +74471 : 35.837827 : -94.87402 : Welling, OK +74472 : 35.259201 : -95.24701 : Whitefield, OK +74477 : 35.963567 : -95.513856 : Wagoner, OK +74501 : 34.944399 : -95.75709 : Mcalester, OK +74502 : 34.947259 : -95.720708 : Mcalester, OK +74520 : 34.772557 : -96.661745 : Ada, OK +74521 : 34.660204 : -95.09814 : Albion, OK +74522 : 34.902286 : -95.69073 : Alderson, OK +74523 : 34.229335 : -95.61603 : Antlers, OK +74525 : 34.347553 : -96.11276 : Atoka, OK +74528 : 34.722059 : -95.76125 : Blanco, OK +74529 : 34.947259 : -95.720708 : Blocker, OK +74530 : 34.416915 : -96.49278 : Bromide, OK +74531 : 34.932628 : -96.23929 : Calvin, OK +74533 : 34.217672 : -96.19634 : Caney, OK +74534 : 34.612564 : -96.35556 : Centrahoma, OK +74535 : 34.488403 : -96.43356 : Clarita, OK +74536 : 34.590491 : -95.36797 : Clayton, OK +74538 : 34.553763 : -96.23084 : Coalgate, OK +74540 : 34.540822 : -95.71825 : Daisy, OK +74542 : 34.4187 : -96.039727 : Atoka, OK +74543 : 34.373618 : -95.43604 : Finley, OK +74545 : 34.877067 : -95.47832 : Gowen, OK +74546 : 34.855223 : -95.57691 : Haileyville, OK +74547 : 34.84294 : -95.57413 : Hartshorne, OK +74549 : 34.536633 : -94.93507 : Honobia, OK +74552 : 35.127495 : -95.23098 : Kinta, OK +74553 : 34.708098 : -95.90485 : Kiowa, OK +74554 : 34.926507 : -95.72048 : Krebs, OK +74555 : 34.249448 : -95.96199 : Lane, OK +74556 : 34.471798 : -96.20366 : Lehigh, OK +74557 : 34.391572 : -95.67366 : Moyers, OK +74558 : 34.497876 : -95.1316 : Nashoba, OK +74559 : 34.869457 : -95.221099 : Panola, OK +74560 : 34.66625 : -95.78885 : Pittsburg, OK +74561 : 35.119128 : -95.39008 : Quinton, OK +74562 : 34.263342 : -95.30693 : Rattan, OK +74563 : 34.948771 : -95.1037 : Red Oak, OK +74565 : 34.831398 : -95.83967 : Savanna, OK +74567 : 34.454702 : -95.41013 : Snow, OK +74569 : 34.491359 : -95.94157 : Stringtown, OK +74570 : 34.858091 : -96.09233 : Stuart, OK +74571 : 34.729815 : -95.03625 : Talihina, OK +74572 : 34.626083 : -96.43083 : Tupelo, OK +74574 : 34.646758 : -95.27642 : Tuskahoma, OK +74576 : 34.665422 : -96.03074 : Wardville, OK +74577 : 34.689854 : -94.8558 : Whitesboro, OK +74578 : 34.886021 : -95.29859 : Wilburton, OK +74601 : 36.707393 : -97.10167 : Ponca City, OK +74602 : 36.695368 : -97.137693 : Ponca City, OK +74603 : 36.796349 : -97.106166 : Ponca City, OK +74604 : 36.704703 : -97.00798 : Ponca City, OK +74630 : 36.52791 : -97.43304 : Billings, OK +74631 : 36.800787 : -97.29289 : Blackwell, OK +74632 : 36.939016 : -97.33875 : Braman, OK +74633 : 36.694585 : -96.73934 : Burbank, OK +74636 : 36.810451 : -97.51795 : Deer Creek, OK +74637 : 36.577618 : -96.69529 : Fairfax, OK +74640 : 36.585776 : -97.61334 : Hunter, OK +74641 : 36.807276 : -96.86091 : Kaw City, OK +74643 : 36.69588 : -97.56931 : Lamont, OK +74644 : 36.554757 : -97.14483 : Marland, OK +74646 : 36.821862 : -97.45366 : Nardin, OK +74647 : 36.904817 : -97.06078 : Newkirk, OK +74650 : 36.500388 : -96.74013 : Ralston, OK +74651 : 36.473704 : -97.20505 : Red Rock, OK +74652 : 36.830328 : -96.68054 : Shidler, OK +74653 : 36.665613 : -97.32967 : Tonkawa, OK +74701 : 34.009209 : -96.38612 : Durant, OK +74702 : 33.921979 : -96.191767 : Durant, OK +74720 : 33.83464 : -96.39018 : Achille, OK +74721 : 33.888549 : -96.17244 : Albany, OK +74722 : 34.454046 : -94.94148 : Battiest, OK +74723 : 33.997865 : -96.02963 : Bennington, OK +74724 : 34.402346 : -94.79763 : Bethel, OK +74726 : 33.98526 : -96.15629 : Bokchito, OK +74727 : 34.026768 : -95.8613 : Boswell, OK +74728 : 34.142978 : -94.80269 : Broken Bow, OK +74729 : 34.137095 : -96.26936 : Caddo, OK +74730 : 33.920767 : -96.44073 : Calera, OK +74731 : 33.869195 : -96.57617 : Cartwright, OK +74733 : 33.84836 : -96.5029 : Colbert, OK +74734 : 34.138965 : -94.55407 : Eagletown, OK +74735 : 34.052225 : -95.25701 : Fort Towson, OK +74736 : 33.917419 : -94.96494 : Garvin, OK +74737 : 34.032184 : -94.89649 : Golden, OK +74738 : 33.917165 : -95.4894 : Grant, OK +74740 : 33.784733 : -94.60436 : Haworth, OK +74741 : 33.77061 : -96.29927 : Hendrix, OK +74743 : 34.010943 : -95.51651 : Hugo, OK +74745 : 33.883578 : -94.83154 : Idabel, OK +74747 : 33.769093 : -96.3549 : Kemp, OK +74748 : 34.163069 : -96.47772 : Kenefic, OK +74750 : 33.98471 : -95.01088 : Millerton, OK +74752 : 34.061674 : -94.808868 : Pickens, OK +74753 : 33.918732 : -96.5464 : Platter, OK +74754 : 34.199682 : -95.12064 : Ringold, OK +74755 : 34.127277 : -95.11846 : Rufe, OK +74756 : 34.023191 : -95.36911 : Sawyer, OK +74759 : 34.038263 : -95.70851 : Soper, OK +74760 : 34.146827 : -95.37358 : Spencerville, OK +74761 : 34.01528 : -95.20104 : Swink, OK +74764 : 34.038794 : -95.07793 : Valliant, OK +74766 : 34.148691 : -94.95546 : Wright City, OK +74801 : 35.327341 : -96.93544 : Shawnee, OK +74802 : 35.365621 : -96.959601 : Shawnee, OK +74804 : 35.375188 : -96.93162 : Shawnee, OK +74807 : 35.306375 : -96.935924 : Shawnee, OK +74818 : 35.162228 : -96.609139 : Seminole, OK +74820 : 34.780243 : -96.68761 : Ada, OK +74821 : 34.735301 : -96.669321 : Ada, OK +74824 : 35.883914 : -96.86735 : Agra, OK +74825 : 34.817511 : -96.4108 : Allen, OK +74826 : 35.012407 : -96.91873 : Asher, OK +74827 : 34.949547 : -96.33356 : Atwood, OK +74829 : 35.49596 : -96.48051 : Boley, OK +74830 : 35.147566 : -96.6696 : Bowlegs, OK +74831 : 34.891218 : -97.06278 : Byars, OK +74832 : 35.815581 : -97.01061 : Carney, OK +74833 : 35.54247 : -96.39471 : Castle, OK +74834 : 35.702159 : -96.88961 : Chandler, OK +74836 : 34.451503 : -96.63092 : Connerville, OK +74837 : 35.348331 : -96.46385 : Cromwell, OK +74839 : 35.262169 : -96.05434 : Dustin, OK +74840 : 35.29689 : -96.78325 : Earlsboro, OK +74842 : 34.597595 : -96.61818 : Fittstown, OK +74843 : 34.648631 : -96.73885 : Fitzhugh, OK +74844 : 34.878209 : -96.58838 : Francis, OK +74845 : 35.203729 : -95.90822 : Hanna, OK +74848 : 35.088636 : -96.38778 : Holdenville, OK +74849 : 34.969783 : -96.73899 : Konawa, OK +74850 : 35.104311 : -96.09067 : Lamar, OK +74851 : 35.4122 : -97.0984 : Mcloud, OK +74852 : 35.123383 : -97.00869 : Macomb, OK +74853 : 35.235118 : -96.24114 : Wetumka, OK +74854 : 35.129805 : -96.77625 : Maud, OK +74855 : 35.507952 : -96.89689 : Meeker, OK +74856 : 34.395266 : -96.81667 : Mill Creek, OK +74857 : 35.351612 : -97.19507 : Newalla, OK +74859 : 35.44116 : -96.30798 : Okemah, OK +74860 : 35.514019 : -96.56969 : Paden, OK +74864 : 35.490727 : -96.69141 : Prague, OK +74865 : 34.618331 : -96.81397 : Roff, OK +74866 : 35.062235 : -96.8355 : Saint Louis, OK +74867 : 34.948211 : -96.53394 : Sasakwa, OK +74868 : 35.249655 : -96.65915 : Seminole, OK +74869 : 35.601113 : -96.7777 : Sparks, OK +74871 : 34.630936 : -96.55756 : Stonewall, OK +74872 : 34.793533 : -96.97738 : Stratford, OK +74873 : 35.231608 : -96.9767 : Tecumseh, OK +74875 : 35.876736 : -96.95179 : Tryon, OK +74878 : 35.012317 : -97.06156 : Wanette, OK +74880 : 35.369606 : -96.13412 : Weleetka, OK +74881 : 35.694734 : -97.07043 : Wellston, OK +74883 : 35.232465 : -96.23571 : Wetumka, OK +74884 : 35.166644 : -96.5066 : Wewoka, OK +74894 : 34.955971 : -96.754575 : Konawa, OK +74901 : 35.347792 : -94.44274 : Arkoma, OK +74902 : 35.241727 : -94.46967 : Pocola, OK +74930 : 35.184593 : -94.79752 : Bokoshe, OK +74931 : 35.690088 : -94.76307 : Bunch, OK +74932 : 35.138765 : -94.54108 : Cameron, OK +74935 : 34.951143 : -94.90421 : Fanshawe, OK +74936 : 35.392525 : -94.70368 : Gans, OK +74937 : 34.866897 : -94.58622 : Heavener, OK +74939 : 34.712466 : -94.65008 : Hodgen, OK +74940 : 34.956272 : -94.63333 : Howe, OK +74941 : 35.26773 : -94.87609 : Keota, OK +74942 : 34.898768 : -94.98141 : Leflore, OK +74943 : 35.077265 : -95.08613 : Lequire, OK +74944 : 35.127447 : -94.98545 : Mccurtain, OK +74945 : 35.595915 : -94.8089 : Marble City, OK +74946 : 35.41483 : -94.45263 : Moffett, OK +74947 : 34.991767 : -94.51763 : Monroe, OK +74948 : 35.431711 : -94.56575 : Muldrow, OK +74949 : 34.669198 : -94.75729 : Muse, OK +74951 : 35.172259 : -94.67008 : Panama, OK +74953 : 35.052793 : -94.61829 : Poteau, OK +74954 : 35.413049 : -94.50476 : Roland, OK +74955 : 35.467031 : -94.78647 : Sallisaw, OK +74956 : 35.122751 : -94.72058 : Shady Point, OK +74957 : 34.503213 : -94.67157 : Smithville, OK +74959 : 35.247209 : -94.62105 : Spiro, OK +74960 : 35.815628 : -94.65023 : Stilwell, OK +74962 : 35.543155 : -94.96628 : Vian, OK +74963 : 34.37769 : -94.55278 : Watson, OK +74964 : 36.114272 : -94.6335 : Watts, OK +74965 : 35.998632 : -94.59266 : Westville, OK +74966 : 34.943609 : -94.81453 : Wister, OK +74968 : 35.398035 : -94.63761 : Muldrow, OK +75001 : 32.96129 : -96.83751 : Addison, TX +75002 : 33.092846 : -96.62447 : Allen, TX +75006 : 32.960374 : -96.89163 : Carrollton, TX +75007 : 33.00542 : -96.89773 : Carrollton, TX +75008 : 33.20743 : -97.116282 : Carrollton, TX +75009 : 33.327927 : -96.76129 : Celina, TX +75010 : 33.030556 : -96.89328 : Carrollton, TX +75011 : 32.767268 : -96.777626 : Carrollton, TX +75013 : 33.106582 : -96.69402 : Allen, TX +75014 : 32.767268 : -96.777626 : Irving, TX +75015 : 32.767268 : -96.777626 : Irving, TX +75016 : 32.767268 : -96.777626 : Irving, TX +75017 : 32.767268 : -96.777626 : Irving, TX +75019 : 32.967341 : -96.98656 : Coppell, TX +75020 : 33.754053 : -96.57867 : Denison, TX +75021 : 33.742641 : -96.51427 : Denison, TX +75022 : 33.024778 : -97.10206 : Flower Mound, TX +75023 : 33.054671 : -96.73506 : Plano, TX +75024 : 33.07707 : -96.79859 : Plano, TX +75025 : 33.086868 : -96.74504 : Plano, TX +75026 : 33.19359 : -96.569879 : Plano, TX +75027 : 33.20743 : -97.116282 : Flower Mound, TX +75028 : 33.033214 : -97.05965 : Flower Mound, TX +75029 : 33.20743 : -97.116282 : Lewisville, TX +75030 : 32.91747 : -96.534737 : Rowlett, TX +75032 : 32.867103 : -96.44129 : Rockwall, TX +75034 : 33.143792 : -96.83938 : Frisco, TX +75035 : 33.130086 : -96.78177 : Frisco, TX +75037 : 32.767268 : -96.777626 : Irving, TX +75038 : 32.872386 : -96.98524 : Irving, TX +75039 : 32.876474 : -96.94129 : Irving, TX +75040 : 32.920574 : -96.62639 : Garland, TX +75041 : 32.881525 : -96.64601 : Garland, TX +75042 : 32.915625 : -96.67399 : Garland, TX +75043 : 32.854893 : -96.60211 : Garland, TX +75044 : 32.960375 : -96.66188 : Garland, TX +75045 : 32.913695 : -96.627131 : Garland, TX +75046 : 32.767268 : -96.777626 : Garland, TX +75047 : 32.767268 : -96.777626 : Garland, TX +75048 : 32.975723 : -96.58661 : Garland, TX +75049 : 32.767268 : -96.777626 : Garland, TX +75050 : 32.759922 : -97.01216 : Grand Prairie, TX +75051 : 32.728982 : -97.00428 : Grand Prairie, TX +75052 : 32.675604 : -97.02346 : Grand Prairie, TX +75053 : 32.767268 : -96.777626 : Grand Prairie, TX +75054 : 32.767268 : -96.777626 : Grand Prairie, TX +75056 : 33.081421 : -96.88957 : The Colony, TX +75057 : 33.04867 : -96.99321 : Lewisville, TX +75058 : 33.453628 : -96.73436 : Gunter, TX +75059 : 32.86372 : -96.934998 : Irving, TX +75060 : 32.80268 : -96.95499 : Irving, TX +75061 : 32.826729 : -96.9614 : Irving, TX +75062 : 32.846645 : -96.96733 : Irving, TX +75063 : 32.916865 : -96.97349 : Irving, TX +75065 : 33.12635 : -97.02525 : Lake Dallas, TX +75066 : 32.959222 : -96.853877 : Carrollton, TX +75067 : 33.020118 : -97.00771 : Lewisville, TX +75068 : 33.173008 : -96.95485 : Little Elm, TX +75069 : 33.195073 : -96.60363 : McKinney, TX +75070 : 33.212203 : -96.67522 : McKinney, TX +75071 : 33.225107 : -96.638614 : Frisco, TX +75074 : 33.028921 : -96.68102 : Plano, TX +75075 : 33.024721 : -96.74038 : Plano, TX +75076 : 33.818635 : -96.69338 : Pottsboro, TX +75077 : 33.075138 : -97.0529 : Lewisville, TX +75078 : 33.240766 : -96.79944 : Prosper, TX +75080 : 32.969523 : -96.74093 : Richardson, TX +75081 : 32.948974 : -96.70916 : Richardson, TX +75082 : 32.993405 : -96.65901 : Richardson, TX +75083 : 32.767268 : -96.777626 : Richardson, TX +75085 : 32.767268 : -96.777626 : Richardson, TX +75086 : 33.002395 : -96.615837 : Plano, TX +75087 : 32.93382 : -96.45446 : Rockwall, TX +75088 : 32.897459 : -96.5497 : Rowlett, TX +75089 : 32.923924 : -96.54697 : Rowlett, TX +75090 : 33.632806 : -96.59106 : Sherman, TX +75091 : 33.678665 : -96.662289 : Sherman, TX +75092 : 33.649938 : -96.65387 : Sherman, TX +75093 : 33.03505 : -96.80492 : Plano, TX +75094 : 33.009681 : -96.61113 : Plano, TX +75097 : 33.351238 : -96.664632 : Weston, TX +75098 : 33.011975 : -96.53607 : Wylie, TX +75099 : 32.77103 : -96.79963 : Coppell, TX +75101 : 32.267846 : -96.6967 : Bardwell, TX +75102 : 32.075079 : -96.64311 : Barry, TX +75103 : 32.532449 : -95.88 : Canton, TX +75104 : 32.588536 : -96.94949 : Cedar Hill, TX +75105 : 32.241963 : -96.37917 : Chatfield, TX +75106 : 32.767268 : -96.777626 : Cedar Hill, TX +75109 : 32.03049 : -96.383005 : Angus, TX +75110 : 32.078228 : -96.44612 : Corsicana, TX +75114 : 32.629178 : -96.44339 : Crandall, TX +75115 : 32.599286 : -96.85882 : Desoto, TX +75116 : 32.658384 : -96.91265 : Duncanville, TX +75117 : 32.696777 : -95.86881 : Edgewood, TX +75118 : 32.599614 : -96.302743 : Elmo, TX +75119 : 32.331239 : -96.61962 : Ennis, TX +75120 : 32.334709 : -96.633546 : Ennis, TX +75121 : 33.079946 : -96.41788 : Copeville, TX +75123 : 32.767268 : -96.777626 : Desoto, TX +75124 : 32.310343 : -96.00312 : Eustace, TX +75125 : 32.533551 : -96.65684 : Ferris, TX +75126 : 32.745373 : -96.46038 : Forney, TX +75127 : 32.68309 : -95.79436 : Fruitvale, TX +75132 : 32.941014 : -96.38095 : Fate, TX +75134 : 32.620385 : -96.7812 : Lancaster, TX +75135 : 33.075653 : -96.23774 : Caddo Mills, TX +75137 : 32.634835 : -96.91343 : Duncanville, TX +75138 : 32.767268 : -96.777626 : Duncanville, TX +75140 : 32.661299 : -95.71738 : Grand Saline, TX +75141 : 32.644647 : -96.71036 : Hutchins, TX +75142 : 32.574299 : -96.30377 : Kaufman, TX +75143 : 32.348007 : -96.21035 : Kemp, TX +75144 : 32.120271 : -96.22474 : Kerens, TX +75146 : 32.590063 : -96.75892 : Lancaster, TX +75147 : 32.314256 : -96.11068 : Mabank, TX +75148 : 32.183649 : -96.01862 : Malakoff, TX +75149 : 32.767329 : -96.60759 : Mesquite, TX +75150 : 32.818392 : -96.63355 : Mesquite, TX +75151 : 32.062395 : -96.473459 : Corsicana, TX +75152 : 32.425222 : -96.68103 : Palmer, TX +75153 : 32.142925 : -96.32632 : Powell, TX +75154 : 32.526123 : -96.82325 : Red Oak, TX +75155 : 32.226257 : -96.48147 : Rice, TX +75156 : 32.290819 : -96.114108 : Gun Barrel City, TX +75157 : 32.455407 : -96.439495 : Rosser, TX +75158 : 32.466891 : -96.38502 : Scurry, TX +75159 : 32.628858 : -96.53811 : Seagoville, TX +75160 : 32.747747 : -96.28923 : Terrell, TX +75161 : 32.727366 : -96.187 : Terrell, TX +75163 : 32.17548 : -96.10935 : Trinidad, TX +75164 : 33.065217 : -96.31152 : Josephine, TX +75165 : 32.397024 : -96.83283 : Waxahachie, TX +75166 : 33.022051 : -96.43601 : Lavon, TX +75167 : 32.380958 : -96.91801 : Waxahachie, TX +75168 : 32.374937 : -96.716638 : Waxahachie, TX +75169 : 32.725386 : -96.00238 : Wills Point, TX +75172 : 32.598845 : -96.6831 : Wilmer, TX +75173 : 33.048275 : -96.42153 : Nevada, TX +75180 : 32.72203 : -96.61634 : Mesquite, TX +75181 : 32.735812 : -96.55886 : Mesquite, TX +75182 : 32.803646 : -96.56965 : Sunnyvale, TX +75185 : 32.740332 : -96.561846 : Mesquite, TX +75187 : 32.767268 : -96.777626 : Mesquite, TX +75189 : 32.960512 : -96.31278 : Royse City, TX +75201 : 32.787629 : -96.79941 : Dallas, TX +75202 : 32.77988 : -96.80502 : Dallas, TX +75203 : 32.745831 : -96.80672 : Dallas, TX +75204 : 32.800333 : -96.78952 : Dallas, TX +75205 : 32.836094 : -96.79524 : Dallas, TX +75206 : 32.826128 : -96.7712 : Dallas, TX +75207 : 32.78643 : -96.81992 : Dallas, TX +75208 : 32.751464 : -96.83864 : Dallas, TX +75209 : 32.845978 : -96.82552 : Dallas, TX +75210 : 32.77103 : -96.74732 : Dallas, TX +75211 : 32.736931 : -96.88253 : Dallas, TX +75212 : 32.78238 : -96.86945 : Dallas, TX +75214 : 32.825628 : -96.74872 : Dallas, TX +75215 : 32.76103 : -96.77035 : Dallas, TX +75216 : 32.710082 : -96.7972 : Dallas, TX +75217 : 32.72238 : -96.67582 : Dallas, TX +75218 : 32.842726 : -96.69937 : Dallas, TX +75219 : 32.812462 : -96.81412 : Dallas, TX +75220 : 32.867977 : -96.86306 : Dallas, TX +75221 : 32.814728 : -96.787725 : Dallas, TX +75222 : 32.767268 : -96.777626 : Dallas, TX +75223 : 32.792879 : -96.74918 : Dallas, TX +75224 : 32.716065 : -96.83987 : Dallas, TX +75225 : 32.862876 : -96.7904 : Dallas, TX +75226 : 32.783978 : -96.77662 : Dallas, TX +75227 : 32.77003 : -96.69 : Dallas, TX +75228 : 32.825227 : -96.67955 : Dallas, TX +75229 : 32.895376 : -96.85985 : Dallas, TX +75230 : 32.901176 : -96.79054 : Dallas, TX +75231 : 32.874317 : -96.74764 : Dallas, TX +75232 : 32.664034 : -96.83886 : Dallas, TX +75233 : 32.704398 : -96.87222 : Dallas, TX +75234 : 32.925975 : -96.88322 : Dallas, TX +75235 : 32.828128 : -96.84612 : Dallas, TX +75236 : 32.685533 : -96.91746 : Dallas, TX +75237 : 32.666984 : -96.87633 : Dallas, TX +75238 : 32.873926 : -96.70922 : Dallas, TX +75239 : 32.767268 : -96.777626 : Dallas, TX +75240 : 32.938774 : -96.78543 : Dallas, TX +75241 : 32.669383 : -96.77439 : Dallas, TX +75242 : 32.767268 : -96.777626 : Dallas, TX +75243 : 32.912225 : -96.73688 : Dallas, TX +75244 : 32.922624 : -96.83616 : Dallas, TX +75245 : 32.922499 : -96.535191 : Dallas, TX +75246 : 32.791878 : -96.77365 : Dallas, TX +75247 : 32.817978 : -96.87928 : Dallas, TX +75248 : 32.968123 : -96.78863 : Dallas, TX +75249 : 32.639661 : -96.95317 : Dallas, TX +75250 : 32.767268 : -96.777626 : Dallas, TX +75251 : 32.919104 : -96.77497 : Dallas, TX +75252 : 32.998132 : -96.79088 : Dallas, TX +75253 : 32.679924 : -96.60367 : Dallas, TX +75254 : 32.946069 : -96.794496 : Dallas, TX +75255 : 32.669783 : -96.614921 : Dallas, TX +75258 : 32.767268 : -96.777626 : Dallas, TX +75260 : 32.767268 : -96.777626 : Dallas, TX +75261 : 32.767268 : -96.777626 : Dallas, TX +75262 : 32.767268 : -96.777626 : Dallas, TX +75263 : 32.767268 : -96.777626 : Dallas, TX +75264 : 32.767268 : -96.777626 : Dallas, TX +75265 : 32.767268 : -96.777626 : Dallas, TX +75266 : 32.767268 : -96.777626 : Dallas, TX +75267 : 32.767268 : -96.777626 : Dallas, TX +75270 : 32.78133 : -96.80198 : Dallas, TX +75275 : 32.767268 : -96.777626 : Dallas, TX +75277 : 32.767268 : -96.777626 : Dallas, TX +75283 : 32.767268 : -96.777626 : Dallas, TX +75284 : 32.767268 : -96.777626 : Dallas, TX +75285 : 32.767268 : -96.777626 : Dallas, TX +75286 : 32.767268 : -96.777626 : Dallas, TX +75287 : 32.998786 : -96.84436 : Dallas, TX +75294 : 32.767268 : -96.777626 : Dallas, TX +75295 : 32.767268 : -96.777626 : Dallas, TX +75301 : 32.767268 : -96.777626 : Dallas, TX +75303 : 32.767268 : -96.777626 : Dallas, TX +75310 : 32.767268 : -96.777626 : Dallas, TX +75312 : 32.767268 : -96.777626 : Dallas, TX +75313 : 32.767268 : -96.777626 : Dallas, TX +75315 : 32.767268 : -96.777626 : Dallas, TX +75320 : 32.767268 : -96.777626 : Dallas, TX +75323 : 32.767268 : -96.777626 : Dallas, TX +75326 : 32.767268 : -96.777626 : Dallas, TX +75336 : 32.767268 : -96.777626 : Dallas, TX +75339 : 32.767268 : -96.777626 : Dallas, TX +75342 : 32.767268 : -96.777626 : Dallas, TX +75346 : 32.767268 : -96.777626 : Dallas, TX +75350 : 32.767268 : -96.777626 : Dallas, TX +75353 : 32.767268 : -96.777626 : Dallas, TX +75354 : 32.767268 : -96.777626 : Dallas, TX +75355 : 32.767268 : -96.777626 : Dallas, TX +75356 : 32.767268 : -96.777626 : Dallas, TX +75357 : 32.767268 : -96.777626 : Dallas, TX +75359 : 32.767268 : -96.777626 : Dallas, TX +75360 : 32.767268 : -96.777626 : Dallas, TX +75363 : 32.767268 : -96.777626 : Dallas, TX +75364 : 32.767268 : -96.777626 : Dallas, TX +75367 : 32.767268 : -96.777626 : Dallas, TX +75368 : 32.767268 : -96.777626 : Dallas, TX +75370 : 32.767268 : -96.777626 : Dallas, TX +75371 : 32.767268 : -96.777626 : Dallas, TX +75372 : 32.767268 : -96.777626 : Dallas, TX +75373 : 32.767268 : -96.777626 : Dallas, TX +75374 : 32.767268 : -96.777626 : Dallas, TX +75376 : 32.767268 : -96.777626 : Dallas, TX +75378 : 32.767268 : -96.777626 : Dallas, TX +75379 : 32.767268 : -96.777626 : Dallas, TX +75380 : 32.767268 : -96.777626 : Dallas, TX +75381 : 32.767268 : -96.777626 : Dallas, TX +75382 : 32.767268 : -96.777626 : Dallas, TX +75386 : 32.767268 : -96.777626 : Dallas, TX +75387 : 32.767268 : -96.777626 : Dallas, TX +75388 : 32.767268 : -96.777626 : Dallas, TX +75389 : 32.767268 : -96.777626 : Dallas, TX +75390 : 32.767268 : -96.777626 : Dallas, TX +75391 : 32.767268 : -96.777626 : Dallas, TX +75392 : 32.767268 : -96.777626 : Dallas, TX +75393 : 32.767268 : -96.777626 : Dallas, TX +75394 : 32.767268 : -96.777626 : Dallas, TX +75395 : 32.767268 : -96.777626 : Dallas, TX +75396 : 32.767268 : -96.777626 : Dallas, TX +75397 : 32.767268 : -96.777626 : Dallas, TX +75398 : 32.767268 : -96.777626 : Dallas, TX +75401 : 33.15023 : -96.11289 : Greenville, TX +75402 : 33.082411 : -96.08977 : Greenville, TX +75403 : 33.218505 : -96.048665 : Greenville, TX +75404 : 33.056265 : -96.080973 : Greenville, TX +75407 : 33.14572 : -96.49664 : Princeton, TX +75408 : 33.349316 : -96.548597 : Anna, TX +75409 : 33.356094 : -96.51907 : Anna, TX +75410 : 32.793512 : -95.63182 : Alba, TX +75411 : 33.86751 : -95.60594 : Arthur City, TX +75412 : 33.815996 : -95.14402 : Bagwell, TX +75413 : 33.43515 : -96.16671 : Bailey, TX +75414 : 33.615634 : -96.41899 : Bells, TX +75415 : 33.460447 : -95.75734 : Ben Franklin, TX +75416 : 33.675155 : -95.37293 : Blossom, TX +75417 : 33.462828 : -95.193 : Bogata, TX +75418 : 33.583772 : -96.1818 : Bonham, TX +75420 : 33.052712 : -95.72124 : Brashear, TX +75421 : 33.642542 : -95.69761 : Brookston, TX +75422 : 33.146779 : -95.93998 : Campbell, TX +75423 : 33.291418 : -96.20273 : Celeste, TX +75424 : 33.321604 : -96.39502 : Blue Ridge, TX +75425 : 33.65973 : -95.582906 : Chicota, TX +75426 : 33.626445 : -95.03534 : Clarksville, TX +75428 : 33.25868 : -95.91061 : Commerce, TX +75429 : 33.237722 : -95.90886 : Commerce, TX +75431 : 33.027493 : -95.46605 : Como, TX +75432 : 33.377005 : -95.68573 : Cooper, TX +75433 : 33.13307 : -95.81773 : Cumby, TX +75434 : 33.423626 : -95.3567 : Cunningham, TX +75435 : 33.507909 : -95.31828 : Deport, TX +75436 : 33.670159 : -95.2609 : Detroit, TX +75437 : 33.253911 : -95.47125 : Dike, TX +75438 : 33.595318 : -96.07311 : Dodd City, TX +75439 : 33.573304 : -96.27386 : Ector, TX +75440 : 32.882305 : -95.73842 : Emory, TX +75441 : 33.432974 : -95.65815 : Enloe, TX +75442 : 33.171899 : -96.35096 : Farmersville, TX +75443 : 33.469719 : -96.111103 : Gober, TX +75444 : 32.730279 : -95.56286 : Golden, TX +75446 : 33.589851 : -95.90242 : Honey Grove, TX +75447 : 33.774197 : -96.12045 : Ivanhoe, TX +75448 : 33.31215 : -95.81737 : Klondike, TX +75449 : 33.427504 : -95.95578 : Ladonia, TX +75450 : 33.404332 : -95.52546 : Lake Creek, TX +75451 : 32.971224 : -95.11339 : Leesburg, TX +75452 : 33.385224 : -96.24782 : Leonard, TX +75453 : 32.952736 : -95.94594 : Lone Oak, TX +75454 : 33.277317 : -96.57345 : Melissa, TX +75455 : 33.166739 : -94.9814 : Mount Pleasant, TX +75456 : 33.19045 : -94.967456 : Mount Pleasant, TX +75457 : 33.151104 : -95.21965 : Mount Vernon, TX +75458 : 33.242656 : -96.291572 : Merit, TX +75459 : 33.518979 : -96.63523 : Howe, TX +75460 : 33.660274 : -95.55958 : Paris, TX +75461 : 33.663213 : -95.460797 : Paris, TX +75462 : 33.638587 : -95.48589 : Paris, TX +75468 : 33.536414 : -95.39817 : Pattonville, TX +75469 : 33.434737 : -95.83057 : Pecan Gap, TX +75470 : 33.60355 : -95.81202 : Petty, TX +75471 : 33.041578 : -95.39527 : Pickton, TX +75472 : 32.906194 : -95.87967 : Point, TX +75473 : 33.801663 : -95.50309 : Powderly, TX +75474 : 32.896295 : -96.06999 : Quinlan, TX +75475 : 33.485315 : -96.25525 : Randolph, TX +75476 : 33.695647 : -96.23381 : Ravenna, TX +75477 : 33.543006 : -95.72382 : Roxton, TX +75478 : 33.17329 : -95.36663 : Saltillo, TX +75479 : 33.613097 : -96.34474 : Savoy, TX +75480 : 33.04314 : -95.19302 : Scroggins, TX +75481 : 33.323467 : -95.39168 : Sulphur Bluff, TX +75482 : 33.143752 : -95.60102 : Sulphur Springs, TX +75483 : 33.168606 : -95.585464 : Sulphur Springs, TX +75485 : 33.362227 : -96.46299 : Westminster, TX +75486 : 33.734091 : -95.76203 : Sumner, TX +75487 : 33.346151 : -95.15014 : Talco, TX +75488 : 33.76225 : -96.00418 : Telephone, TX +75489 : 33.521578 : -96.48373 : Tom Bean, TX +75490 : 33.435618 : -96.3324 : Trenton, TX +75491 : 33.494285 : -96.39598 : Whitewright, TX +75492 : 33.566266 : -96.01082 : Windom, TX +75493 : 33.165327 : -95.11279 : Winfield, TX +75494 : 32.922912 : -95.28299 : Winnsboro, TX +75495 : 33.426635 : -96.5637 : Van Alstyne, TX +75496 : 33.350543 : -96.05705 : Wolfe City, TX +75497 : 32.906074 : -95.55779 : Yantis, TX +75499 : 33.602194 : -96.365174 : Savoy, TX +75501 : 33.414708 : -94.08984 : Texarkana, TX +75502 : 33.424125 : -94.055214 : Texarkana, TX +75503 : 33.476844 : -94.09637 : Texarkana, TX +75504 : 33.476552 : -94.39495 : Texarkana, TX +75505 : 33.46238 : -94.0715 : Texarkana, TX +75507 : 33.393447 : -94.340437 : Texarkana, TX +75550 : 33.530829 : -94.90585 : Annona, TX +75551 : 33.118611 : -94.1773 : Atlanta, TX +75554 : 33.563837 : -94.78066 : Avery, TX +75555 : 32.930895 : -94.13542 : Bivins, TX +75556 : 33.142532 : -94.05585 : Bloomburg, TX +75558 : 33.236743 : -94.84359 : Cookville, TX +75559 : 33.515778 : -94.61355 : De Kalb, TX +75560 : 33.189862 : -94.37468 : Douglassville, TX +75561 : 33.480224 : -94.2648 : Hooks, TX +75562 : 32.941359 : -94.25152 : Kildare, TX +75563 : 33.005009 : -94.37603 : Linden, TX +75564 : 32.880182 : -94.27725 : Lodi, TX +75565 : 32.950857 : -94.07429 : McLeod, TX +75566 : 33.157897 : -94.50853 : Marietta, TX +75567 : 33.328596 : -94.31589 : Maud, TX +75568 : 33.206258 : -94.63009 : Naples, TX +75569 : 33.441774 : -94.12531 : Nash, TX +75570 : 33.465282 : -94.41954 : New Boston, TX +75571 : 33.183401 : -94.75227 : Omaha, TX +75572 : 33.210952 : -94.13364 : Queen City, TX +75573 : 33.353249 : -94.25971 : Redwater, TX +75574 : 33.328878 : -94.53657 : Simms, TX +75599 : 33.476552 : -94.39495 : Texarkana, TX +75601 : 32.505248 : -94.73172 : Longview, TX +75602 : 32.474499 : -94.712 : Longview, TX +75603 : 32.396207 : -94.70063 : Longview, TX +75604 : 32.523779 : -94.80692 : Longview, TX +75605 : 32.557684 : -94.74353 : Longview, TX +75606 : 32.369393 : -94.616062 : Longview, TX +75607 : 32.51121 : -94.783493 : Longview, TX +75608 : 32.570051 : -94.848063 : Longview, TX +75615 : 32.51121 : -94.783493 : Longview, TX +75630 : 32.854406 : -94.55859 : Avinger, TX +75631 : 32.237924 : -94.46427 : Beckville, TX +75633 : 32.145212 : -94.31256 : Carthage, TX +75636 : 33.035716 : -94.81589 : Cason, TX +75637 : 32.102729 : -94.493543 : Clayton, TX +75638 : 33.02583 : -94.72481 : Daingerfield, TX +75639 : 32.285877 : -94.1811 : De Berry, TX +75640 : 32.723482 : -94.69544 : Diana, TX +75641 : 32.382771 : -94.57945 : Easton, TX +75642 : 32.386275 : -94.210541 : Elysian Fields, TX +75643 : 32.019931 : -94.37287 : Gary, TX +75644 : 32.727128 : -94.9577 : Gilmer, TX +75645 : 32.690553 : -94.863311 : Gilmer, TX +75647 : 32.531814 : -94.94358 : Gladewater, TX +75650 : 32.507527 : -94.55839 : Hallsville, TX +75651 : 32.6941 : -94.54519 : Harleton, TX +75652 : 32.194938 : -94.75852 : Henderson, TX +75653 : 32.204724 : -94.8845 : Henderson, TX +75654 : 32.104159 : -94.85568 : Henderson, TX +75656 : 32.998759 : -94.61948 : Hughes Springs, TX +75657 : 32.768011 : -94.34908 : Jefferson, TX +75658 : 32.195927 : -94.906515 : Joinerville, TX +75659 : 32.507491 : -94.110636 : Jonesville, TX +75660 : 32.51121 : -94.783493 : Judson, TX +75661 : 32.66797 : -94.16846 : Karnack, TX +75662 : 32.387151 : -94.87439 : Kilgore, TX +75663 : 32.386976 : -94.895098 : Kilgore, TX +75666 : 32.301898 : -94.928795 : Laird Hill, TX +75667 : 31.981458 : -94.85741 : Laneville, TX +75668 : 32.920957 : -94.69722 : Lone Star, TX +75669 : 32.03719 : -94.57688 : Long Branch, TX +75670 : 32.547424 : -94.37958 : Marshall, TX +75671 : 32.522659 : -94.389476 : Marshall, TX +75672 : 32.513986 : -94.30704 : Marshall, TX +75680 : 32.00923 : -94.71766 : Minden, TX +75681 : 31.934633 : -94.68886 : Mount Enterprise, TX +75682 : 32.25416 : -94.932215 : New London, TX +75683 : 32.809766 : -94.70513 : Ore City, TX +75684 : 32.26958 : -94.94935 : Overton, TX +75685 : 32.183774 : -94.308713 : Panola, TX +75686 : 32.97708 : -94.96809 : Pittsburg, TX +75687 : 32.151755 : -94.955432 : Price, TX +75688 : 32.55397 : -94.239351 : Scottsville, TX +75689 : 32.1826 : -94.935456 : Selman City, TX +75691 : 32.312616 : -94.53692 : Tatum, TX +75692 : 32.472069 : -94.09556 : Waskom, TX +75693 : 32.533965 : -94.86062 : White Oak, TX +75694 : 32.653731 : -94.342725 : Woodlawn, TX +75701 : 32.325214 : -95.29467 : Tyler, TX +75702 : 32.360498 : -95.3071 : Tyler, TX +75703 : 32.264365 : -95.31347 : Tyler, TX +75704 : 32.388631 : -95.41373 : Tyler, TX +75705 : 32.364281 : -95.08971 : Tyler, TX +75706 : 32.456565 : -95.33155 : Tyler, TX +75707 : 32.292394 : -95.20749 : Tyler, TX +75708 : 32.40331 : -95.22276 : Tyler, TX +75709 : 32.31265 : -95.39191 : Tyler, TX +75710 : 32.347549 : -95.306528 : Tyler, TX +75711 : 32.539879 : -95.419983 : Tyler, TX +75712 : 32.411237 : -95.289903 : Tyler, TX +75713 : 32.411237 : -95.289903 : Tyler, TX +75750 : 32.254414 : -95.06517 : Arp, TX +75751 : 32.184027 : -95.84625 : Athens, TX +75752 : 32.223828 : -95.785482 : Winona, TX +75754 : 32.412451 : -95.66711 : Ben Wheeler, TX +75755 : 32.649482 : -95.1259 : Big Sandy, TX +75756 : 32.306045 : -95.60507 : Brownsboro, TX +75757 : 32.136787 : -95.3671 : Bullard, TX +75758 : 32.251068 : -95.49667 : Chandler, TX +75759 : 32.034127 : -95.41776 : Cuney, TX +75760 : 31.817889 : -94.8631 : Cushing, TX +75762 : 32.207845 : -95.41859 : Flint, TX +75763 : 32.072339 : -95.50433 : Frankston, TX +75764 : 31.893439 : -95.15272 : Gallatin, TX +75765 : 32.617073 : -95.22445 : Hawkins, TX +75766 : 31.953855 : -95.25281 : Jacksonville, TX +75770 : 32.132651 : -95.64632 : Larue, TX +75771 : 32.522902 : -95.42126 : Lindale, TX +75772 : 31.800846 : -95.300142 : Maydelle, TX +75773 : 32.674657 : -95.46982 : Mineola, TX +75778 : 32.33383 : -95.7102 : Murchison, TX +75779 : 31.794191 : -95.661964 : Neches, TX +75780 : 31.782048 : -95.164021 : New Summerfield, TX +75782 : 32.075703 : -95.59919 : Poynor, TX +75783 : 32.810076 : -95.4355 : Quitman, TX +75784 : 31.883205 : -94.9689 : Reklaw, TX +75785 : 31.79364 : -95.16761 : Rusk, TX +75788 : 31.825527 : -94.91759 : Sacul, TX +75789 : 32.137225 : -95.10105 : Troup, TX +75790 : 32.533765 : -95.63493 : Van, TX +75791 : 32.226082 : -95.21751 : Whitehouse, TX +75792 : 32.476905 : -95.13088 : Winona, TX +75798 : 32.411237 : -95.289903 : Tyler, TX +75799 : 32.411237 : -95.289903 : Tyler, TX +75801 : 31.779481 : -95.63325 : Palestine, TX +75802 : 31.926836 : -95.579561 : Palestine, TX +75803 : 31.760418 : -95.656779 : Palestine, TX +75806 : 33.169075 : -96.904315 : Little Elm, TX +75825 : 31.64775 : -95.082239 : Alto, TX +75831 : 31.453732 : -96.03725 : Buffalo, TX +75832 : 31.794191 : -95.661964 : Cayuga, TX +75833 : 31.27575 : -95.90131 : Centerville, TX +75834 : 31.105786 : -95.138794 : Centralia, TX +75835 : 31.315837 : -95.47393 : Crockett, TX +75838 : 31.476671 : -96.22212 : Donie, TX +75839 : 31.627557 : -95.53225 : Elkhart, TX +75840 : 31.763713 : -96.10808 : Fairfield, TX +75844 : 31.505916 : -95.46315 : Grapeland, TX +75845 : 31.090648 : -95.07826 : Groveton, TX +75846 : 31.346581 : -96.17433 : Jewett, TX +75847 : 31.355453 : -95.15421 : Kennard, TX +75848 : 31.83272 : -96.32126 : Kirvin, TX +75849 : 31.398448 : -95.4737 : Latexo, TX +75850 : 31.134863 : -95.93312 : Leona, TX +75851 : 31.104197 : -95.46434 : Lovelady, TX +75852 : 30.984335 : -95.71669 : Midway, TX +75853 : 31.930882 : -95.82974 : Montalba, TX +75855 : 31.579572 : -95.85303 : Oakwood, TX +75856 : 31.21349 : -95.23475 : Pennington, TX +75858 : 31.369811 : -95.09184 : Ratcliff, TX +75859 : 31.889748 : -96.25435 : Streetman, TX +75860 : 31.625567 : -96.27068 : Teague, TX +75861 : 31.829314 : -95.86383 : Tennessee Colony, TX +75862 : 30.94481 : -95.33298 : Trinity, TX +75865 : 31.105786 : -95.138794 : Woodlake, TX +75875 : 31.806615 : -95.154008 : Rusk, TX +75880 : 31.794191 : -95.661964 : Tennessee Colony, TX +75882 : 31.794191 : -95.661964 : Palestine, TX +75884 : 31.794191 : -95.661964 : Tennessee Colony, TX +75886 : 31.794191 : -95.661964 : Tennessee Colony, TX +75901 : 31.330567 : -94.68667 : Lufkin, TX +75902 : 31.362315 : -94.761103 : Lufkin, TX +75903 : 31.276647 : -94.56759 : Lufkin, TX +75904 : 31.339891 : -94.76295 : Lufkin, TX +75915 : 31.287257 : -94.577084 : Lufkin, TX +75925 : 31.626263 : -95.05495 : Alto, TX +75926 : 31.243006 : -94.96448 : Apple Springs, TX +75928 : 30.680344 : -93.68535 : Bon Wier, TX +75929 : 31.242362 : -94.17675 : Broaddus, TX +75930 : 31.340382 : -94.02062 : Bronson, TX +75931 : 31.109064 : -93.99031 : Brookeland, TX +75932 : 31.067439 : -93.61936 : Burkeville, TX +75933 : 30.580648 : -93.81112 : Call, TX +75934 : 30.907239 : -94.7312 : Camden, TX +75935 : 31.769105 : -94.18997 : Center, TX +75936 : 30.942336 : -94.58376 : Chester, TX +75937 : 31.467506 : -94.37459 : Chireno, TX +75938 : 30.916106 : -94.35108 : Colmesneil, TX +75939 : 30.998982 : -94.7994 : Corrigan, TX +75941 : 31.195633 : -94.77725 : Diboll, TX +75942 : 30.819095 : -94.40497 : Doucette, TX +75943 : 31.654777 : -94.90988 : Douglass, TX +75944 : 31.368872 : -94.40817 : Etoile, TX +75946 : 31.834379 : -94.52629 : Garrison, TX +75947 : 31.373062 : -93.821948 : Geneva, TX +75948 : 31.332569 : -93.75338 : Hemphill, TX +75949 : 31.226939 : -94.5321 : Huntington, TX +75951 : 30.941282 : -94.03455 : Jasper, TX +75954 : 31.95015 : -94.05761 : Joaquin, TX +75956 : 30.670556 : -93.93811 : Kirbyville, TX +75957 : 31.902986 : -94.391148 : Timpson, TX +75958 : 31.534162 : -94.639022 : Martinsville, TX +75959 : 31.511711 : -93.86086 : Milam, TX +75960 : 30.903688 : -94.80916 : Moscow, TX +75961 : 31.626011 : -94.60338 : Nacogdoches, TX +75962 : 31.699494 : -94.607432 : Nacogdoches, TX +75963 : 31.604573 : -94.664127 : Nacogdoches, TX +75964 : 31.61099 : -94.70503 : Nacogdoches, TX +75965 : 31.649582 : -94.638278 : Nacogdoches, TX +75966 : 30.831678 : -93.74869 : Newton, TX +75968 : 31.234368 : -93.94399 : Pineland, TX +75969 : 31.436494 : -94.87815 : Pollok, TX +75972 : 31.514959 : -94.16169 : San Augustine, TX +75973 : 31.735326 : -93.90706 : Shelbyville, TX +75974 : 31.943273 : -94.24291 : Tenaha, TX +75975 : 31.903614 : -94.40775 : Timpson, TX +75976 : 31.506076 : -94.94939 : Wells, TX +75977 : 31.038417 : -93.80057 : Wiergate, TX +75978 : 31.502292 : -94.52803 : Woden, TX +75979 : 30.768601 : -94.40671 : Woodville, TX +75980 : 31.154673 : -94.363 : Zavalla, TX +75990 : 30.792674 : -94.354476 : Woodville, TX +76001 : 32.634203 : -97.14403 : Arlington, TX +76002 : 32.632349 : -97.0963 : Arlington, TX +76003 : 32.741685 : -97.225324 : Arlington, TX +76004 : 32.771419 : -97.291484 : Arlington, TX +76005 : 32.771419 : -97.291484 : Arlington, TX +76006 : 32.778047 : -97.08088 : Arlington, TX +76007 : 32.771419 : -97.291484 : Arlington, TX +76008 : 32.690922 : -97.64013 : Aledo, TX +76009 : 32.408183 : -97.20956 : Alvarado, TX +76010 : 32.723382 : -97.08498 : Arlington, TX +76011 : 32.753672 : -97.08706 : Arlington, TX +76012 : 32.752048 : -97.13514 : Arlington, TX +76013 : 32.721632 : -97.14698 : Arlington, TX +76014 : 32.694666 : -97.08748 : Arlington, TX +76015 : 32.691393 : -97.13546 : Arlington, TX +76016 : 32.686863 : -97.19234 : Arlington, TX +76017 : 32.659277 : -97.16435 : Arlington, TX +76018 : 32.65392 : -97.08724 : Arlington, TX +76019 : 32.771419 : -97.291484 : Arlington, TX +76020 : 32.905693 : -97.54845 : Azle, TX +76021 : 32.851678 : -97.13849 : Bedford, TX +76022 : 32.831228 : -97.14593 : Bedford, TX +76023 : 33.068301 : -97.59099 : Boyd, TX +76025 : 33.104374 : -96.766109 : Plano, TX +76028 : 32.535841 : -97.30681 : Burleson, TX +76031 : 32.343115 : -97.40081 : Cleburne, TX +76033 : 32.350907 : -97.410254 : Cleburne, TX +76034 : 32.885062 : -97.14923 : Colleyville, TX +76035 : 32.546387 : -97.64633 : Cresson, TX +76036 : 32.573816 : -97.38491 : Crowley, TX +76039 : 32.858727 : -97.08453 : Euless, TX +76040 : 32.826172 : -97.09721 : Euless, TX +76041 : 32.244026 : -96.86701 : Forreston, TX +76043 : 32.228184 : -97.77198 : Glen Rose, TX +76044 : 32.442679 : -97.52595 : Godley, TX +76048 : 32.424695 : -97.78894 : Granbury, TX +76049 : 32.440376 : -97.72002 : Granbury, TX +76050 : 32.27442 : -97.19282 : Grandview, TX +76051 : 32.93195 : -97.08498 : Grapevine, TX +76052 : 32.972998 : -97.35592 : Haslet, TX +76053 : 32.821378 : -97.181 : Hurst, TX +76054 : 32.858398 : -97.17681 : Hurst, TX +76055 : 32.157903 : -97.15014 : Itasca, TX +76058 : 32.461964 : -97.40774 : Joshua, TX +76059 : 32.39286 : -97.3275 : Keene, TX +76060 : 32.645257 : -97.21458 : Kennedale, TX +76061 : 32.502674 : -97.16347 : Lillian, TX +76063 : 32.57701 : -97.13485 : Mansfield, TX +76064 : 32.307456 : -97.02761 : Maypearl, TX +76065 : 32.484094 : -96.98672 : Midlothian, TX +76066 : 32.715412 : -98.00165 : Millsap, TX +76067 : 32.810275 : -98.10707 : Mineral Wells, TX +76068 : 32.759769 : -98.316175 : Mineral Wells, TX +76070 : 32.259829 : -97.65485 : Nemo, TX +76071 : 33.003717 : -97.48974 : Newark, TX +76073 : 33.122273 : -97.71691 : Paradise, TX +76077 : 32.28122 : -97.70927 : Rainbow, TX +76078 : 33.072675 : -97.473 : Rhome, TX +76082 : 32.964932 : -97.69803 : Springtown, TX +76084 : 32.434322 : -97.09988 : Venus, TX +76085 : 32.847183 : -97.6986 : Weatherford, TX +76086 : 32.77516 : -97.77987 : Weatherford, TX +76087 : 32.703008 : -97.74814 : Weatherford, TX +76088 : 32.842085 : -97.90477 : Weatherford, TX +76092 : 32.946678 : -97.14523 : Southlake, TX +76093 : 32.220267 : -97.39036 : Rio Vista, TX +76094 : 32.771419 : -97.291484 : Arlington, TX +76095 : 32.771419 : -97.291484 : Bedford, TX +76096 : 32.771419 : -97.291484 : Arlington, TX +76097 : 32.524393 : -97.2609 : Burleson, TX +76098 : 32.895716 : -97.563622 : Azle, TX +76099 : 32.771419 : -97.291484 : Grapevine, TX +76101 : 32.771419 : -97.291484 : Fort Worth, TX +76102 : 32.75388 : -97.32987 : Fort Worth, TX +76103 : 32.745681 : -97.26563 : Fort Worth, TX +76104 : 32.730265 : -97.32002 : Fort Worth, TX +76105 : 32.724831 : -97.26992 : Fort Worth, TX +76106 : 32.798429 : -97.354 : Fort Worth, TX +76107 : 32.738481 : -97.38424 : Fort Worth, TX +76108 : 32.762563 : -97.48079 : Fort Worth, TX +76109 : 32.699565 : -97.37808 : Fort Worth, TX +76110 : 32.706331 : -97.33787 : Fort Worth, TX +76111 : 32.778479 : -97.30099 : Fort Worth, TX +76112 : 32.744032 : -97.21957 : Fort Worth, TX +76113 : 32.771419 : -97.291484 : Fort Worth, TX +76114 : 32.781329 : -97.40099 : Fort Worth, TX +76115 : 32.680333 : -97.33579 : Fort Worth, TX +76116 : 32.72228 : -97.44409 : Fort Worth, TX +76117 : 32.805379 : -97.27036 : Haltom City, TX +76118 : 32.80533 : -97.22264 : Fort Worth, TX +76119 : 32.691033 : -97.26479 : Fort Worth, TX +76120 : 32.762631 : -97.17527 : Fort Worth, TX +76121 : 32.771419 : -97.291484 : Fort Worth, TX +76122 : 32.771419 : -97.291484 : Fort Worth, TX +76123 : 32.623807 : -97.37548 : Fort Worth, TX +76124 : 32.771419 : -97.291484 : Fort Worth, TX +76126 : 32.649476 : -97.49124 : Fort Worth, TX +76127 : 32.772063 : -97.42165 : Naval Air Station/ Jrb, TX +76129 : 32.771419 : -97.291484 : Fort Worth, TX +76130 : 32.771419 : -97.291484 : Fort Worth, TX +76131 : 32.873017 : -97.34622 : Fort Worth, TX +76132 : 32.670345 : -97.4143 : Fort Worth, TX +76133 : 32.655401 : -97.37765 : Fort Worth, TX +76134 : 32.649855 : -97.33358 : Fort Worth, TX +76135 : 32.823629 : -97.45167 : Fort Worth, TX +76136 : 32.771419 : -97.291484 : Fort Worth, TX +76137 : 32.86814 : -97.28566 : Fort Worth, TX +76140 : 32.630268 : -97.27102 : Fort Worth, TX +76147 : 32.771419 : -97.291484 : Fort Worth, TX +76148 : 32.869384 : -97.25123 : Fort Worth, TX +76150 : 32.771419 : -97.291484 : Fort Worth, TX +76153 : 32.667134 : -97.348895 : Fort Worth, TX +76155 : 32.830932 : -97.04778 : Fort Worth, TX +76161 : 32.771419 : -97.291484 : Fort Worth, TX +76162 : 32.771419 : -97.291484 : Fort Worth, TX +76163 : 32.771419 : -97.291484 : Fort Worth, TX +76164 : 32.771419 : -97.291484 : Fort Worth, TX +76177 : 32.949819 : -97.31406 : Fort Worth, TX +76178 : 32.771419 : -97.291484 : Fort Worth, TX +76179 : 32.876475 : -97.41249 : Fort Worth, TX +76180 : 32.855666 : -97.21818 : North Richland Hills, TX +76181 : 32.771419 : -97.291484 : Fort Worth, TX +76182 : 32.771419 : -97.291484 : North Richland Hills, TX +76185 : 32.771419 : -97.291484 : Fort Worth, TX +76191 : 32.771419 : -97.291484 : Fort Worth, TX +76192 : 32.771419 : -97.291484 : Fort Worth, TX +76193 : 32.771419 : -97.291484 : Fort Worth, TX +76195 : 32.771419 : -97.291484 : Fort Worth, TX +76196 : 32.771419 : -97.291484 : Fort Worth, TX +76197 : 32.771419 : -97.291484 : Fort Worth, TX +76198 : 32.771419 : -97.291484 : Fort Worth, TX +76199 : 32.771419 : -97.291484 : Fort Worth, TX +76201 : 33.226598 : -97.13061 : Denton, TX +76202 : 33.225523 : -97.108546 : Denton, TX +76203 : 33.246457 : -97.127027 : Denton, TX +76204 : 33.20743 : -97.116282 : Denton, TX +76205 : 33.16156 : -97.10376 : Denton, TX +76206 : 33.169379 : -97.150558 : Denton, TX +76207 : 33.236827 : -97.16941 : Denton, TX +76208 : 33.198442 : -97.06078 : Denton, TX +76209 : 33.23552 : -97.112743 : Denton, TX +76210 : 33.143186 : -97.088337 : Corinth, TX +76225 : 33.360331 : -97.69158 : Alvord, TX +76226 : 33.105309 : -97.16294 : Argyle, TX +76227 : 33.274761 : -96.99457 : Aubrey, TX +76228 : 33.586753 : -98.07694 : Bellevue, TX +76230 : 33.54007 : -97.88575 : Bowie, TX +76233 : 33.542765 : -96.89419 : Collinsville, TX +76234 : 33.263039 : -97.55657 : Decatur, TX +76238 : 33.491311 : -97.39136 : Era, TX +76239 : 33.530807 : -97.54944 : Forestburg, TX +76240 : 33.627942 : -97.13636 : Gainesville, TX +76241 : 33.610384 : -97.03692 : Gainesville, TX +76244 : 32.771419 : -97.291484 : Keller, TX +76245 : 33.842878 : -96.82348 : Gordonville, TX +76246 : 33.41798 : -97.46457 : Greenwood, TX +76247 : 33.08704 : -97.30384 : Justin, TX +76248 : 32.92704 : -97.2506 : Keller, TX +76249 : 33.270036 : -97.24859 : Krum, TX +76250 : 33.62109 : -97.20652 : Lindsay, TX +76251 : 33.660084 : -97.71727 : Montague, TX +76252 : 33.661889 : -97.38029 : Muenster, TX +76253 : 33.624401 : -97.31704 : Myra, TX +76255 : 33.824724 : -97.69688 : Nocona, TX +76258 : 33.385645 : -96.95213 : Pilot Point, TX +76259 : 33.187644 : -97.29676 : Ponder, TX +76261 : 33.817816 : -97.94159 : Ringgold, TX +76262 : 33.000177 : -97.21871 : Roanoke, TX +76263 : 33.487842 : -97.421155 : Rosston, TX +76264 : 33.748414 : -96.83792 : Sadler, TX +76265 : 33.701692 : -97.53029 : Saint Jo, TX +76266 : 33.358871 : -97.18944 : Sanger, TX +76267 : 33.378039 : -97.39219 : Slidell, TX +76268 : 33.621928 : -96.7649 : Southmayd, TX +76270 : 33.446897 : -97.77217 : Sunset, TX +76271 : 33.469076 : -96.91632 : Tioga, TX +76272 : 33.482548 : -97.12259 : Valley View, TX +76273 : 33.705904 : -96.91786 : Whitesboro, TX +76299 : 33.20743 : -97.116282 : Roanoke, TX +76301 : 33.916497 : -98.47132 : Wichita Falls, TX +76302 : 33.85379 : -98.4801 : Wichita Falls, TX +76303 : 33.897073 : -98.459792 : Wichita Falls, TX +76304 : 33.931024 : -98.499077 : Wichita Falls, TX +76305 : 33.996515 : -98.51781 : Wichita Falls, TX +76306 : 33.942496 : -98.51923 : Wichita Falls, TX +76307 : 33.877746 : -98.494595 : Wichita Falls, TX +76308 : 33.859798 : -98.54064 : Wichita Falls, TX +76309 : 33.892447 : -98.53215 : Wichita Falls, TX +76310 : 33.841948 : -98.5624 : Wichita Falls, TX +76311 : 33.970725 : -98.49127 : Sheppard AFB, TX +76345 : 32.38253 : -98.404816 : Fort Worth, TX +76351 : 33.574426 : -98.63462 : Archer City, TX +76352 : 33.811665 : -98.184762 : Bluegrove, TX +76354 : 34.085289 : -98.58881 : Burkburnett, TX +76356 : 33.897998 : -97.936166 : Terral, OK +76357 : 34.06722 : -98.18119 : Byers, TX +76360 : 33.963228 : -98.97235 : Electra, TX +76363 : 33.481208 : -99.51447 : Goree, TX +76364 : 34.081642 : -99.062 : Harrold, TX +76365 : 33.761291 : -98.19145 : Henrietta, TX +76366 : 33.760814 : -98.72148 : Holliday, TX +76367 : 33.958681 : -98.68492 : Iowa Park, TX +76369 : 34.023386 : -98.687748 : Kamay, TX +76370 : 33.445341 : -98.92106 : Megargel, TX +76371 : 33.463284 : -99.63839 : Munday, TX +76372 : 33.224562 : -98.86043 : Newcastle, TX +76373 : 34.147838 : -99.11818 : Oklaunion, TX +76374 : 33.364868 : -98.75201 : Olney, TX +76377 : 34.011464 : -98.22961 : Petrolia, TX +76379 : 33.646685 : -98.48719 : Scotland, TX +76380 : 33.594956 : -99.28506 : Seymour, TX +76384 : 34.142094 : -99.29649 : Vernon, TX +76385 : 34.146356 : -99.214088 : Vernon, TX +76388 : 33.336436 : -99.64257 : Weinert, TX +76389 : 33.554607 : -98.42076 : Windthorst, TX +76401 : 32.242816 : -98.21058 : Stephenville, TX +76402 : 32.215275 : -98.207997 : Stephenville, TX +76420 : 33.036724 : -98.595422 : Albany, TX +76424 : 32.761058 : -98.92225 : Breckenridge, TX +76426 : 33.197313 : -97.80932 : Bridgeport, TX +76427 : 33.165414 : -98.38244 : Bryson, TX +76429 : 32.74154 : -98.67089 : Caddo, TX +76430 : 32.742591 : -99.27519 : Albany, TX +76431 : 33.293652 : -97.8597 : Chico, TX +76432 : 31.82741 : -98.80286 : Blanket, TX +76433 : 32.318616 : -98.03345 : Bluff Dale, TX +76435 : 32.236449 : -98.83268 : Carbon, TX +76436 : 31.917085 : -98.17418 : Carlton, TX +76437 : 32.39492 : -98.99444 : Cisco, TX +76439 : 32.632495 : -97.957483 : Dennis, TX +76442 : 31.906683 : -98.60618 : Comanche, TX +76443 : 32.103546 : -99.17874 : Cross Plains, TX +76444 : 32.122804 : -98.55799 : De Leon, TX +76445 : 32.298841 : -98.55194 : Desdemona, TX +76446 : 32.07881 : -98.35073 : Dublin, TX +76448 : 32.398681 : -98.7959 : Eastland, TX +76449 : 32.908714 : -98.35727 : Graford, TX +76450 : 33.081863 : -98.60091 : Graham, TX +76452 : 31.758351 : -98.40613 : Energy, TX +76453 : 32.572618 : -98.36399 : Gordon, TX +76454 : 32.214932 : -98.68404 : Gorman, TX +76455 : 31.833414 : -98.37248 : Gustine, TX +76457 : 31.944207 : -98.02763 : Hico, TX +76458 : 33.200265 : -98.15778 : Jacksboro, TX +76459 : 33.277727 : -98.39461 : Jermyn, TX +76460 : 33.332336 : -98.48413 : Loving, TX +76461 : 32.221433 : -98.342798 : Lingleville, TX +76462 : 32.517753 : -98.03379 : Lipan, TX +76463 : 32.493233 : -98.41805 : Mingus, TX +76464 : 32.57665 : -99.18511 : Moran, TX +76465 : 32.215275 : -98.207997 : Morgan Mill, TX +76466 : 32.428128 : -98.74853 : Olden, TX +76467 : 32.341365 : -97.932083 : Paluxy, TX +76468 : 31.989197 : -98.42529 : Proctor, TX +76469 : 32.37338 : -99.19762 : Putnam, TX +76470 : 32.497298 : -98.67402 : Ranger, TX +76471 : 32.105459 : -98.96537 : Rising Star, TX +76472 : 32.617128 : -98.17476 : Santo, TX +76474 : 31.963873 : -98.78317 : Sidney, TX +76475 : 32.628147 : -98.48517 : Strawn, TX +76476 : 32.387648 : -97.93959 : Tolar, TX +76481 : 32.970869 : -98.71204 : South Bend, TX +76483 : 33.155666 : -99.2174 : Throckmorton, TX +76484 : 32.722689 : -98.33271 : Palo Pinto, TX +76485 : 32.779315 : -97.805502 : Peaster, TX +76486 : 33.024726 : -98.05788 : Perrin, TX +76487 : 33.009411 : -97.89968 : Poolville, TX +76490 : 32.95802 : -98.01942 : Whitt, TX +76491 : 33.029698 : -99.03622 : Woodson, TX +76501 : 31.093215 : -97.31086 : Temple, TX +76502 : 31.086483 : -97.40076 : Temple, TX +76503 : 31.053986 : -97.320306 : Temple, TX +76504 : 31.09954 : -97.35766 : Temple, TX +76505 : 31.036287 : -97.492017 : Temple, TX +76508 : 31.036287 : -97.492017 : Temple, TX +76511 : 30.798697 : -97.42363 : Bartlett, TX +76513 : 31.073329 : -97.48642 : Belton, TX +76518 : 30.851275 : -97.13837 : Buckholts, TX +76519 : 31.002164 : -97.0358 : Burlington, TX +76520 : 30.851922 : -96.96323 : Cameron, TX +76522 : 31.131076 : -97.91666 : Copperas Cove, TX +76523 : 30.785114 : -97.28058 : Davilla, TX +76524 : 31.279614 : -97.22336 : Eddy, TX +76525 : 31.485242 : -98.19084 : Evant, TX +76526 : 31.295568 : -97.582152 : Flat, TX +76527 : 30.833293 : -97.8049 : Florence, TX +76528 : 31.43211 : -97.72602 : Gatesville, TX +76530 : 30.715207 : -97.43449 : Granger, TX +76531 : 31.696154 : -98.14834 : Hamilton, TX +76533 : 31.049621 : -97.493616 : Heidenheimer, TX +76534 : 30.883556 : -97.396 : Holland, TX +76537 : 30.808903 : -97.59923 : Jarrell, TX +76538 : 31.629515 : -97.90249 : Jonesboro, TX +76539 : 31.071352 : -97.97615 : Kempner, TX +76540 : 31.085833 : -97.357099 : Killeen, TX +76541 : 31.117874 : -97.72924 : Killeen, TX +76542 : 31.027003 : -97.76717 : Killeen, TX +76543 : 31.113828 : -97.69246 : Killeen, TX +76544 : 31.148447 : -97.80918 : Killeen, TX +76545 : 31.036287 : -97.492017 : Killeen, TX +76546 : 31.036287 : -97.492017 : Killeen, TX +76547 : 31.036287 : -97.492017 : Killeen, TX +76548 : 31.068459 : -97.65552 : Harker Heights, TX +76549 : 31.084108 : -97.79149 : Killeen, TX +76550 : 31.06639 : -98.19192 : Lampasas, TX +76552 : 31.351234 : -97.548468 : Leon Junction, TX +76554 : 30.985136 : -97.35508 : Little River, TX +76555 : 30.784169 : -96.96376 : Maysfield, TX +76556 : 30.702352 : -96.85039 : Milano, TX +76557 : 31.29697 : -97.38491 : Moody, TX +76558 : 31.351386 : -97.644352 : Mound, TX +76559 : 31.081777 : -97.6138 : Nolanville, TX +76561 : 31.430323 : -97.52946 : Oglesby, TX +76564 : 31.036287 : -97.492017 : Pendleton, TX +76565 : 31.650023 : -98.36186 : Pottsville, TX +76566 : 31.506687 : -97.98997 : Purmela, TX +76567 : 30.646291 : -97.01149 : Rockdale, TX +76569 : 30.932552 : -97.22374 : Rogers, TX +76570 : 31.071723 : -96.96229 : Rosebud, TX +76571 : 30.955509 : -97.56503 : Salado, TX +76573 : 30.805512 : -97.470456 : Schwertner, TX +76574 : 30.574821 : -97.40948 : Taylor, TX +76576 : 30.946345 : -97.535883 : Salado, TX +76577 : 30.611416 : -97.18458 : Thorndale, TX +76578 : 30.55063 : -97.24963 : Thrall, TX +76579 : 31.212196 : -97.26563 : Troy, TX +76596 : 31.390196 : -97.799309 : Gatesville, TX +76597 : 31.390196 : -97.799309 : Gatesville, TX +76598 : 31.390196 : -97.799309 : Gatesville, TX +76599 : 31.470598 : -97.734728 : Gatesville, TX +76607 : 32.127507 : -96.947689 : Milford, TX +76618 : 31.930849 : -96.429154 : Richland, TX +76621 : 31.884263 : -97.08385 : Abbott, TX +76622 : 31.824495 : -97.23306 : Aquilla, TX +76623 : 32.221421 : -96.7832 : Avalon, TX +76624 : 31.661554 : -96.95451 : Axtell, TX +76626 : 32.098474 : -96.71501 : Blooming Grove, TX +76627 : 32.122106 : -97.41864 : Blum, TX +76628 : 32.045029 : -96.96601 : Brandon, TX +76629 : 31.160528 : -96.6778 : Bremond, TX +76630 : 31.337382 : -97.22762 : Bruceville, TX +76631 : 31.978157 : -96.9725 : Bynum, TX +76632 : 31.287625 : -97.06076 : Chilton, TX +76633 : 31.669085 : -97.3201 : China Spring, TX +76634 : 31.798454 : -97.52516 : Clifton, TX +76635 : 31.734571 : -96.66388 : Coolidge, TX +76636 : 32.177765 : -97.27284 : Covington, TX +76637 : 31.771383 : -97.82298 : Cranfills Gap, TX +76638 : 31.555885 : -97.41024 : Crawford, TX +76639 : 31.881324 : -96.70164 : Dawson, TX +76640 : 31.686152 : -97.08602 : Elm Mott, TX +76641 : 32.044273 : -96.78624 : Frost, TX +76642 : 31.510726 : -96.51529 : Groesbeck, TX +76643 : 31.453789 : -97.19502 : Hewitt, TX +76644 : 31.897381 : -97.64097 : Laguna Park, TX +76645 : 32.015496 : -97.12263 : Hillsboro, TX +76648 : 31.84121 : -96.80817 : Hubbard, TX +76649 : 32.001365 : -97.88196 : Iredell, TX +76650 : 31.987167 : -97.108113 : Irene, TX +76651 : 32.175783 : -96.88018 : Italy, TX +76652 : 32.109599 : -97.54276 : Kopperl, TX +76653 : 31.304634 : -96.61211 : Kosse, TX +76654 : 31.553646 : -97.203166 : Leroy, TX +76655 : 31.393062 : -97.16178 : Lorena, TX +76656 : 31.185062 : -97.04389 : Lott, TX +76657 : 31.416926 : -97.40095 : McGregor, TX +76660 : 31.928342 : -96.88213 : Malone, TX +76661 : 31.310649 : -96.87859 : Marlin, TX +76664 : 31.549368 : -96.8233 : Mart, TX +76665 : 31.922473 : -97.69159 : Meridian, TX +76666 : 32.046241 : -96.90003 : Mertens, TX +76667 : 31.669823 : -96.48721 : Mexia, TX +76670 : 32.111683 : -96.97377 : Milford, TX +76671 : 32.011671 : -97.5324 : Morgan, TX +76673 : 31.74658 : -96.89776 : Mount Calm, TX +76675 : 31.416468 : -96.81813 : Otto, TX +76676 : 31.861594 : -96.93466 : Penelope, TX +76677 : 31.254242 : -96.937574 : Perry, TX +76678 : 31.652858 : -96.78857 : Prairie Hill, TX +76679 : 31.949312 : -96.61514 : Purdon, TX +76680 : 31.190291 : -96.81034 : Reagan, TX +76681 : 31.90869 : -96.40744 : Richland, TX +76682 : 31.475763 : -96.9179 : Riesel, TX +76683 : 31.503892 : -97.179773 : Riesel, TX +76684 : 31.717293 : -97.118754 : Ross, TX +76685 : 31.35797 : -97.02091 : Satin, TX +76686 : 31.752538 : -96.54327 : Tehuacana, TX +76687 : 31.376261 : -96.49614 : Thornton, TX +76689 : 31.662435 : -97.50214 : Valley Mills, TX +76690 : 32.078488 : -97.76708 : Walnut Springs, TX +76691 : 31.783019 : -97.07945 : West, TX +76692 : 31.975949 : -97.35499 : Whitney, TX +76693 : 31.787449 : -96.44885 : Wortham, TX +76701 : 31.551955 : -97.13833 : Waco, TX +76702 : 31.547516 : -97.14433 : Waco, TX +76703 : 31.553646 : -97.203166 : Waco, TX +76704 : 31.571266 : -97.12201 : Waco, TX +76705 : 31.609834 : -97.08821 : Waco, TX +76706 : 31.514267 : -97.11807 : Waco, TX +76707 : 31.552266 : -97.15957 : Waco, TX +76708 : 31.584132 : -97.18558 : Waco, TX +76710 : 31.535916 : -97.18588 : Waco, TX +76711 : 31.520296 : -97.15099 : Waco, TX +76712 : 31.514067 : -97.23546 : Woodway, TX +76714 : 31.553646 : -97.203166 : Waco, TX +76715 : 31.553646 : -97.203166 : Waco, TX +76716 : 31.553646 : -97.203166 : Waco, TX +76795 : 31.553646 : -97.203166 : Waco, TX +76797 : 31.553646 : -97.203166 : Waco, TX +76798 : 31.547466 : -97.11997 : Waco, TX +76799 : 31.541116 : -97.16148 : Waco, TX +76801 : 31.73003 : -99.00605 : Brownwood, TX +76802 : 31.747887 : -98.93928 : Early, TX +76803 : 31.763882 : -98.936021 : Brownwood, TX +76804 : 31.77419 : -99.09213 : Brownwood, TX +76820 : 30.720372 : -99.100089 : Art, TX +76821 : 31.754011 : -99.93695 : Ballinger, TX +76823 : 31.714347 : -99.14462 : Bangs, TX +76824 : 31.086845 : -98.51817 : Bend, TX +76825 : 31.121411 : -99.3407 : Brady, TX +76827 : 31.542459 : -99.13604 : Brookesmith, TX +76828 : 32.023828 : -99.23597 : Burkett, TX +76831 : 30.776619 : -98.95072 : Castell, TX +76832 : 30.98609 : -98.67201 : Cherokee, TX +76834 : 31.847973 : -99.45514 : Coleman, TX +76836 : 31.217152 : -99.347156 : Doole, TX +76837 : 31.201871 : -99.90601 : Eden, TX +76841 : 30.834326 : -100.09843 : Fort McKavett, TX +76842 : 30.92753 : -99.08975 : Fredonia, TX +76844 : 31.460782 : -98.52618 : Goldthwaite, TX +76845 : 31.547652 : -99.47679 : Gouldbusk, TX +76848 : 30.847791 : -99.52617 : Hext, TX +76849 : 30.478782 : -99.77444 : Junction, TX +76852 : 31.404745 : -99.49265 : Lohn, TX +76853 : 31.238292 : -98.40241 : Lometa, TX +76854 : 30.646698 : -99.54107 : London, TX +76855 : 31.333614 : -99.85837 : Lowake, TX +76856 : 30.75159 : -99.23238 : Mason, TX +76857 : 31.917862 : -98.95325 : May, TX +76858 : 31.230813 : -99.62583 : Melvin, TX +76859 : 30.873091 : -99.8296 : Menard, TX +76861 : 31.58901 : -100.1911 : Miles, TX +76862 : 31.445119 : -99.70831 : Millersview, TX +76864 : 31.561427 : -98.73632 : Mullin, TX +76865 : 31.849628 : -100.15332 : Norton, TX +76866 : 31.472654 : -99.92215 : Paint Rock, TX +76867 : 31.217152 : -99.347156 : Pear Valley, TX +76869 : 30.909853 : -98.98395 : Pontotoc, TX +76870 : 31.651485 : -98.50831 : Priddy, TX +76871 : 31.292292 : -98.96012 : Richland Springs, TX +76872 : 31.314477 : -99.17492 : Rochelle, TX +76873 : 31.51161 : -99.37166 : Rockwood, TX +76874 : 30.480128 : -100.1175 : Roosevelt, TX +76875 : 31.611317 : -100.033 : Rowena, TX +76877 : 31.190826 : -98.74134 : San Saba, TX +76878 : 31.722813 : -99.2959 : Santa Anna, TX +76880 : 31.477095 : -98.630919 : Star, TX +76882 : 31.801928 : -99.68057 : Talpa, TX +76883 : 29.956952 : -100.227509 : Telegraph, TX +76884 : 31.753561 : -99.54774 : Valera, TX +76885 : 30.904481 : -98.79242 : Valley Spring, TX +76886 : 31.349348 : -100.494912 : Veribest, TX +76887 : 30.973049 : -99.17091 : Voca, TX +76888 : 31.589203 : -99.62601 : Voss, TX +76890 : 31.685153 : -98.77741 : Zephyr, TX +76901 : 31.474132 : -100.5198 : San Angelo, TX +76902 : 31.39577 : -100.68959 : San Angelo, TX +76903 : 31.468911 : -100.4387 : San Angelo, TX +76904 : 31.344515 : -100.47217 : San Angelo, TX +76905 : 31.515684 : -100.34896 : San Angelo, TX +76906 : 31.372754 : -100.495114 : San Angelo, TX +76908 : 31.39577 : -100.68959 : Goodfellow AFB, TX +76909 : 31.39577 : -100.68959 : San Angelo, TX +76930 : 31.148007 : -101.18632 : Barnhart, TX +76932 : 31.304669 : -101.50841 : Big Lake, TX +76933 : 31.887436 : -100.28655 : Bronte, TX +76934 : 31.603027 : -100.65431 : Carlsbad, TX +76935 : 31.088429 : -100.41072 : Christoval, TX +76936 : 30.860483 : -100.53988 : Eldorado, TX +76937 : 31.377623 : -100.10134 : Eola, TX +76939 : 31.250101 : -100.592015 : Knickerbocker, TX +76940 : 31.45195 : -100.12886 : Mereta, TX +76941 : 31.330315 : -100.93381 : Mertzon, TX +76943 : 30.620199 : -101.24517 : Ozona, TX +76945 : 31.890079 : -100.5669 : Robert Lee, TX +76949 : 32.047723 : -100.69452 : Silver, TX +76950 : 30.453299 : -100.56983 : Sonora, TX +76951 : 31.818347 : -101.0455 : Sterling City, TX +76953 : 31.716571 : -100.35906 : Tennyson, TX +76955 : 31.305402 : -100.12871 : Vancourt, TX +76957 : 31.359844 : -100.206705 : Wall, TX +76958 : 31.663529 : -100.71789 : Water Valley, TX +77000 : 29.711257 : -95.304936 : Houston, TX +77001 : 29.813142 : -95.309789 : Houston, TX +77002 : 29.755578 : -95.36531 : Houston, TX +77003 : 29.749278 : -95.34741 : Houston, TX +77004 : 29.728779 : -95.3657 : Houston, TX +77005 : 29.717529 : -95.42821 : Houston, TX +77006 : 29.741878 : -95.38944 : Houston, TX +77007 : 29.772627 : -95.40319 : Houston, TX +77008 : 29.798777 : -95.40951 : Houston, TX +77009 : 29.79326 : -95.36735 : Houston, TX +77010 : 29.754728 : -95.36216 : Houston, TX +77011 : 29.742378 : -95.30726 : Houston, TX +77012 : 29.719778 : -95.27906 : Houston, TX +77013 : 29.78146 : -95.24289 : Houston, TX +77014 : 29.979063 : -95.47294 : Houston, TX +77015 : 29.778526 : -95.18118 : Houston, TX +77016 : 29.857007 : -95.30886 : Houston, TX +77017 : 29.687829 : -95.25478 : Houston, TX +77018 : 29.825476 : -95.42619 : Houston, TX +77019 : 29.752528 : -95.39923 : Houston, TX +77020 : 29.775927 : -95.31836 : Houston, TX +77021 : 29.695879 : -95.3573 : Houston, TX +77022 : 29.825176 : -95.37798 : Houston, TX +77023 : 29.725961 : -95.3227 : Houston, TX +77024 : 29.773994 : -95.51771 : Houston, TX +77025 : 29.69023 : -95.43474 : Houston, TX +77026 : 29.79437 : -95.33395 : Houston, TX +77027 : 29.739029 : -95.44364 : Houston, TX +77028 : 29.827315 : -95.28631 : Houston, TX +77029 : 29.760794 : -95.26043 : Houston, TX +77030 : 29.704584 : -95.40466 : Houston, TX +77031 : 29.654132 : -95.54311 : Houston, TX +77032 : 29.944922 : -95.34152 : Houston, TX +77033 : 29.66913 : -95.33834 : Houston, TX +77034 : 29.63643 : -95.21789 : Houston, TX +77035 : 29.654108 : -95.47692 : Houston, TX +77036 : 29.70053 : -95.53514 : Houston, TX +77037 : 29.885451 : -95.39552 : Houston, TX +77038 : 29.917814 : -95.44138 : Houston, TX +77039 : 29.909123 : -95.33683 : Houston, TX +77040 : 29.878345 : -95.53337 : Houston, TX +77041 : 29.85873 : -95.57243 : Houston, TX +77042 : 29.741565 : -95.55996 : Houston, TX +77043 : 29.802473 : -95.5618 : Houston, TX +77044 : 29.88277 : -95.16782 : Houston, TX +77045 : 29.629111 : -95.43841 : Houston, TX +77046 : 29.733181 : -95.43131 : Houston, TX +77047 : 29.616182 : -95.37767 : Houston, TX +77048 : 29.633081 : -95.33761 : Houston, TX +77049 : 29.832668 : -95.1742 : Houston, TX +77050 : 29.896156 : -95.28687 : Houston, TX +77051 : 29.66543 : -95.36871 : Houston, TX +77052 : 29.676829 : -95.177587 : Houston, TX +77053 : 29.596666 : -95.45981 : Houston, TX +77054 : 29.683865 : -95.39772 : Houston, TX +77055 : 29.798877 : -95.49629 : Houston, TX +77056 : 29.747328 : -95.46931 : Houston, TX +77057 : 29.745129 : -95.49131 : Houston, TX +77058 : 29.55283 : -95.10265 : Houston, TX +77059 : 29.601776 : -95.11734 : Houston, TX +77060 : 29.933367 : -95.39916 : Houston, TX +77061 : 29.66028 : -95.28446 : Houston, TX +77062 : 29.57493 : -95.13238 : Houston, TX +77063 : 29.734379 : -95.52269 : Houston, TX +77064 : 29.923638 : -95.55919 : Houston, TX +77065 : 29.927675 : -95.60547 : Houston, TX +77066 : 29.959439 : -95.49694 : Houston, TX +77067 : 29.952354 : -95.45065 : Houston, TX +77068 : 30.007886 : -95.48532 : Houston, TX +77069 : 29.984672 : -95.52887 : Houston, TX +77070 : 29.978801 : -95.57655 : Houston, TX +77071 : 29.647637 : -95.51718 : Houston, TX +77072 : 29.700898 : -95.59002 : Houston, TX +77073 : 30.008745 : -95.41273 : Houston, TX +77074 : 29.689781 : -95.51161 : Houston, TX +77075 : 29.620881 : -95.26018 : Houston, TX +77076 : 29.858525 : -95.38178 : Houston, TX +77077 : 29.750897 : -95.61255 : Houston, TX +77078 : 29.849424 : -95.25951 : Houston, TX +77079 : 29.773018 : -95.60125 : Houston, TX +77080 : 29.816866 : -95.52309 : Houston, TX +77081 : 29.70828 : -95.48361 : Houston, TX +77082 : 29.722704 : -95.6314 : Houston, TX +77083 : 29.691714 : -95.64978 : Houston, TX +77084 : 29.839155 : -95.66391 : Houston, TX +77085 : 29.621746 : -95.48695 : Houston, TX +77086 : 29.920981 : -95.49556 : Houston, TX +77087 : 29.686579 : -95.30386 : Houston, TX +77088 : 29.879213 : -95.45028 : Houston, TX +77089 : 29.589831 : -95.22251 : Houston, TX +77090 : 30.012711 : -95.45132 : Houston, TX +77091 : 29.852975 : -95.43586 : Houston, TX +77092 : 29.833326 : -95.47644 : Houston, TX +77093 : 29.862024 : -95.33967 : Houston, TX +77094 : 29.770722 : -95.6988 : Houston, TX +77095 : 29.896656 : -95.64842 : Houston, TX +77096 : 29.674336 : -95.48123 : Houston, TX +77097 : 29.83399 : -95.434241 : Houston, TX +77098 : 29.735529 : -95.41405 : Houston, TX +77099 : 29.668489 : -95.5869 : Houston, TX +77201 : 29.83399 : -95.434241 : Houston, TX +77202 : 29.83399 : -95.434241 : Houston, TX +77203 : 29.83399 : -95.434241 : Houston, TX +77204 : 29.83399 : -95.434241 : Houston, TX +77205 : 29.83399 : -95.434241 : Houston, TX +77206 : 29.83399 : -95.434241 : Houston, TX +77207 : 29.83399 : -95.434241 : Houston, TX +77208 : 29.83399 : -95.434241 : Houston, TX +77209 : 29.612816 : -95.158517 : Houston, TX +77210 : 29.83399 : -95.434241 : Houston, TX +77212 : 29.83399 : -95.434241 : Houston, TX +77213 : 29.83399 : -95.434241 : Houston, TX +77215 : 29.83399 : -95.434241 : Houston, TX +77216 : 29.83399 : -95.434241 : Houston, TX +77217 : 29.83399 : -95.434241 : Houston, TX +77218 : 29.83399 : -95.434241 : Houston, TX +77219 : 29.83399 : -95.434241 : Houston, TX +77220 : 29.83399 : -95.434241 : Houston, TX +77221 : 29.83399 : -95.434241 : Houston, TX +77222 : 29.83399 : -95.434241 : Houston, TX +77223 : 29.83399 : -95.434241 : Houston, TX +77224 : 29.83399 : -95.434241 : Houston, TX +77225 : 29.83399 : -95.434241 : Houston, TX +77226 : 29.83399 : -95.434241 : Houston, TX +77227 : 29.83399 : -95.434241 : Houston, TX +77228 : 29.83399 : -95.434241 : Houston, TX +77229 : 29.83399 : -95.434241 : Houston, TX +77230 : 29.83399 : -95.434241 : Houston, TX +77231 : 29.83399 : -95.434241 : Houston, TX +77233 : 29.83399 : -95.434241 : Houston, TX +77234 : 29.83399 : -95.434241 : Houston, TX +77235 : 29.83399 : -95.434241 : Houston, TX +77236 : 29.83399 : -95.434241 : Houston, TX +77237 : 29.83399 : -95.434241 : Houston, TX +77238 : 29.83399 : -95.434241 : Houston, TX +77240 : 29.83399 : -95.434241 : Houston, TX +77241 : 29.83399 : -95.434241 : Houston, TX +77242 : 29.83399 : -95.434241 : Houston, TX +77243 : 29.83399 : -95.434241 : Houston, TX +77244 : 29.83399 : -95.434241 : Houston, TX +77245 : 29.83399 : -95.434241 : Houston, TX +77248 : 29.83399 : -95.434241 : Houston, TX +77249 : 29.83399 : -95.434241 : Houston, TX +77251 : 29.83399 : -95.434241 : Houston, TX +77252 : 29.83399 : -95.434241 : Houston, TX +77253 : 29.83399 : -95.434241 : Houston, TX +77254 : 29.83399 : -95.434241 : Houston, TX +77255 : 29.83399 : -95.434241 : Houston, TX +77256 : 29.83399 : -95.434241 : Houston, TX +77257 : 29.83399 : -95.434241 : Houston, TX +77258 : 29.83399 : -95.434241 : Houston, TX +77259 : 29.83399 : -95.434241 : Houston, TX +77261 : 29.83399 : -95.434241 : Houston, TX +77262 : 29.83399 : -95.434241 : Houston, TX +77263 : 29.83399 : -95.434241 : Houston, TX +77265 : 29.83399 : -95.434241 : Houston, TX +77266 : 29.83399 : -95.434241 : Houston, TX +77267 : 29.83399 : -95.434241 : Houston, TX +77268 : 29.83399 : -95.434241 : Houston, TX +77269 : 29.83399 : -95.434241 : Houston, TX +77270 : 29.83399 : -95.434241 : Houston, TX +77271 : 29.83399 : -95.434241 : Houston, TX +77272 : 29.83399 : -95.434241 : Houston, TX +77273 : 29.83399 : -95.434241 : Houston, TX +77274 : 29.83399 : -95.434241 : Houston, TX +77275 : 29.83399 : -95.434241 : Houston, TX +77277 : 29.83399 : -95.434241 : Houston, TX +77279 : 29.83399 : -95.434241 : Houston, TX +77280 : 29.83399 : -95.434241 : Houston, TX +77281 : 29.83399 : -95.434241 : Houston, TX +77282 : 29.83399 : -95.434241 : Houston, TX +77284 : 29.83399 : -95.434241 : Houston, TX +77287 : 29.83399 : -95.434241 : Houston, TX +77288 : 29.83399 : -95.434241 : Houston, TX +77289 : 29.83399 : -95.434241 : Houston, TX +77290 : 29.83399 : -95.434241 : Houston, TX +77291 : 29.83399 : -95.434241 : Houston, TX +77292 : 29.744341 : -95.332598 : Houston, TX +77293 : 29.83399 : -95.434241 : Houston, TX +77297 : 29.83399 : -95.434241 : Houston, TX +77298 : 29.83399 : -95.434241 : Houston, TX +77299 : 29.83399 : -95.434241 : Houston, TX +77301 : 30.313308 : -95.45085 : Conroe, TX +77302 : 30.238563 : -95.38927 : Conroe, TX +77303 : 30.368543 : -95.40217 : Conroe, TX +77304 : 30.33146 : -95.50703 : Conroe, TX +77305 : 30.290638 : -95.383202 : Conroe, TX +77306 : 30.289893 : -95.32698 : Conroe, TX +77315 : 29.83399 : -95.434241 : North Houston, TX +77316 : 30.329017 : -95.64985 : Montgomery, TX +77318 : 30.434486 : -95.55009 : Willis, TX +77320 : 30.805099 : -95.50719 : Huntsville, TX +77325 : 29.83399 : -95.434241 : Humble, TX +77326 : 30.519883 : -94.81869 : Ace, TX +77327 : 30.35469 : -95.04514 : Cleveland, TX +77328 : 30.188885 : -94.804065 : Cleveland, TX +77331 : 30.619313 : -95.13802 : Coldspring, TX +77332 : 30.817866 : -94.869052 : Dallardsville, TX +77333 : 30.353346 : -95.77833 : Dobbin, TX +77334 : 30.758511 : -95.3688 : Dodge, TX +77335 : 30.595651 : -94.94597 : Goodrich, TX +77336 : 30.045495 : -95.10714 : Huffman, TX +77337 : 29.83399 : -95.434241 : Hufsmith, TX +77338 : 30.005691 : -95.28488 : Humble, TX +77339 : 30.053368 : -95.21807 : Humble, TX +77340 : 30.680641 : -95.50776 : Huntsville, TX +77341 : 30.714476 : -95.54977 : Huntsville, TX +77342 : 30.78128 : -95.59527 : Huntsville, TX +77343 : 30.78128 : -95.59527 : Huntsville, TX +77344 : 30.78128 : -95.59527 : Huntsville, TX +77345 : 30.062436 : -95.16945 : Humble, TX +77346 : 30.001902 : -95.16962 : Humble, TX +77347 : 29.83399 : -95.434241 : Humble, TX +77348 : 30.78128 : -95.59527 : Huntsville, TX +77349 : 30.78128 : -95.59527 : Huntsville, TX +77350 : 30.856814 : -94.856052 : Leggett, TX +77351 : 30.712538 : -94.89915 : Livingston, TX +77353 : 30.180626 : -95.70925 : Magnolia, TX +77354 : 30.194267 : -95.63918 : Magnolia, TX +77355 : 30.158706 : -95.74464 : Magnolia, TX +77356 : 30.412229 : -95.6529 : Montgomery, TX +77357 : 30.170751 : -95.17832 : New Caney, TX +77358 : 30.545212 : -95.46752 : New Waverly, TX +77359 : 30.735628 : -95.30405 : Oakhurst, TX +77360 : 30.818886 : -95.11108 : Onalaska, TX +77362 : 30.152265 : -95.67556 : Pinehurst, TX +77363 : 30.281863 : -95.85326 : Plantersville, TX +77364 : 30.756728 : -95.20485 : Pointblank, TX +77365 : 30.102209 : -95.25748 : Porter, TX +77367 : 30.848603 : -95.39644 : Riverside, TX +77368 : 30.453845 : -94.83674 : Romayor, TX +77369 : 30.480319 : -94.75643 : Rye, TX +77371 : 30.488028 : -94.99963 : Shepherd, TX +77372 : 30.220237 : -95.16723 : Splendora, TX +77373 : 30.056394 : -95.38961 : Spring, TX +77374 : 30.378705 : -94.64906 : Thicket, TX +77375 : 30.073775 : -95.61882 : Tomball, TX +77376 : 30.437704 : -94.68614 : Votaw, TX +77377 : 29.83399 : -95.434241 : Tomball, TX +77378 : 30.439428 : -95.44677 : Willis, TX +77379 : 30.024749 : -95.53215 : Spring, TX +77380 : 30.143485 : -95.46821 : Spring, TX +77381 : 30.17873 : -95.5021 : Spring, TX +77382 : 30.214741 : -95.53212 : Spring, TX +77383 : 29.83399 : -95.434241 : Spring, TX +77384 : 30.233865 : -95.49679 : Conroe, TX +77385 : 30.18771 : -95.43893 : Conroe, TX +77386 : 30.128862 : -95.41896 : Spring, TX +77387 : 30.378446 : -95.557004 : Spring, TX +77388 : 30.055195 : -95.46826 : Spring, TX +77389 : 30.10824 : -95.51716 : Spring, TX +77391 : 29.83399 : -95.434241 : Spring, TX +77393 : 30.329016 : -95.463474 : Spring, TX +77396 : 29.951621 : -95.26785 : Humble, TX +77399 : 30.817866 : -94.869052 : Livingston, TX +77401 : 29.70403 : -95.46099 : Bellaire, TX +77402 : 29.83399 : -95.434241 : Bellaire, TX +77404 : 28.798156 : -95.651058 : Bay City, TX +77406 : 29.50401 : -95.919107 : Richmond, TX +77410 : 29.83399 : -95.434241 : Cypress, TX +77411 : 29.83399 : -95.434241 : Alief, TX +77412 : 29.575183 : -96.46831 : Altair, TX +77413 : 29.83399 : -95.434241 : Barker, TX +77414 : 28.945269 : -95.9357 : Bay City, TX +77415 : 28.936476 : -95.72292 : Cedar Lane, TX +77417 : 29.483573 : -95.93931 : Beasley, TX +77418 : 29.983095 : -96.26843 : Bellville, TX +77419 : 28.872088 : -96.2316 : Blessing, TX +77420 : 29.249812 : -95.92241 : Boling, TX +77422 : 29.011241 : -95.58071 : Brazoria, TX +77423 : 29.80038 : -95.98452 : Brookshire, TX +77426 : 30.132693 : -96.25388 : Chappell Hill, TX +77428 : 28.718954 : -96.16969 : Collegeport, TX +77429 : 29.982746 : -95.66597 : Cypress, TX +77430 : 29.290602 : -95.70739 : Damon, TX +77431 : 29.173701 : -95.820719 : Danciger, TX +77432 : 29.064542 : -96.21454 : Danevang, TX +77433 : 29.884175 : -95.72219 : Cypress, TX +77434 : 29.575458 : -96.32079 : Eagle Lake, TX +77435 : 29.520049 : -96.08527 : East Bernard, TX +77436 : 29.375762 : -96.227967 : Egypt, TX +77437 : 29.197701 : -96.2774 : El Campo, TX +77439 : 29.487774 : -94.951647 : San Leon, TX +77440 : 28.887522 : -96.14826 : Elmaton, TX +77441 : 29.685917 : -95.91804 : Fulshear, TX +77442 : 29.424483 : -96.45923 : Garwood, TX +77443 : 29.346878 : -96.19287 : Glen Flora, TX +77444 : 29.29995 : -95.79753 : Guy, TX +77445 : 30.096649 : -96.06979 : Hempstead, TX +77446 : 30.082131 : -95.99178 : Prairie View, TX +77447 : 30.065152 : -95.8144 : Hockley, TX +77448 : 29.401714 : -96.07526 : Hungerford, TX +77449 : 29.825908 : -95.7301 : Katy, TX +77450 : 29.758799 : -95.74751 : Katy, TX +77451 : 29.447947 : -96.0007 : Kendleton, TX +77452 : 29.849283 : -96.313271 : Kenney, TX +77453 : 29.170387 : -96.014159 : Lane City, TX +77454 : 29.553544 : -96.22224 : Lissie, TX +77455 : 29.095463 : -96.40324 : Louise, TX +77456 : 28.964146 : -96.07346 : Markham, TX +77457 : 28.67494 : -95.9653 : Matagorda, TX +77458 : 28.939249 : -96.2147 : Midfield, TX +77459 : 29.564347 : -95.54762 : Missouri City, TX +77460 : 29.60466 : -96.524899 : Nada, TX +77461 : 29.401461 : -95.82334 : Needville, TX +77462 : 29.298532 : -96.241147 : Newgulf, TX +77463 : 29.135066 : -95.78335 : Old Ocean, TX +77464 : 29.602015 : -95.96882 : Orchard, TX +77465 : 28.735638 : -96.22273 : Palacios, TX +77466 : 29.818871 : -95.99945 : Pattison, TX +77467 : 29.238931 : -96.1716 : Pierce, TX +77468 : 29.177817 : -95.89195 : Pledger, TX +77469 : 29.584172 : -95.747 : Richmond, TX +77470 : 29.520292 : -96.57348 : Rock Island, TX +77471 : 29.549455 : -95.81901 : Rosenberg, TX +77473 : 29.799608 : -96.10123 : San Felipe, TX +77474 : 29.776375 : -96.16474 : Sealy, TX +77475 : 29.488245 : -96.65185 : Sheridan, TX +77476 : 29.686804 : -95.99738 : Simonton, TX +77477 : 29.626187 : -95.57145 : Stafford, TX +77478 : 29.627737 : -95.62444 : Sugar Land, TX +77479 : 29.573345 : -95.63213 : Sugar Land, TX +77480 : 29.055954 : -95.71344 : Sweeny, TX +77481 : 29.478032 : -95.58329 : Thompsons, TX +77482 : 29.035651 : -95.89207 : Van Vleck, TX +77483 : 28.83088 : -95.93391 : Wadsworth, TX +77484 : 30.068888 : -95.92499 : Waller, TX +77485 : 29.632221 : -96.07144 : Wallis, TX +77486 : 29.152396 : -95.66319 : West Columbia, TX +77487 : 29.525461 : -95.756462 : Sugar Land, TX +77488 : 29.307347 : -96.09055 : Wharton, TX +77489 : 29.601141 : -95.51772 : Missouri City, TX +77491 : 29.83399 : -95.434241 : Katy, TX +77492 : 29.83399 : -95.434241 : Katy, TX +77493 : 29.810279 : -95.82011 : Katy, TX +77494 : 29.760833 : -95.81104 : Katy, TX +77496 : 29.525461 : -95.756462 : Sugar Land, TX +77497 : 29.525461 : -95.756462 : Stafford, TX +77501 : 29.83399 : -95.434241 : Pasadena, TX +77502 : 29.680079 : -95.19966 : Pasadena, TX +77503 : 29.695028 : -95.15798 : Pasadena, TX +77504 : 29.64878 : -95.18813 : Pasadena, TX +77505 : 29.650492 : -95.14632 : Pasadena, TX +77506 : 29.705678 : -95.20216 : Pasadena, TX +77507 : 29.624686 : -95.06111 : Pasadena, TX +77508 : 29.569927 : -95.106637 : Pasadena, TX +77510 : 29.371171 : -95.08552 : Santa Fe, TX +77511 : 29.41148 : -95.24475 : Alvin, TX +77512 : 29.362879 : -95.27605 : Alvin, TX +77514 : 29.689054 : -94.66375 : Anahuac, TX +77515 : 29.16866 : -95.44541 : Angleton, TX +77516 : 29.183991 : -95.465083 : Angleton, TX +77517 : 29.382307 : -95.12768 : Santa Fe, TX +77518 : 29.504389 : -94.98779 : Bacliff, TX +77519 : 30.249734 : -94.60291 : Batson, TX +77520 : 29.74877 : -94.94389 : Baytown, TX +77521 : 29.784579 : -94.97588 : Baytown, TX +77522 : 29.83399 : -95.434241 : Baytown, TX +77530 : 29.786656 : -95.12214 : Channelview, TX +77531 : 29.038068 : -95.40114 : Clute, TX +77532 : 29.920121 : -95.07327 : Crosby, TX +77533 : 30.112587 : -94.64704 : Daisetta, TX +77534 : 29.226396 : -95.33797 : Danbury, TX +77535 : 30.044219 : -94.88864 : Dayton, TX +77536 : 29.687657 : -95.1201 : Deer Park, TX +77537 : 29.469835 : -95.005317 : Dickinson, TX +77538 : 29.981421 : -94.55067 : Devers, TX +77539 : 29.468772 : -95.02689 : Dickinson, TX +77541 : 28.975247 : -95.34357 : Freeport, TX +77542 : 29.183991 : -95.465083 : Freeport, TX +77545 : 29.526728 : -95.45984 : Fresno, TX +77546 : 29.516873 : -95.19472 : Friendswood, TX +77547 : 29.737178 : -95.23906 : Galena Park, TX +77549 : 29.330501 : -94.800238 : Friendswood, TX +77550 : 29.298448 : -94.79316 : Galveston, TX +77551 : 29.279937 : -94.82683 : Galveston, TX +77552 : 29.22051 : -94.944391 : Galveston, TX +77553 : 29.328547 : -94.79422 : Galveston, TX +77554 : 29.221289 : -94.94455 : Galveston, TX +77555 : 29.330501 : -94.800238 : Galveston, TX +77560 : 29.860106 : -94.58468 : Hankamer, TX +77561 : 30.154264 : -94.72677 : Hardin, TX +77562 : 29.81953 : -95.05298 : Highlands, TX +77563 : 29.339307 : -95.00317 : Hitchcock, TX +77564 : 30.159698 : -94.65504 : Hull, TX +77565 : 29.541285 : -95.02996 : Kemah, TX +77566 : 29.036879 : -95.44103 : Lake Jackson, TX +77567 : 29.545836 : -95.041532 : League City, TX +77568 : 29.366684 : -94.97392 : La Marque, TX +77571 : 29.666781 : -95.04487 : La Porte, TX +77572 : 29.83399 : -95.434241 : La Porte, TX +77573 : 29.502759 : -95.08906 : League City, TX +77574 : 29.511582 : -95.058153 : League City, TX +77575 : 30.066734 : -94.76595 : Liberty, TX +77577 : 29.289673 : -95.27709 : Liverpool, TX +77578 : 29.487395 : -95.35807 : Manvel, TX +77580 : 29.856137 : -94.842939 : Mont Belvieu, TX +77581 : 29.56218 : -95.26982 : Pearland, TX +77582 : 30.023932 : -94.66678 : Raywood, TX +77583 : 29.429256 : -95.45332 : Rosharon, TX +77584 : 29.543654 : -95.34036 : Pearland, TX +77585 : 30.304796 : -94.52727 : Saratoga, TX +77586 : 29.576638 : -95.03486 : Seabrook, TX +77587 : 29.66223 : -95.23106 : South Houston, TX +77588 : 29.512687 : -95.254188 : Pearland, TX +77590 : 29.395283 : -94.91759 : Texas City, TX +77591 : 29.389583 : -94.99167 : Texas City, TX +77592 : 29.330501 : -94.800238 : Texas City, TX +77593 : 29.506921 : -95.111987 : League City, TX +77597 : 29.843158 : -94.70376 : Wallisville, TX +77598 : 29.539581 : -95.13467 : Webster, TX +77611 : 30.026093 : -93.84071 : Bridge City, TX +77612 : 30.433087 : -93.96897 : Buna, TX +77613 : 30.043401 : -94.35853 : China, TX +77614 : 30.293684 : -93.74329 : Deweyville, TX +77615 : 30.316847 : -94.07395 : Evadale, TX +77616 : 30.564151 : -94.2076 : Fred, TX +77617 : 29.507243 : -94.52028 : Gilchrist, TX +77619 : 29.947563 : -93.91857 : Groves, TX +77622 : 29.870794 : -94.2896 : Hamshire, TX +77623 : 29.571106 : -94.4045 : High Island, TX +77624 : 30.664543 : -94.30391 : Hillister, TX +77625 : 30.372553 : -94.33671 : Kountze, TX +77626 : 30.203996 : -93.886646 : Mauriceville, TX +77627 : 29.974013 : -93.99986 : Nederland, TX +77629 : 30.031927 : -94.42374 : Nome, TX +77630 : 30.089757 : -93.77408 : Orange, TX +77631 : 30.054793 : -93.903108 : Orange, TX +77632 : 30.182584 : -93.79964 : Orange, TX +77633 : 30.158637 : -96.407936 : Brenham, TX +77639 : 30.063101 : -93.859903 : Orangefield, TX +77640 : 29.879796 : -93.95575 : Port Arthur, TX +77641 : 29.847569 : -94.129733 : Port Arthur, TX +77642 : 29.921564 : -93.92694 : Port Arthur, TX +77643 : 29.962144 : -93.867932 : Port Arthur, TX +77650 : 29.43186 : -94.68252 : Port Bolivar, TX +77651 : 29.980863 : -93.96038 : Port Neches, TX +77655 : 29.732092 : -93.90117 : Sabine Pass, TX +77656 : 30.390569 : -94.18056 : Silsbee, TX +77657 : 30.240473 : -94.20172 : Lumberton, TX +77659 : 30.150405 : -94.41515 : Sour Lake, TX +77660 : 30.635615 : -94.1705 : Spurger, TX +77661 : 29.780948 : -94.390045 : Stowell, TX +77662 : 30.142953 : -94.00797 : Vidor, TX +77663 : 30.520625 : -94.43631 : Village Mills, TX +77664 : 30.600866 : -94.40604 : Warren, TX +77665 : 29.820542 : -94.39965 : Winnie, TX +77670 : 30.054793 : -93.903108 : Vidor, TX +77701 : 30.074112 : -94.10358 : Beaumont, TX +77702 : 30.085112 : -94.12607 : Beaumont, TX +77703 : 30.112312 : -94.11736 : Beaumont, TX +77704 : 30.12355 : -94.153941 : Beaumont, TX +77705 : 30.009609 : -94.11401 : Beaumont, TX +77706 : 30.092679 : -94.16377 : Beaumont, TX +77707 : 30.065029 : -94.18031 : Beaumont, TX +77708 : 30.141361 : -94.16488 : Beaumont, TX +77709 : 30.176361 : -94.187683 : Voth, TX +77710 : 29.847569 : -94.129733 : Beaumont, TX +77713 : 30.090135 : -94.2467 : Beaumont, TX +77720 : 29.847569 : -94.129733 : Beaumont, TX +77725 : 29.847569 : -94.129733 : Beaumont, TX +77726 : 30.111843 : -94.190147 : Beaumont, TX +77735 : 30.095391 : -95.628023 : Tomball, TX +77801 : 30.637348 : -96.36015 : Bryan, TX +77802 : 30.655348 : -96.34056 : Bryan, TX +77803 : 30.678097 : -96.37639 : Bryan, TX +77805 : 30.65212 : -96.341012 : Bryan, TX +77806 : 30.65212 : -96.341012 : Bryan, TX +77807 : 30.68416 : -96.46101 : Bryan, TX +77808 : 30.762815 : -96.31744 : Bryan, TX +77830 : 30.536223 : -96.0229 : Anderson, TX +77831 : 30.74577 : -95.91892 : Bedias, TX +77833 : 30.183651 : -96.40258 : Brenham, TX +77834 : 30.231333 : -96.290358 : Brenham, TX +77835 : 30.181677 : -96.61373 : Burton, TX +77836 : 30.517099 : -96.67247 : Caldwell, TX +77837 : 30.993313 : -96.6808 : Calvert, TX +77838 : 30.513118 : -96.618047 : Chriesman, TX +77839 : 30.341403 : -96.526669 : Clay, TX +77840 : 30.614647 : -96.32641 : College Station, TX +77841 : 30.57258 : -96.327044 : College Station, TX +77842 : 30.65212 : -96.341012 : College Station, TX +77843 : 30.65212 : -96.341012 : College Station, TX +77844 : 30.65212 : -96.341012 : College Station, TX +77845 : 30.571905 : -96.29882 : College Station, TX +77850 : 31.313816 : -95.993482 : Concord, TX +77852 : 30.513118 : -96.618047 : Deanville, TX +77853 : 30.3555 : -96.85437 : Dime Box, TX +77855 : 31.134863 : -96.11889 : Flynn, TX +77856 : 31.049092 : -96.44131 : Franklin, TX +77857 : 30.796177 : -96.70685 : Gause, TX +77859 : 30.876658 : -96.60205 : Hearne, TX +77861 : 30.752599 : -96.09691 : Iola, TX +77862 : 30.65212 : -96.341012 : Kurten, TX +77863 : 30.359245 : -96.591535 : Lyons, TX +77864 : 30.956147 : -95.91606 : Madisonville, TX +77865 : 31.222211 : -96.24043 : Marquez, TX +77866 : 30.466986 : -96.20408 : Millican, TX +77867 : 30.748833 : -96.57391 : Mumford, TX +77868 : 30.374501 : -96.07999 : Navasota, TX +77869 : 30.65212 : -96.341012 : Navasota, TX +77870 : 31.050207 : -96.42982 : New Baden, TX +77871 : 31.058563 : -96.15852 : Normangee, TX +77872 : 30.892212 : -96.10346 : North Zulch, TX +77873 : 30.56335 : -95.8337 : Richards, TX +77874 : 30.049881 : -95.929015 : Waller, TX +77875 : 30.607534 : -95.957945 : Roans Prairie, TX +77876 : 30.647831 : -95.83191 : Shiro, TX +77878 : 30.490162 : -96.4698 : Snook, TX +77879 : 30.368922 : -96.52359 : Somerville, TX +77880 : 30.281022 : -96.16922 : Washington, TX +77881 : 30.65212 : -96.341012 : Wellborn, TX +77882 : 30.896204 : -96.40959 : Wheelock, TX +77889 : 29.472186 : -95.483489 : Sienna Plantation, TX +77901 : 28.806417 : -96.99356 : Victoria, TX +77902 : 28.925513 : -97.100624 : Victoria, TX +77903 : 28.794935 : -96.974119 : Victoria, TX +77904 : 28.873664 : -97.00715 : Victoria, TX +77905 : 28.737085 : -97.0146 : Victoria, TX +77950 : 28.390776 : -96.84723 : Austwell, TX +77951 : 28.642875 : -96.89172 : Bloomington, TX +77954 : 29.09649 : -97.28798 : Cuero, TX +77957 : 28.966755 : -96.65939 : Edna, TX +77960 : 28.694847 : -97.24182 : Fannin, TX +77961 : 28.861398 : -96.34404 : Francitas, TX +77962 : 29.02864 : -96.50513 : Ganado, TX +77963 : 28.685027 : -97.40221 : Goliad, TX +77964 : 29.369619 : -96.86644 : Hallettsville, TX +77965 : 29.444297 : -96.952091 : Hallettsville, TX +77967 : 29.098894 : -97.365742 : Hochheim, TX +77968 : 28.888476 : -96.82316 : Inez, TX +77969 : 28.77203 : -96.63732 : La Salle, TX +77970 : 28.865213 : -96.4397 : La Ward, TX +77971 : 28.853152 : -96.52727 : Lolita, TX +77972 : 28.525453 : -96.694818 : Long Mott, TX +77973 : 28.532052 : -96.9902 : Mcfaddin, TX +77974 : 28.897693 : -97.29589 : Meyersville, TX +77975 : 29.57449 : -97.12675 : Moulton, TX +77976 : 28.954273 : -97.090604 : Nursery, TX +77977 : 28.691718 : -96.82657 : Placedo, TX +77978 : 28.672399 : -96.55725 : Point Comfort, TX +77979 : 28.604717 : -96.63023 : Port Lavaca, TX +77982 : 28.430193 : -96.4417 : Port O Connor, TX +77983 : 28.405373 : -96.70325 : Seadrift, TX +77984 : 29.442934 : -97.18691 : Shiner, TX +77985 : 29.347975 : -96.900331 : Speaks, TX +77986 : 29.487564 : -96.794605 : Sublime, TX +77987 : 29.347975 : -96.900331 : Sweet Home, TX +77988 : 28.846861 : -96.88966 : Telferner, TX +77989 : 28.997449 : -97.153868 : Thomaston, TX +77990 : 28.459757 : -96.88598 : Tivoli, TX +77991 : 28.82037 : -96.61273 : Vanderbilt, TX +77993 : 28.835825 : -97.444155 : Weesatche, TX +77994 : 29.195217 : -97.47799 : Westhoff, TX +77995 : 29.254632 : -97.13046 : Yoakum, TX +77999 : 29.495537 : -94.961797 : Texas City, TX +78001 : 28.265415 : -99.2821 : Artesia Wells, TX +78002 : 29.288108 : -98.72878 : Atascosa, TX +78003 : 29.718152 : -99.06605 : Bandera, TX +78004 : 29.903508 : -98.55789 : Bergheim, TX +78005 : 28.976757 : -98.84426 : Bigfoot, TX +78006 : 29.851666 : -98.72932 : Boerne, TX +78007 : 28.453052 : -98.37384 : Calliham, TX +78008 : 28.759107 : -98.2173 : Campbellton, TX +78009 : 29.356455 : -98.88062 : Castroville, TX +78010 : 29.944906 : -99.0559 : Center Point, TX +78011 : 28.795637 : -98.71951 : Charlotte, TX +78012 : 28.790841 : -98.496 : Christine, TX +78013 : 29.972473 : -98.91084 : Comfort, TX +78014 : 28.43544 : -99.21676 : Cotulla, TX +78015 : 29.743603 : -98.64854 : Boerne, TX +78016 : 29.158899 : -98.933 : Devine, TX +78017 : 28.728991 : -99.23388 : Dilley, TX +78019 : 28.062471 : -99.4289 : Encinal, TX +78021 : 28.52856 : -98.80845 : Fowlerton, TX +78022 : 28.260148 : -98.14978 : George West, TX +78023 : 29.61403 : -98.74185 : Helotes, TX +78024 : 30.055926 : -99.42213 : Hunt, TX +78025 : 30.102854 : -99.27685 : Ingram, TX +78026 : 28.85458 : -98.5528 : Jourdanton, TX +78027 : 30.002501 : -98.57124 : Kendalia, TX +78028 : 30.042529 : -99.15152 : Kerrville, TX +78029 : 30.033226 : -99.140974 : Kerrville, TX +78039 : 29.312661 : -98.81591 : La Coste, TX +78040 : 27.514845 : -99.49991 : Laredo, TX +78041 : 27.542244 : -99.49233 : Laredo, TX +78042 : 27.565464 : -99.476792 : Laredo, TX +78043 : 27.538658 : -99.38274 : Laredo, TX +78044 : 27.363738 : -99.481919 : Laredo, TX +78045 : 27.648832 : -99.53371 : Laredo, TX +78046 : 27.435814 : -99.45996 : Laredo, TX +78047 : 27.564249 : -99.471719 : Laredo, TX +78049 : 27.732094 : -99.505138 : Laredo, TX +78050 : 29.072689 : -98.48916 : Leming, TX +78052 : 29.227628 : -98.79895 : Lytle, TX +78053 : 28.906103 : -98.2802 : McCoy, TX +78054 : 29.325602 : -98.732187 : Macdona, TX +78055 : 29.833279 : -99.32589 : Medina, TX +78056 : 29.54825 : -98.90353 : Mico, TX +78057 : 29.047934 : -99.0416 : Moore, TX +78058 : 30.070414 : -99.69191 : Mountain Home, TX +78059 : 29.19085 : -98.84676 : Natalia, TX +78060 : 28.421814 : -98.071902 : Oakville, TX +78061 : 28.888468 : -99.09005 : Pearsall, TX +78062 : 28.919999 : -98.552942 : Peggy, TX +78063 : 29.641551 : -98.93407 : Pipe Creek, TX +78064 : 28.958803 : -98.4639 : Pleasanton, TX +78065 : 29.057172 : -98.58398 : Poteet, TX +78066 : 29.466279 : -98.89162 : Rio Medina, TX +78067 : 27.198571 : -99.36781 : San Ygnacio, TX +78069 : 29.200169 : -98.67235 : Somerset, TX +78070 : 29.898176 : -98.40135 : Spring Branch, TX +78071 : 28.492487 : -98.1764 : Three Rivers, TX +78072 : 28.314027 : -98.49899 : Tilden, TX +78073 : 29.227135 : -98.60919 : Von Ormy, TX +78074 : 29.950969 : -98.79093 : Waring, TX +78075 : 28.633209 : -98.27924 : Whitsett, TX +78076 : 26.9052 : -99.21863 : Zapata, TX +78081 : 29.542778 : -98.20799 : Judsonia, AR +78093 : 27.492996 : -99.463668 : Laredo, TX +78101 : 29.326804 : -98.21887 : Adkins, TX +78102 : 28.426202 : -97.74806 : Beeville, TX +78104 : 28.393116 : -97.776017 : Beeville, TX +78107 : 28.53232 : -97.5888 : Berclair, TX +78108 : 29.574127 : -98.23308 : Cibolo, TX +78109 : 29.50198 : -98.30582 : Converse, TX +78111 : 28.944864 : -97.882815 : Ecleto, TX +78112 : 29.221682 : -98.36902 : Elmendorf, TX +78113 : 28.972553 : -98.06964 : Falls City, TX +78114 : 29.150937 : -98.17929 : Floresville, TX +78115 : 29.54508 : -98.040833 : Geronimo, TX +78116 : 29.112202 : -97.78275 : Gillett, TX +78117 : 28.956196 : -97.95012 : Hobson, TX +78118 : 28.894382 : -97.90102 : Karnes City, TX +78119 : 28.779344 : -97.85626 : Kenedy, TX +78121 : 29.351202 : -98.11528 : La Vernia, TX +78122 : 29.425729 : -97.7365 : Leesville, TX +78123 : 29.598103 : -98.04346 : McQueeney, TX +78124 : 29.570379 : -98.14606 : Marion, TX +78125 : 28.535247 : -97.93937 : Mineral, TX +78126 : 29.55302 : -98.486871 : San Antonio, TX +78130 : 29.699844 : -98.10754 : New Braunfels, TX +78131 : 29.79918 : -98.338419 : New Braunfels, TX +78132 : 29.749204 : -98.17653 : New Braunfels, TX +78133 : 29.883884 : -98.25219 : Canyon Lake, TX +78134 : 29.687579 : -98.120104 : New Braunfels, TX +78135 : 29.738502 : -98.087157 : New Braunfels, TX +78136 : 29.619401 : -98.060419 : McQueeney, TX +78140 : 29.292655 : -97.76167 : Nixon, TX +78141 : 28.919157 : -97.61607 : Nordheim, TX +78142 : 28.52604 : -97.78256 : Normanna, TX +78143 : 29.248705 : -97.84412 : Pandora, TX +78144 : 28.954252 : -97.89674 : Panna Maria, TX +78145 : 28.650728 : -98.00056 : Pawnee, TX +78146 : 28.615464 : -97.81591 : Pettus, TX +78147 : 29.072412 : -98.07786 : Poth, TX +78148 : 29.550223 : -98.29936 : Universal City, TX +78150 : 29.437532 : -98.461582 : Universal City, TX +78151 : 28.878902 : -97.71427 : Runge, TX +78152 : 29.432262 : -98.20151 : Saint Hedwig, TX +78154 : 29.577359 : -98.2787 : Schertz, TX +78155 : 29.56478 : -97.96283 : Seguin, TX +78156 : 29.611797 : -97.971208 : Seguin, TX +78159 : 29.269305 : -97.60044 : Smiley, TX +78160 : 29.237074 : -97.95439 : Stockdale, TX +78161 : 29.273819 : -98.05424 : Sutherland Springs, TX +78162 : 28.424535 : -97.732736 : Tuleta, TX +78163 : 29.758619 : -98.44199 : Bulverde, TX +78164 : 28.988817 : -97.51773 : Yorktown, TX +78201 : 29.466781 : -98.52519 : San Antonio, TX +78202 : 29.428132 : -98.46279 : San Antonio, TX +78203 : 29.414983 : -98.46239 : San Antonio, TX +78204 : 29.403583 : -98.5063 : San Antonio, TX +78205 : 29.425932 : -98.48931 : San Antonio, TX +78206 : 29.437532 : -98.461582 : San Antonio, TX +78207 : 29.423932 : -98.5235 : San Antonio, TX +78208 : 29.439832 : -98.45879 : San Antonio, TX +78209 : 29.48618 : -98.4568 : San Antonio, TX +78210 : 29.397934 : -98.46669 : San Antonio, TX +78211 : 29.362185 : -98.54644 : San Antonio, TX +78212 : 29.460381 : -98.49649 : San Antonio, TX +78213 : 29.510562 : -98.52203 : San Antonio, TX +78214 : 29.363335 : -98.49049 : San Antonio, TX +78215 : 29.438032 : -98.48114 : San Antonio, TX +78216 : 29.528515 : -98.49219 : San Antonio, TX +78217 : 29.543865 : -98.41755 : San Antonio, TX +78218 : 29.49428 : -98.40431 : San Antonio, TX +78219 : 29.448379 : -98.39908 : San Antonio, TX +78220 : 29.411583 : -98.41833 : San Antonio, TX +78221 : 29.326586 : -98.50217 : San Antonio, TX +78222 : 29.379902 : -98.38926 : San Antonio, TX +78223 : 29.352352 : -98.43215 : San Antonio, TX +78224 : 29.333436 : -98.53934 : San Antonio, TX +78225 : 29.387734 : -98.52492 : San Antonio, TX +78226 : 29.392167 : -98.55468 : San Antonio, TX +78227 : 29.405424 : -98.63832 : San Antonio, TX +78228 : 29.457281 : -98.5665 : San Antonio, TX +78229 : 29.499454 : -98.57166 : San Antonio, TX +78230 : 29.539562 : -98.55253 : San Antonio, TX +78231 : 29.574677 : -98.53946 : San Antonio, TX +78232 : 29.584698 : -98.46987 : San Antonio, TX +78233 : 29.552128 : -98.36775 : San Antonio, TX +78234 : 29.457389 : -98.45537 : San Antonio, TX +78235 : 29.33906 : -98.42793 : San Antonio, TX +78236 : 29.389767 : -98.61251 : San Antonio, TX +78237 : 29.422583 : -98.56584 : San Antonio, TX +78238 : 29.479874 : -98.61509 : San Antonio, TX +78239 : 29.51613 : -98.36161 : San Antonio, TX +78240 : 29.518413 : -98.60869 : San Antonio, TX +78241 : 29.437532 : -98.461582 : San Antonio, TX +78242 : 29.353735 : -98.61423 : San Antonio, TX +78243 : 29.437532 : -98.461582 : San Antonio, TX +78244 : 29.475598 : -98.35434 : San Antonio, TX +78245 : 29.412338 : -98.70484 : San Antonio, TX +78246 : 29.437532 : -98.461582 : San Antonio, TX +78247 : 29.581304 : -98.40889 : San Antonio, TX +78248 : 29.589826 : -98.52524 : San Antonio, TX +78249 : 29.569934 : -98.61282 : San Antonio, TX +78250 : 29.510204 : -98.66784 : San Antonio, TX +78251 : 29.466061 : -98.67004 : San Antonio, TX +78252 : 29.335577 : -98.70173 : San Antonio, TX +78253 : 29.461353 : -98.75976 : San Antonio, TX +78254 : 29.523294 : -98.74504 : San Antonio, TX +78255 : 29.665822 : -98.66812 : San Antonio, TX +78256 : 29.623533 : -98.62493 : San Antonio, TX +78257 : 29.646618 : -98.6099 : San Antonio, TX +78258 : 29.649797 : -98.50406 : San Antonio, TX +78259 : 29.627332 : -98.42781 : San Antonio, TX +78260 : 29.707273 : -98.47969 : San Antonio, TX +78261 : 29.698045 : -98.42624 : San Antonio, TX +78262 : 29.449332 : -98.290394 : San Antonio, TX +78263 : 29.358153 : -98.31978 : San Antonio, TX +78264 : 29.193828 : -98.51795 : San Antonio, TX +78265 : 29.437532 : -98.461582 : San Antonio, TX +78266 : 29.641132 : -98.30856 : San Antonio, TX +78268 : 29.437532 : -98.461582 : San Antonio, TX +78269 : 29.437532 : -98.461582 : San Antonio, TX +78270 : 29.437532 : -98.461582 : San Antonio, TX +78275 : 29.437532 : -98.461582 : San Antonio, TX +78278 : 29.437532 : -98.461582 : San Antonio, TX +78279 : 29.437532 : -98.461582 : San Antonio, TX +78280 : 29.437532 : -98.461582 : San Antonio, TX +78283 : 29.437532 : -98.461582 : San Antonio, TX +78284 : 29.442632 : -98.491344 : San Antonio, TX +78285 : 29.437532 : -98.461582 : San Antonio, TX +78286 : 29.437532 : -98.461582 : San Antonio, TX +78287 : 29.437532 : -98.461582 : San Antonio, TX +78288 : 29.437532 : -98.461582 : San Antonio, TX +78289 : 29.437532 : -98.461582 : San Antonio, TX +78291 : 29.437532 : -98.461582 : San Antonio, TX +78292 : 29.437532 : -98.461582 : San Antonio, TX +78293 : 29.437532 : -98.461582 : San Antonio, TX +78294 : 29.437532 : -98.461582 : San Antonio, TX +78295 : 29.437532 : -98.461582 : San Antonio, TX +78296 : 29.437532 : -98.461582 : San Antonio, TX +78297 : 29.437532 : -98.461582 : San Antonio, TX +78298 : 29.437532 : -98.461582 : San Antonio, TX +78299 : 29.437532 : -98.461582 : San Antonio, TX +78301 : 26.200001 : -98.231166 : McAllen, TX +78330 : 27.782267 : -97.90134 : Agua Dulce, TX +78331 : 27.750684 : -98.082694 : Alice, TX +78332 : 27.737965 : -98.09302 : Alice, TX +78333 : 27.659473 : -98.012331 : Alice, TX +78335 : 27.912454 : -97.188437 : Aransas Pass, TX +78336 : 27.915764 : -97.15436 : Aransas Pass, TX +78337 : 27.738511 : -98.098534 : Rancho Alegre, TX +78338 : 26.870238 : -97.77433 : Armstrong, TX +78339 : 27.807025 : -97.79801 : Banquete, TX +78340 : 28.103283 : -97.20757 : Bayside, TX +78341 : 27.592468 : -98.414188 : Benavides, TX +78342 : 27.659473 : -98.012331 : Ben Bolt, TX +78343 : 27.60549 : -97.78572 : Bishop, TX +78344 : 27.43254 : -98.81271 : Bruni, TX +78347 : 27.593816 : -97.46214 : Chapman Ranch, TX +78349 : 27.316167 : -98.29797 : Concepcion, TX +78350 : 28.421814 : -98.071902 : Dinero, TX +78351 : 27.672549 : -97.75105 : Driscoll, TX +78352 : 27.973465 : -97.68169 : Edroy, TX +78353 : 26.894094 : -98.21561 : Encino, TX +78355 : 27.217893 : -98.16479 : Falfurrias, TX +78357 : 27.939823 : -98.57624 : Freer, TX +78358 : 28.065865 : -97.04066 : Fulton, TX +78359 : 27.920604 : -97.29248 : Gregory, TX +78360 : 27.071318 : -98.686327 : Guerra, TX +78361 : 27.17199 : -98.73083 : Hebbronville, TX +78362 : 27.866143 : -97.20712 : Ingleside, TX +78363 : 27.496472 : -97.86808 : Kingsville, TX +78364 : 27.342872 : -97.70355 : Kingsville, TX +78368 : 28.101323 : -97.82968 : Mathis, TX +78369 : 27.44333 : -98.99944 : Mirando City, TX +78370 : 27.955312 : -97.59288 : Odem, TX +78371 : 27.467237 : -98.97431 : Oilton, TX +78372 : 27.963592 : -98.07031 : Orange Grove, TX +78373 : 27.818477 : -97.07998 : Port Aransas, TX +78374 : 27.884565 : -97.32054 : Portland, TX +78375 : 27.368433 : -98.12184 : Premont, TX +78376 : 27.363706 : -98.56442 : Realitos, TX +78377 : 28.327234 : -97.24787 : Refugio, TX +78379 : 27.299073 : -97.78433 : Riviera, TX +78380 : 27.782255 : -97.68609 : Robstown, TX +78381 : 28.013108 : -97.09364 : Rockport, TX +78382 : 28.047744 : -97.04818 : Rockport, TX +78383 : 28.066598 : -97.92891 : Sandia, TX +78384 : 27.683506 : -98.38142 : San Diego, TX +78385 : 27.17914 : -97.82511 : Sarita, TX +78387 : 28.054995 : -97.5133 : Sinton, TX +78389 : 28.237359 : -97.69331 : Skidmore, TX +78390 : 27.977641 : -97.37032 : Taft, TX +78391 : 28.169309 : -97.75404 : Tynan, TX +78393 : 28.206223 : -97.30778 : Woodsboro, TX +78401 : 27.795805 : -97.40019 : Corpus Christi, TX +78402 : 27.829732 : -97.4016 : Corpus Christi, TX +78403 : 27.777 : -97.463213 : Corpus Christi, TX +78404 : 27.770056 : -97.4001 : Corpus Christi, TX +78405 : 27.777922 : -97.42695 : Corpus Christi, TX +78406 : 27.776304 : -97.51253 : Corpus Christi, TX +78407 : 27.802404 : -97.42599 : Corpus Christi, TX +78408 : 27.796171 : -97.43796 : Corpus Christi, TX +78409 : 27.806753 : -97.50971 : Corpus Christi, TX +78410 : 27.846568 : -97.59435 : Corpus Christi, TX +78411 : 27.733058 : -97.38542 : Corpus Christi, TX +78412 : 27.709309 : -97.35225 : Corpus Christi, TX +78413 : 27.687792 : -97.40165 : Corpus Christi, TX +78414 : 27.672334 : -97.37051 : Corpus Christi, TX +78415 : 27.727083 : -97.4289 : Corpus Christi, TX +78416 : 27.752356 : -97.43465 : Corpus Christi, TX +78417 : 27.729855 : -97.44503 : Corpus Christi, TX +78418 : 27.633433 : -97.26792 : Corpus Christi, TX +78419 : 27.723611 : -97.380884 : Corpus Christi, TX +78426 : 27.777 : -97.463213 : Corpus Christi, TX +78427 : 27.777 : -97.463213 : Corpus Christi, TX +78460 : 27.889868 : -97.879743 : Corpus Christi, TX +78461 : 27.777 : -97.463213 : Corpus Christi, TX +78463 : 27.777 : -97.463213 : Corpus Christi, TX +78465 : 27.777 : -97.463213 : Corpus Christi, TX +78466 : 27.777 : -97.463213 : Corpus Christi, TX +78467 : 27.777 : -97.463213 : Corpus Christi, TX +78468 : 27.777 : -97.463213 : Corpus Christi, TX +78469 : 27.777 : -97.463213 : Corpus Christi, TX +78470 : 27.777 : -97.463213 : Corpus Christi, TX +78471 : 27.777 : -97.463213 : Corpus Christi, TX +78472 : 27.740225 : -97.579207 : Corpus Christi, TX +78473 : 27.777 : -97.463213 : Corpus Christi, TX +78474 : 27.777 : -97.463213 : Corpus Christi, TX +78475 : 27.777 : -97.463213 : Corpus Christi, TX +78476 : 27.777 : -97.463213 : Corpus Christi, TX +78477 : 27.777 : -97.463213 : Corpus Christi, TX +78478 : 27.777 : -97.463213 : Corpus Christi, TX +78480 : 27.777 : -97.463213 : Corpus Christi, TX +78501 : 26.213105 : -98.23579 : Mcallen, TX +78502 : 26.25671 : -98.198929 : Mcallen, TX +78503 : 26.172018 : -98.25042 : Mcallen, TX +78504 : 26.26273 : -98.23082 : Mcallen, TX +78505 : 26.409709 : -98.224206 : Mcallen, TX +78512 : 26.232613 : -98.348534 : Mission, TX +78516 : 26.175021 : -98.11969 : Alamo, TX +78520 : 25.928274 : -97.51618 : Brownsville, TX +78521 : 25.918758 : -97.42739 : Brownsville, TX +78522 : 26.188911 : -97.764271 : Brownsville, TX +78523 : 25.981006 : -97.520941 : Brownsville, TX +78526 : 25.969007 : -97.47211 : Brownsville, TX +78535 : 26.245051 : -97.74157 : Combes, TX +78536 : 26.421394 : -98.848757 : Delmita, TX +78537 : 26.165352 : -98.05568 : Donna, TX +78538 : 26.344688 : -97.96961 : Edcouch, TX +78539 : 26.344128 : -98.18011 : Edinburg, TX +78540 : 26.319405 : -98.190922 : Edinburg, TX +78541 : 26.319427 : -98.154881 : Edinburg, TX +78543 : 26.298611 : -97.99464 : Elsa, TX +78545 : 26.561861 : -99.13392 : Falcon Heights, TX +78547 : 26.321652 : -98.69525 : Garciasville, TX +78548 : 26.270824 : -98.64891 : Grulla, TX +78549 : 26.44489 : -98.01478 : Hargill, TX +78550 : 26.206602 : -97.68776 : Harlingen, TX +78551 : 26.244651 : -97.720569 : Harlingen, TX +78552 : 26.195591 : -97.75321 : Harlingen, TX +78553 : 26.125242 : -97.475663 : Harlingen, TX +78555 : 26.250709 : -97.711367 : McAllen, TX +78557 : 26.105725 : -98.24639 : Hidalgo, TX +78558 : 26.305113 : -98.03375 : La Blanca, TX +78559 : 26.149453 : -97.82923 : La Feria, TX +78560 : 26.244317 : -98.49574 : La Joya, TX +78561 : 26.561287 : -97.429952 : Lasara, TX +78562 : 26.301385 : -97.92547 : La Villa, TX +78563 : 26.633158 : -98.21578 : Linn, TX +78564 : 26.945418 : -99.203985 : Lopeno, TX +78565 : 26.247488 : -98.55962 : Los Ebanos, TX +78566 : 26.099562 : -97.43927 : Los Fresnos, TX +78567 : 26.041669 : -97.693736 : Los Indios, TX +78568 : 26.190402 : -97.542263 : Lozano, TX +78569 : 26.39381 : -97.7113 : Lyford, TX +78570 : 26.169728 : -97.91232 : Mercedes, TX +78571 : 30.916863 : -97.485039 : Salado, TX +78572 : 26.234417 : -98.34205 : Mission, TX +78573 : 26.409709 : -98.224206 : Mission, TX +78574 : 26.244013 : -98.31176 : Sebastian, TX +78575 : 26.023905 : -97.54457 : Olmito, TX +78576 : 26.24901 : -98.45014 : Penitas, TX +78577 : 26.201284 : -98.18619 : Pharr, TX +78578 : 26.080434 : -97.25024 : Port Isabel, TX +78579 : 26.087777 : -97.9719 : Progreso, TX +78580 : 26.500175 : -97.81013 : Raymondville, TX +78582 : 26.445982 : -98.69332 : Rio Grande City, TX +78583 : 26.259032 : -97.52948 : Rio Hondo, TX +78584 : 26.493058 : -99.00718 : Roma, TX +78585 : 26.510436 : -98.746365 : Salineno, TX +78586 : 26.111261 : -97.63519 : San Benito, TX +78587 : 26.316452 : -98.639793 : La Victoria, TX +78588 : 26.720155 : -98.46845 : San Isidro, TX +78589 : 26.190444 : -98.15301 : San Juan, TX +78590 : 26.455519 : -97.585805 : San Perlita, TX +78591 : 26.749896 : -98.583016 : Santa Elena, TX +78592 : 26.078355 : -97.84169 : Santa Maria, TX +78593 : 26.27109 : -97.82904 : Santa Rosa, TX +78594 : 26.344765 : -97.80031 : Sebastian, TX +78595 : 26.272363 : -98.5587 : Sullivan City, TX +78596 : 26.162609 : -97.98512 : Weslaco, TX +78597 : 26.117636 : -97.17019 : South Padre Island, TX +78598 : 26.558995 : -97.42738 : Port Mansfield, TX +78599 : 26.409709 : -98.224206 : Weslaco, TX +78602 : 30.120443 : -97.30991 : Bastrop, TX +78603 : 29.447211 : -97.494649 : Bebe, TX +78604 : 29.447211 : -97.494649 : Belmont, TX +78605 : 30.760216 : -98.03579 : Bertram, TX +78606 : 30.096855 : -98.43411 : Blanco, TX +78607 : 30.833543 : -98.47938 : Bluffton, TX +78608 : 30.9306 : -97.90929 : Briggs, TX +78609 : 30.744225 : -98.43167 : Buchanan Dam, TX +78610 : 30.07703 : -97.8178 : Buda, TX +78611 : 30.767327 : -98.30109 : Burnet, TX +78612 : 30.130116 : -97.49055 : Cedar Creek, TX +78613 : 30.501272 : -97.83087 : Cedar Park, TX +78614 : 29.406434 : -97.5869 : Cost, TX +78615 : 30.460373 : -97.3935 : Coupland, TX +78616 : 29.928764 : -97.56317 : Dale, TX +78617 : 30.166225 : -97.62496 : Del Valle, TX +78618 : 30.486818 : -99.17526 : Doss, TX +78619 : 30.103644 : -98.03875 : Driftwood, TX +78620 : 30.24108 : -98.10753 : Dripping Springs, TX +78621 : 30.338279 : -97.36611 : Elgin, TX +78622 : 29.760052 : -97.77727 : Fentress, TX +78623 : 29.960139 : -98.21846 : Fischer, TX +78624 : 30.279267 : -98.88389 : Fredericksburg, TX +78626 : 30.643058 : -97.64713 : Georgetown, TX +78627 : 30.673597 : -97.646143 : Georgetown, TX +78628 : 30.674349 : -97.72338 : Georgetown, TX +78629 : 29.510439 : -97.45352 : Gonzales, TX +78630 : 30.656817 : -97.602552 : Cedar Park, TX +78631 : 30.334152 : -99.2956 : Harper, TX +78632 : 29.698718 : -97.45739 : Harwood, TX +78634 : 30.540874 : -97.54611 : Hutto, TX +78635 : 30.217838 : -98.53788 : Hye, TX +78636 : 30.286655 : -98.39837 : Johnson City, TX +78638 : 29.655639 : -97.77219 : Kingsbury, TX +78639 : 30.663209 : -98.44588 : Kingsland, TX +78640 : 29.996916 : -97.84756 : Kyle, TX +78641 : 30.547001 : -97.87006 : Leander, TX +78642 : 30.702882 : -97.9269 : Liberty Hill, TX +78643 : 30.721302 : -98.66557 : Llano, TX +78644 : 29.872165 : -97.68093 : Lockhart, TX +78645 : 30.453776 : -97.97507 : Leander, TX +78646 : 30.656817 : -97.602552 : Leander, TX +78648 : 29.694257 : -97.6533 : Luling, TX +78650 : 30.283941 : -97.23563 : McDade, TX +78651 : 30.326374 : -97.771258 : McNeil, TX +78652 : 30.12848 : -97.8438 : Manchaca, TX +78653 : 30.351225 : -97.54731 : Manor, TX +78654 : 30.566681 : -98.30756 : Marble Falls, TX +78655 : 29.838163 : -97.84178 : Martindale, TX +78656 : 29.887939 : -97.83613 : Maxwell, TX +78657 : 30.538867 : -98.36511 : Marble Falls, TX +78658 : 29.592212 : -97.58922 : Ottine, TX +78659 : 30.210685 : -97.11662 : Paige, TX +78660 : 30.450122 : -97.623 : Pflugerville, TX +78661 : 29.72057 : -97.73519 : Prairie Lea, TX +78662 : 29.950887 : -97.42728 : Red Rock, TX +78663 : 30.44858 : -98.38421 : Round Mountain, TX +78664 : 30.514401 : -97.65549 : Round Rock, TX +78665 : 30.219829 : -98.358613 : Sandy, TX +78666 : 29.876944 : -97.94668 : San Marcos, TX +78667 : 30.054378 : -98.003574 : San Marcos, TX +78669 : 30.427733 : -98.08062 : Spicewood, TX +78670 : 29.777564 : -97.81966 : Staples, TX +78671 : 30.230188 : -98.62152 : Stonewall, TX +78672 : 30.864936 : -98.45361 : Tow, TX +78673 : 30.741495 : -97.589147 : Walburg, TX +78674 : 30.674667 : -97.59286 : Weir, TX +78675 : 30.460464 : -98.71911 : Willow City, TX +78676 : 30.022492 : -98.13294 : Wimberley, TX +78677 : 29.447211 : -97.494649 : Wrightsboro, TX +78680 : 30.656817 : -97.602552 : Round Rock, TX +78681 : 30.518975 : -97.71439 : Round Rock, TX +78682 : 30.656817 : -97.602552 : Round Rock, TX +78683 : 30.656817 : -97.602552 : Round Rock, TX +78691 : 30.326374 : -97.771258 : Pflugerville, TX +78701 : 30.27127 : -97.74103 : Austin, TX +78702 : 30.265158 : -97.71879 : Austin, TX +78703 : 30.290907 : -97.76277 : Austin, TX +78704 : 30.246309 : -97.76087 : Austin, TX +78705 : 30.292424 : -97.73856 : Austin, TX +78708 : 30.326374 : -97.771258 : Austin, TX +78709 : 30.326374 : -97.771258 : Austin, TX +78710 : 30.351953 : -97.715123 : Austin, TX +78711 : 30.326374 : -97.771258 : Austin, TX +78712 : 30.285207 : -97.735394 : Austin, TX +78713 : 30.468583 : -97.843336 : Austin, TX +78714 : 30.335787 : -97.443751 : Austin, TX +78715 : 30.450088 : -97.486509 : Austin, TX +78716 : 30.316223 : -97.85877 : Austin, TX +78717 : 30.494623 : -97.75687 : Austin, TX +78718 : 30.326374 : -97.771258 : Austin, TX +78719 : 30.163458 : -97.67711 : Austin, TX +78720 : 30.326374 : -97.771258 : Austin, TX +78721 : 30.272926 : -97.68665 : Austin, TX +78722 : 30.289307 : -97.71659 : Austin, TX +78723 : 30.306507 : -97.68651 : Austin, TX +78724 : 30.294148 : -97.62863 : Austin, TX +78725 : 30.231583 : -97.60992 : Austin, TX +78726 : 30.439053 : -97.83503 : Austin, TX +78727 : 30.425652 : -97.71419 : Austin, TX +78728 : 30.451803 : -97.67989 : Austin, TX +78729 : 30.451348 : -97.76588 : Austin, TX +78730 : 30.359935 : -97.83125 : Austin, TX +78731 : 30.344305 : -97.7638 : Austin, TX +78732 : 30.382724 : -97.89459 : Austin, TX +78733 : 30.329704 : -97.8751 : Austin, TX +78734 : 30.378675 : -97.95028 : Austin, TX +78735 : 30.250761 : -97.84469 : Austin, TX +78736 : 30.245558 : -97.94177 : Austin, TX +78737 : 30.19025 : -97.95854 : Austin, TX +78738 : 30.340111 : -97.98869 : Austin, TX +78739 : 30.17207 : -97.87284 : Austin, TX +78741 : 30.231252 : -97.716 : Austin, TX +78742 : 30.23358 : -97.67831 : Austin, TX +78744 : 30.188377 : -97.74038 : Austin, TX +78745 : 30.207559 : -97.79575 : Austin, TX +78746 : 30.287739 : -97.8022 : Austin, TX +78747 : 30.132855 : -97.76187 : Austin, TX +78748 : 30.17202 : -97.82265 : Austin, TX +78749 : 30.216108 : -97.85828 : Austin, TX +78750 : 30.438933 : -97.80383 : Austin, TX +78751 : 30.310707 : -97.723 : Austin, TX +78752 : 30.332506 : -97.70571 : Austin, TX +78753 : 30.374654 : -97.67621 : Austin, TX +78754 : 30.354234 : -97.64679 : Austin, TX +78755 : 30.326374 : -97.771258 : Austin, TX +78756 : 30.320206 : -97.74177 : Austin, TX +78757 : 30.349455 : -97.73328 : Austin, TX +78758 : 30.384204 : -97.70392 : Austin, TX +78759 : 30.406169 : -97.75743 : Austin, TX +78760 : 30.326374 : -97.771258 : Austin, TX +78761 : 30.326374 : -97.771258 : Austin, TX +78762 : 30.326374 : -97.771258 : Austin, TX +78763 : 30.335398 : -97.559807 : Austin, TX +78764 : 30.445502 : -97.659533 : Austin, TX +78765 : 30.326374 : -97.771258 : Austin, TX +78766 : 30.442202 : -97.62333 : Austin, TX +78767 : 30.222007 : -97.896285 : Austin, TX +78768 : 30.326374 : -97.771258 : Austin, TX +78769 : 30.326374 : -97.771258 : Austin, TX +78771 : 30.326374 : -97.771258 : Austin, TX +78772 : 30.326374 : -97.771258 : Austin, TX +78773 : 30.326374 : -97.771258 : Austin, TX +78774 : 30.326374 : -97.771258 : Austin, TX +78778 : 30.326374 : -97.771258 : Austin, TX +78779 : 30.326374 : -97.771258 : Austin, TX +78780 : 30.326374 : -97.771258 : Austin, TX +78781 : 30.326374 : -97.771258 : Austin, TX +78782 : 30.326374 : -97.771258 : Austin, TX +78783 : 30.326374 : -97.771258 : Austin, TX +78785 : 30.326374 : -97.771258 : Austin, TX +78786 : 30.326374 : -97.771258 : Austin, TX +78787 : 30.326374 : -97.771258 : Austin, TX +78788 : 30.326374 : -97.771258 : Austin, TX +78789 : 30.326374 : -97.771258 : Austin, TX +78801 : 29.252882 : -99.8165 : Uvalde, TX +78802 : 29.223697 : -99.779351 : Uvalde, TX +78827 : 28.442081 : -99.76064 : Asherton, TX +78828 : 29.782887 : -100.08547 : Barksdale, TX +78829 : 28.883474 : -99.58416 : Batesville, TX +78830 : 28.555795 : -99.50744 : Big Wells, TX +78832 : 29.313559 : -100.42452 : Brackettville, TX +78833 : 29.664428 : -99.99968 : Camp Wood, TX +78834 : 28.524292 : -99.83827 : Carrizo Springs, TX +78835 : 30.178439 : -96.591092 : Burton, TX +78836 : 28.34884 : -99.61238 : Catarina, TX +78837 : 29.933388 : -101.40061 : Comstock, TX +78838 : 29.541648 : -99.71817 : Concan, TX +78839 : 28.68906 : -99.81278 : Crystal City, TX +78840 : 29.404267 : -100.88116 : Del Rio, TX +78841 : 29.346518 : -100.928864 : Del Rio, TX +78842 : 29.411955 : -100.934216 : Del Rio, TX +78843 : 29.356379 : -100.79269 : Laughlin A F B, TX +78847 : 29.763171 : -101.230032 : Del Rio, TX +78850 : 29.334701 : -99.33534 : D Hanis, TX +78851 : 30.075997 : -101.95574 : Dryden, TX +78852 : 28.716242 : -100.48058 : Eagle Pass, TX +78853 : 28.679006 : -100.478373 : Eagle Pass, TX +78860 : 28.513787 : -100.31647 : El Indio, TX +78861 : 29.379516 : -99.12665 : Hondo, TX +78870 : 29.297821 : -99.62754 : Knippa, TX +78871 : 29.763171 : -101.230032 : Langtry, TX +78872 : 28.950547 : -99.85032 : La Pryor, TX +78873 : 29.756509 : -99.76665 : Leakey, TX +78877 : 28.917675 : -100.60332 : Quemado, TX +78879 : 29.628266 : -99.73847 : Rio Frio, TX +78880 : 30.065334 : -100.17202 : Rocksprings, TX +78881 : 29.361493 : -99.50497 : Sabinal, TX +78883 : 29.671077 : -99.34384 : Tarpley, TX +78884 : 29.634216 : -99.48894 : Utopia, TX +78885 : 29.785042 : -99.55361 : Vanderpool, TX +78886 : 29.143045 : -99.19045 : Yancey, TX +78931 : 29.849283 : -96.313271 : Bleiblerville, TX +78932 : 30.141287 : -96.6909 : Carmine, TX +78933 : 29.773128 : -96.39342 : Cat Spring, TX +78934 : 29.712052 : -96.56134 : Columbus, TX +78935 : 29.698797 : -96.45594 : Alleyton, TX +78938 : 29.838528 : -96.70389 : Ellinger, TX +78940 : 29.941521 : -96.65977 : Fayetteville, TX +78941 : 29.719856 : -97.1249 : Flatonia, TX +78942 : 30.182175 : -96.93171 : Giddings, TX +78943 : 29.699797 : -96.59314 : Glidden, TX +78944 : 29.975083 : -96.50081 : Industry, TX +78945 : 29.909764 : -96.8745 : La Grange, TX +78946 : 30.186858 : -96.78185 : Ledbetter, TX +78947 : 30.414806 : -97.03904 : Lexington, TX +78948 : 30.2984 : -96.95358 : Lincoln, TX +78949 : 29.847433 : -97.07988 : Muldoon, TX +78950 : 29.909257 : -96.49617 : New Ulm, TX +78951 : 29.60466 : -96.524899 : Oakland, TX +78952 : 29.896219 : -96.943868 : Plum, TX +78953 : 29.846862 : -97.3318 : Rosanky, TX +78954 : 30.057137 : -96.67796 : Round Top, TX +78956 : 29.680723 : -96.91964 : Schulenburg, TX +78957 : 30.010487 : -97.16036 : Smithville, TX +78959 : 29.697311 : -97.29077 : Waelder, TX +78960 : 30.070257 : -96.91939 : Warda, TX +78961 : 29.665518 : -97.039741 : Round Top, TX +78962 : 29.698373 : -96.75932 : Weimar, TX +78963 : 29.930184 : -97.0269 : West Point, TX +78972 : 30.31536 : -97.663293 : Austin, TX +79001 : 35.2195 : -102.71795 : Adrian, TX +79002 : 35.201105 : -100.74939 : Alanreed, TX +79003 : 35.629034 : -100.09291 : Allison, TX +79005 : 36.427031 : -100.51097 : Booker, TX +79007 : 35.665899 : -101.40666 : Borger, TX +79008 : 35.631621 : -101.599447 : Borger, TX +79009 : 34.51748 : -102.89478 : Bovina, TX +79010 : 35.459732 : -102.14757 : Boys Ranch, TX +79011 : 35.662917 : -100.21999 : Briscoe, TX +79012 : 35.191525 : -102.08831 : Bushland, TX +79013 : 36.044769 : -102.01155 : Cactus, TX +79014 : 35.866528 : -100.31313 : Canadian, TX +79015 : 34.971029 : -101.9212 : Canyon, TX +79016 : 34.96539 : -101.895894 : Canyon, TX +79018 : 35.718644 : -102.25186 : Channing, TX +79019 : 35.062127 : -101.41617 : Claude, TX +79021 : 33.980231 : -102.02668 : Cotton Center, TX +79022 : 36.090281 : -102.60769 : Dalhart, TX +79024 : 36.441178 : -100.33123 : Darrouzett, TX +79025 : 34.92765 : -102.21997 : Dawn, TX +79027 : 34.539266 : -102.37108 : Dimmitt, TX +79029 : 35.893121 : -101.95908 : Dumas, TX +79031 : 34.235871 : -102.40636 : Earth, TX +79032 : 34.281443 : -101.898 : Edmonson, TX +79033 : 36.317403 : -100.97272 : Farnsworth, TX +79034 : 36.397469 : -100.16168 : Follett, TX +79035 : 34.631714 : -102.72658 : Friona, TX +79036 : 35.625603 : -101.61413 : Fritch, TX +79039 : 35.235628 : -101.10183 : Groom, TX +79040 : 36.27128 : -101.49483 : Gruver, TX +79041 : 34.043076 : -101.89695 : Hale Center, TX +79042 : 34.759887 : -101.83116 : Happy, TX +79043 : 34.423414 : -102.12132 : Hart, TX +79044 : 35.890235 : -102.3595 : Hartley, TX +79045 : 34.854898 : -102.41824 : Hereford, TX +79046 : 36.113986 : -100.09235 : Higgins, TX +79051 : 36.531076 : -102.33198 : Kerrick, OK +79052 : 34.356732 : -101.76769 : Kress, TX +79053 : 34.39174 : -102.60242 : Lazbuddie, TX +79054 : 35.444006 : -100.80119 : Lefors, TX +79056 : 36.232046 : -100.27971 : Lipscomb, TX +79057 : 35.263424 : -100.61635 : Mclean, TX +79058 : 35.837775 : -101.892846 : Masterson, TX +79059 : 35.724847 : -100.6961 : Miami, TX +79061 : 35.534558 : -100.44105 : Mobeetie, TX +79062 : 36.004239 : -101.54672 : Morse, TX +79063 : 34.543766 : -102.12349 : Nazareth, TX +79064 : 34.18788 : -102.13325 : Olton, TX +79065 : 35.533093 : -100.96041 : Pampa, TX +79066 : 35.533384 : -100.956013 : Pampa, TX +79068 : 35.335288 : -101.39752 : Panhandle, TX +79070 : 36.336972 : -100.82966 : Perryton, TX +79072 : 34.191002 : -101.72506 : Plainview, TX +79073 : 34.068903 : -101.826997 : Plainview, TX +79077 : 34.840485 : -100.204928 : Samnorwood, TX +79078 : 35.71177 : -101.54716 : Sanford, TX +79079 : 35.227015 : -100.27501 : Shamrock, TX +79080 : 35.655035 : -101.22477 : Skellytown, TX +79081 : 36.185112 : -101.18783 : Spearman, TX +79082 : 34.209814 : -102.29761 : Springlake, TX +79083 : 35.844445 : -101.48031 : Stinnett, TX +79084 : 36.28116 : -102.02187 : Stratford, TX +79085 : 34.743735 : -102.506442 : Summerfield, TX +79086 : 36.057372 : -101.76599 : Sunray, TX +79087 : 36.316305 : -102.97676 : Texline, TX +79088 : 34.541042 : -101.72921 : Tulia, TX +79091 : 34.938094 : -102.11087 : Umbarger, TX +79092 : 35.209649 : -102.42611 : Vega, TX +79093 : 36.280101 : -101.04673 : Waka, TX +79094 : 34.965329 : -101.357838 : Wayside, TX +79095 : 34.858194 : -100.20763 : Wellington, TX +79096 : 35.459147 : -100.20106 : Wheeler, TX +79097 : 35.432364 : -101.16687 : White Deer, TX +79098 : 35.151101 : -102.18977 : Wildorado, TX +79101 : 35.206402 : -101.83924 : Amarillo, TX +79102 : 35.197852 : -101.84543 : Amarillo, TX +79103 : 35.184253 : -101.81073 : Amarillo, TX +79104 : 35.199652 : -101.79486 : Amarillo, TX +79105 : 35.401475 : -101.895089 : Amarillo, TX +79106 : 35.204652 : -101.88353 : Amarillo, TX +79107 : 35.228302 : -101.81946 : Amarillo, TX +79108 : 35.296948 : -101.78641 : Amarillo, TX +79109 : 35.171903 : -101.87581 : Amarillo, TX +79110 : 35.157403 : -101.86114 : Amarillo, TX +79111 : 35.226552 : -101.67875 : Amarillo, TX +79114 : 35.050003 : -101.817485 : Amarillo, TX +79116 : 35.245398 : -101.999047 : Amarillo, TX +79117 : 35.308889 : -101.843033 : Amarillo, TX +79118 : 35.100501 : -101.80606 : Amarillo, TX +79119 : 35.097488 : -101.98105 : Amarillo, TX +79120 : 35.196352 : -101.803412 : Amarillo, TX +79121 : 35.173704 : -101.92914 : Amarillo, TX +79123 : 35.401475 : -101.895089 : Amarillo, TX +79124 : 35.244819 : -101.95391 : Amarillo, TX +79159 : 35.216029 : -102.071415 : Amarillo, TX +79160 : 35.401475 : -101.895089 : Amarillo, TX +79163 : 35.401475 : -101.895089 : Amarillo, TX +79164 : 35.401475 : -101.895089 : Amarillo, TX +79165 : 35.401475 : -101.895089 : Amarillo, TX +79166 : 35.401475 : -101.895089 : Amarillo, TX +79167 : 35.401475 : -101.895089 : Amarillo, TX +79168 : 35.401475 : -101.895089 : Amarillo, TX +79170 : 35.401475 : -101.895089 : Amarillo, TX +79171 : 35.401475 : -101.895089 : Amarillo, TX +79172 : 35.401475 : -101.895089 : Amarillo, TX +79174 : 35.401475 : -101.895089 : Amarillo, TX +79175 : 35.401475 : -101.895089 : Amarillo, TX +79178 : 35.401475 : -101.895089 : Amarillo, TX +79180 : 35.401475 : -101.895089 : Amarillo, TX +79181 : 35.401475 : -101.895089 : Amarillo, TX +79182 : 35.401475 : -101.895089 : Amarillo, TX +79184 : 35.401475 : -101.895089 : Amarillo, TX +79185 : 35.401475 : -101.895089 : Amarillo, TX +79186 : 35.401475 : -101.895089 : Amarillo, TX +79187 : 35.401475 : -101.895089 : Amarillo, TX +79189 : 35.401475 : -101.895089 : Amarillo, TX +79201 : 34.38587 : -100.28401 : Childress, TX +79220 : 33.749303 : -100.76393 : Afton, TX +79221 : 34.071514 : -101.30313 : Aiken, TX +79222 : 34.529678 : -100.207642 : Carey, TX +79223 : 34.216509 : -100.47198 : Cee Vee, TX +79224 : 34.074854 : -100.258156 : Chalk, TX +79225 : 34.261752 : -99.5202 : Chillicothe, TX +79226 : 34.971719 : -100.90662 : Clarendon, TX +79227 : 33.929907 : -99.74194 : Crowell, TX +79229 : 33.654512 : -100.75517 : Dickens, TX +79230 : 34.698438 : -100.06623 : Dodson, TX +79231 : 33.943005 : -101.09236 : Dougherty, TX +79232 : 33.773871 : -100.61443 : Dumont, TX +79233 : 34.545031 : -100.43729 : Estelline, TX +79234 : 34.241416 : -100.93789 : Flomot, TX +79235 : 33.941748 : -101.30072 : Floydada, TX +79236 : 33.652122 : -100.35199 : Guthrie, TX +79237 : 34.874151 : -100.63288 : Hedley, TX +79238 : 34.529678 : -100.207642 : Kirkland, TX +79239 : 34.637427 : -100.76388 : Lakeview, TX +79240 : 34.896396 : -100.76721 : Lelia Lake, TX +79241 : 34.192619 : -101.38934 : Lockney, TX +79243 : 33.787306 : -100.98464 : Mcadoo, TX +79244 : 34.070936 : -100.82488 : Matador, TX +79245 : 34.715551 : -100.53964 : Memphis, TX +79247 : 34.345924 : -99.41669 : Odell, TX +79248 : 34.006473 : -100.21246 : Paducah, TX +79250 : 33.870404 : -101.60467 : Petersburg, TX +79251 : 34.975549 : -100.44628 : Quail, TX +79252 : 34.297126 : -99.77713 : Quanah, TX +79255 : 34.362997 : -101.05209 : Quitaque, TX +79256 : 33.915528 : -100.81731 : Roaring Springs, TX +79257 : 34.444761 : -101.32582 : Silverton, TX +79258 : 34.071514 : -101.30313 : South Plains, TX +79259 : 34.391847 : -100.40597 : Tell, TX +79261 : 34.408268 : -100.87132 : Turkey, TX +79301 : 34.230527 : -102.41085 : Earth, TX +79311 : 33.857895 : -101.88156 : Abernathy, TX +79312 : 34.017448 : -102.3858 : Amherst, TX +79313 : 33.823216 : -102.16413 : Anton, TX +79314 : 33.616833 : -103.01952 : Bledsoe, TX +79316 : 33.153528 : -102.29568 : Brownfield, TX +79320 : 33.861914 : -102.67355 : Bula, TX +79321 : 34.061309 : -102.521814 : Sudan, TX +79322 : 33.653787 : -101.22866 : Crosbyton, TX +79323 : 32.976623 : -102.84661 : Denver City, TX +79324 : 33.895013 : -102.78117 : Enochs, TX +79325 : 34.389202 : -102.89928 : Farwell, TX +79326 : 34.04877 : -102.20958 : Fieldton, TX +79329 : 33.701827 : -101.69093 : Idalou, TX +79330 : 33.04993 : -101.14146 : Justiceburg, TX +79331 : 32.714521 : -101.94086 : Lamesa, TX +79336 : 33.609208 : -102.41478 : Levelland, TX +79338 : 33.593213 : -102.362709 : Levelland, TX +79339 : 33.894823 : -102.32282 : Littlefield, TX +79342 : 32.893447 : -102.30958 : Loop, TX +79343 : 33.605628 : -101.5205 : Lorenzo, TX +79344 : 33.855245 : -102.95319 : Maple, TX +79345 : 33.344598 : -102.28814 : Meadow, TX +79346 : 33.688713 : -102.81775 : Morton, TX +79347 : 34.206848 : -102.78511 : Muleshoe, TX +79350 : 33.751374 : -101.83672 : New Deal, TX +79351 : 32.951473 : -101.83895 : Odonnell, TX +79353 : 33.783555 : -102.59146 : Pep, TX +79355 : 33.16997 : -102.86992 : Plains, TX +79356 : 33.245276 : -101.37638 : Post, TX +79357 : 33.667836 : -101.38794 : Ralls, TX +79358 : 33.425342 : -102.16505 : Ropesville, TX +79359 : 32.922387 : -102.56265 : Seagraves, TX +79360 : 32.718232 : -102.73458 : Seminole, TX +79363 : 33.701024 : -102.01948 : Shallowater, TX +79364 : 33.437291 : -101.65054 : Slaton, TX +79366 : 33.531908 : -101.69479 : Ransom Canyon, TX +79367 : 33.588639 : -102.16126 : Smyer, TX +79368 : 33.044702 : -102.099276 : Seminole, TX +79369 : 33.91843 : -102.15822 : Spade, TX +79370 : 33.478848 : -100.89669 : Spur, TX +79371 : 34.068183 : -102.52625 : Sudan, TX +79372 : 33.45798 : -102.48829 : Sundown, TX +79373 : 33.199867 : -101.81949 : Tahoka, TX +79376 : 33.203713 : -102.62018 : Tokio, TX +79377 : 32.931786 : -102.14673 : Welch, TX +79378 : 33.037656 : -102.44248 : Wellman, TX +79379 : 33.600017 : -102.61953 : Whiteface, TX +79380 : 33.733418 : -102.33103 : Whitharral, TX +79381 : 33.327782 : -101.76906 : Wilson, TX +79382 : 33.483465 : -102.02033 : Wolfforth, TX +79383 : 33.330983 : -101.91065 : New Home, TX +79401 : 33.578935 : -101.8316 : Lubbock, TX +79402 : 33.592235 : -101.851144 : Lubbock, TX +79403 : 33.614934 : -101.8067 : Lubbock, TX +79404 : 33.549785 : -101.82634 : Lubbock, TX +79405 : 33.570035 : -101.84984 : Lubbock, TX +79406 : 33.583798 : -101.87525 : Lubbock, TX +79407 : 33.567134 : -101.98329 : Lubbock, TX +79408 : 33.565926 : -101.92669 : Lubbock, TX +79409 : 33.610018 : -101.821292 : Lubbock, TX +79410 : 33.570135 : -101.88901 : Lubbock, TX +79411 : 33.570435 : -101.86184 : Lubbock, TX +79412 : 33.549135 : -101.85846 : Lubbock, TX +79413 : 33.547735 : -101.88881 : Lubbock, TX +79414 : 33.550335 : -101.91661 : Lubbock, TX +79415 : 33.62386 : -101.88057 : Lubbock, TX +79416 : 33.591877 : -101.94754 : Lubbock, TX +79423 : 33.496603 : -101.86923 : Lubbock, TX +79424 : 33.513337 : -101.93239 : Lubbock, TX +79430 : 33.610018 : -101.821292 : Lubbock, TX +79452 : 33.610018 : -101.821292 : Lubbock, TX +79453 : 33.610018 : -101.821292 : Lubbock, TX +79457 : 33.610018 : -101.821292 : Lubbock, TX +79464 : 33.489623 : -102.010895 : Lubbock, TX +79490 : 33.610018 : -101.821292 : Lubbock, TX +79491 : 33.610018 : -101.821292 : Lubbock, TX +79493 : 33.610018 : -101.821292 : Lubbock, TX +79499 : 33.610018 : -101.821292 : Lubbock, TX +79501 : 32.754555 : -99.89507 : Anson, TX +79502 : 33.151713 : -100.25449 : Aspermont, TX +79503 : 32.882154 : -99.69298 : Avoca, TX +79504 : 32.333638 : -99.35055 : Baird, TX +79505 : 33.565259 : -99.84811 : Benjamin, TX +79506 : 32.106949 : -100.31228 : Blackwell, TX +79508 : 32.280068 : -99.82808 : Buffalo Gap, TX +79510 : 32.337156 : -99.51701 : Clyde, TX +79511 : 32.38737 : -101.28147 : Coahoma, TX +79512 : 32.368824 : -100.93689 : Colorado City, TX +79516 : 32.747707 : -100.9153 : Dunn, TX +79517 : 32.883354 : -101.20597 : Fluvanna, TX +79518 : 33.361766 : -100.6895 : Girard, TX +79519 : 32.043108 : -99.70865 : Goldsboro, TX +79520 : 32.88019 : -100.13583 : Hamlin, TX +79521 : 33.147497 : -99.70246 : Haskell, TX +79525 : 32.616906 : -99.82211 : Hawley, TX +79526 : 32.627475 : -100.76416 : Hermleigh, TX +79527 : 32.584546 : -101.06523 : Ira, TX +79528 : 33.238378 : -100.57389 : Jayton, TX +79529 : 33.423156 : -99.82014 : Knox City, TX +79530 : 32.128112 : -99.7639 : Lawn, TX +79532 : 32.409433 : -100.71285 : Loraine, TX +79533 : 32.80699 : -99.60862 : Lueders, TX +79534 : 32.766833 : -100.21048 : McCaulley, TX +79535 : 32.249241 : -100.449 : Maryneal, TX +79536 : 32.473679 : -100.02753 : Merkel, TX +79537 : 32.269772 : -100.23572 : Nolan, TX +79538 : 32.011087 : -99.63167 : Novice, TX +79539 : 33.379469 : -99.89708 : O Brien, TX +79540 : 33.151135 : -100.04142 : Old Glory, TX +79541 : 32.151983 : -99.84483 : Ovalo, TX +79543 : 32.739964 : -100.38106 : Roby, TX +79544 : 33.308203 : -99.86203 : Rochester, TX +79545 : 32.422985 : -100.55397 : Roscoe, TX +79546 : 32.87144 : -100.46635 : Rotan, TX +79547 : 33.196822 : -99.90554 : Rule, TX +79548 : 33.067644 : -99.94686 : Rule, TX +79549 : 32.760229 : -100.95344 : Snyder, TX +79550 : 32.747707 : -100.9153 : Snyder, TX +79552 : 32.944761 : -99.800304 : Stamford, TX +79553 : 32.943145 : -99.81595 : Stamford, TX +79556 : 32.465621 : -100.39814 : Sweetwater, TX +79560 : 32.684029 : -100.1998 : Sylvester, TX +79561 : 32.504094 : -100.15822 : Trent, TX +79562 : 32.230821 : -99.90025 : Tuscola, TX +79563 : 32.442465 : -99.87238 : Tye, TX +79565 : 32.358785 : -101.07207 : Westbrook, TX +79566 : 32.109191 : -100.10582 : Wingate, TX +79567 : 31.965685 : -99.93471 : Winters, TX +79571 : 33.158381 : -99.718725 : Haskell, TX +79601 : 32.500532 : -99.69803 : Abilene, TX +79602 : 32.40769 : -99.72107 : Abilene, TX +79603 : 32.466724 : -99.76927 : Abilene, TX +79604 : 32.428796 : -99.795167 : Abilene, TX +79605 : 32.432975 : -99.77096 : Abilene, TX +79606 : 32.360362 : -99.79886 : Abilene, TX +79607 : 32.417269 : -99.82203 : Dyess AFB, TX +79608 : 32.302132 : -99.890737 : Abilene, TX +79643 : 30.711061 : -101.215979 : Ozona, TX +79697 : 32.302132 : -99.890737 : Abilene, TX +79698 : 32.475074 : -99.73484 : Abilene, TX +79699 : 32.466474 : -99.711665 : Abilene, TX +79701 : 31.995623 : -102.08108 : Midland, TX +79702 : 31.963698 : -102.080064 : Midland, TX +79703 : 31.984823 : -102.13015 : Midland, TX +79704 : 31.869259 : -102.031726 : Midland, TX +79705 : 32.029022 : -102.08618 : Midland, TX +79706 : 31.880341 : -101.96324 : Midland, TX +79707 : 32.021056 : -102.16008 : Midland, TX +79708 : 31.869259 : -102.031726 : Midland, TX +79710 : 31.869259 : -102.031726 : Midland, TX +79711 : 31.869259 : -102.031726 : Midland, TX +79712 : 31.869259 : -102.031726 : Midland, TX +79713 : 32.520297 : -101.73528 : Ackerly, TX +79714 : 32.345871 : -102.56767 : Andrews, TX +79718 : 30.966245 : -103.73108 : Balmorhea, TX +79719 : 31.461562 : -103.39895 : Barstow, TX +79720 : 32.21649 : -101.4532 : Big Spring, TX +79721 : 32.27328 : -101.373968 : Big Spring, TX +79730 : 31.17942 : -103.03594 : Coyanosa, TX +79731 : 31.389079 : -102.35059 : Crane, TX +79733 : 32.110298 : -101.3655 : Forsan, TX +79734 : 30.626134 : -103.98274 : Fort Davis, TX +79735 : 30.877528 : -102.852 : Fort Stockton, TX +79738 : 32.723865 : -101.45811 : Gail, TX +79739 : 31.807661 : -101.51475 : Garden City, TX +79740 : 31.019602 : -102.47675 : Girvin, TX +79741 : 31.983989 : -102.64729 : Goldsmith, TX +79742 : 31.34197 : -102.8564 : Grandfalls, TX +79743 : 31.253704 : -102.696 : Imperial, TX +79744 : 30.899378 : -101.98029 : Iraan, TX +79745 : 31.847071 : -103.08399 : Kermit, TX +79748 : 32.388962 : -101.66373 : Knott, TX +79749 : 32.255909 : -101.81824 : Lenorah, TX +79752 : 31.156902 : -102.19598 : McCamey, TX +79754 : 31.72285 : -103.57449 : Mentone, TX +79755 : 31.608083 : -101.86524 : Midkiff, TX +79756 : 31.568459 : -102.89658 : Monahans, TX +79757 : 31.566763 : -103.014646 : Wickett, TX +79758 : 32.020274 : -102.35512 : Gardendale, TX +79759 : 31.840191 : -102.74709 : Notrees, TX +79760 : 31.765163 : -102.354346 : Odessa, TX +79761 : 31.854455 : -102.35906 : Odessa, TX +79762 : 31.890374 : -102.35398 : Odessa, TX +79763 : 31.817344 : -102.42315 : Odessa, TX +79764 : 31.86577 : -102.45367 : Odessa, TX +79765 : 31.910706 : -102.28644 : Odessa, TX +79766 : 31.749504 : -102.32177 : Odessa, TX +79768 : 31.869142 : -102.542944 : Odessa, TX +79769 : 31.746572 : -102.566993 : Odessa, TX +79770 : 31.383297 : -103.556598 : Orla, TX +79772 : 31.388404 : -103.52515 : Pecos, TX +79776 : 31.730204 : -102.62831 : Penwell, TX +79777 : 31.535153 : -103.12722 : Pyote, TX +79778 : 31.2244 : -101.94317 : Rankin, TX +79779 : 31.459448 : -103.188993 : Royalty, TX +79780 : 31.026706 : -103.65509 : Saragosa, TX +79781 : 30.703917 : -101.87223 : Sheffield, TX +79782 : 32.09023 : -101.81691 : Stanton, TX +79783 : 32.369835 : -102.03317 : Tarzan, TX +79785 : 31.306912 : -103.79377 : Toyah, TX +79786 : 31.383297 : -103.556598 : Toyahvale, TX +79788 : 31.569032 : -103.00689 : Wickett, TX +79789 : 31.753101 : -103.15737 : Wink, TX +79821 : 31.977553 : -106.60469 : Anthony, TX +79830 : 30.011559 : -103.56444 : Alpine, TX +79831 : 30.349136 : -103.69271 : Alpine, TX +79832 : 30.363139 : -103.653904 : Alpine, TX +79834 : 29.321321 : -103.21085 : Big Bend National Park, TX +79835 : 31.932926 : -106.59577 : Canutillo, TX +79836 : 31.570185 : -106.2133 : Clint, TX +79837 : 31.937024 : -105.19353 : Dell City, TX +79838 : 31.490587 : -106.15381 : Fabens, TX +79839 : 31.270689 : -105.6653 : Fort Hancock, TX +79841 : 32.624796 : -103.597991 : Sierra Blanca, TX +79842 : 30.12169 : -103.22091 : Marathon, TX +79843 : 30.217129 : -104.22045 : Marfa, TX +79845 : 29.597409 : -104.27058 : Presidio, TX +79846 : 29.444333 : -104.11628 : Redford, TX +79847 : 31.820395 : -105.30882 : Salt Flat, TX +79848 : 30.144953 : -102.39894 : Sanderson, TX +79849 : 31.577344 : -106.2672 : San Elizario, TX +79850 : 29.943719 : -104.386683 : Shafter, TX +79851 : 31.182009 : -105.34084 : Sierra Blanca, TX +79852 : 29.441286 : -103.63643 : Terlingua, TX +79853 : 31.447738 : -106.09049 : Tornillo, TX +79854 : 30.647349 : -104.52192 : Valentine, TX +79855 : 31.099326 : -104.69511 : Van Horn, TX +79858 : 31.509199 : -106.151727 : Fabens, TX +79870 : 30.354251 : -103.658391 : Alpine, TX +79901 : 31.759558 : -106.48011 : El Paso, TX +79902 : 31.775458 : -106.4945 : El Paso, TX +79903 : 31.786221 : -106.44583 : El Paso, TX +79904 : 31.852156 : -106.44181 : El Paso, TX +79905 : 31.768758 : -106.43047 : El Paso, TX +79906 : 31.809263 : -106.43081 : El Paso, TX +79907 : 31.70831 : -106.32749 : El Paso, TX +79908 : 31.912449 : -106.32501 : El Paso, TX +79910 : 31.694842 : -106.299987 : El Paso, TX +79911 : 31.694842 : -106.299987 : El Paso, TX +79912 : 31.848055 : -106.54487 : El Paso, TX +79913 : 31.93728 : -106.572393 : El Paso, TX +79914 : 31.694842 : -106.299987 : El Paso, TX +79915 : 31.743038 : -106.36957 : El Paso, TX +79916 : 31.744353 : -106.287923 : El Paso, TX +79917 : 31.694842 : -106.299987 : El Paso, TX +79918 : 31.831782 : -106.390656 : El Paso, TX +79920 : 31.821439 : -106.461405 : El Paso, TX +79922 : 31.789109 : -106.54291 : El Paso, NM +79923 : 31.694842 : -106.299987 : El Paso, TX +79924 : 31.901737 : -106.41827 : El Paso, TX +79925 : 31.782408 : -106.36353 : El Paso, TX +79926 : 31.694842 : -106.299987 : El Paso, TX +79927 : 31.684338 : -106.20788 : El Paso, TX +79928 : 31.674736 : -106.197528 : El Paso, TX +79929 : 31.694842 : -106.299987 : El Paso, TX +79930 : 31.803457 : -106.45758 : El Paso, TX +79931 : 31.694842 : -106.299987 : El Paso, TX +79932 : 31.865696 : -106.59982 : El Paso, TX +79934 : 31.943633 : -106.42402 : El Paso, TX +79935 : 31.784541 : -106.33705 : El Paso, TX +79936 : 31.766355 : -106.29828 : El Paso, TX +79937 : 31.694842 : -106.299987 : El Paso, TX +79938 : 31.852355 : -106.09325 : El Paso, TX +79940 : 31.694842 : -106.299987 : El Paso, TX +79941 : 31.694842 : -106.299987 : El Paso, TX +79942 : 31.694842 : -106.299987 : El Paso, TX +79943 : 31.694842 : -106.299987 : El Paso, TX +79944 : 31.694842 : -106.299987 : El Paso, TX +79945 : 31.694842 : -106.299987 : El Paso, TX +79946 : 31.694842 : -106.299987 : El Paso, TX +79947 : 31.694842 : -106.299987 : El Paso, TX +79948 : 31.694842 : -106.299987 : El Paso, TX +79949 : 31.694842 : -106.299987 : El Paso, TX +79950 : 31.694842 : -106.299987 : El Paso, TX +79951 : 31.694842 : -106.299987 : El Paso, TX +79952 : 31.694842 : -106.299987 : El Paso, TX +79953 : 31.694842 : -106.299987 : El Paso, TX +79954 : 31.694842 : -106.299987 : El Paso, TX +79955 : 31.694842 : -106.299987 : El Paso, TX +79958 : 31.694842 : -106.299987 : El Paso, TX +79960 : 31.694842 : -106.299987 : El Paso, TX +79961 : 31.694842 : -106.299987 : El Paso, TX +79966 : 31.694842 : -106.299987 : El Paso, TX +79968 : 31.770458 : -106.504843 : El Paso, TX +79973 : 31.694842 : -106.299987 : El Paso, TX +79974 : 31.694842 : -106.299987 : El Paso, TX +79975 : 31.694842 : -106.299987 : El Paso, TX +79976 : 31.694842 : -106.299987 : El Paso, TX +79977 : 31.694842 : -106.299987 : El Paso, TX +79978 : 31.799275 : -106.382757 : El Paso, TX +79980 : 31.694842 : -106.299987 : El Paso, TX +79982 : 31.694842 : -106.299987 : El Paso, TX +79983 : 31.694842 : -106.299987 : El Paso, TX +79984 : 31.694842 : -106.299987 : El Paso, TX +79985 : 31.694842 : -106.299987 : El Paso, TX +79986 : 31.694842 : -106.299987 : El Paso, TX +79987 : 31.694842 : -106.299987 : El Paso, TX +79988 : 31.694842 : -106.299987 : El Paso, TX +79989 : 31.694842 : -106.299987 : El Paso, TX +79990 : 31.694842 : -106.299987 : El Paso, TX +79991 : 31.694842 : -106.299987 : El Paso, TX +79992 : 31.694842 : -106.299987 : El Paso, TX +79993 : 31.694842 : -106.299987 : El Paso, TX +79994 : 31.694842 : -106.299987 : El Paso, TX +79995 : 31.694842 : -106.299987 : El Paso, TX +79996 : 31.694842 : -106.299987 : El Paso, TX +79997 : 31.694842 : -106.299987 : El Paso, TX +79998 : 31.694842 : -106.299987 : El Paso, TX +79999 : 31.694842 : -106.299987 : El Paso, TX +80000 : 39.669637 : -104.773083 : Aurora, CO +80001 : 39.522014 : -105.223945 : Arvada, CO +80002 : 39.795006 : -105.0981 : Arvada, CO +80003 : 39.825357 : -105.06439 : Arvada, CO +80004 : 39.81431 : -105.12263 : Arvada, CO +80005 : 39.843304 : -105.11896 : Arvada, CO +80006 : 39.522014 : -105.223945 : Arvada, CO +80007 : 39.833442 : -105.18591 : Arvada, CO +80010 : 39.739387 : -104.8621 : Aurora, CO +80011 : 39.739737 : -104.80905 : Aurora, CO +80012 : 39.698387 : -104.83956 : Aurora, CO +80013 : 39.659105 : -104.7791 : Aurora, CO +80014 : 39.665637 : -104.83421 : Aurora, CO +80015 : 39.623896 : -104.77723 : Aurora, CO +80016 : 39.595115 : -104.7485 : Aurora, CO +80017 : 39.695269 : -104.78439 : Aurora, CO +80018 : 39.689244 : -104.7166 : Aurora, CO +80019 : 39.784036 : -104.72289 : Aurora, CO +80020 : 39.93404 : -105.05454 : Broomfield, CO +80021 : 39.881608 : -105.09953 : Broomfield, CO +80022 : 39.836586 : -104.9039 : Commerce City, CO +80024 : 39.844685 : -104.91851 : Dupont, CO +80025 : 39.92926 : -105.28863 : Eldorado Springs, CO +80026 : 40.002156 : -105.10036 : Lafayette, CO +80027 : 39.963322 : -105.15053 : Louisville, CO +80028 : 40.087835 : -105.373507 : Louisville, CO +80030 : 39.830936 : -105.03736 : Westminster, CO +80031 : 39.866785 : -105.04143 : Westminster, CO +80033 : 39.774341 : -105.10036 : Wheat Ridge, CO +80034 : 39.522014 : -105.223945 : Wheat Ridge, CO +80035 : 39.80797 : -104.407918 : Westminster, CO +80036 : 39.80797 : -104.407918 : Westminster, CO +80037 : 39.80797 : -104.407918 : Commerce City, CO +80038 : 40.087835 : -105.373507 : Broomfield, CO +80040 : 39.80797 : -104.407918 : Aurora, CO +80041 : 39.738752 : -104.408349 : Aurora, CO +80042 : 39.80797 : -104.407918 : Aurora, CO +80044 : 39.738752 : -104.408349 : Aurora, CO +80045 : 39.746736 : -104.838361 : Aurora, CO +80046 : 39.738752 : -104.408349 : Aurora, CO +80047 : 39.738752 : -104.408349 : Aurora, CO +80061 : 39.862286 : -105.072049 : Westminster, CO +80101 : 39.378712 : -104.02409 : Agate, CO +80102 : 39.760573 : -104.431 : Bennett, CO +80103 : 39.746563 : -104.17162 : Byers, CO +80104 : 39.385141 : -104.85962 : Castle Rock, CO +80105 : 39.631741 : -104.01594 : Deer Trail, CO +80106 : 39.148692 : -104.5635 : Elbert, CO +80107 : 39.397242 : -104.58696 : Elizabeth, CO +80108 : 39.453833 : -104.885409 : Castle Rock, CO +80109 : 39.380857 : -104.89947 : Castle Rock, CO +80110 : 39.646847 : -104.99076 : Englewood, CO +80111 : 39.610431 : -104.88139 : Englewood, CO +80112 : 39.579454 : -104.88288 : Englewood, CO +80115 : 39.636562 : -104.82093 : Aurora, CO +80116 : 39.355957 : -104.7241 : Franktown, CO +80117 : 39.382543 : -104.42847 : Kiowa, CO +80118 : 39.206652 : -104.90983 : Larkspur, CO +80120 : 39.599687 : -105.00658 : Littleton, CO +80121 : 39.607386 : -104.95805 : Littleton, CO +80122 : 39.582604 : -104.95834 : Littleton, CO +80123 : 39.616114 : -105.07393 : Littleton, CO +80124 : 39.543478 : -104.89644 : Littleton, CO +80125 : 39.479365 : -105.06708 : Littleton, CO +80126 : 39.544549 : -104.96808 : Littleton, CO +80127 : 39.599755 : -105.13052 : Littleton, CO +80128 : 39.576838 : -105.07882 : Littleton, CO +80129 : 39.539556 : -105.009739 : Littleton, CO +80130 : 39.541571 : -104.92152 : Lone Tree, CO +80131 : 39.347863 : -104.994708 : Louviers, CO +80132 : 39.098692 : -104.8684 : Monument, CO +80133 : 39.113371 : -104.90493 : Palmer Lake, CO +80134 : 39.508608 : -104.78031 : Parker, CO +80135 : 39.340969 : -105.05404 : Sedalia, CO +80136 : 39.776934 : -104.30997 : Strasburg, CO +80137 : 39.749664 : -104.60811 : Watkins, CO +80138 : 39.523171 : -104.70607 : Parker, CO +80139 : 39.51474 : -104.744145 : Parker, CO +80150 : 39.738752 : -104.408349 : Englewood, CO +80151 : 39.738752 : -104.408349 : Englewood, CO +80154 : 39.738752 : -104.408349 : Englewood, CO +80155 : 39.738752 : -104.408349 : Englewood, CO +80160 : 39.738752 : -104.408349 : Littleton, CO +80161 : 39.738752 : -104.408349 : Littleton, CO +80162 : 39.522014 : -105.223945 : Littleton, CO +80163 : 39.347863 : -104.994708 : Littleton, CO +80165 : 39.738752 : -104.408349 : Littleton, CO +80166 : 39.738752 : -104.408349 : Littleton, CO +80201 : 39.726303 : -104.856808 : Denver, CO +80202 : 39.751586 : -104.99699 : Denver, CO +80203 : 39.731286 : -104.98306 : Denver, CO +80204 : 39.734686 : -105.01966 : Denver, CO +80205 : 39.758986 : -104.96678 : Denver, CO +80206 : 39.731237 : -104.95243 : Denver, CO +80207 : 39.759386 : -104.91945 : Denver, CO +80208 : 39.738752 : -104.408349 : Denver, CO +80209 : 39.706535 : -104.96698 : Denver, CO +80210 : 39.679437 : -104.96473 : Denver, CO +80211 : 39.767536 : -105.01973 : Denver, CO +80212 : 39.770336 : -105.04688 : Denver, CO +80214 : 39.745526 : -105.06251 : Denver, CO +80215 : 39.744437 : -105.10441 : Denver, CO +80216 : 39.784622 : -104.96214 : Denver, CO +80217 : 39.738752 : -104.408349 : Denver, CO +80218 : 39.731237 : -104.97133 : Denver, CO +80219 : 39.698137 : -105.03483 : Denver, CO +80220 : 39.734387 : -104.91678 : Denver, CO +80221 : 39.816536 : -105.01123 : Denver, CO +80222 : 39.669237 : -104.92766 : Denver, CO +80223 : 39.699156 : -104.99999 : Denver, CO +80224 : 39.688437 : -104.91348 : Denver, CO +80225 : 39.69709 : -105.12044 : Denver, CO +80226 : 39.71222 : -105.08918 : Denver, CO +80227 : 39.668576 : -105.09191 : Denver, CO +80228 : 39.688278 : -105.14558 : Denver, CO +80229 : 39.859585 : -104.95943 : Denver, CO +80230 : 39.721763 : -104.89627 : Denver, CO +80231 : 39.681687 : -104.88338 : Denver, CO +80232 : 39.690387 : -105.08866 : Denver, CO +80233 : 39.903043 : -104.9544 : Denver, CO +80234 : 39.9091 : -105.00829 : Denver, CO +80235 : 39.648328 : -105.08431 : Denver, CO +80236 : 39.652454 : -105.04089 : Denver, CO +80237 : 39.643637 : -104.90406 : Denver, CO +80238 : 39.738752 : -104.408349 : Denver, CO +80239 : 39.788236 : -104.83034 : Denver, CO +80241 : 39.929566 : -104.94931 : Denver, CO +80243 : 39.738752 : -104.408349 : Denver, CO +80244 : 39.738752 : -104.408349 : Denver, CO +80246 : 39.705318 : -104.93113 : Denver, CO +80247 : 39.693573 : -104.876649 : Denver, CO +80248 : 39.738752 : -104.408349 : Denver, CO +80249 : 39.793686 : -104.73913 : Denver, CO +80250 : 39.738752 : -104.408349 : Denver, CO +80251 : 39.738752 : -104.408349 : Denver, CO +80252 : 39.738752 : -104.408349 : Denver, CO +80254 : 39.738752 : -104.408349 : Denver, CO +80255 : 39.738752 : -104.408349 : Denver, CO +80256 : 39.74739 : -104.992842 : Denver, CO +80257 : 39.738752 : -104.408349 : Denver, CO +80259 : 39.746239 : -104.991334 : Denver, CO +80260 : 39.868635 : -105.00805 : Denver, CO +80261 : 39.737929 : -104.985036 : Denver, CO +80262 : 39.731038 : -104.938391 : Denver, CO +80263 : 39.738752 : -104.408349 : Denver, CO +80264 : 39.742486 : -104.98563 : Denver, CO +80265 : 39.738752 : -104.408349 : Denver, CO +80266 : 39.747179 : -104.991511 : Denver, CO +80270 : 39.738752 : -104.408349 : Denver, CO +80271 : 39.738752 : -104.408349 : Denver, CO +80273 : 39.727293 : -104.987535 : Denver, CO +80274 : 39.743934 : -104.987577 : Denver, CO +80275 : 39.738752 : -104.408349 : Denver, CO +80279 : 39.738752 : -104.408349 : Denver, CO +80280 : 39.716675 : -104.906942 : Denver, CO +80281 : 39.74394 : -104.987577 : Denver, CO +80290 : 39.744086 : -104.98696 : Denver, CO +80291 : 39.74394 : -104.987577 : Denver, CO +80292 : 39.74739 : -104.992842 : Denver, CO +80293 : 39.746286 : -104.99008 : Denver, CO +80294 : 39.749436 : -104.98948 : Denver, CO +80295 : 39.745486 : -104.986336 : Denver, CO +80296 : 39.832432 : -104.987535 : Sherrelwood, CO +80299 : 39.738752 : -104.408349 : Denver, CO +80301 : 40.044385 : -105.21928 : Boulder, CO +80302 : 40.020885 : -105.29673 : Boulder, CO +80303 : 39.989135 : -105.22883 : Boulder, CO +80304 : 40.039784 : -105.27938 : Boulder, CO +80305 : 39.979691 : -105.252586 : Boulder, CO +80306 : 40.102219 : -105.384694 : Boulder, CO +80307 : 40.087835 : -105.373507 : Boulder, CO +80308 : 40.027672 : -105.3868 : Boulder, CO +80309 : 40.087835 : -105.373507 : Boulder, CO +80310 : 40.087835 : -105.373507 : Boulder, CO +80314 : 40.087835 : -105.373507 : Boulder, CO +80321 : 40.087835 : -105.373507 : Boulder, CO +80322 : 40.087835 : -105.373507 : Boulder, CO +80323 : 40.087835 : -105.373507 : Boulder, CO +80328 : 40.087835 : -105.373507 : Boulder, CO +80329 : 40.087835 : -105.373507 : Boulder, CO +80401 : 39.735745 : -105.19337 : Golden, CO +80402 : 39.522014 : -105.223945 : Golden, CO +80403 : 39.827903 : -105.32256 : Golden, CO +80419 : 39.522014 : -105.223945 : Golden, CO +80420 : 39.293921 : -106.06889 : Alma, CO +80421 : 39.460306 : -105.476 : Bailey, CO +80422 : 39.813744 : -105.50875 : Black Hawk, CO +80423 : 39.871619 : -106.57267 : Bond, CO +80424 : 39.478893 : -106.03747 : Breckenridge, CO +80425 : 39.361089 : -105.22472 : Buffalo Creek, CO +80426 : 39.885527 : -106.93018 : Burns, CO +80427 : 39.804776 : -105.53422 : Central City, CO +80428 : 40.854473 : -106.92438 : Clark, CO +80429 : 39.225758 : -106.311697 : Climax, CO +80430 : 40.436948 : -106.49424 : Coalmont, CO +80432 : 39.24344 : -105.79431 : Como, CO +80433 : 39.514738 : -105.31198 : Conifer, CO +80434 : 40.92301 : -106.33104 : Cowdrey, CO +80435 : 39.607479 : -105.97937 : Dillon, CO +80436 : 39.766277 : -105.61523 : Dumont, CO +80437 : 39.522014 : -105.223945 : Evergreen, CO +80438 : 39.762835 : -105.71302 : Empire, CO +80439 : 39.642572 : -105.36812 : Evergreen, CO +80440 : 39.22106 : -106.0065 : Fairplay, CO +80442 : 39.949217 : -105.83438 : Fraser, CO +80443 : 39.532506 : -106.14029 : Frisco, CO +80444 : 39.694915 : -105.7258 : Georgetown, CO +80446 : 40.142434 : -105.95502 : Granby, CO +80447 : 40.23832 : -105.84688 : Grand Lake, CO +80448 : 39.459109 : -105.72873 : Grant, CO +80449 : 38.993175 : -105.79916 : Hartsel, CO +80451 : 40.101485 : -106.11862 : Hot Sulphur Springs, CO +80452 : 39.737369 : -105.56054 : Idaho Springs, CO +80453 : 39.668426 : -105.244245 : Idledale, CO +80454 : 39.631254 : -105.26071 : Indian Hills, CO +80455 : 40.094785 : -105.39844 : Jamestown, CO +80456 : 39.310793 : -105.74027 : Jefferson, CO +80457 : 39.653899 : -105.30102 : Kittredge, CO +80459 : 40.14711 : -106.42854 : Kremmling, CO +80461 : 39.231776 : -106.31399 : Leadville, CO +80463 : 39.912186 : -106.74302 : McCoy, CO +80465 : 39.620748 : -105.18121 : Morrison, CO +80466 : 39.964486 : -105.50805 : Nederland, CO +80467 : 40.266778 : -106.92849 : Oak Creek, CO +80468 : 39.967717 : -106.16205 : Parshall, CO +80469 : 40.218412 : -106.94494 : Phippsburg, CO +80470 : 39.45658 : -105.36876 : Pine, CO +80471 : 39.947386 : -105.459269 : Pinecliffe, CO +80473 : 40.455817 : -106.20137 : Rand, CO +80474 : 39.908923 : -105.57057 : Rollinsville, CO +80475 : 39.439493 : -105.602959 : Shawnee, CO +80476 : 39.695974 : -105.73155 : Silver Plume, CO +80477 : 40.348242 : -106.92691 : Steamboat Springs, CO +80478 : 40.00167 : -105.8686 : Tabernash, CO +80479 : 40.041288 : -106.8557 : Toponas, CO +80480 : 40.621621 : -106.24457 : Walden, CO +80481 : 40.10613 : -105.48044 : Ward, CO +80482 : 39.915508 : -105.78359 : Winter Park, CO +80483 : 40.149432 : -106.90681 : Yampa, CO +80487 : 40.502772 : -106.87521 : Steamboat Springs, CO +80488 : 40.619661 : -106.860746 : Steamboat Springs, CO +80497 : 39.641146 : -106.108002 : Silverthorne, CO +80498 : 39.722417 : -106.13744 : Silverthorne, CO +80501 : 40.171484 : -105.10033 : Longmont, CO +80502 : 40.087835 : -105.373507 : Longmont, CO +80503 : 40.156035 : -105.17365 : Longmont, CO +80504 : 40.160138 : -105.01772 : Longmont, CO +80509 : 38.828692 : -104.84063 : Colorado Springs, CO +80510 : 40.223935 : -105.52421 : Allenspark, CO +80511 : 40.628112 : -105.569245 : Estes Park, CO +80512 : 40.700258 : -105.64876 : Bellvue, CO +80513 : 40.294423 : -105.08431 : Berthoud, CO +80514 : 40.083475 : -104.93581 : Dacono, CO +80515 : 40.412496 : -105.41818 : Drake, CO +80516 : 40.051051 : -105.02767 : Erie, CO +80517 : 40.370415 : -105.51722 : Estes Park, CO +80520 : 40.115501 : -104.93637 : Firestone, CO +80521 : 40.586282 : -105.10494 : Fort Collins, CO +80522 : 40.642907 : -105.057005 : Fort Collins, CO +80523 : 40.45553 : -105.464832 : Fort Collins, CO +80524 : 40.606962 : -105.05106 : Fort Collins, CO +80525 : 40.532354 : -105.0535 : Fort Collins, CO +80526 : 40.539432 : -105.11576 : Fort Collins, CO +80527 : 40.540565 : -105.280009 : Fort Collins, CO +80528 : 40.502779 : -105.01123 : Fort Collins, CO +80530 : 40.104211 : -104.93576 : Frederick, CO +80532 : 40.497758 : -105.43325 : Glen Haven, CO +80533 : 40.181515 : -105.232695 : Hygiene, CO +80534 : 40.335398 : -104.91477 : Johnstown, CO +80535 : 40.67069 : -105.17388 : Laporte, CO +80536 : 40.878334 : -105.40415 : Livermore, CO +80537 : 40.383636 : -105.10349 : Loveland, CO +80538 : 40.435645 : -105.08726 : Loveland, CO +80539 : 40.38636 : -105.163377 : Loveland, CO +80540 : 40.253033 : -105.33762 : Lyons, CO +80541 : 40.529278 : -105.372014 : Masonville, CO +80542 : 40.234505 : -104.99747 : Mead, CO +80543 : 40.332926 : -104.85394 : Milliken, CO +80544 : 40.177043 : -105.275045 : Niwot, CO +80545 : 40.824993 : -105.63525 : Red Feather Lakes, CO +80546 : 40.524987 : -104.850544 : Severance, CO +80547 : 40.528966 : -104.98083 : Timnath, CO +80549 : 40.762264 : -105.01233 : Wellington, CO +80550 : 40.47997 : -104.90227 : Windsor, CO +80551 : 40.464092 : -104.885116 : Windsor, CO +80553 : 40.628112 : -105.569245 : Fort Collins, CO +80601 : 39.973251 : -104.82407 : Brighton, CO +80602 : 39.958987 : -104.908921 : Thornton, CO +80603 : 39.943831 : -104.629665 : Lochbuie, CO +80610 : 40.61798 : -104.66762 : Ault, CO +80611 : 40.581437 : -104.26915 : Briggsdale, CO +80612 : 40.886476 : -104.87448 : Carr, CO +80614 : 39.80797 : -104.407918 : Eastlake, CO +80615 : 40.529241 : -104.71181 : Eaton, CO +80620 : 40.378019 : -104.70357 : Evans, CO +80621 : 40.090367 : -104.79723 : Fort Lupton, CO +80622 : 40.536158 : -104.500735 : Galeton, CO +80623 : 40.28319 : -104.77878 : Gilcrest, CO +80624 : 40.481168 : -104.5151 : Gill, CO +80630 : 40.405094 : -104.800547 : Greeley, CO +80631 : 40.421845 : -104.69175 : Greeley, CO +80632 : 40.376626 : -104.762899 : Greeley, CO +80633 : 40.500919 : -104.31497 : Greeley, CO +80634 : 40.407853 : -104.75498 : Greeley, CO +80638 : 40.500919 : -104.31497 : Greeley, CO +80639 : 40.399281 : -104.70172 : Greeley, CO +80640 : 39.885202 : -104.88339 : Henderson, CO +80642 : 40.060539 : -104.62943 : Hudson, CO +80643 : 40.078242 : -104.49916 : Keenesburg, CO +80644 : 40.363777 : -104.51964 : Kersey, CO +80645 : 40.332131 : -104.68704 : La Salle, CO +80646 : 40.48243 : -104.70542 : Lucerne, CO +80648 : 40.746862 : -104.76208 : Nunn, CO +80649 : 40.310272 : -104.15685 : Orchard, CO +80650 : 40.637244 : -104.75847 : Pierce, CO +80651 : 40.228533 : -104.84267 : Platteville, CO +80652 : 40.095142 : -104.28784 : Roggen, CO +80653 : 40.36593 : -104.00612 : Weldona, CO +80654 : 40.196296 : -104.07361 : Wiggins, CO +80701 : 40.226357 : -103.80625 : Fort Morgan, CO +80705 : 40.270801 : -103.82915 : Log Lane Village, CO +80720 : 40.124199 : -103.18362 : Akron, CO +80721 : 40.681557 : -102.16663 : Amherst, CO +80722 : 40.53158 : -103.26151 : Atwood, CO +80723 : 40.23045 : -103.60824 : Brush, CO +80726 : 40.888254 : -102.78823 : Crook, CO +80727 : 40.086896 : -102.48265 : Eckley, CO +80728 : 40.620805 : -102.84813 : Fleming, CO +80729 : 40.877461 : -104.22705 : Grover, CO +80731 : 40.593911 : -102.58831 : Haxtun, CO +80732 : 40.975104 : -104.305265 : Hereford, CO +80733 : 40.340456 : -103.51203 : Hillrose, CO +80734 : 40.582954 : -102.30451 : Holyoke, CO +80735 : 39.709824 : -102.24035 : Idalia, CO +80736 : 40.798956 : -103.04649 : Iliff, CO +80737 : 40.916929 : -102.21858 : Julesburg, CO +80740 : 39.724528 : -103.38353 : Lindon, CO +80741 : 40.508131 : -103.41815 : Merino, CO +80742 : 40.603869 : -103.87807 : New Raymer, CO +80743 : 40.215063 : -102.95628 : Otis, CO +80744 : 40.888124 : -102.3726 : Ovid, CO +80745 : 40.825947 : -103.27669 : Padroni, CO +80746 : 40.610554 : -102.472203 : Paoli, CO +80747 : 40.964518 : -103.11162 : Peetz, CO +80749 : 40.86845 : -102.54595 : Sedgwick, CO +80750 : 40.382063 : -103.60936 : Snyder, CO +80751 : 40.633845 : -103.21574 : Sterling, CO +80754 : 40.686028 : -103.65736 : Stoneham, CO +80755 : 39.940858 : -102.36417 : Vernon, CO +80757 : 39.836887 : -103.61156 : Woodrow, CO +80758 : 40.064734 : -102.21336 : Wray, CO +80759 : 40.169249 : -102.69005 : Yuma, CO +80801 : 39.727493 : -103.10362 : Anton, CO +80802 : 38.834807 : -102.1746 : Arapahoe, CO +80804 : 39.317411 : -103.24869 : Arriba, CO +80805 : 39.302035 : -102.44357 : Bethune, CO +80807 : 39.3124 : -102.25094 : Burlington, CO +80808 : 38.977375 : -104.32017 : Calhan, CO +80809 : 38.911701 : -104.98731 : Cascade, CO +80810 : 38.846982 : -102.37913 : Cheyenne Wells, CO +80812 : 39.648325 : -102.88722 : Cope, CO +80813 : 38.75604 : -105.1497 : Cripple Creek, CO +80814 : 38.927344 : -105.18746 : Divide, CO +80815 : 39.348989 : -103.07103 : Flagler, CO +80816 : 38.876897 : -105.30711 : Florissant, CO +80817 : 38.674013 : -104.69627 : Fountain, CO +80818 : 39.386933 : -103.48219 : Genoa, CO +80819 : 38.940813 : -105.01363 : Green Mountain Falls, CO +80820 : 38.783844 : -105.63616 : Guffey, CO +80821 : 39.020889 : -103.48045 : Hugo, CO +80822 : 39.633953 : -102.69795 : Joes, CO +80823 : 38.709972 : -103.54469 : Karval, CO +80824 : 39.650653 : -102.52694 : Kirk, CO +80825 : 38.765737 : -102.78889 : Kit Carson, CO +80826 : 39.041435 : -103.604851 : Limon, CO +80827 : 39.031989 : -105.46846 : Lake George, CO +80828 : 39.273148 : -103.69416 : Limon, CO +80829 : 38.853663 : -104.93485 : Manitou Springs, CO +80830 : 39.089871 : -103.89534 : Matheson, CO +80831 : 38.96634 : -104.54313 : Peyton, CO +80832 : 39.034273 : -104.07125 : Ramah, CO +80833 : 38.694617 : -103.96314 : Rush, CO +80834 : 39.315812 : -102.88573 : Seibert, CO +80835 : 39.172831 : -104.08793 : Simla, CO +80836 : 39.29782 : -102.59745 : Stratton, CO +80840 : 39.008109 : -104.84248 : U S A F Academy, CO +80841 : 38.82469 : -104.562027 : U S A F Academy, CO +80860 : 38.719345 : -105.12429 : Victor, CO +80861 : 39.36479 : -102.75387 : Vona, CO +80862 : 38.922655 : -103.02115 : Wild Horse, CO +80863 : 38.996004 : -105.06335 : Woodland Park, CO +80864 : 38.688075 : -104.17321 : Yoder, CO +80866 : 39.085706 : -105.23659 : Woodland Park, CO +80901 : 38.861469 : -104.857828 : Colorado Springs, CO +80902 : 38.942365 : -104.807081 : Colorado Springs, CO +80903 : 38.834282 : -104.81654 : Colorado Springs, CO +80904 : 38.850558 : -104.86481 : Colorado Springs, CO +80905 : 38.837542 : -104.83632 : Colorado Springs, CO +80906 : 38.791242 : -104.82492 : Colorado Springs, CO +80907 : 38.873692 : -104.81869 : Colorado Springs, CO +80908 : 39.035216 : -104.69575 : Colorado Springs, CO +80909 : 38.851493 : -104.77856 : Colorado Springs, CO +80910 : 38.813044 : -104.77158 : Colorado Springs, CO +80911 : 38.746807 : -104.7232 : Colorado Springs, CO +80912 : 38.82469 : -104.562027 : Colorado Springs, CO +80913 : 38.743871 : -104.76387 : Colorado Springs, CO +80914 : 38.819195 : -104.701177 : Colorado Springs, CO +80915 : 38.858644 : -104.70892 : Colorado Springs, CO +80916 : 38.808934 : -104.73823 : Colorado Springs, CO +80917 : 38.888394 : -104.73975 : Colorado Springs, CO +80918 : 38.916226 : -104.76602 : Colorado Springs, CO +80919 : 38.925451 : -104.85255 : Colorado Springs, CO +80920 : 38.952366 : -104.76701 : Colorado Springs, CO +80921 : 39.044969 : -104.83755 : Colorado Springs, CO +80922 : 38.897344 : -104.70145 : Colorado Springs, CO +80924 : 39.527772 : -106.039412 : Breckenridge, CO +80925 : 38.758252 : -104.6555 : Colorado Springs, CO +80926 : 38.652352 : -104.87298 : Colorado Springs, CO +80928 : 38.629157 : -104.45068 : Colorado Springs, CO +80929 : 38.831149 : -104.65178 : Colorado Springs, CO +80930 : 38.811434 : -104.50403 : Colorado Springs, CO +80931 : 38.953003 : -104.60923 : Colorado Springs, CO +80932 : 38.82469 : -104.562027 : Colorado Springs, CO +80933 : 38.939371 : -105.011786 : Colorado Springs, CO +80934 : 38.82469 : -104.562027 : Colorado Springs, CO +80935 : 38.82469 : -104.562027 : Colorado Springs, CO +80936 : 38.82469 : -104.562027 : Colorado Springs, CO +80937 : 38.82469 : -104.562027 : Colorado Springs, CO +80940 : 38.82469 : -104.562027 : Colorado Springs, CO +80941 : 38.82469 : -104.562027 : Colorado Springs, CO +80942 : 38.82469 : -104.562027 : Colorado Springs, CO +80943 : 38.82469 : -104.562027 : Colorado Springs, CO +80944 : 38.82469 : -104.562027 : Colorado Springs, CO +80945 : 38.82469 : -104.562027 : Colorado Springs, CO +80946 : 38.82469 : -104.562027 : Colorado Springs, CO +80947 : 38.82469 : -104.562027 : Colorado Springs, CO +80949 : 38.82469 : -104.562027 : Colorado Springs, CO +80950 : 38.82469 : -104.562027 : Colorado Springs, CO +80960 : 38.82469 : -104.562027 : Colorado Springs, CO +80962 : 38.82469 : -104.562027 : Colorado Springs, CO +80970 : 38.82469 : -104.562027 : Colorado Springs, CO +80977 : 38.82469 : -104.562027 : Colorado Springs, CO +80995 : 38.82469 : -104.562027 : Colorado Springs, CO +80997 : 38.82469 : -104.562027 : Colorado Springs, CO +81001 : 38.282872 : -104.57029 : Pueblo, CO +81002 : 38.128626 : -104.552299 : Pueblo, CO +81003 : 38.281052 : -104.62567 : Pueblo, CO +81004 : 38.197344 : -104.6331 : Pueblo, CO +81005 : 38.235865 : -104.66972 : Pueblo, CO +81006 : 38.243266 : -104.52912 : Pueblo, CO +81007 : 38.333601 : -104.74329 : Pueblo, CO +81008 : 38.370203 : -104.61964 : Pueblo, CO +81009 : 38.128626 : -104.552299 : Pueblo, CO +81010 : 38.128626 : -104.552299 : Pueblo, CO +81011 : 38.128626 : -104.552299 : Pueblo, CO +81012 : 38.128626 : -104.552299 : Pueblo, CO +81013 : 38.128626 : -104.552299 : Pueblo, CO +81014 : 38.128626 : -104.552299 : Pueblo, CO +81015 : 38.128626 : -104.552299 : Pueblo, CO +81019 : 37.887346 : -104.613617 : Colorado City, CO +81020 : 37.400041 : -104.66016 : Aguilar, CO +81021 : 38.414313 : -103.37824 : Arlington, CO +81022 : 38.089719 : -104.37807 : Avondale, CO +81023 : 38.069421 : -104.95609 : Beulah, CO +81024 : 37.229888 : -104.71063 : Boncarbo, CO +81025 : 38.243711 : -104.23282 : Boone, CO +81027 : 37.095478 : -103.84302 : Branson, CO +81029 : 37.136682 : -102.5296 : Campo, CO +81030 : 38.107901 : -103.51113 : Cheraw, CO +81033 : 38.193627 : -103.85543 : Crowley, CO +81034 : 38.317851 : -103.779959 : Crowley, CO +81036 : 38.467553 : -102.80439 : Eads, CO +81038 : 37.955547 : -103.072469 : Fort Lyon, CO +81039 : 38.002861 : -104.03445 : Fowler, CO +81040 : 37.777997 : -105.20072 : Gardner, CO +81041 : 37.962678 : -102.33025 : Granada, CO +81042 : 37.315263 : -104.73461 : Gulnare, CO +81043 : 38.119932 : -102.21952 : Hartman, CO +81044 : 38.039941 : -102.94569 : Hasty, CO +81045 : 38.45313 : -103.16965 : Haswell, CO +81046 : 37.279584 : -104.358375 : Hoehne, CO +81047 : 38.060575 : -102.19677 : Holly, CO +81049 : 37.242629 : -103.47108 : Kim, CO +81050 : 37.995879 : -103.54001 : La Junta, CO +81052 : 38.08759 : -102.61855 : Lamar, CO +81054 : 38.037435 : -103.18631 : Las Animas, CO +81055 : 37.499829 : -105.02943 : La Veta, CO +81057 : 38.136132 : -102.88325 : McClave, CO +81058 : 38.107593 : -103.86848 : Manzanola, CO +81059 : 37.513166 : -104.02959 : Model, CO +81062 : 38.193937 : -103.92275 : Olney Springs, CO +81063 : 38.253191 : -103.76209 : Ordway, CO +81064 : 37.315497 : -102.95462 : Pritchett, CO +81066 : 37.730256 : -105.31806 : Red Wing, CO +81067 : 38.042083 : -103.72231 : Rocky Ford, CO +81069 : 37.909758 : -104.89892 : Rye, CO +81071 : 38.44672 : -102.24844 : Sheridan Lake, CO +81073 : 37.409787 : -102.61726 : Springfield, CO +81074 : 37.121029 : -104.523155 : Starkville, CO +81076 : 38.26144 : -103.67101 : Sugar City, CO +81077 : 38.015189 : -103.62827 : Swink, CO +81079 : 37.951881 : -104.858227 : Colorado City, CO +81081 : 37.096255 : -104.14826 : Trinchera, CO +81082 : 37.191882 : -104.47809 : Trinidad, CO +81084 : 37.567773 : -102.39192 : Two Buttes, CO +81087 : 37.377938 : -102.42882 : Vilas, CO +81089 : 37.621071 : -104.80456 : Walsenburg, CO +81090 : 37.347009 : -102.26776 : Walsh, CO +81091 : 37.193451 : -104.97188 : Weston, CO +81092 : 38.17924 : -102.75161 : Wiley, CO +81101 : 37.471802 : -105.83471 : Alamosa, CO +81102 : 37.476026 : -105.881779 : Alamosa, CO +81120 : 37.086403 : -106.08325 : Antonito, CO +81121 : 37.039131 : -107.42271 : Arboles, CO +81122 : 37.329743 : -107.59026 : Bayfield, CO +81123 : 37.419263 : -105.58024 : Blanca, CO +81124 : 37.291966 : -106.12085 : Capulin, CO +81125 : 37.773899 : -106.08966 : Center, CO +81126 : 37.175339 : -105.34164 : Chama, CO +81127 : 37.218131 : -107.34452 : Chimney Rock, CO +81128 : 37.086533 : -106.75491 : Chromo, CO +81129 : 37.101134 : -106.02648 : Conejos, CO +81130 : 37.705276 : -106.95429 : Creede, CO +81131 : 37.945768 : -105.69706 : Crestone, CO +81132 : 37.731981 : -106.39774 : Del Norte, CO +81133 : 37.375698 : -105.37293 : Fort Garland, CO +81134 : 37.092195 : -105.530023 : Garcia, CO +81135 : 37.615741 : -106.375292 : Homelake, CO +81136 : 37.779885 : -105.81264 : Hooper, CO +81137 : 37.099348 : -107.64223 : Ignacio, CO +81138 : 37.197731 : -105.429395 : Jaroso, CO +81140 : 37.274108 : -106.05178 : La Jara, CO +81141 : 37.144944 : -105.90161 : Manassa, CO +81143 : 38.142453 : -105.91579 : Moffat, CO +81144 : 37.569501 : -106.14946 : Monte Vista, CO +81146 : 37.620038 : -105.73101 : Mosca, CO +81147 : 37.241179 : -107.11287 : Pagosa Springs, CO +81148 : 37.171583 : -105.98648 : Romeo, CO +81149 : 38.120209 : -106.22626 : Saguache, CO +81151 : 37.23354 : -105.7477 : Sanford, CO +81152 : 37.134458 : -105.54778 : San Luis, CO +81153 : 37.127132 : -105.3675 : San Pablo, CO +81154 : 37.671046 : -106.63177 : South Fork, CO +81155 : 38.327695 : -106.14476 : Villa Grove, CO +81157 : 37.270438 : -107.093153 : Pagosa Springs, CO +81201 : 38.533464 : -106.03468 : Salida, CO +81210 : 38.778749 : -106.62831 : Almont, CO +81211 : 38.867111 : -106.14664 : Buena Vista, CO +81212 : 38.464212 : -105.27973 : Canon City, CO +81215 : 38.477563 : -105.476577 : Canon City, CO +81220 : 38.321598 : -107.4166 : Cimarron, CO +81221 : 38.36154 : -105.14752 : Coal Creek, CO +81222 : 38.374462 : -105.76738 : Coaldale, CO +81223 : 38.357344 : -105.53192 : Cotopaxi, CO +81224 : 38.865307 : -106.96556 : Crested Butte, CO +81225 : 38.901649 : -106.96755 : Crested Butte, CO +81226 : 38.387091 : -105.1226 : Florence, CO +81227 : 38.545757 : -106.243422 : Monarch, CO +81228 : 39.030747 : -106.256615 : Granite, CO +81230 : 38.464132 : -106.95776 : Gunnison, CO +81231 : 38.702309 : -106.940201 : Gunnison, CO +81232 : 38.285533 : -105.642451 : Hillside, CO +81233 : 38.442267 : -105.85054 : Howard, CO +81235 : 37.961233 : -107.29953 : Lake City, CO +81236 : 38.720234 : -106.18801 : Nathrop, CO +81237 : 38.590788 : -106.602838 : Ohio City, CO +81239 : 38.618553 : -106.54811 : Parlin, CO +81240 : 38.439499 : -105.02111 : Penrose, CO +81241 : 38.607617 : -106.52037 : Pitkin, CO +81242 : 38.471892 : -106.097284 : Poncha Springs, CO +81243 : 38.249778 : -107.15542 : Powderhorn, CO +81244 : 38.353064 : -105.18642 : Rockvale, CO +81246 : 38.477563 : -105.476577 : Canon City, CO +81247 : 38.457513 : -107.292081 : Gunnison, CO +81248 : 38.410975 : -106.47812 : Sargents, CO +81251 : 39.096394 : -106.32916 : Twin Lakes, CO +81252 : 38.130741 : -105.45798 : Westcliffe, CO +81253 : 38.186991 : -105.07615 : Wetmore, CO +81260 : 39.361605 : -107.025486 : Basalt, CO +81290 : 38.358421 : -105.106881 : Florence, CO +81301 : 37.295888 : -107.84945 : Durango, CO +81302 : 37.357249 : -107.935945 : Durango, CO +81303 : 37.222311 : -107.653131 : Durango, CO +81310 : 37.28211 : -107.856609 : Durango, CO +81320 : 37.696224 : -108.78271 : Cahone, CO +81321 : 37.344985 : -108.60355 : Cortez, CO +81323 : 37.515311 : -108.45204 : Dolores, CO +81324 : 37.775543 : -108.92455 : Dove Creek, CO +81325 : 38.027131 : -108.83162 : Egnar, CO +81326 : 37.131282 : -108.15728 : Hesperus, CO +81327 : 37.534825 : -108.65188 : Lewis, CO +81328 : 37.363564 : -108.29691 : Mancos, CO +81329 : 37.092605 : -108.125194 : Marvel, CO +81330 : 37.237814 : -108.50424 : Mesa Verde National Park, CO +81331 : 37.590205 : -108.76998 : Pleasant View, CO +81332 : 37.713158 : -108.02585 : Rico, CO +81334 : 37.178946 : -108.88769 : Towaoc, CO +81335 : 37.508184 : -108.78311 : Yellow Jacket, CO +81401 : 38.436409 : -107.8625 : Montrose, CO +81402 : 38.485093 : -107.885975 : Montrose, CO +81410 : 38.79053 : -107.97404 : Austin, CO +81411 : 38.318109 : -108.92858 : Bedrock, CO +81413 : 38.941926 : -107.92669 : Cedaredge, CO +81414 : 38.788697 : -107.986174 : Cory, CO +81415 : 38.636112 : -107.59315 : Crawford, CO +81416 : 38.733901 : -108.08219 : Delta, CO +81418 : 38.842439 : -107.96085 : Eckert, CO +81419 : 38.819199 : -107.73704 : Hotchkiss, CO +81420 : 38.781745 : -107.780778 : Lazear, CO +81421 : 38.942927 : -107.939831 : Maher, CO +81422 : 38.296229 : -108.68079 : Naturita, CO +81423 : 38.082231 : -108.2586 : Norwood, CO +81424 : 38.29545 : -108.50164 : Nucla, CO +81425 : 38.605432 : -108.0098 : Olathe, CO +81426 : 37.860092 : -107.86975 : Ophir, CO +81427 : 38.016388 : -107.67438 : Ouray, CO +81428 : 38.877695 : -107.58799 : Paonia, CO +81429 : 38.371101 : -108.969823 : Paradox, CO +81430 : 38.08677 : -108.00332 : Placerville, CO +81431 : 38.153484 : -108.43921 : Redvale, CO +81432 : 38.131449 : -107.77322 : Ridgway, CO +81433 : 37.868294 : -107.62223 : Silverton, CO +81434 : 38.994185 : -107.35526 : Somerset, CO +81435 : 37.932874 : -107.88874 : Telluride, CO +81501 : 39.072831 : -108.55 : Grand Junction, CO +81502 : 39.017876 : -108.481354 : Grand Junction, CO +81503 : 39.059221 : -108.58311 : Grand Junction, CO +81504 : 39.085481 : -108.49019 : Grand Junction, CO +81505 : 39.112514 : -108.60506 : Grand Junction, CO +81506 : 39.106039 : -108.54679 : Grand Junction, CO +81516 : 39.225729 : -106.937134 : Snowmass Village, CO +81520 : 39.085981 : -108.44444 : Clifton, CO +81521 : 39.159971 : -108.72071 : Fruita, CO +81522 : 38.715101 : -109.01087 : Gateway, CO +81523 : 38.958934 : -108.85126 : Glade Park, CO +81524 : 39.238633 : -108.78893 : Loma, CO +81525 : 39.244427 : -108.93781 : Mack, CO +81526 : 39.1013 : -108.367 : Palisade, CO +81527 : 38.833235 : -108.58155 : Whitewater, CO +81601 : 39.533318 : -107.32107 : Glenwood Springs, CO +81602 : 39.511742 : -107.325336 : Glenwood Springs, CO +81610 : 40.334542 : -108.76266 : Dinosaur, CO +81611 : 39.196857 : -106.8191 : Aspen, CO +81612 : 39.223416 : -106.882774 : Aspen, CO +81613 : 39.212626 : -106.941907 : Snowmass Village, CO +81615 : 39.214104 : -106.94528 : Snowmass Village, CO +81620 : 39.63298 : -106.51534 : Avon, CO +81621 : 39.379423 : -106.97082 : Basalt, CO +81623 : 39.335504 : -107.1882 : Carbondale, CO +81624 : 39.220166 : -107.93414 : Collbran, CO +81625 : 40.566113 : -107.60818 : Craig, CO +81626 : 40.667669 : -107.783276 : Craig, CO +81628 : 39.39787 : -107.089239 : El Jebel, CO +81630 : 39.378823 : -108.34069 : De Beque, CO +81631 : 39.622314 : -106.7751 : Eagle, CO +81632 : 39.620748 : -106.6148 : Edwards, CO +81633 : 40.377031 : -108.398991 : Dinosaur, CO +81635 : 39.493283 : -108.11571 : Parachute, CO +81636 : 39.430535 : -108.023924 : Battlement Mesa, CO +81637 : 39.690233 : -107.02552 : Gypsum, CO +81638 : 40.298366 : -107.51756 : Hamilton, CO +81639 : 40.48806 : -107.26093 : Hayden, CO +81640 : 40.594344 : -108.39974 : Maybell, CO +81641 : 40.042797 : -107.92158 : Meeker, CO +81642 : 39.342438 : -106.63444 : Meredith, CO +81643 : 39.102266 : -108.16033 : Mesa, CO +81645 : 39.459323 : -106.37859 : Minturn, CO +81646 : 39.139927 : -108.00498 : Molina, CO +81647 : 39.567059 : -107.54974 : New Castle, CO +81648 : 40.011447 : -108.77528 : Rangely, CO +81649 : 39.451885 : -106.32403 : Red Cliff, CO +81650 : 39.603225 : -107.89755 : Rifle, CO +81652 : 39.508481 : -107.66873 : Silt, CO +81653 : 40.929768 : -107.18886 : Slater, CO +81654 : 39.254607 : -106.97888 : Snowmass, CO +81655 : 39.731182 : -106.62705 : Wolcott, CO +81656 : 39.30179 : -106.81878 : Woody Creek, CO +81657 : 39.634566 : -106.37077 : Vail, CO +81658 : 39.624171 : -106.497314 : Vail, CO +82001 : 41.141281 : -104.80208 : Cheyenne, WY +82002 : 41.327351 : -104.666365 : Cheyenne, WY +82003 : 41.219107 : -104.661244 : Cheyenne, WY +82005 : 41.139057 : -104.862947 : Fe Warren AFB, WY +82006 : 41.327351 : -104.666365 : Cheyenne, WY +82007 : 41.101731 : -104.80582 : Cheyenne, WY +82008 : 41.327351 : -104.666365 : Cheyenne, WY +82009 : 41.275932 : -104.88279 : Cheyenne, WY +82010 : 41.327351 : -104.666365 : Cheyenne, WY +82050 : 41.425769 : -104.18805 : Albin, WY +82051 : 41.601379 : -105.65207 : Bosler, WY +82052 : 41.105595 : -105.3549 : Buford, WY +82053 : 41.209041 : -104.35907 : Burns, WY +82054 : 41.064212 : -104.34107 : Carpenter, WY +82055 : 41.33144 : -106.17649 : Centennial, WY +82058 : 42.22772 : -105.66184 : Garrett, WY +82059 : 41.051097 : -105.19216 : Granite Canon, WY +82060 : 41.210012 : -104.48095 : Hillsdale, WY +82061 : 41.422733 : -105.19881 : Horse Creek, WY +82063 : 40.932966 : -105.87705 : Jelm, CO +82070 : 41.232815 : -105.75364 : Laramie, WY +82071 : 41.715061 : -105.797388 : Laramie, WY +82072 : 41.344843 : -105.58626 : Laramie, WY +82073 : 41.307065 : -105.624667 : Laramie, WY +82081 : 41.552531 : -104.39118 : Meriden, WY +82082 : 41.181106 : -104.00078 : Pine Bluffs, NE +82083 : 41.724691 : -105.99071 : Rock River, WY +82084 : 41.024827 : -105.46188 : Tie Siding, WY +82190 : 44.890668 : -110.89421 : Yellowstone National Park, WY +82201 : 42.038694 : -105.05069 : Wheatland, WY +82210 : 41.742212 : -104.82923 : Chugwater, WY +82212 : 42.321548 : -104.53453 : Fort Laramie, WY +82213 : 42.489239 : -104.97591 : Glendo, WY +82214 : 42.27774 : -104.76034 : Guernsey, WY +82215 : 42.382338 : -104.71135 : Hartville, WY +82217 : 41.76916 : -104.24488 : Hawk Springs, WY +82218 : 41.865935 : -104.11451 : Huntley, WY +82219 : 42.507335 : -104.4242 : Jay Em, WY +82221 : 41.646277 : -104.2877 : Lagrange, WY +82222 : 43.149226 : -104.61635 : Lance Creek, WY +82223 : 42.121155 : -104.37708 : Lingle, WY +82224 : 42.792664 : -104.94156 : Lost Springs, WY +82225 : 43.034269 : -104.35784 : Lusk, WY +82226 : 42.757317 : -104.448288 : Lusk, WY +82227 : 42.785056 : -104.75034 : Manville, WY +82229 : 42.787675 : -105.063337 : Shawnee, WY +82240 : 42.119328 : -104.19228 : Torrington, WY +82242 : 42.706475 : -104.12045 : Van Tassell, WY +82243 : 41.979994 : -104.38969 : Veteran, WY +82244 : 41.907756 : -104.3721 : Yoder, WY +82301 : 41.971581 : -107.29475 : Rawlins, WY +82310 : 42.444748 : -107.7646 : Jeffrey City, WY +82321 : 41.347337 : -107.71062 : Baggs, WY +82322 : 42.180259 : -107.73911 : Bairoil, WY +82323 : 41.034747 : -107.53257 : Dixon, WY +82324 : 41.620507 : -106.43594 : Elk Mountain, WY +82325 : 41.159654 : -106.66284 : Encampment, WY +82327 : 42.041677 : -106.60352 : Hanna, WY +82329 : 42.196315 : -106.32113 : Medicine Bow, WY +82331 : 41.475612 : -106.75888 : Saratoga, WY +82332 : 41.330666 : -107.23106 : Savery, WY +82334 : 41.780239 : -107.117226 : Sinclair, WY +82335 : 41.804594 : -106.78063 : Walcott, WY +82336 : 41.765078 : -108.16076 : Wamsutter, WY +82354 : 41.778225 : -107.119867 : Sinclair, WY +82401 : 43.993124 : -107.97365 : Worland, WY +82410 : 44.369517 : -108.04905 : Basin, WY +82411 : 44.436009 : -108.44195 : Burlington, WY +82412 : 44.794477 : -108.53415 : Byron, WY +82414 : 44.566114 : -109.20826 : Cody, WY +82420 : 44.929728 : -108.45634 : Cowley, WY +82421 : 44.909434 : -108.58917 : Deaver, WY +82422 : 44.498455 : -108.3809 : Emblem, WY +82423 : 44.979667 : -108.64076 : Frannie, WY +82426 : 44.500759 : -108.03102 : Greybull, WY +82427 : 43.76976 : -108.454106 : Hamilton Dome, WY +82428 : 44.255087 : -107.63702 : Hyattville, WY +82430 : 43.808024 : -108.18385 : Kirby, WY +82431 : 44.791974 : -108.32833 : Lovell, WY +82432 : 44.24825 : -107.9263 : Manderson, WY +82433 : 44.20528 : -108.92718 : Meeteetse, WY +82434 : 44.396661 : -108.28605 : Otto, WY +82435 : 44.789953 : -108.86789 : Powell, WY +82440 : 44.718546 : -108.86538 : Ralston, WY +82441 : 44.632199 : -107.67034 : Shell, WY +82442 : 43.885863 : -107.36569 : Ten Sleep, WY +82443 : 43.694009 : -108.31942 : Thermopolis, WY +82450 : 44.463071 : -109.415501 : Wapiti, WY +82501 : 43.013826 : -108.34879 : Riverton, WY +82504 : 42.878665 : -106.438937 : Vista West, WY +82510 : 42.981091 : -108.60194 : Arapahoe, WY +82512 : 43.428698 : -109.21806 : Crowheart, WY +82513 : 43.557529 : -109.70709 : Dubois, WY +82514 : 42.971973 : -108.92886 : Fort Washakie, WY +82515 : 42.86682 : -108.53339 : Hudson, WY +82516 : 43.14687 : -108.89349 : Kinnear, WY +82520 : 42.729832 : -108.63154 : Lander, WY +82523 : 43.312211 : -108.56038 : Pavillion, WY +82524 : 42.998588 : -108.57191 : Saint Stephens, WY +82601 : 42.896822 : -106.29799 : Casper, WY +82602 : 42.889576 : -106.35696 : Casper, WY +82604 : 42.791242 : -106.53986 : Casper, WY +82605 : 42.966192 : -106.807047 : Casper, WY +82609 : 42.844915 : -106.27255 : Casper, WY +82615 : 41.71694 : -106.999195 : Shirley Basin, WY +82620 : 42.65723 : -107.12523 : Alcova, WY +82630 : 42.966192 : -106.807047 : Arminto, WY +82631 : 42.894249 : -105.485243 : Bill, WY +82633 : 42.935874 : -105.37303 : Douglas, WY +82635 : 43.410459 : -106.2421 : Edgerton, WY +82636 : 42.828639 : -106.15952 : Evansville, WY +82637 : 42.796442 : -105.91078 : Glenrock, WY +82638 : 42.966192 : -106.807047 : Hiland, WY +82639 : 43.602698 : -106.65945 : Kaycee, WY +82640 : 43.551448 : -106.14153 : Linch, WY +82642 : 43.228052 : -107.68195 : Lysite, WY +82643 : 43.363864 : -106.27476 : Midwest, WY +82644 : 42.842615 : -106.37103 : Mills, WY +82646 : 42.966192 : -106.807047 : Natrona, WY +82648 : 42.966192 : -106.807047 : Powder River, WY +82649 : 43.232318 : -108.15555 : Shoshoni, WY +82701 : 43.738237 : -104.44387 : Newcastle, WY +82703 : 41.327892 : -105.616339 : Laramie, WY +82710 : 44.776684 : -104.22425 : Aladdin, WY +82711 : 44.706167 : -104.45138 : Alva, WY +82712 : 44.447058 : -104.12853 : Beulah, WY +82713 : 44.525891 : -104.767846 : Carlile, WY +82714 : 44.553925 : -104.68992 : Devils Tower, WY +82715 : 43.840033 : -104.568128 : Four Corners, WY +82716 : 44.356533 : -105.52661 : Gillette, WY +82717 : 44.374954 : -105.38624 : Gillette, WY +82718 : 43.939968 : -105.52445 : Gillette, WY +82720 : 44.81103 : -104.72952 : Hulett, WY +82721 : 44.453553 : -104.92334 : Moorcroft, WY +82723 : 43.992349 : -104.45121 : Osage, WY +82725 : 44.876211 : -105.74228 : Recluse, WY +82727 : 44.221574 : -105.23842 : Rozet, WY +82729 : 44.376421 : -104.398 : Sundance, WY +82730 : 44.062053 : -104.71043 : Upton, WY +82731 : 44.799642 : -105.24695 : Weston, WY +82732 : 43.715486 : -105.35878 : Wright, WY +82779 : 44.408744 : -104.371298 : Sundance, WY +82801 : 44.801249 : -106.96782 : Sheridan, WY +82831 : 44.681337 : -106.08209 : Arvada, WY +82832 : 44.602518 : -106.76367 : Banner, WY +82833 : 44.615453 : -107.10625 : Big Horn, WY +82834 : 44.301141 : -106.67638 : Buffalo, WY +82835 : 44.770838 : -106.42404 : Clearmont, WY +82836 : 44.787512 : -107.48172 : Dayton, WY +82837 : 44.74323 : -106.23963 : Leiter, WY +82838 : 44.947602 : -107.38903 : Parkman, WY +82839 : 44.889239 : -107.14202 : Ranchester, WY +82840 : 44.497609 : -106.870963 : Saddlestring, WY +82842 : 44.576978 : -106.9081 : Story, WY +82844 : 44.788759 : -107.21937 : Wolf, WY +82845 : 44.725332 : -106.66324 : Wyarno, WY +82901 : 41.594542 : -109.16304 : Rock Springs, WY +82902 : 41.631408 : -108.963931 : Rock Springs, WY +82922 : 43.1856 : -110.38625 : Bondurant, WY +82923 : 42.75073 : -109.61933 : Boulder, WY +82925 : 43.081275 : -109.92672 : Cora, WY +82929 : 41.587387 : -109.82274 : Little America, WY +82930 : 41.267546 : -110.90607 : Evanston, WY +82931 : 41.261943 : -110.919995 : Evanston, WY +82932 : 42.026986 : -109.40903 : Farson, WY +82933 : 41.299766 : -110.43728 : Fort Bridger, WY +82934 : 41.610852 : -109.97361 : Granger, WY +82935 : 41.659162 : -109.63919 : Green River, WY +82936 : 41.081086 : -110.22391 : Lontetree, WY +82937 : 41.399751 : -110.36624 : Lyman, WY +82938 : 41.181959 : -109.48709 : McKinnon, WY +82939 : 41.246498 : -110.33778 : Mountain View, WY +82941 : 42.874606 : -109.85694 : Pinedale, WY +82942 : 41.689968 : -108.81963 : Point Of Rocks, WY +82943 : 41.702635 : -109.22044 : Reliance, WY +82944 : 41.10401 : -110.53733 : Robertson, WY +82945 : 41.761851 : -108.97139 : Superior, WY +83001 : 43.468383 : -110.75714 : Jackson, WY +83002 : 43.50537 : -110.786527 : Jackson, WY +83011 : 43.639867 : -110.57908 : Kelly, WY +83012 : 43.701492 : -110.83215 : Moose, WY +83013 : 44.04215 : -110.97876 : Moran, WY +83014 : 43.520413 : -110.86418 : Wilson, WY +83025 : 43.443851 : -110.694002 : Teton Village, WY +83101 : 41.890875 : -110.40687 : Kemmerer, WY +83110 : 42.681301 : -110.92196 : Afton, WY +83111 : 42.801664 : -111.0048 : Auburn, WY +83112 : 42.877387 : -110.92859 : Bedford, WY +83113 : 42.557035 : -110.11482 : Big Piney, WY +83114 : 42.039281 : -110.85188 : Cokeville, WY +83115 : 42.926318 : -110.18889 : Daniel, WY +83116 : 41.779266 : -110.53868 : Diamondville, WY +83118 : 43.062245 : -111.01917 : Etna, WY +83119 : 42.683338 : -110.99847 : Fairview, WY +83120 : 43.001889 : -111.0932 : Freedom, ID +83121 : 41.814385 : -110.53743 : Frontier, WY +83122 : 42.803357 : -110.93182 : Grover, WY +83123 : 42.243979 : -110.24195 : La Barge, WY +83124 : 41.767699 : -110.27732 : Opal, WY +83126 : 42.607888 : -110.91808 : Smoot, WY +83127 : 42.96067 : -110.98262 : Thayne, WY +83128 : 43.129462 : -110.93247 : Alpine, WY +83201 : 42.883214 : -112.43968 : Pocatello, ID +83202 : 42.96866 : -112.43182 : Pocatello, ID +83203 : 43.040466 : -112.48638 : Fort Hall, ID +83204 : 42.847727 : -112.50329 : Pocatello, ID +83205 : 42.80616 : -112.410283 : Pocatello, ID +83206 : 42.639474 : -112.313836 : Pocatello, ID +83209 : 42.639474 : -112.313836 : Pocatello, ID +83210 : 42.97228 : -112.83218 : Aberdeen, ID +83211 : 42.75159 : -112.91931 : American Falls, ID +83212 : 42.514471 : -112.54626 : Arbon, ID +83213 : 43.65183 : -113.31639 : Arco, ID +83214 : 42.539952 : -112.23971 : Arimo, ID +83215 : 43.442618 : -112.81316 : Atomic City, ID +83217 : 42.768812 : -111.87207 : Bancroft, ID +83218 : 43.317823 : -112.16356 : Basalt, ID +83220 : 42.339083 : -111.37641 : Bern, ID +83221 : 43.211238 : -112.39454 : Blackfoot, ID +83223 : 42.188641 : -111.40853 : Bloomington, ID +83226 : 44.53742 : -114.18803 : Challis, ID +83227 : 44.20719 : -114.5981 : Clayton, ID +83228 : 42.213131 : -112.01429 : Clifton, ID +83229 : 44.968059 : -113.816735 : Cobalt, ID +83230 : 42.719102 : -111.596651 : Conda, ID +83232 : 42.129892 : -111.97605 : Dayton, ID +83233 : 42.177359 : -111.217381 : Dingle, ID +83234 : 42.43627 : -112.11647 : Downey, ID +83235 : 44.633935 : -113.99217 : Ellis, ID +83236 : 43.287888 : -112.12765 : Firth, ID +83237 : 42.021688 : -111.79977 : Franklin, ID +83238 : 42.324873 : -111.09002 : Geneva, ID +83239 : 42.483479 : -111.35333 : Georgetown, ID +83241 : 42.525021 : -111.7509 : Grace, ID +83243 : 42.217418 : -112.64211 : Holbrook, ID +83244 : 43.854175 : -113.04362 : Howe, ID +83245 : 42.79471 : -112.23562 : Inkom, ID +83246 : 42.616477 : -112.01889 : Lava Hot Springs, ID +83250 : 42.659404 : -112.21484 : McCammon, ID +83251 : 43.969772 : -113.74907 : Mackay, ID +83252 : 42.192579 : -112.32902 : Malad City, ID +83253 : 44.486997 : -113.80293 : May, ID +83254 : 42.327996 : -111.32637 : Montpelier, ID +83255 : 43.774709 : -113.45086 : Moore, ID +83256 : 43.222648 : -112.442253 : Moreland, ID +83261 : 42.22771 : -111.39651 : Paris, ID +83262 : 43.115708 : -112.59511 : Pingree, ID +83263 : 42.165399 : -111.82369 : Preston, ID +83271 : 42.542266 : -112.84484 : Rockland, ID +83272 : 42.127915 : -111.3922 : Saint Charles, ID +83274 : 43.366017 : -112.11712 : Shelley, ID +83276 : 42.693133 : -111.57731 : Soda Springs, ID +83277 : 43.074319 : -112.68229 : Springfield, ID +83278 : 44.248203 : -114.93551 : Stanley, ID +83281 : 42.305798 : -111.96206 : Swanlake, ID +83283 : 42.344123 : -111.67297 : Thatcher, ID +83285 : 43.027278 : -111.22042 : Wayan, ID +83286 : 42.055593 : -111.98144 : Weston, ID +83287 : 42.021829 : -111.42742 : Fish Haven, ID +83301 : 42.530288 : -114.47509 : Twin Falls, ID +83302 : 42.096094 : -115.02366 : Rogerson, ID +83303 : 42.456273 : -114.519536 : Twin Falls, ID +83311 : 42.390977 : -113.59744 : Albion, ID +83312 : 42.08685 : -113.64135 : Almo, ID +83313 : 43.39918 : -114.25865 : Bellevue, ID +83314 : 42.937947 : -114.95287 : Bliss, ID +83316 : 42.596953 : -114.81886 : Buhl, ID +83318 : 42.496588 : -113.79857 : Burley, ID +83320 : 43.356224 : -113.89078 : Carey, ID +83321 : 42.371508 : -114.90993 : Castleford, ID +83322 : 43.377947 : -114.96964 : Corral, ID +83323 : 42.510364 : -113.41808 : Declo, ID +83324 : 42.883302 : -114.2441 : Dietrich, ID +83325 : 42.59465 : -114.25578 : Eden, ID +83327 : 43.365909 : -114.77559 : Fairfield, ID +83328 : 42.565542 : -114.61919 : Filer, ID +83330 : 42.944346 : -114.70605 : Gooding, ID +83332 : 42.811892 : -114.9251 : Hagerman, ID +83333 : 43.527659 : -114.31153 : Hailey, ID +83334 : 42.482046 : -114.299 : Hansen, ID +83335 : 42.599276 : -114.05941 : Hazelton, ID +83336 : 42.562839 : -113.7864 : Heyburn, ID +83337 : 43.312973 : -115.04088 : Hill City, ID +83338 : 42.710124 : -114.46394 : Jerome, ID +83340 : 43.750744 : -114.5198 : Ketchum, ID +83341 : 42.509557 : -114.37441 : Kimberly, ID +83342 : 42.232525 : -113.35296 : Malta, ID +83343 : 42.772955 : -113.509762 : Minidoka, ID +83344 : 42.444159 : -114.12157 : Murtaugh, ID +83346 : 42.261085 : -113.8869 : Oakley, ID +83347 : 42.71554 : -113.86281 : Paul, ID +83348 : 43.304395 : -114.06444 : Picabo, ID +83349 : 43.078896 : -114.18795 : Richfield, ID +83350 : 42.671054 : -113.62976 : Rupert, ID +83352 : 43.036666 : -114.40997 : Shoshone, ID +83353 : 43.661373 : -114.18191 : Sun Valley, ID +83354 : 43.681156 : -114.33214 : Sun Valley, ID +83355 : 42.76079 : -114.71025 : Wendell, ID +83401 : 43.528891 : -111.98136 : Idaho Falls, ID +83402 : 43.497685 : -112.07391 : Idaho Falls, ID +83403 : 43.421132 : -111.333376 : Idaho Falls, ID +83404 : 43.465998 : -112.01425 : Idaho Falls, ID +83405 : 43.323306 : -111.782152 : Idaho Falls, ID +83406 : 43.458004 : -111.95925 : Idaho Falls, ID +83415 : 43.323306 : -111.782152 : Idaho Falls, ID +83420 : 44.060947 : -111.40548 : Ashton, ID +83421 : 44.004709 : -111.55527 : Chester, ID +83422 : 43.726688 : -111.11484 : Driggs, ID +83423 : 44.164718 : -112.34258 : Dubois, ID +83424 : 43.882935 : -111.21512 : Felt, ID +83425 : 43.951754 : -112.23219 : Hamer, ID +83427 : 43.403744 : -111.83881 : Iona, ID +83428 : 43.369671 : -111.23417 : Irwin, ID +83429 : 44.490674 : -111.36631 : Island Park, ID +83431 : 43.694827 : -112.01477 : Lewisville, ID +83433 : 44.496112 : -111.32682 : Macks Inn, ID +83434 : 43.759605 : -111.99508 : Menan, ID +83435 : 43.964437 : -112.54642 : Monteview, ID +83436 : 43.879722 : -111.49617 : Newdale, ID +83438 : 44.319199 : -111.60171 : Parker, ID +83440 : 43.80991 : -111.80942 : Rexburg, ID +83441 : 43.776095 : -111.691047 : Rexburg, ID +83442 : 43.67511 : -111.87407 : Rigby, ID +83443 : 43.570104 : -111.59911 : Ririe, ID +83444 : 43.722695 : -112.15002 : Roberts, ID +83445 : 43.957025 : -111.70208 : Saint Anthony, ID +83446 : 44.397984 : -112.20206 : Spencer, ID +83447 : 44.319199 : -111.60171 : Squirrel, ID +83448 : 43.860023 : -111.70879 : Sugar City, ID +83449 : 43.450364 : -111.33201 : Swan Valley, ID +83450 : 43.857435 : -112.42474 : Terreton, ID +83451 : 43.890719 : -111.64522 : Teton, ID +83452 : 43.81958 : -111.16768 : Tetonia, ID +83454 : 43.593567 : -111.957274 : Ucon, ID +83455 : 43.636332 : -111.14842 : Victor, ID +83460 : 43.776095 : -111.691047 : Rexburg, ID +83462 : 45.338175 : -113.8584 : Carmen, ID +83463 : 45.593774 : -113.9625 : Gibbonsville, ID +83464 : 44.525291 : -113.29547 : Leadore, ID +83465 : 44.817505 : -113.67277 : Lemhi, ID +83466 : 45.486818 : -114.07866 : North Fork, ID +83467 : 45.101697 : -113.90306 : Salmon, ID +83468 : 44.926709 : -113.68966 : Tendoy, ID +83469 : 45.234391 : -114.31565 : Shoup, ID +83501 : 46.388753 : -116.98484 : Lewiston, ID +83520 : 46.505902 : -116.3187 : Ahsahka, ID +83522 : 46.041157 : -116.38568 : Cottonwood, ID +83523 : 46.223309 : -116.48168 : Craigmont, ID +83524 : 46.363204 : -116.63906 : Culdesac, ID +83525 : 45.920694 : -115.25273 : Elk City, ID +83526 : 46.154136 : -116.40471 : Ferdinand, ID +83530 : 45.923869 : -116.13146 : Grangeville, ID +83531 : 45.889314 : -115.557407 : Fenn, ID +83533 : 46.106803 : -116.25403 : Greencreek, ID +83534 : 46.375238 : -116.666843 : Culdesac, ID +83535 : 46.542771 : -116.7202 : Juliaetta, ID +83536 : 46.224145 : -116.03726 : Kamiah, ID +83537 : 46.635799 : -116.54146 : Kendrick, ID +83539 : 46.122654 : -115.72485 : Kooskia, ID +83540 : 46.39708 : -116.78649 : Lapwai, ID +83541 : 46.52808 : -116.46896 : Lenore, ID +83542 : 45.548413 : -116.301 : Lucile, ID +83543 : 46.256652 : -116.24922 : Nezperce, ID +83544 : 46.485334 : -116.20071 : Orofino, ID +83545 : 46.460115 : -116.43823 : Peck, ID +83546 : 46.525642 : -115.82276 : Pierce, ID +83547 : 45.291282 : -116.35695 : Pollock, ID +83548 : 46.332945 : -116.52939 : Reubens, ID +83549 : 45.405792 : -116.36431 : Riggins, ID +83551 : 46.400349 : -116.804544 : Spalding, ID +83552 : 46.093893 : -115.9769 : Stites, ID +83553 : 46.368447 : -115.90101 : Weippe, ID +83554 : 45.717554 : -116.26936 : White Bird, ID +83555 : 46.216165 : -116.62363 : Winchester, ID +83601 : 43.801588 : -115.13085 : Atlanta, ID +83602 : 44.066434 : -116.13976 : Banks, ID +83604 : 42.87616 : -115.88714 : Bruneau, ID +83605 : 43.658834 : -116.67755 : Caldwell, ID +83606 : 43.724917 : -116.798923 : Caldwell, ID +83607 : 43.675651 : -116.73825 : Caldwell, ID +83610 : 44.647796 : -116.69 : Cambridge, ID +83611 : 44.476882 : -115.9729 : Cascade, ID +83612 : 44.829994 : -116.55344 : Council, ID +83615 : 44.699961 : -116.05992 : Donnelly, ID +83616 : 43.705551 : -116.36346 : Eagle, ID +83617 : 43.888285 : -116.5143 : Emmett, ID +83619 : 44.002031 : -116.91129 : Fruitland, ID +83620 : 44.878097 : -116.43395 : Fruitvale, ID +83622 : 44.103121 : -115.9354 : Garden Valley, ID +83623 : 42.965519 : -115.32724 : Glenns Ferry, ID +83624 : 43.004691 : -116.07225 : Grand View, ID +83626 : 43.670142 : -116.82367 : Greenleaf, ID +83627 : 42.939818 : -115.49697 : Hammett, ID +83628 : 43.598319 : -116.9484 : Homedale, ID +83629 : 43.933688 : -116.1889 : Horseshoe Bend, ID +83630 : 43.602661 : -116.790284 : Huston, ID +83631 : 43.85128 : -115.87903 : Idaho City, ID +83632 : 44.554347 : -116.4388 : Indian Valley, ID +83633 : 42.969692 : -115.17427 : King Hill, ID +83634 : 43.463644 : -116.39311 : Kuna, ID +83635 : 44.68367 : -115.453583 : Lake Fork, ID +83636 : 43.896275 : -116.646209 : Letha, ID +83637 : 44.08857 : -115.48797 : Lowman, ID +83638 : 44.854428 : -116.04991 : McCall, ID +83639 : 43.534319 : -116.84062 : Marsing, ID +83641 : 43.370358 : -116.57555 : Melba, ID +83642 : 43.609434 : -116.39642 : Meridian, ID +83643 : 44.605095 : -116.48879 : Mesa, ID +83644 : 43.720076 : -116.60253 : Middleton, ID +83645 : 44.426905 : -116.62405 : Midvale, ID +83647 : 43.208029 : -115.62345 : Mountain Home, ID +83648 : 43.06997 : -115.85201 : Mountain Home A F B, ID +83650 : 43.135267 : -116.46584 : Murphy, ID +83651 : 43.583454 : -116.58697 : Nampa, ID +83652 : 43.70713 : -116.620774 : Nampa, ID +83653 : 43.585149 : -116.752963 : Nampa, ID +83654 : 45.077791 : -116.34335 : New Meadows, ID +83655 : 43.96929 : -116.81389 : New Plymouth, ID +83656 : 43.725546 : -116.8008 : Notus, ID +83657 : 44.279564 : -116.29949 : Ola, ID +83660 : 43.790319 : -116.93469 : Parma, ID +83661 : 44.079947 : -116.89433 : Payette, ID +83666 : 43.948003 : -115.98055 : Placerville, ID +83669 : 43.697658 : -116.49155 : Star, ID +83670 : 44.017756 : -116.31264 : Sweet, ID +83671 : 45.273532 : -115.69194 : Warren, ID +83672 : 44.310781 : -116.93326 : Weiser, ID +83676 : 43.653878 : -116.90117 : Wilder, ID +83677 : 45.01781 : -115.55397 : Yellow Pine, ID +83680 : 43.459855 : -116.243984 : Meridian, ID +83686 : 43.529812 : -116.57761 : Nampa, ID +83687 : 43.590212 : -116.53781 : Nampa, ID +83701 : 43.603768 : -116.272921 : Boise, ID +83702 : 43.627734 : -116.20756 : Boise, ID +83703 : 43.668396 : -116.25707 : Boise, ID +83704 : 43.63123 : -116.28716 : Boise, ID +83705 : 43.583139 : -116.2252 : Boise, ID +83706 : 43.593523 : -116.19903 : Boise, ID +83707 : 43.38469 : -115.997118 : Boise, ID +83708 : 43.459855 : -116.243984 : Boise, ID +83709 : 43.572671 : -116.29527 : Boise, ID +83711 : 43.459855 : -116.243984 : Boise, ID +83712 : 43.595763 : -116.16367 : Boise, ID +83713 : 43.638314 : -116.33059 : Boise, ID +83714 : 43.641774 : -116.26507 : Boise, ID +83715 : 43.459855 : -116.243984 : Boise, ID +83716 : 43.601772 : -116.02721 : Boise, ID +83717 : 43.459855 : -116.243984 : Boise, ID +83719 : 43.459855 : -116.243984 : Boise, ID +83720 : 43.459855 : -116.243984 : Boise, ID +83721 : 43.459855 : -116.243984 : Boise, ID +83722 : 43.459855 : -116.243984 : Boise, ID +83723 : 43.459855 : -116.243984 : Boise, ID +83724 : 43.619477 : -116.195159 : Boise, ID +83725 : 43.459855 : -116.243984 : Boise, ID +83726 : 43.459855 : -116.243984 : Boise, ID +83727 : 43.459855 : -116.243984 : Boise, ID +83728 : 43.459855 : -116.243984 : Boise, ID +83729 : 43.459855 : -116.243984 : Boise, ID +83730 : 43.459855 : -116.243984 : Boise, ID +83731 : 43.459855 : -116.243984 : Boise, ID +83732 : 43.459855 : -116.243984 : Boise, ID +83733 : 43.459855 : -116.243984 : Boise, ID +83735 : 43.459855 : -116.243984 : Boise, ID +83744 : 43.459855 : -116.243984 : Boise, ID +83756 : 43.459855 : -116.243984 : Boise, ID +83757 : 43.459855 : -116.243984 : Boise, ID +83788 : 43.606453 : -116.28116 : Boise, ID +83799 : 43.459855 : -116.243984 : Boise, ID +83801 : 47.943718 : -116.66605 : Athol, ID +83802 : 47.173432 : -115.80199 : Avery, ID +83803 : 47.982523 : -116.56168 : Bayview, ID +83804 : 48.021497 : -116.98833 : Blanchard, ID +83805 : 48.770783 : -116.41051 : Bonners Ferry, ID +83806 : 46.868617 : -116.39726 : Bovill, ID +83808 : 47.269078 : -116.12134 : Calder, ID +83809 : 48.055621 : -116.5854 : Careywood, ID +83810 : 47.532742 : -116.46535 : Cataldo, ID +83811 : 48.119781 : -116.15905 : Clark Fork, ID +83812 : 46.999999 : -116.26693 : Clarkia, ID +83813 : 48.108672 : -116.64794 : Cocolalla, ID +83814 : 47.66655 : -116.7757 : Coeur D Alene, ID +83815 : 47.718227 : -116.78897 : Coeur D Alene, ID +83816 : 47.678798 : -116.682718 : Coeur D Alene, ID +83821 : 48.582545 : -116.83491 : Coolin, ID +83822 : 48.168577 : -117.02483 : Oldtown, ID +83823 : 46.79844 : -116.54841 : Deary, ID +83824 : 47.123919 : -116.94417 : Desmet, ID +83825 : 48.36875 : -116.545493 : Dover, ID +83826 : 48.974293 : -116.1865 : Eastport, ID +83827 : 46.779767 : -116.17964 : Elk River, ID +83830 : 47.10625 : -116.38764 : Fernwood, ID +83832 : 46.552921 : -116.91914 : Genesee, ID +83833 : 47.498424 : -116.74475 : Harrison, ID +83834 : 46.973846 : -116.71663 : Harvard, ID +83835 : 47.773595 : -116.74907 : Hayden, ID +83836 : 48.229101 : -116.27423 : Hope, ID +83837 : 47.542783 : -116.11848 : Kellogg, ID +83839 : 47.566703 : -116.20774 : Kingston, ID +83840 : 48.314378 : -116.515276 : Kootenai, ID +83841 : 48.161421 : -116.76728 : Laclede, ID +83842 : 47.456917 : -116.57917 : Medimont, ID +83843 : 46.727636 : -116.98067 : Moscow, ID +83844 : 46.836284 : -116.684553 : Moscow, ID +83845 : 48.720842 : -116.13626 : Moyie Springs, ID +83846 : 47.466971 : -115.78377 : Mullan, ID +83847 : 48.575219 : -116.41475 : Naples, ID +83848 : 48.649023 : -116.89426 : Nordman, ID +83849 : 47.517239 : -116.01495 : Osburn, ID +83850 : 47.512203 : -116.24128 : Pinehurst, ID +83851 : 47.322203 : -116.88379 : Plummer, ID +83852 : 48.30476 : -116.53305 : Ponderay, ID +83853 : 48.953737 : -116.53078 : Porthill, ID +83854 : 47.720306 : -116.94564 : Post Falls, ID +83855 : 46.95597 : -116.91671 : Potlatch, ID +83856 : 48.315799 : -116.90904 : Priest River, ID +83857 : 46.871275 : -116.82431 : Princeton, ID +83858 : 47.818931 : -116.8783 : Rathdrum, ID +83860 : 48.205853 : -116.5571 : Sagle, ID +83861 : 47.274904 : -116.57392 : Saint Maries, ID +83862 : 48.36875 : -116.545493 : Samuels, ID +83864 : 48.362033 : -116.55101 : Sandpoint, ID +83865 : 48.363251 : -116.625594 : Colburn, ID +83866 : 47.161756 : -116.42113 : Santa, ID +83867 : 47.495306 : -115.9555 : Silverton, ID +83868 : 47.542989 : -116.18156 : Smelterville, ID +83869 : 47.97618 : -116.86895 : Spirit Lake, ID +83870 : 47.155827 : -116.89647 : Tensed, ID +83871 : 46.747944 : -116.74693 : Troy, ID +83872 : 46.861905 : -116.96316 : Viola, ID +83873 : 47.533448 : -115.88759 : Wallace, ID +83874 : 47.626188 : -115.83204 : Murray, ID +83876 : 47.446701 : -116.90486 : Worley, ID +83877 : 47.678798 : -116.682718 : Post Falls, ID +83888 : 48.36875 : -116.545493 : Sandpoint, ID +84001 : 40.395531 : -110.27969 : Altamont, UT +84002 : 40.45679 : -110.32673 : Altonah, UT +84003 : 40.394235 : -111.79449 : American Fork, UT +84004 : 40.465161 : -111.76279 : Alpine, UT +84006 : 40.563896 : -112.1281 : Bingham Canyon, UT +84007 : 40.349644 : -110.19776 : Bluebell, UT +84008 : 40.443106 : -109.505593 : Bonanza, UT +84010 : 40.876312 : -111.87249 : Bountiful, UT +84011 : 40.963547 : -112.115984 : Bountiful, UT +84013 : 40.288953 : -112.09859 : Cedar Valley, UT +84014 : 40.927244 : -111.87682 : Centerville, UT +84015 : 41.126476 : -112.04427 : Clearfield, UT +84016 : 40.892995 : -111.888121 : Clearfield, UT +84017 : 40.88097 : -111.37752 : Coalville, UT +84018 : 41.084479 : -111.53153 : Croydon, UT +84020 : 40.514843 : -111.87294 : Draper, UT +84021 : 40.169399 : -110.46066 : Duchesne, UT +84022 : 40.212316 : -112.70012 : Dugway, UT +84023 : 40.881951 : -109.46319 : Dutch John, UT +84024 : 40.959532 : -111.42743 : Echo, UT +84025 : 40.988347 : -111.88847 : Farmington, UT +84026 : 40.294693 : -109.82903 : Fort Duchesne, UT +84027 : 40.156858 : -110.95449 : Fruitland, UT +84028 : 41.91021 : -111.40328 : Garden City, UT +84029 : 40.689007 : -112.6698 : Grantsville, UT +84030 : 40.160179 : -109.547839 : Gusher, UT +84031 : 40.535823 : -110.46651 : Hanna, UT +84032 : 40.511413 : -111.33259 : Heber City, UT +84033 : 40.996895 : -111.50264 : Henefer, UT +84034 : 40.105506 : -113.94372 : Ibapah, UT +84035 : 40.443203 : -109.25255 : Jensen, UT +84036 : 40.625883 : -111.20141 : Kamas, UT +84037 : 41.032893 : -111.93004 : Kaysville, UT +84038 : 41.797569 : -111.3702 : Laketown, UT +84039 : 40.401201 : -109.81677 : Lapoint, UT +84040 : 41.086894 : -111.9271 : Layton, UT +84041 : 41.07221 : -111.97625 : Layton, UT +84042 : 40.338552 : -111.7162 : Lindon, UT +84043 : 40.366648 : -111.89052 : Lehi, UT +84044 : 40.700162 : -112.08318 : Magna, UT +84046 : 40.978642 : -109.74719 : Manila, UT +84047 : 40.614997 : -111.88704 : Midvale, UT +84049 : 40.518775 : -111.49837 : Midway, UT +84050 : 41.059771 : -111.71141 : Morgan, UT +84051 : 40.42204 : -110.38597 : Mountain Home, UT +84052 : 40.065834 : -110.14823 : Myton, UT +84053 : 40.440294 : -110.02525 : Neola, UT +84054 : 40.843012 : -111.90581 : North Salt Lake, UT +84055 : 40.80725 : -111.204 : Oakley, UT +84056 : 41.118815 : -112.01151 : Hill AFB, UT +84057 : 40.311854 : -111.70561 : Orem, UT +84058 : 40.278086 : -111.71067 : Orem, UT +84059 : 40.176975 : -111.536036 : Orem, UT +84060 : 40.648541 : -111.49362 : Park City, UT +84061 : 40.732935 : -111.35283 : Peoa, UT +84062 : 40.38584 : -111.73333 : Pleasant Grove, UT +84063 : 40.176006 : -109.70579 : Randlett, UT +84064 : 41.656963 : -111.16584 : Randolph, UT +84065 : 40.503746 : -111.96327 : Riverton, UT +84066 : 40.328012 : -110.01689 : Roosevelt, UT +84067 : 41.173226 : -112.05093 : Roy, UT +84068 : 40.66797 : -111.505365 : Park City, UT +84069 : 40.366554 : -112.45813 : Rush Valley, UT +84070 : 40.581595 : -111.88821 : Sandy, UT +84071 : 40.336367 : -112.33819 : Stockton, UT +84072 : 40.362986 : -110.70128 : Tabiona, UT +84073 : 40.352343 : -110.46935 : Talmage, UT +84074 : 40.560528 : -112.29455 : Tooele, UT +84075 : 41.086069 : -112.06279 : Syracuse, UT +84076 : 40.446132 : -109.87476 : Tridell, UT +84078 : 40.514262 : -109.54223 : Vernal, UT +84079 : 40.160179 : -109.547839 : Vernal, UT +84080 : 40.105195 : -112.31673 : Vernon, UT +84082 : 40.371817 : -111.41809 : Wallsburg, UT +84083 : 40.773372 : -114.0093 : Wendover, UT +84084 : 40.627668 : -111.97566 : West Jordan, UT +84085 : 40.529949 : -109.91425 : Whiterocks, UT +84086 : 41.376622 : -111.22578 : Woodruff, UT +84087 : 40.888711 : -111.90909 : Woods Cross, UT +84088 : 40.594222 : -111.97889 : West Jordan, UT +84089 : 40.963547 : -112.115984 : Clearfield, UT +84090 : 40.668068 : -111.908297 : Sandy, UT +84091 : 40.668068 : -111.908297 : Sandy, UT +84092 : 40.558748 : -111.80902 : Sandy, UT +84093 : 40.594948 : -111.83448 : Sandy, UT +84094 : 40.569598 : -111.86217 : Sandy, UT +84095 : 40.561598 : -111.96088 : South Jordan, UT +84097 : 40.301444 : -111.67485 : Orem, UT +84098 : 40.726899 : -111.53674 : Park City, UT +84101 : 40.754746 : -111.89875 : Salt Lake City, UT +84102 : 40.759246 : -111.86371 : Salt Lake City, UT +84103 : 40.777746 : -111.87491 : Salt Lake City, UT +84104 : 40.750628 : -111.94077 : Salt Lake City, UT +84105 : 40.737132 : -111.86044 : Salt Lake City, UT +84106 : 40.706246 : -111.85657 : Salt Lake City, UT +84107 : 40.659997 : -111.88394 : Salt Lake City, UT +84108 : 40.744646 : -111.81123 : Salt Lake City, UT +84109 : 40.705747 : -111.79973 : Salt Lake City, UT +84110 : 40.668068 : -111.908297 : Salt Lake City, UT +84111 : 40.7547 : -111.88361 : Salt Lake City, UT +84112 : 40.76784 : -111.83805 : Salt Lake City, UT +84113 : 40.763322 : -111.83364 : Salt Lake City, UT +84114 : 40.668068 : -111.908297 : Salt Lake City, UT +84115 : 40.718113 : -111.88938 : Salt Lake City, UT +84116 : 40.790309 : -111.94018 : Salt Lake City, UT +84117 : 40.662797 : -111.83797 : Salt Lake City, UT +84118 : 40.650496 : -111.99591 : Salt Lake City, UT +84119 : 40.696596 : -111.95239 : Salt Lake City, UT +84120 : 40.688246 : -111.99899 : Salt Lake City, UT +84121 : 40.625621 : -111.8158 : Salt Lake City, UT +84122 : 40.668068 : -111.908297 : Salt Lake City, UT +84123 : 40.659514 : -111.92226 : Salt Lake City, UT +84124 : 40.680064 : -111.8222 : Salt Lake City, UT +84125 : 40.668068 : -111.908297 : Salt Lake City, UT +84126 : 40.668068 : -111.908297 : Salt Lake City, UT +84127 : 40.668068 : -111.908297 : Salt Lake City, UT +84128 : 40.694746 : -112.04004 : Salt Lake City, UT +84130 : 40.668068 : -111.908297 : Salt Lake City, UT +84131 : 40.668068 : -111.908297 : Salt Lake City, UT +84132 : 40.772743 : -111.838541 : Salt Lake City, UT +84133 : 40.769046 : -111.889319 : Salt Lake City, UT +84134 : 40.668068 : -111.908297 : Salt Lake City, UT +84135 : 40.668068 : -111.908297 : Salt Lake City, UT +84136 : 40.768546 : -111.887869 : Salt Lake City, UT +84137 : 40.668068 : -111.908297 : Salt Lake City, UT +84138 : 40.671614 : -111.74828 : Salt Lake City, UT +84139 : 40.668068 : -111.908297 : Salt Lake City, UT +84140 : 40.771345 : -111.93087 : Salt Lake City, UT +84141 : 40.668068 : -111.908297 : Salt Lake City, UT +84142 : 40.668068 : -111.908297 : Salt Lake City, UT +84143 : 40.786886 : -111.900832 : Salt Lake City, UT +84144 : 40.767946 : -111.890819 : Salt Lake City, UT +84145 : 40.668068 : -111.908297 : Salt Lake City, UT +84147 : 40.668068 : -111.908297 : Salt Lake City, UT +84148 : 40.756796 : -111.837567 : Salt Lake City, UT +84150 : 40.668068 : -111.908297 : Salt Lake City, UT +84151 : 40.668068 : -111.908297 : Salt Lake City, UT +84152 : 40.728579 : -111.66273 : Salt Lake City, UT +84153 : 40.668068 : -111.908297 : Salt Lake City, UT +84157 : 40.668068 : -111.908297 : Salt Lake City, UT +84158 : 40.768996 : -111.762115 : Salt Lake City, UT +84165 : 40.668068 : -111.908297 : Salt Lake City, UT +84170 : 40.668068 : -111.908297 : Salt Lake City, UT +84171 : 40.668068 : -111.908297 : Salt Lake City, UT +84180 : 40.770248 : -111.90077 : Salt Lake City, UT +84184 : 40.676839 : -111.956811 : Salt Lake City, UT +84185 : 40.668068 : -111.908297 : Salt Lake City, UT +84189 : 40.668068 : -111.908297 : Salt Lake City, UT +84190 : 40.668068 : -111.908297 : Salt Lake City, UT +84199 : 40.725946 : -111.93942 : Salt Lake City, UT +84201 : 41.244261 : -112.007924 : Ogden, UT +84244 : 41.255285 : -111.956721 : Ogden, UT +84252 : 38.995483 : -110.160534 : Green River, UT +84301 : 41.615276 : -112.12561 : Bear River City, UT +84302 : 41.508605 : -112.04736 : Brigham City, UT +84304 : 41.832776 : -111.99738 : Cache Junction, UT +84305 : 41.938629 : -112.0433 : Clarkston, UT +84306 : 41.804848 : -112.07009 : Collinston, UT +84307 : 41.535714 : -112.30373 : Corinne, UT +84308 : 41.944253 : -111.973275 : Cornish, UT +84309 : 41.714101 : -112.08846 : Deweyville, UT +84310 : 41.364638 : -111.81304 : Eden, UT +84311 : 41.81571 : -112.11338 : Fielding, UT +84312 : 41.76645 : -112.15829 : Garland, UT +84313 : 41.307779 : -113.56365 : Grouse Creek, UT +84314 : 41.644833 : -112.09427 : Honeyville, UT +84315 : 41.172593 : -112.10675 : Hooper, UT +84316 : 41.773176 : -112.45965 : Howell, UT +84317 : 41.288679 : -111.70449 : Huntsville, UT +84318 : 41.801888 : -111.81535 : Hyde Park, UT +84319 : 41.630767 : -111.84549 : Hyrum, UT +84320 : 41.968475 : -111.86587 : Lewiston, UT +84321 : 41.730637 : -111.78042 : Logan, UT +84322 : 41.641189 : -111.896571 : Logan, UT +84323 : 41.684253 : -111.783783 : Logan, UT +84324 : 41.492466 : -111.94275 : Mantua, UT +84325 : 41.721715 : -111.97114 : Mendon, UT +84326 : 41.682506 : -111.825 : Millville, UT +84327 : 41.867966 : -111.99026 : Newton, UT +84328 : 41.508503 : -111.79102 : Paradise, UT +84329 : 41.689359 : -113.44562 : Park Valley, UT +84330 : 41.875803 : -112.13957 : Plymouth, UT +84331 : 41.909031 : -112.32322 : Portage, UT +84332 : 41.701304 : -111.8096 : Providence, UT +84333 : 41.919806 : -111.81676 : Richmond, UT +84334 : 41.791414 : -112.14671 : Riverside, UT +84335 : 41.833371 : -111.85897 : Smithfield, UT +84336 : 41.792609 : -112.91032 : Snowville, UT +84337 : 41.688721 : -112.22327 : Tremonton, UT +84338 : 41.935384 : -111.94607 : Trenton, UT +84339 : 41.641328 : -111.92716 : Wellsville, UT +84340 : 41.368481 : -112.05538 : Willard, UT +84341 : 41.780998 : -111.80904 : Logan, UT +84346 : 41.346348 : -112.063983 : South Willard, UT +84401 : 41.224911 : -111.98346 : Ogden, UT +84402 : 41.255285 : -111.956721 : Ogden, UT +84403 : 41.188093 : -111.94608 : Ogden, UT +84404 : 41.270319 : -112.01932 : Ogden, UT +84405 : 41.165551 : -111.9675 : Ogden, UT +84407 : 41.238547 : -111.965867 : Ogden, UT +84408 : 41.195593 : -111.948474 : Ogden, UT +84409 : 41.255285 : -111.956721 : Ogden, UT +84412 : 41.255285 : -111.956721 : Ogden, UT +84414 : 41.314075 : -111.96366 : Ogden, UT +84415 : 41.255285 : -111.956721 : Ogden, UT +84501 : 39.578473 : -110.78678 : Price, UT +84510 : 37.198216 : -109.11245 : Aneth, UT +84511 : 37.562925 : -109.46245 : Blanding, UT +84512 : 37.158935 : -109.52773 : Bluff, UT +84513 : 39.222858 : -111.00605 : Castle Dale, UT +84515 : 38.999877 : -109.615008 : Cisco, UT +84516 : 39.088224 : -111.05489 : Clawson, UT +84518 : 39.350034 : -110.87184 : Cleveland, UT +84520 : 39.569596 : -110.34199 : East Carbon, UT +84521 : 39.367253 : -110.78956 : Elmo, UT +84522 : 38.889362 : -111.17706 : Emery, UT +84523 : 39.109059 : -111.13617 : Ferron, UT +84525 : 38.983076 : -110.35905 : Green River, UT +84526 : 39.694641 : -110.98561 : Helper, UT +84527 : 39.640779 : -110.560697 : Hiawatha, UT +84528 : 39.343592 : -110.9778 : Huntington, UT +84529 : 39.6866 : -110.80479 : Kenilworth, UT +84530 : 38.236886 : -109.15445 : La Sal, UT +84531 : 37.183505 : -109.93383 : Mexican Hat, UT +84532 : 38.572778 : -109.49392 : Moab, UT +84533 : 37.655431 : -110.03772 : Lake Powell, UT +84534 : 37.237899 : -109.28709 : Montezuma Creek, UT +84535 : 37.886087 : -109.30629 : Monticello, UT +84536 : 36.990184 : -110.2123 : Monument Valley, AZ +84537 : 39.36696 : -111.16518 : Orangeville, UT +84539 : 39.661026 : -110.58819 : Sunnyside, UT +84540 : 39.210907 : -109.44491 : Thompson, UT +84542 : 39.543105 : -110.72865 : Wellington, UT +84601 : 40.230954 : -111.68006 : Provo, UT +84602 : 40.356343 : -111.732476 : Provo, UT +84603 : 40.203908 : -111.626081 : Provo, UT +84604 : 40.280454 : -111.6491 : Provo, UT +84605 : 40.176975 : -111.536036 : Provo, UT +84606 : 40.226302 : -111.64439 : Provo, UT +84620 : 38.917381 : -111.92835 : Aurora, UT +84621 : 39.050838 : -111.84775 : Axtell, UT +84622 : 39.114649 : -111.80511 : Centerfield, UT +84623 : 39.465357 : -111.57686 : Chester, UT +84624 : 39.349079 : -112.5433 : Delta, UT +84626 : 39.92519 : -111.99559 : Elberta, UT +84627 : 39.353561 : -111.5783 : Ephraim, UT +84628 : 39.855141 : -112.14995 : Eureka, UT +84629 : 39.701506 : -111.42865 : Fairview, UT +84630 : 39.272741 : -111.77838 : Fayette, UT +84631 : 38.951694 : -112.31666 : Fillmore, UT +84632 : 39.633383 : -111.62844 : Fountain Green, UT +84633 : 39.949142 : -111.89623 : Goshen, UT +84634 : 39.193513 : -111.85047 : Gunnison, UT +84635 : 39.314609 : -112.79181 : Hinckley, UT +84636 : 39.099629 : -112.2823 : Holden, UT +84637 : 38.811791 : -112.70637 : Kanosh, UT +84638 : 39.532384 : -112.27113 : Leamington, UT +84639 : 39.47178 : -111.94431 : Levan, UT +84640 : 39.522214 : -112.36913 : Lynndyl, UT +84642 : 39.230151 : -111.57601 : Manti, UT +84643 : 39.111512 : -111.69904 : Mayfield, UT +84644 : 39.06433 : -113.032141 : Meadow, UT +84645 : 39.859432 : -111.85402 : Mona, UT +84646 : 39.526133 : -111.58299 : Moroni, UT +84647 : 39.545778 : -111.43798 : Mount Pleasant, UT +84648 : 39.692424 : -111.88229 : Nephi, UT +84649 : 39.370295 : -112.32369 : Oak City, UT +84650 : 39.291167 : -112.62826 : Oasis, UT +84651 : 40.025007 : -111.72117 : Payson, UT +84652 : 38.974463 : -111.92215 : Redmond, UT +84653 : 40.043907 : -111.66405 : Salem, UT +84654 : 38.915722 : -111.72893 : Salina, UT +84655 : 40.03148 : -111.85302 : Santaquin, UT +84656 : 39.240818 : -112.14804 : Scipio, UT +84657 : 38.834889 : -111.943 : Sigurd, UT +84660 : 40.10637 : -111.65408 : Spanish Fork, UT +84662 : 39.461825 : -111.47818 : Spring City, UT +84663 : 40.168205 : -111.59577 : Springville, UT +84664 : 40.123394 : -111.56665 : Mapleton, UT +84665 : 39.133489 : -111.740853 : Sterling, UT +84667 : 39.458682 : -111.67126 : Wales, UT +84701 : 38.765929 : -112.08397 : Richfield, UT +84710 : 37.474045 : -112.53409 : Alton, UT +84711 : 38.707639 : -112.05826 : Annabella, UT +84712 : 38.070706 : -111.97354 : Antimony, UT +84713 : 38.35906 : -112.6926 : Beaver, UT +84714 : 37.798268 : -113.6718 : Beryl, UT +84715 : 38.338787 : -111.54921 : Bicknell, UT +84716 : 37.94512 : -111.09991 : Boulder, UT +84717 : 37.6153 : -112.17088 : Bryce Canyon, UT +84718 : 37.576034 : -112.08849 : Cannonville, UT +84719 : 37.663896 : -112.81081 : Brian Head, UT +84720 : 37.75164 : -113.16557 : Cedar City, UT +84721 : 37.656843 : -113.3695 : Cedar City, UT +84722 : 37.416058 : -113.62554 : Central, UT +84723 : 38.180655 : -112.25563 : Circleville, UT +84724 : 38.686793 : -112.14565 : Elsinore, UT +84725 : 37.533546 : -113.76108 : Enterprise, UT +84726 : 37.76737 : -111.6841 : Escalante, UT +84728 : 38.970536 : -113.7085 : Garrison, UT +84729 : 37.351773 : -112.61182 : Glendale, UT +84730 : 38.764683 : -111.98379 : Glenwood, UT +84731 : 38.218885 : -112.82508 : Greenville, UT +84732 : 38.446294 : -111.9101 : Greenwich, UT +84733 : 37.179347 : -113.8136 : Gunlock, UT +84734 : 38.289429 : -110.66366 : Hanksville, UT +84735 : 37.61127 : -112.55601 : Hatch, UT +84736 : 37.565311 : -111.99144 : Henrieville, UT +84737 : 37.130927 : -113.24183 : Hurricane, UT +84738 : 37.164561 : -113.67582 : Ivins, UT +84739 : 38.620071 : -112.23422 : Joseph, UT +84740 : 38.238084 : -112.23014 : Junction, UT +84741 : 37.162224 : -112.11431 : Kanab, UT +84742 : 37.522753 : -113.203633 : Kanarraville, UT +84743 : 38.230935 : -112.18455 : Kingston, UT +84744 : 38.510659 : -111.88029 : Koosharem, UT +84745 : 37.219954 : -113.25581 : La Verkin, UT +84746 : 37.237225 : -113.33562 : Leeds, UT +84747 : 38.41744 : -111.67612 : Loa, UT +84749 : 38.386384 : -111.5911 : Lyman, UT +84750 : 38.439428 : -112.2208 : Marysvale, UT +84751 : 38.348238 : -113.1063 : Milford, UT +84752 : 38.217377 : -112.93204 : Minersville, UT +84753 : 37.873645 : -113.88673 : Modena, UT +84754 : 38.618547 : -111.88908 : Monroe, UT +84755 : 37.261273 : -112.79836 : Mount Carmel, UT +84756 : 37.692401 : -113.627239 : Newcastle, UT +84757 : 37.391483 : -113.2821 : New Harmony, UT +84758 : 37.26947 : -112.64419 : Orderville, UT +84759 : 37.777031 : -112.40819 : Panguitch, UT +84760 : 37.911834 : -112.68799 : Paragonah, UT +84761 : 37.886163 : -112.83945 : Parowan, UT +84762 : 37.48474 : -112.71064 : Duck Creek Village, UT +84763 : 37.160144 : -113.042525 : Rockville, UT +84764 : 37.638578 : -112.20857 : Bryce, UT +84765 : 37.136937 : -113.64916 : Santa Clara, UT +84766 : 38.568765 : -112.35173 : Sevier, UT +84767 : 37.186249 : -113.013922 : Springdale, UT +84770 : 37.118352 : -113.5987 : Saint George, UT +84771 : 37.309231 : -113.476182 : Saint George, UT +84772 : 37.800295 : -112.93517 : Summit, UT +84773 : 38.28419 : -111.53072 : Teasdale, UT +84774 : 37.250749 : -113.27491 : Toquerville, UT +84775 : 38.340186 : -111.0022 : Torrey, UT +84776 : 37.650853 : -112.07946 : Tropic, UT +84779 : 37.294867 : -113.10279 : Virgin, UT +84780 : 37.144146 : -113.49671 : Washington, UT +84781 : 37.391737 : -113.51806 : Pine Valley, UT +84782 : 37.359887 : -113.66976 : Veyo, UT +84783 : 37.287005 : -113.66144 : Dammeron Valley, UT +84784 : 37.004364 : -112.978418 : Hildale, UT +84790 : 37.075039 : -113.55568 : Saint George, UT +84791 : 37.309231 : -113.476182 : Saint George, UT +84821 : 41.717612 : -111.868898 : Logan, UT +84910 : 40.858481 : -111.898438 : North Salt Lake, UT +84915 : 41.142472 : -112.066211 : Clinton, UT +84947 : 38.399138 : -111.591641 : Lyman, UT +85001 : 33.703967 : -112.351835 : Phoenix, AZ +85002 : 33.276539 : -112.18717 : Phoenix, AZ +85003 : 33.451143 : -112.07838 : Phoenix, AZ +85004 : 33.451093 : -112.07057 : Phoenix, AZ +85005 : 33.276539 : -112.18717 : Phoenix, AZ +85006 : 33.466392 : -112.04875 : Phoenix, AZ +85007 : 33.449995 : -112.09024 : Phoenix, AZ +85008 : 33.466393 : -112.0008 : Phoenix, AZ +85009 : 33.45635 : -112.12378 : Phoenix, AZ +85010 : 33.276539 : -112.18717 : Phoenix, AZ +85011 : 33.276539 : -112.18717 : Phoenix, AZ +85012 : 33.505251 : -112.0703 : Phoenix, AZ +85013 : 33.50711 : -112.08483 : Phoenix, AZ +85014 : 33.511325 : -112.05711 : Phoenix, AZ +85015 : 33.50689 : -112.10262 : Phoenix, AZ +85016 : 33.503742 : -112.03235 : Phoenix, AZ +85017 : 33.514092 : -112.12285 : Phoenix, AZ +85018 : 33.498076 : -111.98603 : Phoenix, AZ +85019 : 33.511992 : -112.1417 : Phoenix, AZ +85020 : 33.563663 : -112.05519 : Phoenix, AZ +85021 : 33.559437 : -112.09281 : Phoenix, AZ +85022 : 33.630497 : -112.0521 : Phoenix, AZ +85023 : 33.638271 : -112.09341 : Phoenix, AZ +85024 : 33.675564 : -112.04717 : Phoenix, AZ +85025 : 33.422621 : -111.723635 : Phoenix, AZ +85026 : 33.276539 : -112.18717 : Phoenix, AZ +85027 : 33.698731 : -112.11429 : Phoenix, AZ +85028 : 33.585037 : -112.00815 : Phoenix, AZ +85029 : 33.598841 : -112.12023 : Phoenix, AZ +85030 : 33.276539 : -112.18717 : Phoenix, AZ +85031 : 33.493496 : -112.17108 : Phoenix, AZ +85032 : 33.62414 : -112.00416 : Phoenix, AZ +85033 : 33.496091 : -112.21405 : Phoenix, AZ +85034 : 33.437772 : -112.0281 : Phoenix, AZ +85035 : 33.472492 : -112.1875 : Phoenix, AZ +85036 : 33.276539 : -112.18717 : Phoenix, AZ +85037 : 33.493006 : -112.25539 : Phoenix, AZ +85038 : 33.276539 : -112.18717 : Phoenix, AZ +85039 : 33.276539 : -112.18717 : Phoenix, AZ +85040 : 33.393323 : -112.02857 : Phoenix, AZ +85041 : 33.386995 : -112.10076 : Phoenix, AZ +85042 : 33.381234 : -112.027663 : Phoenix, AZ +85043 : 33.435405 : -112.20009 : Phoenix, AZ +85044 : 33.333591 : -111.99246 : Phoenix, AZ +85045 : 33.29974 : -112.09812 : Phoenix, AZ +85046 : 33.276539 : -112.18717 : Phoenix, AZ +85048 : 33.302098 : -112.02477 : Phoenix, AZ +85050 : 33.683603 : -111.99271 : Phoenix, AZ +85051 : 33.559783 : -112.13361 : Phoenix, AZ +85053 : 33.629911 : -112.13122 : Phoenix, AZ +85054 : 33.689558 : -111.96463 : Phoenix, AZ +85055 : 33.276539 : -112.18717 : Phoenix, AZ +85060 : 33.276539 : -112.18717 : Phoenix, AZ +85061 : 33.276539 : -112.18717 : Phoenix, AZ +85062 : 33.276539 : -112.18717 : Phoenix, AZ +85063 : 33.276539 : -112.18717 : Phoenix, AZ +85064 : 33.276539 : -112.18717 : Phoenix, AZ +85065 : 33.276539 : -112.18717 : Phoenix, AZ +85066 : 33.276539 : -112.18717 : Phoenix, AZ +85067 : 33.276539 : -112.18717 : Phoenix, AZ +85068 : 33.276539 : -112.18717 : Phoenix, AZ +85069 : 33.276539 : -112.18717 : Phoenix, AZ +85070 : 33.276539 : -112.18717 : Phoenix, AZ +85071 : 33.276539 : -112.18717 : Phoenix, AZ +85072 : 33.276539 : -112.18717 : Phoenix, AZ +85073 : 33.276539 : -112.18717 : Phoenix, AZ +85074 : 33.276539 : -112.18717 : Phoenix, AZ +85075 : 33.276539 : -112.18717 : Phoenix, AZ +85076 : 33.276539 : -112.18717 : Phoenix, AZ +85077 : 33.276539 : -112.18717 : Phoenix, AZ +85078 : 33.276539 : -112.18717 : Phoenix, AZ +85079 : 33.276539 : -112.18717 : Phoenix, AZ +85080 : 33.276539 : -112.18717 : Phoenix, AZ +85082 : 33.276539 : -112.18717 : Phoenix, AZ +85085 : 33.77776 : -112.07945 : Phoenix, AZ +85086 : 33.831866 : -112.06339 : Anthem, AZ +85087 : 33.921493 : -112.09992 : New River, AZ +85089 : 33.909138 : -112.140771 : New River, AZ +85097 : 33.276539 : -112.18717 : Phoenix, AZ +85098 : 33.276539 : -112.18717 : Phoenix, AZ +85099 : 33.276539 : -112.18717 : Phoenix, AZ +85123 : 33.427135 : -111.758483 : Mesa, AZ +85200 : 33.423596 : -111.594435 : Mesa, AZ +85201 : 33.432177 : -111.84701 : Mesa, AZ +85202 : 33.381097 : -111.8756 : Mesa, AZ +85203 : 33.437493 : -111.806 : Mesa, AZ +85204 : 33.400127 : -111.78594 : Mesa, AZ +85205 : 33.426932 : -111.71686 : Mesa, AZ +85206 : 33.400306 : -111.72452 : Mesa, AZ +85207 : 33.436767 : -111.64338 : Mesa, AZ +85208 : 33.393967 : -111.64302 : Mesa, AZ +85210 : 33.391233 : -111.84129 : Mesa, AZ +85211 : 33.466313 : -111.837345 : Mesa, AZ +85212 : 33.35035 : -111.64535 : Mesa, AZ +85213 : 33.434192 : -111.76892 : Mesa, AZ +85214 : 33.276539 : -112.18717 : Mesa, AZ +85215 : 33.479868 : -111.6935 : Mesa, AZ +85216 : 33.276539 : -112.18717 : Mesa, AZ +85217 : 33.393398 : -111.478975 : Apache Junction, AZ +85218 : 33.349996 : -111.418233 : Gold Camp, AZ +85219 : 33.402969 : -111.46337 : Apache Junction, AZ +85220 : 33.416083 : -111.5762 : Apache Junction, AZ +85221 : 33.126134 : -111.90545 : Bapchule, AZ +85222 : 32.878138 : -111.73499 : Casa Grande, AZ +85223 : 32.749664 : -111.68022 : Arizona City, AZ +85224 : 33.328951 : -111.8735 : Chandler, AZ +85225 : 33.316349 : -111.83064 : Chandler, AZ +85226 : 33.312208 : -111.93177 : Chandler, AZ +85227 : 33.212186 : -111.686171 : Chandler Heights, AZ +85228 : 32.967829 : -111.52617 : Coolidge, AZ +85230 : 32.742949 : -111.78945 : Casa Grande, AZ +85231 : 32.712323 : -111.57673 : Eloy, AZ +85232 : 32.961615 : -111.31629 : Florence, AZ +85233 : 33.348593 : -111.80833 : Gilbert, AZ +85234 : 33.36344 : -111.75093 : Gilbert, AZ +85235 : 32.995762 : -110.7804 : Hayden, AZ +85236 : 33.305783 : -111.70835 : Higley, AZ +85237 : 33.09977 : -110.97202 : Kearny, AZ +85239 : 32.989261 : -112.11505 : Maricopa, AZ +85240 : 33.222982 : -111.858805 : Chandler, AZ +85241 : 32.712136 : -111.49949 : Picacho, AZ +85242 : 33.227266 : -111.61087 : Queen Creek, AZ +85244 : 33.321316 : -111.888824 : Chandler, AZ +85245 : 32.623115 : -111.37672 : Red Rock, AZ +85246 : 33.276539 : -112.18717 : Chandler, AZ +85247 : 33.107581 : -111.75128 : Sacaton, AZ +85248 : 33.239097 : -111.86355 : Chandler, AZ +85249 : 33.237229 : -111.8004 : Chandler, AZ +85250 : 33.521433 : -111.90944 : Scottsdale, AZ +85251 : 33.494152 : -111.92079 : Scottsdale, AZ +85252 : 33.499529 : -111.868432 : Scottsdale, AZ +85253 : 33.544596 : -111.95645 : Paradise Valley, AZ +85254 : 33.617504 : -111.95416 : Scottsdale, AZ +85255 : 33.697268 : -111.88321 : Scottsdale, AZ +85256 : 33.491302 : -111.83509 : Scottsdale, AZ +85257 : 33.467347 : -111.91741 : Scottsdale, AZ +85258 : 33.566635 : -111.89337 : Scottsdale, AZ +85259 : 33.596995 : -111.82628 : Scottsdale, AZ +85260 : 33.606004 : -111.88699 : Scottsdale, AZ +85261 : 33.276539 : -112.18717 : Scottsdale, AZ +85262 : 33.798581 : -111.8708 : Scottsdale, AZ +85263 : 33.722594 : -111.67915 : Rio Verde, AZ +85264 : 33.617643 : -111.67554 : Fort Mcdowell, AZ +85266 : 33.276539 : -112.18717 : Scottsdale, AZ +85267 : 33.276539 : -112.18717 : Scottsdale, AZ +85268 : 33.604811 : -111.72852 : Fountain Hills, AZ +85269 : 33.276539 : -112.18717 : Fountain Hills, AZ +85271 : 33.276539 : -112.18717 : Scottsdale, AZ +85272 : 32.852769 : -111.97564 : Stanfield, AZ +85273 : 33.28591 : -111.11015 : Superior, AZ +85274 : 33.276539 : -112.18717 : Mesa, AZ +85275 : 33.276539 : -112.18717 : Mesa, AZ +85277 : 33.276539 : -112.18717 : Mesa, AZ +85278 : 32.983653 : -111.326045 : Apache Junction, AZ +85279 : 32.983653 : -111.326045 : Florence, AZ +85280 : 33.401395 : -111.931298 : Tempe, AZ +85281 : 33.426885 : -111.92733 : Tempe, AZ +85282 : 33.394067 : -111.92873 : Tempe, AZ +85283 : 33.365951 : -111.93155 : Tempe, AZ +85284 : 33.338333 : -111.92962 : Tempe, AZ +85285 : 33.276539 : -112.18717 : Tempe, AZ +85286 : 33.850506 : -112.05927 : New River, AZ +85287 : 33.428511 : -111.934865 : Tempe, AZ +85288 : 33.672973 : -111.889286 : Scottsdale, AZ +85289 : 33.276539 : -112.18717 : Tempe, AZ +85290 : 33.276539 : -112.18717 : Tortilla Flat, AZ +85291 : 33.013502 : -111.42979 : Valley Farms, AZ +85292 : 32.945838 : -110.72198 : Winkelman, AZ +85296 : 33.319722 : -111.76078 : Gilbert, AZ +85297 : 33.272322 : -111.714171 : Gilbert, AZ +85299 : 33.276539 : -112.18717 : Gilbert, AZ +85301 : 33.534128 : -112.1767 : Glendale, AZ +85302 : 33.568143 : -112.17699 : Glendale, AZ +85303 : 33.528166 : -112.22189 : Glendale, AZ +85304 : 33.594069 : -112.17531 : Glendale, AZ +85305 : 33.529373 : -112.25225 : Glendale, AZ +85306 : 33.624546 : -112.1767 : Glendale, AZ +85307 : 33.529314 : -112.30607 : Glendale, AZ +85308 : 33.657722 : -112.17825 : Glendale, AZ +85309 : 33.533985 : -112.37688 : Luke AFB, AZ +85310 : 33.701173 : -112.17614 : Glendale, AZ +85311 : 33.276539 : -112.18717 : Glendale, AZ +85312 : 33.276539 : -112.18717 : Glendale, AZ +85313 : 33.276539 : -112.18717 : Glendale, AZ +85317 : 33.820609 : -111.886707 : Carefree, AZ +85318 : 33.276539 : -112.18717 : Glendale, AZ +85320 : 33.945183 : -113.19837 : Aguila, AZ +85321 : 32.331853 : -112.78694 : Ajo, AZ +85322 : 33.274422 : -112.78934 : Arlington, AZ +85323 : 33.454441 : -112.32401 : Avondale, AZ +85324 : 34.10865 : -112.10088 : Black Canyon City, AZ +85325 : 33.946064 : -113.9537 : Bouse, AZ +85326 : 33.354418 : -112.56941 : Buckeye, AZ +85327 : 33.276539 : -112.18717 : Cave Creek, AZ +85328 : 33.326956 : -114.68562 : Cibola, AZ +85329 : 33.431242 : -112.29588 : Cashion, AZ +85330 : 33.973301 : -112.722998 : Wickenburg, AZ +85331 : 33.789204 : -111.96301 : Cave Creek, AZ +85332 : 34.177939 : -112.9307 : Congress, AZ +85333 : 32.921712 : -113.45703 : Dateland, AZ +85334 : 33.631915 : -114.49095 : Ehrenberg, AZ +85335 : 33.596823 : -112.32364 : El Mirage, AZ +85336 : 32.532458 : -114.78056 : Gadsden, AZ +85337 : 32.971684 : -112.7946 : Gila Bend, AZ +85338 : 33.430922 : -112.38482 : Goodyear, AZ +85339 : 33.352795 : -112.16752 : Laveen, AZ +85340 : 33.50835 : -112.40523 : Litchfield Park, AZ +85341 : 31.970131 : -111.890713 : Lukeville, AZ +85342 : 33.939162 : -112.49976 : Morristown, AZ +85343 : 33.276539 : -112.18717 : Palo Verde, AZ +85344 : 34.100704 : -114.30462 : Parker, AZ +85345 : 33.573602 : -112.23984 : Peoria, AZ +85346 : 33.654343 : -114.23325 : Quartzsite, AZ +85347 : 32.744976 : -113.85421 : Roll, AZ +85348 : 33.730443 : -113.62376 : Salome, AZ +85349 : 32.494054 : -114.77866 : San Luis, AZ +85350 : 32.58193 : -114.71199 : Somerton, AZ +85351 : 33.60642 : -112.28316 : Sun City, AZ +85352 : 32.693448 : -113.976313 : Tacna, AZ +85353 : 33.426423 : -112.28299 : Tolleson, AZ +85354 : 33.452432 : -113.01652 : Tonopah, AZ +85355 : 33.569705 : -112.44792 : Waddell, AZ +85356 : 32.676125 : -114.13546 : Wellton, AZ +85357 : 33.843519 : -113.53441 : Wenden, AZ +85358 : 33.276539 : -112.18717 : Wickenburg, AZ +85359 : 33.66688 : -114.239557 : Quartzsite, AZ +85360 : 34.681394 : -113.5935 : Wikieup, AZ +85361 : 33.739904 : -112.59778 : Wittmann, AZ +85362 : 34.286193 : -112.69667 : Yarnell, AZ +85363 : 33.588225 : -112.30263 : Youngtown, AZ +85364 : 32.704499 : -114.64644 : Yuma, AZ +85365 : 32.700018 : -114.52671 : Yuma, AZ +85366 : 32.609959 : -114.631172 : Yuma, AZ +85367 : 32.654701 : -114.40884 : Yuma, AZ +85369 : 32.751632 : -114.074901 : Yuma, AZ +85371 : 34.031791 : -114.390171 : Poston, AZ +85372 : 33.276539 : -112.18717 : Sun City, AZ +85373 : 33.66156 : -112.28931 : Sun City, AZ +85374 : 33.643508 : -112.38502 : Surprise, AZ +85375 : 33.683352 : -112.36474 : Sun City West, AZ +85376 : 33.276539 : -112.18717 : Sun City West, AZ +85377 : 33.276539 : -112.18717 : Carefree, AZ +85378 : 33.276539 : -112.18717 : Surprise, AZ +85379 : 33.616888 : -112.40158 : Surprise, AZ +85380 : 33.276539 : -112.18717 : Peoria, AZ +85381 : 33.60864 : -112.22791 : Peoria, AZ +85382 : 33.689869 : -112.24838 : Peoria, AZ +85383 : 33.700837 : -112.244827 : Peoria, AZ +85385 : 33.276539 : -112.18717 : Peoria, AZ +85387 : 33.276539 : -112.18717 : Surprise, AZ +85390 : 33.961122 : -112.76952 : Wickenburg, AZ +85395 : 33.580089 : -112.246311 : Peoria, AZ +85439 : 32.491745 : -114.784135 : San Luis, AZ +85501 : 33.53457 : -110.75681 : Globe, AZ +85502 : 33.421919 : -110.81268 : Globe, AZ +85522 : 32.850901 : -109.767893 : Thatcher, AZ +85530 : 33.053797 : -110.22921 : Bylas, AZ +85531 : 32.872122 : -109.79267 : Central, AZ +85532 : 33.415409 : -110.814893 : Claypool, AZ +85533 : 33.122043 : -109.2841 : Clifton, AZ +85534 : 32.731748 : -109.11471 : Duncan, AZ +85535 : 32.963028 : -109.91803 : Eden, AZ +85536 : 33.02874 : -109.98719 : Fort Thomas, AZ +85539 : 33.383937 : -110.90026 : Miami, AZ +85540 : 33.044523 : -109.32904 : Morenci, AZ +85541 : 34.243578 : -111.28137 : Payson, AZ +85542 : 33.262553 : -110.5231 : Peridot, AZ +85543 : 32.90375 : -109.84995 : Pima, AZ +85544 : 34.394226 : -111.46865 : Pine, AZ +85545 : 33.624008 : -111.01062 : Roosevelt, AZ +85546 : 32.800222 : -109.69052 : Safford, AZ +85547 : 34.257457 : -111.28775 : Payson, AZ +85548 : 32.797009 : -109.752196 : Safford, AZ +85550 : 33.37214 : -110.11686 : San Carlos, AZ +85551 : 32.842769 : -109.696449 : Solomon, AZ +85552 : 32.816055 : -109.76487 : Thatcher, AZ +85553 : 33.830708 : -111.30102 : Tonto Basin, AZ +85554 : 34.093715 : -110.96487 : Young, AZ +85601 : 31.579152 : -111.33413 : Arivaca, AZ +85602 : 32.010164 : -110.3182 : Benson, AZ +85603 : 31.406229 : -109.8958 : Bisbee, AZ +85605 : 32.314118 : -109.46196 : Bowie, AZ +85606 : 32.054694 : -109.81342 : Cochise, AZ +85607 : 31.382775 : -109.55035 : Douglas, AZ +85608 : 31.569536 : -109.23407 : Douglas, AZ +85609 : 32.036365 : -110.04581 : Dragoon, AZ +85610 : 31.724946 : -109.64646 : Elfrida, AZ +85611 : 31.588594 : -110.51857 : Elgin, AZ +85613 : 31.541437 : -110.30004 : Fort Huachuca, AZ +85614 : 31.857504 : -111.00904 : Green Valley, AZ +85615 : 31.429017 : -110.23013 : Hereford, AZ +85616 : 31.684819 : -110.34743 : Huachuca City, AZ +85617 : 31.536321 : -109.67608 : McNeal, AZ +85618 : 32.70874 : -110.63925 : Mammoth, AZ +85619 : 32.441496 : -110.75682 : Mount Lemmon, AZ +85620 : 31.385182 : -109.919794 : Naco, AZ +85621 : 31.37737 : -110.9264 : Nogales, AZ +85622 : 31.853334 : -110.932803 : Green Valley, AZ +85623 : 32.625543 : -110.77201 : Oracle, AZ +85624 : 31.504439 : -110.70794 : Patagonia, AZ +85625 : 31.911838 : -109.7723 : Pearce, AZ +85626 : 31.357528 : -109.611545 : Pirtleville, AZ +85627 : 32.09881 : -110.09917 : Pomerene, AZ +85628 : 31.531998 : -110.909305 : Nogales, AZ +85629 : 31.939718 : -110.97527 : Sahuarita, AZ +85630 : 31.898039 : -110.21803 : Saint David, AZ +85631 : 32.597198 : -110.60293 : San Manuel, AZ +85632 : 32.048448 : -109.19635 : San Simon, AZ +85633 : 31.632739 : -111.49066 : Sasabe, AZ +85634 : 31.998543 : -111.93712 : Sells, AZ +85635 : 31.562546 : -110.24288 : Sierra Vista, AZ +85636 : 31.668685 : -110.280111 : Sierra Vista, AZ +85637 : 31.733433 : -110.66869 : Sonoita, AZ +85638 : 31.714525 : -110.06684 : Tombstone, AZ +85639 : 31.773676 : -111.76494 : Topawa, AZ +85640 : 31.586392 : -111.0416 : Tumacacori, AZ +85641 : 32.00196 : -110.67442 : Vail, AZ +85643 : 32.356537 : -109.88461 : Willcox, AZ +85644 : 32.30069 : -109.878211 : Willcox, AZ +85645 : 31.718671 : -111.09908 : Amado, AZ +85646 : 31.623432 : -111.06352 : Tubac, AZ +85648 : 31.488579 : -110.98926 : Rio Rico, AZ +85650 : 31.492003 : -110.24699 : Sierra Vista, AZ +85652 : 32.420055 : -111.113178 : Cortaro, AZ +85653 : 32.454488 : -111.26232 : Marana, AZ +85654 : 32.417221 : -111.17135 : Rillito, AZ +85655 : 31.880077 : -109.754263 : Douglas, AZ +85662 : 31.531998 : -110.909305 : Nogales, AZ +85670 : 31.880077 : -109.754263 : Fort Huachuca, AZ +85671 : 31.880077 : -109.754263 : Sierra Vista, AZ +85701 : 32.216743 : -110.9696 : Tucson, AZ +85702 : 31.970131 : -111.890713 : Tucson, AZ +85703 : 31.970131 : -111.890713 : Tucson, AZ +85704 : 32.32764 : -110.98801 : Tucson, AZ +85705 : 32.260316 : -110.98534 : Tucson, AZ +85706 : 32.128649 : -110.92497 : Tucson, AZ +85707 : 32.169577 : -110.875093 : Tucson, AZ +85708 : 32.196846 : -110.89189 : Tucson, AZ +85709 : 32.200813 : -110.897966 : Tucson, AZ +85710 : 32.213291 : -110.82559 : Tucson, AZ +85711 : 32.216326 : -110.88511 : Tucson, AZ +85712 : 32.249551 : -110.8878 : Tucson, AZ +85713 : 32.194909 : -110.9757 : Tucson, AZ +85714 : 32.170277 : -110.95525 : Tucson, AZ +85715 : 32.247175 : -110.82864 : Tucson, AZ +85716 : 32.242275 : -110.92533 : Tucson, AZ +85717 : 31.970131 : -111.890713 : Tucson, AZ +85718 : 32.31346 : -110.92282 : Tucson, AZ +85719 : 32.240625 : -110.94791 : Tucson, AZ +85720 : 31.970131 : -111.890713 : Tucson, AZ +85721 : 32.233761 : -110.949996 : Tucson, AZ +85722 : 31.970131 : -111.890713 : Tucson, AZ +85723 : 31.970131 : -111.890713 : Tucson, AZ +85724 : 32.240571 : -110.944343 : Tucson, AZ +85725 : 31.970131 : -111.890713 : Tucson, AZ +85726 : 32.202726 : -110.945346 : Tucson, AZ +85728 : 31.970131 : -111.890713 : Tucson, AZ +85730 : 32.179227 : -110.81032 : Tucson, AZ +85731 : 32.088034 : -110.708174 : Tucson, AZ +85732 : 32.084775 : -110.71225 : Tucson, AZ +85733 : 31.970131 : -111.890713 : Tucson, AZ +85734 : 32.065082 : -110.935337 : Tucson, AZ +85735 : 32.13918 : -111.23968 : Tucson, AZ +85736 : 31.979764 : -111.29398 : Tucson, AZ +85737 : 32.417144 : -110.96354 : Tucson, AZ +85738 : 31.970131 : -111.890713 : Catalina, AZ +85739 : 32.521096 : -110.9087 : Tucson, AZ +85740 : 31.970131 : -111.890713 : Tucson, AZ +85741 : 32.338126 : -111.04259 : Tucson, AZ +85742 : 32.385588 : -111.05582 : Tucson, AZ +85743 : 32.335122 : -111.14888 : Tucson, AZ +85744 : 31.970131 : -111.890713 : Tucson, AZ +85745 : 32.242724 : -111.0209 : Tucson, AZ +85746 : 32.126223 : -111.04599 : Tucson, AZ +85747 : 32.109302 : -110.77573 : Tucson, AZ +85748 : 32.216926 : -110.76851 : Tucson, AZ +85749 : 32.299275 : -110.74419 : Tucson, AZ +85750 : 32.292078 : -110.84384 : Tucson, AZ +85751 : 32.161972 : -110.714678 : Tucson, AZ +85752 : 31.970131 : -111.890713 : Tucson, AZ +85754 : 31.970131 : -111.890713 : Tucson, AZ +85775 : 31.970131 : -111.890713 : Tucson, AZ +85777 : 32.071764 : -110.859106 : Tucson, AZ +85807 : 33.876452 : -112.088337 : New River, AZ +85901 : 34.271427 : -110.03676 : Show Low, AZ +85902 : 34.298092 : -110.035185 : Show Low, AZ +85911 : 34.102913 : -110.55639 : Cibecue, AZ +85912 : 34.266588 : -110.203073 : White Mountain Lake, AZ +85920 : 33.836157 : -109.19785 : Alpine, AZ +85922 : 33.681485 : -109.24946 : Blue, AZ +85923 : 34.364618 : -110.29487 : Clay Springs, AZ +85924 : 34.448733 : -109.7114 : Concho, AZ +85925 : 34.109777 : -109.34532 : Eagar, AZ +85926 : 34.074253 : -109.86356 : Fort Apache, AZ +85927 : 33.801744 : -109.58336 : Greer, AZ +85928 : 34.563994 : -110.55929 : Heber, AZ +85929 : 34.162407 : -109.9952 : Lakeside, AZ +85930 : 34.04421 : -109.73709 : Mcnary, AZ +85931 : 34.393887 : -110.83591 : Forest Lakes, AZ +85932 : 33.927014 : -109.22149 : Nutrioso, AZ +85933 : 34.392829 : -110.52048 : Overgaard, AZ +85934 : 34.270743 : -110.26032 : Pinedale, AZ +85935 : 34.121008 : -109.91503 : Pinetop, AZ +85936 : 34.558663 : -109.40254 : Saint Johns, AZ +85937 : 34.560896 : -110.03633 : Snowflake, AZ +85938 : 34.094597 : -109.22291 : Springerville, AZ +85939 : 34.442667 : -110.09181 : Taylor, AZ +85940 : 34.268984 : -109.67514 : Vernon, AZ +85941 : 33.849439 : -110.03334 : Whiteriver, AZ +85942 : 34.778649 : -109.96697 : Woodruff, AZ +86001 : 35.279872 : -111.72256 : Flagstaff, AZ +86002 : 35.630842 : -112.052427 : Flagstaff, AZ +86003 : 35.630842 : -112.052427 : Flagstaff, AZ +86004 : 35.253002 : -111.44851 : Flagstaff, AZ +86011 : 35.630842 : -112.052427 : Flagstaff, AZ +86015 : 35.235694 : -111.83 : Bellemont, AZ +86016 : 35.675689 : -111.49474 : Gray Mountain, AZ +86017 : 34.9372 : -111.62931 : Munds Park, AZ +86018 : 35.197566 : -111.93253 : Parks, AZ +86020 : 36.182818 : -111.5472 : Cameron, AZ +86021 : 36.985868 : -112.9791 : Colorado City, AZ +86022 : 36.844685 : -112.47107 : Fredonia, AZ +86023 : 35.862292 : -112.06498 : Grand Canyon, AZ +86024 : 34.690846 : -111.16676 : Happy Jack, AZ +86025 : 34.936261 : -110.14698 : Holbrook, AZ +86028 : 35.237487 : -109.52295 : Petrified Forest Natl Pk, AZ +86029 : 35.285746 : -110.288704 : Sun Valley, AZ +86030 : 36.115339 : -110.61562 : Hotevilla, AZ +86031 : 35.48041 : -110.09228 : Indian Wells, AZ +86032 : 35.101925 : -110.42509 : Joseph City, AZ +86033 : 36.608485 : -110.18425 : Kayenta, AZ +86034 : 35.765669 : -110.18617 : Keams Canyon, AZ +86035 : 35.335107 : -110.99972 : Leupp, AZ +86036 : 36.618595 : -111.85444 : Marble Canyon, AZ +86038 : 34.908287 : -111.463026 : Mormon Lake, AZ +86039 : 36.00059 : -110.5201 : Kykotsmovi Village, AZ +86040 : 36.726377 : -111.4284 : Page, AZ +86042 : 35.835642 : -110.36628 : Polacca, AZ +86043 : 35.777227 : -110.50131 : Second Mesa, AZ +86044 : 36.507554 : -110.86804 : Tonalea, AZ +86045 : 36.061184 : -111.06828 : Tuba City, AZ +86046 : 35.378832 : -112.23657 : Williams, AZ +86047 : 35.258309 : -110.53128 : Winslow, AZ +86052 : 36.499283 : -112.23039 : North Rim, AZ +86053 : 36.556111 : -111.10495 : Kaibito, AZ +86054 : 36.630103 : -110.65072 : Shonto, AZ +86231 : 34.581245 : -113.16874 : Bagdad, AZ +86301 : 34.589477 : -112.44726 : Prescott, AZ +86302 : 34.574921 : -112.491528 : Prescott, AZ +86303 : 34.515939 : -112.45399 : Prescott, AZ +86304 : 34.59668 : -112.49066 : Prescott, AZ +86305 : 34.70062 : -112.63753 : Prescott, AZ +86312 : 34.668291 : -112.307777 : Prescott Valley, AZ +86313 : 34.706724 : -112.39773 : Prescott, AZ +86314 : 34.621743 : -112.32176 : Prescott Valley, AZ +86320 : 35.178163 : -112.56465 : Ash Fork, AZ +86321 : 34.543627 : -113.11473 : Bagdad, AZ +86322 : 34.556478 : -111.84375 : Camp Verde, AZ +86323 : 34.765452 : -112.45931 : Chino Valley, AZ +86324 : 34.767841 : -112.06438 : Clarkdale, AZ +86325 : 34.718836 : -111.90168 : Cornville, AZ +86326 : 34.723788 : -112.01002 : Cottonwood, AZ +86327 : 34.533237 : -112.20644 : Dewey, AZ +86329 : 34.518883 : -112.25234 : Humboldt, AZ +86330 : 34.706724 : -112.39773 : Iron Springs, AZ +86331 : 34.74428 : -112.14586 : Jerome, AZ +86332 : 34.426513 : -112.6261 : Kirkland, AZ +86333 : 34.339938 : -112.13612 : Mayer, AZ +86334 : 34.910591 : -112.46252 : Paulden, AZ +86335 : 34.653475 : -111.75103 : Rimrock, AZ +86336 : 34.876638 : -111.80666 : Sedona, AZ +86337 : 35.334394 : -113.05774 : Seligman, AZ +86338 : 34.557983 : -112.70556 : Skull Valley, AZ +86339 : 34.907188 : -111.728572 : Sedona, AZ +86340 : 34.706724 : -112.39773 : Sedona, AZ +86341 : 34.776648 : -111.76788 : Sedona, AZ +86342 : 34.641736 : -111.787154 : Lake Montezuma, AZ +86343 : 34.201191 : -112.3501 : Crown King, AZ +86344 : 34.907296 : -112.492365 : Paulden, AZ +86351 : 34.782453 : -111.76764 : Sedona, AZ +86361 : 34.572995 : -113.183806 : Bagdad, AZ +86366 : 34.704667 : -111.989364 : Cottonwood, AZ +86401 : 35.25925 : -113.95225 : Kingman, AZ +86402 : 35.263249 : -114.063651 : Kingman, AZ +86403 : 34.483582 : -114.33694 : Lake Havasu City, AZ +86404 : 34.546899 : -114.32546 : Lake Havasu City, AZ +86405 : 35.605301 : -113.642712 : Lake Havasu City, AZ +86406 : 34.469945 : -114.27861 : Lake Havasu City, AZ +86411 : 35.605301 : -113.642712 : Hackberry, AZ +86412 : 35.397172 : -113.843241 : Hualapai, AZ +86413 : 35.190896 : -114.24036 : Golden Valley, AZ +86422 : 35.109303 : -114.574004 : Bullhead City, AZ +86426 : 35.013495 : -114.58524 : Fort Mohave, AZ +86427 : 35.00429 : -114.581228 : Fort Mohave, AZ +86429 : 35.172854 : -114.54696 : Bullhead City, AZ +86430 : 35.256802 : -114.49451 : Bullhead City, AZ +86431 : 35.413284 : -114.21626 : Chloride, AZ +86432 : 36.903232 : -113.94024 : Littlefield, AZ +86433 : 35.030577 : -114.38928 : Oatman, AZ +86434 : 35.482227 : -113.5121 : Peach Springs, AZ +86435 : 36.198652 : -112.51013 : Supai, AZ +86436 : 34.782526 : -114.4663 : Topock, AZ +86437 : 35.386906 : -113.66065 : Valentine, AZ +86438 : 34.805546 : -114.14175 : Yucca, AZ +86439 : 35.095848 : -114.619445 : Bullhead City, AZ +86440 : 34.888406 : -114.57354 : Mohave Valley, AZ +86441 : 35.607935 : -114.30203 : Dolan Springs, AZ +86442 : 35.097719 : -114.59734 : Bullhead City, AZ +86443 : 35.210634 : -114.179228 : Temple Bar Marina, AZ +86444 : 35.950442 : -114.07783 : Meadview, AZ +86445 : 35.605301 : -113.642712 : Willow Beach, AZ +86446 : 34.849946 : -114.591728 : Mohave Valley, AZ +86502 : 35.213287 : -109.54223 : Chambers, AZ +86503 : 36.165779 : -109.61956 : Chinle, AZ +86504 : 35.771067 : -109.17878 : Fort Defiance, AZ +86505 : 35.665344 : -109.65344 : Ganado, AZ +86506 : 35.368902 : -109.22194 : Houck, AZ +86507 : 36.423229 : -109.29689 : Lukachukai, AZ +86508 : 35.325261 : -109.07847 : Lupton, AZ +86510 : 36.110934 : -110.20181 : Pinon, AZ +86511 : 35.610285 : -109.2093 : Saint Michaels, AZ +86512 : 35.15632 : -109.32309 : Sanders, AZ +86514 : 36.88092 : -109.33634 : Teec Nos Pos, AZ +86515 : 35.672842 : -109.06495 : Window Rock, AZ +86520 : 36.045603 : -110.00633 : Blue Gap, AZ +86535 : 36.798893 : -109.86488 : Dennehotso, AZ +86538 : 36.374317 : -109.6007 : Many Farms, AZ +86540 : 35.952827 : -109.41297 : Nazlini, AZ +86544 : 36.59559 : -109.11872 : Red Valley, AZ +86545 : 36.662243 : -109.59931 : Rock Point, AZ +86547 : 36.494915 : -109.45613 : Round Rock, AZ +86549 : 35.958014 : -109.17551 : Sawmill, AZ +86551 : 34.780464 : -111.759944 : Big Park, AZ +86556 : 36.272262 : -109.17516 : Tsaile, AZ +86631 : 34.748879 : -112.115853 : Jerome, AZ +87001 : 35.388701 : -106.42793 : Algodones, NM +87002 : 34.646779 : -106.7648 : Belen, NM +87004 : 35.32151 : -106.55322 : Bernalillo, NM +87005 : 35.20912 : -108.07182 : Bluewater, NM +87006 : 34.511223 : -106.80927 : Bosque, NM +87007 : 35.047954 : -107.45148 : Casa Blanca, NM +87008 : 35.136495 : -106.37296 : Cedar Crest, NM +87009 : 34.650925 : -105.880597 : Cedarvale, NM +87010 : 35.409522 : -106.15202 : Cerrillos, NM +87011 : 34.032895 : -106.03034 : Claunch, NM +87012 : 36.195444 : -106.6583 : Coyote, NM +87013 : 35.869051 : -107.40227 : Cuba, NM +87014 : 35.166618 : -107.5052 : Cubero, NM +87015 : 35.075777 : -106.19155 : Edgewood, NM +87016 : 34.775863 : -106.12269 : Estancia, NM +87017 : 36.187444 : -106.76581 : Gallina, NM +87018 : 36.203634 : -107.49441 : Counselor, NM +87020 : 35.122129 : -107.90777 : Grants, NM +87021 : 35.192539 : -107.893691 : Milan, NM +87022 : 34.906197 : -106.69301 : Isleta, NM +87023 : 34.598268 : -106.7592 : Jarales, NM +87024 : 35.624111 : -106.73752 : Jemez Pueblo, NM +87025 : 35.822802 : -106.62093 : Jemez Springs, NM +87026 : 34.999815 : -107.24109 : Laguna, NM +87027 : 36.151633 : -107.00449 : La Jara, NM +87028 : 34.34886 : -106.8053 : La Joya, NM +87029 : 36.343007 : -107.09858 : Lindrith, NM +87031 : 34.786133 : -106.70536 : Los Lunas, NM +87032 : 34.862981 : -106.01328 : McIntosh, NM +87034 : 34.900203 : -107.65365 : Pueblo Of Acoma, NM +87035 : 35.001195 : -105.99524 : Moriarty, NM +87036 : 34.500604 : -106.27612 : Mountainair, NM +87037 : 36.17798 : -107.80037 : Nageezi, NM +87038 : 35.05463 : -107.44137 : New Laguna, NM +87040 : 35.132004 : -107.36564 : Paguate, NM +87041 : 35.584234 : -106.32728 : Pena Blanca, NM +87042 : 34.83436 : -106.68375 : Peralta, NM +87043 : 35.303843 : -106.44361 : Placitas, NM +87044 : 35.700027 : -106.65317 : Ponderosa, NM +87045 : 35.408295 : -107.98853 : Prewitt, NM +87046 : 35.71742 : -106.935844 : Regina, NM +87047 : 35.179121 : -106.28742 : Sandia Park, NM +87048 : 35.229614 : -106.62141 : Corrales, NM +87049 : 35.087772 : -107.63451 : San Fidel, NM +87051 : 35.15105 : -107.87701 : San Rafael, NM +87052 : 35.509184 : -106.35022 : Santo Domingo Pueblo, NM +87053 : 35.527064 : -106.80866 : San Ysidro, NM +87056 : 35.230514 : -105.91598 : Stanley, NM +87057 : 34.650925 : -105.880597 : Tajique, NM +87059 : 35.017604 : -106.31044 : Tijeras, NM +87060 : 34.740708 : -106.73362 : Tome, NM +87061 : 34.783472 : -106.36553 : Torreon, NM +87062 : 34.460462 : -106.71879 : Veguita, NM +87063 : 34.43283 : -105.95532 : Willard, NM +87064 : 36.111907 : -106.54779 : Youngsville, NM +87068 : 34.864034 : -106.6895 : Bosque Farms, NM +87070 : 35.00993 : -105.97201 : Clines Corners, NM +87072 : 35.612925 : -106.34845 : Cochiti Pueblo, NM +87083 : 35.648976 : -106.33885 : Cochiti Lake, NM +87101 : 35.199592 : -106.644831 : Albuquerque, NM +87102 : 35.083946 : -106.64792 : Albuquerque, NM +87103 : 35.044339 : -106.672872 : Albuquerque, NM +87104 : 35.101727 : -106.67238 : Albuquerque, NM +87105 : 35.031329 : -106.68695 : Albuquerque, NM +87106 : 35.078246 : -106.61747 : Albuquerque, NM +87107 : 35.134094 : -106.64073 : Albuquerque, NM +87108 : 35.073343 : -106.58232 : Albuquerque, NM +87109 : 35.155811 : -106.56662 : Albuquerque, NM +87110 : 35.106396 : -106.57927 : Albuquerque, NM +87111 : 35.135303 : -106.52223 : Albuquerque, NM +87112 : 35.100796 : -106.52067 : Albuquerque, NM +87113 : 35.179635 : -106.59384 : Albuquerque, NM +87114 : 35.196446 : -106.67336 : Albuquerque, NM +87115 : 35.054947 : -106.546128 : Albuquerque, NM +87116 : 35.053147 : -106.55102 : Albuquerque, NM +87117 : 35.056747 : -106.571978 : Kirtland AFB, NM +87118 : 35.051847 : -106.59427 : Albuquerque, NM +87119 : 35.044339 : -106.672872 : Albuquerque, NM +87120 : 35.146144 : -106.70851 : Albuquerque, NM +87121 : 35.051247 : -106.74258 : Albuquerque, NM +87122 : 35.18076 : -106.52021 : Albuquerque, NM +87123 : 35.067447 : -106.50645 : Albuquerque, NM +87124 : 35.290647 : -106.71469 : Rio Rancho, NM +87125 : 35.044339 : -106.672872 : Albuquerque, NM +87131 : 35.044339 : -106.672872 : Albuquerque, NM +87140 : 35.044339 : -106.672872 : Albuquerque, NM +87144 : 35.295331 : -106.645081 : Rio Rancho, NM +87153 : 35.044339 : -106.672872 : Albuquerque, NM +87154 : 35.044339 : -106.672872 : Albuquerque, NM +87158 : 35.044339 : -106.672872 : Albuquerque, NM +87174 : 35.044339 : -106.672872 : Rio Rancho, NM +87176 : 35.044339 : -106.672872 : Albuquerque, NM +87180 : 35.044339 : -106.672872 : Albuquerque, NM +87181 : 35.044339 : -106.672872 : Albuquerque, NM +87184 : 35.044339 : -106.672872 : Albuquerque, NM +87185 : 35.044339 : -106.672872 : Albuquerque, NM +87187 : 35.044339 : -106.672872 : Albuquerque, NM +87190 : 35.044339 : -106.672872 : Albuquerque, NM +87191 : 35.044339 : -106.672872 : Albuquerque, NM +87192 : 35.044339 : -106.672872 : Albuquerque, NM +87193 : 35.044339 : -106.672872 : Albuquerque, NM +87194 : 35.044339 : -106.672872 : Albuquerque, NM +87195 : 35.044339 : -106.672872 : Albuquerque, NM +87196 : 35.044339 : -106.672872 : Albuquerque, NM +87197 : 35.108573 : -106.243911 : Albuquerque, NM +87198 : 35.044339 : -106.672872 : Albuquerque, NM +87199 : 35.044339 : -106.672872 : Albuquerque, NM +87201 : 35.044339 : -106.672872 : Albuquerque, NM +87301 : 35.534253 : -108.84857 : Gallup, NM +87302 : 35.480924 : -108.176693 : Gallup, NM +87305 : 35.376892 : -108.78661 : Gallup, NM +87310 : 35.766353 : -108.57046 : Brimhall, NM +87311 : 35.598798 : -108.51792 : Church Rock, NM +87312 : 35.442033 : -108.32473 : Continental Divide, NM +87313 : 35.761481 : -108.10225 : Crownpoint, NM +87315 : 34.737855 : -108.61359 : Fence Lake, NM +87316 : 35.463071 : -108.54595 : Fort Wingate, NM +87317 : 35.597972 : -108.76657 : Gamerco, NM +87319 : 35.486269 : -108.90414 : Mentmore, NM +87320 : 35.799367 : -108.8731 : Mexican Springs, NM +87321 : 34.999427 : -108.41304 : Ramah, NM +87322 : 35.533134 : -108.65253 : Rehoboth, NM +87323 : 35.495133 : -108.19993 : Thoreau, NM +87325 : 36.002113 : -108.6655 : Tohatchi, NM +87326 : 35.295558 : -108.81277 : Vanderwagen, NM +87327 : 35.06947 : -108.72493 : Zuni, NM +87328 : 35.923348 : -109.08296 : Navajo, AZ +87347 : 35.453355 : -108.45374 : Jamestown, NM +87357 : 34.888629 : -108.27933 : Pinehill, NM +87364 : 36.119846 : -108.71665 : Sheep Springs, NM +87365 : 35.480924 : -108.176693 : Smith Lake, NM +87375 : 35.680001 : -108.79265 : Yatahey, NM +87378 : 35.902329 : -109.031853 : Navajo, NM +87401 : 36.625357 : -108.19225 : Farmington, NM +87402 : 36.785816 : -108.14505 : Farmington, NM +87410 : 36.837421 : -107.96667 : Aztec, NM +87412 : 36.681819 : -107.48121 : Blanco, NM +87413 : 36.579374 : -107.87907 : Bloomfield, NM +87415 : 36.813748 : -108.09508 : Flora Vista, NM +87416 : 36.654783 : -108.45001 : Fruitland, NM +87417 : 36.763088 : -108.3674 : Kirtland, NM +87418 : 36.927309 : -108.15934 : La Plata, NM +87419 : 36.901026 : -107.52505 : Navajo Dam, NM +87420 : 36.748026 : -108.80023 : Shiprock, NM +87421 : 36.877607 : -108.62606 : Waterflow, NM +87455 : 36.272472 : -108.79107 : Newcomb, NM +87461 : 36.475414 : -108.81089 : Sanostee, NM +87499 : 36.774472 : -108.06925 : Farmington, NM +87501 : 35.755312 : -105.99936 : Santa Fe, NM +87502 : 35.439937 : -106.123698 : Santa Fe, NM +87503 : 35.521181 : -105.981847 : Santa Fe, NM +87504 : 35.893597 : -106.007499 : Santa Fe, NM +87505 : 35.616662 : -105.97926 : Santa Fe, NM +87506 : 35.606283 : -106.075722 : Santa Fe, NM +87507 : 35.615216 : -105.952788 : Santa Fe, NM +87508 : 35.469938 : -105.754453 : Santa Fe, NM +87509 : 35.521181 : -105.981847 : Santa Fe, NM +87510 : 36.2996 : -106.40596 : Abiquiu, NM +87511 : 36.097705 : -106.04254 : Alcalde, NM +87512 : 36.962335 : -105.41628 : Amalia, NM +87513 : 36.534541 : -105.67244 : Arroyo Hondo, NM +87514 : 36.546104 : -105.50586 : Arroyo Seco, NM +87515 : 36.476265 : -106.40996 : Canjilon, NM +87516 : 36.082439 : -106.46786 : Canones, NM +87517 : 36.333259 : -105.81143 : Carson, NM +87518 : 36.522263 : -106.54918 : Cebolla, NM +87519 : 36.756688 : -105.63855 : Cerro, NM +87520 : 36.874229 : -106.55118 : Chama, NM +87521 : 36.126615 : -105.74651 : Chamisal, NM +87522 : 35.997094 : -105.94533 : Chimayo, NM +87523 : 36.005591 : -105.903255 : Cordova, NM +87524 : 36.959631 : -105.5809 : Costilla, NM +87525 : 36.575944 : -105.50602 : Taos Ski Valley, NM +87527 : 36.1566 : -105.84161 : Dixon, NM +87528 : 36.818905 : -106.9757 : Dulce, NM +87529 : 36.468402 : -105.60547 : El Prado, NM +87530 : 36.387967 : -106.23407 : El Rito, NM +87531 : 36.248813 : -105.87995 : Embudo, NM +87532 : 35.990548 : -106.08036 : Espanola, NM +87533 : 36.618928 : -106.75512 : Espanola, NM +87535 : 35.759271 : -105.74841 : Glorieta, NM +87537 : 36.094021 : -106.17472 : Hernandez, NM +87538 : 35.456288 : -104.679611 : Ilfeld, NM +87539 : 36.422525 : -106.06145 : La Madera, NM +87540 : 35.434943 : -105.91873 : Lamy, NM +87543 : 36.129822 : -105.66493 : Llano, NM +87544 : 35.86849 : -106.29536 : Los Alamos, NM +87545 : 35.863858 : -106.295255 : Los Alamos, NM +87548 : 36.17634 : -106.18489 : Medanales, NM +87549 : 36.362617 : -106.02523 : Ojo Caliente, NM +87551 : 36.700526 : -106.63695 : Los Ojos, NM +87552 : 35.622261 : -105.6422 : Pecos, NM +87553 : 36.191998 : -105.71543 : Penasco, NM +87554 : 36.465416 : -106.578513 : Petaca, NM +87556 : 36.735033 : -105.58602 : Questa, NM +87557 : 36.377149 : -105.67963 : Ranchos De Taos, NM +87558 : 36.705987 : -105.3955 : Red River, NM +87560 : 35.249513 : -105.57658 : Ribera, NM +87562 : 35.498227 : -105.67671 : Rowe, NM +87564 : 36.610705 : -105.64442 : San Cristobal, NM +87565 : 35.454443 : -105.50337 : San Jose, NM +87566 : 36.074403 : -106.07952 : San Juan Pueblo, NM +87567 : 35.994909 : -106.03282 : Santa Cruz, NM +87569 : 35.345618 : -105.26233 : Serafina, NM +87571 : 36.414942 : -105.5808 : Taos, NM +87573 : 35.795217 : -105.65799 : Tererro, NM +87574 : 35.787442 : -105.915713 : Tesuque, NM +87575 : 36.64863 : -106.54091 : Tierra Amarilla, NM +87576 : 36.504515 : -105.62924 : Trampas, NM +87577 : 36.631809 : -105.9267 : Tres Piedras, NM +87578 : 36.036721 : -105.78702 : Truchas, NM +87579 : 36.160484 : -105.56045 : Vadito, NM +87580 : 36.546068 : -105.60728 : Valdez, NM +87581 : 36.537146 : -106.13395 : Vallecitos, NM +87582 : 36.14773 : -105.98866 : Velarde, NM +87583 : 35.276415 : -105.33759 : Villanueva, NM +87585 : 35.632858 : -106.044394 : Santa Fe, NM +87592 : 35.521181 : -105.981847 : Santa Fe, NM +87594 : 35.521181 : -105.981847 : Santa Fe, NM +87701 : 35.594103 : -105.08142 : Las Vegas, NM +87710 : 36.363506 : -105.24877 : Angel Fire, NM +87711 : 35.203048 : -105.15426 : Anton Chico, NM +87712 : 35.881516 : -105.18498 : Buena Vista, NM +87713 : 36.14795 : -105.37302 : Chacon, NM +87714 : 36.59956 : -105.01333 : Cimarron, NM +87715 : 36.006137 : -105.39831 : Cleveland, NM +87718 : 36.595247 : -105.29165 : Eagle Nest, NM +87722 : 36.188161 : -105.23043 : Guadalupita, NM +87723 : 36.045092 : -105.3833 : Holman, NM +87724 : 35.173408 : -104.98272 : La Loma, NM +87728 : 36.565525 : -104.52049 : Maxwell, NM +87729 : 36.358816 : -104.82618 : Miami, NM +87730 : 36.132502 : -104.23902 : Mills, NM +87731 : 35.711505 : -105.41406 : Montezuma, NM +87732 : 35.971938 : -105.34137 : Mora, NM +87733 : 35.80364 : -103.90051 : Mosquero, NM +87734 : 36.197152 : -105.10727 : Ocate, NM +87735 : 36.074211 : -105.11586 : Ojo Feliz, NM +87736 : 35.974115 : -105.17633 : Rainsville, NM +87740 : 36.78767 : -104.38693 : Raton, NM +87742 : 35.856035 : -105.42596 : Rociada, NM +87743 : 36.004279 : -103.86353 : Roy, NM +87745 : 35.751778 : -105.2258 : Sapello, NM +87746 : 35.804116 : -103.902091 : Solano, NM +87747 : 36.366344 : -104.39211 : Springer, NM +87749 : 36.606924 : -104.692463 : Ute Park, NM +87750 : 35.798216 : -104.85007 : Valmora, NM +87752 : 36.02239 : -104.65018 : Wagon Mound, NM +87753 : 35.880398 : -104.98925 : Watrous, NM +87801 : 33.953237 : -106.93722 : Socorro, NM +87820 : 33.871414 : -108.57547 : Aragon, NM +87821 : 33.934215 : -108.05889 : Datil, NM +87823 : 34.150585 : -106.92814 : Lemitar, NM +87824 : 33.879513 : -108.91977 : Luna, NM +87825 : 34.139451 : -107.36816 : Magdalena, NM +87827 : 34.387137 : -108.14528 : Pie Town, NM +87828 : 34.201613 : -106.92146 : Polvadera, NM +87829 : 34.330192 : -108.63899 : Quemado, NM +87830 : 33.638186 : -108.66387 : Reserve, NM +87831 : 34.326229 : -106.87734 : San Acacia, NM +87832 : 34.046275 : -106.60285 : San Antonio, NM +87901 : 33.148245 : -107.18741 : Truth Or Consequences, NM +87910 : 33.127764 : -107.260088 : Truth or Consequences, NM +87930 : 32.807462 : -107.32655 : Arrey, NM +87931 : 32.969955 : -107.36322 : Caballo, NM +87933 : 32.791076 : -107.28652 : Derry, NM +87935 : 33.208473 : -107.22065 : Elephant Butte, NM +87936 : 32.760034 : -107.27535 : Garfield, NM +87937 : 32.603957 : -107.16806 : Hatch, NM +87939 : 33.377012 : -107.43337 : Monticello, NM +87940 : 32.620805 : -107.02161 : Rincon, NM +87941 : 32.699873 : -107.13794 : Salem, NM +87942 : 33.095526 : -107.35393 : Williamsburg, NM +87943 : 33.252863 : -107.69183 : Winston, NM +87945 : 33.116336 : -107.28747 : Williamsburg, NM +88001 : 32.300193 : -106.76078 : Las Cruces, NM +88002 : 32.355099 : -106.46884 : White Sands Missile Range, NM +88003 : 32.279944 : -106.7541 : Las Cruces, NM +88004 : 32.204171 : -106.93052 : Las Cruces, NM +88005 : 32.347752 : -106.81463 : Las Cruces, NM +88006 : 32.305193 : -106.786259 : Las Cruces, NM +88007 : 32.356091 : -106.830111 : Las Cruces, NM +88008 : 31.879712 : -106.71763 : Santa Teresa, NM +88009 : 31.859178 : -108.53985 : Playas, NM +88011 : 32.312506 : -106.70306 : Las Cruces, NM +88012 : 32.417871 : -106.6977 : Las Cruces, NM +88018 : 31.840649 : -106.615936 : Sunland Park, NM +88020 : 31.861247 : -108.81515 : Animas, NM +88021 : 32.013822 : -106.5443 : Anthony, NM +88022 : 32.781205 : -108.15795 : Arenas Valley, NM +88023 : 32.774869 : -108.10736 : Bayard, NM +88024 : 32.068299 : -106.61689 : Berino, NM +88025 : 33.034435 : -108.70302 : Buckhorn, NM +88026 : 32.775681 : -108.15359 : Santa Clara, NM +88027 : 32.036669 : -106.68516 : Chamberino, NM +88028 : 32.53667 : -108.327898 : Cliff, NM +88029 : 31.823645 : -107.73529 : Columbus, NM +88030 : 32.223023 : -107.71282 : Deming, NM +88031 : 32.239815 : -107.74042 : Deming, NM +88032 : 32.393919 : -106.800976 : Dona Ana, NM +88033 : 32.19563 : -107.10461 : Fairacres, NM +88034 : 32.693536 : -107.906536 : Faywood, NM +88036 : 32.815317 : -108.15086 : Fort Bayard, NM +88038 : 32.961804 : -108.44042 : Gila, NM +88039 : 33.401692 : -108.63575 : Glenwood, NM +88040 : 31.928038 : -108.3645 : Hachita, NM +88041 : 32.726051 : -107.97807 : Hanover, NM +88042 : 32.834372 : -107.59761 : Hillsboro, NM +88043 : 32.673398 : -108.11625 : Hurley, NM +88044 : 32.149321 : -106.72283 : La Mesa, NM +88045 : 32.350444 : -108.73956 : Lordsburg, NM +88046 : 32.267993 : -106.805867 : Mesilla, NM +88047 : 32.213198 : -106.71991 : Mesilla Park, NM +88048 : 32.152569 : -106.66112 : Mesquite, NM +88049 : 33.029102 : -108.14114 : Mimbres, NM +88051 : 33.091874 : -108.94007 : Mule Creek, NM +88052 : 32.437435 : -106.60256 : Organ, NM +88053 : 32.872349 : -108.21816 : Pinos Altos, NM +88054 : 32.488841 : -106.914575 : Radium Springs, NM +88055 : 32.802474 : -108.90341 : Redrock, NM +88056 : 31.766132 : -108.93389 : Rodeo, NM +88058 : 32.41815 : -106.820075 : San Miguel, NM +88061 : 32.729758 : -108.30206 : Silver City, NM +88062 : 32.728228 : -108.137931 : Silver City, NM +88063 : 31.799253 : -106.57771 : Sunland Park, NM +88065 : 32.707876 : -108.30257 : Tyrone, NM +88072 : 32.123655 : -106.63846 : Vado, NM +88081 : 32.031665 : -106.400486 : Chaparral, NM +88085 : 32.336251 : -106.792993 : Las Cruces, NM +88100 : 34.6705 : -103.329901 : Grady, NM +88101 : 34.432846 : -103.22589 : Clovis, NM +88102 : 34.628472 : -103.391269 : Clovis, NM +88103 : 34.401452 : -103.326445 : Cannon AFB, NM +88112 : 34.857544 : -103.15193 : Broadview, NM +88113 : 33.843464 : -103.10002 : Causey, NM +88114 : 33.526887 : -103.32392 : Crossroads, NM +88115 : 33.931311 : -103.35459 : Dora, NM +88116 : 33.79692 : -103.87575 : Elida, NM +88118 : 34.215025 : -103.61576 : Floyd, NM +88119 : 34.346673 : -104.24242 : Fort Sumner, NM +88120 : 34.865507 : -103.40619 : Grady, NM +88121 : 34.706943 : -103.97475 : House, NM +88122 : 33.883159 : -103.709525 : Kenna, NM +88123 : 33.717607 : -103.145119 : Lingo, NM +88124 : 34.528601 : -103.62567 : Melrose, NM +88125 : 33.628946 : -103.1837 : Milnesand, NM +88126 : 33.793145 : -103.27741 : Pep, NM +88130 : 34.166231 : -103.34255 : Portales, NM +88132 : 33.922767 : -103.16138 : Rogers, NM +88133 : 34.475607 : -103.46686 : Saint Vrain, NM +88134 : 34.429099 : -103.96633 : Taiban, NM +88135 : 34.511478 : -103.06869 : Texico, NM +88136 : 34.321787 : -104.7305 : Yeso, NM +88201 : 33.485178 : -104.55089 : Roswell, NM +88202 : 33.303825 : -104.431788 : Roswell, NM +88203 : 33.363439 : -104.524894 : Roswell, NM +88210 : 32.795467 : -104.38083 : Artesia, NM +88211 : 32.753571 : -104.328113 : Artesia, NM +88213 : 33.455761 : -103.63843 : Caprock, NM +88220 : 32.408311 : -104.29134 : Carlsbad, NM +88221 : 32.342033 : -104.293691 : Carlsbad, NM +88230 : 33.244151 : -104.3334 : Dexter, NM +88231 : 32.439762 : -103.23598 : Eunice, NM +88232 : 33.060827 : -104.33708 : Hagerman, NM +88240 : 32.70778 : -103.16616 : Hobbs, NM +88241 : 32.7475 : -103.216516 : Hobbs, NM +88242 : 32.787805 : -103.14592 : Hobbs, NM +88244 : 32.785417 : -103.433804 : Hobbs, NM +88250 : 32.735982 : -104.88576 : Hope, NM +88252 : 32.188493 : -103.26808 : Jal, NM +88253 : 32.954421 : -104.45187 : Lake Arthur, NM +88254 : 32.65886 : -104.45128 : Lakewood, NM +88255 : 32.74209 : -103.96139 : Loco Hills, NM +88256 : 32.27936 : -103.98784 : Loving, NM +88260 : 32.901887 : -103.44623 : Lovington, NM +88262 : 33.148388 : -103.35216 : McDonald, NM +88263 : 32.079363 : -103.972 : Malaga, NM +88264 : 32.878526 : -103.71399 : Maljamar, NM +88265 : 32.590107 : -103.30857 : Monument, NM +88267 : 33.270355 : -103.42377 : Tatum, NM +88268 : 32.188634 : -104.36153 : Whites City, NM +88301 : 33.710312 : -105.88218 : Carrizozo, NM +88310 : 32.839921 : -105.97561 : Alamogordo, NM +88311 : 32.695546 : -105.612595 : Alamogordo, NM +88312 : 33.420542 : -105.63599 : Alto, NM +88314 : 33.158737 : -105.85196 : Bent, NM +88315 : 32.806612 : -105.99002 : Boles Acres, NM +88316 : 33.722955 : -105.41326 : Capitan, NM +88317 : 32.943661 : -105.68568 : Cloudcroft, NM +88318 : 34.156361 : -105.33238 : Corona, NM +88321 : 34.750736 : -105.51307 : Encino, NM +88323 : 33.492448 : -105.53021 : Fort Stanton, NM +88324 : 33.429637 : -105.48489 : Glencoe, NM +88325 : 32.902131 : -105.81338 : High Rolls Mountain Park, NM +88330 : 32.841331 : -106.07948 : Holloman Air Force Base, NM +88332 : 32.980058 : -105.938768 : La Luz, NM +88336 : 33.285158 : -105.26783 : Hondo, NM +88337 : 33.001397 : -105.91512 : La Luz, NM +88338 : 33.479136 : -105.35812 : Lincoln, NM +88339 : 32.923979 : -105.40542 : Mayhill, NM +88340 : 33.157278 : -105.73266 : Mescalero, NM +88341 : 33.520074 : -105.73072 : Nogal, NM +88342 : 32.405061 : -106.079686 : Orogrande, NM +88343 : 33.267631 : -105.01969 : Picacho, NM +88344 : 32.663082 : -105.36135 : Pinon, NM +88345 : 33.350032 : -105.66637 : Ruidoso, NM +88346 : 33.342426 : -105.56694 : Ruidoso Downs, NM +88347 : 32.789854 : -105.60437 : Sacramento, NM +88348 : 33.415814 : -105.36046 : San Patricio, NM +88349 : 32.8672 : -105.781129 : Sunspot, NM +88350 : 32.629637 : -105.68663 : Timberon, NM +88351 : 33.480197 : -105.01755 : Tinnie, NM +88352 : 33.098649 : -106.02058 : Tularosa, NM +88353 : 34.585906 : -105.14392 : Vaughn, NM +88354 : 32.783249 : -105.47306 : Weed, NM +88355 : 33.330502 : -105.693322 : Ruidoso, NM +88401 : 35.103769 : -103.77676 : Tucumcari, NM +88410 : 35.890633 : -103.20194 : Amistad, NM +88411 : 35.174099 : -103.18444 : Bard, NM +88414 : 36.740696 : -103.99329 : Capulin, NM +88415 : 36.387827 : -103.22216 : Clayton, NM +88416 : 35.387857 : -104.18276 : Conchas Dam, NM +88417 : 35.014908 : -104.41778 : Cuervo, NM +88418 : 36.734124 : -103.74791 : Des Moines, NM +88419 : 36.896078 : -103.56942 : Folsom, NM +88421 : 35.313786 : -104.47567 : Garita, NM +88422 : 36.353757 : -103.96571 : Gladstone, NM +88424 : 36.458919 : -103.62143 : Grenville, NM +88426 : 35.348463 : -103.39045 : Logan, NM +88427 : 34.770332 : -103.81162 : McAlister, NM +88429 : 36.369783 : -103.505541 : Mount Dora, NM +88430 : 35.644244 : -103.21973 : Nara Visa, NM +88431 : 35.157683 : -104.2151 : Newkirk, NM +88433 : 34.916697 : -103.778184 : Quay, NM +88434 : 35.098357 : -103.34027 : San Jon, NM +88435 : 34.862953 : -104.81362 : Santa Rosa, NM +88436 : 36.137255 : -103.12311 : Sedan, NM +88437 : 36.710694 : -103.14925 : Seneca, NM +88439 : 35.456288 : -104.679611 : Trementina, NM +88441 : 35.456288 : -104.679611 : Bell Ranch, NM +88510 : 31.694842 : -106.299987 : El Paso, TX +88511 : 31.694842 : -106.299987 : El Paso, TX +88512 : 31.694842 : -106.299987 : El Paso, TX +88513 : 31.694842 : -106.299987 : El Paso, TX +88514 : 31.694842 : -106.299987 : El Paso, TX +88515 : 31.694842 : -106.299987 : El Paso, TX +88516 : 31.694842 : -106.299987 : El Paso, TX +88517 : 31.694842 : -106.299987 : El Paso, TX +88518 : 31.694842 : -106.299987 : El Paso, TX +88519 : 31.694842 : -106.299987 : El Paso, TX +88520 : 31.694842 : -106.299987 : El Paso, TX +88521 : 31.694842 : -106.299987 : El Paso, TX +88523 : 31.694842 : -106.299987 : El Paso, TX +88524 : 31.694842 : -106.299987 : El Paso, TX +88525 : 31.694842 : -106.299987 : El Paso, TX +88526 : 31.694842 : -106.299987 : El Paso, TX +88527 : 31.694842 : -106.299987 : El Paso, TX +88528 : 31.694842 : -106.299987 : El Paso, TX +88529 : 31.694842 : -106.299987 : El Paso, TX +88530 : 31.694842 : -106.299987 : El Paso, TX +88531 : 31.694842 : -106.299987 : El Paso, TX +88532 : 31.694842 : -106.299987 : El Paso, TX +88533 : 31.694842 : -106.299987 : El Paso, TX +88534 : 31.694842 : -106.299987 : El Paso, TX +88535 : 31.694842 : -106.299987 : El Paso, TX +88536 : 31.694842 : -106.299987 : El Paso, TX +88538 : 31.694842 : -106.299987 : El Paso, TX +88539 : 31.694842 : -106.299987 : El Paso, TX +88540 : 31.694842 : -106.299987 : El Paso, TX +88541 : 31.694842 : -106.299987 : El Paso, TX +88542 : 31.694842 : -106.299987 : El Paso, TX +88543 : 31.694842 : -106.299987 : El Paso, TX +88544 : 31.694842 : -106.299987 : El Paso, TX +88545 : 31.694842 : -106.299987 : El Paso, TX +88546 : 31.694842 : -106.299987 : El Paso, TX +88547 : 31.694842 : -106.299987 : El Paso, TX +88548 : 31.694842 : -106.299987 : El Paso, TX +88549 : 31.694842 : -106.299987 : El Paso, TX +88550 : 31.694842 : -106.299987 : El Paso, TX +88553 : 31.694842 : -106.299987 : El Paso, TX +88554 : 31.694842 : -106.299987 : El Paso, TX +88555 : 31.694842 : -106.299987 : El Paso, TX +88556 : 31.694842 : -106.299987 : El Paso, TX +88557 : 31.694842 : -106.299987 : El Paso, TX +88558 : 31.694842 : -106.299987 : El Paso, TX +88559 : 31.694842 : -106.299987 : El Paso, TX +88560 : 31.694842 : -106.299987 : El Paso, TX +88561 : 31.694842 : -106.299987 : El Paso, TX +88562 : 31.694842 : -106.299987 : El Paso, TX +88563 : 31.694842 : -106.299987 : El Paso, TX +88565 : 31.694842 : -106.299987 : El Paso, TX +88566 : 31.694842 : -106.299987 : El Paso, TX +88567 : 31.694842 : -106.299987 : El Paso, TX +88568 : 31.694842 : -106.299987 : El Paso, TX +88569 : 31.694842 : -106.299987 : El Paso, TX +88570 : 31.694842 : -106.299987 : El Paso, TX +88571 : 31.694842 : -106.299987 : El Paso, TX +88572 : 31.694842 : -106.299987 : El Paso, TX +88573 : 31.694842 : -106.299987 : El Paso, TX +88574 : 31.694842 : -106.299987 : El Paso, TX +88575 : 31.694842 : -106.299987 : El Paso, TX +88576 : 31.694842 : -106.299987 : El Paso, TX +88577 : 31.694842 : -106.299987 : El Paso, TX +88578 : 31.694842 : -106.299987 : El Paso, TX +88579 : 31.694842 : -106.299987 : El Paso, TX +88580 : 31.694842 : -106.299987 : El Paso, TX +88581 : 31.694842 : -106.299987 : El Paso, TX +88582 : 31.694842 : -106.299987 : El Paso, TX +88583 : 31.694842 : -106.299987 : El Paso, TX +88584 : 31.694842 : -106.299987 : El Paso, TX +88585 : 31.694842 : -106.299987 : El Paso, TX +88586 : 31.694842 : -106.299987 : El Paso, TX +88587 : 31.694842 : -106.299987 : El Paso, TX +88588 : 31.694842 : -106.299987 : El Paso, TX +88589 : 31.694842 : -106.299987 : El Paso, TX +88590 : 31.694842 : -106.299987 : El Paso, TX +88595 : 31.694842 : -106.299987 : El Paso, TX +88603 : 33.361658 : -104.528038 : Roswell, NM +88901 : 36.322484 : -114.819717 : The Lakes, NV +88905 : 35.927901 : -114.972061 : The Lakes, NV +89001 : 37.381946 : -115.31502 : Alamo, NV +89003 : 37.027453 : -116.84011 : Beatty, NV +89004 : 36.046247 : -115.40483 : Blue Diamond, NV +89005 : 35.968615 : -114.83354 : Boulder City, NV +89006 : 35.927901 : -114.972061 : Boulder City, NV +89007 : 36.766887 : -114.13298 : Bunkerville, NV +89008 : 37.488849 : -114.45374 : Caliente, NV +89009 : 35.927901 : -114.972061 : Henderson, NV +89010 : 37.751707 : -118.08592 : Dyer, NV +89011 : 36.121607 : -114.92514 : Henderson, NV +89012 : 36.017578 : -115.05438 : Henderson, NV +89013 : 37.571495 : -117.31507 : Goldfield, NV +89014 : 36.045811 : -115.0778 : Henderson, NV +89015 : 36.030927 : -114.96787 : Henderson, NV +89016 : 35.927901 : -114.972061 : Henderson, NV +89017 : 37.592182 : -115.28676 : Hiko, NV +89018 : 36.573712 : -115.67024 : Indian Springs, NV +89019 : 35.801952 : -115.57819 : Jean, NV +89020 : 36.52513 : -116.46173 : Amargosa Valley, NV +89021 : 36.616546 : -114.47184 : Logandale, NV +89022 : 38.738647 : -117.0789 : Manhattan, NV +89023 : 37.583805 : -116.598559 : Mercury, NV +89024 : 36.789432 : -114.01042 : Mesquite, AZ +89025 : 36.674946 : -114.66488 : Moapa, NV +89026 : 35.927901 : -114.972061 : Jean, NV +89027 : 36.804651 : -114.08749 : Mesquite, NV +89028 : 35.013978 : -114.6447 : Laughlin, NV +89029 : 35.138674 : -114.62875 : Laughlin, NV +89030 : 36.206419 : -115.12318 : North Las Vegas, NV +89031 : 36.256479 : -115.16139 : North Las Vegas, NV +89032 : 36.224218 : -115.1763 : North Las Vegas, NV +89033 : 36.284511 : -115.134488 : North Las Vegas, NV +89036 : 35.927901 : -114.972061 : North Las Vegas, NV +89039 : 35.28299 : -114.87299 : Cal Nev Ari, NV +89040 : 36.540495 : -114.45478 : Overton, NV +89041 : 36.655797 : -116.004795 : Pahrump, NV +89042 : 37.785734 : -114.38399 : Panaca, NV +89043 : 38.122239 : -114.40318 : Pioche, NV +89045 : 37.583805 : -116.598559 : Round Mountain, NV +89046 : 35.525338 : -114.91149 : Searchlight, NV +89047 : 37.751386 : -117.64225 : Silverpeak, NV +89048 : 36.218341 : -116.00994 : Pahrump, NV +89049 : 38.307931 : -116.92779 : Tonopah, NV +89052 : 35.979863 : -115.09895 : Henderson, NV +89053 : 35.927901 : -114.972061 : Henderson, NV +89060 : 36.264185 : -116.038857 : Pahrump, NV +89061 : 36.119299 : -115.938992 : Pahrump, NV +89070 : 35.927901 : -114.972061 : Indian Springs, NV +89074 : 36.038181 : -115.086999 : Henderson, NV +89081 : 36.573377 : -115.674671 : Indian Springs, NV +89084 : 36.281388 : -115.148644 : North Las Vegas, NV +89086 : 36.28094 : -115.132695 : North Las Vegas, NV +89101 : 36.17022 : -115.12785 : Las Vegas, NV +89102 : 36.145303 : -115.18358 : Las Vegas, NV +89103 : 36.113211 : -115.21849 : Las Vegas, NV +89104 : 36.151108 : -115.10857 : Las Vegas, NV +89106 : 36.184219 : -115.16292 : Las Vegas, NV +89107 : 36.171219 : -115.21682 : Las Vegas, NV +89108 : 36.205718 : -115.22363 : Las Vegas, NV +89109 : 36.126038 : -115.14796 : Las Vegas, NV +89110 : 36.172744 : -115.05795 : Las Vegas, NV +89111 : 35.927901 : -114.972061 : Las Vegas, NV +89112 : 36.157764 : -115.025559 : Las Vegas, NV +89113 : 36.067495 : -115.26039 : Las Vegas, NV +89114 : 36.011339 : -115.101508 : Las Vegas, NV +89115 : 36.233655 : -115.06881 : Las Vegas, NV +89116 : 35.927901 : -114.972061 : Las Vegas, NV +89117 : 36.140974 : -115.28205 : Las Vegas, NV +89118 : 36.084361 : -115.2103 : Las Vegas, NV +89119 : 36.088922 : -115.13905 : Las Vegas, NV +89120 : 36.087623 : -115.08872 : Las Vegas, NV +89121 : 36.121972 : -115.0903 : Las Vegas, NV +89122 : 36.10524 : -115.04592 : Las Vegas, NV +89123 : 36.026532 : -115.14848 : Las Vegas, NV +89124 : 36.101538 : -115.39948 : Las Vegas, NV +89125 : 36.223528 : -115.265529 : Las Vegas, NV +89126 : 35.927901 : -114.972061 : Las Vegas, NV +89127 : 35.927901 : -114.972061 : Las Vegas, NV +89128 : 36.193501 : -115.265 : Las Vegas, NV +89129 : 36.231139 : -115.28461 : Las Vegas, NV +89130 : 36.257531 : -115.22728 : Las Vegas, NV +89131 : 36.294596 : -115.24685 : Las Vegas, NV +89132 : 36.018981 : -115.151937 : Las Vegas, NV +89133 : 35.927901 : -114.972061 : Las Vegas, NV +89134 : 36.204548 : -115.31207 : Las Vegas, NV +89135 : 36.131341 : -115.32331 : Las Vegas, NV +89136 : 36.129519 : -115.322782 : Summerlin South, NV +89137 : 35.927901 : -114.972061 : Las Vegas, NV +89138 : 35.927901 : -114.972061 : Las Vegas, NV +89139 : 36.031873 : -115.20342 : Las Vegas, NV +89141 : 35.998778 : -115.19588 : Las Vegas, NV +89142 : 36.148417 : -115.04767 : Las Vegas, NV +89143 : 36.326315 : -115.25788 : Las Vegas, NV +89144 : 36.181142 : -115.32557 : Las Vegas, NV +89145 : 36.167731 : -115.26791 : Las Vegas, NV +89146 : 36.141119 : -115.22493 : Las Vegas, NV +89147 : 36.113059 : -115.27343 : Las Vegas, NV +89148 : 36.049095 : -115.28485 : Las Vegas, NV +89149 : 36.266266 : -115.28656 : Las Vegas, NV +89150 : 35.927901 : -114.972061 : Las Vegas, NV +89151 : 35.927901 : -114.972061 : Las Vegas, NV +89152 : 35.927901 : -114.972061 : Las Vegas, NV +89153 : 35.927901 : -114.972061 : Las Vegas, NV +89154 : 35.927901 : -114.972061 : Las Vegas, NV +89155 : 35.927901 : -114.972061 : Las Vegas, NV +89156 : 36.201612 : -115.03358 : Las Vegas, NV +89158 : 35.927901 : -114.972061 : Las Vegas, NV +89159 : 35.927901 : -114.972061 : Las Vegas, NV +89160 : 35.927901 : -114.972061 : Las Vegas, NV +89163 : 35.927901 : -114.972061 : The Lakes, NV +89164 : 35.927901 : -114.972061 : Las Vegas, NV +89170 : 35.927901 : -114.972061 : Las Vegas, NV +89173 : 35.927901 : -114.972061 : Las Vegas, NV +89177 : 35.927901 : -114.972061 : Las Vegas, NV +89180 : 35.927901 : -114.972061 : Las Vegas, NV +89185 : 35.927901 : -114.972061 : Las Vegas, NV +89191 : 36.370315 : -115.23128 : Nellis AFB, NV +89193 : 35.927901 : -114.972061 : Las Vegas, NV +89195 : 35.927901 : -114.972061 : Las Vegas, NV +89199 : 35.927901 : -114.972061 : Las Vegas, NV +89301 : 39.282855 : -114.9208 : Ely, NV +89310 : 39.748753 : -117.01152 : Austin, NV +89311 : 38.941805 : -114.12592 : Baker, NV +89314 : 38.944921 : -115.70749 : Duckwater, NV +89315 : 39.332636 : -114.824507 : Ely, NV +89316 : 39.717627 : -116.02944 : Eureka, NV +89317 : 38.835421 : -115.02628 : Lund, NV +89318 : 39.4163 : -114.77624 : McGill, NV +89319 : 39.342631 : -114.885945 : Ruth, NV +89402 : 39.239457 : -119.971133 : Crystal Bay, NV +89403 : 39.25468 : -119.51494 : Dayton, NV +89404 : 41.826461 : -118.71295 : Denio, NV +89405 : 40.555197 : -119.35093 : Empire, NV +89406 : 39.461072 : -118.69306 : Fallon, NV +89407 : 39.525628 : -118.842431 : Fallon, NV +89408 : 39.617711 : -119.17374 : Fernley, NV +89409 : 38.872139 : -117.78194 : Gabbs, NV +89410 : 38.878641 : -119.69753 : Gardnerville, NV +89411 : 39.012361 : -119.83288 : Genoa, NV +89412 : 40.652505 : -119.356505 : Gerlach, NV +89413 : 39.083284 : -119.93964 : Glenbrook, NV +89414 : 40.926644 : -117.31706 : Golconda, NV +89415 : 38.505507 : -118.70342 : Hawthorne, NV +89418 : 40.700131 : -118.11473 : Imlay, NV +89419 : 40.21672 : -118.39475 : Lovelock, NV +89420 : 38.555308 : -118.21818 : Luning, NV +89421 : 41.953624 : -117.72501 : McDermitt, NV +89422 : 38.271173 : -118.19513 : Mina, NV +89423 : 39.009564 : -119.75557 : Minden, NV +89424 : 39.835829 : -119.35634 : Nixon, NV +89425 : 41.656001 : -117.95538 : Orovada, NV +89426 : 41.596722 : -117.40232 : Paradise Valley, NV +89427 : 38.966064 : -118.67848 : Schurz, NV +89428 : 39.262835 : -119.64083 : Silver City, NV +89429 : 39.367838 : -119.24618 : Silver Springs, NV +89430 : 38.784128 : -119.31697 : Smith, NV +89431 : 39.542711 : -119.75445 : Sparks, NV +89432 : 40.541218 : -119.586934 : Sparks, NV +89433 : 39.59218 : -119.77467 : Sun Valley, NV +89434 : 39.544183 : -119.70003 : Sparks, NV +89435 : 40.541218 : -119.586934 : Sparks, NV +89436 : 39.624698 : -119.70585 : Sparks, NV +89438 : 41.263287 : -118.174506 : Valmy, NV +89439 : 39.523693 : -120.03012 : Verdi, CA +89440 : 39.298192 : -119.65351 : Virginia City, NV +89442 : 39.659593 : -119.30527 : Wadsworth, NV +89444 : 38.738712 : -119.34585 : Wellington, NV +89445 : 41.02951 : -117.94402 : Winnemucca, NV +89446 : 41.076358 : -117.760165 : Winnemucca, NV +89447 : 38.94675 : -119.11544 : Yerington, NV +89448 : 39.006963 : -119.94762 : Zephyr Cove, NV +89449 : 38.968383 : -119.91364 : Stateline, NV +89450 : 39.256357 : -119.946371 : Incline Village, NV +89451 : 39.245257 : -119.95204 : Incline Village, NV +89452 : 39.259103 : -119.956585 : Incline Village, NV +89460 : 38.903324 : -119.763147 : Gardnerville Ranchos, NV +89496 : 39.537979 : -118.343592 : Fallon, NV +89501 : 39.52616 : -119.81367 : Reno, NV +89502 : 39.499862 : -119.77497 : Reno, NV +89503 : 39.53636 : -119.8373 : Reno, NV +89504 : 40.541218 : -119.586934 : Reno, NV +89505 : 39.52241 : -119.835275 : Reno, NV +89506 : 39.659801 : -119.87918 : Reno, NV +89507 : 39.54231 : -119.816374 : Reno, NV +89509 : 39.496243 : -119.83072 : Reno, NV +89510 : 39.87107 : -119.71313 : Reno, NV +89511 : 39.403178 : -119.7606 : Reno, NV +89512 : 39.54641 : -119.79664 : Reno, NV +89513 : 39.631922 : -119.293722 : Reno, NV +89515 : 40.541218 : -119.586934 : Reno, NV +89520 : 40.541218 : -119.586934 : Reno, NV +89521 : 39.395387 : -119.72735 : Reno, NV +89523 : 39.523088 : -119.89808 : Reno, NV +89533 : 39.543941 : -119.906109 : Reno, NV +89557 : 40.541218 : -119.586934 : Reno, NV +89564 : 40.541218 : -119.586934 : Reno, NV +89570 : 40.541218 : -119.586934 : Reno, NV +89595 : 40.541218 : -119.586934 : Reno, NV +89599 : 40.541218 : -119.586934 : Reno, NV +89701 : 39.147877 : -119.74536 : Carson City, NV +89702 : 39.135503 : -119.75875 : Carson City, NV +89703 : 39.164966 : -119.79382 : Carson City, NV +89704 : 39.27521 : -119.7908 : Washoe Valley, NV +89705 : 39.091507 : -119.79896 : Carson City, NV +89706 : 39.200035 : -119.72732 : Carson City, NV +89710 : 39.167833 : -119.776409 : Carson City, NV +89711 : 39.167833 : -119.776409 : Carson City, NV +89712 : 39.167833 : -119.776409 : Carson City, NV +89713 : 39.167833 : -119.776409 : Carson City, NV +89714 : 39.167833 : -119.776409 : Carson City, NV +89721 : 39.167833 : -119.776409 : Carson City, NV +89779 : 38.971319 : -119.922973 : Kingsbury, NV +89801 : 40.883028 : -115.75016 : Elko, NV +89802 : 41.059414 : -115.529596 : Elko, NV +89803 : 40.81488 : -115.79241 : Elko, NV +89815 : 40.644201 : -115.64745 : Spring Creek, NV +89820 : 40.489736 : -117.08692 : Battle Mountain, NV +89821 : 40.450972 : -116.51585 : Crescent Valley, NV +89822 : 40.715963 : -116.11426 : Carlin, NV +89823 : 41.252236 : -115.40266 : Deeth, NV +89824 : 41.029538 : -115.4113 : Halleck, NV +89825 : 41.890872 : -114.44545 : Jackpot, NV +89826 : 41.905845 : -115.43542 : Jarbidge, NV +89828 : 40.79727 : -115.44828 : Lamoille, NV +89830 : 41.247573 : -114.21077 : Montello, NV +89831 : 41.796309 : -116.05489 : Mountain City, NV +89832 : 41.951703 : -116.17725 : Owyhee, NV +89833 : 40.453542 : -115.33257 : Ruby Valley, NV +89834 : 41.328852 : -116.12251 : Tuscarora, NV +89835 : 41.208288 : -114.86098 : Wells, NV +89883 : 40.854751 : -114.14713 : West Wendover, NV +89912 : 40.651432 : -119.357959 : Gerlach-Empire, NV +90001 : 33.972914 : -118.24878 : Los Angeles, CA +90002 : 33.948315 : -118.24845 : Los Angeles, CA +90003 : 33.962714 : -118.276 : Los Angeles, CA +90004 : 34.07711 : -118.30755 : Los Angeles, CA +90005 : 34.058911 : -118.30848 : Los Angeles, CA +90006 : 34.048351 : -118.2943 : Los Angeles, CA +90007 : 34.026448 : -118.2829 : Los Angeles, CA +90008 : 34.009754 : -118.33705 : Los Angeles, CA +90009 : 33.786594 : -118.298662 : Los Angeles, CA +90010 : 34.062709 : -118.31481 : Los Angeles, CA +90011 : 34.007063 : -118.25868 : Los Angeles, CA +90012 : 34.061611 : -118.23944 : Los Angeles, CA +90013 : 34.044662 : -118.24255 : Los Angeles, CA +90014 : 34.042912 : -118.25193 : Los Angeles, CA +90015 : 34.038993 : -118.26516 : Los Angeles, CA +90016 : 34.029711 : -118.35255 : Los Angeles, CA +90017 : 34.052561 : -118.26434 : Los Angeles, CA +90018 : 34.029112 : -118.3183 : Los Angeles, CA +90019 : 34.048411 : -118.34015 : Los Angeles, CA +90020 : 34.06646 : -118.30863 : Los Angeles, CA +90021 : 34.029313 : -118.24182 : Los Angeles, CA +90022 : 34.023662 : -118.15581 : Los Angeles, CA +90023 : 34.023039 : -118.20231 : Los Angeles, CA +90024 : 34.063209 : -118.43643 : Los Angeles, CA +90025 : 34.045006 : -118.44527 : Los Angeles, CA +90026 : 34.07851 : -118.26596 : Los Angeles, CA +90027 : 34.111208 : -118.28842 : Los Angeles, CA +90028 : 34.098859 : -118.32745 : Los Angeles, CA +90029 : 34.090259 : -118.29455 : Los Angeles, CA +90030 : 33.786594 : -118.298662 : Los Angeles, CA +90031 : 34.07871 : -118.2161 : Los Angeles, CA +90032 : 34.08166 : -118.17568 : Los Angeles, CA +90033 : 34.050411 : -118.21195 : Los Angeles, CA +90034 : 34.03056 : -118.39804 : Los Angeles, CA +90035 : 34.05266 : -118.38531 : Los Angeles, CA +90036 : 34.07036 : -118.34926 : Los Angeles, CA +90037 : 34.002063 : -118.28737 : Los Angeles, CA +90038 : 34.089459 : -118.3285 : Los Angeles, CA +90039 : 34.110425 : -118.25832 : Los Angeles, CA +90040 : 33.997492 : -118.15284 : Los Angeles, CA +90041 : 34.137557 : -118.20765 : Los Angeles, CA +90042 : 34.114558 : -118.19233 : Los Angeles, CA +90043 : 33.987463 : -118.334 : Los Angeles, CA +90044 : 33.953814 : -118.29158 : Los Angeles, CA +90045 : 33.960041 : -118.3949 : Los Angeles, CA +90046 : 34.098908 : -118.36241 : Los Angeles, CA +90047 : 33.958464 : -118.30998 : Los Angeles, CA +90048 : 34.073759 : -118.37376 : Los Angeles, CA +90049 : 34.067409 : -118.47528 : Los Angeles, CA +90050 : 33.786594 : -118.298662 : Los Angeles, CA +90051 : 33.786594 : -118.298662 : Los Angeles, CA +90052 : 33.786594 : -118.298662 : Los Angeles, CA +90053 : 33.786594 : -118.298662 : Los Angeles, CA +90054 : 33.786594 : -118.298662 : Los Angeles, CA +90055 : 33.786594 : -118.298662 : Los Angeles, CA +90056 : 33.986212 : -118.37099 : Los Angeles, CA +90057 : 34.061911 : -118.27687 : Los Angeles, CA +90058 : 34.000219 : -118.22605 : Los Angeles, CA +90059 : 33.927471 : -118.24778 : Los Angeles, CA +90060 : 33.786594 : -118.298662 : Los Angeles, CA +90061 : 33.923365 : -118.27591 : Los Angeles, CA +90062 : 34.003213 : -118.3078 : Los Angeles, CA +90063 : 34.045161 : -118.1865 : Los Angeles, CA +90064 : 34.03457 : -118.42843 : Los Angeles, CA +90065 : 34.107559 : -118.22663 : Los Angeles, CA +90066 : 34.002011 : -118.43083 : Los Angeles, CA +90067 : 34.056709 : -118.41183 : Los Angeles, CA +90068 : 34.122058 : -118.3379 : Los Angeles, CA +90069 : 34.090975 : -118.3813 : West Hollywood, CA +90070 : 33.786594 : -118.298662 : Los Angeles, CA +90071 : 34.052709 : -118.2559 : Los Angeles, CA +90072 : 33.786594 : -118.298662 : Los Angeles, CA +90073 : 33.786594 : -118.298662 : Los Angeles, CA +90074 : 33.786594 : -118.298662 : Los Angeles, CA +90075 : 33.786594 : -118.298662 : Los Angeles, CA +90076 : 33.786594 : -118.298662 : Los Angeles, CA +90077 : 34.101007 : -118.45077 : Los Angeles, CA +90078 : 33.786594 : -118.298662 : Los Angeles, CA +90079 : 33.786594 : -118.298662 : Los Angeles, CA +90080 : 33.786594 : -118.298662 : Los Angeles, CA +90081 : 33.786594 : -118.298662 : Los Angeles, CA +90082 : 33.786594 : -118.298662 : Los Angeles, CA +90083 : 33.786594 : -118.298662 : Los Angeles, CA +90084 : 33.786594 : -118.298662 : Los Angeles, CA +90086 : 33.786594 : -118.298662 : Los Angeles, CA +90087 : 33.786594 : -118.298662 : Los Angeles, CA +90088 : 33.786594 : -118.298662 : Los Angeles, CA +90089 : 33.786594 : -118.298662 : Los Angeles, CA +90091 : 33.786594 : -118.298662 : Los Angeles, CA +90093 : 33.786594 : -118.298662 : Los Angeles, CA +90094 : 33.786594 : -118.298662 : Los Angeles, CA +90095 : 33.786594 : -118.298662 : Los Angeles, CA +90096 : 33.786594 : -118.298662 : Los Angeles, CA +90097 : 33.786594 : -118.298662 : Los Angeles, CA +90099 : 33.786594 : -118.298662 : Los Angeles, CA +90101 : 33.786594 : -118.298662 : Los Angeles, CA +90102 : 33.786594 : -118.298662 : Los Angeles, CA +90103 : 33.786594 : -118.298662 : Los Angeles, CA +90174 : 33.786594 : -118.298662 : Los Angeles, CA +90185 : 33.786594 : -118.298662 : Los Angeles, CA +90201 : 33.972814 : -118.17385 : Bell, CA +90202 : 33.786594 : -118.298662 : Bell Gardens, CA +90204 : 33.944714 : -118.356908 : Inglewood, CA +90209 : 33.786594 : -118.298662 : Beverly Hills, CA +90210 : 34.088808 : -118.40612 : Beverly Hills, CA +90211 : 34.066009 : -118.38271 : Beverly Hills, CA +90212 : 34.060859 : -118.40191 : Beverly Hills, CA +90213 : 33.786594 : -118.298662 : Beverly Hills, CA +90220 : 33.890566 : -118.23666 : Compton, CA +90221 : 33.893265 : -118.204 : Compton, CA +90222 : 33.910716 : -118.23624 : Compton, CA +90223 : 33.786594 : -118.298662 : Compton, CA +90224 : 33.786594 : -118.298662 : Compton, CA +90230 : 33.997179 : -118.40145 : Culver City, CA +90231 : 33.786594 : -118.298662 : Culver City, CA +90232 : 34.021611 : -118.39168 : Culver City, CA +90233 : 33.786594 : -118.298662 : Culver City, CA +90239 : 33.786594 : -118.298662 : Downey, CA +90240 : 33.958363 : -118.11987 : Downey, CA +90241 : 33.942289 : -118.12901 : Downey, CA +90242 : 33.92018 : -118.14291 : Downey, CA +90245 : 33.921313 : -118.40843 : El Segundo, CA +90247 : 33.891265 : -118.2975 : Gardena, CA +90248 : 33.870466 : -118.28813 : Gardena, CA +90249 : 33.899265 : -118.319 : Gardena, CA +90250 : 33.914614 : -118.35092 : Hawthorne, CA +90251 : 33.786594 : -118.298662 : Hawthorne, CA +90254 : 33.866314 : -118.39968 : Hermosa Beach, CA +90255 : 33.978404 : -118.21773 : Huntington Park, CA +90260 : 33.888364 : -118.35355 : Lawndale, CA +90261 : 33.895363 : -118.37689 : Lawndale, CA +90262 : 33.924642 : -118.20186 : Lynwood, CA +90263 : 34.035087 : -118.70752 : Malibu, CA +90264 : 33.786594 : -118.298662 : Malibu, CA +90265 : 34.051056 : -118.80768 : Malibu, CA +90266 : 33.88898 : -118.40535 : Manhattan Beach, CA +90267 : 33.786594 : -118.298662 : Manhattan Beach, CA +90270 : 33.988813 : -118.18642 : Maywood, CA +90272 : 34.050505 : -118.53374 : Pacific Palisades, CA +90274 : 33.784099 : -118.38752 : Palos Verdes Peninsula, CA +90275 : 33.758216 : -118.36425 : Rancho Palos Verdes, CA +90276 : 33.845064 : -118.395107 : Redondo Beach, CA +90277 : 33.828815 : -118.38322 : Redondo Beach, CA +90278 : 33.871214 : -118.37177 : Redondo Beach, CA +90280 : 33.944264 : -118.1949 : South Gate, CA +90290 : 34.101447 : -118.59933 : Topanga, CA +90291 : 33.992411 : -118.46531 : Venice, CA +90292 : 33.976373 : -118.45458 : Marina Del Rey, CA +90293 : 33.957012 : -118.44167 : Playa Del Rey, CA +90294 : 33.786594 : -118.298662 : Venice, CA +90295 : 33.786594 : -118.298662 : Marina Del Rey, CA +90296 : 33.786594 : -118.298662 : Playa Del Rey, CA +90301 : 33.955913 : -118.35868 : Inglewood, CA +90302 : 33.975263 : -118.35558 : Inglewood, CA +90303 : 33.934164 : -118.33255 : Inglewood, CA +90304 : 33.936163 : -118.36076 : Inglewood, CA +90305 : 33.960263 : -118.3252 : Inglewood, CA +90306 : 33.786594 : -118.298662 : Inglewood, CA +90307 : 33.786594 : -118.298662 : Inglewood, CA +90308 : 33.786594 : -118.298662 : Inglewood, CA +90309 : 33.786594 : -118.298662 : Inglewood, CA +90310 : 33.786594 : -118.298662 : Inglewood, CA +90311 : 33.786594 : -118.298662 : Inglewood, CA +90312 : 33.786594 : -118.298662 : Inglewood, CA +90313 : 33.786594 : -118.298662 : Inglewood, CA +90397 : 33.786594 : -118.298662 : Inglewood, CA +90398 : 33.786594 : -118.298662 : Inglewood, CA +90401 : 34.01491 : -118.4922 : Santa Monica, CA +90402 : 34.036759 : -118.50121 : Santa Monica, CA +90403 : 34.032159 : -118.49022 : Santa Monica, CA +90404 : 34.026959 : -118.47432 : Santa Monica, CA +90405 : 34.009276 : -118.47286 : Santa Monica, CA +90406 : 33.786594 : -118.298662 : Santa Monica, CA +90407 : 33.786594 : -118.298662 : Santa Monica, CA +90408 : 33.786594 : -118.298662 : Santa Monica, CA +90409 : 33.786594 : -118.298662 : Santa Monica, CA +90410 : 33.786594 : -118.298662 : Santa Monica, CA +90411 : 33.786594 : -118.298662 : Santa Monica, CA +90421 : 34.010328 : -118.494107 : Santa Monica, CA +90501 : 33.828766 : -118.31367 : Torrance, CA +90502 : 33.833416 : -118.29198 : Torrance, CA +90503 : 33.840264 : -118.35587 : Torrance, CA +90504 : 33.870414 : -118.33065 : Torrance, CA +90505 : 33.810848 : -118.35096 : Torrance, CA +90506 : 33.786594 : -118.298662 : Torrance, CA +90507 : 33.786594 : -118.298662 : Torrance, CA +90508 : 33.786594 : -118.298662 : Torrance, CA +90509 : 33.786594 : -118.298662 : Torrance, CA +90510 : 33.786594 : -118.298662 : Torrance, CA +90601 : 34.002333 : -118.03562 : Whittier, CA +90602 : 33.967562 : -118.03384 : Whittier, CA +90603 : 33.941363 : -117.99477 : Whittier, CA +90604 : 33.929163 : -118.009 : Whittier, CA +90605 : 33.945413 : -118.03362 : Whittier, CA +90606 : 33.978312 : -118.06778 : Whittier, CA +90607 : 33.786594 : -118.298662 : Whittier, CA +90608 : 33.786594 : -118.298662 : Whittier, CA +90609 : 33.786594 : -118.298662 : Whittier, CA +90610 : 33.786594 : -118.298662 : Whittier, CA +90612 : 33.786594 : -118.298662 : Whittier, CA +90620 : 33.841014 : -118.00969 : Buena Park, CA +90621 : 33.875714 : -117.99404 : Buena Park, CA +90622 : 33.640302 : -117.769442 : Buena Park, CA +90623 : 33.849327 : -118.04395 : La Palma, CA +90624 : 33.640302 : -117.769442 : Buena Park, CA +90630 : 33.817481 : -118.0399 : Cypress, CA +90631 : 33.934513 : -117.95159 : La Habra, CA +90632 : 33.640302 : -117.769442 : La Habra, CA +90633 : 33.640302 : -117.769442 : La Habra, CA +90637 : 33.786594 : -118.298662 : La Mirada, CA +90638 : 33.90213 : -118.00966 : La Mirada, CA +90639 : 33.905813 : -118.018247 : La Mirada, CA +90640 : 34.014212 : -118.11358 : Montebello, CA +90650 : 33.906914 : -118.08339 : Norwalk, CA +90651 : 33.786594 : -118.298662 : Norwalk, CA +90652 : 33.786594 : -118.298662 : Norwalk, CA +90659 : 33.786594 : -118.298662 : Norwalk, CA +90660 : 33.989013 : -118.08912 : Pico Rivera, CA +90661 : 33.786594 : -118.298662 : Pico Rivera, CA +90662 : 33.786594 : -118.298662 : Pico Rivera, CA +90665 : 33.786594 : -118.298662 : Pico Rivera, CA +90670 : 33.933551 : -118.06821 : Santa Fe Springs, CA +90671 : 33.786594 : -118.298662 : Santa Fe Springs, CA +90680 : 33.803565 : -117.99596 : Stanton, CA +90701 : 33.867215 : -118.08062 : Artesia, CA +90702 : 33.786594 : -118.298662 : Artesia, CA +90703 : 33.868314 : -118.06754 : Cerritos, CA +90704 : 33.368642 : -118.40835 : Avalon, CA +90706 : 33.888165 : -118.1276 : Bellflower, CA +90707 : 33.786594 : -118.298662 : Bellflower, CA +90710 : 33.797317 : -118.30065 : Harbor City, CA +90711 : 33.786594 : -118.298662 : Lakewood, CA +90712 : 33.851965 : -118.1468 : Lakewood, CA +90713 : 33.847265 : -118.11337 : Lakewood, CA +90714 : 33.851215 : -118.1339 : Lakewood, CA +90715 : 33.840965 : -118.07775 : Lakewood, CA +90716 : 33.828565 : -118.07364 : Hawaiian Gardens, CA +90717 : 33.793384 : -118.31611 : Lomita, CA +90720 : 33.794028 : -118.07218 : Los Alamitos, CA +90721 : 33.640302 : -117.769442 : Los Alamitos, CA +90723 : 33.899915 : -118.16231 : Paramount, CA +90731 : 33.732368 : -118.28905 : San Pedro, CA +90732 : 33.736718 : -118.31123 : San Pedro, CA +90733 : 33.786594 : -118.298662 : San Pedro, CA +90734 : 33.786594 : -118.298662 : San Pedro, CA +90740 : 33.759283 : -118.08239 : Seal Beach, CA +90742 : 33.718167 : -118.07179 : Sunset Beach, CA +90743 : 33.72975 : -118.0863 : Surfside, CA +90744 : 33.784018 : -118.25897 : Wilmington, CA +90745 : 33.823765 : -118.2668 : Carson, CA +90746 : 33.857416 : -118.25633 : Carson, CA +90747 : 33.867138 : -118.253825 : Carson, CA +90748 : 33.786594 : -118.298662 : Wilmington, CA +90749 : 33.786594 : -118.298662 : Carson, CA +90755 : 33.801783 : -118.168691 : Long Beach, CA +90774 : 33.783038 : -118.238683 : Los Angeles, CA +90801 : 33.804309 : -118.200957 : Long Beach, CA +90802 : 33.769018 : -118.19225 : Long Beach, CA +90803 : 33.761117 : -118.12986 : Long Beach, CA +90804 : 33.783467 : -118.15182 : Long Beach, CA +90805 : 33.865916 : -118.18362 : Long Beach, CA +90806 : 33.801767 : -118.1858 : Long Beach, CA +90807 : 33.828366 : -118.18235 : Long Beach, CA +90808 : 33.823316 : -118.11329 : Long Beach, CA +90809 : 33.786594 : -118.298662 : Long Beach, CA +90810 : 33.816217 : -118.21495 : Long Beach, CA +90813 : 33.781011 : -118.19197 : Long Beach, CA +90814 : 33.771167 : -118.14482 : Long Beach, CA +90815 : 33.795049 : -118.11824 : Long Beach, CA +90822 : 33.776094 : -118.11848 : Long Beach, CA +90831 : 33.767817 : -118.199401 : Long Beach, CA +90832 : 33.786594 : -118.298662 : Long Beach, CA +90833 : 33.767817 : -118.199401 : Long Beach, CA +90834 : 33.767817 : -118.199401 : Long Beach, CA +90835 : 33.767817 : -118.199401 : Long Beach, CA +90840 : 33.784266 : -118.115698 : Long Beach, CA +90842 : 33.786594 : -118.298662 : Long Beach, CA +90844 : 33.786594 : -118.298662 : Long Beach, CA +90845 : 33.786594 : -118.298662 : Long Beach, CA +90846 : 33.824918 : -118.150352 : Long Beach, CA +90847 : 33.786594 : -118.298662 : Long Beach, CA +90848 : 33.786594 : -118.298662 : Long Beach, CA +90853 : 33.786594 : -118.298662 : Long Beach, CA +90879 : 33.769667 : -118.313405 : Rancho Palos Verdes, CA +90888 : 33.786594 : -118.298662 : Long Beach, CA +91001 : 34.192102 : -118.14206 : Altadena, CA +91003 : 33.786594 : -118.298662 : Altadena, CA +91006 : 34.134057 : -118.02662 : Arcadia, CA +91007 : 34.126957 : -118.05216 : Arcadia, CA +91009 : 33.786594 : -118.298662 : Duarte, CA +91010 : 34.137707 : -117.96569 : Duarte, CA +91011 : 34.211171 : -118.19776 : La Canada Flintridge, CA +91012 : 33.786594 : -118.298662 : La Canada Flintridge, CA +91016 : 34.140806 : -118.00184 : Monrovia, CA +91017 : 33.786594 : -118.298662 : Monrovia, CA +91020 : 34.211494 : -118.23104 : Montrose, CA +91021 : 33.786594 : -118.298662 : Montrose, CA +91023 : 33.786594 : -118.298662 : Mount Wilson, CA +91024 : 34.164806 : -118.0509 : Sierra Madre, CA +91025 : 33.786594 : -118.298662 : Sierra Madre, CA +91030 : 34.112958 : -118.15577 : South Pasadena, CA +91031 : 33.786594 : -118.298662 : South Pasadena, CA +91040 : 34.261221 : -118.31887 : Sunland, CA +91041 : 33.786594 : -118.298662 : Sunland, CA +91042 : 34.256952 : -118.28453 : Tujunga, CA +91043 : 33.786594 : -118.298662 : Tujunga, CA +91046 : 33.786594 : -118.298662 : Verdugo City, CA +91050 : 33.786594 : -118.298662 : Pasadena, CA +91051 : 33.786594 : -118.298662 : Pasadena, CA +91066 : 33.786594 : -118.298662 : Arcadia, CA +91077 : 33.786594 : -118.298662 : Arcadia, CA +91101 : 34.146607 : -118.1391 : Pasadena, CA +91102 : 33.786594 : -118.298662 : Pasadena, CA +91103 : 34.166706 : -118.159 : Pasadena, CA +91104 : 34.169356 : -118.12392 : Pasadena, CA +91105 : 34.137857 : -118.16329 : Pasadena, CA +91106 : 34.142557 : -118.12715 : Pasadena, CA +91107 : 34.151066 : -118.08974 : Pasadena, CA +91108 : 34.122658 : -118.11296 : San Marino, CA +91109 : 33.786594 : -118.298662 : Pasadena, CA +91110 : 33.786594 : -118.298662 : Pasadena, CA +91114 : 33.786594 : -118.298662 : Pasadena, CA +91115 : 33.786594 : -118.298662 : Pasadena, CA +91116 : 33.786594 : -118.298662 : Pasadena, CA +91117 : 33.786594 : -118.298662 : Pasadena, CA +91118 : 33.786594 : -118.298662 : San Marino, CA +91121 : 33.786594 : -118.298662 : Pasadena, CA +91123 : 33.786594 : -118.298662 : Pasadena, CA +91124 : 33.786594 : -118.298662 : Pasadena, CA +91125 : 33.786594 : -118.298662 : Pasadena, CA +91126 : 33.786594 : -118.298662 : Pasadena, CA +91129 : 33.786594 : -118.298662 : Pasadena, CA +91131 : 33.786594 : -118.298662 : Pasadena, CA +91175 : 33.786594 : -118.298662 : Pasadena, CA +91182 : 33.786594 : -118.298662 : Pasadena, CA +91184 : 33.786594 : -118.298662 : Pasadena, CA +91185 : 33.786594 : -118.298662 : Pasadena, CA +91186 : 33.786594 : -118.298662 : Pasadena, CA +91187 : 33.786594 : -118.298662 : Pasadena, CA +91188 : 33.786594 : -118.298662 : Pasadena, CA +91189 : 33.786594 : -118.298662 : Pasadena, CA +91191 : 33.786594 : -118.298662 : Pasadena, CA +91201 : 34.17013 : -118.29158 : Glendale, CA +91202 : 34.166567 : -118.26994 : Glendale, CA +91203 : 34.152757 : -118.2658 : Glendale, CA +91204 : 34.135259 : -118.25948 : Glendale, CA +91205 : 34.138514 : -118.243 : Glendale, CA +91206 : 34.156674 : -118.22937 : Glendale, CA +91207 : 34.165373 : -118.24532 : Glendale, CA +91208 : 34.189605 : -118.22857 : Glendale, CA +91209 : 33.786594 : -118.298662 : Glendale, CA +91210 : 33.786594 : -118.298662 : Glendale, CA +91214 : 34.232003 : -118.24753 : La Crescenta, CA +91221 : 33.786594 : -118.298662 : Glendale, CA +91222 : 33.786594 : -118.298662 : Glendale, CA +91224 : 33.786594 : -118.298662 : La Crescenta, CA +91225 : 33.786594 : -118.298662 : Glendale, CA +91226 : 33.786594 : -118.298662 : Glendale, CA +91301 : 34.139536 : -118.7607 : Agoura Hills, CA +91302 : 34.133513 : -118.66464 : Calabasas, CA +91303 : 34.198204 : -118.60206 : Canoga Park, CA +91304 : 34.218654 : -118.62538 : Canoga Park, CA +91305 : 33.786594 : -118.298662 : Canoga Park, CA +91306 : 34.209407 : -118.57735 : Winnetka, CA +91307 : 34.197737 : -118.64797 : West Hills, CA +91308 : 33.786594 : -118.298662 : West Hills, CA +91309 : 33.786594 : -118.298662 : Canoga Park, CA +91310 : 33.786594 : -118.298662 : Castaic, CA +91311 : 34.259052 : -118.59426 : Chatsworth, CA +91312 : 33.786594 : -118.298662 : Chatsworth, CA +91313 : 33.786594 : -118.298662 : Chatsworth, CA +91316 : 34.168753 : -118.51636 : Encino, CA +91319 : 34.032383 : -119.1343 : Newbury Park, CA +91320 : 34.175038 : -118.93956 : Newbury Park, CA +91321 : 34.377782 : -118.51489 : Newhall, CA +91322 : 33.786594 : -118.298662 : Newhall, CA +91324 : 34.240353 : -118.55038 : Northridge, CA +91325 : 34.235055 : -118.51766 : Northridge, CA +91326 : 34.276154 : -118.54581 : Northridge, CA +91327 : 33.786594 : -118.298662 : Northridge, CA +91328 : 33.786594 : -118.298662 : Northridge, CA +91329 : 33.786594 : -118.298662 : Northridge, CA +91330 : 33.786594 : -118.298662 : Northridge, CA +91331 : 34.254751 : -118.42406 : Pacoima, CA +91333 : 33.786594 : -118.298662 : Pacoima, CA +91334 : 33.786594 : -118.298662 : Pacoima, CA +91335 : 34.200104 : -118.54099 : Reseda, CA +91337 : 33.786594 : -118.298662 : Reseda, CA +91340 : 34.284935 : -118.43821 : San Fernando, CA +91341 : 33.786594 : -118.298662 : San Fernando, CA +91342 : 34.307877 : -118.42904 : Sylmar, CA +91343 : 34.239503 : -118.48224 : North Hills, CA +91344 : 34.277648 : -118.50047 : Granada Hills, CA +91345 : 34.264635 : -118.45961 : Mission Hills, CA +91346 : 33.786594 : -118.298662 : Mission Hills, CA +91350 : 34.481172 : -118.42821 : Santa Clarita, CA +91351 : 34.424794 : -118.44513 : Canyon Country, CA +91352 : 34.224089 : -118.37563 : Sun Valley, CA +91353 : 33.786594 : -118.298662 : Sun Valley, CA +91354 : 34.445313 : -118.55252 : Valencia, CA +91355 : 34.406519 : -118.56214 : Valencia, CA +91356 : 34.164255 : -118.54472 : Tarzana, CA +91357 : 33.786594 : -118.298662 : Tarzana, CA +91358 : 34.032383 : -119.1343 : Thousand Oaks, CA +91359 : 34.032383 : -119.1343 : Westlake Village, CA +91360 : 34.208837 : -118.87348 : Thousand Oaks, CA +91361 : 34.14348 : -118.85608 : Westlake Village, CA +91362 : 34.190804 : -118.83704 : Thousand Oaks, CA +91363 : 33.786594 : -118.298662 : Westlake Village, CA +91364 : 34.158214 : -118.60061 : Woodland Hills, CA +91365 : 33.786594 : -118.298662 : Woodland Hills, CA +91367 : 34.176238 : -118.61992 : Woodland Hills, CA +91371 : 33.786594 : -118.298662 : Woodland Hills, CA +91372 : 33.786594 : -118.298662 : Calabasas, CA +91376 : 33.786594 : -118.298662 : Agoura Hills, CA +91377 : 34.182875 : -118.76893 : Oak Park, CA +91380 : 33.786594 : -118.298662 : Santa Clarita, CA +91381 : 34.384663 : -118.58704 : Stevenson Ranch, CA +91382 : 33.786594 : -118.298662 : Santa Clarita, CA +91383 : 33.786594 : -118.298662 : Santa Clarita, CA +91384 : 34.478797 : -118.65255 : Castaic, CA +91385 : 33.786594 : -118.298662 : Valencia, CA +91386 : 33.786594 : -118.298662 : Canyon Country, CA +91387 : 34.421537 : -118.419181 : Santa Clarita, CA +91388 : 33.786594 : -118.298662 : Van Nuys, CA +91390 : 34.490004 : -118.300826 : Santa Clarita, CA +91392 : 33.786594 : -118.298662 : Sylmar, CA +91393 : 33.786594 : -118.298662 : North Hills, CA +91394 : 33.786594 : -118.298662 : Granada Hills, CA +91395 : 33.786594 : -118.298662 : Mission Hills, CA +91396 : 33.786594 : -118.298662 : Winnetka, CA +91399 : 33.786594 : -118.298662 : Woodland Hills, CA +91401 : 34.176505 : -118.43308 : Van Nuys, CA +91402 : 34.223753 : -118.44322 : Panorama City, CA +91403 : 34.152513 : -118.46396 : Sherman Oaks, CA +91404 : 33.786594 : -118.298662 : Van Nuys, CA +91405 : 34.199704 : -118.44724 : Van Nuys, CA +91406 : 34.201491 : -118.49376 : Van Nuys, CA +91407 : 33.786594 : -118.298662 : Van Nuys, CA +91408 : 33.786594 : -118.298662 : Van Nuys, CA +91409 : 33.786594 : -118.298662 : Van Nuys, CA +91410 : 33.786594 : -118.298662 : Van Nuys, CA +91411 : 34.178305 : -118.45858 : Van Nuys, CA +91412 : 33.786594 : -118.298662 : Panorama City, CA +91413 : 33.786594 : -118.298662 : Sherman Oaks, CA +91416 : 33.786594 : -118.298662 : Encino, CA +91423 : 34.153628 : -118.43222 : Sherman Oaks, CA +91426 : 33.786594 : -118.298662 : Encino, CA +91436 : 34.155625 : -118.48925 : Encino, CA +91470 : 33.786594 : -118.298662 : Van Nuys, CA +91482 : 33.786594 : -118.298662 : Van Nuys, CA +91495 : 33.786594 : -118.298662 : Sherman Oaks, CA +91496 : 33.786594 : -118.298662 : Van Nuys, CA +91497 : 33.786594 : -118.298662 : Van Nuys, CA +91499 : 33.786594 : -118.298662 : Van Nuys, CA +91501 : 34.186755 : -118.30153 : Burbank, CA +91502 : 34.177606 : -118.30954 : Burbank, CA +91503 : 33.786594 : -118.298662 : Burbank, CA +91504 : 34.201254 : -118.32993 : Burbank, CA +91505 : 34.166906 : -118.34366 : Burbank, CA +91506 : 34.169663 : -118.32364 : Burbank, CA +91507 : 33.786594 : -118.298662 : Burbank, CA +91508 : 33.786594 : -118.298662 : Burbank, CA +91510 : 33.786594 : -118.298662 : Burbank, CA +91521 : 33.786594 : -118.298662 : Burbank, CA +91522 : 33.786594 : -118.298662 : Burbank, CA +91523 : 33.786594 : -118.298662 : Burbank, CA +91526 : 33.786594 : -118.298662 : Burbank, CA +91601 : 34.168206 : -118.37246 : North Hollywood, CA +91602 : 34.152476 : -118.36841 : North Hollywood, CA +91603 : 33.786594 : -118.298662 : North Hollywood, CA +91604 : 34.143856 : -118.39429 : Studio City, CA +91605 : 34.208142 : -118.4011 : North Hollywood, CA +91606 : 34.185698 : -118.38836 : North Hollywood, CA +91607 : 34.165706 : -118.39986 : Valley Village, CA +91608 : 34.139397 : -118.35034 : Universal City, CA +91609 : 33.786594 : -118.298662 : North Hollywood, CA +91610 : 33.786594 : -118.298662 : Toluca Lake, CA +91611 : 33.786594 : -118.298662 : North Hollywood, CA +91612 : 33.786594 : -118.298662 : North Hollywood, CA +91614 : 33.786594 : -118.298662 : Studio City, CA +91615 : 33.786594 : -118.298662 : North Hollywood, CA +91616 : 33.786594 : -118.298662 : North Hollywood, CA +91617 : 33.786594 : -118.298662 : Valley Village, CA +91618 : 33.786594 : -118.298662 : North Hollywood, CA +91671 : 34.175205 : -118.382212 : Los Angeles, CA +91701 : 34.131659 : -117.5924 : Alta Loma, CA +91702 : 34.128907 : -117.90309 : Azusa, CA +91706 : 34.087108 : -117.96966 : Baldwin Park, CA +91708 : 34.839964 : -115.967051 : Chino, CA +91709 : 33.975267 : -117.72305 : Chino Hills, CA +91710 : 34.015963 : -117.68737 : Chino, CA +91711 : 34.110009 : -117.71973 : Claremont, CA +91714 : 33.786594 : -118.298662 : City Of Industry, CA +91715 : 33.786594 : -118.298662 : City Of Industry, CA +91716 : 33.786594 : -118.298662 : City Of Industry, CA +91718 : 33.752886 : -116.055617 : Corona, CA +91719 : 33.735688 : -117.42049 : Corona, CA +91720 : 33.752886 : -116.055617 : Corona, CA +91722 : 34.097708 : -117.90698 : Covina, CA +91723 : 34.085809 : -117.88694 : Covina, CA +91724 : 34.088771 : -117.85817 : Covina, CA +91729 : 34.839964 : -115.967051 : Rancho Cucamonga, CA +91730 : 34.104555 : -117.58734 : Rancho Cucamonga, CA +91731 : 34.076642 : -118.03942 : El Monte, CA +91732 : 34.070659 : -118.01383 : El Monte, CA +91733 : 34.05051 : -118.04834 : South El Monte, CA +91734 : 33.786594 : -118.298662 : El Monte, CA +91735 : 33.786594 : -118.298662 : El Monte, CA +91737 : 34.147849 : -117.57847 : Alta Loma, CA +91739 : 34.127819 : -117.5246 : Rancho Cucamonga, CA +91740 : 34.119245 : -117.8548 : Glendora, CA +91741 : 34.140207 : -117.85704 : Glendora, CA +91743 : 34.066655 : -117.58831 : Guasti, CA +91744 : 34.029561 : -117.93975 : La Puente, CA +91745 : 34.000578 : -117.96943 : Hacienda Heights, CA +91746 : 34.046889 : -117.98464 : La Puente, CA +91747 : 33.786594 : -118.298662 : La Puente, CA +91748 : 33.985012 : -117.89705 : Rowland Heights, CA +91749 : 33.786594 : -118.298662 : La Puente, CA +91750 : 34.117047 : -117.77097 : La Verne, CA +91752 : 34.001846 : -117.52759 : Mira Loma, CA +91754 : 34.048207 : -118.14161 : Monterey Park, CA +91755 : 34.05471 : -118.11823 : Monterey Park, CA +91756 : 33.786594 : -118.298662 : Monterey Park, CA +91758 : 34.839964 : -115.967051 : Ontario, CA +91759 : 34.231581 : -117.66106 : Mt Baldy, CA +91760 : 33.752886 : -116.055617 : Norco, CA +91761 : 34.036085 : -117.6086 : Ontario, CA +91762 : 34.057561 : -117.66563 : Ontario, CA +91763 : 34.07041 : -117.69938 : Montclair, CA +91764 : 34.077327 : -117.6222 : Ontario, CA +91765 : 34.004172 : -117.81673 : Diamond Bar, CA +91766 : 34.045584 : -117.75305 : Pomona, CA +91767 : 34.080143 : -117.73861 : Pomona, CA +91768 : 34.06521 : -117.77932 : Pomona, CA +91769 : 33.786594 : -118.298662 : Pomona, CA +91770 : 34.066143 : -118.08475 : Rosemead, CA +91771 : 33.786594 : -118.298662 : Rosemead, CA +91772 : 33.786594 : -118.298662 : Rosemead, CA +91773 : 34.103341 : -117.81814 : San Dimas, CA +91775 : 34.114041 : -118.09035 : San Gabriel, CA +91776 : 34.089059 : -118.0951 : San Gabriel, CA +91778 : 33.786594 : -118.298662 : San Gabriel, CA +91780 : 34.101608 : -118.05606 : Temple City, CA +91784 : 34.138575 : -117.66356 : Upland, CA +91785 : 34.839964 : -115.967051 : Upland, CA +91786 : 34.101659 : -117.65776 : Upland, CA +91788 : 33.786594 : -118.298662 : Walnut, CA +91789 : 34.018361 : -117.85438 : Walnut, CA +91790 : 34.068059 : -117.93835 : West Covina, CA +91791 : 34.063645 : -117.89743 : West Covina, CA +91792 : 34.020711 : -117.89932 : West Covina, CA +91793 : 33.786594 : -118.298662 : West Covina, CA +91795 : 33.786594 : -118.298662 : Walnut, CA +91797 : 33.786594 : -118.298662 : Pomona, CA +91798 : 34.839964 : -115.967051 : Ontario, CA +91799 : 33.786594 : -118.298662 : Pomona, CA +91801 : 34.090409 : -118.127 : Alhambra, CA +91802 : 33.786594 : -118.298662 : Alhambra, CA +91803 : 34.072959 : -118.1462 : Alhambra, CA +91804 : 33.786594 : -118.298662 : Alhambra, CA +91841 : 33.786594 : -118.298662 : Alhambra, CA +91896 : 33.786594 : -118.298662 : Alhambra, CA +91899 : 33.786594 : -118.298662 : Alhambra, CA +91901 : 32.823102 : -116.73864 : Alpine, CA +91902 : 32.663803 : -117.02456 : Bonita, CA +91903 : 33.016928 : -116.846046 : Alpine, CA +91905 : 32.672239 : -116.31497 : Boulevard, CA +91906 : 32.664307 : -116.46513 : Campo, CA +91908 : 33.016928 : -116.846046 : Bonita, CA +91909 : 33.016928 : -116.846046 : Chula Vista, CA +91910 : 32.638654 : -117.06686 : Chula Vista, CA +91911 : 32.608799 : -117.0607 : Chula Vista, CA +91912 : 33.016928 : -116.846046 : Chula Vista, CA +91913 : 32.642486 : -116.98973 : Chula Vista, CA +91914 : 32.662563 : -116.95413 : Chula Vista, CA +91915 : 32.638072 : -116.95195 : Chula Vista, CA +91916 : 32.890384 : -116.62459 : Descanso, CA +91917 : 32.616539 : -116.71187 : Dulzura, CA +91921 : 33.016928 : -116.846046 : Chula Vista, CA +91927 : 32.701452 : -117.002054 : La Presa, CA +91931 : 32.852086 : -116.55559 : Guatay, CA +91932 : 32.579555 : -117.11708 : Imperial Beach, CA +91933 : 33.016928 : -116.846046 : Imperial Beach, CA +91934 : 32.624424 : -116.17025 : Jacumba, CA +91935 : 32.718186 : -116.82606 : Jamul, CA +91941 : 32.761801 : -117.01273 : La Mesa, CA +91942 : 32.785 : -117.0186 : La Mesa, CA +91943 : 33.016928 : -116.846046 : La Mesa, CA +91944 : 33.016928 : -116.846046 : La Mesa, CA +91945 : 32.733451 : -117.0337 : Lemon Grove, CA +91946 : 33.016928 : -116.846046 : Lemon Grove, CA +91947 : 33.016928 : -116.846046 : Lincoln Acres, CA +91948 : 32.875267 : -116.42826 : Mount Laguna, CA +91950 : 32.670903 : -117.09272 : National City, CA +91951 : 33.016928 : -116.846046 : National City, CA +91962 : 32.773317 : -116.49139 : Pine Valley, CA +91963 : 32.620782 : -116.60671 : Potrero, CA +91976 : 33.016928 : -116.846046 : Spring Valley, CA +91977 : 32.721145 : -116.99612 : Spring Valley, CA +91978 : 32.732539 : -116.95091 : Spring Valley, CA +91979 : 33.016928 : -116.846046 : Spring Valley, CA +91980 : 32.588485 : -116.63034 : Tecate, CA +91987 : 33.016928 : -116.846046 : Tecate, CA +91990 : 33.016928 : -116.846046 : Potrero, CA +92002 : 33.198032 : -117.234701 : Carlsbad, CA +92003 : 33.289265 : -117.20011 : Bonsall, CA +92004 : 33.184028 : -116.26597 : Borrego Springs, CA +92007 : 33.026742 : -117.27816 : Cardiff By The Sea, CA +92008 : 33.158137 : -117.32646 : Carlsbad, CA +92009 : 33.097841 : -117.26744 : Carlsbad, CA +92013 : 33.016928 : -116.846046 : Carlsbad, CA +92014 : 32.961812 : -117.25967 : Del Mar, CA +92018 : 33.016928 : -116.846046 : Carlsbad, CA +92019 : 32.788736 : -116.90487 : El Cajon, CA +92020 : 32.7991 : -116.97334 : El Cajon, CA +92021 : 32.8201 : -116.91234 : El Cajon, CA +92022 : 33.016928 : -116.846046 : El Cajon, CA +92023 : 33.016928 : -116.846046 : Encinitas, CA +92024 : 33.053092 : -117.26855 : Encinitas, CA +92025 : 33.106862 : -117.07077 : Escondido, CA +92026 : 33.181543 : -117.11136 : Escondido, CA +92027 : 33.142706 : -117.03049 : Escondido, CA +92028 : 33.380359 : -117.20605 : Fallbrook, CA +92029 : 33.087868 : -117.11558 : Escondido, CA +92030 : 33.016928 : -116.846046 : Escondido, CA +92031 : 34.587473 : -117.406293 : Adelanto, CA +92033 : 33.016928 : -116.846046 : Escondido, CA +92036 : 33.02757 : -116.53109 : Julian, CA +92037 : 32.838761 : -117.26159 : La Jolla, CA +92038 : 33.016928 : -116.846046 : La Jolla, CA +92039 : 33.016928 : -116.846046 : La Jolla, CA +92040 : 32.873849 : -116.90477 : Lakeside, CA +92046 : 33.016928 : -116.846046 : Escondido, CA +92049 : 33.016928 : -116.846046 : Oceanside, CA +92051 : 33.016928 : -116.846046 : Oceanside, CA +92052 : 33.016928 : -116.846046 : Oceanside, CA +92054 : 33.202463 : -117.36077 : Oceanside, CA +92055 : 33.016928 : -116.846046 : Camp Pendleton, CA +92056 : 33.195354 : -117.28232 : Oceanside, CA +92057 : 33.240926 : -117.29851 : Oceanside, CA +92058 : 33.016928 : -116.846046 : Oceanside, CA +92059 : 33.369249 : -117.07236 : Pala, CA +92060 : 33.308217 : -116.8471 : Palomar Mountain, CA +92061 : 33.311881 : -116.96499 : Pauma Valley, CA +92064 : 32.973645 : -117.03701 : Poway, CA +92065 : 33.035844 : -116.8513 : Ramona, CA +92066 : 33.209313 : -116.54244 : Ranchita, CA +92067 : 33.016492 : -117.20264 : Rancho Santa Fe, CA +92068 : 33.016928 : -116.846046 : San Luis Rey, CA +92069 : 33.144908 : -117.17128 : San Marcos, CA +92070 : 33.166768 : -116.71061 : Santa Ysabel, CA +92071 : 32.84681 : -116.98983 : Santee, CA +92072 : 33.016928 : -116.846046 : Santee, CA +92074 : 33.016928 : -116.846046 : Poway, CA +92075 : 32.997543 : -117.26087 : Solana Beach, CA +92078 : 33.122029 : -117.15605 : San Marcos, CA +92079 : 33.016928 : -116.846046 : San Marcos, CA +92082 : 33.261748 : -117.01027 : Valley Center, CA +92083 : 33.179587 : -117.24461 : Vista, CA +92084 : 33.213309 : -117.21474 : Vista, CA +92085 : 33.016928 : -116.846046 : Vista, CA +92086 : 33.337152 : -116.69355 : Warner Springs, CA +92088 : 33.016928 : -116.846046 : Fallbrook, CA +92090 : 33.016928 : -116.846046 : El Cajon, CA +92091 : 32.993541 : -117.21311 : Rancho Santa Fe, CA +92092 : 33.016928 : -116.846046 : La Jolla, CA +92093 : 33.016928 : -116.846046 : La Jolla, CA +92096 : 33.016928 : -116.846046 : San Marcos, CA +92101 : 32.719601 : -117.16246 : San Diego, CA +92102 : 32.714992 : -117.12537 : San Diego, CA +92103 : 32.746018 : -117.16715 : San Diego, CA +92104 : 32.742892 : -117.12774 : San Diego, CA +92105 : 32.741256 : -117.0951 : San Diego, CA +92106 : 32.7259 : -117.23079 : San Diego, CA +92107 : 32.7409 : -117.24434 : San Diego, CA +92108 : 32.7736 : -117.13785 : San Diego, CA +92109 : 32.791246 : -117.24343 : San Diego, CA +92110 : 32.766482 : -117.20077 : San Diego, CA +92111 : 32.804972 : -117.16871 : San Diego, CA +92112 : 33.016928 : -116.846046 : San Diego, CA +92113 : 32.697402 : -117.12001 : San Diego, CA +92114 : 32.706954 : -117.0542 : San Diego, CA +92115 : 32.7603 : -117.07031 : San Diego, CA +92116 : 32.76235 : -117.12246 : San Diego, CA +92117 : 32.823865 : -117.19966 : San Diego, CA +92118 : 32.682727 : -117.17441 : Coronado, CA +92119 : 32.80225 : -117.02431 : San Diego, CA +92120 : 32.794449 : -117.07221 : San Diego, CA +92121 : 32.899996 : -117.20722 : San Diego, CA +92122 : 32.856447 : -117.21143 : San Diego, CA +92123 : 32.803799 : -117.13595 : San Diego, CA +92124 : 32.822815 : -117.09844 : San Diego, CA +92126 : 32.914346 : -117.14116 : San Diego, CA +92127 : 33.022384 : -117.10694 : San Diego, CA +92128 : 32.998855 : -117.07054 : San Diego, CA +92129 : 32.961014 : -117.1251 : San Diego, CA +92130 : 32.946776 : -117.21918 : San Diego, CA +92131 : 32.918035 : -117.08438 : San Diego, CA +92132 : 32.643703 : -117.138414 : San Diego, CA +92133 : 32.733507 : -117.216451 : San Diego, CA +92134 : 32.562106 : -117.07166 : San Diego, CA +92135 : 33.016928 : -116.846046 : San Diego, CA +92136 : 32.68342 : -117.121913 : San Diego, CA +92137 : 32.85377 : -117.119744 : San Diego, CA +92138 : 33.016928 : -116.846046 : San Diego, CA +92139 : 32.677286 : -117.05241 : San Diego, CA +92140 : 32.74344 : -117.200412 : San Diego, CA +92142 : 33.016928 : -116.846046 : San Diego, CA +92143 : 33.016928 : -116.846046 : San Ysidro, CA +92145 : 32.889139 : -117.100486 : San Diego, CA +92147 : 33.016928 : -116.846046 : San Diego, CA +92149 : 33.016928 : -116.846046 : San Diego, CA +92150 : 33.016928 : -116.846046 : San Diego, CA +92152 : 33.016928 : -116.846046 : San Diego, CA +92153 : 33.016928 : -116.846046 : San Diego, CA +92154 : 32.574398 : -117.05633 : San Diego, CA +92155 : 32.671602 : -117.165665 : San Diego, CA +92158 : 33.016928 : -116.846046 : San Diego, CA +92159 : 33.016928 : -116.846046 : San Diego, CA +92160 : 33.016928 : -116.846046 : San Diego, CA +92161 : 32.871846 : -117.229119 : San Diego, CA +92162 : 33.016928 : -116.846046 : San Diego, CA +92163 : 33.016928 : -116.846046 : San Diego, CA +92164 : 33.016928 : -116.846046 : San Diego, CA +92165 : 33.016928 : -116.846046 : San Diego, CA +92166 : 33.016928 : -116.846046 : San Diego, CA +92167 : 33.016928 : -116.846046 : San Diego, CA +92168 : 33.016928 : -116.846046 : San Diego, CA +92169 : 33.016928 : -116.846046 : San Diego, CA +92170 : 33.016928 : -116.846046 : San Diego, CA +92171 : 33.016928 : -116.846046 : San Diego, CA +92172 : 33.016928 : -116.846046 : San Diego, CA +92173 : 32.556264 : -117.05057 : San Ysidro, CA +92174 : 33.016928 : -116.846046 : San Diego, CA +92175 : 33.016928 : -116.846046 : San Diego, CA +92176 : 33.016928 : -116.846046 : San Diego, CA +92177 : 33.016928 : -116.846046 : San Diego, CA +92178 : 33.016928 : -116.846046 : Coronado, CA +92179 : 32.572602 : -116.918724 : San Diego, CA +92182 : 32.775088 : -117.076176 : San Diego, CA +92184 : 33.016928 : -116.846046 : San Diego, CA +92186 : 33.016928 : -116.846046 : San Diego, CA +92187 : 33.016928 : -116.846046 : San Diego, CA +92190 : 33.016928 : -116.846046 : San Diego, CA +92191 : 33.016928 : -116.846046 : San Diego, CA +92192 : 33.016928 : -116.846046 : San Diego, CA +92193 : 33.016928 : -116.846046 : San Diego, CA +92194 : 33.016928 : -116.846046 : San Diego, CA +92195 : 33.016928 : -116.846046 : San Diego, CA +92196 : 33.016928 : -116.846046 : San Diego, CA +92197 : 33.016928 : -116.846046 : San Diego, CA +92198 : 33.016928 : -116.846046 : San Diego, CA +92199 : 32.751575 : -117.191848 : San Diego, CA +92201 : 33.715271 : -116.235 : Indio, CA +92202 : 33.752886 : -116.055617 : Indio, CA +92203 : 33.75307 : -116.24688 : Indio, CA +92210 : 33.70129 : -116.34148 : Indian Wells, CA +92211 : 33.759409 : -116.32317 : Palm Desert, CA +92220 : 33.920803 : -116.87897 : Banning, CA +92222 : 32.782242 : -114.561905 : Bard, CA +92223 : 33.945265 : -116.9759 : Beaumont, CA +92225 : 33.628333 : -114.61905 : Blythe, CA +92226 : 33.59869 : -114.652517 : Blythe, CA +92227 : 32.98975 : -115.50475 : Brawley, CA +92230 : 33.911404 : -116.76834 : Cabazon, CA +92231 : 32.683491 : -115.48277 : Calexico, CA +92232 : 33.026203 : -115.284581 : Calexico, CA +92233 : 33.131764 : -115.51208 : Calipatria, CA +92234 : 33.807761 : -116.46473 : Cathedral City, CA +92235 : 33.752886 : -116.055617 : Cathedral City, CA +92236 : 33.679872 : -116.17656 : Coachella, CA +92239 : 33.830029 : -115.40124 : Desert Center, CA +92240 : 33.952303 : -116.50804 : Desert Hot Springs, CA +92241 : 33.904371 : -116.38634 : Desert Hot Springs, CA +92242 : 34.137179 : -114.35823 : Earp, CA +92243 : 32.783359 : -115.57746 : El Centro, CA +92244 : 32.79475 : -115.692714 : El Centro, CA +92249 : 32.726931 : -115.51245 : Heber, CA +92250 : 32.800259 : -115.35369 : Holtville, CA +92251 : 32.853471 : -115.58942 : Imperial, CA +92252 : 34.175926 : -116.29137 : Joshua Tree, CA +92253 : 33.675373 : -116.29649 : La Quinta, CA +92254 : 33.543836 : -115.99404 : Mecca, CA +92255 : 33.752886 : -116.055617 : Palm Desert, CA +92256 : 34.066626 : -116.55951 : Morongo Valley, CA +92257 : 33.330929 : -115.61583 : Niland, CA +92258 : 33.921502 : -116.56703 : North Palm Springs, CA +92259 : 32.722049 : -115.95998 : Ocotillo, CA +92260 : 33.715672 : -116.38496 : Palm Desert, CA +92261 : 33.660374 : -116.408249 : Palm Desert, CA +92262 : 33.842984 : -116.54344 : Palm Springs, CA +92263 : 33.761076 : -116.535887 : Palm Springs, CA +92264 : 33.798669 : -116.51887 : Palm Springs, CA +92266 : 33.387467 : -114.71352 : Palo Verde, CA +92267 : 34.286985 : -114.17251 : Parker Dam, CA +92268 : 34.203249 : -116.56565 : Pioneertown, CA +92270 : 33.762944 : -116.42249 : Rancho Mirage, CA +92271 : 33.53163 : -114.892368 : Rancho Mirage, CA +92273 : 32.792631 : -115.69162 : Seeley, CA +92274 : 33.466287 : -116.0688 : Thermal, CA +92275 : 33.289347 : -115.9565 : Salton City, CA +92276 : 33.821318 : -116.38023 : Thousand Palms, CA +92277 : 34.165696 : -116.03343 : Twentynine Palms, CA +92278 : 34.360235 : -116.20964 : Twentynine Palms, CA +92280 : 34.143497 : -114.62411 : Vidal, CA +92281 : 33.037061 : -115.6194 : Westmorland, CA +92282 : 33.941487 : -116.64506 : White Water, CA +92283 : 32.786759 : -114.62591 : Winterhaven, CA +92284 : 34.161795 : -116.41246 : Yucca Valley, CA +92285 : 34.31039 : -116.45012 : Landers, CA +92286 : 34.180251 : -116.350003 : Yucca Valley, CA +92292 : 33.752886 : -116.055617 : Palm Springs, CA +92301 : 34.641695 : -117.50803 : Adelanto, CA +92304 : 34.548138 : -115.65796 : Amboy, CA +92305 : 34.172474 : -116.87593 : Angelus Oaks, CA +92307 : 34.538622 : -117.17729 : Apple Valley, CA +92308 : 34.447959 : -117.19222 : Apple Valley, CA +92309 : 35.27295 : -116.06504 : Baker, CA +92310 : 35.262763 : -116.69452 : Fort Irwin, CA +92311 : 34.894181 : -117.03636 : Barstow, CA +92312 : 34.201638 : -116.906215 : Barstow, CA +92313 : 34.030714 : -117.31174 : Grand Terrace, CA +92314 : 34.255388 : -116.85442 : Big Bear City, CA +92315 : 34.241295 : -116.90328 : Big Bear Lake, CA +92316 : 34.064062 : -117.39432 : Bloomington, CA +92317 : 34.245607 : -117.23 : Blue Jay, CA +92318 : 34.048544 : -117.23274 : Bryn Mawr, CA +92320 : 33.984551 : -117.03767 : Calimesa, CA +92321 : 34.254199 : -117.17563 : Cedar Glen, CA +92322 : 34.839964 : -115.967051 : Cedarpines Park, CA +92323 : 35.187237 : -115.39727 : Cima, CA +92324 : 34.061931 : -117.31995 : Colton, CA +92325 : 34.242567 : -117.28654 : Crestline, CA +92326 : 34.839964 : -115.967051 : Crest Park, CA +92327 : 34.866837 : -116.86379 : Daggett, CA +92328 : 35.945641 : -117.20296 : Death Valley, CA +92329 : 34.839964 : -115.967051 : Phelan, CA +92332 : 35.00224 : -115.23936 : Essex, CA +92333 : 34.268344 : -116.93842 : Fawnskin, CA +92334 : 34.839964 : -115.967051 : Fontana, CA +92335 : 34.088911 : -117.45213 : Fontana, CA +92336 : 34.125147 : -117.45818 : Fontana, CA +92337 : 34.046992 : -117.481 : Fontana, CA +92338 : 34.720285 : -116.1982 : Ludlow, CA +92339 : 34.087114 : -116.923 : Forest Falls, CA +92340 : 34.839964 : -115.967051 : Hesperia, CA +92341 : 34.241477 : -117.07449 : Green Valley Lake, CA +92342 : 34.761696 : -117.33444 : Helendale, CA +92345 : 34.399992 : -117.33999 : Hesperia, CA +92346 : 34.12716 : -117.20073 : Highland, CA +92347 : 34.956205 : -117.21994 : Hinkley, CA +92350 : 34.839964 : -115.967051 : Loma Linda, CA +92352 : 34.25629 : -117.19132 : Lake Arrowhead, CA +92354 : 34.050764 : -117.25327 : Loma Linda, CA +92356 : 34.481229 : -116.90601 : Lucerne Valley, CA +92357 : 34.839964 : -115.967051 : Loma Linda, CA +92358 : 34.229288 : -117.52082 : Lytle Creek, CA +92359 : 34.083512 : -117.09688 : Mentone, CA +92363 : 34.808718 : -114.62664 : Needles, CA +92364 : 35.46019 : -115.49467 : Nipton, CA +92365 : 34.896333 : -116.63644 : Newberry Springs, CA +92366 : 34.839964 : -115.967051 : Mountain Pass, CA +92368 : 34.634147 : -117.30614 : Oro Grande, CA +92369 : 34.839964 : -115.967051 : Patton, CA +92371 : 34.453465 : -117.53392 : Phelan, CA +92372 : 34.44654 : -117.63411 : Pinon Hills, CA +92373 : 34.034714 : -117.17305 : Redlands, CA +92374 : 34.063264 : -117.16888 : Redlands, CA +92375 : 34.839964 : -115.967051 : Redlands, CA +92376 : 34.109511 : -117.37617 : Rialto, CA +92377 : 34.151243 : -117.39873 : Rialto, CA +92378 : 34.839964 : -115.967051 : Rimforest, CA +92382 : 34.205626 : -117.10499 : Running Springs, CA +92384 : 35.947562 : -116.27037 : Shoshone, CA +92385 : 34.839964 : -115.967051 : Skyforest, CA +92386 : 34.244448 : -116.82962 : Sugarloaf, CA +92389 : 35.848556 : -116.22627 : Tecopa, CA +92391 : 34.839964 : -115.967051 : Twin Peaks, CA +92392 : 34.489466 : -117.35321 : Victorville, CA +92393 : 34.839964 : -115.967051 : Victorville, CA +92394 : 34.55965 : -117.35773 : Victorville, CA +92396 : 33.714421 : -117.069361 : Winchester, CA +92397 : 34.35876 : -117.62752 : Wrightwood, CA +92398 : 34.909491 : -116.84058 : Yermo, CA +92399 : 34.033564 : -117.03776 : Yucaipa, CA +92401 : 34.105079 : -117.29075 : San Bernardino, CA +92402 : 34.21392 : -117.127166 : San Bernardino, CA +92403 : 34.839964 : -115.967051 : San Bernardino, CA +92404 : 34.14856 : -117.26298 : San Bernardino, CA +92405 : 34.141659 : -117.29722 : San Bernardino, CA +92406 : 34.839964 : -115.967051 : San Bernardino, CA +92407 : 34.198189 : -117.35826 : San Bernardino, CA +92408 : 34.080662 : -117.27357 : San Bernardino, CA +92410 : 34.106965 : -117.2975 : San Bernardino, CA +92411 : 34.12051 : -117.3176 : San Bernardino, CA +92412 : 34.839964 : -115.967051 : San Bernardino, CA +92413 : 34.839964 : -115.967051 : San Bernardino, CA +92414 : 34.839964 : -115.967051 : San Bernardino, CA +92415 : 34.839964 : -115.967051 : San Bernardino, CA +92416 : 34.839964 : -115.967051 : San Bernardino, CA +92418 : 34.839964 : -115.967051 : San Bernardino, CA +92420 : 34.839964 : -115.967051 : San Bernardino, CA +92423 : 34.839964 : -115.967051 : San Bernardino, CA +92424 : 34.839964 : -115.967051 : San Bernardino, CA +92427 : 34.262243 : -116.861506 : San Bernardino, CA +92501 : 33.991181 : -117.37074 : Riverside, CA +92502 : 33.752886 : -116.055617 : Riverside, CA +92503 : 33.91355 : -117.46052 : Riverside, CA +92504 : 33.926315 : -117.40937 : Riverside, CA +92505 : 33.921765 : -117.48812 : Riverside, CA +92506 : 33.943615 : -117.37239 : Riverside, CA +92507 : 33.978965 : -117.33646 : Riverside, CA +92508 : 33.890313 : -117.32122 : Riverside, CA +92509 : 33.998751 : -117.44695 : Riverside, CA +92513 : 33.752886 : -116.055617 : Riverside, CA +92514 : 33.752886 : -116.055617 : Riverside, CA +92515 : 33.752886 : -116.055617 : Riverside, CA +92516 : 33.752886 : -116.055617 : Riverside, CA +92517 : 33.752886 : -116.055617 : Riverside, CA +92518 : 33.891084 : -117.2726 : March Air Force Base, CA +92519 : 33.752886 : -116.055617 : Riverside, CA +92521 : 33.752886 : -116.055617 : Riverside, CA +92522 : 33.752886 : -116.055617 : Riverside, CA +92530 : 33.675893 : -117.34946 : Lake Elsinore, CA +92531 : 33.752886 : -116.055617 : Lake Elsinore, CA +92532 : 33.696543 : -117.3247 : Lake Elsinore, CA +92536 : 33.485978 : -116.82004 : Aguanga, CA +92539 : 33.55055 : -116.67362 : Anza, CA +92543 : 33.73542 : -116.97401 : Hemet, CA +92544 : 33.708843 : -116.90948 : Hemet, CA +92545 : 33.736743 : -117.0217 : Hemet, CA +92546 : 33.752886 : -116.055617 : Hemet, CA +92548 : 33.749656 : -117.11706 : Homeland, CA +92549 : 33.750795 : -116.72562 : Idyllwild, CA +92551 : 33.889035 : -117.22046 : Moreno Valley, CA +92552 : 33.752886 : -116.055617 : Moreno Valley, CA +92553 : 33.923243 : -117.24211 : Moreno Valley, CA +92554 : 33.521993 : -115.915905 : Moreno Valley, CA +92555 : 33.922823 : -117.16837 : Moreno Valley, CA +92556 : 33.752886 : -116.055617 : Moreno Valley, CA +92557 : 33.957957 : -117.24833 : Moreno Valley, CA +92561 : 33.632049 : -116.55878 : Mountain Center, CA +92562 : 33.568617 : -117.25264 : Murrieta, CA +92563 : 33.571185 : -117.15362 : Murrieta, CA +92564 : 33.752886 : -116.055617 : Murrieta, CA +92567 : 33.819818 : -117.11778 : Nuevo, CA +92570 : 33.784051 : -117.29812 : Perris, CA +92571 : 33.822068 : -117.21514 : Perris, CA +92572 : 33.752886 : -116.055617 : Perris, CA +92581 : 33.752886 : -116.055617 : San Jacinto, CA +92582 : 33.796153 : -117.00046 : San Jacinto, CA +92583 : 33.788491 : -116.95125 : San Jacinto, CA +92584 : 33.66035 : -117.18987 : Menifee, CA +92585 : 33.742936 : -117.17432 : Sun City, CA +92586 : 33.70602 : -117.1974 : Sun City, CA +92587 : 33.692876 : -117.25038 : Sun City, CA +92589 : 33.752886 : -116.055617 : Temecula, CA +92590 : 33.479467 : -117.20933 : Temecula, CA +92591 : 33.52775 : -117.12056 : Temecula, CA +92592 : 33.495343 : -117.07657 : Temecula, CA +92593 : 33.752886 : -116.055617 : Temecula, CA +92595 : 33.614385 : -117.2608 : Wildomar, CA +92596 : 33.653216 : -117.07986 : Winchester, CA +92599 : 33.752886 : -116.055617 : Perris, CA +92602 : 33.73297 : -117.76932 : Irvine, CA +92603 : 33.648871 : -117.764637 : Irvine, CA +92604 : 33.68762 : -117.78852 : Irvine, CA +92605 : 33.640302 : -117.769442 : Huntington Beach, CA +92606 : 33.695576 : -117.80588 : Irvine, CA +92607 : 33.640302 : -117.769442 : Laguna Niguel, CA +92610 : 33.685479 : -117.6669 : Foothill Ranch, CA +92612 : 33.650813 : -117.81771 : Irvine, CA +92614 : 33.680408 : -117.82592 : Irvine, CA +92615 : 33.640302 : -117.769442 : Huntington Beach, CA +92616 : 33.640302 : -117.769442 : Irvine, CA +92618 : 33.659639 : -117.73948 : Irvine, CA +92619 : 33.66985 : -117.765939 : Irvine, CA +92620 : 33.714889 : -117.7633 : Irvine, CA +92623 : 33.686519 : -117.830788 : Irvine, CA +92624 : 33.460727 : -117.66467 : Capistrano Beach, CA +92625 : 33.600172 : -117.86823 : Corona Del Mar, CA +92626 : 33.677224 : -117.90863 : Costa Mesa, CA +92627 : 33.647028 : -117.91506 : Costa Mesa, CA +92628 : 33.640302 : -117.769442 : Costa Mesa, CA +92629 : 33.475302 : -117.70327 : Dana Point, CA +92630 : 33.640223 : -117.69108 : Lake Forest, CA +92635 : 33.573176 : -117.698173 : Laguna Hills, CA +92646 : 33.666269 : -117.9693 : Huntington Beach, CA +92647 : 33.725167 : -118.00509 : Huntington Beach, CA +92648 : 33.673468 : -118.00243 : Huntington Beach, CA +92649 : 33.720017 : -118.04614 : Huntington Beach, CA +92650 : 33.640302 : -117.769442 : East Irvine, CA +92651 : 33.535325 : -117.77192 : Laguna Beach, CA +92652 : 33.640302 : -117.769442 : Laguna Beach, CA +92653 : 33.602823 : -117.71295 : Laguna Hills, CA +92654 : 33.601673 : -117.716885 : Laguna Hills, CA +92655 : 33.745166 : -117.98569 : Midway City, CA +92656 : 33.581533 : -117.72474 : Aliso Viejo, CA +92657 : 33.610717 : -117.8325 : Newport Coast, CA +92658 : 33.640302 : -117.769442 : Newport Beach, CA +92659 : 33.611198 : -117.886731 : Newport Beach, CA +92660 : 33.634821 : -117.87453 : Newport Beach, CA +92661 : 33.601822 : -117.89966 : Newport Beach, CA +92662 : 33.606271 : -117.89243 : Newport Beach, CA +92663 : 33.619221 : -117.93087 : Newport Beach, CA +92670 : 33.870714 : -117.879342 : Placentia, CA +92672 : 33.427078 : -117.61401 : San Clemente, CA +92673 : 33.462927 : -117.62414 : San Clemente, CA +92674 : 33.438428 : -117.623131 : San Clemente, CA +92675 : 33.500843 : -117.65866 : San Juan Capistrano, CA +92676 : 33.743168 : -117.63563 : Silverado, CA +92677 : 33.531938 : -117.7025 : Laguna Niguel, CA +92678 : 33.673979 : -117.59457 : Trabuco Canyon, CA +92679 : 33.639227 : -117.58518 : Trabuco Canyon, CA +92680 : 33.792124 : -117.993561 : Garden Grove, CA +92683 : 33.751418 : -117.99392 : Westminster, CA +92684 : 33.640302 : -117.769442 : Westminster, CA +92685 : 33.640302 : -117.769442 : Westminster, CA +92688 : 33.639994 : -117.60351 : Rancho Santa Margarita, CA +92690 : 33.640302 : -117.769442 : Mission Viejo, CA +92691 : 33.611272 : -117.66681 : Mission Viejo, CA +92692 : 33.615462 : -117.64093 : Mission Viejo, CA +92693 : 33.555323 : -117.564 : San Juan Capistrano, CA +92694 : 33.570763 : -117.63463 : Ladera Ranch, CA +92697 : 33.640302 : -117.769442 : Irvine, CA +92698 : 33.640302 : -117.769442 : Aliso Viejo, CA +92701 : 33.747017 : -117.86248 : Santa Ana, CA +92702 : 33.640302 : -117.769442 : Santa Ana, CA +92703 : 33.747067 : -117.90433 : Santa Ana, CA +92704 : 33.724167 : -117.90623 : Santa Ana, CA +92705 : 33.762117 : -117.81828 : Santa Ana, CA +92706 : 33.765916 : -117.88139 : Santa Ana, CA +92707 : 33.719118 : -117.87143 : Santa Ana, CA +92708 : 33.708618 : -117.95629 : Fountain Valley, CA +92709 : 33.640302 : -117.769442 : Irvine, CA +92710 : 33.711552 : -117.809881 : Irvine, CA +92711 : 33.640302 : -117.769442 : Santa Ana, CA +92712 : 33.640302 : -117.769442 : Santa Ana, CA +92728 : 33.640302 : -117.769442 : Fountain Valley, CA +92735 : 33.640302 : -117.769442 : Santa Ana, CA +92780 : 33.741651 : -117.82127 : Tustin, CA +92781 : 33.640302 : -117.769442 : Tustin, CA +92782 : 33.739571 : -117.78618 : Tustin, CA +92799 : 33.640302 : -117.769442 : Santa Ana, CA +92801 : 33.844814 : -117.95381 : Anaheim, CA +92802 : 33.806965 : -117.92594 : Anaheim, CA +92803 : 33.640302 : -117.769442 : Anaheim, CA +92804 : 33.818165 : -117.97304 : Anaheim, CA +92805 : 33.835665 : -117.90807 : Anaheim, CA +92806 : 33.835465 : -117.87362 : Anaheim, CA +92807 : 33.850515 : -117.79113 : Anaheim, CA +92808 : 33.858151 : -117.73864 : Anaheim, CA +92811 : 33.640302 : -117.769442 : Atwood, CA +92812 : 33.640302 : -117.769442 : Anaheim, CA +92814 : 33.640302 : -117.769442 : Anaheim, CA +92815 : 33.640302 : -117.769442 : Anaheim, CA +92816 : 33.640302 : -117.769442 : Anaheim, CA +92817 : 33.640302 : -117.769442 : Anaheim, CA +92821 : 33.923463 : -117.89559 : Brea, CA +92822 : 33.640302 : -117.769442 : Brea, CA +92823 : 33.918965 : -117.83252 : Brea, CA +92825 : 33.640302 : -117.769442 : Anaheim, CA +92831 : 33.878981 : -117.89325 : Fullerton, CA +92832 : 33.869114 : -117.92985 : Fullerton, CA +92833 : 33.874314 : -117.9637 : Fullerton, CA +92834 : 33.640302 : -117.769442 : Fullerton, CA +92835 : 33.903164 : -117.91224 : Fullerton, CA +92836 : 33.640302 : -117.769442 : Fullerton, CA +92837 : 33.640302 : -117.769442 : Fullerton, CA +92838 : 33.640302 : -117.769442 : Fullerton, CA +92840 : 33.785166 : -117.93406 : Garden Grove, CA +92841 : 33.786915 : -117.98224 : Garden Grove, CA +92842 : 33.640302 : -117.769442 : Garden Grove, CA +92843 : 33.763033 : -117.9355 : Garden Grove, CA +92844 : 33.765516 : -117.9731 : Garden Grove, CA +92845 : 33.782916 : -118.02619 : Garden Grove, CA +92846 : 33.640302 : -117.769442 : Garden Grove, CA +92850 : 33.640302 : -117.769442 : Anaheim, CA +92856 : 33.640302 : -117.769442 : Orange, CA +92857 : 33.640302 : -117.769442 : Orange, CA +92859 : 33.640302 : -117.769442 : Orange, CA +92860 : 33.925885 : -117.55978 : Norco, CA +92861 : 33.812662 : -117.81623 : Villa Park, CA +92862 : 33.640302 : -117.769442 : Orange, CA +92863 : 33.640302 : -117.769442 : Orange, CA +92864 : 33.640302 : -117.769442 : Orange, CA +92865 : 33.8318 : -117.84739 : Orange, CA +92866 : 33.785091 : -117.84569 : Orange, CA +92867 : 33.811566 : -117.82919 : Orange, CA +92868 : 33.787266 : -117.87494 : Orange, CA +92869 : 33.792687 : -117.79975 : Orange, CA +92870 : 33.883314 : -117.85446 : Placentia, CA +92871 : 33.640302 : -117.769442 : Placentia, CA +92877 : 33.752886 : -116.055617 : Corona, CA +92878 : 33.752886 : -116.055617 : Corona, CA +92879 : 33.8808 : -117.54068 : Corona, CA +92880 : 33.903803 : -117.60221 : Corona, CA +92881 : 33.839516 : -117.53581 : Corona, CA +92882 : 33.866555 : -117.59167 : Corona, CA +92883 : 33.771548 : -117.47884 : Corona, CA +92885 : 33.640302 : -117.769442 : Yorba Linda, CA +92886 : 33.888062 : -117.80407 : Yorba Linda, CA +92887 : 33.883223 : -117.73856 : Yorba Linda, CA +92899 : 33.640302 : -117.769442 : Anaheim, CA +93001 : 34.311203 : -119.30164 : Ventura, CA +93002 : 34.032383 : -119.1343 : Ventura, CA +93003 : 34.268736 : -119.2249 : Ventura, CA +93004 : 34.278812 : -119.16784 : Ventura, CA +93005 : 34.032383 : -119.1343 : Ventura, CA +93006 : 34.032383 : -119.1343 : Ventura, CA +93007 : 34.032383 : -119.1343 : Ventura, CA +93009 : 34.356248 : -119.146228 : Ventura, CA +93010 : 34.231754 : -119.05258 : Camarillo, CA +93011 : 34.032383 : -119.1343 : Camarillo, CA +93012 : 34.218756 : -118.99213 : Camarillo, CA +93013 : 34.402194 : -119.52308 : Carpinteria, CA +93014 : 34.262834 : -119.848555 : Carpinteria, CA +93015 : 34.396646 : -118.90082 : Fillmore, CA +93016 : 34.032383 : -119.1343 : Fillmore, CA +93020 : 34.032383 : -119.1343 : Moorpark, CA +93021 : 34.292898 : -118.87134 : Moorpark, CA +93022 : 34.401466 : -119.30082 : Oak View, CA +93023 : 34.456957 : -119.25307 : Ojai, CA +93024 : 34.032383 : -119.1343 : Ojai, CA +93030 : 34.21707 : -119.1769 : Oxnard, CA +93031 : 34.032383 : -119.1343 : Oxnard, CA +93032 : 34.032383 : -119.1343 : Oxnard, CA +93033 : 34.166933 : -119.16113 : Oxnard, CA +93034 : 34.032383 : -119.1343 : Oxnard, CA +93035 : 34.179304 : -119.22189 : Oxnard, CA +93036 : 34.22942 : -119.178814 : Oxnard, CA +93040 : 34.424363 : -118.73908 : Piru, CA +93041 : 34.154072 : -119.18829 : Port Hueneme, CA +93042 : 34.113389 : -119.112432 : Point Mugu Nawc, CA +93043 : 34.162124 : -119.207364 : Port Hueneme Cbc Base, CA +93044 : 34.032383 : -119.1343 : Port Hueneme, CA +93060 : 34.367474 : -119.07317 : Santa Paula, CA +93061 : 34.032383 : -119.1343 : Santa Paula, CA +93062 : 34.032383 : -119.1343 : Simi Valley, CA +93063 : 34.279343 : -118.69607 : Simi Valley, CA +93064 : 34.258203 : -118.710724 : Brandeis, CA +93065 : 34.265003 : -118.77177 : Simi Valley, CA +93066 : 34.287679 : -119.02059 : Somis, CA +93067 : 34.421895 : -119.60084 : Summerland, CA +93093 : 34.032383 : -119.1343 : Simi Valley, CA +93094 : 34.032383 : -119.1343 : Simi Valley, CA +93099 : 34.032383 : -119.1343 : Simi Valley, CA +93101 : 34.420163 : -119.7065 : Santa Barbara, CA +93102 : 34.262834 : -119.848555 : Santa Barbara, CA +93103 : 34.428191 : -119.68412 : Santa Barbara, CA +93105 : 34.44005 : -119.75496 : Santa Barbara, CA +93106 : 34.432896 : -119.837072 : Santa Barbara, CA +93107 : 34.421795 : -119.863722 : Santa Barbara, CA +93108 : 34.433687 : -119.63184 : Santa Barbara, CA +93109 : 34.40323 : -119.72069 : Santa Barbara, CA +93110 : 34.439579 : -119.76788 : Santa Barbara, CA +93111 : 34.443529 : -119.80297 : Santa Barbara, CA +93116 : 34.262834 : -119.848555 : Goleta, CA +93117 : 34.443746 : -119.94215 : Goleta, CA +93118 : 34.262834 : -119.848555 : Goleta, CA +93120 : 34.262834 : -119.848555 : Santa Barbara, CA +93121 : 34.262834 : -119.848555 : Santa Barbara, CA +93130 : 34.262834 : -119.848555 : Santa Barbara, CA +93140 : 34.262834 : -119.848555 : Santa Barbara, CA +93150 : 34.262834 : -119.848555 : Santa Barbara, CA +93160 : 34.262834 : -119.848555 : Santa Barbara, CA +93190 : 34.262834 : -119.848555 : Santa Barbara, CA +93199 : 34.262834 : -119.848555 : Goleta, CA +93201 : 35.889586 : -119.49352 : Alpaugh, CA +93202 : 36.311439 : -119.70823 : Armona, CA +93203 : 35.161923 : -118.84655 : Arvin, CA +93204 : 35.930766 : -120.10057 : Avenal, CA +93205 : 35.576134 : -118.46745 : Bodfish, CA +93206 : 35.37825 : -119.41664 : Buttonwillow, CA +93207 : 35.87137 : -118.6821 : California Hot Springs, CA +93208 : 36.062748 : -118.60663 : Camp Nelson, CA +93210 : 36.194736 : -120.30865 : Coalinga, CA +93212 : 36.085342 : -119.5548 : Corcoran, CA +93215 : 35.774967 : -119.23371 : Delano, CA +93216 : 35.771876 : -119.26984 : Delano, CA +93217 : 35.89151 : -119.263225 : Earlimart, CA +93218 : 35.842485 : -119.01483 : Ducor, CA +93219 : 35.87368 : -119.26362 : Earlimart, CA +93220 : 35.357018 : -118.810069 : Edison, CA +93221 : 36.304696 : -119.11383 : Exeter, CA +93222 : 34.850984 : -119.16626 : Frazier Park, CA +93223 : 36.300574 : -119.20552 : Farmersville, CA +93224 : 35.202535 : -119.56093 : Fellows, CA +93225 : 34.815266 : -119.00404 : Frazier Park, CA +93226 : 35.727428 : -118.72424 : Glennville, CA +93227 : 36.357151 : -119.425371 : Goshen, CA +93230 : 36.327063 : -119.6451 : Hanford, CA +93231 : 36.138861 : -119.894727 : Hanford, CA +93232 : 36.138861 : -119.894727 : Hanford, CA +93234 : 36.209815 : -120.0847 : Huron, CA +93235 : 36.387879 : -119.21908 : Ivanhoe, CA +93237 : 36.472713 : -118.902899 : Kaweah, CA +93238 : 35.784367 : -118.43769 : Kernville, CA +93239 : 36.015318 : -120.00772 : Kettleman City, CA +93240 : 35.617148 : -118.45299 : Lake Isabella, CA +93241 : 35.256873 : -118.91325 : Lamont, CA +93242 : 36.43465 : -119.71753 : Laton, CA +93243 : 34.851405 : -118.87993 : Lebec, CA +93244 : 36.417743 : -119.00457 : Lemon Cove, CA +93245 : 36.312075 : -119.80349 : Lemoore, CA +93246 : 36.138861 : -119.894727 : Lemoore, CA +93247 : 36.201983 : -119.08589 : Lindsay, CA +93249 : 35.689717 : -119.91961 : Lost Hills, CA +93250 : 35.670747 : -119.21336 : McFarland, CA +93251 : 35.364749 : -119.70242 : McKittrick, CA +93252 : 35.040362 : -119.41514 : Maricopa, CA +93254 : 34.956385 : -119.74696 : New Cuyama, CA +93255 : 35.666835 : -118.01701 : Onyx, CA +93256 : 35.957119 : -119.31287 : Pixley, CA +93257 : 36.055121 : -119.01595 : Porterville, CA +93258 : 36.033126 : -119.007265 : Porterville, CA +93260 : 35.846291 : -118.63298 : Posey, CA +93261 : 35.801627 : -119.11699 : Richgrove, CA +93262 : 36.596251 : -118.73425 : Sequoia National Park, CA +93263 : 35.490517 : -119.26495 : Shafter, CA +93265 : 36.150892 : -118.76204 : Springville, CA +93266 : 36.177361 : -119.82042 : Stratford, CA +93267 : 36.141864 : -119.09411 : Strathmore, CA +93268 : 35.162776 : -119.4303 : Taft, CA +93270 : 35.94901 : -119.03742 : Terra Bella, CA +93271 : 36.431565 : -118.86296 : Three Rivers, CA +93272 : 36.059363 : -119.32025 : Tipton, CA +93274 : 36.201451 : -119.34994 : Tulare, CA +93275 : 36.26699 : -118.776902 : Tulare, CA +93276 : 35.305512 : -119.38925 : Tupman, CA +93277 : 36.311 : -119.32637 : Visalia, CA +93278 : 36.126621 : -118.819365 : Visalia, CA +93279 : 36.393615 : -119.118982 : Visalia, CA +93280 : 35.605045 : -119.37143 : Wasco, CA +93282 : 36.12763 : -119.52202 : Waukena, CA +93283 : 35.614134 : -118.27824 : Weldon, CA +93285 : 35.714118 : -118.48416 : Wofford Heights, CA +93286 : 36.431121 : -119.10642 : Woodlake, CA +93287 : 35.702936 : -118.8844 : Woody, CA +93291 : 36.351009 : -119.33655 : Visalia, CA +93292 : 36.358928 : -119.24027 : Visalia, CA +93301 : 35.381408 : -119.01935 : Bakersfield, CA +93302 : 35.294405 : -118.905173 : Bakersfield, CA +93303 : 35.294405 : -118.905173 : Bakersfield, CA +93304 : 35.344209 : -119.02225 : Bakersfield, CA +93305 : 35.387058 : -118.98647 : Bakersfield, CA +93306 : 35.396411 : -118.92268 : Bakersfield, CA +93307 : 35.324767 : -118.96329 : Bakersfield, CA +93308 : 35.487491 : -119.00896 : Bakersfield, CA +93309 : 35.340759 : -119.06497 : Bakersfield, CA +93311 : 35.200467 : -119.17399 : Bakersfield, CA +93312 : 35.39068 : -119.18583 : Bakersfield, CA +93313 : 35.19766 : -119.05698 : Bakersfield, CA +93325 : 34.819232 : -119.000391 : Lake of the Woods, CA +93380 : 35.294405 : -118.905173 : Bakersfield, CA +93381 : 35.294405 : -118.905173 : Bakersfield, CA +93382 : 35.294405 : -118.905173 : Bakersfield, CA +93383 : 35.294405 : -118.905173 : Bakersfield, CA +93384 : 35.294405 : -118.905173 : Bakersfield, CA +93385 : 35.294405 : -118.905173 : Bakersfield, CA +93386 : 35.294405 : -118.905173 : Bakersfield, CA +93387 : 35.294405 : -118.905173 : Bakersfield, CA +93388 : 35.294405 : -118.905173 : Bakersfield, CA +93389 : 35.294405 : -118.905173 : Bakersfield, CA +93390 : 35.294405 : -118.905173 : Bakersfield, CA +93401 : 35.262548 : -120.65196 : San Luis Obispo, CA +93402 : 35.313222 : -120.83468 : Los Osos, CA +93403 : 35.347065 : -120.455345 : San Luis Obispo, CA +93405 : 35.277189 : -120.70305 : San Luis Obispo, CA +93406 : 35.347065 : -120.455345 : San Luis Obispo, CA +93407 : 35.347065 : -120.455345 : San Luis Obispo, CA +93408 : 35.347065 : -120.455345 : San Luis Obispo, CA +93409 : 35.221085 : -120.636399 : San Luis Obispo, CA +93410 : 35.347065 : -120.455345 : San Luis Obispo, CA +93412 : 35.347065 : -120.455345 : Los Osos, CA +93420 : 35.119678 : -120.55116 : Arroyo Grande, CA +93421 : 35.347065 : -120.455345 : Arroyo Grande, CA +93422 : 35.474913 : -120.676 : Atascadero, CA +93423 : 35.428241 : -120.769493 : Atascadero, CA +93424 : 35.18554 : -120.72583 : Avila Beach, CA +93426 : 35.834919 : -120.98093 : Bradley, CA +93427 : 34.613014 : -120.2051 : Buellton, CA +93428 : 35.563246 : -121.07736 : Cambria, CA +93429 : 34.842293 : -120.5318 : Casmalia, CA +93430 : 35.459347 : -120.88947 : Cayucos, CA +93432 : 35.495242 : -120.48392 : Creston, CA +93433 : 35.120934 : -120.61952 : Grover Beach, CA +93434 : 34.958896 : -120.58014 : Guadalupe, CA +93435 : 35.508282 : -121.03551 : Harmony, CA +93436 : 34.639682 : -120.4471 : Lompoc, CA +93437 : 34.73489 : -120.53467 : Lompoc, CA +93438 : 34.262834 : -119.848555 : Lompoc, CA +93440 : 34.75465 : -120.27032 : Los Alamos, CA +93441 : 34.709973 : -120.09201 : Los Olivos, CA +93442 : 35.373047 : -120.83844 : Morro Bay, CA +93443 : 35.347065 : -120.455345 : Morro Bay, CA +93444 : 35.032408 : -120.49446 : Nipomo, CA +93445 : 35.097599 : -120.61327 : Oceano, CA +93446 : 35.640589 : -120.70418 : Paso Robles, CA +93447 : 35.664837 : -120.64542 : Paso Robles, CA +93448 : 35.347065 : -120.455345 : Pismo Beach, CA +93449 : 35.150886 : -120.65401 : Pismo Beach, CA +93450 : 35.964022 : -120.87339 : San Ardo, CA +93451 : 35.818054 : -120.63645 : San Miguel, CA +93452 : 35.664386 : -121.21965 : San Simeon, CA +93453 : 35.323098 : -120.08301 : Santa Margarita, CA +93454 : 34.900809 : -120.34876 : Santa Maria, CA +93455 : 34.87455 : -120.42806 : Santa Maria, CA +93456 : 35.027682 : -120.196818 : Santa Maria, CA +93457 : 34.836252 : -120.53421 : Santa Maria, CA +93458 : 34.956344 : -120.45243 : Santa Maria, CA +93460 : 34.626931 : -120.0661 : Santa Ynez, CA +93461 : 35.636185 : -120.27185 : Shandon, CA +93463 : 34.608938 : -120.13838 : Solvang, CA +93464 : 34.674436 : -120.111465 : Solvang, CA +93465 : 35.54464 : -120.72428 : Templeton, CA +93483 : 35.347065 : -120.455345 : Grover Beach, CA +93492 : 35.372861 : -120.859391 : Morro Bay, CA +93501 : 35.04535 : -118.16141 : Mojave, CA +93502 : 35.068161 : -118.224785 : Mojave, CA +93504 : 35.187133 : -117.885359 : California City, CA +93505 : 35.139327 : -117.91473 : California City, CA +93510 : 34.497245 : -118.18951 : Acton, CA +93512 : 37.583838 : -118.23615 : Benton, CA +93513 : 37.1363 : -118.27335 : Big Pine, CA +93514 : 37.282192 : -118.38717 : Bishop, CA +93515 : 36.626033 : -117.218616 : Bishop, CA +93516 : 35.030694 : -117.67264 : Boron, CA +93517 : 38.21053 : -119.31968 : Bridgeport, CA +93518 : 35.381552 : -118.54748 : Caliente, CA +93519 : 35.177369 : -118.035049 : Cantil, CA +93522 : 36.269728 : -117.59002 : Darwin, CA +93523 : 35.044352 : -117.8578 : Edwards, CA +93524 : 35.294405 : -118.905173 : Edwards, CA +93526 : 36.851729 : -118.20743 : Independence, CA +93527 : 35.734418 : -117.89313 : Inyokern, CA +93528 : 35.366197 : -117.63618 : Johannesburg, CA +93529 : 37.765218 : -119.07769 : June Lake, CA +93530 : 36.495772 : -117.88289 : Keeler, CA +93531 : 35.241311 : -118.59338 : Keene, CA +93532 : 34.676708 : -118.45592 : Lake Hughes, CA +93534 : 34.698696 : -118.15015 : Lancaster, CA +93535 : 34.691946 : -117.97756 : Lancaster, CA +93536 : 34.728857 : -118.32683 : Lancaster, CA +93539 : 33.786594 : -118.298662 : Lancaster, CA +93540 : 35.60345 : -118.476436 : Lake Isabella, CA +93541 : 37.973204 : -119.12029 : Lee Vining, CA +93542 : 36.626033 : -117.218616 : Little Lake, CA +93543 : 34.533321 : -117.94904 : Littlerock, CA +93544 : 34.493392 : -117.77444 : Llano, CA +93545 : 36.589514 : -118.07367 : Lone Pine, CA +93546 : 37.621587 : -118.86279 : Mammoth Lakes, CA +93549 : 36.228484 : -117.97084 : Olancha, CA +93550 : 34.56548 : -118.08549 : Palmdale, CA +93551 : 34.606146 : -118.18495 : Palmdale, CA +93552 : 34.561207 : -118.0375 : Palmdale, CA +93553 : 34.487552 : -117.89885 : Pearblossom, CA +93554 : 35.409108 : -117.69966 : Randsburg, CA +93555 : 35.599177 : -117.68065 : Ridgecrest, CA +93556 : 35.294405 : -118.905173 : Ridgecrest, CA +93558 : 34.839964 : -115.967051 : Red Mountain, CA +93560 : 34.88923 : -118.33629 : Rosamond, CA +93561 : 35.132673 : -118.50781 : Tehachapi, CA +93562 : 35.764433 : -117.38202 : Trona, CA +93563 : 34.394253 : -117.69475 : Valyermo, CA +93564 : 34.900151 : -118.246691 : Rosamond, CA +93581 : 35.294405 : -118.905173 : Tehachapi, CA +93584 : 33.786594 : -118.298662 : Lancaster, CA +93586 : 33.786594 : -118.298662 : Lancaster, CA +93590 : 33.786594 : -118.298662 : Palmdale, CA +93591 : 34.596742 : -117.84467 : Palmdale, CA +93592 : 34.839964 : -115.967051 : Trona, CA +93596 : 35.294405 : -118.905173 : Boron, CA +93599 : 33.786594 : -118.298662 : Palmdale, CA +93601 : 37.388698 : -119.72439 : Ahwahnee, CA +93602 : 37.077273 : -119.42982 : Auberry, CA +93603 : 36.678073 : -118.9601 : Badger, CA +93604 : 37.364625 : -119.51261 : Bass Lake, CA +93605 : 37.191503 : -119.26372 : Big Creek, CA +93606 : 36.802534 : -120.01902 : Biola, CA +93607 : 36.589797 : -119.899405 : Burrel, CA +93608 : 36.523482 : -120.38428 : Cantua Creek, CA +93609 : 36.534599 : -119.83592 : Caruthers, CA +93610 : 37.100417 : -120.27864 : Chowchilla, CA +93611 : 36.840057 : -119.66107 : Clovis, CA +93612 : 36.813456 : -119.70826 : Clovis, CA +93613 : 37.036529 : -119.511704 : Clovis, CA +93614 : 37.206505 : -119.7207 : Coarsegold, CA +93615 : 36.506019 : -119.2866 : Cutler, CA +93616 : 36.657266 : -119.59309 : Del Rey, CA +93618 : 36.538017 : -119.38887 : Dinuba, CA +93620 : 37.029613 : -120.64014 : Dos Palos, CA +93621 : 36.774951 : -119.13779 : Dunlap, CA +93622 : 36.800027 : -120.57996 : Firebaugh, CA +93623 : 37.463177 : -119.64498 : Fish Camp, CA +93624 : 36.40263 : -120.12855 : Five Points, CA +93625 : 36.6265 : -119.67526 : Fowler, CA +93626 : 37.024461 : -119.68496 : Friant, CA +93627 : 36.523726 : -120.10669 : Helm, CA +93628 : 36.780156 : -118.91524 : Hume, CA +93630 : 36.722616 : -120.10081 : Kerman, CA +93631 : 36.506063 : -119.54587 : Kingsburg, CA +93633 : 36.734051 : -118.958777 : Kings Canyon National Pk, CA +93634 : 37.237216 : -119.23304 : Lakeshore, CA +93635 : 37.048385 : -120.86983 : Los Banos, CA +93637 : 36.914819 : -120.15817 : Madera, CA +93638 : 36.991476 : -119.98729 : Madera, CA +93639 : 37.160622 : -119.945035 : Madera, CA +93640 : 36.701905 : -120.42801 : Mendota, CA +93641 : 36.697311 : -119.01864 : Miramonte, CA +93642 : 36.746375 : -119.639658 : Mono Hot Springs, CA +93643 : 37.232047 : -119.52006 : North Fork, CA +93644 : 37.405699 : -119.56754 : Oakhurst, CA +93645 : 37.146284 : -119.67379 : O Neals, CA +93646 : 36.623699 : -119.30892 : Orange Cove, CA +93647 : 36.565252 : -119.24273 : Orosi, CA +93648 : 36.61365 : -119.52873 : Parlier, CA +93649 : 36.841665 : -119.349639 : Piedra, CA +93650 : 36.841454 : -119.79832 : Fresno, CA +93651 : 37.004865 : -119.50748 : Prather, CA +93652 : 36.600348 : -119.90272 : Raisin, CA +93653 : 37.236305 : -119.92498 : Raymond, CA +93654 : 36.608675 : -119.43761 : Reedley, CA +93656 : 36.45185 : -119.93651 : Riverdale, CA +93657 : 36.72845 : -119.53571 : Sanger, CA +93660 : 36.600172 : -120.15338 : San Joaquin, CA +93661 : 37.186872 : -120.650351 : Santa Rita Park, CA +93662 : 36.566779 : -119.62201 : Selma, CA +93664 : 37.103957 : -119.2644 : Shaver Lake, CA +93665 : 36.961248 : -120.65439 : South Dos Palos, CA +93666 : 36.545749 : -119.33907 : Sultana, CA +93667 : 36.981035 : -119.38254 : Tollhouse, CA +93668 : 36.641742 : -120.28909 : Tranquillity, CA +93669 : 37.284459 : -119.53472 : Wishon, CA +93670 : 36.471833 : -119.259352 : Yettem, CA +93673 : 36.455501 : -119.48495 : Traver, CA +93675 : 36.713181 : -119.18327 : Squaw Valley, CA +93688 : 36.648474 : -120.248818 : Tranquillity, CA +93701 : 36.749444 : -119.78872 : Fresno, CA +93702 : 36.741199 : -119.7553 : Fresno, CA +93703 : 36.767299 : -119.765 : Fresno, CA +93704 : 36.794748 : -119.80097 : Fresno, CA +93705 : 36.786948 : -119.82747 : Fresno, CA +93706 : 36.691036 : -119.83321 : Fresno, CA +93707 : 36.746375 : -119.639658 : Fresno, CA +93708 : 36.746375 : -119.639658 : Fresno, CA +93709 : 36.746375 : -119.639658 : Fresno, CA +93710 : 36.825582 : -119.76358 : Fresno, CA +93711 : 36.831723 : -119.83198 : Fresno, CA +93712 : 36.746375 : -119.639658 : Fresno, CA +93714 : 36.746375 : -119.639658 : Fresno, CA +93715 : 36.746375 : -119.639658 : Fresno, CA +93716 : 36.746375 : -119.639658 : Fresno, CA +93717 : 36.746375 : -119.639658 : Fresno, CA +93718 : 36.746375 : -119.639658 : Fresno, CA +93720 : 36.865587 : -119.75917 : Fresno, CA +93721 : 36.733193 : -119.78473 : Fresno, CA +93722 : 36.801603 : -119.88878 : Fresno, CA +93724 : 36.746375 : -119.639658 : Fresno, CA +93725 : 36.658599 : -119.74097 : Fresno, CA +93726 : 36.795249 : -119.76293 : Fresno, CA +93727 : 36.753177 : -119.69703 : Fresno, CA +93728 : 36.758598 : -119.81022 : Fresno, CA +93729 : 36.746375 : -119.639658 : Fresno, CA +93740 : 36.746375 : -119.639658 : Fresno, CA +93741 : 36.746375 : -119.639658 : Fresno, CA +93744 : 36.746375 : -119.639658 : Fresno, CA +93745 : 36.746375 : -119.639658 : Fresno, CA +93747 : 36.746375 : -119.639658 : Fresno, CA +93750 : 36.746375 : -119.639658 : Fresno, CA +93755 : 36.746375 : -119.639658 : Fresno, CA +93759 : 36.746375 : -119.639658 : Fresno, CA +93760 : 36.746375 : -119.639658 : Fresno, CA +93761 : 36.746375 : -119.639658 : Fresno, CA +93762 : 36.746375 : -119.639658 : Fresno, CA +93764 : 36.746375 : -119.639658 : Fresno, CA +93765 : 36.746375 : -119.639658 : Fresno, CA +93771 : 36.746375 : -119.639658 : Fresno, CA +93772 : 36.746375 : -119.639658 : Fresno, CA +93773 : 36.746375 : -119.639658 : Fresno, CA +93774 : 36.746375 : -119.639658 : Fresno, CA +93775 : 36.746375 : -119.639658 : Fresno, CA +93776 : 36.746375 : -119.639658 : Fresno, CA +93777 : 36.746375 : -119.639658 : Fresno, CA +93778 : 36.746375 : -119.639658 : Fresno, CA +93779 : 36.746375 : -119.639658 : Fresno, CA +93780 : 36.746375 : -119.639658 : Fresno, CA +93782 : 36.746375 : -119.639658 : Fresno, CA +93784 : 36.746375 : -119.639658 : Fresno, CA +93786 : 36.746375 : -119.639658 : Fresno, CA +93790 : 36.746375 : -119.639658 : Fresno, CA +93791 : 36.746375 : -119.639658 : Fresno, CA +93792 : 36.746375 : -119.639658 : Fresno, CA +93793 : 36.746375 : -119.639658 : Fresno, CA +93794 : 36.746375 : -119.639658 : Fresno, CA +93825 : 35.717406 : -118.466755 : Wofford Heights, CA +93844 : 36.746375 : -119.639658 : Fresno, CA +93888 : 36.746375 : -119.639658 : Fresno, CA +93901 : 36.665879 : -121.65497 : Salinas, CA +93902 : 36.35433 : -121.132928 : Salinas, CA +93905 : 36.681161 : -121.61538 : Salinas, CA +93906 : 36.709717 : -121.63997 : Salinas, CA +93907 : 36.754058 : -121.66472 : Salinas, CA +93908 : 36.619954 : -121.65145 : Salinas, CA +93912 : 36.35433 : -121.132928 : Salinas, CA +93915 : 36.35433 : -121.132928 : Salinas, CA +93920 : 36.133401 : -121.63798 : Big Sur, CA +93921 : 36.555248 : -121.9212 : Carmel, CA +93922 : 36.543261 : -121.926315 : Carmel, CA +93923 : 36.517261 : -121.89436 : Carmel, CA +93924 : 36.447533 : -121.68611 : Carmel Valley, CA +93925 : 36.581329 : -121.46597 : Chualar, CA +93926 : 36.518179 : -121.42557 : Gonzales, CA +93927 : 36.300819 : -121.2904 : Greenfield, CA +93928 : 36.015388 : -121.24839 : Jolon, CA +93930 : 36.21106 : -121.05986 : King City, CA +93932 : 35.987276 : -121.04788 : Lockwood, CA +93933 : 36.678155 : -121.79724 : Marina, CA +93940 : 36.586193 : -121.88667 : Monterey, CA +93942 : 36.35433 : -121.132928 : Monterey, CA +93943 : 36.35433 : -121.132928 : Monterey, CA +93944 : 36.606225 : -121.908915 : Monterey, CA +93950 : 36.619065 : -121.92102 : Pacific Grove, CA +93953 : 36.59081 : -121.9461 : Pebble Beach, CA +93954 : 36.126393 : -120.91784 : San Lucas, CA +93955 : 36.615813 : -121.83461 : Seaside, CA +93960 : 36.41176 : -121.32617 : Soledad, CA +93962 : 36.624606 : -121.64655 : Spreckels, CA +94002 : 37.516687 : -122.29026 : Belmont, CA +94003 : 37.381144 : -122.334825 : Belmont, CA +94005 : 37.682882 : -122.40422 : Brisbane, CA +94010 : 37.574936 : -122.36332 : Burlingame, CA +94011 : 37.381144 : -122.334825 : Burlingame, CA +94012 : 37.381144 : -122.334825 : Burlingame, CA +94014 : 37.699182 : -122.45035 : Daly City, CA +94015 : 37.682583 : -122.48209 : Daly City, CA +94016 : 37.381144 : -122.334825 : Daly City, CA +94017 : 37.381144 : -122.334825 : Daly City, CA +94018 : 37.510085 : -122.473404 : El Granada, CA +94019 : 37.47584 : -122.44323 : Half Moon Bay, CA +94020 : 37.28842 : -122.22457 : La Honda, CA +94021 : 37.271753 : -122.27672 : Loma Mar, CA +94022 : 37.37714 : -122.12412 : Los Altos, CA +94023 : 37.189396 : -121.705327 : Los Altos, CA +94024 : 37.353741 : -122.08717 : Los Altos, CA +94025 : 37.451688 : -122.18385 : Menlo Park, CA +94026 : 37.381144 : -122.334825 : Menlo Park, CA +94027 : 37.458615 : -122.20009 : Atherton, CA +94028 : 37.374421 : -122.213 : Portola Valley, CA +94029 : 37.381144 : -122.334825 : Menlo Park, CA +94030 : 37.600735 : -122.40135 : Millbrae, CA +94031 : 37.381144 : -122.334825 : Millbrae, CA +94035 : 37.189396 : -121.705327 : Mountain View, CA +94037 : 37.539839 : -122.50819 : Montara, CA +94038 : 37.52489 : -122.50991 : Moss Beach, CA +94039 : 37.189396 : -121.705327 : Mountain View, CA +94040 : 37.380207 : -122.08787 : Mountain View, CA +94041 : 37.38949 : -122.07846 : Mountain View, CA +94042 : 37.189396 : -121.705327 : Mountain View, CA +94043 : 37.40679 : -122.07461 : Mountain View, CA +94044 : 37.613806 : -122.48229 : Pacifica, CA +94045 : 37.381144 : -122.334825 : Pacifica, CA +94059 : 37.381144 : -122.334825 : Redwood City, CA +94060 : 37.203092 : -122.33718 : Pescadero, CA +94061 : 37.463911 : -122.23396 : Redwood City, CA +94062 : 37.444879 : -122.26253 : Redwood City, CA +94063 : 37.483504 : -122.2144 : Redwood City, CA +94064 : 37.381144 : -122.334825 : Redwood City, CA +94065 : 37.533538 : -122.24602 : Redwood City, CA +94066 : 37.625908 : -122.42363 : San Bruno, CA +94067 : 37.381144 : -122.334825 : San Bruno, CA +94070 : 37.499175 : -122.26655 : San Carlos, CA +94071 : 37.381144 : -122.334825 : San Carlos, CA +94074 : 37.317278 : -122.36526 : San Gregorio, CA +94080 : 37.652857 : -122.4301 : South San Francisco, CA +94083 : 37.381144 : -122.334825 : South San Francisco, CA +94085 : 37.38894 : -122.017956 : Sunnyvale, CA +94086 : 37.378341 : -122.02398 : Sunnyvale, CA +94087 : 37.350091 : -122.03602 : Sunnyvale, CA +94088 : 37.189396 : -121.705327 : Sunnyvale, CA +94089 : 37.406289 : -122.00838 : Sunnyvale, CA +94090 : 37.189396 : -121.705327 : Sunnyvale, CA +94096 : 37.381144 : -122.334825 : San Bruno, CA +94098 : 37.381144 : -122.334825 : San Bruno, CA +94099 : 37.381144 : -122.334825 : South San Francisco, CA +94101 : 37.784827 : -122.727802 : San Francisco, CA +94102 : 37.779329 : -122.41915 : San Francisco, CA +94103 : 37.772329 : -122.41087 : San Francisco, CA +94104 : 37.791728 : -122.4019 : San Francisco, CA +94105 : 37.789228 : -122.3957 : San Francisco, CA +94106 : 37.784827 : -122.727802 : San Francisco, CA +94107 : 37.766529 : -122.39577 : San Francisco, CA +94108 : 37.792678 : -122.40793 : San Francisco, CA +94109 : 37.792778 : -122.42188 : San Francisco, CA +94110 : 37.74873 : -122.41545 : San Francisco, CA +94111 : 37.798228 : -122.40027 : San Francisco, CA +94112 : 37.720931 : -122.44241 : San Francisco, CA +94114 : 37.758434 : -122.43512 : San Francisco, CA +94115 : 37.786129 : -122.43736 : San Francisco, CA +94116 : 37.743381 : -122.48578 : San Francisco, CA +94117 : 37.770937 : -122.44276 : San Francisco, CA +94118 : 37.782029 : -122.46158 : San Francisco, CA +94119 : 37.784827 : -122.727802 : San Francisco, CA +94120 : 37.784827 : -122.727802 : San Francisco, CA +94121 : 37.778729 : -122.49265 : San Francisco, CA +94122 : 37.75838 : -122.48478 : San Francisco, CA +94123 : 37.801028 : -122.43836 : San Francisco, CA +94124 : 37.732797 : -122.39348 : San Francisco, CA +94125 : 37.784827 : -122.727802 : San Francisco, CA +94126 : 37.784827 : -122.727802 : San Francisco, CA +94127 : 37.734964 : -122.4597 : San Francisco, CA +94128 : 37.621964 : -122.39534 : San Francisco, CA +94129 : 37.79984 : -122.46167 : San Francisco, CA +94130 : 37.819423 : -122.36966 : San Francisco, CA +94131 : 37.741797 : -122.4378 : San Francisco, CA +94132 : 37.724231 : -122.47958 : San Francisco, CA +94133 : 37.801878 : -122.41018 : San Francisco, CA +94134 : 37.719581 : -122.41085 : San Francisco, CA +94135 : 37.784827 : -122.727802 : San Francisco, CA +94136 : 37.784827 : -122.727802 : San Francisco, CA +94137 : 37.784827 : -122.727802 : San Francisco, CA +94138 : 37.784827 : -122.727802 : San Francisco, CA +94139 : 37.784827 : -122.727802 : San Francisco, CA +94140 : 37.784827 : -122.727802 : San Francisco, CA +94141 : 37.784827 : -122.727802 : San Francisco, CA +94142 : 37.784827 : -122.727802 : San Francisco, CA +94143 : 37.76313 : -122.458582 : San Francisco, CA +94144 : 37.784827 : -122.727802 : San Francisco, CA +94145 : 37.784827 : -122.727802 : San Francisco, CA +94146 : 37.784827 : -122.727802 : San Francisco, CA +94147 : 37.784827 : -122.727802 : San Francisco, CA +94150 : 37.784827 : -122.727802 : San Francisco, CA +94151 : 37.784827 : -122.727802 : San Francisco, CA +94152 : 37.784827 : -122.727802 : San Francisco, CA +94153 : 37.784827 : -122.727802 : San Francisco, CA +94154 : 37.784827 : -122.727802 : San Francisco, CA +94155 : 37.784827 : -122.727802 : San Francisco, CA +94156 : 37.784827 : -122.727802 : San Francisco, CA +94157 : 37.784827 : -122.727802 : San Francisco, CA +94159 : 37.784827 : -122.727802 : San Francisco, CA +94160 : 37.784827 : -122.727802 : San Francisco, CA +94161 : 37.784827 : -122.727802 : San Francisco, CA +94162 : 37.784827 : -122.727802 : San Francisco, CA +94163 : 37.784827 : -122.727802 : San Francisco, CA +94164 : 37.784827 : -122.727802 : San Francisco, CA +94165 : 37.784827 : -122.727802 : San Francisco, CA +94166 : 37.784827 : -122.727802 : San Francisco, CA +94167 : 37.784827 : -122.727802 : San Francisco, CA +94168 : 37.784827 : -122.727802 : San Francisco, CA +94169 : 37.784827 : -122.727802 : San Francisco, CA +94170 : 37.784827 : -122.727802 : San Francisco, CA +94171 : 37.784827 : -122.727802 : San Francisco, CA +94172 : 37.784827 : -122.727802 : San Francisco, CA +94175 : 37.784827 : -122.727802 : San Francisco, CA +94177 : 37.784827 : -122.727802 : San Francisco, CA +94188 : 37.784827 : -122.727802 : San Francisco, CA +94203 : 38.380456 : -121.555406 : Sacramento, CA +94204 : 38.377411 : -121.444429 : Sacramento, CA +94205 : 38.377411 : -121.444429 : Sacramento, CA +94206 : 38.377411 : -121.444429 : Sacramento, CA +94207 : 38.377411 : -121.444429 : Sacramento, CA +94208 : 38.377411 : -121.444429 : Sacramento, CA +94209 : 38.377411 : -121.444429 : Sacramento, CA +94211 : 38.377411 : -121.444429 : Sacramento, CA +94229 : 38.377411 : -121.444429 : Sacramento, CA +94230 : 38.377411 : -121.444429 : Sacramento, CA +94232 : 38.377411 : -121.444429 : Sacramento, CA +94234 : 38.377411 : -121.444429 : Sacramento, CA +94235 : 38.377411 : -121.444429 : Sacramento, CA +94236 : 38.377411 : -121.444429 : Sacramento, CA +94237 : 38.377411 : -121.444429 : Sacramento, CA +94239 : 38.377411 : -121.444429 : Sacramento, CA +94240 : 38.377411 : -121.444429 : Sacramento, CA +94243 : 38.377411 : -121.444429 : Sacramento, CA +94244 : 38.377411 : -121.444429 : Sacramento, CA +94245 : 38.377411 : -121.444429 : Sacramento, CA +94246 : 38.377411 : -121.444429 : Sacramento, CA +94247 : 38.377411 : -121.444429 : Sacramento, CA +94248 : 38.377411 : -121.444429 : Sacramento, CA +94249 : 38.377411 : -121.444429 : Sacramento, CA +94250 : 38.377411 : -121.444429 : Sacramento, CA +94252 : 38.377411 : -121.444429 : Sacramento, CA +94253 : 38.377411 : -121.444429 : Sacramento, CA +94254 : 38.377411 : -121.444429 : Sacramento, CA +94256 : 38.377411 : -121.444429 : Sacramento, CA +94257 : 38.377411 : -121.444429 : Sacramento, CA +94258 : 38.377411 : -121.444429 : Sacramento, CA +94259 : 38.377411 : -121.444429 : Sacramento, CA +94261 : 38.377411 : -121.444429 : Sacramento, CA +94262 : 38.377411 : -121.444429 : Sacramento, CA +94263 : 38.377411 : -121.444429 : Sacramento, CA +94267 : 38.377411 : -121.444429 : Sacramento, CA +94268 : 38.377411 : -121.444429 : Sacramento, CA +94269 : 38.377411 : -121.444429 : Sacramento, CA +94271 : 38.377411 : -121.444429 : Sacramento, CA +94273 : 38.377411 : -121.444429 : Sacramento, CA +94274 : 38.377411 : -121.444429 : Sacramento, CA +94277 : 38.377411 : -121.444429 : Sacramento, CA +94278 : 38.377411 : -121.444429 : Sacramento, CA +94279 : 38.377411 : -121.444429 : Sacramento, CA +94280 : 38.377411 : -121.444429 : Sacramento, CA +94282 : 38.377411 : -121.444429 : Sacramento, CA +94283 : 38.377411 : -121.444429 : Sacramento, CA +94284 : 38.377411 : -121.444429 : Sacramento, CA +94285 : 38.377411 : -121.444429 : Sacramento, CA +94286 : 38.377411 : -121.444429 : Sacramento, CA +94287 : 38.377411 : -121.444429 : Sacramento, CA +94288 : 38.377411 : -121.444429 : Sacramento, CA +94289 : 38.377411 : -121.444429 : Sacramento, CA +94290 : 38.377411 : -121.444429 : Sacramento, CA +94291 : 38.377411 : -121.444429 : Sacramento, CA +94293 : 38.377411 : -121.444429 : Sacramento, CA +94294 : 38.377411 : -121.444429 : Sacramento, CA +94295 : 38.377411 : -121.444429 : Sacramento, CA +94296 : 38.377411 : -121.444429 : Sacramento, CA +94297 : 38.377411 : -121.444429 : Sacramento, CA +94298 : 38.377411 : -121.444429 : Sacramento, CA +94299 : 38.377411 : -121.444429 : Sacramento, CA +94301 : 37.443688 : -122.15071 : Palo Alto, CA +94302 : 37.189396 : -121.705327 : Palo Alto, CA +94303 : 37.449888 : -122.12749 : Palo Alto, CA +94304 : 37.397823 : -122.16605 : Palo Alto, CA +94305 : 37.427039 : -122.16496 : Stanford, CA +94306 : 37.419389 : -122.13273 : Palo Alto, CA +94307 : 37.381144 : -122.334825 : Palo Alto, CA +94308 : 37.381144 : -122.334825 : Palo Alto, CA +94309 : 37.189396 : -121.705327 : Palo Alto, CA +94310 : 37.189396 : -121.705327 : Palo Alto, CA +94401 : 37.570385 : -122.32044 : San Mateo, CA +94402 : 37.551586 : -122.32773 : San Mateo, CA +94403 : 37.539686 : -122.30266 : San Mateo, CA +94404 : 37.554335 : -122.27032 : San Mateo, CA +94405 : 37.381144 : -122.334825 : San Mateo, CA +94406 : 37.381144 : -122.334825 : San Mateo, CA +94407 : 37.381144 : -122.334825 : San Mateo, CA +94408 : 37.381144 : -122.334825 : San Mateo, CA +94409 : 37.381144 : -122.334825 : San Mateo, CA +94420 : 37.562385 : -122.251078 : Foster City, CA +94497 : 37.534736 : -122.32588 : San Mateo, CA +94501 : 37.769528 : -122.25937 : Alameda, CA +94502 : 37.734379 : -122.23952 : Alameda, CA +94503 : 38.170372 : -122.25605 : American Canyon, CA +94506 : 37.804064 : -121.91202 : Danville, CA +94507 : 37.856683 : -122.02488 : Alamo, CA +94508 : 38.568307 : -122.45084 : Angwin, CA +94509 : 37.991571 : -121.80207 : Antioch, CA +94510 : 38.071769 : -122.15517 : Benicia, CA +94511 : 38.040395 : -121.63852 : Bethel Island, CA +94512 : 38.159894 : -121.84195 : Birds Landing, CA +94513 : 37.932123 : -121.70381 : Brentwood, CA +94514 : 37.847704 : -121.60812 : Byron, CA +94515 : 38.597907 : -122.60952 : Calistoga, CA +94516 : 37.777208 : -121.955399 : Canyon, CA +94517 : 37.923523 : -121.91172 : Clayton, CA +94518 : 37.954122 : -122.02506 : Concord, CA +94519 : 37.984271 : -122.01437 : Concord, CA +94520 : 37.986321 : -122.03988 : Concord, CA +94521 : 37.957772 : -121.97709 : Concord, CA +94522 : 37.777208 : -121.955399 : Concord, CA +94523 : 37.951672 : -122.07317 : Pleasant Hill, CA +94524 : 37.777208 : -121.955399 : Concord, CA +94525 : 38.05282 : -122.2234 : Crockett, CA +94526 : 37.811676 : -121.98647 : Danville, CA +94527 : 37.953542 : -121.957778 : Concord, CA +94528 : 37.838744 : -121.96672 : Diablo, CA +94529 : 37.777208 : -121.955399 : Concord, CA +94530 : 37.917774 : -122.30426 : El Cerrito, CA +94531 : 37.920852 : -121.723919 : Antioch, CA +94533 : 38.269582 : -122.03701 : Fairfield, CA +94534 : 38.245844 : -122.101917 : Fairfield, CA +94535 : 38.277661 : -121.9192 : Travis AFB, CA +94536 : 37.562218 : -121.99433 : Fremont, CA +94537 : 37.680181 : -121.921498 : Fremont, CA +94538 : 37.527237 : -121.9679 : Fremont, CA +94539 : 37.515014 : -121.92916 : Fremont, CA +94540 : 37.680181 : -121.921498 : Hayward, CA +94541 : 37.674431 : -122.08883 : Hayward, CA +94542 : 37.657381 : -122.05076 : Hayward, CA +94543 : 37.680181 : -121.921498 : Hayward, CA +94544 : 37.633732 : -122.06101 : Hayward, CA +94545 : 37.635582 : -122.10418 : Hayward, CA +94546 : 37.702063 : -122.07934 : Castro Valley, CA +94547 : 38.005122 : -122.25784 : Hercules, CA +94548 : 37.972622 : -121.665205 : Knightsen, CA +94549 : 37.895695 : -122.11785 : Lafayette, CA +94550 : 37.65778 : -121.73011 : Livermore, CA +94551 : 37.680181 : -121.921498 : Livermore, CA +94552 : 37.69768 : -122.02503 : Castro Valley, CA +94553 : 37.998912 : -122.11501 : Martinez, CA +94555 : 37.571581 : -122.0509 : Fremont, CA +94556 : 37.839426 : -122.12426 : Moraga, CA +94557 : 37.680181 : -121.921498 : Hayward, CA +94558 : 38.337243 : -122.30027 : Napa, CA +94559 : 38.291164 : -122.28671 : Napa, CA +94560 : 37.535586 : -122.03362 : Newark, CA +94561 : 37.992124 : -121.71328 : Oakley, CA +94562 : 38.437887 : -122.399101 : Oakville, CA +94563 : 37.878625 : -122.18296 : Orinda, CA +94564 : 37.997509 : -122.29208 : Pinole, CA +94565 : 38.017917 : -121.90502 : Pittsburg, CA +94566 : 37.658898 : -121.87149 : Pleasanton, CA +94567 : 38.658204 : -122.40441 : Pope Valley, CA +94568 : 37.714179 : -121.92567 : Dublin, CA +94569 : 38.04337 : -122.18994 : Port Costa, CA +94570 : 37.777208 : -121.955399 : Moraga, CA +94571 : 38.156909 : -121.72075 : Rio Vista, CA +94572 : 38.031271 : -122.26213 : Rodeo, CA +94573 : 38.466508 : -122.414189 : Rutherford, CA +94574 : 38.511241 : -122.45695 : Saint Helena, CA +94575 : 37.777208 : -121.955399 : Moraga, CA +94576 : 38.553087 : -122.47725 : Deer Park, CA +94577 : 37.722279 : -122.15702 : San Leandro, CA +94578 : 37.703427 : -122.128 : San Leandro, CA +94579 : 37.68858 : -122.15421 : San Leandro, CA +94580 : 37.678531 : -122.13199 : San Lorenzo, CA +94581 : 38.509569 : -122.3539 : Napa, CA +94583 : 37.75735 : -121.95213 : San Ramon, CA +94585 : 38.231364 : -122.05414 : Suisun City, CA +94586 : 37.593883 : -121.88281 : Sunol, CA +94587 : 37.592184 : -122.04577 : Union City, CA +94588 : 37.68973 : -121.89244 : Pleasanton, CA +94589 : 38.152068 : -122.25074 : Vallejo, CA +94590 : 38.105219 : -122.24571 : Vallejo, CA +94591 : 38.099119 : -122.21035 : Vallejo, CA +94592 : 38.115015 : -122.29055 : Vallejo, CA +94595 : 37.879757 : -122.07143 : Walnut Creek, CA +94596 : 37.905924 : -122.05858 : Walnut Creek, CA +94597 : 37.777208 : -121.955399 : Walnut Creek, CA +94598 : 37.91878 : -122.02618 : Walnut Creek, CA +94599 : 38.403011 : -122.36228 : Yountville, CA +94601 : 37.776835 : -122.21792 : Oakland, CA +94602 : 37.799727 : -122.21211 : Oakland, CA +94603 : 37.738379 : -122.17332 : Oakland, CA +94604 : 37.680181 : -121.921498 : Oakland, CA +94605 : 37.763028 : -122.16305 : Oakland, CA +94606 : 37.793177 : -122.24352 : Oakland, CA +94607 : 37.806427 : -122.28898 : Oakland, CA +94608 : 37.834724 : -122.28316 : Emeryville, CA +94609 : 37.834926 : -122.264 : Oakland, CA +94610 : 37.812377 : -122.24199 : Oakland, CA +94611 : 37.827126 : -122.22289 : Oakland, CA +94612 : 37.809427 : -122.27172 : Oakland, CA +94613 : 37.781098 : -122.186573 : Oakland, CA +94614 : 37.727739 : -122.204573 : Oakland, CA +94615 : 37.806677 : -122.30038 : Oakland, CA +94617 : 37.807827 : -122.271652 : Oakland, CA +94618 : 37.843726 : -122.24369 : Oakland, CA +94619 : 37.790027 : -122.18615 : Oakland, CA +94620 : 37.680181 : -121.921498 : Piedmont, CA +94621 : 37.753978 : -122.18969 : Oakland, CA +94623 : 37.680181 : -121.921498 : Oakland, CA +94624 : 37.680181 : -121.921498 : Oakland, CA +94625 : 37.803927 : -122.319655 : Oakland, CA +94626 : 37.819314 : -122.303136 : Oakland, CA +94627 : 37.680181 : -121.921498 : Oakland, CA +94643 : 37.680181 : -121.921498 : Oakland, CA +94649 : 37.680181 : -121.921498 : Oakland, CA +94659 : 37.680181 : -121.921498 : Oakland, CA +94660 : 37.680181 : -121.921498 : Oakland, CA +94661 : 37.680181 : -121.921498 : Oakland, CA +94662 : 37.680181 : -121.921498 : Emeryville, CA +94666 : 37.680181 : -121.921498 : Oakland, CA +94701 : 37.860576 : -122.29673 : Berkeley, CA +94702 : 37.865026 : -122.2859 : Berkeley, CA +94703 : 37.862526 : -122.27582 : Berkeley, CA +94704 : 37.868575 : -122.25855 : Berkeley, CA +94705 : 37.856926 : -122.25084 : Berkeley, CA +94706 : 37.889125 : -122.29371 : Albany, CA +94707 : 37.894625 : -122.27917 : Berkeley, CA +94708 : 37.894625 : -122.26372 : Berkeley, CA +94709 : 37.879625 : -122.2668 : Berkeley, CA +94710 : 37.869976 : -122.2981 : Berkeley, CA +94712 : 37.680181 : -121.921498 : Berkeley, CA +94720 : 37.866825 : -122.253582 : Berkeley, CA +94801 : 37.941424 : -122.36628 : Richmond, CA +94802 : 37.777208 : -121.955399 : Richmond, CA +94803 : 37.969673 : -122.29413 : El Sobrante, CA +94804 : 37.926509 : -122.3408 : Richmond, CA +94805 : 37.941824 : -122.32553 : Richmond, CA +94806 : 37.972623 : -122.33873 : San Pablo, CA +94807 : 37.777208 : -121.955399 : Richmond, CA +94808 : 37.777208 : -121.955399 : Richmond, CA +94820 : 37.777208 : -121.955399 : El Sobrante, CA +94850 : 37.777208 : -121.955399 : Richmond, CA +94901 : 37.972423 : -122.51484 : San Rafael, CA +94903 : 38.019022 : -122.54589 : San Rafael, CA +94904 : 37.950069 : -122.54284 : Greenbrae, CA +94912 : 38.068036 : -122.740988 : San Rafael, CA +94913 : 38.068036 : -122.740988 : San Rafael, CA +94914 : 38.068036 : -122.740988 : Kentfield, CA +94915 : 38.07392 : -122.55944 : San Rafael, CA +94920 : 37.892476 : -122.47541 : Belvedere Tiburon, CA +94922 : 38.345572 : -122.96676 : Bodega, CA +94923 : 38.347701 : -123.05869 : Bodega Bay, CA +94924 : 37.907675 : -122.70201 : Bolinas, CA +94925 : 37.924242 : -122.516 : Corte Madera, CA +94926 : 38.463088 : -122.989975 : Cotati, CA +94927 : 38.463088 : -122.989975 : Rohnert Park, CA +94928 : 38.347174 : -122.69537 : Rohnert Park, CA +94929 : 38.246611 : -122.95916 : Dillon Beach, CA +94930 : 37.98779 : -122.59962 : Fairfax, CA +94931 : 38.328614 : -122.71044 : Cotati, CA +94933 : 38.012489 : -122.68886 : Forest Knolls, CA +94937 : 38.099205 : -122.87751 : Inverness, CA +94938 : 38.017617 : -122.6943 : Lagunitas, CA +94939 : 37.936151 : -122.5355 : Larkspur, CA +94940 : 38.180029 : -122.88357 : Marshall, CA +94941 : 37.898058 : -122.54134 : Mill Valley, CA +94942 : 38.068036 : -122.740988 : Mill Valley, CA +94945 : 38.117065 : -122.56316 : Novato, CA +94946 : 38.050454 : -122.67866 : Nicasio, CA +94947 : 38.098221 : -122.59809 : Novato, CA +94948 : 38.148858 : -122.573745 : Novato, CA +94949 : 38.06317 : -122.54111 : Novato, CA +94950 : 38.054433 : -122.77762 : Olema, CA +94951 : 38.314531 : -122.66097 : Penngrove, CA +94952 : 38.243734 : -122.69345 : Petaluma, CA +94953 : 38.463088 : -122.989975 : Petaluma, CA +94954 : 38.243299 : -122.6069 : Petaluma, CA +94955 : 38.463088 : -122.989975 : Petaluma, CA +94956 : 38.081566 : -122.81988 : Point Reyes Station, CA +94957 : 38.022322 : -122.561689 : Ross, CA +94960 : 37.981623 : -122.56884 : San Anselmo, CA +94963 : 38.012082 : -122.66389 : San Geronimo, CA +94964 : 37.943365 : -122.49029 : San Quentin, CA +94965 : 37.855527 : -122.49949 : Sausalito, CA +94966 : 38.068036 : -122.740988 : Sausalito, CA +94970 : 37.903396 : -122.65043 : Stinson Beach, CA +94971 : 38.245851 : -122.90644 : Tomales, CA +94972 : 38.335515 : -122.9392 : Valley Ford, CA +94973 : 38.007639 : -122.63914 : Woodacre, CA +94974 : 38.068036 : -122.740988 : San Quentin, CA +94975 : 38.463088 : -122.989975 : Petaluma, CA +94976 : 38.068036 : -122.740988 : Corte Madera, CA +94977 : 38.068036 : -122.740988 : Larkspur, CA +94978 : 38.068036 : -122.740988 : Fairfax, CA +94979 : 38.068036 : -122.740988 : San Anselmo, CA +94991 : 37.970726 : -122.524012 : San Rafael, CA +94998 : 38.117269 : -122.568442 : Novato, CA +94999 : 38.267466 : -122.658097 : Petaluma, CA +95001 : 37.05297 : -121.949418 : Aptos, CA +95002 : 37.427439 : -121.97521 : Alviso, CA +95003 : 36.979333 : -121.8944 : Aptos, CA +95004 : 36.885056 : -121.63082 : Aromas, CA +95005 : 37.084347 : -122.08524 : Ben Lomond, CA +95006 : 37.151813 : -122.13679 : Boulder Creek, CA +95007 : 37.10548 : -122.1047 : Brookdale, CA +95008 : 37.278843 : -121.95446 : Campbell, CA +95009 : 37.189396 : -121.705327 : Campbell, CA +95010 : 36.9761 : -121.95316 : Capitola, CA +95011 : 37.189396 : -121.705327 : Campbell, CA +95012 : 36.768856 : -121.75105 : Castroville, CA +95013 : 37.189396 : -121.705327 : Coyote, CA +95014 : 37.317909 : -122.04779 : Cupertino, CA +95015 : 37.189396 : -121.705327 : Cupertino, CA +95017 : 37.085986 : -122.22638 : Davenport, CA +95018 : 37.057708 : -122.05967 : Felton, CA +95019 : 36.935552 : -121.77972 : Freedom, CA +95020 : 37.016943 : -121.56581 : Gilroy, CA +95021 : 36.986148 : -121.497349 : Gilroy, CA +95022 : 37.32477 : -122.184276 : Palo Alto, CA +95023 : 36.862243 : -121.38006 : Hollister, CA +95024 : 36.85443 : -121.411909 : Hollister, CA +95026 : 37.189396 : -121.705327 : Holy City, CA +95030 : 37.228594 : -121.98396 : Los Gatos, CA +95031 : 37.189396 : -121.705327 : Los Gatos, CA +95032 : 37.241193 : -121.9534 : Los Gatos, CA +95033 : 37.160012 : -121.9881 : Los Gatos, CA +95035 : 37.436451 : -121.89438 : Milpitas, CA +95036 : 37.456807 : -121.913632 : Milpitas, CA +95037 : 37.137595 : -121.66211 : Morgan Hill, CA +95038 : 37.225787 : -121.617894 : Morgan Hill, CA +95039 : 36.812905 : -121.78299 : Moss Landing, CA +95041 : 37.050798 : -122.0569 : Mount Hermon, CA +95042 : 37.189396 : -121.705327 : New Almaden, CA +95043 : 36.504586 : -121.01515 : Paicines, CA +95044 : 37.189396 : -121.705327 : Redwood Estates, CA +95045 : 36.829052 : -121.52848 : San Juan Bautista, CA +95046 : 37.088746 : -121.60048 : San Martin, CA +95050 : 37.347791 : -121.95131 : Santa Clara, CA +95051 : 37.346241 : -121.9846 : Santa Clara, CA +95052 : 37.189396 : -121.705327 : Santa Clara, CA +95053 : 37.189396 : -121.705327 : Santa Clara, CA +95054 : 37.39324 : -121.96066 : Santa Clara, CA +95055 : 37.189396 : -121.705327 : Santa Clara, CA +95056 : 37.189396 : -121.705327 : Santa Clara, CA +95060 : 36.980556 : -122.04603 : Santa Cruz, CA +95061 : 37.007399 : -122.075125 : Santa Cruz, CA +95062 : 36.9707 : -121.99086 : Santa Cruz, CA +95063 : 36.9634 : -121.973771 : Santa Cruz, CA +95064 : 37.000199 : -122.06026 : Santa Cruz, CA +95065 : 37.010322 : -121.98523 : Santa Cruz, CA +95066 : 37.057575 : -122.01507 : Scotts Valley, CA +95067 : 37.05297 : -121.949418 : Scotts Valley, CA +95070 : 37.270543 : -122.02305 : Saratoga, CA +95071 : 37.189396 : -121.705327 : Saratoga, CA +95073 : 37.007916 : -121.95072 : Soquel, CA +95075 : 36.761702 : -121.274795 : Tres Pinos, CA +95076 : 36.922902 : -121.77224 : Watsonville, CA +95077 : 37.05297 : -121.949418 : Watsonville, CA +95101 : 37.189396 : -121.705327 : San Jose, CA +95102 : 37.189396 : -121.705327 : San Jose, CA +95103 : 37.189396 : -121.705327 : San Jose, CA +95106 : 37.189396 : -121.705327 : San Jose, CA +95108 : 37.189396 : -121.705327 : San Jose, CA +95109 : 37.189396 : -121.705327 : San Jose, CA +95110 : 37.335545 : -121.89877 : San Jose, CA +95111 : 37.284042 : -121.82664 : San Jose, CA +95112 : 37.348541 : -121.88627 : San Jose, CA +95113 : 37.333941 : -121.89154 : San Jose, CA +95114 : 37.189396 : -121.705327 : San Jose, CA +95115 : 37.189396 : -121.705327 : San Jose, CA +95116 : 37.34964 : -121.8544 : San Jose, CA +95117 : 37.311042 : -121.96162 : San Jose, CA +95118 : 37.257643 : -121.89072 : San Jose, CA +95119 : 37.232244 : -121.79092 : San Jose, CA +95120 : 37.213624 : -121.85671 : San Jose, CA +95121 : 37.305714 : -121.81145 : San Jose, CA +95122 : 37.329641 : -121.83359 : San Jose, CA +95123 : 37.244426 : -121.83246 : San Jose, CA +95124 : 37.256743 : -121.92312 : San Jose, CA +95125 : 37.295092 : -121.89649 : San Jose, CA +95126 : 37.326341 : -121.9178 : San Jose, CA +95127 : 37.369473 : -121.82077 : San Jose, CA +95128 : 37.316983 : -121.93555 : San Jose, CA +95129 : 37.307742 : -121.99976 : San Jose, CA +95130 : 37.289642 : -121.98311 : San Jose, CA +95131 : 37.38631 : -121.88987 : San Jose, CA +95132 : 37.405989 : -121.84775 : San Jose, CA +95133 : 37.37354 : -121.85784 : San Jose, CA +95134 : 37.412539 : -121.94461 : San Jose, CA +95135 : 37.299474 : -121.75446 : San Jose, CA +95136 : 37.269343 : -121.84939 : San Jose, CA +95137 : 37.189396 : -121.705327 : San Jose, CA +95138 : 37.255915 : -121.77536 : San Jose, CA +95139 : 37.226194 : -121.76514 : San Jose, CA +95140 : 37.388718 : -121.63845 : Mount Hamilton, CA +95141 : 37.178745 : -121.741809 : San Jose, CA +95142 : 37.189396 : -121.705327 : San Jose, CA +95148 : 37.330496 : -121.79141 : San Jose, CA +95150 : 37.189396 : -121.705327 : San Jose, CA +95151 : 37.187349 : -121.75722 : San Jose, CA +95152 : 37.189396 : -121.705327 : San Jose, CA +95153 : 37.216184 : -121.743632 : San Jose, CA +95154 : 37.189396 : -121.705327 : San Jose, CA +95155 : 37.189396 : -121.705327 : San Jose, CA +95156 : 37.189396 : -121.705327 : San Jose, CA +95157 : 37.189396 : -121.705327 : San Jose, CA +95158 : 37.189396 : -121.705327 : San Jose, CA +95159 : 37.189396 : -121.705327 : San Jose, CA +95160 : 37.189396 : -121.705327 : San Jose, CA +95161 : 37.189396 : -121.705327 : San Jose, CA +95164 : 37.189396 : -121.705327 : San Jose, CA +95170 : 37.189396 : -121.705327 : San Jose, CA +95171 : 37.189396 : -121.705327 : San Jose, CA +95172 : 37.189396 : -121.705327 : San Jose, CA +95173 : 37.189396 : -121.705327 : San Jose, CA +95190 : 37.189396 : -121.705327 : San Jose, CA +95191 : 37.189396 : -121.705327 : San Jose, CA +95192 : 37.189396 : -121.705327 : San Jose, CA +95193 : 37.189396 : -121.705327 : San Jose, CA +95194 : 37.189396 : -121.705327 : San Jose, CA +95196 : 37.189396 : -121.705327 : San Jose, CA +95201 : 37.672196 : -121.298794 : Stockton, CA +95202 : 37.958723 : -121.28805 : Stockton, CA +95203 : 37.954823 : -121.30735 : Stockton, CA +95204 : 37.974273 : -121.3147 : Stockton, CA +95205 : 37.962873 : -121.26401 : Stockton, CA +95206 : 37.922024 : -121.3025 : Stockton, CA +95207 : 38.004172 : -121.3237 : Stockton, CA +95208 : 37.889849 : -121.253872 : Stockton, CA +95209 : 38.035499 : -121.34378 : Stockton, CA +95210 : 38.025086 : -121.29722 : Stockton, CA +95211 : 37.981073 : -121.308008 : Stockton, CA +95212 : 38.038906 : -121.24213 : Stockton, CA +95213 : 37.904777 : -121.226782 : Stockton, CA +95215 : 37.955474 : -121.19064 : Stockton, CA +95219 : 38.004922 : -121.40022 : Stockton, CA +95220 : 38.200193 : -121.23505 : Acampo, CA +95221 : 38.077 : -120.55401 : Altaville, CA +95222 : 38.087437 : -120.58072 : Angels Camp, CA +95223 : 38.282255 : -120.28875 : Arnold, CA +95224 : 38.208553 : -120.34876 : Avery, CA +95225 : 38.183288 : -120.89487 : Burson, CA +95226 : 38.229515 : -120.86341 : Campo Seco, CA +95227 : 38.205817 : -121.05361 : Clements, CA +95228 : 37.942532 : -120.65786 : Copperopolis, CA +95229 : 38.110355 : -120.45436 : Douglas Flat, CA +95230 : 37.959439 : -120.82329 : Farmington, CA +95231 : 37.882742 : -121.27978 : French Camp, CA +95232 : 38.356552 : -120.58318 : Glencoe, CA +95233 : 38.186102 : -120.36328 : Hathaway Pines, CA +95234 : 37.889849 : -121.253872 : Holt, CA +95236 : 38.018456 : -121.05675 : Linden, CA +95237 : 38.162818 : -121.14855 : Lockeford, CA +95240 : 38.12463 : -121.25039 : Lodi, CA +95241 : 37.889849 : -121.253872 : Lodi, CA +95242 : 38.132618 : -121.32282 : Lodi, CA +95245 : 38.300688 : -120.62632 : Mokelumne Hill, CA +95246 : 38.26127 : -120.50328 : Mountain Ranch, CA +95247 : 38.146124 : -120.45458 : Murphys, CA +95248 : 38.325626 : -120.485154 : Rail Road Flat, CA +95249 : 38.192823 : -120.64285 : San Andreas, CA +95250 : 38.256839 : -120.38102 : Sheep Ranch, CA +95251 : 38.075897 : -120.46544 : Vallecito, CA +95252 : 38.145601 : -120.85733 : Valley Springs, CA +95253 : 38.114669 : -121.203656 : Victor, CA +95254 : 38.192911 : -120.95775 : Wallace, CA +95255 : 38.421689 : -120.46947 : West Point, CA +95257 : 38.377741 : -120.45741 : Wilseyville, CA +95258 : 38.154118 : -121.306 : Woodbridge, CA +95267 : 37.889849 : -121.253872 : Stockton, CA +95269 : 37.889849 : -121.253872 : Stockton, CA +95290 : 37.953473 : -121.285257 : Stockton, CA +95296 : 37.889849 : -121.253872 : Lyoth, CA +95297 : 37.889849 : -121.253872 : Stockton, CA +95298 : 37.889849 : -121.253872 : Stockton, CA +95301 : 37.35115 : -120.6056 : Atwater, CA +95303 : 37.46994 : -120.67607 : Ballico, CA +95304 : 37.889849 : -121.253872 : Banta, CA +95305 : 37.824554 : -120.25764 : Big Oak Flat, CA +95306 : 37.432168 : -120.09682 : Catheys Valley, CA +95307 : 37.584282 : -120.95064 : Ceres, CA +95309 : 37.807938 : -120.440467 : Chinese Camp, CA +95310 : 38.060956 : -120.39216 : Columbia, CA +95311 : 37.74614 : -120.15123 : Coulterville, CA +95312 : 37.420143 : -120.66525 : Cressey, CA +95313 : 37.413659 : -121.05649 : Crows Landing, CA +95314 : 38.033541 : -119.92502 : Dardanelle, CA +95315 : 37.428227 : -120.77519 : Delhi, CA +95316 : 37.552329 : -120.78463 : Denair, CA +95317 : 37.127525 : -120.50574 : El Nido, CA +95318 : 37.673629 : -119.81305 : El Portal, CA +95319 : 37.637531 : -120.906593 : Empire, CA +95320 : 37.797806 : -121.00179 : Escalon, CA +95321 : 37.840248 : -120.04541 : Groveland, CA +95322 : 37.187494 : -121.03232 : Gustine, CA +95323 : 37.6194 : -120.7141 : Hickman, CA +95324 : 37.400932 : -120.87972 : Hilmar, CA +95325 : 37.46336 : -120.2561 : Hornitos, CA +95326 : 37.59471 : -120.86419 : Hughson, CA +95327 : 37.867243 : -120.49157 : Jamestown, CA +95328 : 37.5596 : -120.9141 : Keyes, CA +95329 : 37.694235 : -120.42421 : La Grange, CA +95330 : 37.816876 : -121.28541 : Lathrop, CA +95333 : 37.245423 : -120.27116 : Le Grand, CA +95334 : 37.38025 : -120.72614 : Livingston, CA +95335 : 38.119056 : -120.1014 : Long Barn, CA +95336 : 37.812815 : -121.21416 : Manteca, CA +95337 : 37.782332 : -121.23578 : Manteca, CA +95338 : 37.505484 : -119.92527 : Mariposa, CA +95340 : 37.294648 : -120.47474 : Merced, CA +95341 : 37.186872 : -120.650351 : Merced, CA +95342 : 37.367315 : -120.570634 : Atwater, CA +95343 : 37.186872 : -120.650351 : Merced, CA +95344 : 37.378234 : -120.617808 : Merced, CA +95345 : 37.576262 : -119.94865 : Midpines, CA +95346 : 38.079632 : -120.16872 : Mi Wuk Village, CA +95347 : 37.805371 : -120.375945 : Moccasin, CA +95348 : 37.342056 : -120.50154 : Merced, CA +95350 : 37.671778 : -121.01249 : Modesto, CA +95351 : 37.626067 : -120.99955 : Modesto, CA +95352 : 37.60396 : -120.937052 : Modesto, CA +95353 : 37.60396 : -120.937052 : Modesto, CA +95354 : 37.644481 : -120.98043 : Modesto, CA +95355 : 37.673513 : -120.95566 : Modesto, CA +95356 : 37.704138 : -121.02187 : Modesto, CA +95357 : 37.667196 : -120.9061 : Modesto, CA +95358 : 37.622898 : -121.05181 : Modesto, CA +95360 : 37.312014 : -121.0314 : Newman, CA +95361 : 37.776528 : -120.84756 : Oakdale, CA +95363 : 37.477477 : -121.14555 : Patterson, CA +95364 : 38.275328 : -119.89619 : Pinecrest, CA +95365 : 37.297403 : -120.32285 : Planada, CA +95366 : 37.742895 : -121.12546 : Ripon, CA +95367 : 37.731272 : -120.94365 : Riverbank, CA +95368 : 37.708727 : -121.08928 : Salida, CA +95369 : 37.521832 : -120.46555 : Snelling, CA +95370 : 37.995238 : -120.3437 : Sonora, CA +95372 : 37.991855 : -120.25829 : Soulsbyville, CA +95373 : 37.986377 : -120.241412 : Standard, CA +95374 : 37.322619 : -120.88299 : Stevinson, CA +95375 : 38.184096 : -120.021342 : Strawberry, CA +95376 : 37.728417 : -121.42399 : Tracy, CA +95377 : 37.72374 : -121.447131 : Tracy, CA +95378 : 37.889849 : -121.253872 : Tracy, CA +95379 : 37.957978 : -120.2297 : Tuolumne, CA +95380 : 37.48858 : -120.85196 : Turlock, CA +95381 : 37.60396 : -120.937052 : Turlock, CA +95382 : 37.523901 : -120.8516 : Turlock, CA +95383 : 38.055888 : -120.23002 : Twain Harte, CA +95385 : 37.609781 : -121.26784 : Vernalis, CA +95386 : 37.645632 : -120.73812 : Waterford, CA +95387 : 37.539768 : -121.24702 : Westley, CA +95388 : 37.400193 : -120.61094 : Winton, CA +95389 : 37.699662 : -119.67529 : Yosemite National Park, CA +95390 : 37.60396 : -120.937052 : Riverbank, CA +95397 : 37.60396 : -120.937052 : Modesto, CA +95401 : 38.440111 : -122.74563 : Santa Rosa, CA +95402 : 38.440061 : -122.710598 : Santa Rosa, CA +95403 : 38.480494 : -122.74976 : Santa Rosa, CA +95404 : 38.457611 : -122.69317 : Santa Rosa, CA +95405 : 38.438161 : -122.67419 : Santa Rosa, CA +95406 : 38.459575 : -122.715654 : Santa Rosa, CA +95407 : 38.404991 : -122.7275 : Santa Rosa, CA +95408 : 38.463088 : -122.989975 : Santa Rosa, CA +95409 : 38.460594 : -122.6422 : Santa Rosa, CA +95410 : 39.216157 : -123.71376 : Albion, CA +95412 : 38.717819 : -123.32757 : Annapolis, CA +95415 : 39.026811 : -123.38621 : Boonville, CA +95416 : 38.463088 : -122.989975 : Boyes Hot Springs, CA +95417 : 39.670239 : -123.64423 : Branscomb, CA +95418 : 39.213324 : -123.277143 : Calpella, CA +95419 : 38.424554 : -122.96067 : Camp Meeker, CA +95420 : 39.365356 : -123.80469 : Caspar, CA +95421 : 38.562843 : -123.16785 : Cazadero, CA +95422 : 38.956206 : -122.63523 : Clearlake, CA +95423 : 39.037173 : -122.65445 : Clearlake Oaks, CA +95424 : 38.971518 : -122.66423 : Clearlake Park, CA +95425 : 38.795668 : -122.997 : Cloverdale, CA +95426 : 38.835146 : -122.72234 : Cobb, CA +95427 : 39.240872 : -123.54765 : Comptche, CA +95428 : 39.825781 : -123.23026 : Covelo, CA +95429 : 39.761199 : -123.33547 : Dos Rios, CA +95430 : 38.449265 : -123.05495 : Duncans Mills, CA +95431 : 38.347913 : -122.51753 : Eldridge, CA +95432 : 39.103897 : -123.64617 : Elk, CA +95433 : 38.313864 : -122.513093 : El Verano, CA +95435 : 39.00686 : -122.859625 : Finley, CA +95436 : 38.495857 : -122.90636 : Forestville, CA +95437 : 39.43695 : -123.76087 : Fort Bragg, CA +95439 : 38.494643 : -122.77226 : Fulton, CA +95441 : 38.710228 : -122.95704 : Geyserville, CA +95442 : 38.367948 : -122.52468 : Glen Ellen, CA +95443 : 39.03276 : -122.74082 : Glenhaven, CA +95444 : 38.434663 : -122.8689 : Graton, CA +95445 : 38.813417 : -123.55762 : Gualala, CA +95446 : 38.509737 : -123.00084 : Guerneville, CA +95448 : 38.614088 : -122.87626 : Healdsburg, CA +95449 : 38.955142 : -123.08125 : Hopland, CA +95450 : 38.506229 : -123.22938 : Jenner, CA +95451 : 38.939725 : -122.78548 : Kelseyville, CA +95452 : 38.414061 : -122.54668 : Kenwood, CA +95453 : 39.051698 : -122.92071 : Lakeport, CA +95454 : 39.745588 : -123.5223 : Laytonville, CA +95456 : 39.268774 : -123.75568 : Littleriver, CA +95457 : 38.911393 : -122.599 : Lower Lake, CA +95458 : 39.090421 : -122.78972 : Lucerne, CA +95459 : 38.996389 : -123.66468 : Manchester, CA +95460 : 39.311858 : -123.79166 : Mendocino, CA +95461 : 38.791139 : -122.61069 : Middletown, CA +95462 : 38.471368 : -123.01469 : Monte Rio, CA +95463 : 39.173321 : -123.55081 : Navarro, CA +95464 : 39.12558 : -122.84653 : Nice, CA +95465 : 38.409993 : -122.98347 : Occidental, CA +95466 : 39.089273 : -123.50186 : Philo, CA +95468 : 38.898385 : -123.65746 : Point Arena, CA +95469 : 39.383027 : -123.07856 : Potter Valley, CA +95470 : 39.285782 : -123.22064 : Redwood Valley, CA +95471 : 38.522499 : -122.97967 : Rio Nido, CA +95472 : 38.393314 : -122.83666 : Sebastopol, CA +95473 : 38.325851 : -122.505846 : Sebastopol, CA +95476 : 38.277147 : -122.47058 : Sonoma, CA +95480 : 38.654705 : -123.3999 : Stewarts Point, CA +95481 : 39.131856 : -123.16221 : Talmage, CA +95482 : 39.154946 : -123.20088 : Ukiah, CA +95485 : 39.172397 : -122.90474 : Upper Lake, CA +95486 : 38.464487 : -123.037996 : Villa Grande, CA +95487 : 38.463088 : -122.989975 : Vineburg, CA +95488 : 39.727052 : -123.79238 : Westport, CA +95490 : 39.451662 : -123.37285 : Willits, CA +95492 : 38.54486 : -122.80785 : Windsor, CA +95493 : 39.19607 : -122.96649 : Witter Springs, CA +95494 : 38.916201 : -123.26509 : Yorkville, CA +95497 : 38.725628 : -123.47625 : The Sea Ranch, CA +95501 : 40.793739 : -124.16102 : Eureka, CA +95502 : 40.814595 : -124.08052 : Eureka, CA +95503 : 40.757091 : -124.1513 : Eureka, CA +95511 : 40.169518 : -123.60216 : Alderpoint, CA +95514 : 40.325767 : -123.69266 : Blocksburg, CA +95517 : 38.692808 : -120.818771 : Diamond Springs, CA +95518 : 40.881383 : -123.984232 : Arcata, CA +95519 : 40.963482 : -124.07286 : Mckinleyville, CA +95521 : 40.867469 : -124.07519 : Arcata, CA +95522 : 40.878317 : -124.075673 : Arcata, CA +95524 : 40.822884 : -124.06711 : Bayside, CA +95525 : 40.907437 : -123.88348 : Blue Lake, CA +95526 : 40.413386 : -123.53267 : Bridgeville, CA +95527 : 40.877334 : -123.45661 : Burnt Ranch, CA +95528 : 40.489925 : -123.97132 : Carlotta, CA +95531 : 41.782681 : -124.16703 : Crescent City, CA +95532 : 41.852985 : -124.15721 : Crescent City, CA +95534 : 40.733552 : -123.944021 : Cutten, CA +95536 : 40.561448 : -124.25781 : Ferndale, CA +95537 : 40.725444 : -124.21697 : Fields Landing, CA +95538 : 41.892473 : -124.145734 : Fort Dick, CA +95540 : 40.583488 : -124.14367 : Fortuna, CA +95542 : 40.0985 : -123.80654 : Garberville, CA +95543 : 41.888557 : -123.80079 : Gasquet, CA +95545 : 40.281369 : -124.08998 : Honeydew, CA +95546 : 41.161505 : -123.72444 : Hoopa, CA +95547 : 40.546202 : -124.08412 : Hydesville, CA +95548 : 41.51823 : -124.03075 : Klamath, CA +95549 : 40.691578 : -123.87189 : Kneeland, CA +95550 : 40.766645 : -123.83488 : Korbel, CA +95551 : 40.659753 : -124.22153 : Loleta, CA +95552 : 40.390478 : -123.41309 : Mad River, CA +95553 : 40.210793 : -123.86447 : Miranda, CA +95554 : 40.2959 : -123.77902 : Myers Flat, CA +95555 : 41.296122 : -124.05351 : Orick, CA +95556 : 41.300573 : -123.54411 : Orleans, CA +95558 : 40.272963 : -124.21494 : Petrolia, CA +95559 : 40.196116 : -123.77315 : Phillipsville, CA +95560 : 40.131417 : -123.85855 : Redway, CA +95562 : 40.494813 : -124.11637 : Rio Dell, CA +95563 : 40.89197 : -123.56149 : Salyer, CA +95564 : 40.79348 : -124.19929 : Samoa, CA +95565 : 40.459978 : -124.06059 : Scotia, CA +95567 : 41.949739 : -124.15098 : Smith River, CA +95568 : 41.455226 : -123.47671 : Somes Bar, CA +95569 : 40.35983 : -123.87105 : Redcrest, CA +95570 : 41.081726 : -124.13112 : Trinidad, CA +95571 : 40.322683 : -123.92367 : Weott, CA +95573 : 40.945039 : -123.65806 : Willow Creek, CA +95585 : 39.860285 : -123.71685 : Leggett, CA +95587 : 39.96266 : -123.74471 : Piercy, CA +95589 : 40.033316 : -124.02379 : Whitethorn, CA +95592 : 38.098737 : -122.271251 : Vallejo, CA +95595 : 40.202464 : -123.46646 : Zenia, CA +95601 : 38.426602 : -120.8275 : Amador City, CA +95602 : 38.976837 : -121.09142 : Auburn, CA +95603 : 38.909605 : -121.07971 : Auburn, CA +95604 : 39.106287 : -120.536032 : Auburn, CA +95605 : 38.592155 : -121.52805 : West Sacramento, CA +95606 : 38.857328 : -122.21486 : Brooks, CA +95607 : 38.706727 : -122.125 : Capay, CA +95608 : 38.628371 : -121.32702 : Carmichael, CA +95609 : 38.650335 : -121.327214 : Carmichael, CA +95610 : 38.696912 : -121.27125 : Citrus Heights, CA +95611 : 38.377411 : -121.444429 : Citrus Heights, CA +95612 : 38.383366 : -121.57819 : Clarksburg, CA +95613 : 38.79829 : -120.88578 : Coloma, CA +95614 : 38.880294 : -120.97426 : Cool, CA +95615 : 38.333568 : -121.54853 : Courtland, CA +95616 : 38.549256 : -121.73655 : Davis, CA +95617 : 38.619545 : -121.961532 : Davis, CA +95618 : 38.546306 : -121.68682 : El Macero, CA +95619 : 38.689067 : -120.82071 : Diamond Springs, CA +95620 : 38.427208 : -121.81348 : Dixon, CA +95621 : 38.695252 : -121.3081 : Citrus Heights, CA +95623 : 38.639643 : -120.84556 : El Dorado, CA +95624 : 38.421068 : -121.36059 : Elk Grove, CA +95625 : 38.35011 : -121.90799 : Elmira, CA +95626 : 38.727451 : -121.45433 : Elverta, CA +95627 : 38.744062 : -121.99929 : Esparto, CA +95628 : 38.654803 : -121.26529 : Fair Oaks, CA +95629 : 38.527556 : -120.69292 : Fiddletown, CA +95630 : 38.672127 : -121.15783 : Folsom, CA +95631 : 39.033312 : -120.82172 : Foresthill, CA +95632 : 38.267544 : -121.29723 : Galt, CA +95633 : 38.839773 : -120.82881 : Garden Valley, CA +95634 : 38.930207 : -120.78557 : Georgetown, CA +95635 : 38.919588 : -120.90406 : Greenwood, CA +95636 : 38.634753 : -120.53353 : Grizzly Flats, CA +95637 : 38.830508 : -122.19944 : Guinda, CA +95638 : 38.317665 : -121.16166 : Herald, CA +95639 : 38.367276 : -121.51487 : Hood, CA +95640 : 38.346132 : -120.94516 : Ione, CA +95641 : 38.161756 : -121.60428 : Isleton, CA +95642 : 38.359772 : -120.75324 : Jackson, CA +95644 : 38.463282 : -120.550021 : Kit Carson, CA +95645 : 38.851198 : -121.73354 : Knights Landing, CA +95646 : 38.688329 : -120.05516 : Kirkwood, CA +95648 : 38.902873 : -121.29795 : Lincoln, CA +95650 : 38.817508 : -121.17225 : Loomis, CA +95651 : 38.817357 : -120.92213 : Lotus, CA +95652 : 38.666653 : -121.389613 : Mcclellan AFB, CA +95653 : 38.678663 : -121.96907 : Madison, CA +95654 : 38.463282 : -120.550021 : Martell, CA +95655 : 38.558073 : -121.28737 : Mather, CA +95656 : 38.54723 : -120.707891 : Mount Aukum, CA +95658 : 38.87672 : -121.14213 : Newcastle, CA +95659 : 38.868919 : -121.56398 : Nicolaus, CA +95660 : 38.676103 : -121.37656 : North Highlands, CA +95661 : 38.731976 : -121.2531 : Roseville, CA +95662 : 38.682803 : -121.2231 : Orangevale, CA +95663 : 38.859227 : -121.17565 : Penryn, CA +95664 : 38.811695 : -121.02427 : Pilot Hill, CA +95665 : 38.40097 : -120.64952 : Pine Grove, CA +95666 : 38.529753 : -120.41411 : Pioneer, CA +95667 : 38.724682 : -120.79533 : Placerville, CA +95668 : 38.8323 : -121.51661 : Pleasant Grove, CA +95669 : 38.480569 : -120.86895 : Plymouth, CA +95670 : 38.605355 : -121.28247 : Rancho Cordova, CA +95671 : 38.377411 : -121.444429 : Represa, CA +95672 : 38.71203 : -121.0023 : Rescue, CA +95673 : 38.688069 : -121.44874 : Rio Linda, CA +95674 : 38.961976 : -121.48166 : Rio Oso, CA +95675 : 38.545656 : -120.74287 : River Pines, CA +95676 : 38.909351 : -121.71843 : Robbins, CA +95677 : 38.789165 : -121.23825 : Rocklin, CA +95678 : 38.752434 : -121.28933 : Roseville, CA +95679 : 38.867147 : -122.224813 : Rumsey, CA +95680 : 38.232898 : -121.568427 : Ryde, CA +95681 : 38.997612 : -121.37967 : Sheridan, CA +95682 : 38.641158 : -120.97109 : Shingle Springs, CA +95683 : 38.492811 : -121.10036 : Sloughhouse, CA +95684 : 38.60766 : -120.5937 : Somerset, CA +95685 : 38.394464 : -120.79015 : Sutter Creek, CA +95686 : 38.228976 : -121.44032 : Thornton, CA +95687 : 38.34401 : -121.95333 : Vacaville, CA +95688 : 38.380528 : -121.99192 : Vacaville, CA +95689 : 38.473857 : -120.59421 : Volcano, CA +95690 : 38.240477 : -121.56507 : Walnut Grove, CA +95691 : 38.569193 : -121.54496 : West Sacramento, CA +95692 : 39.030716 : -121.43497 : Wheatland, CA +95693 : 38.382367 : -121.23708 : Wilton, CA +95694 : 38.537434 : -121.97757 : Winters, CA +95695 : 38.697238 : -121.80944 : Woodland, CA +95696 : 38.34896 : -121.908324 : Vacaville, CA +95697 : 38.751038 : -121.832156 : Yolo, CA +95698 : 38.782731 : -121.89811 : Zamora, CA +95699 : 38.437001 : -120.845706 : Drytown, CA +95701 : 39.217668 : -120.78346 : Alta, CA +95703 : 38.995732 : -120.99703 : Applegate, CA +95709 : 38.748112 : -120.67463 : Camino, CA +95712 : 39.167276 : -120.964275 : Chicago Park, CA +95713 : 39.092062 : -120.93471 : Colfax, CA +95714 : 39.204434 : -120.83816 : Dutch Flat, CA +95715 : 39.277658 : -120.7067 : Emigrant Gap, CA +95717 : 39.177026 : -120.8451 : Gold Run, CA +95720 : 38.771209 : -120.26765 : Kyburz, CA +95721 : 38.823996 : -120.05956 : Echo Lake, CA +95722 : 39.005098 : -121.01891 : Meadow Vista, CA +95724 : 39.26599 : -120.64145 : Norden, CA +95726 : 38.749713 : -120.53386 : Pollock Pines, CA +95728 : 39.311156 : -120.41039 : Soda Springs, CA +95735 : 38.805745 : -120.13213 : Twin Bridges, CA +95736 : 39.01004 : -120.97814 : Weimar, CA +95741 : 38.377411 : -121.444429 : Rancho Cordova, CA +95742 : 38.607756 : -121.18367 : Rancho Cordova, CA +95743 : 38.377411 : -121.444429 : Rancho Cordova, CA +95746 : 38.743811 : -121.19013 : Granite Bay, CA +95747 : 38.768829 : -121.33629 : Roseville, CA +95749 : 38.195804 : -120.679713 : San Andreas, CA +95758 : 38.406432 : -121.43673 : Elk Grove, CA +95759 : 38.377411 : -121.444429 : Elk Grove, CA +95762 : 38.684324 : -121.06879 : El Dorado Hills, CA +95763 : 38.377411 : -121.444429 : Folsom, CA +95765 : 38.817993 : -121.2631 : Rocklin, CA +95771 : 40.036998 : -121.831299 : Spring Garden, CA +95776 : 38.681254 : -121.74189 : Woodland, CA +95798 : 38.619545 : -121.961532 : West Sacramento, CA +95799 : 38.619545 : -121.961532 : West Sacramento, CA +95812 : 38.377411 : -121.444429 : Sacramento, CA +95813 : 38.377411 : -121.444429 : Sacramento, CA +95814 : 38.580255 : -121.49125 : Sacramento, CA +95815 : 38.611854 : -121.44553 : Sacramento, CA +95816 : 38.571661 : -121.46827 : Sacramento, CA +95817 : 38.551106 : -121.45996 : Sacramento, CA +95818 : 38.556576 : -121.49285 : Sacramento, CA +95819 : 38.568855 : -121.44099 : Sacramento, CA +95820 : 38.535795 : -121.44663 : Sacramento, CA +95821 : 38.623304 : -121.38181 : Sacramento, CA +95822 : 38.51394 : -121.49201 : Sacramento, CA +95823 : 38.477508 : -121.44561 : Sacramento, CA +95824 : 38.518356 : -121.44378 : Sacramento, CA +95825 : 38.594205 : -121.40726 : Sacramento, CA +95826 : 38.550098 : -121.37492 : Sacramento, CA +95827 : 38.566506 : -121.32515 : Sacramento, CA +95828 : 38.484747 : -121.4024 : Sacramento, CA +95829 : 38.476196 : -121.34715 : Sacramento, CA +95830 : 38.498156 : -121.2651 : Sacramento, CA +95831 : 38.494971 : -121.53059 : Sacramento, CA +95832 : 38.464667 : -121.49643 : Sacramento, CA +95833 : 38.616891 : -121.49623 : Sacramento, CA +95834 : 38.642805 : -121.50466 : Sacramento, CA +95835 : 38.664824 : -121.52061 : Sacramento, CA +95836 : 38.707236 : -121.54983 : Sacramento, CA +95837 : 38.700244 : -121.60207 : Sacramento, CA +95838 : 38.641223 : -121.4417 : Sacramento, CA +95840 : 38.377411 : -121.444429 : Sacramento, CA +95841 : 38.66152 : -121.34361 : Sacramento, CA +95842 : 38.687718 : -121.349 : Sacramento, CA +95843 : 38.716874 : -121.3698 : Antelope, CA +95851 : 38.377411 : -121.444429 : Sacramento, CA +95852 : 38.377411 : -121.444429 : Sacramento, CA +95853 : 38.377411 : -121.444429 : Sacramento, CA +95857 : 38.377411 : -121.444429 : Sacramento, CA +95860 : 38.377411 : -121.444429 : Sacramento, CA +95864 : 38.587805 : -121.37809 : Sacramento, CA +95865 : 38.377411 : -121.444429 : Sacramento, CA +95866 : 38.377411 : -121.444429 : Sacramento, CA +95867 : 38.377411 : -121.444429 : Sacramento, CA +95873 : 38.377411 : -121.444429 : Sacramento, CA +95887 : 38.377411 : -121.444429 : Sacramento, CA +95894 : 38.377411 : -121.444429 : Sacramento, CA +95899 : 38.377411 : -121.444429 : Sacramento, CA +95901 : 39.15973 : -121.53735 : Marysville, CA +95903 : 39.125997 : -121.36637 : Beale AFB, CA +95910 : 39.465229 : -120.84496 : Alleghany, CA +95912 : 38.97159 : -122.02725 : Arbuckle, CA +95913 : 39.633265 : -122.21009 : Artois, CA +95914 : 39.425854 : -121.35852 : Bangor, CA +95915 : 39.912222 : -120.834958 : Belden, CA +95916 : 39.661519 : -121.38193 : Berry Creek, CA +95917 : 39.413477 : -121.71162 : Biggs, CA +95918 : 39.282171 : -121.34733 : Browns Valley, CA +95919 : 39.453457 : -121.26543 : Brownsville, CA +95920 : 39.44223 : -121.95216 : Butte City, CA +95922 : 39.469943 : -121.07321 : Camptonville, CA +95923 : 40.187554 : -121.1152 : Canyondam, CA +95924 : 39.26599 : -120.64145 : Cedar Ridge, CA +95925 : 39.466279 : -121.20936 : Challenge, CA +95926 : 39.745973 : -121.84259 : Chico, CA +95927 : 39.805255 : -121.684124 : Chico, CA +95928 : 39.720955 : -121.81888 : Chico, CA +95929 : 39.731406 : -121.801215 : Chico, CA +95930 : 39.563522 : -121.13191 : Clipper Mills, CA +95931 : 39.169245 : -122.290204 : College City, CA +95932 : 39.254875 : -122.04572 : Colusa, CA +95934 : 40.074042 : -120.93973 : Crescent Mills, CA +95935 : 39.381883 : -121.21763 : Dobbins, CA +95936 : 39.567001 : -120.8384 : Downieville, CA +95937 : 38.931025 : -121.94518 : Dunnigan, CA +95938 : 39.624259 : -121.79152 : Durham, CA +95939 : 39.535446 : -122.57667 : Elk Creek, CA +95940 : 39.585648 : -121.259009 : Feather Falls, CA +95941 : 39.51642 : -121.26853 : Forbestown, CA +95942 : 40.044865 : -121.59415 : Forest Ranch, CA +95943 : 39.605289 : -122.03231 : Glenn, CA +95944 : 39.545514 : -120.88512 : Goodyears Bar, CA +95945 : 39.202725 : -121.02076 : Grass Valley, CA +95946 : 39.207828 : -121.20021 : Penn Valley, CA +95947 : 40.144573 : -120.88311 : Greenville, CA +95948 : 39.35217 : -121.71129 : Gridley, CA +95949 : 39.13255 : -121.0981 : Grass Valley, CA +95950 : 39.070128 : -121.8981 : Grimes, CA +95951 : 39.738889 : -122.01675 : Hamilton City, CA +95953 : 39.25209 : -121.69439 : Live Oak, CA +95954 : 39.888074 : -121.59048 : Magalia, CA +95955 : 39.283329 : -122.20206 : Maxwell, CA +95956 : 39.93935 : -121.06047 : Meadow Valley, CA +95957 : 39.070323 : -121.83065 : Meridian, CA +95958 : 39.556251 : -121.803777 : Nelson, CA +95959 : 39.299405 : -120.95144 : Nevada City, CA +95960 : 39.396152 : -121.08227 : North San Juan, CA +95961 : 39.089929 : -121.55053 : Olivehurst, CA +95962 : 39.355688 : -121.2548 : Oregon House, CA +95963 : 39.760968 : -122.218 : Orland, CA +95965 : 39.558586 : -121.58923 : Oroville, CA +95966 : 39.491076 : -121.49468 : Oroville, CA +95967 : 39.723898 : -121.572986 : Paradise, CA +95968 : 39.434644 : -121.55043 : Palermo, CA +95969 : 39.750422 : -121.61026 : Paradise, CA +95970 : 39.415041 : -122.02487 : Princeton, CA +95971 : 39.957324 : -120.98366 : Quincy, CA +95972 : 39.441356 : -121.31354 : Rackerby, CA +95973 : 39.793465 : -121.87946 : Chico, CA +95974 : 39.496465 : -121.74712 : Richvale, CA +95975 : 39.224179 : -121.14539 : Rough And Ready, CA +95976 : 39.723898 : -121.572986 : Chico, CA +95977 : 39.19322 : -121.28975 : Smartville, CA +95978 : 39.904478 : -121.52805 : Stirling City, CA +95979 : 39.331444 : -122.47943 : Stonyford, CA +95980 : 39.918503 : -121.337404 : Storrie, CA +95981 : 39.584801 : -121.08762 : Strawberry Valley, CA +95982 : 39.16855 : -121.76465 : Sutter, CA +95983 : 40.06686 : -120.77442 : Taylorsville, CA +95984 : 40.017767 : -121.05989 : Twain, CA +95986 : 39.340422 : -120.79166 : Washington, CA +95987 : 39.139543 : -122.20563 : Williams, CA +95988 : 39.499754 : -122.20773 : Willows, CA +95991 : 39.114138 : -121.6196 : Yuba City, CA +95992 : 39.020133 : -121.681345 : Yuba City, CA +95993 : 39.109272 : -121.68033 : Yuba City, CA +96001 : 40.56816 : -122.41519 : Redding, CA +96002 : 40.539302 : -122.33279 : Redding, CA +96003 : 40.641389 : -122.34206 : Redding, CA +96006 : 41.190742 : -120.90294 : Adin, CA +96007 : 40.45453 : -122.31101 : Anderson, CA +96008 : 40.732501 : -122.11264 : Bella Vista, CA +96009 : 41.119727 : -121.1362 : Bieber, CA +96010 : 40.723792 : -123.34016 : Big Bar, CA +96011 : 41.027553 : -121.91847 : Big Bend, CA +96013 : 40.926289 : -121.68452 : Burney, CA +96014 : 41.32211 : -122.81535 : Callahan, CA +96015 : 41.425912 : -120.90316 : Canby, CA +96016 : 40.929301 : -121.55711 : Cassel, CA +96017 : 41.109487 : -122.33133 : Castella, CA +96019 : 40.682393 : -122.36824 : Shasta Lake, CA +96020 : 40.289788 : -121.23263 : Chester, CA +96021 : 39.918271 : -122.21393 : Corning, CA +96022 : 40.360583 : -122.33544 : Cottonwood, CA +96023 : 41.963883 : -121.89165 : Dorris, CA +96024 : 40.606673 : -122.92335 : Douglas City, CA +96025 : 41.221077 : -122.28003 : Dunsmuir, CA +96027 : 41.414707 : -122.96832 : Etna, CA +96028 : 41.056097 : -121.49021 : Fall River Mills, CA +96029 : 39.861821 : -122.48014 : Flournoy, CA +96031 : 41.228397 : -123.20187 : Forks Of Salmon, CA +96032 : 41.615475 : -122.87744 : Fort Jones, CA +96033 : 40.736679 : -122.61121 : French Gulch, CA +96034 : 41.441194 : -122.64688 : Gazelle, CA +96035 : 40.039257 : -122.16555 : Gerber, CA +96037 : 41.53101 : -122.95666 : Greenview, CA +96038 : 41.604392 : -122.52666 : Grenada, CA +96039 : 41.82087 : -123.43126 : Happy Camp, CA +96040 : 40.788512 : -121.47668 : Hat Creek, CA +96041 : 40.524496 : -123.18307 : Hayfork, CA +96044 : 41.925752 : -122.52253 : Hornbrook, CA +96046 : 40.639108 : -123.47525 : Hyampom, CA +96047 : 40.472993 : -122.63707 : Igo, CA +96048 : 40.850776 : -122.92043 : Junction City, CA +96049 : 40.709783 : -122.311628 : Redding, CA +96050 : 41.831947 : -122.9206 : Klamath River, CA +96051 : 40.939342 : -122.42246 : Lakehead, CA +96052 : 40.743423 : -122.81414 : Lewiston, CA +96053 : 40.446063 : -120.664132 : Mcarthur, CA +96054 : 41.285897 : -121.16094 : Lookout, CA +96055 : 40.041399 : -122.09793 : Los Molinos, CA +96056 : 41.114424 : -121.332 : Mcarthur, CA +96057 : 41.263103 : -122.10297 : Mccloud, CA +96058 : 41.790562 : -121.94214 : Macdoel, CA +96059 : 40.437443 : -121.84678 : Manton, CA +96061 : 40.310324 : -121.43316 : Mill Creek, CA +96062 : 40.577799 : -122.10148 : Millville, CA +96063 : 40.371043 : -121.58245 : Mineral, CA +96064 : 41.736424 : -122.40008 : Montague, CA +96065 : 40.876184 : -121.88975 : Montgomery Creek, CA +96067 : 41.317771 : -122.31207 : Mount Shasta, CA +96068 : 41.102891 : -121.19828 : Nubieber, CA +96069 : 40.705474 : -122.021 : Oak Run, CA +96070 : 40.735153 : -122.1944 : Obrien, CA +96071 : 40.646417 : -121.4418 : Old Station, CA +96073 : 40.562648 : -122.2255 : Palo Cedro, CA +96074 : 39.878018 : -122.57972 : Paskenta, CA +96075 : 40.338253 : -121.84025 : Paynes Creek, CA +96076 : 40.366349 : -122.94566 : Platina, CA +96078 : 40.12517 : -122.204141 : Proberta, CA +96079 : 40.686639 : -122.334778 : Shasta Lake, CA +96080 : 40.183837 : -122.24074 : Red Bluff, CA +96084 : 40.871548 : -121.98807 : Round Mountain, CA +96085 : 41.734832 : -123.07218 : Scott Bar, CA +96086 : 41.86235 : -123.24091 : Seiad Valley, CA +96087 : 40.608728 : -122.51427 : Shasta, CA +96088 : 40.504853 : -121.83501 : Shingletown, CA +96089 : 40.657893 : -122.427333 : Shasta Lake, CA +96090 : 40.024337 : -122.12378 : Tehama, CA +96091 : 41.004651 : -122.71541 : Trinity Center, CA +96092 : 39.941595 : -122.03746 : Vina, CA +96093 : 40.734483 : -122.93982 : Weaverville, CA +96094 : 41.460403 : -122.38544 : Weed, CA +96095 : 40.607134 : -122.54626 : Whiskeytown, CA +96096 : 40.63446 : -121.91202 : Whitmore, CA +96097 : 41.749249 : -122.64479 : Yreka, CA +96099 : 40.704337 : -122.387808 : Redding, CA +96101 : 41.439363 : -120.58771 : Alturas, CA +96103 : 39.779486 : -120.64058 : Blairsden-Graeagle, CA +96104 : 41.527226 : -120.13826 : Cedarville, CA +96105 : 39.862832 : -120.17303 : Chilcoot, CA +96106 : 39.743835 : -120.58114 : Clio, CA +96107 : 38.475853 : -119.49014 : Coleville, CA +96108 : 41.736074 : -120.3778 : Davis Creek, CA +96109 : 40.030098 : -120.11304 : Doyle, CA +96110 : 41.251918 : -120.12897 : Eagleville, CA +96111 : 39.392752 : -120.021212 : Floriston, CA +96112 : 41.90749 : -120.14789 : Fort Bidwell, CA +96113 : 40.158794 : -120.18597 : Herlong, CA +96114 : 40.295652 : -120.51775 : Janesville, CA +96115 : 41.688163 : -120.23924 : Lake City, CA +96116 : 41.268746 : -120.42843 : Likely, CA +96117 : 40.446122 : -120.35776 : Litchfield, CA +96118 : 39.663256 : -120.24835 : Loyalton, CA +96119 : 41.021344 : -120.52472 : Madeline, CA +96120 : 38.76467 : -119.85236 : Markleeville, CA +96121 : 40.169038 : -120.37815 : Milford, CA +96122 : 39.801047 : -120.48359 : Portola, CA +96123 : 40.800556 : -120.36374 : Ravendale, CA +96124 : 39.663242 : -120.43806 : Calpine, CA +96125 : 39.598792 : -120.63432 : Sierra City, CA +96126 : 39.560357 : -120.35662 : Sierraville, CA +96127 : 40.446063 : -120.664132 : Susanville, CA +96128 : 40.34863 : -120.4065 : Standish, CA +96129 : 39.772064 : -120.405095 : Beckwourth, CA +96130 : 40.474951 : -120.67685 : Susanville, CA +96132 : 40.921124 : -120.62265 : Termo, CA +96133 : 38.651141 : -119.49874 : Topaz, CA +96134 : 41.874847 : -121.43738 : Tulelake, CA +96135 : 40.02349 : -120.79861 : Vinton, CA +96136 : 40.283378 : -120.12859 : Wendel, CA +96137 : 40.290007 : -121.05272 : Westwood, CA +96140 : 39.223151 : -120.08627 : Carnelian Bay, CA +96141 : 39.093271 : -120.16325 : Homewood, CA +96142 : 39.037696 : -120.12438 : Tahoma, CA +96143 : 39.241961 : -120.02809 : Kings Beach, CA +96145 : 39.177383 : -120.14607 : Tahoe City, CA +96146 : 39.180983 : -120.21804 : Olympic Valley, CA +96148 : 39.243877 : -120.05437 : Tahoe Vista, CA +96150 : 38.908741 : -120.00992 : South Lake Tahoe, CA +96151 : 38.90392 : -119.995024 : South Lake Tahoe, CA +96152 : 38.927149 : -119.999032 : South Lake Tahoe, CA +96154 : 38.87529 : -120.0188 : South Lake Tahoe, CA +96155 : 38.844909 : -120.042996 : South Lake Tahoe, CA +96156 : 38.935245 : -119.967631 : South Lake Tahoe, CA +96157 : 38.934409 : -119.976707 : South Lake Tahoe, CA +96158 : 38.898142 : -119.998419 : South Lake Tahoe, CA +96160 : 39.3781 : -120.186383 : Truckee, CA +96161 : 39.339574 : -120.22805 : Truckee, CA +96162 : 39.26599 : -120.64145 : Truckee, CA +96163 : 39.320012 : -120.160271 : Truckee, CA +96222 : 40.385673 : -122.279739 : Cottonwood, CA +96371 : 21.703 : -157.996233 : Kawela Bay, HI +96373 : 19.112099 : -155.798594 : Hawaiian Ocean View, HI +96385 : 19.44707 : -155.243925 : Volcano, HI +96477 : 21.41345 : -157.80575 : Kaneohe, HI +96701 : 21.389167 : -157.93091 : Aiea, HI +96703 : 22.148133 : -159.31765 : Anahola, HI +96704 : 19.307543 : -155.88338 : Captain Cook, HI +96705 : 21.910767 : -159.58222 : Eleele, HI +96706 : 21.338055 : -158.02499 : Ewa Beach, HI +96707 : 21.345535 : -158.08587 : Kapolei, HI +96708 : 20.899634 : -156.27315 : Haiku, HI +96709 : 23.573339 : -164.701172 : Kapolei, HI +96710 : 19.857045 : -155.15249 : Hakalau, HI +96712 : 21.630633 : -158.07448 : Haleiwa, HI +96713 : 20.739217 : -156.03893 : Hana, HI +96714 : 22.208401 : -159.4896 : Hanalei, HI +96715 : 21.979991 : -159.512392 : Hanamaulu, HI +96716 : 21.917153 : -159.59407 : Hanapepe, HI +96717 : 21.60625 : -157.90949 : Hauula, HI +96718 : 19.435739 : -155.26648 : Hawaii National Park, HI +96719 : 20.241109 : -155.84459 : Hawi, HI +96720 : 19.713562 : -155.09842 : Hilo, HI +96721 : 19.593456 : -155.438015 : Hilo, HI +96722 : 22.223635 : -159.49025 : Princeville, HI +96725 : 19.410727 : -155.7478 : Holualoa, HI +96726 : 19.278298 : -155.845329 : Honaunau, HI +96727 : 20.089087 : -155.51679 : Honokaa, HI +96728 : 19.866007 : -155.12172 : Honomu, HI +96729 : 21.168775 : -157.08588 : Hoolehua, HI +96730 : 21.554467 : -157.85108 : Kaaawa, HI +96731 : 21.68762 : -157.95903 : Kahuku, HI +96732 : 20.883951 : -156.46579 : Kahului, HI +96733 : 20.866638 : -156.646667 : Kahului, HI +96734 : 21.3949 : -157.74529 : Kailua, HI +96737 : 19.101978 : -155.76114 : Ocean View, HI +96738 : 19.947774 : -155.78634 : Waikoloa, HI +96739 : 19.593456 : -155.438015 : Keauhou, HI +96740 : 19.675386 : -155.97588 : Kailua Kona, HI +96741 : 21.999721 : -159.4776 : Kalaheo, HI +96742 : 21.191665 : -156.9818 : Kalaupapa, HI +96743 : 20.040191 : -155.69999 : Kamuela, HI +96744 : 21.501854 : -157.87926 : Kaneohe, HI +96745 : 19.593456 : -155.438015 : Kailua Kona, HI +96746 : 22.077472 : -159.34463 : Kapaa, HI +96747 : 21.920292 : -159.62428 : Kaumakani, HI +96748 : 21.111246 : -156.9741 : Kaunakakai, HI +96749 : 19.625495 : -155.01121 : Keaau, HI +96750 : 19.526845 : -155.9215 : Kealakekua, HI +96751 : 22.111837 : -159.31283 : Kealia, HI +96752 : 21.97313 : -159.71766 : Kekaha, HI +96753 : 20.771418 : -156.45769 : Kihei, HI +96754 : 22.212733 : -159.40787 : Kilauea, HI +96755 : 20.222668 : -155.78664 : Kapaau, HI +96756 : 21.910013 : -159.48044 : Koloa, HI +96757 : 21.156174 : -157.03622 : Kualapuu, HI +96759 : 21.4603 : -158.06446 : Kunia, HI +96760 : 19.5604 : -155.05686 : Kurtistown, HI +96761 : 20.913335 : -156.65765 : Lahaina, HI +96762 : 21.6485 : -157.92556 : Laie, HI +96763 : 20.823607 : -156.9274 : Lanai City, HI +96764 : 19.983584 : -155.25963 : Laupahoehoe, HI +96765 : 21.930922 : -159.499342 : Lawai, HI +96766 : 21.98081 : -159.37746 : Lihue, HI +96767 : 20.866638 : -156.646667 : Lahaina, HI +96768 : 20.865115 : -156.33158 : Makawao, HI +96769 : 21.946244 : -159.65981 : Makaweli, HI +96770 : 21.15058 : -157.1977 : Maunaloa, HI +96771 : 19.516132 : -155.11305 : Mountain View, HI +96772 : 19.110687 : -155.58738 : Naalehu, HI +96773 : 19.942301 : -155.18112 : Ninole, HI +96774 : 19.996769 : -155.31153 : Ookala, HI +96775 : 19.593456 : -155.438015 : Paauhau, HI +96776 : 20.022513 : -155.37514 : Paauilo, HI +96777 : 19.226749 : -155.49217 : Pahala, HI +96778 : 19.494625 : -154.9266 : Pahoa, HI +96779 : 20.906999 : -156.38202 : Paia, HI +96780 : 19.946758 : -155.2086 : Papaaloa, HI +96781 : 19.800318 : -155.10649 : Papaikou, HI +96782 : 21.408333 : -157.9669 : Pearl City, HI +96783 : 19.843259 : -155.10548 : Pepeekeo, HI +96784 : 20.866638 : -156.646667 : Puunene, HI +96785 : 19.447717 : -155.21012 : Volcano, HI +96786 : 21.501722 : -158.03543 : Wahiawa, HI +96788 : 20.855864 : -156.325923 : Pukalani, HI +96789 : 21.459206 : -158.0116 : Mililani, HI +96790 : 20.724391 : -156.34031 : Kula, HI +96791 : 21.572131 : -158.13489 : Waialua, HI +96792 : 21.434246 : -158.17092 : Waianae, HI +96793 : 20.889294 : -156.50497 : Wailuku, HI +96795 : 21.33743 : -157.70599 : Waimanalo, HI +96796 : 21.997746 : -159.7187 : Waimea, HI +96797 : 21.403487 : -158.01389 : Waipahu, HI +96799 : -7.209975 : -170.7716 : Pago Pago, AS +96801 : 24.859832 : -168.021815 : Honolulu, HI +96802 : 24.859832 : -168.021815 : Honolulu, HI +96803 : 24.859832 : -168.021815 : Honolulu, HI +96804 : 24.859832 : -168.021815 : Honolulu, HI +96805 : 24.859832 : -168.021815 : Honolulu, HI +96806 : 24.859832 : -168.021815 : Honolulu, HI +96807 : 24.859832 : -168.021815 : Honolulu, HI +96808 : 24.859832 : -168.021815 : Honolulu, HI +96809 : 24.859832 : -168.021815 : Honolulu, HI +96810 : 24.859832 : -168.021815 : Honolulu, HI +96811 : 24.859832 : -168.021815 : Honolulu, HI +96812 : 24.859832 : -168.021815 : Honolulu, HI +96813 : 21.313033 : -157.85615 : Honolulu, HI +96814 : 21.300167 : -157.84777 : Honolulu, HI +96815 : 21.2782 : -157.82199 : Honolulu, HI +96816 : 21.284 : -157.79925 : Honolulu, HI +96817 : 21.3307 : -157.85913 : Honolulu, HI +96818 : 21.36425 : -157.96316 : Honolulu, HI +96819 : 21.3452 : -157.88165 : Honolulu, HI +96820 : 24.859832 : -168.021815 : Honolulu, HI +96821 : 21.287967 : -157.75456 : Honolulu, HI +96822 : 21.31275 : -157.82195 : Honolulu, HI +96823 : 24.859832 : -168.021815 : Honolulu, HI +96824 : 24.859832 : -168.021815 : Honolulu, HI +96825 : 21.2946 : -157.69721 : Honolulu, HI +96826 : 21.2951 : -157.83066 : Honolulu, HI +96827 : 24.859832 : -168.021815 : Honolulu, HI +96828 : 24.859832 : -168.021815 : Honolulu, HI +96830 : 24.859832 : -168.021815 : Honolulu, HI +96835 : 24.859832 : -168.021815 : Honolulu, HI +96836 : 24.859832 : -168.021815 : Honolulu, HI +96837 : 24.859832 : -168.021815 : Honolulu, HI +96838 : 24.859832 : -168.021815 : Honolulu, HI +96839 : 24.859832 : -168.021815 : Honolulu, HI +96840 : 24.859832 : -168.021815 : Honolulu, HI +96841 : 24.859832 : -168.021815 : Honolulu, HI +96842 : 24.859832 : -168.021815 : Honolulu, HI +96843 : 24.859832 : -168.021815 : Honolulu, HI +96844 : 24.859832 : -168.021815 : Honolulu, HI +96845 : 24.859832 : -168.021815 : Honolulu, HI +96846 : 24.859832 : -168.021815 : Honolulu, HI +96847 : 24.859832 : -168.021815 : Honolulu, HI +96848 : 24.859832 : -168.021815 : Honolulu, HI +96849 : 24.859832 : -168.021815 : Honolulu, HI +96850 : 24.859832 : -168.021815 : Honolulu, HI +96853 : 24.859832 : -168.021815 : Hickam AFB, HI +96854 : 24.859832 : -168.021815 : Wheeler Army Airfield, HI +96857 : 24.859832 : -168.021815 : Schofield Barracks, HI +96858 : 24.859832 : -168.021815 : Fort Shafter, HI +96859 : 24.859832 : -168.021815 : Tripler Army Medical Ctr, HI +96860 : 24.859832 : -168.021815 : Pearl Harbor, HI +96861 : 24.859832 : -168.021815 : Camp H M Smith, HI +96862 : 21.3017 : -158.08174 : Barbers Point N A S, HI +96863 : 21.439867 : -157.74772 : M C B H Kaneohe Bay, HI +96885 : 19.433152 : -155.238743 : Volcano, HI +96898 : 24.859832 : -168.021815 : Wake Island, HI +97001 : 44.904051 : -120.67244 : Antelope, OR +97002 : 45.234609 : -122.79749 : Aurora, OR +97004 : 45.255392 : -122.4749 : Beavercreek, OR +97005 : 45.49106 : -122.80359 : Beaverton, OR +97006 : 45.517695 : -122.85826 : Beaverton, OR +97007 : 45.469079 : -122.85602 : Beaverton, OR +97008 : 45.46059 : -122.80683 : Beaverton, OR +97009 : 45.428663 : -122.3809 : Boring, OR +97010 : 45.582981 : -122.101103 : Bridal Veil, OR +97011 : 45.371086 : -122.01227 : Brightwood, OR +97013 : 45.247004 : -122.68208 : Canby, OR +97014 : 45.655523 : -121.89435 : Cascade Locks, OR +97015 : 45.416785 : -122.52859 : Clackamas, OR +97016 : 46.078338 : -123.26993 : Clatskanie, OR +97017 : 45.181819 : -122.39802 : Colton, OR +97018 : 45.891952 : -122.8132 : Columbia City, OR +97019 : 45.514515 : -122.23283 : Corbett, OR +97020 : 45.224154 : -122.83989 : Donald, OR +97021 : 45.430024 : -121.17922 : Dufur, OR +97022 : 45.349244 : -122.33554 : Eagle Creek, OR +97023 : 45.267354 : -122.28464 : Estacada, OR +97024 : 45.542239 : -122.44553 : Fairview, OR +97026 : 45.10649 : -122.90363 : Gervais, OR +97027 : 45.385642 : -122.59272 : Gladstone, OR +97028 : 45.305113 : -121.78441 : Government Camp, OR +97029 : 45.335199 : -120.7798 : Grass Valley, OR +97030 : 45.507752 : -122.4323 : Gresham, OR +97031 : 45.673147 : -121.5368 : Hood River, OR +97032 : 45.183167 : -122.80193 : Hubbard, OR +97033 : 45.195235 : -120.59745 : Kent, OR +97034 : 45.40765 : -122.6811 : Lake Oswego, OR +97035 : 45.41387 : -122.72492 : Lake Oswego, OR +97036 : 45.173284 : -122.259861 : Marylhurst, OR +97037 : 45.093643 : -121.10814 : Maupin, OR +97038 : 45.10799 : -122.56555 : Molalla, OR +97039 : 45.479419 : -120.75969 : Moro, OR +97040 : 45.636848 : -121.40926 : Mosier, OR +97041 : 45.503224 : -121.59252 : Mount Hood Parkdale, OR +97042 : 45.21307 : -122.54321 : Mulino, OR +97044 : 45.643738 : -121.536658 : Odell, OR +97045 : 45.344246 : -122.58464 : Oregon City, OR +97048 : 46.054948 : -122.95714 : Rainier, OR +97049 : 45.369468 : -121.92558 : Rhododendron, OR +97050 : 45.693219 : -120.73221 : Rufus, OR +97051 : 45.862489 : -122.84824 : Saint Helens, OR +97053 : 45.821358 : -122.86404 : Warren, OR +97054 : 45.946314 : -122.90416 : Deer Island, OR +97055 : 45.375143 : -122.21021 : Sandy, OR +97056 : 45.778892 : -122.92065 : Scappoose, OR +97057 : 45.263301 : -121.088513 : Shaniko, OR +97058 : 45.594257 : -121.18944 : The Dalles, OR +97060 : 45.529551 : -122.39156 : Troutdale, OR +97062 : 45.373991 : -122.77127 : Tualatin, OR +97063 : 45.262423 : -121.23304 : Tygh Valley, OR +97064 : 45.862577 : -123.206 : Vernonia, OR +97065 : 45.585405 : -120.69234 : Wasco, OR +97067 : 45.333824 : -121.95765 : Welches, OR +97068 : 45.361991 : -122.64443 : West Linn, OR +97070 : 45.308105 : -122.77266 : Wilsonville, OR +97071 : 45.144415 : -122.84521 : Woodburn, OR +97075 : 45.548616 : -123.114725 : Beaverton, OR +97076 : 45.548616 : -123.114725 : Beaverton, OR +97077 : 45.548616 : -123.114725 : Beaverton, OR +97078 : 45.451976 : -122.789257 : Beaverton, OR +97080 : 45.481342 : -122.40856 : Gresham, OR +97101 : 45.100504 : -123.22834 : Amity, OR +97102 : 45.819042 : -123.95827 : Arch Cape, OR +97103 : 46.155007 : -123.7417 : Astoria, OR +97104 : 45.546914 : -122.928208 : Hillsboro, OR +97106 : 45.644591 : -123.12811 : Banks, OR +97107 : 45.534203 : -123.88468 : Bay City, OR +97108 : 45.284763 : -123.6908 : Beaver, OR +97109 : 45.729085 : -123.20234 : Buxton, OR +97110 : 45.894287 : -123.961 : Cannon Beach, OR +97111 : 45.287751 : -123.19334 : Carlton, OR +97112 : 45.257176 : -123.89141 : Cloverdale, OR +97113 : 45.515181 : -123.05089 : Cornelius, OR +97114 : 45.211339 : -123.08114 : Dayton, OR +97115 : 45.272559 : -123.01631 : Dundee, OR +97116 : 45.541009 : -123.13043 : Forest Grove, OR +97117 : 45.622824 : -123.25977 : Gales Creek, OR +97118 : 45.561139 : -123.91004 : Garibaldi, OR +97119 : 45.43957 : -123.17165 : Gaston, OR +97121 : 46.187903 : -123.96437 : Hammond, OR +97122 : 45.187837 : -123.82026 : Hebo, OR +97123 : 45.491024 : -122.95745 : Hillsboro, OR +97124 : 45.545841 : -122.94605 : Hillsboro, OR +97125 : 45.662196 : -123.22518 : Manning, OR +97127 : 45.2455 : -123.11304 : Lafayette, OR +97128 : 45.210104 : -123.20747 : Mcminnville, OR +97130 : 45.720836 : -123.93471 : Manzanita, OR +97131 : 45.715015 : -123.88233 : Nehalem, OR +97132 : 45.310304 : -122.972 : Newberg, OR +97133 : 45.65749 : -123.0242 : North Plains, OR +97134 : 45.461852 : -123.96804 : Oceanside, OR +97135 : 45.201302 : -123.95999 : Pacific City, OR +97136 : 45.620062 : -123.93449 : Rockaway Beach, OR +97137 : 45.215261 : -122.97186 : Saint Paul, OR +97138 : 45.926112 : -123.81524 : Seaside, OR +97140 : 45.352086 : -122.85376 : Sherwood, OR +97141 : 45.459109 : -123.80389 : Tillamook, OR +97143 : 45.438112 : -123.9483 : Netarts, OR +97144 : 45.744404 : -123.3235 : Timber, OR +97145 : 45.868839 : -123.95909 : Tolovana Park, OR +97146 : 46.136322 : -123.91753 : Warrenton, OR +97147 : 45.688054 : -123.8842 : Wheeler, OR +97148 : 45.352399 : -123.22502 : Yamhill, OR +97149 : 45.101518 : -123.9737 : Neskowin, OR +97180 : 45.354615 : -122.850808 : Sherwood, OR +97201 : 45.49894 : -122.68781 : Portland, OR +97202 : 45.481791 : -122.64055 : Portland, OR +97203 : 45.589689 : -122.73875 : Portland, OR +97204 : 45.51854 : -122.6755 : Portland, OR +97205 : 45.52054 : -122.68573 : Portland, OR +97206 : 45.482341 : -122.60007 : Portland, OR +97207 : 45.480324 : -122.711117 : Portland, OR +97208 : 45.532165 : -122.564824 : Portland, OR +97209 : 45.52889 : -122.68458 : Portland, OR +97210 : 45.534839 : -122.7095 : Portland, OR +97211 : 45.56544 : -122.64635 : Portland, OR +97212 : 45.54424 : -122.64353 : Portland, OR +97213 : 45.53704 : -122.59979 : Portland, OR +97214 : 45.51379 : -122.6458 : Portland, OR +97215 : 45.514241 : -122.60089 : Portland, OR +97216 : 45.515674 : -122.56087 : Portland, OR +97217 : 45.574439 : -122.68665 : Portland, OR +97218 : 45.56099 : -122.59987 : Portland, OR +97219 : 45.45867 : -122.70611 : Portland, OR +97220 : 45.546205 : -122.56027 : Portland, OR +97221 : 45.49759 : -122.72945 : Portland, OR +97222 : 45.442634 : -122.61833 : Portland, OR +97223 : 45.43884 : -122.78224 : Portland, OR +97224 : 45.406292 : -122.78441 : Portland, OR +97225 : 45.497856 : -122.76988 : Portland, OR +97226 : 45.484854 : -122.625257 : Raleigh Hills, OR +97227 : 45.543831 : -122.67497 : Portland, OR +97228 : 45.580557 : -122.374776 : Portland, OR +97229 : 45.540967 : -122.81728 : Portland, OR +97230 : 45.539473 : -122.50488 : Portland, OR +97231 : 45.651279 : -122.82465 : Portland, OR +97232 : 45.52874 : -122.6446 : Portland, OR +97233 : 45.513242 : -122.49985 : Portland, OR +97236 : 45.474722 : -122.50997 : Portland, OR +97238 : 45.580557 : -122.374776 : Portland, OR +97239 : 45.488031 : -122.693796 : Portland, OR +97240 : 45.580557 : -122.374776 : Portland, OR +97242 : 45.580557 : -122.374776 : Portland, OR +97251 : 45.580557 : -122.374776 : Portland, OR +97253 : 45.580557 : -122.374776 : Portland, OR +97254 : 45.596678 : -122.59418 : Portland, OR +97255 : 45.580557 : -122.374776 : Portland, OR +97256 : 45.580557 : -122.374776 : Portland, OR +97257 : 42.421567 : -123.33749 : Grants Pass, OR +97258 : 45.580557 : -122.374776 : Portland, OR +97259 : 45.580557 : -122.374776 : Portland, OR +97264 : 42.577154 : -121.860525 : Chiloquin, OR +97266 : 45.478641 : -122.56233 : Portland, OR +97267 : 45.408882 : -122.61476 : Portland, OR +97268 : 45.173284 : -122.259861 : Portland, OR +97269 : 45.173284 : -122.259861 : Portland, OR +97271 : 45.580557 : -122.374776 : Portland, OR +97272 : 45.580557 : -122.374776 : Portland, OR +97280 : 45.580557 : -122.374776 : Portland, OR +97281 : 45.548616 : -123.114725 : Portland, OR +97282 : 45.580557 : -122.374776 : Portland, OR +97283 : 45.580557 : -122.374776 : Portland, OR +97286 : 45.580557 : -122.374776 : Portland, OR +97290 : 45.580557 : -122.374776 : Portland, OR +97291 : 45.548616 : -123.114725 : Portland, OR +97292 : 45.580557 : -122.374776 : Portland, OR +97293 : 45.580557 : -122.374776 : Portland, OR +97294 : 45.580557 : -122.374776 : Portland, OR +97296 : 45.580557 : -122.374776 : Portland, OR +97298 : 45.548616 : -123.114725 : Portland, OR +97299 : 45.580557 : -122.374776 : Portland, OR +97301 : 44.926644 : -122.98694 : Salem, OR +97302 : 44.906492 : -123.05129 : Salem, OR +97303 : 44.984008 : -123.01992 : Salem, OR +97304 : 44.970181 : -123.08033 : Salem, OR +97305 : 44.995029 : -122.95801 : Salem, OR +97306 : 44.858446 : -123.05368 : Salem, OR +97307 : 44.984465 : -122.457024 : Keizer, OR +97308 : 44.984465 : -122.457024 : Salem, OR +97309 : 44.984465 : -122.457024 : Salem, OR +97310 : 44.927141 : -122.986105 : Salem, OR +97311 : 44.943841 : -123.028607 : Salem, OR +97312 : 44.936357 : -123.038116 : Salem, OR +97313 : 44.984941 : -122.998756 : Salem, OR +97314 : 44.965541 : -123.006606 : Salem, OR +97321 : 44.635395 : -123.0896 : Albany, OR +97322 : 44.62205 : -123.061329 : Albany, OR +97324 : 44.369264 : -123.62349 : Alsea, OR +97325 : 44.838001 : -122.8593 : Aumsville, OR +97326 : 44.637701 : -123.62496 : Blodgett, OR +97327 : 44.390881 : -122.97168 : Brownsville, OR +97329 : 44.400432 : -122.35469 : Cascadia, OR +97330 : 44.608694 : -123.2752 : Corvallis, OR +97331 : 44.565648 : -123.27906 : Corvallis, OR +97333 : 44.52789 : -123.2791 : Corvallis, OR +97335 : 44.634439 : -122.893292 : Crabtree, OR +97336 : 44.359301 : -122.850752 : Crawfordsville, OR +97338 : 44.920815 : -123.33432 : Dallas, OR +97339 : 44.49893 : -123.445033 : Corvallis, OR +97341 : 44.821446 : -124.05729 : Depoe Bay, OR +97342 : 44.727388 : -122.08703 : Detroit, OR +97343 : 44.643659 : -123.76213 : Eddyville, OR +97344 : 44.865209 : -123.44807 : Falls City, OR +97345 : 44.407794 : -122.60034 : Foster, OR +97346 : 44.754247 : -122.39736 : Gates, OR +97347 : 45.060436 : -123.66311 : Grand Ronde, OR +97348 : 44.381732 : -123.12153 : Halsey, OR +97350 : 44.696507 : -122.07246 : Idanha, OR +97351 : 44.849012 : -123.18673 : Independence, OR +97352 : 44.736025 : -123.02553 : Jefferson, OR +97355 : 44.527304 : -122.85512 : Lebanon, OR +97357 : 44.745464 : -123.81722 : Logsden, OR +97358 : 44.794701 : -122.53703 : Lyons, OR +97359 : 44.984465 : -122.457024 : Marion, OR +97360 : 44.75067 : -122.47727 : Mill City, OR +97361 : 44.789252 : -123.30325 : Monmouth, OR +97362 : 45.067719 : -122.79115 : Mount Angel, OR +97364 : 44.997061 : -123.98589 : Neotsu, OR +97365 : 44.649252 : -124.05039 : Newport, OR +97366 : 44.567998 : -124.05401 : South Beach, OR +97367 : 44.950573 : -124.00655 : Lincoln City, OR +97368 : 45.009935 : -123.91182 : Otis, OR +97369 : 44.758819 : -124.06328 : Otter Rock, OR +97370 : 44.578526 : -123.43709 : Philomath, OR +97371 : 44.964115 : -123.20681 : Rickreall, OR +97372 : 44.659979 : -123.892016 : Rose Lodge, OR +97373 : 44.984465 : -122.457024 : Saint Benedict, OR +97374 : 44.702164 : -122.81401 : Scio, OR +97375 : 45.004218 : -122.59658 : Scotts Mills, OR +97376 : 44.505655 : -124.04512 : Seal Rock, OR +97377 : 44.46448 : -123.10916 : Shedd, OR +97378 : 45.089532 : -123.40787 : Sheridan, OR +97380 : 44.738154 : -123.91023 : Siletz, OR +97381 : 45.003489 : -122.78012 : Silverton, OR +97383 : 44.798379 : -122.7601 : Stayton, OR +97384 : 44.790267 : -122.618719 : Mehama, OR +97385 : 44.850245 : -122.7645 : Sublimity, OR +97386 : 44.391863 : -122.72856 : Sweet Home, OR +97388 : 44.885 : -123.994219 : Gleneden Beach, OR +97389 : 44.538801 : -123.09787 : Tangent, OR +97390 : 44.309872 : -123.83344 : Tidewater, OR +97391 : 44.626888 : -123.91515 : Toledo, OR +97392 : 44.807739 : -122.9485 : Turner, OR +97394 : 44.424255 : -124.04868 : Waldport, OR +97396 : 45.140178 : -123.49286 : Willamina, OR +97401 : 44.06092 : -123.08275 : Eugene, OR +97402 : 44.062231 : -123.16804 : Eugene, OR +97403 : 44.03858 : -123.05562 : Eugene, OR +97404 : 44.101227 : -123.13604 : Eugene, OR +97405 : 44.004396 : -123.12203 : Eugene, OR +97406 : 42.625928 : -124.05435 : Agness, OR +97407 : 43.246918 : -124.231068 : Allegany, OR +97408 : 44.122004 : -123.06447 : Eugene, OR +97409 : 44.127631 : -123.266648 : Alvadore, OR +97410 : 42.790958 : -123.14894 : Azalea, OR +97411 : 43.113799 : -124.39911 : Bandon, OR +97412 : 44.196459 : -123.53776 : Blachly, OR +97413 : 44.178746 : -122.14591 : Blue River, OR +97414 : 42.977978 : -124.1716 : Broadbent, OR +97415 : 42.098285 : -124.27265 : Brookings, OR +97416 : 43.054446 : -123.6864 : Camas Valley, OR +97417 : 42.934754 : -123.25498 : Canyonville, OR +97419 : 44.181193 : -123.38603 : Cheshire, OR +97420 : 43.357357 : -124.21086 : Coos Bay, OR +97423 : 43.187219 : -124.16396 : Coquille, OR +97424 : 43.77182 : -123.05667 : Cottage Grove, OR +97425 : 43.472276 : -121.92768 : Crescent Lake, OR +97426 : 43.911542 : -123.03036 : Creswell, OR +97427 : 43.685176 : -122.79827 : Culp Creek, OR +97428 : 43.745797 : -123.18191 : Curtin, OR +97429 : 42.971648 : -123.06467 : Days Creek, OR +97430 : 44.164325 : -123.70193 : Deadwood, OR +97431 : 43.892577 : -122.81992 : Dexter, OR +97432 : 43.113502 : -123.418068 : Dillard, OR +97434 : 43.740859 : -122.88828 : Dorena, OR +97435 : 43.703855 : -123.35279 : Drain, OR +97436 : 43.647537 : -123.58719 : Elkton, OR +97437 : 44.099732 : -123.38787 : Elmira, OR +97438 : 43.958389 : -122.75701 : Fall Creek, OR +97439 : 44.009099 : -124.08307 : Florence, OR +97440 : 43.863845 : -122.99879 : Eugene, OR +97441 : 43.760271 : -124.12028 : Gardiner, OR +97442 : 42.771195 : -123.38578 : Glendale, OR +97443 : 43.242312 : -123.03325 : Glide, OR +97444 : 42.451203 : -124.39036 : Gold Beach, OR +97446 : 44.278808 : -123.12026 : Harrisburg, OR +97447 : 43.333008 : -122.78475 : Idleyld Park, OR +97448 : 44.204189 : -123.2294 : Junction City, OR +97449 : 43.58119 : -124.1557 : Lakeside, OR +97450 : 42.915024 : -124.37576 : Langlois, OR +97451 : 43.80135 : -123.24938 : Lorane, OR +97452 : 43.864671 : -122.70932 : Lowell, OR +97453 : 44.018992 : -123.87221 : Mapleton, OR +97454 : 44.227201 : -122.8169 : Marcola, OR +97455 : 43.960764 : -122.91541 : Pleasant Hill, OR +97456 : 44.333016 : -123.36508 : Monroe, OR +97457 : 43.042614 : -123.2322 : Myrtle Creek, OR +97458 : 43.075356 : -124.05682 : Myrtle Point, OR +97459 : 43.434529 : -124.20994 : North Bend, OR +97460 : 43.138755 : -124.127089 : Norway, OR +97461 : 44.099562 : -123.46265 : Noti, OR +97462 : 43.443648 : -123.36727 : Oakland, OR +97463 : 43.747181 : -122.44717 : Oakridge, OR +97464 : 42.739889 : -124.51056 : Ophir, OR +97465 : 42.746529 : -124.47596 : Port Orford, OR +97466 : 42.873137 : -124.07835 : Powers, OR +97467 : 43.68516 : -124.00262 : Reedsport, OR +97468 : 43.138755 : -124.127089 : Remote, OR +97469 : 42.935498 : -123.39902 : Riddle, OR +97470 : 43.227287 : -123.35138 : Roseburg, OR +97472 : 43.863845 : -122.99879 : Saginaw, OR +97473 : 43.669352 : -123.8141 : Scottsburg, OR +97476 : 42.813437 : -124.35756 : Sixes, OR +97477 : 44.061057 : -123.01769 : Springfield, OR +97478 : 44.070824 : -122.90709 : Springfield, OR +97479 : 43.397697 : -123.27314 : Sutherlin, OR +97480 : 44.127179 : -123.83519 : Swisshome, OR +97481 : 43.098515 : -123.55647 : Tenmile, OR +97482 : 43.863845 : -122.99879 : Thurston, OR +97484 : 42.879291 : -122.89532 : Tiller, OR +97486 : 43.38382 : -123.53031 : Umpqua, OR +97487 : 44.023225 : -123.38399 : Veneta, OR +97488 : 44.112618 : -122.42255 : Vida, OR +97489 : 44.131706 : -122.6367 : Walterville, OR +97490 : 44.004968 : -123.63206 : Walton, OR +97491 : 42.609252 : -124.388576 : Wedderburn, OR +97492 : 43.756923 : -122.51777 : Westfir, OR +97493 : 43.905878 : -124.03929 : Westlake, OR +97494 : 43.32843 : -123.333177 : Wilbur, OR +97495 : 43.333141 : -123.325617 : Winchester, OR +97496 : 43.094626 : -123.43658 : Winston, OR +97497 : 42.676455 : -123.324 : Wolf Creek, OR +97498 : 44.326381 : -124.0557 : Yachats, OR +97499 : 43.593788 : -123.26602 : Yoncalla, OR +97501 : 42.313498 : -122.87944 : Medford, OR +97502 : 42.387399 : -122.92154 : Central Point, OR +97503 : 42.471919 : -122.87201 : White City, OR +97504 : 42.334496 : -122.83547 : Medford, OR +97520 : 42.169751 : -122.61772 : Ashland, OR +97522 : 42.530663 : -122.54822 : Butte Falls, OR +97523 : 42.139958 : -123.60245 : Cave Junction, OR +97524 : 42.484283 : -122.74031 : Eagle Point, OR +97525 : 42.432422 : -123.08639 : Gold Hill, OR +97526 : 42.4631 : -123.33162 : Grants Pass, OR +97527 : 42.405162 : -123.3624 : Grants Pass, OR +97528 : 42.396421 : -123.535027 : Grants Pass, OR +97530 : 42.224913 : -123.04526 : Jacksonville, OR +97531 : 42.208018 : -123.65551 : Kerby, OR +97532 : 42.542134 : -123.5078 : Merlin, OR +97533 : 42.308007 : -123.327323 : Murphy, OR +97534 : 42.055397 : -123.7031 : O Brien, OR +97535 : 42.270808 : -122.81805 : Phoenix, OR +97536 : 42.780226 : -122.51485 : Prospect, OR +97537 : 42.528269 : -123.1515 : Rogue River, OR +97538 : 42.259678 : -123.54778 : Selma, OR +97539 : 42.612422 : -122.81342 : Shady Cove, OR +97540 : 42.227162 : -122.78933 : Talent, OR +97541 : 42.713888 : -122.7541 : Trail, OR +97543 : 42.365473 : -123.50865 : Wilderville, OR +97544 : 42.155392 : -123.2978 : Williams, OR +97567 : 44.996054 : -123.997304 : Lincoln City, OR +97587 : 45.487784 : -117.430085 : Lostine, OR +97601 : 42.282428 : -121.88447 : Klamath Falls, OR +97602 : 42.804981 : -121.584833 : Klamath Falls, OR +97603 : 42.169323 : -121.70298 : Klamath Falls, OR +97604 : 43.023645 : -122.27443 : Crater Lake, OR +97620 : 42.227477 : -119.88141 : Adel, OR +97621 : 42.476579 : -121.23055 : Beatty, OR +97622 : 42.334534 : -120.97637 : Bly, OR +97623 : 42.202475 : -121.33346 : Bonanza, OR +97624 : 42.606472 : -121.81297 : Chiloquin, OR +97625 : 42.330162 : -121.55984 : Dairy, OR +97626 : 42.686498 : -122.04524 : Fort Klamath, OR +97627 : 42.086887 : -121.98101 : Keno, OR +97630 : 42.199446 : -120.42459 : Lakeview, OR +97631 : 44.855049 : -123.237656 : Monmouth, OR +97632 : 42.026248 : -121.41706 : Malin, OR +97633 : 42.025618 : -121.58306 : Merrill, OR +97634 : 42.129926 : -121.81778 : Midland, OR +97635 : 41.924974 : -120.28989 : New Pine Creek, CA +97636 : 42.693563 : -120.55234 : Paisley, OR +97637 : 42.543512 : -119.86512 : Plush, OR +97638 : 43.189402 : -121.00466 : Silver Lake, OR +97639 : 42.440695 : -121.43464 : Sprague River, OR +97640 : 42.961806 : -120.77072 : Summer Lake, OR +97641 : 43.256842 : -120.65084 : Christmas Valley, OR +97701 : 44.091256 : -121.29769 : Bend, OR +97702 : 44.020483 : -121.30891 : Bend, OR +97707 : 43.84783 : -121.46569 : Bend, OR +97708 : 44.001834 : -120.94952 : Bend, OR +97709 : 44.001834 : -120.94952 : Bend, OR +97710 : 42.130152 : -118.5582 : Fields, OR +97711 : 44.738812 : -120.75257 : Ashwood, OR +97712 : 43.785416 : -120.51518 : Brothers, OR +97720 : 43.600795 : -118.96382 : Burns, OR +97721 : 43.036496 : -118.61882 : Princeton, OR +97722 : 42.965788 : -118.68196 : Diamond, OR +97730 : 44.46723 : -121.64724 : Camp Sherman, OR +97731 : 43.189824 : -121.88616 : Chemult, OR +97732 : 43.40878 : -118.45927 : Crane, OR +97733 : 43.437958 : -121.73063 : Crescent, OR +97734 : 44.498302 : -121.21084 : Culver, OR +97735 : 43.331581 : -121.01016 : Fort Rock, OR +97736 : 42.727146 : -119.05385 : Frenchglen, OR +97737 : 43.521016 : -121.65255 : Gilchrist, OR +97738 : 43.471016 : -119.21005 : Hines, OR +97739 : 43.692251 : -121.53865 : La Pine, OR +97740 : 43.019785 : -119.069624 : Lawen, OR +97741 : 44.64079 : -121.12506 : Madras, OR +97750 : 44.611941 : -120.11346 : Mitchell, OR +97751 : 44.113537 : -119.79377 : Paulina, OR +97752 : 44.119652 : -120.30118 : Post, OR +97753 : 44.229401 : -121.03751 : Powell Butte, OR +97754 : 44.238306 : -120.75682 : Prineville, OR +97756 : 44.272796 : -121.19173 : Redmond, OR +97758 : 43.547855 : -119.54235 : Riley, OR +97759 : 44.322689 : -121.54897 : Sisters, OR +97760 : 44.384155 : -121.20181 : Terrebonne, OR +97761 : 44.814466 : -121.32302 : Warm Springs, OR +97795 : 43.276877 : -123.348568 : Roseburg North, OR +97801 : 45.665146 : -118.789 : Pendleton, OR +97810 : 45.719133 : -118.46578 : Adams, OR +97812 : 45.57852 : -120.17301 : Arlington, OR +97813 : 45.81667 : -118.4966 : Athena, OR +97814 : 44.796517 : -117.82092 : Baker City, OR +97817 : 44.705882 : -118.79339 : Bates, OR +97818 : 45.816575 : -119.76236 : Boardman, OR +97819 : 44.489628 : -117.73478 : Bridgeport, OR +97820 : 44.335525 : -118.95076 : Canyon City, OR +97821 : 45.683276 : -118.45808 : Cayuse, OR +97823 : 45.232817 : -120.17139 : Condon, OR +97824 : 45.331655 : -117.83718 : Cove, OR +97825 : 44.474491 : -119.54241 : Dayville, OR +97826 : 45.720228 : -119.22894 : Echo, OR +97827 : 45.564451 : -117.88306 : Elgin, OR +97828 : 45.547098 : -117.26823 : Enterprise, OR +97830 : 44.978549 : -120.14934 : Fossil, OR +97831 : 44.477794 : -118.947769 : Fox, OR +97833 : 44.930122 : -117.98289 : Haines, OR +97834 : 44.919974 : -117.13838 : Halfway, OR +97835 : 45.866696 : -118.74565 : Helix, OR +97836 : 45.343509 : -119.53938 : Heppner, OR +97837 : 44.499533 : -118.06076 : Hereford, OR +97838 : 45.846442 : -119.28423 : Hermiston, OR +97839 : 45.512792 : -119.64344 : Lexington, OR +97840 : 44.973266 : -116.8565 : Oxbow, OR +97841 : 45.463939 : -117.9624 : Imbler, OR +97842 : 45.479993 : -116.79861 : Imnaha, OR +97843 : 45.493783 : -119.87071 : Ione, OR +97844 : 45.886463 : -119.51737 : Irrigon, OR +97845 : 44.408646 : -118.95122 : John Day, OR +97846 : 45.336407 : -117.17791 : Joseph, OR +97848 : 44.675475 : -119.57602 : Kimberly, OR +97850 : 45.32627 : -118.08197 : La Grande, OR +97856 : 44.743532 : -119.11886 : Long Creek, OR +97857 : 45.464512 : -117.44227 : Lostine, OR +97859 : 45.529778 : -118.43996 : Meacham, OR +97861 : 45.438822 : -120.206698 : Mikkalo, OR +97862 : 45.938511 : -118.36952 : Milton Freewater, OR +97864 : 44.811965 : -119.41539 : Monument, OR +97865 : 44.421744 : -119.14737 : Mount Vernon, OR +97867 : 45.048141 : -117.96742 : North Powder, OR +97868 : 45.402303 : -118.76751 : Pilot Rock, OR +97869 : 44.441241 : -118.69325 : Prairie City, OR +97870 : 44.798064 : -117.2181 : Richland, OR +97872 : 44.947425 : -119.14087 : Ritter, OR +97873 : 44.138142 : -118.9767 : Seneca, OR +97874 : 44.741727 : -119.82803 : Spray, OR +97875 : 45.786324 : -119.21099 : Stanfield, OR +97876 : 45.52535 : -118.01193 : Summerville, OR +97877 : 44.744446 : -118.2229 : Sumpter, OR +97880 : 45.085144 : -118.944 : Ukiah, OR +97882 : 45.915993 : -119.33008 : Umatilla, OR +97883 : 45.201699 : -117.83083 : Union, OR +97884 : 44.471344 : -118.20623 : Unity, OR +97885 : 45.568843 : -117.52645 : Wallowa, OR +97886 : 45.800879 : -118.28859 : Weston, OR +97901 : 43.661247 : -117.07192 : Adrian, OR +97902 : 42.915641 : -117.497988 : Arock, OR +97903 : 44.187379 : -117.62629 : Brogan, OR +97904 : 43.834833 : -118.47434 : Drewsey, OR +97905 : 44.578393 : -117.48787 : Durkee, OR +97906 : 43.875636 : -117.57157 : Harper, OR +97907 : 44.410083 : -117.30995 : Huntington, OR +97908 : 44.30411 : -117.9161 : Ironside, OR +97909 : 44.207973 : -117.45677 : Jamieson, OR +97910 : 42.749306 : -116.8863 : Jordan Valley, ID +97911 : 43.722896 : -118.07394 : Juntura, OR +97913 : 43.909576 : -116.97103 : Nyssa, ID +97914 : 44.057074 : -116.99148 : Ontario, OR +97917 : 43.509919 : -118.098586 : Riverside, OR +97918 : 44.029403 : -117.33282 : Vale, OR +97920 : 44.032437 : -117.7115 : Westfall, OR +98001 : 47.303722 : -122.26608 : Auburn, WA +98002 : 47.304221 : -122.21602 : Auburn, WA +98003 : 47.311072 : -122.31188 : Federal Way, WA +98004 : 47.618371 : -122.20308 : Bellevue, WA +98005 : 47.611021 : -122.16858 : Bellevue, WA +98006 : 47.562975 : -122.1526 : Bellevue, WA +98007 : 47.610935 : -122.14104 : Bellevue, WA +98008 : 47.609222 : -122.1155 : Bellevue, WA +98009 : 47.432251 : -121.803388 : Bellevue, WA +98010 : 47.317802 : -122.01479 : Black Diamond, WA +98011 : 47.751471 : -122.20257 : Bothell, WA +98012 : 47.84311 : -122.20457 : Bothell, WA +98013 : 47.432251 : -121.803388 : Burton, WA +98014 : 47.648232 : -121.91265 : Carnation, WA +98015 : 47.432251 : -121.803388 : Bellevue, WA +98019 : 47.7353 : -121.96222 : Duvall, WA +98020 : 47.803668 : -122.37096 : Edmonds, WA +98021 : 47.790653 : -122.22021 : Bothell, WA +98022 : 47.193729 : -121.91915 : Enumclaw, WA +98023 : 47.309021 : -122.36178 : Federal Way, WA +98024 : 47.565642 : -121.88638 : Fall City, WA +98025 : 47.430704 : -121.88496 : Hobart, WA +98026 : 47.821568 : -122.33651 : Edmonds, WA +98027 : 47.522828 : -122.02921 : Issaquah, WA +98028 : 47.75287 : -122.24736 : Kenmore, WA +98029 : 47.572401 : -122.02065 : Issaquah, WA +98030 : 47.369098 : -122.192276 : Kent, WA +98031 : 47.388461 : -122.19644 : Kent, WA +98032 : 47.388254 : -122.25932 : Kent, WA +98033 : 47.67903 : -122.1934 : Kirkland, WA +98034 : 47.71828 : -122.19702 : Kirkland, WA +98035 : 47.432251 : -121.803388 : Kent, WA +98036 : 47.808816 : -122.28394 : Lynnwood, WA +98037 : 47.848237 : -122.28348 : Lynnwood, WA +98038 : 47.381989 : -122.03553 : Maple Valley, WA +98039 : 47.626571 : -122.2328 : Medina, WA +98040 : 47.569271 : -122.23233 : Mercer Island, WA +98041 : 47.432251 : -121.803388 : Bothell, WA +98042 : 47.363382 : -122.11451 : Kent, WA +98043 : 47.790969 : -122.30539 : Mountlake Terrace, WA +98045 : 47.483057 : -121.73254 : North Bend, WA +98046 : 48.037258 : -121.682271 : Lynnwood, WA +98047 : 47.26619 : -122.24463 : Pacific, WA +98050 : 47.536015 : -121.931195 : Preston, WA +98051 : 47.359414 : -121.88657 : Ravensdale, WA +98052 : 47.677471 : -122.12138 : Redmond, WA +98053 : 47.640972 : -122.03318 : Redmond, WA +98054 : 47.432251 : -121.803388 : Redondo, WA +98055 : 47.467422 : -122.21005 : Renton, WA +98056 : 47.510739 : -122.18372 : Renton, WA +98057 : 47.432251 : -121.803388 : Renton, WA +98058 : 47.448322 : -122.14584 : Renton, WA +98059 : 47.493031 : -122.14169 : Renton, WA +98060 : 47.432251 : -121.803388 : Seattle, WA +98061 : 47.680763 : -122.576199 : Rollingbay, WA +98062 : 47.432251 : -121.803388 : Seahurst, WA +98063 : 47.432251 : -121.803388 : Federal Way, WA +98064 : 47.432251 : -121.803388 : Kent, WA +98065 : 47.530639 : -121.83053 : Snoqualmie, WA +98067 : 47.617634 : -122.140193 : Bellevue, WA +98068 : 47.397811 : -121.39603 : Snoqualmie Pass, WA +98070 : 47.416198 : -122.46821 : Vashon, WA +98071 : 47.432251 : -121.803388 : Auburn, WA +98072 : 47.758786 : -122.10205 : Woodinville, WA +98073 : 47.432251 : -121.803388 : Redmond, WA +98074 : 47.625364 : -122.045347 : Sammamish, WA +98075 : 47.584879 : -122.033685 : Sammamish, WA +98082 : 47.432251 : -121.803388 : Bothell, WA +98083 : 47.432251 : -121.803388 : Kirkland, WA +98092 : 47.297285 : -122.16328 : Auburn, WA +98093 : 47.311041 : -122.113791 : Federal Way, WA +98101 : 47.61067 : -122.33438 : Seattle, WA +98102 : 47.63287 : -122.32253 : Seattle, WA +98103 : 47.671346 : -122.34166 : Seattle, WA +98104 : 47.60252 : -122.32855 : Seattle, WA +98105 : 47.66377 : -122.30118 : Seattle, WA +98106 : 47.53282 : -122.35443 : Seattle, WA +98107 : 47.66747 : -122.37468 : Seattle, WA +98108 : 47.546188 : -122.31514 : Seattle, WA +98109 : 47.630648 : -122.34675 : Seattle, WA +98110 : 47.65526 : -122.53508 : Bainbridge Island, WA +98111 : 47.432251 : -121.803388 : Seattle, WA +98112 : 47.629653 : -122.29752 : Seattle, WA +98113 : 47.763669 : -122.35384 : Shoreline, WA +98114 : 47.432251 : -121.803388 : Seattle, WA +98115 : 47.68382 : -122.30122 : Seattle, WA +98116 : 47.57487 : -122.39392 : Seattle, WA +98117 : 47.685919 : -122.37838 : Seattle, WA +98118 : 47.543348 : -122.27496 : Seattle, WA +98119 : 47.63877 : -122.36694 : Seattle, WA +98121 : 47.61487 : -122.34578 : Seattle, WA +98122 : 47.61157 : -122.30406 : Seattle, WA +98124 : 47.432251 : -121.803388 : Seattle, WA +98125 : 47.716648 : -122.30308 : Seattle, WA +98126 : 47.54687 : -122.3748 : Seattle, WA +98129 : 47.432251 : -121.803388 : Seattle, WA +98130 : 47.432251 : -121.803388 : Seattle, WA +98131 : 47.432251 : -121.803388 : Seattle, WA +98132 : 47.432251 : -121.803388 : Seattle, WA +98133 : 47.733852 : -122.34461 : Seattle, WA +98134 : 47.57867 : -122.33441 : Seattle, WA +98136 : 47.538887 : -122.38803 : Seattle, WA +98138 : 47.432251 : -121.803388 : Seattle, WA +98140 : 47.432251 : -121.803388 : Seattle, WA +98144 : 47.58577 : -122.30081 : Seattle, WA +98145 : 47.432251 : -121.803388 : Seattle, WA +98146 : 47.501753 : -122.35688 : Seattle, WA +98148 : 47.443756 : -122.33068 : Seattle, WA +98150 : 47.432251 : -121.803388 : Seattle, WA +98151 : 47.432251 : -121.803388 : Seattle, WA +98154 : 47.60632 : -122.33357 : Seattle, WA +98155 : 47.753019 : -122.30373 : Seattle, WA +98158 : 47.432251 : -121.803388 : Seattle, WA +98160 : 47.432251 : -121.803388 : Seattle, WA +98161 : 47.432251 : -121.803388 : Seattle, WA +98164 : 47.606139 : -122.33186 : Seattle, WA +98166 : 47.458821 : -122.34943 : Seattle, WA +98168 : 47.491327 : -122.3027 : Seattle, WA +98171 : 47.432251 : -121.803388 : Seattle, WA +98174 : 47.604718 : -122.33523 : Seattle, WA +98177 : 47.740886 : -122.36978 : Seattle, WA +98178 : 47.497971 : -122.24664 : Seattle, WA +98181 : 47.432251 : -121.803388 : Seattle, WA +98184 : 47.432251 : -121.803388 : Seattle, WA +98185 : 47.432251 : -121.803388 : Seattle, WA +98188 : 47.450321 : -122.27472 : Seattle, WA +98190 : 47.432251 : -121.803388 : Seattle, WA +98191 : 47.432251 : -121.803388 : Seattle, WA +98195 : 47.432251 : -121.803388 : Seattle, WA +98198 : 47.397521 : -122.315 : Seattle, WA +98199 : 47.64767 : -122.39758 : Seattle, WA +98201 : 47.986274 : -122.20222 : Everett, WA +98203 : 47.943468 : -122.21792 : Everett, WA +98204 : 47.90296 : -122.25064 : Everett, WA +98205 : 47.993436 : -122.12723 : Everett, WA +98206 : 47.859918 : -122.284785 : Everett, WA +98207 : 48.037258 : -121.682271 : Everett, WA +98208 : 47.893451 : -122.19797 : Everett, WA +98220 : 48.681582 : -122.1977 : Acme, WA +98221 : 48.495234 : -122.61976 : Anacortes, WA +98222 : 48.586563 : -122.80317 : Blakely Island, WA +98223 : 48.203856 : -122.05288 : Arlington, WA +98224 : 47.763755 : -121.47607 : Baring, WA +98225 : 48.747578 : -122.48508 : Bellingham, WA +98226 : 48.759079 : -122.43597 : Bellingham, WA +98227 : 48.814753 : -121.988548 : Bellingham, WA +98228 : 48.814753 : -121.988548 : Bellingham, WA +98229 : 48.725417 : -122.435478 : Bellingham, WA +98230 : 48.961443 : -122.73714 : Blaine, WA +98231 : 48.814753 : -121.988548 : Blaine, WA +98232 : 48.559548 : -122.41375 : Bow, WA +98233 : 48.486892 : -122.33366 : Burlington, WA +98235 : 48.461672 : -122.23308 : Clearlake, WA +98236 : 47.962134 : -122.40089 : Clinton, WA +98237 : 48.497601 : -121.70018 : Concrete, WA +98238 : 48.337796 : -122.34517 : Conway, WA +98239 : 48.204162 : -122.66723 : Coupeville, WA +98240 : 48.931679 : -122.63256 : Custer, WA +98241 : 48.265483 : -121.56075 : Darrington, WA +98243 : 48.612763 : -123.02057 : Deer Harbor, WA +98244 : 48.841442 : -122.12547 : Deming, WA +98245 : 48.672312 : -122.91972 : Eastsound, WA +98246 : 48.558127 : -121.417034 : Bow, WA +98247 : 48.900256 : -122.32095 : Everson, WA +98248 : 48.852655 : -122.61807 : Ferndale, WA +98249 : 48.029176 : -122.54222 : Freeland, WA +98250 : 48.55113 : -123.07563 : Friday Harbor, WA +98251 : 47.851713 : -121.66644 : Gold Bar, WA +98252 : 48.070852 : -121.82242 : Granite Falls, WA +98253 : 48.085852 : -122.57129 : Greenbank, WA +98255 : 48.525461 : -121.9887 : Hamilton, WA +98256 : 47.84138 : -121.50689 : Index, WA +98257 : 48.393063 : -122.50476 : La Conner, WA +98258 : 48.028355 : -122.06327 : Lake Stevens, WA +98259 : 48.037258 : -121.682271 : North Lakewood, WA +98260 : 48.030555 : -122.44856 : Langley, WA +98261 : 48.481655 : -122.88271 : Lopez Island, WA +98262 : 48.699642 : -122.66658 : Lummi Island, WA +98263 : 48.534462 : -122.058644 : Lyman, WA +98264 : 48.943476 : -122.45723 : Lynden, WA +98266 : 48.853213 : -122.247881 : Maple Falls, WA +98267 : 48.499159 : -121.43163 : Marblemount, WA +98270 : 48.061269 : -122.1588 : Marysville, WA +98271 : 48.093129 : -122.21614 : Marysville, WA +98272 : 47.860245 : -121.93734 : Monroe, WA +98273 : 48.414576 : -122.35196 : Mount Vernon, WA +98274 : 48.371026 : -122.24432 : Mount Vernon, WA +98275 : 47.916148 : -122.30293 : Mukilteo, WA +98276 : 48.834208 : -122.335734 : Nooksack, WA +98277 : 48.303774 : -122.65093 : Oak Harbor, WA +98278 : 48.310127 : -122.655862 : Oak Harbor, WA +98279 : 48.63205 : -122.81372 : Olga, WA +98280 : 48.594255 : -122.91828 : Orcas, WA +98281 : 48.99201 : -123.05047 : Point Roberts, WA +98282 : 48.185511 : -122.48209 : Camano, WA +98283 : 48.509814 : -121.48418 : Rockport, WA +98284 : 48.518653 : -122.16545 : Sedro Woolley, WA +98286 : 48.575362 : -122.96643 : Shaw Island, WA +98287 : 48.037258 : -121.682271 : Silvana, WA +98288 : 47.658047 : -121.41445 : Skykomish, WA +98290 : 47.930902 : -122.03976 : Snohomish, WA +98291 : 47.909511 : -122.050108 : Snohomish, WA +98292 : 48.222046 : -122.38961 : Stanwood, WA +98293 : 47.870275 : -121.76849 : Startup, WA +98294 : 47.86527 : -121.78899 : Sultan, WA +98295 : 48.971298 : -122.20146 : Sumas, WA +98296 : 47.846083 : -122.11068 : Snohomish, WA +98297 : 48.701835 : -123.02636 : Waldron, WA +98303 : 47.16438 : -122.69584 : Anderson Island, WA +98304 : 46.75523 : -122.01544 : Ashford, WA +98305 : 48.066605 : -124.30909 : Beaver, WA +98310 : 47.58675 : -122.62371 : Bremerton, WA +98311 : 47.629717 : -122.63493 : Bremerton, WA +98312 : 47.564437 : -122.71293 : Bremerton, WA +98314 : 47.559317 : -122.64915 : Bremerton, WA +98315 : 47.720777 : -122.71309 : Silverdale, WA +98319 : 47.741268 : -121.978279 : Duvall, WA +98320 : 47.705616 : -122.92868 : Brinnon, WA +98321 : 47.155649 : -122.05255 : Buckley, WA +98322 : 47.687971 : -122.729304 : Burley, WA +98323 : 47.035525 : -121.951 : Carbonado, WA +98324 : 48.18315 : -123.872972 : Carlsborg, WA +98325 : 47.974586 : -122.78382 : Chimacum, WA +98326 : 48.181608 : -124.41188 : Clallam Bay, WA +98327 : 47.088719 : -122.64326 : Dupont, WA +98328 : 46.884733 : -122.29237 : Eatonville, WA +98329 : 47.378121 : -122.7222 : Gig Harbor, WA +98330 : 46.761546 : -122.17858 : Elbe, WA +98331 : 47.838423 : -124.35888 : Forks, WA +98332 : 47.364321 : -122.60011 : Gig Harbor, WA +98333 : 47.244053 : -122.6199 : Fox Island, WA +98335 : 47.301252 : -122.60562 : Gig Harbor, WA +98336 : 46.53619 : -122.11766 : Glenoma, WA +98337 : 47.569167 : -122.63479 : Bremerton, WA +98338 : 47.028423 : -122.291 : Graham, WA +98339 : 48.036882 : -122.7599 : Port Hadlock, WA +98340 : 47.910628 : -122.57489 : Hansville, WA +98342 : 47.74878 : -122.53051 : Indianola, WA +98343 : 48.18315 : -123.872972 : Joyce, WA +98344 : 46.989916 : -122.222642 : Kapowsin, WA +98345 : 47.702342 : -122.62554 : Keyport, WA +98346 : 47.807359 : -122.51962 : Kingston, WA +98348 : 47.066193 : -122.113223 : La Grande, WA +98349 : 47.268551 : -122.76897 : Lakebay, WA +98350 : 47.905815 : -124.62202 : La Push, WA +98351 : 47.200168 : -122.77537 : Longbranch, WA +98352 : 47.066193 : -122.113223 : Sumner, WA +98353 : 47.553289 : -122.54535 : Manchester, WA +98354 : 47.248208 : -122.31737 : Milton, WA +98355 : 46.711036 : -122.0348 : Mineral, WA +98356 : 46.562676 : -122.29514 : Morton, WA +98357 : 48.35306 : -124.64076 : Neah Bay, WA +98358 : 48.058323 : -122.68794 : Nordland, WA +98359 : 47.43025 : -122.57159 : Olalla, WA +98360 : 47.039607 : -122.14691 : Orting, WA +98361 : 46.580048 : -121.61674 : Packwood, WA +98362 : 48.097144 : -123.40628 : Port Angeles, WA +98363 : 48.102836 : -123.63765 : Port Angeles, WA +98364 : 47.854503 : -122.59122 : Port Gamble, WA +98365 : 47.907561 : -122.69416 : Port Ludlow, WA +98366 : 47.53587 : -122.59905 : Port Orchard, WA +98367 : 47.470971 : -122.66335 : Port Orchard, WA +98368 : 48.100255 : -122.79736 : Port Townsend, WA +98370 : 47.743302 : -122.63041 : Poulsbo, WA +98371 : 47.196272 : -122.31577 : Puyallup, WA +98372 : 47.198591 : -122.27131 : Puyallup, WA +98373 : 47.147862 : -122.31864 : Puyallup, WA +98374 : 47.140045 : -122.26012 : Puyallup, WA +98375 : 47.112477 : -122.32247 : Puyallup, WA +98376 : 47.826111 : -122.85233 : Quilcene, WA +98377 : 46.525156 : -121.85094 : Randle, WA +98378 : 47.687971 : -122.729304 : Retsil, WA +98380 : 47.596122 : -122.89456 : Seabeck, WA +98381 : 48.283826 : -124.37144 : Sekiu, WA +98382 : 48.079979 : -123.09916 : Sequim, WA +98383 : 47.667257 : -122.69055 : Silverdale, WA +98384 : 47.521803 : -122.539637 : South Colby, WA +98385 : 47.138345 : -122.09819 : South Prairie, WA +98386 : 47.51037 : -122.499139 : Southworth, WA +98387 : 47.077796 : -122.40517 : Spanaway, WA +98388 : 47.164965 : -122.6005 : Steilacoom, WA +98389 : 47.137872 : -122.09356 : South Prairie, WA +98390 : 47.196364 : -122.1887 : Sumner, WA +98392 : 47.735065 : -122.55751 : Suquamish, WA +98393 : 47.626717 : -122.649953 : Tracyton, WA +98394 : 47.336226 : -122.78309 : Vaughn, WA +98395 : 47.266017 : -122.832799 : Wauna, WA +98396 : 47.106024 : -122.0451 : Wilkeson, WA +98397 : 47.066193 : -122.113223 : Longmire, WA +98398 : 47.066193 : -122.113223 : Paradise Inn, WA +98401 : 47.253671 : -122.444335 : Tacoma, WA +98402 : 47.247671 : -122.43971 : Tacoma, WA +98403 : 47.263971 : -122.45879 : Tacoma, WA +98404 : 47.212421 : -122.4156 : Tacoma, WA +98405 : 47.248953 : -122.46599 : Tacoma, WA +98406 : 47.26302 : -122.49518 : Tacoma, WA +98407 : 47.28392 : -122.50433 : Tacoma, WA +98408 : 47.209021 : -122.44498 : Tacoma, WA +98409 : 47.208987 : -122.48053 : Tacoma, WA +98411 : 47.066193 : -122.113223 : Tacoma, WA +98412 : 47.066193 : -122.113223 : Tacoma, WA +98413 : 47.066193 : -122.113223 : Tacoma, WA +98415 : 47.066193 : -122.113223 : Tacoma, WA +98416 : 47.264577 : -122.482076 : Tacoma, WA +98418 : 47.066193 : -122.113223 : Tacoma, WA +98421 : 47.250681 : -122.41213 : Tacoma, WA +98422 : 47.296007 : -122.39835 : Tacoma, WA +98424 : 47.242186 : -122.35916 : Tacoma, WA +98430 : 47.066193 : -122.113223 : Camp Murray, WA +98431 : 47.066193 : -122.113223 : Tacoma, WA +98433 : 47.080682 : -122.57987 : Tacoma, WA +98434 : 47.066193 : -122.113223 : Tacoma, WA +98438 : 47.151297 : -122.567631 : Tacoma, WA +98439 : 47.12562 : -122.52294 : Lakewood, WA +98442 : 47.308061 : -122.418495 : Tacoma, WA +98443 : 47.202874 : -122.37678 : Tacoma, WA +98444 : 47.153571 : -122.4485 : Tacoma, WA +98445 : 47.148269 : -122.41196 : Tacoma, WA +98446 : 47.1309 : -122.37589 : Tacoma, WA +98447 : 47.066193 : -122.113223 : Tacoma, WA +98448 : 47.136544 : -122.422431 : Parkland, WA +98450 : 47.066193 : -122.113223 : Tacoma, WA +98455 : 47.066193 : -122.113223 : Tacoma, WA +98460 : 47.066193 : -122.113223 : Tacoma, WA +98464 : 47.066193 : -122.113223 : Tacoma, WA +98465 : 47.247735 : -122.52818 : Tacoma, WA +98466 : 47.230402 : -122.53272 : Tacoma, WA +98467 : 47.203946 : -122.52996 : University Place, WA +98468 : 46.843337 : -123.228797 : Oakville, WA +98471 : 47.066193 : -122.113223 : Tacoma, WA +98477 : 47.066193 : -122.113223 : Tacoma, WA +98481 : 47.066193 : -122.113223 : Tacoma, WA +98485 : 47.140655 : -122.100892 : South Prairie, WA +98492 : 47.066193 : -122.113223 : Lakewood, WA +98493 : 47.066193 : -122.113223 : Tacoma, WA +98494 : 47.066193 : -122.113223 : Tacoma, WA +98497 : 47.066193 : -122.113223 : Lakewood, WA +98498 : 47.16062 : -122.55877 : Lakewood, WA +98499 : 47.16632 : -122.50844 : Lakewood, WA +98500 : 46.985519 : -122.907649 : Tumwater, WA +98501 : 47.014718 : -122.8819 : Olympia, WA +98502 : 47.071484 : -122.97702 : Olympia, WA +98503 : 47.027082 : -122.80359 : Lacey, WA +98504 : 46.978118 : -122.702393 : Olympia, WA +98505 : 47.065404 : -122.976187 : Olympia, WA +98506 : 47.069339 : -122.87249 : Olympia, WA +98507 : 46.978118 : -122.702393 : Olympia, WA +98508 : 46.978118 : -122.702393 : Olympia, WA +98509 : 46.978118 : -122.702393 : Lacey, WA +98512 : 46.969793 : -122.99802 : Olympia, WA +98513 : 47.00581 : -122.75285 : Olympia, WA +98516 : 47.085046 : -122.78376 : Olympia, WA +98520 : 46.972965 : -123.81923 : Aberdeen, WA +98522 : 46.571323 : -123.298384 : Adna, WA +98524 : 47.374343 : -122.8388 : Allyn, WA +98526 : 47.463965 : -124.02938 : Amanda Park, WA +98527 : 46.630051 : -123.95463 : Bay Center, WA +98528 : 47.445292 : -122.88417 : Belfair, WA +98530 : 46.797382 : -122.85123 : Bucoda, WA +98531 : 46.728383 : -122.95142 : Centralia, WA +98532 : 46.630721 : -123.01599 : Chehalis, WA +98533 : 46.588026 : -122.53345 : Cinebar, WA +98535 : 47.118566 : -124.16027 : Copalis Beach, WA +98536 : 47.179475 : -124.14241 : Copalis Crossing, WA +98537 : 46.899189 : -123.6907 : Cosmopolis, WA +98538 : 46.483547 : -123.1016 : Curtis, WA +98539 : 46.637787 : -123.2798 : Doty, WA +98540 : 46.978118 : -122.702393 : East Olympia, WA +98541 : 47.03575 : -123.40713 : Elma, WA +98542 : 46.532624 : -122.74407 : Ethel, WA +98544 : 46.734909 : -123.02536 : Galvin, WA +98546 : 47.321442 : -122.92935 : Grapeview, WA +98547 : 46.781978 : -124.08111 : Grayland, WA +98548 : 47.446725 : -123.21175 : Hoodsport, WA +98550 : 47.026913 : -123.91732 : Hoquiam, WA +98552 : 47.355226 : -123.90189 : Humptulips, WA +98554 : 46.561375 : -123.54788 : Lebam, WA +98555 : 47.521614 : -123.06888 : Lilliwaup, WA +98556 : 46.902376 : -123.017043 : Littlerock, WA +98557 : 47.054419 : -123.2739 : Mccleary, WA +98558 : 46.955863 : -122.55585 : Mckenna, WA +98559 : 46.959091 : -123.32595 : Malone, WA +98560 : 47.26332 : -123.43097 : Matlock, WA +98561 : 46.514625 : -123.76903 : Menlo, WA +98562 : 47.254009 : -124.20789 : Moclips, WA +98563 : 47.034615 : -123.60332 : Montesano, WA +98564 : 46.50494 : -122.48668 : Mossyrock, WA +98565 : 46.580105 : -122.90699 : Napavine, WA +98566 : 47.387674 : -123.890317 : Neilton, WA +98568 : 46.84066 : -123.25649 : Oakville, WA +98569 : 46.983877 : -124.15607 : Ocean Shores, WA +98570 : 46.593526 : -122.65346 : Onalaska, WA +98571 : 47.216861 : -124.1974 : Pacific Beach, WA +98572 : 46.569107 : -123.30578 : Pe Ell, WA +98575 : 47.489864 : -123.81031 : Quinault, WA +98576 : 46.871178 : -122.67573 : Rainier, WA +98577 : 46.668744 : -123.67708 : Raymond, WA +98579 : 46.814438 : -123.08647 : Rochester, WA +98580 : 46.954282 : -122.48754 : Roy, WA +98581 : 46.373347 : -123.05308 : Ryderwood, WA +98582 : 46.513653 : -122.62556 : Salkum, WA +98583 : 47.002178 : -123.483596 : Satsop, WA +98584 : 47.224044 : -123.10538 : Shelton, WA +98585 : 46.528282 : -122.57616 : Silver Creek, WA +98586 : 46.560786 : -123.85214 : South Bend, WA +98587 : 47.32251 : -124.25814 : Taholah, WA +98588 : 47.433993 : -123.02078 : Tahuya, WA +98589 : 46.857968 : -122.8326 : Tenino, WA +98590 : 46.737458 : -123.98121 : Tokeland, WA +98591 : 46.433226 : -122.80083 : Toledo, WA +98592 : 47.33179 : -123.07403 : Union, WA +98593 : 46.40521 : -122.9827 : Vader, WA +98595 : 46.887187 : -124.10735 : Westport, WA +98596 : 46.493247 : -122.92262 : Winlock, WA +98597 : 46.893352 : -122.56719 : Yelm, WA +98599 : 46.978118 : -122.702393 : Olympia, WA +98601 : 45.935656 : -122.43726 : Amboy, WA +98602 : 45.844123 : -121.29141 : Appleton, WA +98603 : 46.001752 : -122.45624 : Ariel, WA +98604 : 45.791345 : -122.51789 : Battle Ground, WA +98605 : 45.719294 : -121.47838 : Bingen, WA +98606 : 45.73451 : -122.48034 : Brush Prairie, WA +98607 : 45.60916 : -122.40547 : Camas, WA +98609 : 46.071482 : -122.864838 : Carrolls, WA +98610 : 45.801513 : -121.91147 : Carson, WA +98611 : 46.308371 : -122.8987 : Castle Rock, WA +98612 : 46.208318 : -123.34624 : Cathlamet, WA +98613 : 45.722786 : -120.96163 : Centerville, WA +98614 : 46.282397 : -123.93844 : Chinook, WA +98616 : 46.06517 : -122.29411 : Cougar, WA +98617 : 45.632051 : -121.16835 : Dallesport, WA +98619 : 46.018228 : -121.28904 : Glenwood, WA +98620 : 45.846697 : -120.75703 : Goldendale, WA +98621 : 46.348706 : -123.58307 : Grays River, WA +98622 : 45.801586 : -122.520347 : Heisson, WA +98623 : 45.807631 : -121.487682 : Husum, WA +98624 : 46.312541 : -124.02968 : Ilwaco, WA +98625 : 46.015873 : -122.79718 : Kalama, WA +98626 : 46.150433 : -122.88566 : Kelso, WA +98628 : 45.82786 : -121.09804 : Klickitat, WA +98629 : 45.8768 : -122.62193 : La Center, WA +98631 : 46.365773 : -124.05022 : Long Beach, WA +98632 : 46.156082 : -122.98043 : Longview, WA +98635 : 45.726451 : -121.19784 : Lyle, WA +98637 : 46.514625 : -123.76903 : Nahcotta, WA +98638 : 46.370075 : -123.76506 : Naselle, WA +98639 : 45.650041 : -121.97167 : North Bonneville, WA +98640 : 46.501781 : -124.04801 : Ocean Park, WA +98641 : 46.554 : -124.02626 : Oysterville, WA +98642 : 45.795825 : -122.69804 : Ridgefield, WA +98643 : 46.302905 : -123.62473 : Rosburg, WA +98644 : 46.332077 : -124.05517 : Seaview, WA +98645 : 46.318482 : -122.7757 : Silverlake, WA +98647 : 46.296658 : -123.46828 : Skamokawa, WA +98648 : 45.669604 : -121.91332 : Stevenson, WA +98649 : 46.352771 : -122.66054 : Toutle, WA +98650 : 45.981582 : -121.5395 : Trout Lake, WA +98651 : 45.730656 : -121.57558 : Underwood, WA +98653 : 45.694098 : -121.286091 : Lyle, WA +98655 : 45.678557 : -122.663954 : Hazel Dell North, WA +98660 : 45.652255 : -122.69009 : Vancouver, WA +98661 : 45.63873 : -122.62846 : Vancouver, WA +98662 : 45.671806 : -122.57894 : Vancouver, WA +98663 : 45.647667 : -122.66162 : Vancouver, WA +98664 : 45.62104 : -122.57947 : Vancouver, WA +98665 : 45.681271 : -122.66712 : Vancouver, WA +98666 : 45.801586 : -122.520347 : Vancouver, WA +98667 : 45.801586 : -122.520347 : Vancouver, WA +98668 : 45.801586 : -122.520347 : Vancouver, WA +98670 : 45.859065 : -121.14615 : Wahkiacus, WA +98671 : 45.594465 : -122.28112 : Washougal, WA +98672 : 45.786727 : -121.47523 : White Salmon, WA +98673 : 45.661878 : -120.94997 : Wishram, WA +98674 : 45.928662 : -122.70284 : Woodland, WA +98675 : 45.843674 : -122.39221 : Yacolt, WA +98682 : 45.67309 : -122.51319 : Vancouver, WA +98683 : 45.604075 : -122.51035 : Vancouver, WA +98684 : 45.627459 : -122.52023 : Vancouver, WA +98685 : 45.709555 : -122.68473 : Vancouver, WA +98686 : 45.712623 : -122.63419 : Vancouver, WA +98687 : 45.801586 : -122.520347 : Vancouver, WA +98731 : 47.185462 : -122.353089 : Waller, WA +98801 : 47.425497 : -120.32881 : Wenatchee, WA +98802 : 47.436898 : -120.25742 : East Wenatchee, WA +98807 : 47.905787 : -120.520211 : Wenatchee, WA +98811 : 47.737028 : -120.37126 : Ardenvoir, WA +98812 : 48.112268 : -119.75203 : Brewster, WA +98813 : 47.999618 : -119.66129 : Bridgeport, WA +98814 : 48.231421 : -120.12065 : Carlton, WA +98815 : 47.522546 : -120.48966 : Cashmere, WA +98816 : 47.880774 : -120.08379 : Chelan, WA +98817 : 47.79955 : -119.98921 : Chelan Falls, WA +98819 : 48.559477 : -119.75474 : Conconully, WA +98821 : 47.541723 : -120.5614 : Dryden, WA +98822 : 47.782158 : -120.35944 : Entiat, WA +98823 : 47.297368 : -119.57129 : Ephrata, WA +98824 : 47.079243 : -119.860117 : George, WA +98826 : 47.728186 : -120.73874 : Leavenworth, WA +98827 : 48.885618 : -119.68939 : Loomis, WA +98828 : 47.333821 : -120.19929 : Malaga, WA +98829 : 48.267188 : -119.73538 : Malott, WA +98830 : 47.880616 : -119.54481 : Mansfield, WA +98831 : 47.915227 : -120.12934 : Manson, WA +98832 : 47.290624 : -119.03268 : Marlin, WA +98833 : 48.634796 : -120.47681 : Mazama, WA +98834 : 48.138528 : -120.02851 : Methow, WA +98836 : 47.481133 : -120.41354 : Monitor, WA +98837 : 47.133606 : -119.28455 : Moses Lake, WA +98840 : 48.343356 : -119.57656 : Okanogan, WA +98841 : 48.403174 : -119.39066 : Omak, WA +98843 : 47.745842 : -120.09326 : Orondo, WA +98844 : 48.9332 : -119.38169 : Oroville, WA +98845 : 47.466573 : -119.82091 : Palisades, WA +98846 : 48.03925 : -119.9395 : Pateros, WA +98847 : 47.552462 : -120.60457 : Peshastin, WA +98848 : 47.18227 : -119.85868 : Quincy, WA +98849 : 48.528793 : -119.45276 : Riverside, WA +98850 : 47.360902 : -120.11338 : Rock Island, WA +98851 : 47.400024 : -119.4624 : Soap Lake, WA +98852 : 48.494944 : -120.73348 : Stehekin, WA +98853 : 47.417461 : -119.28312 : Stratford, WA +98855 : 48.689509 : -119.32169 : Tonasket, WA +98856 : 48.359904 : -120.13051 : Twisp, WA +98857 : 46.970666 : -119.0672 : Warden, WA +98858 : 47.63205 : -119.90423 : Waterville, WA +98859 : 48.810894 : -118.93303 : Wauconda, WA +98860 : 47.458634 : -119.13921 : Wilson Creek, WA +98862 : 48.488543 : -120.24261 : Winthrop, WA +98901 : 46.616199 : -120.46481 : Yakima, WA +98902 : 46.595248 : -120.53102 : Yakima, WA +98903 : 46.550348 : -120.62097 : Yakima, WA +98904 : 46.56451 : -120.694658 : Yakima, WA +98907 : 46.628757 : -120.573967 : Yakima, WA +98908 : 46.605303 : -120.61762 : Yakima, WA +98909 : 46.637538 : -120.794978 : Yakima, WA +98920 : 46.56451 : -120.694658 : Brownstown, WA +98921 : 46.421218 : -120.315141 : Buena, WA +98922 : 47.19377 : -120.91733 : Cle Elum, WA +98923 : 46.662006 : -120.71558 : Cowiche, WA +98925 : 47.3042 : -121.24849 : Easton, WA +98926 : 47.009726 : -120.52364 : Ellensburg, WA +98929 : 46.915735 : -121.241591 : Goose Prairie, WA +98930 : 46.260129 : -119.90614 : Grandview, WA +98932 : 46.345166 : -120.1843 : Granger, WA +98933 : 46.406875 : -120.62421 : Harrah, WA +98934 : 46.984565 : -120.41782 : Kittitas, WA +98935 : 46.177732 : -120.02966 : Mabton, WA +98936 : 46.540842 : -120.33322 : Moxee, WA +98937 : 46.71207 : -120.97097 : Naches, WA +98938 : 46.364164 : -120.09871 : Outlook, WA +98939 : 46.56451 : -120.694658 : Parker, WA +98940 : 47.33394 : -121.02979 : Ronald, WA +98941 : 47.224876 : -120.99286 : Roslyn, WA +98942 : 46.726395 : -120.56997 : Selah, WA +98943 : 47.186592 : -120.95503 : South Cle Elum, WA +98944 : 46.342102 : -119.99 : Sunnyside, WA +98946 : 47.087352 : -120.71232 : Thorp, WA +98947 : 46.707735 : -120.75713 : Tieton, WA +98948 : 46.35653 : -120.33462 : Toppenish, WA +98950 : 46.880413 : -119.98939 : Vantage, WA +98951 : 46.457731 : -120.46721 : Wapato, WA +98952 : 46.377579 : -120.7144 : White Swan, WA +98953 : 46.418933 : -120.26699 : Zillah, WA +98991 : 47.221837 : -120.993126 : Roslyn, WA +99001 : 47.642922 : -117.59149 : Airway Heights, WA +99003 : 47.921687 : -117.29378 : Chattaroy, WA +99004 : 47.466974 : -117.60575 : Cheney, WA +99005 : 47.844289 : -117.37274 : Colbert, WA +99006 : 47.966471 : -117.48145 : Deer Park, WA +99008 : 47.50505 : -117.93432 : Edwall, WA +99009 : 48.041663 : -117.24891 : Elk, WA +99011 : 47.595572 : -117.67344 : Fairchild Air Force Base, WA +99012 : 47.383651 : -117.18568 : Fairfield, WA +99013 : 47.889348 : -117.82325 : Ford, WA +99014 : 47.55988 : -117.595751 : Four Lakes, WA +99015 : 47.653568 : -117.431742 : Freeman, WA +99016 : 47.648693 : -117.15116 : Greenacres, WA +99017 : 47.197445 : -117.85558 : Lamont, WA +99018 : 47.277842 : -117.13639 : Latah, WA +99019 : 47.656171 : -117.08628 : Liberty Lake, WA +99020 : 47.563191 : -117.4959 : Marshall, WA +99021 : 47.81108 : -117.22306 : Mead, WA +99022 : 47.583754 : -117.68812 : Medical Lake, WA +99023 : 47.554592 : -117.18352 : Mica, WA +99025 : 47.751434 : -117.06934 : Newman Lake, WA +99026 : 47.801194 : -117.59325 : Nine Mile Falls, WA +99027 : 47.703698 : -117.12007 : Otis Orchards, WA +99029 : 47.693129 : -117.86164 : Reardan, WA +99030 : 47.463725 : -117.11319 : Rockford, WA +99031 : 47.432691 : -117.37449 : Spangle, WA +99032 : 47.273264 : -117.99082 : Sprague, WA +99033 : 47.222328 : -117.08133 : Tekoa, WA +99034 : 47.858074 : -117.74582 : Tumtum, WA +99036 : 47.52507 : -117.27054 : Valleyford, WA +99037 : 47.643346 : -117.19993 : Veradale, WA +99039 : 47.329704 : -117.244981 : Waverly, WA +99040 : 47.863857 : -118.03661 : Wellpinit, WA +99066 : 47.951939 : -117.472694 : Deer Park, WA +99101 : 48.305861 : -117.94318 : Addy, WA +99102 : 46.793604 : -117.25208 : Albion, WA +99103 : 47.721863 : -118.95554 : Almira, WA +99104 : 47.079345 : -117.176954 : Belmont, WA +99105 : 46.866805 : -118.13247 : Benge, WA +99107 : 48.84269 : -118.182764 : Boyds, WA +99109 : 48.269784 : -117.73437 : Chewelah, WA +99110 : 48.012084 : -117.57306 : Clayton, WA +99111 : 46.875136 : -117.4092 : Colfax, WA +99113 : 46.577614 : -117.16133 : Colton, WA +99114 : 48.658512 : -117.7671 : Colville, WA +99115 : 47.646132 : -119.3827 : Coulee City, WA +99116 : 47.995847 : -118.95862 : Coulee Dam, WA +99117 : 47.757764 : -118.49343 : Creston, WA +99118 : 48.890892 : -118.64475 : Curlew, WA +99119 : 48.504786 : -117.31689 : Cusick, WA +99121 : 48.977629 : -118.51457 : Danville, WA +99122 : 47.671143 : -118.18938 : Davenport, WA +99123 : 47.907923 : -119.06531 : Electric City, WA +99124 : 47.998468 : -118.95248 : Elmer City, WA +99125 : 46.941628 : -117.7293 : Endicott, WA +99126 : 48.733324 : -117.97348 : Evans, WA +99127 : 46.838747 : -117.644337 : Saint John, WA +99128 : 47.091551 : -116.99158 : Farmington, ID +99129 : 48.003202 : -118.21339 : Fruitland, WA +99130 : 46.983768 : -117.19597 : Garfield, WA +99131 : 48.290089 : -118.09326 : Gifford, WA +99133 : 47.947097 : -119.00713 : Grand Coulee, WA +99134 : 47.460312 : -118.38258 : Harrington, WA +99135 : 47.641983 : -119.08897 : Hartline, WA +99136 : 46.669207 : -117.96015 : Hay, WA +99137 : 48.174649 : -118.11361 : Hunters, WA +99138 : 48.207661 : -118.2979 : Inchelium, WA +99139 : 48.736168 : -117.4111 : Ione, WA +99140 : 48.080515 : -118.69498 : Keller, WA +99141 : 48.690209 : -118.10045 : Kettle Falls, WA +99143 : 46.792982 : -117.91313 : Lacrosse, WA +99144 : 47.60894 : -118.399551 : Lamona, WA +99146 : 48.92816 : -118.2897 : Laurier, WA +99147 : 47.60894 : -118.399551 : Lincoln, WA +99148 : 48.102048 : -117.6013 : Loon Lake, WA +99149 : 47.227436 : -117.47364 : Malden, WA +99150 : 48.810879 : -118.59088 : Malo, WA +99151 : 48.664206 : -118.06417 : Marcus, WA +99152 : 48.858688 : -117.39106 : Metaline, WA +99153 : 48.858518 : -117.29833 : Metaline Falls, WA +99154 : 47.376884 : -118.3799 : Mohler, WA +99155 : 48.17266 : -119.00126 : Nespelem, WA +99156 : 48.159752 : -117.16984 : Newport, WA +99157 : 48.897876 : -117.81647 : Northport, WA +99158 : 47.136249 : -117.25463 : Oakesdale, WA +99159 : 47.338736 : -118.70235 : Odessa, WA +99160 : 48.86407 : -118.20557 : Orient, WA +99161 : 46.905132 : -117.10575 : Palouse, WA +99163 : 46.732705 : -117.18648 : Pullman, WA +99164 : 46.838747 : -117.644337 : Pullman, WA +99165 : 46.838747 : -117.644337 : Pullman, WA +99166 : 48.657684 : -118.72647 : Republic, WA +99167 : 48.406582 : -118.11029 : Rice, WA +99169 : 47.107228 : -118.43136 : Ritzville, WA +99170 : 47.240334 : -117.37365 : Rosalia, WA +99171 : 47.11653 : -117.63938 : Saint John, WA +99173 : 48.030848 : -117.79563 : Springdale, WA +99174 : 46.838747 : -117.644337 : Steptoe, WA +99176 : 47.117965 : -117.41047 : Thornton, WA +99179 : 46.516794 : -117.08202 : Uniontown, WA +99180 : 48.295497 : -117.29236 : Usk, WA +99181 : 48.144634 : -117.74564 : Valley, WA +99185 : 47.756616 : -118.70628 : Wilbur, WA +99201 : 47.663945 : -117.43185 : Spokane, WA +99202 : 47.656692 : -117.37899 : Spokane, WA +99203 : 47.629091 : -117.40636 : Spokane, WA +99204 : 47.648941 : -117.43174 : Spokane, WA +99205 : 47.69399 : -117.43979 : Spokane, WA +99206 : 47.646994 : -117.25912 : Spokane, WA +99207 : 47.693741 : -117.38829 : Spokane, WA +99208 : 47.740491 : -117.43916 : Spokane, WA +99209 : 47.646148 : -117.793734 : Spokane, WA +99210 : 47.653568 : -117.431742 : Spokane, WA +99211 : 47.653568 : -117.431742 : Spokane, WA +99212 : 47.668926 : -117.30668 : Spokane, WA +99213 : 47.656726 : -117.282483 : Spokane, WA +99214 : 47.653568 : -117.431742 : Spokane, WA +99215 : 47.653568 : -117.431742 : Spokane, WA +99216 : 47.665819 : -117.21699 : Spokane, WA +99217 : 47.707542 : -117.33776 : Spokane, WA +99218 : 47.751674 : -117.4124 : Spokane, WA +99219 : 47.653568 : -117.431742 : Spokane, WA +99220 : 47.653568 : -117.431742 : Spokane, WA +99223 : 47.614744 : -117.35892 : Spokane, WA +99224 : 47.632573 : -117.49326 : Spokane, WA +99228 : 47.653568 : -117.431742 : Spokane, WA +99251 : 47.653568 : -117.431742 : Spokane, WA +99252 : 47.653568 : -117.431742 : Spokane, WA +99256 : 47.653568 : -117.431742 : Spokane, WA +99258 : 47.653568 : -117.431742 : Spokane, WA +99260 : 47.653568 : -117.431742 : Spokane, WA +99299 : 47.653568 : -117.431742 : Spokane, WA +99301 : 46.270249 : -119.09462 : Pasco, WA +99302 : 46.234957 : -119.094271 : Pasco, WA +99309 : 46.731046 : -119.901931 : Mattawa, WA +99319 : 46.68039 : -119.911288 : Desert Aire, WA +99320 : 46.263399 : -119.47909 : Benton City, WA +99321 : 46.834349 : -119.93088 : Beverly, WA +99322 : 45.963054 : -120.25547 : Bickleton, WA +99323 : 46.191158 : -118.87987 : Burbank, WA +99324 : 46.044936 : -118.38466 : College Place, WA +99326 : 46.675704 : -118.8823 : Connell, WA +99327 : 46.828931 : -118.829153 : Cunningham, WA +99328 : 46.319087 : -117.96887 : Dayton, WA +99329 : 46.138753 : -118.15325 : Dixie, WA +99330 : 46.467186 : -119.06888 : Eltopia, WA +99332 : 46.776386 : -118.82892 : Hatton, WA +99333 : 46.838747 : -117.644337 : Hooper, WA +99335 : 46.648121 : -118.55652 : Kahlotus, WA +99336 : 46.210957 : -119.16369 : Kennewick, WA +99337 : 46.169982 : -119.10456 : Kennewick, WA +99338 : 46.192356 : -119.23982 : Kennewick, WA +99341 : 46.912194 : -118.63676 : Lind, WA +99343 : 46.581454 : -119.12107 : Mesa, WA +99344 : 46.843397 : -119.17443 : Othello, WA +99345 : 45.922025 : -119.67687 : Paterson, WA +99346 : 45.960734 : -119.35637 : Plymouth, WA +99347 : 46.44754 : -117.57295 : Pomeroy, WA +99348 : 46.408852 : -118.44876 : Prescott, WA +99349 : 46.726526 : -119.8857 : Mattawa, WA +99350 : 46.208571 : -119.74507 : Prosser, WA +99352 : 46.279657 : -119.28137 : Richland, WA +99353 : 46.297139 : -119.35457 : West Richland, WA +99356 : 45.816528 : -120.28372 : Roosevelt, WA +99357 : 46.922079 : -119.67175 : Royal City, WA +99359 : 46.523206 : -118.19393 : Starbuck, WA +99360 : 46.059286 : -118.67264 : Touchet, WA +99361 : 46.209202 : -118.15884 : Waitsburg, WA +99362 : 45.986775 : -118.07919 : Walla Walla, OR +99363 : 46.059013 : -118.88468 : Wallula, WA +99371 : 46.782783 : -118.2869 : Washtucna, WA +99401 : 46.086657 : -117.2491 : Anatone, WA +99402 : 46.230508 : -117.12916 : Asotin, WA +99403 : 46.400365 : -117.08313 : Clarkston, WA +99501 : 61.216799 : -149.87828 : Anchorage, AK +99502 : 61.153693 : -149.95932 : Anchorage, AK +99503 : 61.19026 : -149.89341 : Anchorage, AK +99504 : 61.204466 : -149.74633 : Anchorage, AK +99505 : 61.261518 : -149.66336 : Fort Richardson, AK +99506 : 61.224384 : -149.77461 : Elmendorf AFB, AK +99507 : 61.154834 : -149.82865 : Anchorage, AK +99508 : 61.203953 : -149.8144 : Anchorage, AK +99509 : 61.108864 : -149.440311 : Anchorage, AK +99510 : 61.144568 : -149.878418 : Anchorage, AK +99511 : 61.068324 : -149.800476 : Anchorage, AK +99512 : 61.203954 : -149.808426 : Anchorage, AK +99513 : 61.214877 : -149.88617 : Anchorage, AK +99514 : 61.108864 : -149.440311 : Anchorage, AK +99515 : 61.122943 : -149.88852 : Anchorage, AK +99516 : 61.101142 : -149.77311 : Anchorage, AK +99517 : 61.188276 : -149.93438 : Anchorage, AK +99518 : 61.156565 : -149.88335 : Anchorage, AK +99519 : 61.108864 : -149.440311 : Anchorage, AK +99520 : 61.108864 : -149.440311 : Anchorage, AK +99521 : 61.108864 : -149.440311 : Anchorage, AK +99522 : 61.108864 : -149.440311 : Anchorage, AK +99523 : 61.108864 : -149.440311 : Anchorage, AK +99524 : 61.108864 : -149.440311 : Anchorage, AK +99536 : 46.216706 : -119.160173 : Kennewick, WA +99540 : 60.973454 : -149.4583 : Indian, AK +99546 : 51.87957 : -176.63675 : Adak, AK +99547 : 52.227555 : -174.19628 : Atka, AK +99548 : 56.252156 : -158.74638 : Chignik Lake, AK +99549 : 56.946256 : -158.62832 : Port Heiden, AK +99550 : 57.867089 : -152.88568 : Port Lions, AK +99551 : 60.88981 : -161.42393 : Akiachak, AK +99552 : 60.911865 : -161.22577 : Akiak, AK +99553 : 54.098693 : -165.88176 : Akutan, AK +99554 : 62.683391 : -164.65455 : Alakanuk, AK +99555 : 59.269535 : -158.62458 : Aleknagik, AK +99556 : 59.798363 : -151.73566 : Anchor Point, AK +99557 : 61.570981 : -158.88072 : Aniak, AK +99558 : 62.632905 : -160.21336 : Anvik, AK +99559 : 60.766603 : -161.88006 : Bethel, AK +99561 : 60.143735 : -164.25283 : Chefornak, AK +99563 : 61.527953 : -165.57029 : Chevak, AK +99564 : 56.298297 : -158.4044 : Chignik, AK +99565 : 56.307535 : -158.53502 : Chignik Lagoon, AK +99566 : 61.555701 : -144.14233 : Chitina, AK +99567 : 61.413717 : -149.42644 : Chugiak, AK +99568 : 60.23458 : -151.3934 : Clam Gulch, AK +99569 : 58.83256 : -158.55254 : Clarks Point, AK +99571 : 55.315003 : -162.634 : Cold Bay, AK +99572 : 60.484146 : -149.78153 : Cooper Landing, AK +99573 : 61.832347 : -145.2308 : Copper Center, AK +99574 : 60.474512 : -145.40256 : Cordova, AK +99575 : 61.859821 : -158.12888 : Crooked Creek, AK +99576 : 59.068709 : -158.44407 : Dillingham, AK +99577 : 61.310222 : -149.51689 : Eagle River, AK +99578 : 60.214239 : -162.03799 : Eek, AK +99579 : 58.217621 : -157.34841 : Egegik, AK +99580 : 59.360233 : -157.4838 : Ekwok, AK +99581 : 62.729019 : -164.29917 : Emmonak, AK +99583 : 54.849999 : -163.42011 : False Pass, AK +99584 : 65.226375 : -151.025085 : Flat, AK +99585 : 61.878073 : -162.08481 : Marshall, AK +99586 : 62.667589 : -144.49059 : Gakona, AK +99587 : 60.952049 : -149.0838 : Girdwood, AK +99588 : 62.12042 : -145.58592 : Glennallen, AK +99589 : 59.125873 : -161.59999 : Goodnews Bay, AK +99590 : 62.90813 : -160.06675 : Grayling, AK +99591 : 56.605546 : -169.55958 : Saint George Island, AK +99599 : 61.187188 : -149.880393 : Anchorage, AK +99602 : 62.198048 : -159.77341 : Holy Cross, AK +99603 : 59.665074 : -151.4493 : Homer, AK +99604 : 61.52898 : -166.09619 : Hooper Bay, AK +99605 : 60.911003 : -149.62708 : Hope, AK +99606 : 59.748806 : -154.8124 : Iliamna, AK +99607 : 61.535511 : -160.30165 : Kalskag, AK +99608 : 57.578081 : -154.36255 : Karluk, AK +99609 : 60.873178 : -162.5196 : Kasigluk, AK +99610 : 60.318451 : -151.28948 : Kasilof, AK +99611 : 60.587598 : -151.23355 : Kenai, AK +99612 : 55.063736 : -162.3124 : King Cove, AK +99613 : 58.687446 : -156.64007 : King Salmon, AK +99614 : 59.937619 : -164.04392 : Kipnuk, AK +99615 : 57.74663 : -152.51142 : Kodiak, AK +99619 : 58.268704 : -155.797078 : Kodiak, AK +99620 : 62.945434 : -163.76142 : Kotlik, AK +99621 : 60.810509 : -161.4219 : Kwethluk, AK +99622 : 59.870295 : -163.16752 : Kwigillingok, AK +99624 : 57.529161 : -154.00286 : Larsen Bay, AK +99625 : 59.116273 : -156.84802 : Levelock, AK +99626 : 61.518175 : -160.37019 : Lower Kalskag, AK +99627 : 62.94914 : -155.57265 : McGrath, AK +99628 : 58.981087 : -159.0558 : Manokotak, AK +99630 : 60.364246 : -166.28601 : Mekoryuk, AK +99631 : 60.499602 : -149.40247 : Moose Pass, AK +99632 : 62.090075 : -163.72393 : Mountain Village, AK +99633 : 58.745436 : -156.95331 : Naknek, AK +99634 : 60.695049 : -161.9909 : Napakiak, AK +99635 : 60.784804 : -151.06473 : Nikiski, AK +99636 : 59.452339 : -157.31368 : New Stuyahok, AK +99637 : 60.532936 : -165.10529 : Toksook Bay, AK +99638 : 52.785684 : -169.19469 : Nikolski, AK +99639 : 59.992821 : -151.54194 : Ninilchik, AK +99640 : 59.971286 : -154.85008 : Nondalton, AK +99641 : 60.898967 : -162.43712 : Nunapitchuk, AK +99643 : 57.19926 : -153.30438 : Old Harbor, AK +99644 : 57.929664 : -152.46085 : Ouzinkie, AK +99645 : 61.598203 : -149.04109 : Palmer, AK +99646 : 61.586896 : -149.094699 : Palmer, AK +99647 : 59.781241 : -154.10833 : Pedro Bay, AK +99648 : 55.91076 : -159.15591 : Perryville, AK +99649 : 57.508178 : -157.39907 : Pilot Point, AK +99650 : 61.93605 : -162.8834 : Pilot Station, AK +99651 : 59.00689 : -161.81529 : Platinum, AK +99652 : 61.556311 : -149.89098 : Big Lake, AK +99653 : 60.102331 : -154.55708 : Port Alsworth, AK +99654 : 61.580187 : -149.48821 : Wasilla, AK +99655 : 59.754016 : -161.90079 : Quinhagak, AK +99656 : 61.810587 : -157.3437 : Red Devil, AK +99657 : 61.785228 : -161.36476 : Russian Mission, AK +99658 : 62.048263 : -163.1937 : Saint Marys, AK +99659 : 63.477448 : -162.03841 : Saint Michael, AK +99660 : 57.130894 : -170.27203 : Saint Paul Island, AK +99661 : 55.311735 : -160.48813 : Sand Point, AK +99662 : 61.783788 : -165.53972 : Scammon Bay, AK +99663 : 59.422698 : -151.71513 : Seldovia, AK +99664 : 60.151652 : -149.41271 : Seward, AK +99665 : 62.655998 : -159.53113 : Shageluk, AK +99666 : 62.495675 : -164.97188 : Sheldon Point, AK +99667 : 61.898872 : -151.51587 : Skwentna, AK +99668 : 61.683931 : -157.15202 : Sleetmute, AK +99669 : 60.489536 : -151.02091 : Soldotna, AK +99670 : 58.71163 : -157.01746 : South Naknek, AK +99671 : 63.511893 : -162.27463 : Stebbins, AK +99672 : 60.532394 : -150.74033 : Sterling, AK +99674 : 61.751348 : -148.69632 : Sutton, AK +99675 : 62.969642 : -156.10264 : Takotna, AK +99676 : 62.298254 : -149.87542 : Talkeetna, AK +99677 : 60.863764 : -146.68013 : Tatitlek, AK +99678 : 59.101934 : -160.50353 : Togiak, AK +99679 : 61.102912 : -160.96325 : Tuluksak, AK +99680 : 60.343879 : -162.66587 : Tuntutuliak, AK +99681 : 60.582127 : -165.25645 : Tununak, AK +99682 : 61.067777 : -151.14169 : Tyonek, AK +99683 : 62.415294 : -150.37044 : Trapper Creek, AK +99684 : 63.882081 : -160.76294 : Unalakleet, AK +99685 : 53.872017 : -166.52287 : Unalaska, AK +99686 : 61.128176 : -146.2357 : Valdez, AK +99687 : 61.391728 : -149.99002 : Wasilla, AK +99688 : 61.796774 : -150.07792 : Willow, AK +99689 : 59.538728 : -139.71052 : Yakutat, AK +99690 : 60.527618 : -164.81976 : Nightmute, AK +99691 : 62.999213 : -154.41957 : Nikolai, AK +99692 : 53.883729 : -166.5485 : Dutch Harbor, AK +99693 : 60.639257 : -148.54211 : Whittier, AK +99694 : 61.629635 : -149.79507 : Houston, AK +99695 : 61.402544 : -150.57485 : Anchorage, AK +99697 : 57.564289 : -153.40755 : Kodiak, AK +99699 : 60.516935 : -150.719924 : Funny River, AK +99701 : 64.83507 : -147.72045 : Fairbanks, AK +99702 : 64.661627 : -147.02121 : Eielson AFB, AK +99703 : 64.827164 : -147.6265 : Fort Wainwright, AK +99704 : 64.289856 : -149.17778 : Clear, AK +99705 : 64.777233 : -147.3649 : North Pole, AK +99706 : 64.852055 : -147.937747 : Fairbanks, AK +99707 : 64.699839 : -147.405134 : Fairbanks, AK +99708 : 64.947462 : -147.856443 : Fairbanks, AK +99709 : 64.854937 : -147.87406 : Fairbanks, AK +99710 : 64.948648 : -147.535549 : Fairbanks, AK +99711 : 64.826445 : -147.38884 : Fairbanks, AK +99712 : 64.926041 : -147.49573 : Fairbanks, AK +99714 : 64.464105 : -146.91648 : Salcha, AK +99716 : 64.874591 : -146.898195 : Two Rivers, AK +99720 : 66.557586 : -152.6559 : Allakaket, AK +99721 : 68.148216 : -151.72854 : Anaktuvuk Pass, AK +99722 : 68.121828 : -145.52768 : Arctic Village, AK +99723 : 71.299525 : -156.74891 : Barrow, AK +99724 : 66.359719 : -147.39743 : Beaver, AK +99725 : 64.842326 : -148.02197 : Ester, AK +99726 : 66.917381 : -151.50508 : Bettles Field, AK +99727 : 65.979144 : -161.12225 : Buckland, AK +99729 : 63.255516 : -148.39873 : Cantwell, AK +99730 : 65.551022 : -144.71982 : Central, AK +99732 : 64.070738 : -141.87489 : Chicken, AK +99733 : 65.796306 : -144.06388 : Circle, AK +99734 : 66.693255 : -153.993988 : Prudhoe Bay, AK +99736 : 66.075713 : -162.71822 : Deering, AK +99737 : 63.978355 : -145.4623 : Delta Junction, AK +99738 : 64.778099 : -141.19257 : Eagle, AK +99739 : 64.620513 : -162.27718 : Elim, AK +99740 : 66.566652 : -145.28231 : Fort Yukon, AK +99741 : 64.739082 : -156.89456 : Galena, AK +99742 : 63.776098 : -171.70088 : Gambell, AK +99743 : 64.010218 : -149.10712 : Healy, AK +99744 : 64.349263 : -149.19265 : Anderson, AK +99745 : 66.044094 : -154.25703 : Hughes, AK +99746 : 65.701858 : -156.38713 : Huslia, AK +99747 : 70.13346 : -143.62436 : Kaktovik, AK +99748 : 64.324887 : -158.73204 : Kaltag, AK +99749 : 66.97172 : -160.43016 : Kiana, AK +99750 : 67.733313 : -164.54522 : Kivalina, AK +99751 : 66.908604 : -156.88828 : Kobuk, AK +99752 : 66.897192 : -162.58544 : Kotzebue, AK +99753 : 64.932225 : -161.15597 : Koyuk, AK +99754 : 64.881745 : -157.70439 : Koyukuk, AK +99755 : 63.657441 : -148.83396 : Denali National Park, AK +99756 : 65.021337 : -150.50318 : Manley Hot Springs, AK +99757 : 63.893902 : -152.30201 : Lake Minchumina, AK +99758 : 65.152583 : -149.39156 : Minto, AK +99759 : 69.741023 : -163.00861 : Point Lay, AK +99760 : 64.560888 : -149.07674 : Nenana, AK +99761 : 67.572031 : -162.97508 : Noatak, AK +99762 : 64.532616 : -165.10883 : Nome, AK +99763 : 66.83713 : -161.03664 : Noorvik, AK +99764 : 62.980725 : -141.82852 : Northway, AK +99765 : 64.730035 : -158.11178 : Nulato, AK +99766 : 68.347052 : -166.76291 : Point Hope, AK +99767 : 65.507883 : -150.1636 : Rampart, AK +99768 : 64.737306 : -155.48769 : Ruby, AK +99769 : 63.686038 : -170.4087 : Savoonga, AK +99770 : 66.597998 : -160.01772 : Selawik, AK +99771 : 64.343258 : -161.16785 : Shaktoolik, AK +99772 : 66.259417 : -165.73202 : Shishmaref, AK +99773 : 66.887401 : -157.14287 : Shungnak, AK +99774 : 66.005296 : -149.10303 : Stevens Village, AK +99775 : 64.860846 : -147.82681 : Fairbanks, AK +99776 : 63.376206 : -143.35699 : Tanacross, AK +99777 : 65.172029 : -152.08258 : Tanana, AK +99778 : 65.250432 : -166.35474 : Teller, AK +99779 : 63.135294 : -142.5323 : Tetlin, AK +99780 : 63.341767 : -142.93704 : Tok, AK +99781 : 67.015569 : -146.41736 : Venetie, AK +99782 : 70.640902 : -160.02481 : Wainwright, AK +99783 : 65.612116 : -168.08928 : Wales, AK +99784 : 64.684323 : -163.44257 : White Mountain, AK +99785 : 65.342744 : -166.51023 : Brevig Mission, AK +99786 : 67.083658 : -157.86225 : Ambler, AK +99788 : 66.653222 : -143.72717 : Chalkyitsik, AK +99789 : 70.215197 : -151.02746 : Nuiqsut, AK +99790 : 64.856055 : -146.27598 : Fairbanks, AK +99791 : 70.477663 : -157.41805 : Atqasuk, AK +99801 : 58.358599 : -134.54749 : Juneau, AK +99802 : 58.405657 : -134.58969 : Juneau, AK +99803 : 58.377074 : -134.617383 : Juneau, AK +99811 : 58.38348 : -134.197786 : Juneau, AK +99820 : 57.48765 : -134.57222 : Angoon, AK +99821 : 58.449413 : -134.700348 : Auke Bay, AK +99824 : 58.276192 : -134.39781 : Douglas, AK +99825 : 58.068878 : -136.27833 : Elfin Cove, AK +99826 : 58.434052 : -135.73088 : Gustavus, AK +99827 : 59.279037 : -135.6122 : Haines, AK +99829 : 58.109608 : -135.43154 : Hoonah, AK +99830 : 56.975011 : -133.9323 : Kake, AK +99832 : 57.959709 : -136.22032 : Pelican, AK +99833 : 56.784206 : -132.97354 : Petersburg, AK +99835 : 57.064376 : -135.3227 : Sitka, AK +99836 : 56.53595 : -132.827948 : Port Alexander, AK +99840 : 59.465159 : -135.31355 : Skagway, AK +99841 : 57.777622 : -135.20777 : Tenakee Springs, AK +99850 : 58.411303 : -135.40874 : Juneau, AK +99901 : 55.368644 : -131.6762 : Ketchikan, AK +99903 : 55.742045 : -132.25002 : Meyers Chuck, AK +99918 : 56.009124 : -132.82018 : Coffman Cove, AK +99919 : 55.677232 : -132.55624 : Thorne Bay, AK +99921 : 55.456449 : -133.02648 : Craig, AK +99922 : 55.209339 : -132.82545 : Hydaburg, AK +99923 : 55.941442 : -130.0545 : Hyder, AK +99925 : 55.555164 : -133.07316 : Klawock, AK +99926 : 55.123897 : -131.56883 : Metlakatla, AK +99927 : 56.337957 : -133.60689 : Point Baker, AK +99928 : 55.395359 : -131.67537 : Ward Cove, AK +99929 : 56.409507 : -132.33822 : Wrangell, AK +99950 : 55.875767 : -131.46633 : Ketchikan, AK \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/.gitignore b/Ugesedler/Ugeseddel-8 29-10-2025/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.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/Ugesedler/Ugeseddel-8 29-10-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/misc.xml new file mode 100644 index 0000000..0e86949 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/modules.xml new file mode 100644 index 0000000..6de69f9 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/Ugeseddel-8 29-10-2025.iml b/Ugesedler/Ugeseddel-8 29-10-2025/Ugeseddel-8 29-10-2025.iml new file mode 100644 index 0000000..9db391f --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/Ugeseddel-8 29-10-2025.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/slides-python-classes.pdf b/Ugesedler/Ugeseddel-8 29-10-2025/slides-python-classes.pdf new file mode 100644 index 0000000..64083c0 Binary files /dev/null and b/Ugesedler/Ugeseddel-8 29-10-2025/slides-python-classes.pdf differ diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/src/Main.java b/Ugesedler/Ugeseddel-8 29-10-2025/src/Main.java new file mode 100644 index 0000000..01e0b25 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/src/Main.java @@ -0,0 +1,4 @@ +public class Main { + public static void main(String[] args) { + } +} \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/src/Ugeseddel-8-formiddag.py b/Ugesedler/Ugeseddel-8 29-10-2025/src/Ugeseddel-8-formiddag.py new file mode 100644 index 0000000..9891df7 --- /dev/null +++ b/Ugesedler/Ugeseddel-8 29-10-2025/src/Ugeseddel-8-formiddag.py @@ -0,0 +1,41 @@ +class Person: + def __init__(self, name, cpr_number): # konstruktør + self.__name = name + self.__cpr_number = cpr_number + def get_name(self): + return(self.__name) + def get_cpr_number(self): + return(self.__cpr_number) + def show(self): + print("Name:", self.get_name(), "\nCPR number:", self.get_cpr_number()) + def set_name(self, name): + self.__name = name + + +class Teacher(Person): + no_instances = 0 + def __init__(self, name, cpr_number, staff_id, list_of_courses): + super().__init__(name, cpr_number) + self.__staff_id = staff_id + self.__list_of_courses = list_of_courses + Teacher.no_instances += 1 + + def show(self): + super().show() + print("Teacher id: ", self.__staff_id) + print("Courses: ") + for i in self.__list_of_courses: + print(i) + + def get_staff_id(self): + return(self.__staff_id) + + def __str__(self): + return "Name: " + str(self.get_name()) + " Teacher id: " + str(self.get_staff_id()) + " Courses: " + str(self.__list_of_courses) + + def __del__(self): + Teacher.no_instances -= 1 + +idk = Teacher("Din mor", 12345678, 1234, (1202, 5860, 2719, 8746)) + +print(idk) diff --git a/Ugesedler/Ugeseddel-8 29-10-2025/ugeseddel-uge8-formiddag.pdf b/Ugesedler/Ugeseddel-8 29-10-2025/ugeseddel-uge8-formiddag.pdf new file mode 100644 index 0000000..f4c7983 Binary files /dev/null and b/Ugesedler/Ugeseddel-8 29-10-2025/ugeseddel-uge8-formiddag.pdf differ diff --git a/Ugesedler/Ugeseddel-9-05-11-2025/.gitignore b/Ugesedler/Ugeseddel-9-05-11-2025/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.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/Ugesedler/Ugeseddel-9-05-11-2025/.idea/.gitignore b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Ugesedler/Ugeseddel-9-05-11-2025/.idea/misc.xml b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/misc.xml new file mode 100644 index 0000000..007c6ea --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-9-05-11-2025/.idea/modules.xml b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/modules.xml new file mode 100644 index 0000000..b763063 --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-9-05-11-2025/Ugeseddel-9-05-11-2025.iml b/Ugesedler/Ugeseddel-9-05-11-2025/Ugeseddel-9-05-11-2025.iml new file mode 100644 index 0000000..9db391f --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/Ugeseddel-9-05-11-2025.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Ugesedler/Ugeseddel-9-05-11-2025/src/OpgaverFormiddag.py b/Ugesedler/Ugeseddel-9-05-11-2025/src/OpgaverFormiddag.py new file mode 100644 index 0000000..daae99d --- /dev/null +++ b/Ugesedler/Ugeseddel-9-05-11-2025/src/OpgaverFormiddag.py @@ -0,0 +1,53 @@ +import math + +def f1(n): + if n<= 1: + print(n, sep="", end="") + else: + f1(int(n/2)) + print(", ", n, sep="", end="") + +#f1(10) +#print() + +def f2(n: int): + if n >= 100: + print(n, sep="", end="") + else: + f2(2*n) + print(", ", n, sep="", end="") + +#f2(10) +#print() + +def f3(n: int): + if n <= 0: + print("*", sep="", end="") + elif n % 2 == 0: + print("(", sep="", end="") + f3(n-1) + print(")", sep="", end="") + else: + print("[", sep="", end="") + f3(n-1) + print("]", sep="", end="") +#f3(2) +#print() + +def process(a): + return a if len(a) <= 1 else process(a[math.floor(len(a)/2):]) + process(a[:math.floor(len(a)/2)]) # Reverser arrayet + +liste = [1,2,3,4,5,6,7,8,9,10] +print(process(liste)) +print() + +def next_fib(a): + return a if len(a)<=1 else a.append(a[-2]+a[-1]) + +def main_fib(): + fib_liste = [0, 1] + for i in range(50): + next_fib(fib_liste) + print(fib_liste) + +main_fib() \ No newline at end of file diff --git a/onsdagsaflevering-4 b/onsdagsaflevering-4 new file mode 160000 index 0000000..6c3f22b --- /dev/null +++ b/onsdagsaflevering-4 @@ -0,0 +1 @@ +Subproject commit 6c3f22bf4b0a859a3520be9a7db4dcf5a753d6f6