]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - src/GPS.py
Modified the makefile to use the find_file_paths script rather than guessing at some...
[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