diff --git a/ground_station/resources/core/mapping.py b/ground_station/resources/core/mapping.py index 3c05b90..7d23040 100644 --- a/ground_station/resources/core/mapping.py +++ b/ground_station/resources/core/mapping.py @@ -1,3 +1,21 @@ +''' +Mapping.py: Objected Orientated Google Maps for Python + +Copyright OSURC, orginal code from GooMPy by Alec Singer and Simon D. Levy + +This code is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. +This code is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. +You should have received a copy of the GNU Lesser General Public License +along with this code. If not, see . + +''' + ##################################### # Imports ##################################### @@ -25,4 +43,7 @@ _TILESIZE = 640 # Fastest rate at which we can download tiles without paying _GRABRATE = 4 # Pixel Radius of Earth for calculations -_pixrad = _EARTHPIX / math.pi \ No newline at end of file +_pixrad = _EARTHPIX / math.pi + + +class Google \ No newline at end of file