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