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