]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - src/GPS.py
Added the linear program solving the midatlantic region.
[dead/census-tools.git] / src / GPS.py
1 class Coordinates:
2 """Represents a set of GPS coordinates (longitude/latitude)."""
3
4 def __init__(self, x=0, y=0):
5 self.longitude = x
6 self.latitude = y