]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - src/GPS.py
Add a wrapper which sets the LD_LIBRARY_PATH for lp_solve before executing a python...
[dead/census-tools.git] / src / 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