diff --git a/goompy_testing/.idea/goompy_testing.iml b/goompy_testing/.idea/goompy_testing.iml new file mode 100644 index 0000000..6711606 --- /dev/null +++ b/goompy_testing/.idea/goompy_testing.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/goompy_testing/.idea/inspectionProfiles/profiles_settings.xml b/goompy_testing/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..c23ecac --- /dev/null +++ b/goompy_testing/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/goompy_testing/.idea/misc.xml b/goompy_testing/.idea/misc.xml new file mode 100644 index 0000000..357f026 --- /dev/null +++ b/goompy_testing/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/goompy_testing/.idea/modules.xml b/goompy_testing/.idea/modules.xml new file mode 100644 index 0000000..b490759 --- /dev/null +++ b/goompy_testing/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/goompy_testing/.idea/workspace.xml b/goompy_testing/.idea/workspace.xml new file mode 100644 index 0000000..e15fdc4 --- /dev/null +++ b/goompy_testing/.idea/workspace.xml @@ -0,0 +1,825 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + _pix_to_lon + fetchTiles + self.radius_meters + _KEY + bigimage + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + project + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496035104914 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/goompy_testing/README.md b/goompy_testing/README.md new file mode 100644 index 0000000..6602a04 --- /dev/null +++ b/goompy_testing/README.md @@ -0,0 +1,2 @@ +This is an example project for getting and using google maps data in a QT project. +I ended up using a modified version of this for the Mars Rover during the 2016-2017 competition year. \ No newline at end of file diff --git a/goompy_testing/example.py b/goompy_testing/example.py new file mode 100644 index 0000000..de45f7d --- /dev/null +++ b/goompy_testing/example.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python +''' +Example of using GooMPy with Tkinter + +Copyright (C) 2015 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 . +''' + +from tkinter import Tk, Canvas, Label, Frame, IntVar, Radiobutton, Button +from PIL import ImageTk + +from goompy import GooMPy + +WIDTH = 640 +HEIGHT = 640 + +LATITUDE = 38.4064262 +LONGITUDE = -110.794115 +ZOOM = 18 +MAPTYPE = 'satellite' + +class UI(Tk): + + def __init__(self): + + Tk.__init__(self) + + self.geometry('%dx%d+500+500' % (WIDTH,HEIGHT)) + self.title('GooMPy') + + self.canvas = Canvas(self, width=WIDTH, height=HEIGHT) + + self.canvas.pack() + + self.bind("", self.check_quit) + self.bind('', self.drag) + self.bind('', self.click) + + self.label = Label(self.canvas) + + self.radiogroup = Frame(self.canvas) + self.radiovar = IntVar() + self.maptypes = ['roadmap', 'terrain', 'satellite', 'hybrid'] + self.add_radio_button('Road Map', 0) + self.add_radio_button('Terrain', 1) + self.add_radio_button('Satellite', 2) + self.add_radio_button('Hybrid', 3) + + self.zoom_in_button = self.add_zoom_button('+', +1) + self.zoom_out_button = self.add_zoom_button('-', -1) + + self.zoomlevel = ZOOM + + maptype_index = 2 + self.radiovar.set(maptype_index) + + self.goompy = GooMPy(WIDTH, HEIGHT, LATITUDE, LONGITUDE, ZOOM, MAPTYPE, 1000) + + self.restart() + + def add_zoom_button(self, text, sign): + + button = Button(self.canvas, text=text, width=1, command=lambda:self.zoom(sign)) + return button + + def reload(self): + + self.coords = None + self.redraw() + + self['cursor'] = '' + + + def restart(self): + + # A little trick to get a watch cursor along with loading + self['cursor'] = 'watch' + self.after(1, self.reload) + + def add_radio_button(self, text, index): + + maptype = self.maptypes[index] + Radiobutton(self.radiogroup, text=maptype, variable=self.radiovar, value=index, + command=lambda:self.usemap(maptype)).grid(row=0, column=index) + + def click(self, event): + + self.coords = event.x, event.y + + def drag(self, event): + + self.goompy.move(self.coords[0]-event.x, self.coords[1]-event.y) + self.image = self.goompy.getImage() + self.redraw() + self.coords = event.x, event.y + + def redraw(self): + + self.image = self.goompy.getImage() + self.image_tk = ImageTk.PhotoImage(self.image) + self.label['image'] = self.image_tk + + self.label.place(x=0, y=0, width=WIDTH, height=HEIGHT) + + self.radiogroup.place(x=0,y=0) + + x = int(self.canvas['width']) - 50 + y = int(self.canvas['height']) - 80 + + self.zoom_in_button.place(x= x, y=y) + self.zoom_out_button.place(x= x, y=y+30) + + def usemap(self, maptype): + + self.goompy.useMaptype(maptype) + self.restart() + + def zoom(self, sign): + + newlevel = self.zoomlevel + sign + if newlevel > 0 and newlevel < 22: + self.zoomlevel = newlevel + self.goompy.useZoom(newlevel) + self.restart() + + def check_quit(self, event): + + if ord(event.char) == 27: # ESC + exit(0) + +UI().mainloop() diff --git a/goompy_testing/goompy/.gitignore b/goompy_testing/goompy/.gitignore new file mode 100644 index 0000000..c9b568f --- /dev/null +++ b/goompy_testing/goompy/.gitignore @@ -0,0 +1,2 @@ +*.pyc +*.swp diff --git a/goompy_testing/goompy/__init__.py b/goompy_testing/goompy/__init__.py new file mode 100644 index 0000000..a111626 --- /dev/null +++ b/goompy_testing/goompy/__init__.py @@ -0,0 +1,200 @@ +''' +GooMPy: Google Maps for Python + +Copyright (C) 2015 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 . +''' + +import math +import PIL.Image +from io import StringIO, BytesIO +import urllib.request +import os +import time + +_KEY = '&key=AIzaSyAFjAWMwQauf2Dy5KteOuT8KexfMjOCIS8' # This is Corwin's temp API key + +_EARTHPIX = 268435456 # Number of pixels in half the earth's circumference at zoom = 21 +_DEGREE_PRECISION = 4 # Number of decimal places for rounding coordinates +_TILESIZE = 640 # Larget tile we can grab without paying +_GRABRATE = 4 # Fastest rate at which we can download tiles without paying + +_pixrad = _EARTHPIX / math.pi + + +def _new_image(width, height): + return PIL.Image.new('RGB', (width, height)) + + +def _roundto(value, digits): + return int(value * 10 ** digits) / 10. ** digits + + +def _pixels_to_degrees(pixels, zoom): + return pixels * 2 ** (21 - zoom) + + +def _grab_tile(lat, lon, zoom, maptype, _TILESIZE, sleeptime): + urlbase = 'https://maps.googleapis.com/maps/api/staticmap?center=%f,%f&zoom=%d&maptype=%s&size=%dx%d&format=jpg' + urlbase += _KEY + + specs = lat, lon, zoom, maptype, _TILESIZE, _TILESIZE + + filename = 'mapscache/' + ('%f_%f_%d_%s_%d_%d' % specs) + '.jpg' + + tile = None + + if os.path.isfile(filename): + tile = PIL.Image.open(filename) + + else: + url = urlbase % specs + + result = urllib.request.urlopen(url).read() + tile = PIL.Image.open(BytesIO(result)) + if not os.path.exists('mapscache'): + os.mkdir('mapscache') + tile.save(filename) + time.sleep(sleeptime) # Choke back speed to avoid maxing out limit + + return tile + + +def _pix_to_lon(j, lonpix, ntiles, _TILESIZE, zoom): + return math.degrees((lonpix + _pixels_to_degrees(((j) - ntiles / 2) * _TILESIZE, zoom) - _EARTHPIX) / _pixrad) + + +def _pix_to_lat(k, latpix, ntiles, _TILESIZE, zoom): + return math.degrees(math.pi / 2 - 2 * math.atan( + math.exp(((latpix + _pixels_to_degrees((k - ntiles / 2) * _TILESIZE, zoom)) - _EARTHPIX) / _pixrad))) + + +def fetchTiles(latitude, longitude, zoom, maptype, radius_meters=None, default_ntiles=4): + ''' + Fetches tiles from GoogleMaps at the specified coordinates, zoom level (0-22), and map type ('roadmap', + 'terrain', 'satellite', or 'hybrid'). The value of radius_meters deteremines the number of tiles that will be + fetched; if it is unspecified, the number defaults to default_ntiles. Tiles are stored as JPEG images + in the mapscache folder. + ''' + + latitude = _roundto(latitude, _DEGREE_PRECISION) + longitude = _roundto(longitude, _DEGREE_PRECISION) + + # https://groups.google.com/forum/#!topic/google-maps-js-api-v3/hDRO4oHVSeM + pixels_per_meter = 2 ** zoom / (156543.03392 * math.cos(math.radians(latitude))) + + # number of tiles required to go from center latitude to desired radius in meters + ntiles = default_ntiles if radius_meters is None else int( + round(2 * pixels_per_meter / (_TILESIZE / 2. / radius_meters))) + + lonpix = _EARTHPIX + longitude * math.radians(_pixrad) + + sinlat = math.sin(math.radians(latitude)) + latpix = _EARTHPIX - _pixrad * math.log((1 + sinlat) / (1 - sinlat)) / 2 + + bigsize = ntiles * _TILESIZE + bigimage = _new_image(bigsize, bigsize) + + for j in range(ntiles): + lon = _pix_to_lon(j, lonpix, ntiles, _TILESIZE, zoom) + for k in range(ntiles): + lat = _pix_to_lat(k, latpix, ntiles, _TILESIZE, zoom) + tile = _grab_tile(lat, lon, zoom, maptype, _TILESIZE, 1. / _GRABRATE) + bigimage.paste(tile, (j * _TILESIZE, k * _TILESIZE)) + + west = _pix_to_lon(0, lonpix, ntiles, _TILESIZE, zoom) + east = _pix_to_lon(ntiles - 1, lonpix, ntiles, _TILESIZE, zoom) + + north = _pix_to_lat(0, latpix, ntiles, _TILESIZE, zoom) + south = _pix_to_lat(ntiles - 1, latpix, ntiles, _TILESIZE, zoom) + + return bigimage, (north, west), (south, east) + + +class GooMPy(object): + def __init__(self, width, height, latitude, longitude, zoom, maptype, radius_meters=None, default_ntiles=4): + ''' + Creates a GooMPy object for specified display widthan and height at the specified coordinates, + zoom level (0-22), and map type ('roadmap', 'terrain', 'satellite', or 'hybrid'). + The value of radius_meters deteremines the number of tiles that will be used to create + the map image; if it is unspecified, the number defaults to default_ntiles. + ''' + + self.lat = latitude + self.lon = longitude + + self.width = width + self.height = height + + self.zoom = zoom + self.maptype = maptype + self.radius_meters = radius_meters + + self.winimage = _new_image(self.width, self.height) + + self._fetch() + + halfsize = self.bigimage.size[0] // 2 + self.leftx = halfsize + self.uppery = halfsize + + self._update() + + def getImage(self): + ''' + Returns the current image as a PIL.Image object. + ''' + + return self.winimage + + def move(self, dx, dy): + ''' + Moves the view by the specified pixels dx, dy. + ''' + + self.leftx = self._constrain(self.leftx, dx, self.width) + self.uppery = self._constrain(self.uppery, dy, self.height) + self._update() + + def useMaptype(self, maptype): + ''' + Uses the specified map type 'roadmap', 'terrain', 'satellite', or 'hybrid'. + Map tiles are fetched as needed. + ''' + + self.maptype = maptype + self._fetch_and_update() + + def useZoom(self, zoom): + ''' + Uses the specified zoom level 0 through 22. + Map tiles are fetched as needed. + ''' + + self.zoom = zoom + self._fetch_and_update() + + def _fetch_and_update(self): + self._fetch() + self._update() + + def _fetch(self): + self.bigimage, self.northwest, self.southeast = fetchTiles(self.lat, self.lon, self.zoom, self.maptype, + self.radius_meters) + + def _update(self): + self.winimage.paste(self.bigimage, (-self.leftx, -self.uppery)) + + def _constrain(self, oldval, diff, dimsize): + newval = oldval + diff + return newval if newval > 0 and newval < self.bigimage.size[0] - dimsize else oldval diff --git a/goompy_testing/goompy/key.py b/goompy_testing/goompy/key.py new file mode 100644 index 0000000..9a5f569 --- /dev/null +++ b/goompy_testing/goompy/key.py @@ -0,0 +1,20 @@ + +''' +GooMPy: Google Maps for Python +Copyright (C) 2015 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 . +''' + +# Get a key from https://developers.google.com/maps/documentation/staticmaps/#api_key and put it between the +# quotation marks below: +_KEY = 'AIzaSyAFjAWMwQauf2Dy5KteOuT8KexfMjOCIS8' + diff --git a/goompy_testing/mapscache/37.769592_-79.416434_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.416434_15_roadmap_640_640.jpg new file mode 100644 index 0000000..3973a5f Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.416434_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.416434_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.416434_15_terrain_640_640.jpg new file mode 100644 index 0000000..0c31e1c Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.416434_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.443900_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.443900_15_roadmap_640_640.jpg new file mode 100644 index 0000000..4ce53b1 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.443900_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.443900_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.443900_15_terrain_640_640.jpg new file mode 100644 index 0000000..79e6349 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.443900_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.471366_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.471366_15_roadmap_640_640.jpg new file mode 100644 index 0000000..6be4699 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.471366_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.471366_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.471366_15_terrain_640_640.jpg new file mode 100644 index 0000000..8b57715 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.471366_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.498832_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.498832_15_roadmap_640_640.jpg new file mode 100644 index 0000000..ba7fa88 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.498832_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.769592_-79.498832_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.769592_-79.498832_15_terrain_640_640.jpg new file mode 100644 index 0000000..c812de8 Binary files /dev/null and b/goompy_testing/mapscache/37.769592_-79.498832_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.416434_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.416434_15_roadmap_640_640.jpg new file mode 100644 index 0000000..2b5ca77 Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.416434_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.416434_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.416434_15_terrain_640_640.jpg new file mode 100644 index 0000000..a92a3c4 Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.416434_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.443900_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.443900_15_roadmap_640_640.jpg new file mode 100644 index 0000000..422f76b Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.443900_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.443900_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.443900_15_terrain_640_640.jpg new file mode 100644 index 0000000..66cf853 Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.443900_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.471366_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.471366_15_roadmap_640_640.jpg new file mode 100644 index 0000000..71a2469 Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.471366_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.471366_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.471366_15_terrain_640_640.jpg new file mode 100644 index 0000000..4bf5e0f Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.471366_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.498832_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.498832_15_roadmap_640_640.jpg new file mode 100644 index 0000000..c7df9c2 Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.498832_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.791300_-79.498832_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.791300_-79.498832_15_terrain_640_640.jpg new file mode 100644 index 0000000..aed0d3b Binary files /dev/null and b/goompy_testing/mapscache/37.791300_-79.498832_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.416434_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.416434_15_roadmap_640_640.jpg new file mode 100644 index 0000000..efd5240 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.416434_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.416434_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.416434_15_terrain_640_640.jpg new file mode 100644 index 0000000..d405680 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.416434_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.443900_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.443900_15_roadmap_640_640.jpg new file mode 100644 index 0000000..e4f19da Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.443900_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.443900_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.443900_15_terrain_640_640.jpg new file mode 100644 index 0000000..ae4c42b Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.443900_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.471366_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.471366_15_roadmap_640_640.jpg new file mode 100644 index 0000000..ce5f377 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.471366_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.471366_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.471366_15_terrain_640_640.jpg new file mode 100644 index 0000000..1da65a5 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.471366_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.498832_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.498832_15_roadmap_640_640.jpg new file mode 100644 index 0000000..9902b52 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.498832_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.813002_-79.498832_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.813002_-79.498832_15_terrain_640_640.jpg new file mode 100644 index 0000000..a96b584 Binary files /dev/null and b/goompy_testing/mapscache/37.813002_-79.498832_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.416434_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.416434_15_roadmap_640_640.jpg new file mode 100644 index 0000000..3705d35 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.416434_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.416434_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.416434_15_terrain_640_640.jpg new file mode 100644 index 0000000..d0a7f57 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.416434_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.443900_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.443900_15_roadmap_640_640.jpg new file mode 100644 index 0000000..6dd2570 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.443900_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.443900_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.443900_15_terrain_640_640.jpg new file mode 100644 index 0000000..712f474 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.443900_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.471366_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.471366_15_roadmap_640_640.jpg new file mode 100644 index 0000000..725de44 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.471366_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.471366_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.471366_15_terrain_640_640.jpg new file mode 100644 index 0000000..6b4e0cf Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.471366_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.498832_15_roadmap_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.498832_15_roadmap_640_640.jpg new file mode 100644 index 0000000..ae32d79 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.498832_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/37.834697_-79.498832_15_terrain_640_640.jpg b/goompy_testing/mapscache/37.834697_-79.498832_15_terrain_640_640.jpg new file mode 100644 index 0000000..9851013 Binary files /dev/null and b/goompy_testing/mapscache/37.834697_-79.498832_15_terrain_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..c2b400a Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..f17da78 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..2ef8d0f Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..52dd899 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..87a69ba Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..6d61298 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..545ab80 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..c23a882 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..5b58507 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..87b6f93 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..f1de1e0 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..e4359b9 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..aa75474 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..adc566c Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..2fa4210 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..4d4c4a1 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..3bc5945 Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..2585cff Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..6b1e5cc Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.372763_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.372763_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..50a9eba Binary files /dev/null and b/goompy_testing/mapscache/38.372763_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..b656c2a Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..0a37422 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..311bb8d Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..f48f047 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..a5c7d2a Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..b4e5ffd Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..6980d8c Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..d3bae88 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..f454ae6 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..099c106 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..d647686 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..f11537a Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..e309378 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..1c368bc Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..948bff8 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..dba25b2 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..ec5d5b0 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..a2aa886 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..508fc91 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..7ac94ef Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.375454_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.375454_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..9153c10 Binary files /dev/null and b/goompy_testing/mapscache/38.375454_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..5c8bd72 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..7154827 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..dbd1cf1 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..3c1b6b8 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..b0dd494 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..e24b6bf Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..2c41857 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..163bf8a Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..0abb7d8 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..e0f41da Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..289f91f Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..038fe77 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..229c67e Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..0548255 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..5a850bf Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..ab6a041 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..831fe46 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..7327a3e Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..4136180 Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..97d9a9b Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.378146_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.378146_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..4d055fd Binary files /dev/null and b/goompy_testing/mapscache/38.378146_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..a01d975 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..9502d72 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..ced0e1d Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..71c78a1 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..7756451 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..30753a7 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..4779148 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..eaf2d9b Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..d2accbc Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..febb0a7 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..ba1f337 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..41a4ffd Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..54fc3b0 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..c1c9641 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..e0bd2f8 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..bbabae9 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..0037932 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..b6608c0 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..03c2fc2 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..9d588b1 Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.380837_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.380837_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..30bd74f Binary files /dev/null and b/goompy_testing/mapscache/38.380837_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..05b32f6 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..7b6cb21 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..c33c2da Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..a65d141 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..821fce6 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..4d2c1c7 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..3a23414 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..fa9971e Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..d21b67f Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..64e2057 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..50edd54 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..6a30676 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..dddaa3d Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..4cf5da5 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..6d53771 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..8cbcd95 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..b493694 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..a4d1229 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..f3b6412 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.382183_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.382183_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..60e66e6 Binary files /dev/null and b/goompy_testing/mapscache/38.382183_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..95f4a5b Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..c287a22 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..f443c94 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..6f16f2f Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..1dcf366 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..7d96aaa Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..f17bc11 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..0bf0e2c Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..2c7afd4 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..e9ccb13 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..f412a69 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..7b3db26 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..3529428 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..1e4afed Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..664c51d Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..5377a95 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..7e380af Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..7880277 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..8eeb6b2 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..6c89f0b Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.383528_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.383528_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..a402748 Binary files /dev/null and b/goompy_testing/mapscache/38.383528_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..46234c1 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.766634_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.766634_15_roadmap_640_640.jpg new file mode 100644 index 0000000..0d63a60 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.766634_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.766634_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.766634_15_satellite_640_640.jpg new file mode 100644 index 0000000..07c9fbf Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.766634_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..d4f9b6d Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..e1dcb53 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..5e570a4 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..b062582 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..790d55f Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..627fa06 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..fc9ded8 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..b86f9d1 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..218d087 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..87f63e3 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..78040d4 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..d551c87 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.794100_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.794100_15_roadmap_640_640.jpg new file mode 100644 index 0000000..4751b6f Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.794100_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.794100_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.794100_15_satellite_640_640.jpg new file mode 100644 index 0000000..f8dd20c Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.794100_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..ba944cb Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..7d9b6d4 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..645639d Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..2b7dfa2 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..3c52d4e Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..a84dadc Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..0acc1b8 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..abe3ecd Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..22def11 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..c055cfc Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..b9a34d2 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..35ada1e Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.821566_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.821566_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.821566_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.821566_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.821566_15_satellite_640_640.jpg new file mode 100644 index 0000000..0c7e2be Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.821566_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..4f16f2b Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..089f39d Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..cb8377f Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..2f037ef Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6f883e Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.849032_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.849032_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.849032_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.384874_-110.849032_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.384874_-110.849032_15_satellite_640_640.jpg new file mode 100644 index 0000000..6f335e9 Binary files /dev/null and b/goompy_testing/mapscache/38.384874_-110.849032_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..aeb4f1b Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..e88c929 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..7108635 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..8b21b7c Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..7a48f90 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..63d1790 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..81cb410 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..3ddd5e8 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..4af9ff9 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..aaa381c Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..8357bf4 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..6591d16 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..dd863b1 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..3221915 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..16633c5 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..540a62d Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..0b80617 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..c381a57 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..dd75cd4 Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..a77991a Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.386219_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.386219_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..000fbee Binary files /dev/null and b/goompy_testing/mapscache/38.386219_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..17e60ec Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..9ac9035 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..4f57987 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..1f831a9 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..be1c9a6 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..2afa2ec Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..19a72eb Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..6a9344a Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..e717ee0 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..6c9dead Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..e01daab Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..8fbb7cd Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..8a92344 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..540bbf3 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..7936626 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..21b1a2c Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..ebd7d97 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..a773d36 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..7079ea3 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.387565_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.387565_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..5051a84 Binary files /dev/null and b/goompy_testing/mapscache/38.387565_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..7bf0c3c Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..425fb19 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..60680ae Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..d4fb140 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..1185352 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..46b03d9 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..389f613 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..87d9faa Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..a162209 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..275c995 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..1013af9 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..b43c351 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..43697b8 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..11b7b41 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..d9cf764 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..b41e485 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..a0856ba Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..b673f45 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..b783d09 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..0f2d4d2 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.388911_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.388911_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6acc11 Binary files /dev/null and b/goompy_testing/mapscache/38.388911_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..e3c3207 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..b5d6492 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..87f68cf Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..838214d Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.773501_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.773501_16_satellite_640_640.jpg new file mode 100644 index 0000000..beda068 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.773501_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..c2a9545 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..12431dd Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..ed94a5a Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..17107c4 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..a5de13a Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..484dbb2 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.787234_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.787234_16_satellite_640_640.jpg new file mode 100644 index 0000000..cd51521 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.787234_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..9ec2539 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..146cce1 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..37fb6f5 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..f961dac Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..2973d4f Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..dcc14bf Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.800966_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.800966_16_satellite_640_640.jpg new file mode 100644 index 0000000..58090ee Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.800966_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..2ad1250 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..5a74308 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..55917a0 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..776b0ba Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..22d0f19 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..0a7d182 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.814699_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.814699_16_satellite_640_640.jpg new file mode 100644 index 0000000..8b0322b Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.814699_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..b19057f Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..96b5157 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..611abdb Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..922d4b6 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..22777b3 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..adaf1b8 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.828432_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.828432_16_satellite_640_640.jpg new file mode 100644 index 0000000..f988de0 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.828432_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..129d0e8 Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.390256_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.390256_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..48ce7ed Binary files /dev/null and b/goompy_testing/mapscache/38.390256_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..fc9eecb Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..fcbd029 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..291b725 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..cd2c1c9 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..bcda60e Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..a2b056e Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f6c076 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..4b657ab Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..aa9e7b3 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..d2cd502 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..46f1209 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..edcba35 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..a084706 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..bb0dec1 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..aab881e Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..c8a87d4 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..c40c735 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..1f1ba46 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..2ce6f7f Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f0ca4c Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.391602_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.391602_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..6f15911 Binary files /dev/null and b/goompy_testing/mapscache/38.391602_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..2141a35 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..9d2bc56 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..236d5cb Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..c1037d8 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..e732d0d Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..31687ed Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..bfaa93f Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..317cc32 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..3228e06 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..648741a Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..cf38685 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..40a4630 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..ca47305 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..ef8c0d2 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..f1c9638 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..e24ae50 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..ed5ea07 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..c754454 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..4f04543 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.392947_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.392947_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..bddfb74 Binary files /dev/null and b/goompy_testing/mapscache/38.392947_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..fe4c766 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..0dfe6eb Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..e4c59ec Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..3311b03 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..5cda095 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..6eb847a Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..f61188f Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..b522543 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..99558d1 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..b33a56d Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f36adf Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..4a40632 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..be3cb55 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..3535edd Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..babd3a0 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..c60dbaa Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..2108d9f Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..15a9a96 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..7f19606 Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..711dfee Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.394292_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.394292_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..272fa8d Binary files /dev/null and b/goompy_testing/mapscache/38.394292_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..d513d81 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..5ec8daa Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..ac6a7ee Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..d7f3a97 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..50c52ca Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..ad1bf3c Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..4babccc Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.780367_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.780367_15_satellite_640_640.jpg new file mode 100644 index 0000000..b3d589a Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.780367_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.780367_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.780367_16_satellite_640_640.jpg new file mode 100644 index 0000000..f94926f Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.780367_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..a56ec28 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..55216ea Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..2beebe3 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..75980ae Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..b4d5608 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..a4d490b Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.794100_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.794100_16_satellite_640_640.jpg new file mode 100644 index 0000000..5dc8ad9 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.794100_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..c208560 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..7f8377a Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..400af8c Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..cc1321b Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..ee5da1f Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..7bb702c Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.807833_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.807833_15_satellite_640_640.jpg new file mode 100644 index 0000000..844df21 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.807833_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.807833_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.807833_16_satellite_640_640.jpg new file mode 100644 index 0000000..393bad3 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.807833_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..4a83a91 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..f5953a9 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..b54c59e Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..f188cac Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..93f0ed4 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..919aad9 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.821566_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.821566_16_satellite_640_640.jpg new file mode 100644 index 0000000..73e8481 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.821566_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..515a7d7 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..d429c43 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..a2024e4 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..dd349b0 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..ba06b84 Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.395638_-110.835299_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.395638_-110.835299_15_satellite_640_640.jpg new file mode 100644 index 0000000..b2d9b1a Binary files /dev/null and b/goompy_testing/mapscache/38.395638_-110.835299_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..ac8d612 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..02fb705 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..86e56f6 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..72805d8 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..cc83d51 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..70841c5 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..07df768 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..269ee26 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..afee080 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..abb4aa9 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..5acefab Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..b30d673 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..669fb19 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..7ac46b4 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..b1a2563 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..dffa93f Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..55563d6 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..b54f324 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..67daaa9 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..918d076 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.396983_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.396983_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..f507f23 Binary files /dev/null and b/goompy_testing/mapscache/38.396983_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..4b231d2 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..de0e52b Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..a1c835c Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..fdd5566 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..04a9310 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..9d1e527 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..7bce40e Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..6ea48dd Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..e756b90 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f5602b Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..8fa6530 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..1a04665 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..dfc97be Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..0424d41 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..80c7042 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..72aff70 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..9956a69 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..cf95e80 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..e47cb58 Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.398328_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.398328_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..ea351bc Binary files /dev/null and b/goompy_testing/mapscache/38.398328_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..1c263bf Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..fe7c3e1 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..f8e4aa5 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..6d2411f Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..5a895b1 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..1a9ca08 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..4f6e6c7 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..492c95e Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..e5708db Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..67e0be2 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..37d2f89 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..877815e Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399001_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.399001_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..df2a494 Binary files /dev/null and b/goompy_testing/mapscache/38.399001_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..4d62a40 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..2957077 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..7028a3f Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..e9b4b5b Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..0ce23a4 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..ffa02a3 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..6c44717 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..1741b0e Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..a10e389 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..50a2491 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..d39efb4 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..51c6b8f Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..ec2840b Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..3e2cc10 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..2712eb9 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..7b040a1 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..d786982 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..a7980cf Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..b294add Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f8fc26 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.399674_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.399674_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..d7a1051 Binary files /dev/null and b/goompy_testing/mapscache/38.399674_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..43cfd41 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..82964a3 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..7b68b52 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..f83eec6 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..5ff2b88 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..5fc346c Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..bd8e770 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..c2b54b6 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..a86f1e6 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..89758d6 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..73b715b Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..4356a61 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.400346_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.400346_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..9b949d0 Binary files /dev/null and b/goompy_testing/mapscache/38.400346_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..b97065d Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..615d7f9 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..8aefea4 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..acdc52d Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.773501_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.773501_16_satellite_640_640.jpg new file mode 100644 index 0000000..7d83798 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.773501_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..50c429f Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..5125b85 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..b7d65e7 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..7819bd0 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..cd23c8a Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..89b672f Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.787234_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.787234_16_satellite_640_640.jpg new file mode 100644 index 0000000..f5ae94d Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.787234_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..8c20d06 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..b605d79 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..fdc6e95 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..c7ac42e Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..6733112 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..2670806 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.800966_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.800966_16_satellite_640_640.jpg new file mode 100644 index 0000000..d591c69 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.800966_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..2b594b5 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..58ebafd Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..3a725a4 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..a5f46cb Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..af5ca5b Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..1a2bc49 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.814699_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.814699_16_satellite_640_640.jpg new file mode 100644 index 0000000..5a46e3b Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.814699_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..432df05 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..85d5f6b Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..9ce5410 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..e48b8f0 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..615d8f1 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..1d05c00 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.828432_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.828432_16_satellite_640_640.jpg new file mode 100644 index 0000000..3989249 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.828432_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..fdff0b9 Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401019_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.401019_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..dff086b Binary files /dev/null and b/goompy_testing/mapscache/38.401019_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..bc764fc Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..b20f0e5 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..8a20f92 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..abf3000 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..7d12ca0 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..5baade6 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..8730661 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..b0a321c Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..b50c3dd Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..3a56515 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..284adb1 Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..6799faa Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.401692_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.401692_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..cae717e Binary files /dev/null and b/goompy_testing/mapscache/38.401692_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..52cd335 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..8423454 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..6d6de56 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..b993f68 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..0356bde Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..fd8eabe Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..210a3a1 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..0bae142 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..896232d Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..95d9e10 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..9e7866b Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..dc2bcb1 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..d9e470d Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..c89fd78 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..f2cc756 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..ea3f82c Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..5a04d0d Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..070bdce Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..0453ce4 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..6826b87 Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.402364_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.402364_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..ed9076b Binary files /dev/null and b/goompy_testing/mapscache/38.402364_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..b9c8f77 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..591f60a Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..e0314c0 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..a0e6174 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..588b373 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..272d2dd Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..ed5123f Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..1843055 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..833d689 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..373a82d Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..871c982 Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..12cd5ae Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403037_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.403037_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..095a14c Binary files /dev/null and b/goompy_testing/mapscache/38.403037_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..149b8fd Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..ce53ac4 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..3178ec7 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..9baed58 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..db24749 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..4a09dc3 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..f242aad Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..ef5e80e Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..cf148d6 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..71da252 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..a8bf9ce Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..b0ce14b Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..e8efa35 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..5d1b837 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..933c4ed Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..1adbe9d Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..4f1db52 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..49d29da Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..ae1aab4 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.403710_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.403710_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..3826e13 Binary files /dev/null and b/goompy_testing/mapscache/38.403710_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..8d8623b Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..cd7bc26 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..a64525a Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..b7ae996 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..38f484b Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..3b3d9cd Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..4fe8e96 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..fcbde27 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..c611ee4 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..9e98991 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..8278379 Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..5a059ef Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.404382_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.404382_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..9e16f3d Binary files /dev/null and b/goompy_testing/mapscache/38.404382_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..65c2fd6 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..58d65f0 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..60b625e Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..326ad45 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..6d26aeb Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..f894204 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..39c042d Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.792383_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.792383_19_satellite_640_640.jpg new file mode 100644 index 0000000..f056007 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.792383_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.794100_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.794100_19_satellite_640_640.jpg new file mode 100644 index 0000000..a9e785a Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.794100_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..8bdd66d Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.795817_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.795817_19_satellite_640_640.jpg new file mode 100644 index 0000000..535458f Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.795817_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.797533_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.797533_19_satellite_640_640.jpg new file mode 100644 index 0000000..41622ec Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.797533_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..a9a7fb9 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..eecd9f8 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..8612d47 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..992c19d Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..533c379 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..d4a9ad9 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..7badb98 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..05d43ca Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..a0b2d46 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..d748081 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..58c7fa0 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..2d3ba93 Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405055_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.405055_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..c08c11d Binary files /dev/null and b/goompy_testing/mapscache/38.405055_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..0aa36be Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..23b2031 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..633fd2f Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..652cf56 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..abee632 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..10d3748 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.793242_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.793242_20_satellite_640_640.jpg new file mode 100644 index 0000000..8321d2d Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.793242_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.794100_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.794100_20_satellite_640_640.jpg new file mode 100644 index 0000000..cf3bbfa Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.794100_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..64663ef Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.794958_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.794958_20_satellite_640_640.jpg new file mode 100644 index 0000000..b597bae Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.794958_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.795817_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.795817_20_satellite_640_640.jpg new file mode 100644 index 0000000..fde2e0e Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.795817_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..631f94c Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..f8b5431 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..3957694 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..75b63a5 Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..073ba5a Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.405727_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.405727_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..c00acef Binary files /dev/null and b/goompy_testing/mapscache/38.405727_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..5961382 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.766634_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.766634_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.766634_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.766634_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.766634_15_satellite_640_640.jpg new file mode 100644 index 0000000..cac0569 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.766634_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..e0f4f6f Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..a13bc4e Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..adc7c59 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..ad57ca9 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..abd11f2 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..467171f Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.780367_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.780367_16_satellite_640_640.jpg new file mode 100644 index 0000000..f24c9a0 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.780367_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..7066c4e Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..4220bd9 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..0807533 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..dd01ef1 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..5084b20 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..61b4ed8 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.792383_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.792383_19_satellite_640_640.jpg new file mode 100644 index 0000000..7485684 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.792383_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.793242_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.793242_20_satellite_640_640.jpg new file mode 100644 index 0000000..1ece600 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.793242_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_15_roadmap_640_640.jpg new file mode 100644 index 0000000..dfaeb97 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_15_satellite_640_640.jpg new file mode 100644 index 0000000..49fb5e5 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_16_satellite_640_640.jpg new file mode 100644 index 0000000..141d88d Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..ef8b208 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..30f5727 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_19_satellite_640_640.jpg new file mode 100644 index 0000000..0ed4e6b Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794100_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794100_20_satellite_640_640.jpg new file mode 100644 index 0000000..5a56001 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794100_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.794958_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.794958_20_satellite_640_640.jpg new file mode 100644 index 0000000..8ddefbd Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.794958_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.795817_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.795817_19_satellite_640_640.jpg new file mode 100644 index 0000000..0145c9b Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.795817_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.795817_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.795817_20_satellite_640_640.jpg new file mode 100644 index 0000000..e608649 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.795817_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..9f6f21b Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.797533_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.797533_19_satellite_640_640.jpg new file mode 100644 index 0000000..bb0fa8f Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.797533_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..2cb4966 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..6424466 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..1eb2ffe Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.807833_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.807833_16_satellite_640_640.jpg new file mode 100644 index 0000000..20ae20d Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.807833_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..420f3dc Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..a37e867 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..33414fb Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..f416360 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..ee19e4d Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f232a0 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.821566_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.821566_15_roadmap_640_640.jpg new file mode 100644 index 0000000..e92b6ba Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.821566_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.821566_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.821566_15_satellite_640_640.jpg new file mode 100644 index 0000000..af8c1dc Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.821566_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.821566_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.821566_16_satellite_640_640.jpg new file mode 100644 index 0000000..429570b Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.821566_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..b55c8ab Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..2d1e95b Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..b09a443 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..10660d2 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..36a6e69 Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.849032_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.849032_15_roadmap_640_640.jpg new file mode 100644 index 0000000..e92b6ba Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.849032_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.406400_-110.849032_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.406400_-110.849032_15_satellite_640_640.jpg new file mode 100644 index 0000000..d2f116d Binary files /dev/null and b/goompy_testing/mapscache/38.406400_-110.849032_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..3c13295 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..05594ad Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..f539b9e Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..4e142db Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..d775b81 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..0114e73 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.793242_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.793242_20_satellite_640_640.jpg new file mode 100644 index 0000000..75a7956 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.793242_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.794100_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.794100_20_satellite_640_640.jpg new file mode 100644 index 0000000..b9777d8 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.794100_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..05bce70 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.794958_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.794958_20_satellite_640_640.jpg new file mode 100644 index 0000000..fe6dafe Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.794958_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.795817_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.795817_20_satellite_640_640.jpg new file mode 100644 index 0000000..443e386 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.795817_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..6e5a047 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..fe0e33e Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..77700a1 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..7a68722 Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..67e6ade Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407073_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407073_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..51eb19c Binary files /dev/null and b/goompy_testing/mapscache/38.407073_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..97a1a5a Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..b161d6b Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..5c1a8b2 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..87c05de Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..6f22194 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..6ca3e3a Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..349eb9d Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.792383_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.792383_19_satellite_640_640.jpg new file mode 100644 index 0000000..a262021 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.792383_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.793242_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.793242_20_satellite_640_640.jpg new file mode 100644 index 0000000..2bb5c90 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.793242_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.794100_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.794100_19_satellite_640_640.jpg new file mode 100644 index 0000000..98062b3 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.794100_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.794100_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.794100_20_satellite_640_640.jpg new file mode 100644 index 0000000..601c326 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.794100_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.794958_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.794958_20_satellite_640_640.jpg new file mode 100644 index 0000000..663db4e Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.794958_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..e27d65e Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.795817_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.795817_19_satellite_640_640.jpg new file mode 100644 index 0000000..a48e01f Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.795817_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.795817_20_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.795817_20_satellite_640_640.jpg new file mode 100644 index 0000000..c6876e7 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.795817_20_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.797533_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.797533_19_satellite_640_640.jpg new file mode 100644 index 0000000..ab8bd57 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.797533_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..b9e6e08 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..f0b2061 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..2fc55c5 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..00c284f Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..cfd43b9 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..1f9074f Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..64a0a0b Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..641443b Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..77ccab1 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..1aa6cac Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..64dc442 Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..742473d Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.407745_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.407745_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..6b4e34f Binary files /dev/null and b/goompy_testing/mapscache/38.407745_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..b34deca Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..c6ba174 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..3e6b558 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..749db13 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..cbe8f1d Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..1381622 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..47c9115 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..a7e1491 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..04dce21 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..ae1f769 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..a0e29d4 Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..52ba84f Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.408418_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.408418_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..80e56ce Binary files /dev/null and b/goompy_testing/mapscache/38.408418_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..8f023f3 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..1bb49bb Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..57bd572 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..0d7c2a9 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..3e07ae8 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..360a8a6 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..2bb7fdf Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..050d6e9 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..e2f2b71 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.792383_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.792383_19_satellite_640_640.jpg new file mode 100644 index 0000000..845e4b7 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.792383_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..65df0fc Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.794100_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.794100_19_satellite_640_640.jpg new file mode 100644 index 0000000..6b26193 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.794100_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.795817_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.795817_19_satellite_640_640.jpg new file mode 100644 index 0000000..12e104f Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.795817_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..94941e7 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.797533_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.797533_19_satellite_640_640.jpg new file mode 100644 index 0000000..9c45226 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.797533_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6e7fec Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..ec0b7da Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..e5c6aa1 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..0a07309 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..44c92a8 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6283c3 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..44f9418 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..c9909b2 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409090_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.409090_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..6505b13 Binary files /dev/null and b/goompy_testing/mapscache/38.409090_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..9064f02 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..9249af2 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..e78b8c8 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..adf7836 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..60e5b88 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..fa79c73 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..ae22c36 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..b010934 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..f161948 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..ba5bd9b Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..5999498 Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..522284b Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.409763_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.409763_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..8e9272c Binary files /dev/null and b/goompy_testing/mapscache/38.409763_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..2a4aeb9 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6026e1 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..1eb3060 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..a5d2bb4 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..550f918 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..20b0c3c Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..476bed4 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..456385c Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..8676b8a Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..5d37fd9 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..a1a3f4b Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..ef1db5a Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..2f69771 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..d77f18d Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..15981ce Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..42e656c Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..83e1026 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..14b95e9 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..a5f3866 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..8cd17b2 Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.410435_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.410435_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..868e52b Binary files /dev/null and b/goompy_testing/mapscache/38.410435_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..9432214 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..af0b5f3 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..8322d84 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..aeffede Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..56f2a73 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..b1e99db Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..d9e0be7 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..80a871b Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..9697a83 Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..66a51ce Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..974ef0e Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..0180caa Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411108_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.411108_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..587c54a Binary files /dev/null and b/goompy_testing/mapscache/38.411108_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..7bd76a5 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..34e9020 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..0545813 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..58a48a9 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.773501_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.773501_16_satellite_640_640.jpg new file mode 100644 index 0000000..eda36d2 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.773501_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..f718066 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..a593669 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..e70279b Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..63cd8e1 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f1285e Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..dc3a18f Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.787234_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.787234_16_satellite_640_640.jpg new file mode 100644 index 0000000..0e56014 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.787234_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..015fa99 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..53e8f80 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..46221de Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..3d35376 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..bdbaa18 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..e334931 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.800966_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.800966_16_satellite_640_640.jpg new file mode 100644 index 0000000..561e1da Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.800966_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..08ad344 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..6b85775 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..377df1e Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..0c5e8f0 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..355c9bb Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..b9baae3 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.814699_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.814699_16_satellite_640_640.jpg new file mode 100644 index 0000000..8290a2b Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.814699_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..04a4222 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..5cf2477 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..d2d6021 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..8b55f18 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..9c21c1f Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..6080b57 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.828432_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.828432_16_satellite_640_640.jpg new file mode 100644 index 0000000..4c2e044 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.828432_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..d8fc0d9 Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.411781_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.411781_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..f9d1bdc Binary files /dev/null and b/goompy_testing/mapscache/38.411781_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..46a2043 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..f92c8e8 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..7c01704 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..6596e64 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..2437c9a Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..94032e5 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..cdb893a Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..b0dc7df Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..77aa217 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..1e1a518 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..a63d693 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..c44d056 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.412453_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.412453_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..de78a36 Binary files /dev/null and b/goompy_testing/mapscache/38.412453_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..65ba7a7 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..492cd0c Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..01020f4 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..f82a02d Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..b9e2a9b Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..499f547 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..052dd44 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..50720c1 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..2d03da5 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..94d12ea Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..eec7948 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..8eb0bff Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..9cf2e28 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..6a10dd2 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..46c54f1 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..d08f678 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..f3abbcf Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..f9654ed Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..686b665 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..6fe9c3a Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413126_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.413126_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..5af4e11 Binary files /dev/null and b/goompy_testing/mapscache/38.413126_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..88dfb0a Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..ea65d4d Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..9b444b4 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..9985761 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..e45eb52 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..ca71810 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..3d2d62e Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..d4edf0d Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..b3581e1 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..842f8ef Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..3db06b6 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..8e4bbd9 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.413798_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.413798_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..4b271a1 Binary files /dev/null and b/goompy_testing/mapscache/38.413798_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..a61edd6 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..0f87b06 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..29e1724 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..0ea86c1 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..361663e Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..de12421 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..94179de Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..9537aad Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..d697cd2 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..f5ba255 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..dbd5ef1 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..21f3a79 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..8d01c69 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..68b9e81 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..943e7b1 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..58d9a98 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..c2a48a4 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..3c93c62 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..1d1e3dd Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.414471_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.414471_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..2601c60 Binary files /dev/null and b/goompy_testing/mapscache/38.414471_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.784659_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.784659_19_satellite_640_640.jpg new file mode 100644 index 0000000..e0314ee Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.784659_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.786375_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.786375_19_satellite_640_640.jpg new file mode 100644 index 0000000..ff1ba8f Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.786375_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.788092_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.788092_19_satellite_640_640.jpg new file mode 100644 index 0000000..275d2ae Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.788092_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.789808_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.789808_19_satellite_640_640.jpg new file mode 100644 index 0000000..e8d3765 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.789808_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.791525_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.791525_19_satellite_640_640.jpg new file mode 100644 index 0000000..d4869ca Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.791525_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.793242_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.793242_19_satellite_640_640.jpg new file mode 100644 index 0000000..b0f8b6c Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.793242_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.794958_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.794958_19_satellite_640_640.jpg new file mode 100644 index 0000000..03bed71 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.794958_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.796675_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.796675_19_satellite_640_640.jpg new file mode 100644 index 0000000..1a01c21 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.796675_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.798392_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.798392_19_satellite_640_640.jpg new file mode 100644 index 0000000..0c70761 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.798392_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.800108_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.800108_19_satellite_640_640.jpg new file mode 100644 index 0000000..df8f962 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.800108_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.801825_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.801825_19_satellite_640_640.jpg new file mode 100644 index 0000000..7ad780b Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.801825_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.803541_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.803541_19_satellite_640_640.jpg new file mode 100644 index 0000000..6f79792 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.803541_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415143_-110.805258_19_satellite_640_640.jpg b/goompy_testing/mapscache/38.415143_-110.805258_19_satellite_640_640.jpg new file mode 100644 index 0000000..7ebfe28 Binary files /dev/null and b/goompy_testing/mapscache/38.415143_-110.805258_19_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..9f3d534 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..1996ee2 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..9185e72 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..5551fe6 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..b66706d Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..a6c51ff Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..6820a10 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..495e985 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..6bc826c Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..457f149 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..aa01138 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..3a3c1e4 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..f204899 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..b97237c Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..f02026f Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..0d169b7 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..025e145 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..48a1aae Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..8650996 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..d78bb6c Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.415816_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.415816_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..d7748a9 Binary files /dev/null and b/goompy_testing/mapscache/38.415816_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..ea5ea72 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..64ef2c0 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..be3070d Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..d3e386c Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..fe739e8 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..d0bee7c Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..cdac0b6 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.780367_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.780367_15_satellite_640_640.jpg new file mode 100644 index 0000000..cbdc889 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.780367_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.780367_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.780367_16_satellite_640_640.jpg new file mode 100644 index 0000000..14b4d74 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.780367_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..b557586 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..a7fcd64 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..830961c Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..169ef22 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..d2b0cbd Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..a2d3599 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.794100_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.794100_16_satellite_640_640.jpg new file mode 100644 index 0000000..67e4da9 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.794100_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..d03412d Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..cc88094 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..4bba5a6 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..9f066a6 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..1fda78c Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..d2c429d Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.807833_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.807833_15_satellite_640_640.jpg new file mode 100644 index 0000000..a703aa3 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.807833_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.807833_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.807833_16_satellite_640_640.jpg new file mode 100644 index 0000000..3f91f6a Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.807833_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..17b59be Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..0f376d0 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..ea28012 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..aebc320 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..994ad18 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..152e077 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.821566_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.821566_16_satellite_640_640.jpg new file mode 100644 index 0000000..d588dc9 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.821566_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..169ac94 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..a0edf70 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..2810929 Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..e4566ae Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..3e19d8a Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.417161_-110.835299_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.417161_-110.835299_15_satellite_640_640.jpg new file mode 100644 index 0000000..6bd056d Binary files /dev/null and b/goompy_testing/mapscache/38.417161_-110.835299_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..7e263c7 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..3c6a659 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..a818dbd Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..3ac62ee Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..c8a3c83 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..7a44f26 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..d4da0d0 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..310e860 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..4f40dac Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..da3a451 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..76ee66a Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..599c42e Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..7f4b417 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..0924125 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..046596b Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..22742ad Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..1609ca1 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..c701938 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..8b6fc21 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..39e65d5 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.418506_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.418506_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..d4f7a56 Binary files /dev/null and b/goompy_testing/mapscache/38.418506_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..7bd2f71 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..9e16f0e Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..3431eb6 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..87c24d1 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..35cc41a Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..395ae3d Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..2f4e38a Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..81084cb Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..1a36f2d Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..77f97e6 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..2db83a3 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..7e3b39f Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..d530819 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..138dbb8 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..65375cb Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..e24413f Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..610e553 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..8573b59 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..f746e3f Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.419851_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.419851_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..aa678f9 Binary files /dev/null and b/goompy_testing/mapscache/38.419851_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..492df7d Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..fb2c297 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..7ad62ea Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..5254075 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..ba53dc2 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..e70fd01 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..f0d12af Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..158512d Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..b343787 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..3210c21 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..0fe60cc Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..a0b91fd Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..a41ff9e Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..d632052 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..8c6c6ab Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..961d80c Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..2d7907b Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..c8810f7 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..d8477b9 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..a15374a Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.421195_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.421195_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..a7fa0a6 Binary files /dev/null and b/goompy_testing/mapscache/38.421195_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..af78c75 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..992e4cc Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..c47fc7c Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..e0f13e3 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.773501_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.773501_16_satellite_640_640.jpg new file mode 100644 index 0000000..bffb983 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.773501_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..bfb9756 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..8e76046 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..9e18e6d Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..e5e5ada Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..78b8250 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..05edba8 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.787234_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.787234_16_satellite_640_640.jpg new file mode 100644 index 0000000..59f3566 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.787234_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..798710c Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..8ac21e7 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..0e3eb03 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..6125abe Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..48fddee Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..5609c30 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.800966_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.800966_16_satellite_640_640.jpg new file mode 100644 index 0000000..8359e5f Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.800966_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..c238a79 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..36f51d0 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..061b567 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..0572923 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..90ecbe6 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..ed0411e Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.814699_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.814699_16_satellite_640_640.jpg new file mode 100644 index 0000000..43ccda2 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.814699_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..d6d0907 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..eb1c0b9 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..da83942 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..cf2ddd3 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..2140188 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..536154c Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.828432_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.828432_16_satellite_640_640.jpg new file mode 100644 index 0000000..ef946f3 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.828432_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..9e62450 Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.422540_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.422540_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..6d1e91f Binary files /dev/null and b/goompy_testing/mapscache/38.422540_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..96cff38 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..18bd2d0 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..0ca9ea9 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..2f49de9 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..9952ccf Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..db49da8 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..bc254b7 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..3b85336 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..b25d6b0 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..7071d81 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..5116bc6 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..4540bc5 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..718bf9f Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..e1d4c31 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..e28785d Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..f021e13 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..ec762a7 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..dbcbfc6 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..43fc321 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..876d951 Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.423885_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.423885_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..15c79fb Binary files /dev/null and b/goompy_testing/mapscache/38.423885_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..a18472e Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..609a1cc Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..2579783 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..d80db60 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..88c548f Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..3d85f86 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..92e4294 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..386658d Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..85ca37b Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..04d7b68 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..fea9792 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..22f3d4d Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..2702b42 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..a36c18f Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..6c4a59e Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..abf7b23 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..19b6c66 Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..6df910e Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..e64d14a Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.425230_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.425230_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..52e501a Binary files /dev/null and b/goompy_testing/mapscache/38.425230_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..a558884 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..25a32be Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..f03f834 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..acb4ed2 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..782f69f Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..10eed52 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..1e0e054 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..4f69970 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..c3beb6a Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..88cce15 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..e9ab44c Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..1928d13 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..f0e4484 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..a151d55 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..e34dee5 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..45678a9 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..5baa3f9 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..a371387 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..2c47e68 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..375f944 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.426575_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.426575_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..8f280f2 Binary files /dev/null and b/goompy_testing/mapscache/38.426575_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..e817bf1 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.766634_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.766634_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.766634_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.766634_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.766634_15_satellite_640_640.jpg new file mode 100644 index 0000000..0f35daa Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.766634_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..9cba3c1 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..eb1e7b1 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..babbf7a Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..bc4c7b5 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..742d9c1 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..178163b Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.780367_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.780367_16_satellite_640_640.jpg new file mode 100644 index 0000000..8a5d19d Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.780367_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..a5d0954 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..b38f89f Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..4c7f432 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..79ebe8a Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6b9d8d Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..3b4e7f2 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.794100_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.794100_15_roadmap_640_640.jpg new file mode 100644 index 0000000..d1f125c Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.794100_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.794100_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.794100_15_satellite_640_640.jpg new file mode 100644 index 0000000..f9e978a Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.794100_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.794100_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.794100_16_satellite_640_640.jpg new file mode 100644 index 0000000..5ab451a Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.794100_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..26751d1 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..ad3e622 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..71131ac Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..8c913a2 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..c97b96f Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..ce466e8 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.807833_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.807833_16_satellite_640_640.jpg new file mode 100644 index 0000000..aa1b208 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.807833_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..f5f783a Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..7f6ae21 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..266a2a6 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..40715d3 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..b421b25 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..97d4d55 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_14_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_14_satellite_640_640.jpg new file mode 100644 index 0000000..ac83471 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_14_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_15_roadmap_640_640.jpg new file mode 100644 index 0000000..4202ae2 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_15_satellite_640_640.jpg new file mode 100644 index 0000000..579ad9e Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_16_satellite_640_640.jpg new file mode 100644 index 0000000..8149859 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..a735850 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..e57f1fa Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..b15bb8d Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..54ac3ee Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..9d78a15 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.849032_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.849032_15_roadmap_640_640.jpg new file mode 100644 index 0000000..744df8f Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.849032_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.427920_-110.849032_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.427920_-110.849032_15_satellite_640_640.jpg new file mode 100644 index 0000000..2b27769 Binary files /dev/null and b/goompy_testing/mapscache/38.427920_-110.849032_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..d925cd4 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..dadcdd0 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..e8e10b5 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..3e7622c Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..90bbc33 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..f085089 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..ab853dd Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..29b2dd8 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..9d1e0d4 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..3eb588b Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..5603ae6 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..fb4f1ea Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..1e046ed Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..2babb23 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..6b10240 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..bc23adb Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..071006a Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..94b0c4b Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..3d3b443 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..87e2cfe Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.429264_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.429264_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..e435984 Binary files /dev/null and b/goompy_testing/mapscache/38.429264_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..8fba70e Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..20759ea Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..3eb965c Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..f920324 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..f6dc042 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..d004498 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..358a797 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..3890a01 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..8bdfe59 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..e8077c0 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..87d5e93 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..55ea1a1 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..18e324b Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..3c7dd4d Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..199b448 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..2822261 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..82ae8ec Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..ad72ceb Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..0d7fb0f Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.430609_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.430609_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..05ee4c0 Binary files /dev/null and b/goompy_testing/mapscache/38.430609_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..05a0e17 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..eefbcf4 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..bba9e15 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..5d50bdd Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..c7e1364 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..d17e5eb Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..0840f45 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..344334d Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..55a2cf0 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..3f81a44 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..3a805f0 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..ad150a1 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..9a9cad0 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..cd0b213 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..5b00bf2 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..5e4b2af Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..ee9aa65 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..c5e9581 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..657be14 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..e0f3e27 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.431954_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.431954_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..c343799 Binary files /dev/null and b/goompy_testing/mapscache/38.431954_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.763201_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.763201_18_satellite_640_640.jpg new file mode 100644 index 0000000..6530e2b Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.763201_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.766634_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.766634_17_satellite_640_640.jpg new file mode 100644 index 0000000..c9e0046 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.766634_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.766634_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.766634_18_satellite_640_640.jpg new file mode 100644 index 0000000..796d9ad Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.766634_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.770067_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.770067_18_satellite_640_640.jpg new file mode 100644 index 0000000..5efe623 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.770067_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.773501_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.773501_16_satellite_640_640.jpg new file mode 100644 index 0000000..6acc881 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.773501_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.773501_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.773501_17_satellite_640_640.jpg new file mode 100644 index 0000000..5523d0a Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.773501_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.773501_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.773501_18_satellite_640_640.jpg new file mode 100644 index 0000000..de81f30 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.773501_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.776934_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.776934_18_satellite_640_640.jpg new file mode 100644 index 0000000..5e10575 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.776934_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.780367_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.780367_17_satellite_640_640.jpg new file mode 100644 index 0000000..1d75405 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.780367_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.780367_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.780367_18_satellite_640_640.jpg new file mode 100644 index 0000000..e4ac3de Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.780367_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.783800_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.783800_18_satellite_640_640.jpg new file mode 100644 index 0000000..21f84b9 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.783800_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.787234_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.787234_16_satellite_640_640.jpg new file mode 100644 index 0000000..7f27c25 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.787234_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.787234_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.787234_17_satellite_640_640.jpg new file mode 100644 index 0000000..ec42f55 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.787234_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.787234_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.787234_18_satellite_640_640.jpg new file mode 100644 index 0000000..55cbc77 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.787234_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.790667_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.790667_18_satellite_640_640.jpg new file mode 100644 index 0000000..2e386dc Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.790667_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.794100_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.794100_17_satellite_640_640.jpg new file mode 100644 index 0000000..d04a67c Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.794100_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.794100_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.794100_18_satellite_640_640.jpg new file mode 100644 index 0000000..36fb5ce Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.794100_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.797533_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.797533_18_satellite_640_640.jpg new file mode 100644 index 0000000..754a7bd Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.797533_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.800966_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.800966_16_satellite_640_640.jpg new file mode 100644 index 0000000..bea45a0 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.800966_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.800966_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.800966_17_satellite_640_640.jpg new file mode 100644 index 0000000..12b3a67 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.800966_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.800966_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.800966_18_satellite_640_640.jpg new file mode 100644 index 0000000..eb0e19f Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.800966_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.804400_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.804400_18_satellite_640_640.jpg new file mode 100644 index 0000000..68b61f1 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.804400_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.807833_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.807833_17_satellite_640_640.jpg new file mode 100644 index 0000000..ef73dd2 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.807833_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.807833_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.807833_18_satellite_640_640.jpg new file mode 100644 index 0000000..b39de63 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.807833_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.811266_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.811266_18_satellite_640_640.jpg new file mode 100644 index 0000000..9103a5f Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.811266_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.814699_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.814699_16_satellite_640_640.jpg new file mode 100644 index 0000000..49211c4 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.814699_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.814699_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.814699_17_satellite_640_640.jpg new file mode 100644 index 0000000..f83ffa2 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.814699_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.814699_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.814699_18_satellite_640_640.jpg new file mode 100644 index 0000000..e2fad0a Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.814699_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.818133_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.818133_18_satellite_640_640.jpg new file mode 100644 index 0000000..5d27c7a Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.818133_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.821566_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.821566_17_satellite_640_640.jpg new file mode 100644 index 0000000..f75cc9c Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.821566_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.821566_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.821566_18_satellite_640_640.jpg new file mode 100644 index 0000000..ea4ee3c Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.821566_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.824999_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.824999_18_satellite_640_640.jpg new file mode 100644 index 0000000..0c0ccc8 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.824999_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.828432_16_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.828432_16_satellite_640_640.jpg new file mode 100644 index 0000000..db393ac Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.828432_16_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.828432_17_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.828432_17_satellite_640_640.jpg new file mode 100644 index 0000000..90b70f5 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.828432_17_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.433299_-110.828432_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.433299_-110.828432_18_satellite_640_640.jpg new file mode 100644 index 0000000..8903b05 Binary files /dev/null and b/goompy_testing/mapscache/38.433299_-110.828432_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..3bce83a Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..212eb46 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..1705a2f Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..9e10ae4 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..e96e0e9 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..ddb2b62 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..e47f20b Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..e5e9b29 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..a8d382f Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..49dd4a0 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..a2930cb Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..8005491 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..e813fb4 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..c085d44 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..52f2eaa Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..d786808 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..fcdd949 Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..65f627d Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..7024a9c Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..255445a Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.434643_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.434643_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..ddd5bec Binary files /dev/null and b/goompy_testing/mapscache/38.434643_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..3ec76fe Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..3b64d95 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..35033f9 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..ebeeb97 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..22872a1 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..ca11724 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..0e4b2c6 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..144c2bc Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..dec35ef Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..cb3f7c8 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..5a1b799 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..d298270 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..425923a Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..2ab8a44 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..010d25e Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..f0f772e Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..8e8399d Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..07f2899 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..422947d Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..1c18b4f Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.437333_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.437333_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..beac2c0 Binary files /dev/null and b/goompy_testing/mapscache/38.437333_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.438677_-110.780367_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.438677_-110.780367_15_satellite_640_640.jpg new file mode 100644 index 0000000..e6185f2 Binary files /dev/null and b/goompy_testing/mapscache/38.438677_-110.780367_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.438677_-110.807833_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.438677_-110.807833_15_satellite_640_640.jpg new file mode 100644 index 0000000..8f964c6 Binary files /dev/null and b/goompy_testing/mapscache/38.438677_-110.807833_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.438677_-110.835299_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.438677_-110.835299_15_satellite_640_640.jpg new file mode 100644 index 0000000..fb03edc Binary files /dev/null and b/goompy_testing/mapscache/38.438677_-110.835299_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..b7c8376 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..d8e38e3 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..3db890b Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..b4536cb Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..baf17d5 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..40dd8da Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..08ebb38 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..386b5ea Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..8d244df Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..1bc38f9 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..9b97f8f Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..95fe6a2 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..c33c913 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..1f9e6fc Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..4e86b66 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..1eab1e3 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..f07a7ee Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..8e706f6 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..7dceb85 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..a6b7896 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.440022_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.440022_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..a5d3509 Binary files /dev/null and b/goompy_testing/mapscache/38.440022_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.771784_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.771784_18_satellite_640_640.jpg new file mode 100644 index 0000000..21d9e73 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.771784_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.775217_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.775217_18_satellite_640_640.jpg new file mode 100644 index 0000000..30d3db1 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.775217_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.778650_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.778650_18_satellite_640_640.jpg new file mode 100644 index 0000000..457f724 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.778650_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.782084_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.782084_18_satellite_640_640.jpg new file mode 100644 index 0000000..4ec394f Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.782084_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.785517_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.785517_18_satellite_640_640.jpg new file mode 100644 index 0000000..cb8401b Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.785517_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.788950_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.788950_18_satellite_640_640.jpg new file mode 100644 index 0000000..1bb0bdb Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.788950_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.792383_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.792383_18_satellite_640_640.jpg new file mode 100644 index 0000000..b1c4c55 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.792383_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.795817_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.795817_18_satellite_640_640.jpg new file mode 100644 index 0000000..9a80e99 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.795817_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.799250_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.799250_18_satellite_640_640.jpg new file mode 100644 index 0000000..d307474 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.799250_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.802683_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.802683_18_satellite_640_640.jpg new file mode 100644 index 0000000..736f40d Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.802683_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.806116_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.806116_18_satellite_640_640.jpg new file mode 100644 index 0000000..5d9579b Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.806116_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.809550_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.809550_18_satellite_640_640.jpg new file mode 100644 index 0000000..630a093 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.809550_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.812983_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.812983_18_satellite_640_640.jpg new file mode 100644 index 0000000..fbb55a0 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.812983_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.816416_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.816416_18_satellite_640_640.jpg new file mode 100644 index 0000000..856dec4 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.816416_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.819849_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.819849_18_satellite_640_640.jpg new file mode 100644 index 0000000..8aefadc Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.819849_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.823282_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.823282_18_satellite_640_640.jpg new file mode 100644 index 0000000..5a46d2f Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.823282_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.826716_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.826716_18_satellite_640_640.jpg new file mode 100644 index 0000000..eb266a2 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.826716_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.830149_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.830149_18_satellite_640_640.jpg new file mode 100644 index 0000000..effddc1 Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.830149_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.833582_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.833582_18_satellite_640_640.jpg new file mode 100644 index 0000000..97f066d Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.833582_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.837015_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.837015_18_satellite_640_640.jpg new file mode 100644 index 0000000..7b6c28e Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.837015_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.442711_-110.840449_18_satellite_640_640.jpg b/goompy_testing/mapscache/38.442711_-110.840449_18_satellite_640_640.jpg new file mode 100644 index 0000000..95e365c Binary files /dev/null and b/goompy_testing/mapscache/38.442711_-110.840449_18_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.766634_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.766634_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.766634_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.766634_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.766634_15_satellite_640_640.jpg new file mode 100644 index 0000000..dd8194e Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.766634_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.794100_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.794100_15_roadmap_640_640.jpg new file mode 100644 index 0000000..5b69b7a Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.794100_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.794100_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.794100_15_satellite_640_640.jpg new file mode 100644 index 0000000..6d75f49 Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.794100_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.821566_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.821566_15_roadmap_640_640.jpg new file mode 100644 index 0000000..fefa86f Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.821566_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.821566_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.821566_15_satellite_640_640.jpg new file mode 100644 index 0000000..c8cd376 Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.821566_15_satellite_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.849032_15_roadmap_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.849032_15_roadmap_640_640.jpg new file mode 100644 index 0000000..e92b6ba Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.849032_15_roadmap_640_640.jpg differ diff --git a/goompy_testing/mapscache/38.449433_-110.849032_15_satellite_640_640.jpg b/goompy_testing/mapscache/38.449433_-110.849032_15_satellite_640_640.jpg new file mode 100644 index 0000000..eff2c03 Binary files /dev/null and b/goompy_testing/mapscache/38.449433_-110.849032_15_satellite_640_640.jpg differ diff --git a/goompy_testing/qt_example.py b/goompy_testing/qt_example.py new file mode 100644 index 0000000..99bb462 --- /dev/null +++ b/goompy_testing/qt_example.py @@ -0,0 +1,255 @@ +#!/usr/bin python3.5 + +""" + Main file used to launch the Rover Base Station + No other files should be used for launching this application. +""" + +__author__ = "Corwin Perren" +__credits__ = [""] +__license__ = "GPL (GNU General Public License) 3.0" +__version__ = "0.1" +__maintainer__ = "Corwin Perren" +__email__ = "caperren@caperren.com" +__status__ = "Development" + +##################################### +# Imports +##################################### +# Python native imports +import sys +from PyQt5 import QtWidgets, QtCore, QtGui, uic, QtWebEngine, QtQuick, QtQml +import signal +import logging +import time +from goompy import GooMPy +from PIL.ImageQt import ImageQt +import PIL + +##################################### +# Global Variables +##################################### +UI_FILE_PATH = "ui.ui" + + +LATITUDE = 38.4064262 +LONGITUDE = -110.794115 +ZOOM = 18 # 15,16, and 18 18 seems best +MAPTYPE = 'satellite' + +WIDTH = 640 +HEIGHT = 640 + + +##################################### +# Application Class Definition +##################################### +class ApplicationWindow(QtWidgets.QMainWindow): + connect_all_signals_to_slots_signal = QtCore.pyqtSignal() + start_all_threads = QtCore.pyqtSignal() + kill_threads_signal = QtCore.pyqtSignal() + + image_shown_signal = QtCore.pyqtSignal() + + def __init__(self, parent=None): + # noinspection PyArgumentList + super(ApplicationWindow, self).__init__(parent) + uic.loadUi(UI_FILE_PATH, self) + + # ########## Class Variables ########## + self.num_threads_running = 0 + self.threads = [] # type: [QtCore.QThread] + + # ########## Instantiation of program classes ########## + # Settings class and version number set + + # Uncomment these lines to completely reset settings and quit, then re-comment and rerun program + # self.settings.clear() + # self.close() + + self.label = self.label # type: QtWidgets.QLabel + + self.read_updater = ReadUpdater(self) + + # ########## Add threads to list for easy access on program close ########## + self.threads.append(self.read_updater) + + # ########## Setup signal/slot connections ########## + for thread in self.threads: + self.connect_all_signals_to_slots_signal.connect(thread.connect_signals_to_slots__slot) + + self.connect_all_signals_to_slots_signal.emit() + + # ########## Start all child threads ########## + for thread in self.threads: + self.start_all_threads.connect(thread.start) + + self.start_all_threads.emit() + + time.sleep(1) + + # ########## Ensure all threads started properly ########## + for thread in self.threads: + if not thread.isRunning(): + self.logger.error("Thread" + thread.__class__.__name__ + " failed to start! Exiting...") + for thread in self.threads: + thread.terminate() + self.close() + + # self.logger.info("All threads started successfully!") + + def show_graphics_view__slot(self): + self.graphicsView.show() + self.label.setPixmap(self.read_updater.pix) + + + def closeEvent(self, event): + # Tell all threads to die + self.kill_threads_signal.emit() + + # Wait for all the threads to end properly + for thread in self.threads: + thread.wait() + + # Print final log noting shutdown and shutdown the logger to flush to disk + self.logger.debug("########## Application Stopping ##########") + logging.shutdown() + + # Accept the close event to properly close the program + event.accept() + + +class ReadUpdater(QtCore.QThread): + + request_viewport_update = QtCore.pyqtSignal() + + def __init__(self, main_window): + super(ReadUpdater, self).__init__() + + # ########## Reference to top level window ########## + self.main_window = main_window # type: QtWidgets.QMainWindow + + # ########## Get the settings instance ########## + self.settings = QtCore.QSettings() + + # ########## Get the Pick And Plate instance of the logger ########## + self.logger = logging.getLogger("RoverBaseStation") + + self.goompy = GooMPy(2*WIDTH, HEIGHT, LATITUDE, LONGITUDE, ZOOM, MAPTYPE, 1500) + + self.tab_widget = self.main_window.tabWidget # type: QtWidgets.QTabWidget + + # ########## Some Flags ########## + self.run_thread_flag = True + + # ########## Class variables ########## + self.data_last_seen = time.time() + + def run(self): + #self.logger.debug("Read Updater Thread Starting...") + + self.request_viewport_update.connect(self.main_window.show_graphics_view__slot) + #self.goompy.move(650, 400) + + dx = 1 + dy = 1 + + x_num = 0 + y_num = 0 + + dir_x = 0 + dir_y = 0 + + count_max = 500 + + while self.run_thread_flag: + + #self.scene.clear() + + #self.scene = QtWidgets.QGraphicsScene(self) + #self.graphics_view.setScene(self.scene) + if dir_x: + self.goompy.move(-dx, 0) + x_num -= 1 + else: + self.goompy.move(dx, 0) + x_num += 1 + + if dir_y: + self.goompy.move(0, -dy) + y_num -= 1 + else: + self.goompy.move(0, dy) + y_num += 1 + + + + + if x_num >= count_max: + dir_y = 1 + dir_x = 1 + elif x_num <= 0: + dir_y = 0 + dir_x = 0 + + self.image = self.goompy.getImage().convert("RGBA") # type: PIL.Image.Image + print(self.goompy.northwest) + print(self.goompy.southeast) + print(self.goompy.uppery) + print(self.goompy.leftx) + print(self.goompy.bigimage.size) + #self.goompy. + + #self.image = self.image.crop((500, 500, 750, 750)) + + print(self.image) + + + # print(self.image.height) + # print(self.image.width) + + qim = ImageQt(self.image) + #self.pix. + # type: QtGui.QPixmap + + # print(test) + # test.setPixmap(pixmap) + + # print(self.pix.width()) + # print(self.pix.height()) + # print(self.pix.colorCount()) + + # self.pix + self.pix = QtGui.QPixmap.fromImage(qim) + self.request_viewport_update.emit() + + # while self.wait_til_shown: + # self.msleep(1) + + + self.msleep(20) + + #self.logger.debug("Read Updater Thread Stopping...") + + + + def connect_signals_to_slots__slot(self): + + self.main_window.kill_threads_signal.connect(self.on_kill_threads__slot) + + def on_image_shown__slot(self): + self.wait_til_shown = False + + def on_kill_threads__slot(self): + self.run_thread_flag = False + +##################################### +# Main Definition +##################################### +if __name__ == "__main__": + signal.signal(signal.SIGINT, signal.SIG_DFL) # This allows the keyboard interrupt kill to work properly + application = QtWidgets.QApplication(sys.argv) # Create the base qt gui application + app_window = ApplicationWindow() # Make a window in this application + app_window.setWindowTitle("Rover Base Station") # Sets the window title + app_window.show() # Show the window in the application + application.exec_() # Execute launching of the application diff --git a/goompy_testing/ui.ui b/goompy_testing/ui.ui new file mode 100644 index 0000000..b877831 --- /dev/null +++ b/goompy_testing/ui.ui @@ -0,0 +1,48 @@ + + + MainWindow + + + + 0 + 0 + 314 + 231 + + + + MainWindow + + + + + + + + + + + + + + + Tab 1 + + + + + Tab 2 + + + + + + + + + + + + + +