]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - src/GPS.py
Removed unused code from the GPS and SummaryFile1 modules.
[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