write file intro

This commit is contained in:
Chris Pham
2018-01-18 11:09:09 -08:00
parent b82a39d3bf
commit 3570c4b573

View File

@@ -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 <http://www.gnu.org/licenses/>.
'''
##################################### #####################################
# Imports # Imports
##################################### #####################################
@@ -25,4 +43,7 @@ _TILESIZE = 640
# Fastest rate at which we can download tiles without paying # Fastest rate at which we can download tiles without paying
_GRABRATE = 4 _GRABRATE = 4
# Pixel Radius of Earth for calculations # Pixel Radius of Earth for calculations
_pixrad = _EARTHPIX / math.pi _pixrad = _EARTHPIX / math.pi
class Google