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