From 37bc8f62add1e9380e87d06d0f05d09549b20cec Mon Sep 17 00:00:00 2001 From: Chris Pham Date: Thu, 18 Jan 2018 11:21:05 -0800 Subject: [PATCH] add gmaps obj and init --- ground_station/resources/core/mapping.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ground_station/resources/core/mapping.py b/ground_station/resources/core/mapping.py index 5146d56..94a147e 100644 --- a/ground_station/resources/core/mapping.py +++ b/ground_station/resources/core/mapping.py @@ -52,4 +52,16 @@ _GRABRATE = 4 _pixrad = _EARTHPIX / math.pi -class Google \ No newline at end of file +class GMapsStitcher(object): + def __init__(self, width, height, latitude, + longitude, zoom, maptype, radius_meters=None, + num_tiles=4): + self.latitude = latitude + self.longitude = longitude + self.width = width + self.height = height + self.zoom = zoom + self.maptype = maptype + self.radius_meters = radius_meters + +