]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - GPS.py
59f8d5b3c2092ba3df2b16cce8c66c449f0526d9
[dead/census-tools.git] / 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