From 5331ef796007aea62948c6b2abed0571d493486c Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Wed, 3 Dec 2014 14:41:22 +0100 Subject: [PATCH] Update demo GeoServer location Currently demo.opengeo.org redirects to demo.boundlessgeo.com. This change makes it so demo.boundlessgeo.com is used directly. --- examples/SLDSelect.html | 2 +- examples/cql-format.html | 2 +- examples/getfeatureinfo-control.html | 12 ++-- examples/getfeatureinfo-popup.html | 10 +-- examples/image-layer.html | 2 +- examples/mobile-layers.js | 2 +- examples/overviewmap.html | 2 +- examples/proxy.cgi | 2 +- examples/wfs-filter.js | 4 +- examples/wfs-protocol-transactions.js | 4 +- examples/wfs-protocol.html | 2 +- examples/wfs-reprojection.js | 2 +- examples/wfs-snap-split.html | 4 +- examples/wfs-spatial-filter.js | 2 +- examples/wfs-states.js | 4 +- examples/wps-client.js | 2 +- examples/wps.js | 2 +- tests/manual/dateline-sketch.html | 2 +- tests/manual/dateline-smallextent.html | 4 +- tests/manual/google-fullscreen-overlay.html | 2 +- tests/speed/wmscaps.js | 68 ++++++++++----------- tests/speed/wmscaps.xml | 68 ++++++++++----------- 22 files changed, 102 insertions(+), 102 deletions(-) diff --git a/examples/SLDSelect.html b/examples/SLDSelect.html index ff07e319d1..9187609af1 100644 --- a/examples/SLDSelect.html +++ b/examples/SLDSelect.html @@ -28,7 +28,7 @@ function init(){ OpenLayers.ProxyHost= "proxy.cgi?url="; map = new OpenLayers.Map('map', {allOverlays: true, controls: []}); - var url = "http://demo.opengeo.org/geoserver/wms"; + var url = "http://demo.boundlessgeo.com/geoserver/wms"; layers = { states: new OpenLayers.Layer.WMS("State boundary", url, {layers: 'topp:tasmania_state_boundaries', format: 'image/gif', transparent: 'TRUE'}, diff --git a/examples/cql-format.html b/examples/cql-format.html index 31122d8d04..04f8002f06 100644 --- a/examples/cql-format.html +++ b/examples/cql-format.html @@ -49,6 +49,6 @@

CQL Filter Example

- + diff --git a/examples/getfeatureinfo-control.html b/examples/getfeatureinfo-control.html index baecd420fb..ab20f34c0e 100644 --- a/examples/getfeatureinfo-control.html +++ b/examples/getfeatureinfo-control.html @@ -56,25 +56,25 @@ }); var political = new OpenLayers.Layer.WMS("State Boundaries", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_state_boundaries', transparent: true, format: 'image/gif'}, {isBaseLayer: true} ); var roads = new OpenLayers.Layer.WMS("Roads", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_roads', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); var cities = new OpenLayers.Layer.WMS("Cities", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_cities', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); water = new OpenLayers.Layer.WMS("Bodies of Water", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_water_bodies', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); @@ -87,13 +87,13 @@ infoControls = { click: new OpenLayers.Control.WMSGetFeatureInfo({ - url: 'http://demo.opengeo.org/geoserver/wms', + url: 'http://demo.boundlessgeo.com/geoserver/wms', title: 'Identify features by clicking', layers: [water], queryVisible: true }), hover: new OpenLayers.Control.WMSGetFeatureInfo({ - url: 'http://demo.opengeo.org/geoserver/wms', + url: 'http://demo.boundlessgeo.com/geoserver/wms', title: 'Identify features by clicking', layers: [water], hover: true, diff --git a/examples/getfeatureinfo-popup.html b/examples/getfeatureinfo-popup.html index cecdebe9ac..6a61249a61 100644 --- a/examples/getfeatureinfo-popup.html +++ b/examples/getfeatureinfo-popup.html @@ -20,25 +20,25 @@ }); var political = new OpenLayers.Layer.WMS("State Boundaries", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_state_boundaries', transparent: true, format: 'image/gif'}, {isBaseLayer: true} ); var roads = new OpenLayers.Layer.WMS("Roads", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_roads', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); var cities = new OpenLayers.Layer.WMS("Cities", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_cities', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); var water = new OpenLayers.Layer.WMS("Bodies of Water", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {'layers': 'topp:tasmania_water_bodies', transparent: true, format: 'image/gif'}, {isBaseLayer: false} ); @@ -51,7 +51,7 @@ map.addLayers([political, roads, cities, water, highlight]); info = new OpenLayers.Control.WMSGetFeatureInfo({ - url: 'http://demo.opengeo.org/geoserver/wms', + url: 'http://demo.boundlessgeo.com/geoserver/wms', title: 'Identify features by clicking', queryVisible: true, eventListeners: { diff --git a/examples/image-layer.html b/examples/image-layer.html index 235f9fc8c9..23baf332c0 100644 --- a/examples/image-layer.html +++ b/examples/image-layer.html @@ -38,7 +38,7 @@ var jpl_wms = new OpenLayers.Layer.WMS( "Global Imagery", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: "bluemarble"}, {maxExtent: [-160, -88.759, 160, 88.759], numZoomLevels: 3} ); diff --git a/examples/mobile-layers.js b/examples/mobile-layers.js index 62c65e1393..ac73b97e65 100644 --- a/examples/mobile-layers.js +++ b/examples/mobile-layers.js @@ -58,7 +58,7 @@ function init() { var wfs = new OpenLayers.Layer.Vector("States", { strategies: [new OpenLayers.Strategy.Fixed()], protocol: new OpenLayers.Protocol.WFS({ - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "states", featureNS: "http://www.openplans.org/topp" }), diff --git a/examples/overviewmap.html b/examples/overviewmap.html index 55de4928ec..e368c1c293 100644 --- a/examples/overviewmap.html +++ b/examples/overviewmap.html @@ -65,7 +65,7 @@

Overview Map

// A more detailed layer of Manhattan for map2 var ny = new OpenLayers.Layer.WMS( "Manhattan", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", { layers: 'tiger-ny', format: 'image/png' diff --git a/examples/proxy.cgi b/examples/proxy.cgi index 1d2818f27a..ca42f2b752 100755 --- a/examples/proxy.cgi +++ b/examples/proxy.cgi @@ -18,7 +18,7 @@ import sys, os allowedHosts = ['www.openlayers.org', 'openlayers.org', 'labs.metacarta.com', 'world.freemap.in', 'prototype.openmnnd.org', 'geo.openplans.org', - 'sigma.openplans.org', 'demo.opengeo.org', + 'sigma.openplans.org', 'demo.boundlessgeo.com', 'www.openstreetmap.org', 'sample.azavea.com', 'v2.suite.opengeo.org', 'v-swe.uni-muenster.de:8080', 'vmap0.tiles.osgeo.org', 'www.openrouteservice.org', diff --git a/examples/wfs-filter.js b/examples/wfs-filter.js index 18d517cb35..ec7c80e6e0 100644 --- a/examples/wfs-filter.js +++ b/examples/wfs-filter.js @@ -10,13 +10,13 @@ function init() { layers: [ new OpenLayers.Layer.WMS( "Natural Earth", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: "topp:naturalearth"} ), new OpenLayers.Layer.Vector("WFS", { strategies: [new OpenLayers.Strategy.BBOX()], protocol: new OpenLayers.Protocol.WFS({ - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "tasmania_roads", featureNS: "http://www.openplans.org/topp" }), diff --git a/examples/wfs-protocol-transactions.js b/examples/wfs-protocol-transactions.js index f0818272fb..aa14e84e47 100644 --- a/examples/wfs-protocol-transactions.js +++ b/examples/wfs-protocol-transactions.js @@ -57,11 +57,11 @@ function init() { protocol: new OpenLayers.Protocol.WFS({ version: "1.1.0", srsName: "EPSG:4326", - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureNS : "http://opengeo.org", featureType: "restricted", geometryName: "the_geom", - schema: "http://demo.opengeo.org/geoserver/wfs/DescribeFeatureType?version=1.1.0&typename=og:restricted" + schema: "http://demo.boundlessgeo.com/geoserver/wfs/DescribeFeatureType?version=1.1.0&typename=og:restricted" }) }); diff --git a/examples/wfs-protocol.html b/examples/wfs-protocol.html index 97752a5f30..de306ecd39 100644 --- a/examples/wfs-protocol.html +++ b/examples/wfs-protocol.html @@ -23,7 +23,7 @@ var layer = new OpenLayers.Layer.Vector("WFS", { strategies: [new OpenLayers.Strategy.BBOX()], protocol: new OpenLayers.Protocol.WFS({ - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "tasmania_roads", featureNS: "http://www.openplans.org/topp" }) diff --git a/examples/wfs-reprojection.js b/examples/wfs-reprojection.js index 64a07367a2..01948d5de4 100644 --- a/examples/wfs-reprojection.js +++ b/examples/wfs-reprojection.js @@ -41,7 +41,7 @@ function init() { protocol: new OpenLayers.Protocol.WFS({ version: "1.0.0", srsName: "EPSG:4326", // this is the default - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "states", featureNS: "http://www.openplans.org/topp" }), diff --git a/examples/wfs-snap-split.html b/examples/wfs-snap-split.html index 0b71da021d..d813d82ccd 100644 --- a/examples/wfs-snap-split.html +++ b/examples/wfs-snap-split.html @@ -173,11 +173,11 @@ protocol: new OpenLayers.Protocol.WFS({ version: "1.1.0", srsName: "EPSG:4326", - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureNS : "http://opengeo.org", featureType: "roads", geometryName: "the_geom", - schema: "http://demo.opengeo.org/geoserver/wfs/DescribeFeatureType?version=1.1.0&typename=og:roads" + schema: "http://demo.boundlessgeo.com/geoserver/wfs/DescribeFeatureType?version=1.1.0&typename=og:roads" }) }); diff --git a/examples/wfs-spatial-filter.js b/examples/wfs-spatial-filter.js index 4ca9fd5624..0de6f949ad 100644 --- a/examples/wfs-spatial-filter.js +++ b/examples/wfs-spatial-filter.js @@ -8,7 +8,7 @@ var wms = new OpenLayers.Layer.WMS( var layer = new OpenLayers.Layer.Vector("WFS", { strategies: [new OpenLayers.Strategy.BBOX()], protocol: new OpenLayers.Protocol.WFS({ - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "tasmania_roads", featureNS: "http://www.openplans.org/topp" }) diff --git a/examples/wfs-states.js b/examples/wfs-states.js index c4e801e6cf..d9e2060f86 100644 --- a/examples/wfs-states.js +++ b/examples/wfs-states.js @@ -14,7 +14,7 @@ function init() { {layers: "basic"} ), new OpenLayers.Layer.WMS("States WMS", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: "topp:states", format: "image/png", transparent: true}, {maxScale: 15000000} ), @@ -22,7 +22,7 @@ function init() { minScale: 15000000, strategies: [new OpenLayers.Strategy.BBOX()], protocol: new OpenLayers.Protocol.WFS({ - url: "http://demo.opengeo.org/geoserver/wfs", + url: "http://demo.boundlessgeo.com/geoserver/wfs", featureType: "states", featureNS: "http://www.openplans.org/topp" }), diff --git a/examples/wps-client.js b/examples/wps-client.js index 511d491ea0..3fe0c78b3c 100644 --- a/examples/wps-client.js +++ b/examples/wps-client.js @@ -23,7 +23,7 @@ function init() { client = new OpenLayers.WPSClient({ servers: { - opengeo: 'http://demo.opengeo.org/geoserver/wps' + opengeo: 'http://demo.boundlessgeo.com/geoserver/wps' } }); diff --git a/examples/wps.js b/examples/wps.js index e54f35dda3..642100b6cc 100644 --- a/examples/wps.js +++ b/examples/wps.js @@ -1,6 +1,6 @@ OpenLayers.ProxyHost = "proxy.cgi?url="; -var wps = "http://demo.opengeo.org/geoserver/wps", +var wps = "http://demo.boundlessgeo.com/geoserver/wps", capabilities, // the capabilities, read by Format.WPSCapabilities::read process; // the process description from Format.WPSDescribeProcess::read diff --git a/tests/manual/dateline-sketch.html b/tests/manual/dateline-sketch.html index 1be1f36a06..4e9490f8e9 100644 --- a/tests/manual/dateline-sketch.html +++ b/tests/manual/dateline-sketch.html @@ -36,7 +36,7 @@

OpenLayers sketch handlers crossing the dateline example

var map = new OpenLayers.Map('map'); var base = new OpenLayers.Layer.WMS("marble", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: "topp:naturalearth"}, {wrapDateLine: true} ); diff --git a/tests/manual/dateline-smallextent.html b/tests/manual/dateline-smallextent.html index 1d05e849cf..0e6bc8da2b 100644 --- a/tests/manual/dateline-smallextent.html +++ b/tests/manual/dateline-smallextent.html @@ -23,13 +23,13 @@ map = new OpenLayers.Map('map'); var base = new OpenLayers.Layer.WMS("marble", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: "topp:naturalearth"}, {wrapDateLine: true} ); var extent = new OpenLayers.Bounds(142.3828125,-70.902270266175,233.6171875,-12.039326531729); var wms = new OpenLayers.Layer.WMS( "world", - "http://demo.opengeo.org/geoserver/wms", + "http://demo.boundlessgeo.com/geoserver/wms", {layers: 'world', transparent: true}, {maxExtent: extent} ); diff --git a/tests/manual/google-fullscreen-overlay.html b/tests/manual/google-fullscreen-overlay.html index 80a8fd4b52..a452e2c389 100644 --- a/tests/manual/google-fullscreen-overlay.html +++ b/tests/manual/google-fullscreen-overlay.html @@ -44,7 +44,7 @@

Google v3 with Overlay Test

"Google Streets", {sphericalMercator: true} ); var states = new OpenLayers.Layer.WMS( - "USA States", "http://demo.opengeo.org/geoserver/wms", + "USA States", "http://demo.boundlessgeo.com/geoserver/wms", {layers: "topp:states", transparent: true} ); map.addLayers([gmap, states]); diff --git a/tests/speed/wmscaps.js b/tests/speed/wmscaps.js index a186779de4..c4d8e7abf2 100644 --- a/tests/speed/wmscaps.js +++ b/tests/speed/wmscaps.js @@ -1,6 +1,6 @@ var caps = '' + -'' + +'' + '' + ' ' + ' OGC:WMS' + @@ -11,7 +11,7 @@ var caps = ' WMS' + ' GEOSERVER' + ' ' + -' ' + +' ' + ' ' + ' ' + ' Claudius Ptolomaeus' + @@ -40,10 +40,10 @@ var caps = ' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -80,7 +80,7 @@ var caps = ' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -92,10 +92,10 @@ var caps = ' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -105,7 +105,7 @@ var caps = ' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -117,7 +117,7 @@ var caps = ' ' + ' ' + ' ' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4086,7 +4086,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4131,7 +4131,7 @@ var caps = ' A sample style that just prints out a transparent red interior with a red outline' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4176,7 +4176,7 @@ var caps = ' A sample style that just prints out a 6px wide red square' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4220,7 +4220,7 @@ var caps = ' Blue lines, 2px wide' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4253,7 +4253,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4286,7 +4286,7 @@ var caps = ' Manhattan points of interest' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4318,7 +4318,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4353,7 +4353,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4393,7 +4393,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4425,7 +4425,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4457,7 +4457,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4488,7 +4488,7 @@ var caps = ' ' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4519,7 +4519,7 @@ var caps = ' Light red line, 2px wide' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4551,7 +4551,7 @@ var caps = ' Green fill with black outline' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4585,7 +4585,7 @@ var caps = ' A blue fill, solid black outline style' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4620,7 +4620,7 @@ var caps = ' categories of population, drawn in different colors' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4651,7 +4651,7 @@ var caps = ' Default line style, 1 pixel wide blue' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4682,7 +4682,7 @@ var caps = ' Default line style, 1 pixel wide blue' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4713,7 +4713,7 @@ var caps = ' Default line style, 1 pixel wide blue' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4756,7 +4756,7 @@ var caps = ' Light red line, 2px wide' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4787,7 +4787,7 @@ var caps = ' Default line style, 1 pixel wide blue' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4819,7 +4819,7 @@ var caps = ' A sample style for rasters, good for displaying imagery' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4851,7 +4851,7 @@ var caps = ' A sample style for rasters, good for displaying imagery' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4883,7 +4883,7 @@ var caps = ' A sample style for rasters, good for displaying imagery' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + @@ -4930,7 +4930,7 @@ var caps = ' Classic elevation color progression' + ' ' + ' image/png' + -' ' + +' ' + ' ' + ' ' + ' ' + diff --git a/tests/speed/wmscaps.xml b/tests/speed/wmscaps.xml index 885f71275f..a406481079 100644 --- a/tests/speed/wmscaps.xml +++ b/tests/speed/wmscaps.xml @@ -1,5 +1,5 @@ - + OGC:WMS @@ -10,7 +10,7 @@ WMS GEOSERVER - + Claudius Ptolomaeus @@ -39,10 +39,10 @@ - + - + @@ -79,7 +79,7 @@ - + @@ -91,10 +91,10 @@ - + - + @@ -104,7 +104,7 @@ - + @@ -116,7 +116,7 @@ - + @@ -4085,7 +4085,7 @@ PROJCS["NAD27 / UTM zone 13N", image/png - + @@ -4130,7 +4130,7 @@ PROJCS["NAD27 / UTM zone 13N", A sample style that just prints out a transparent red interior with a red outline image/png - + @@ -4175,7 +4175,7 @@ PROJCS["NAD27 / UTM zone 13N", A sample style that just prints out a 6px wide red square image/png - + @@ -4219,7 +4219,7 @@ PROJCS["NAD27 / UTM zone 13N", Blue lines, 2px wide image/png - + @@ -4252,7 +4252,7 @@ GEOGCS["WGS 84", image/png - + @@ -4285,7 +4285,7 @@ GEOGCS["WGS 84", Manhattan points of interest image/png - + @@ -4317,7 +4317,7 @@ GEOGCS["WGS 84", image/png - + @@ -4352,7 +4352,7 @@ GEOGCS["WGS 84", image/png - + @@ -4392,7 +4392,7 @@ GEOGCS["WGS 84", image/png - + @@ -4424,7 +4424,7 @@ GEOGCS["WGS 84", image/png - + @@ -4456,7 +4456,7 @@ GEOGCS["WGS 84", image/png - + @@ -4487,7 +4487,7 @@ GEOGCS["WGS 84", image/png - + @@ -4518,7 +4518,7 @@ GEOGCS["WGS 84", Light red line, 2px wide image/png - + @@ -4550,7 +4550,7 @@ GEOGCS["WGS 84", Green fill with black outline image/png - + @@ -4584,7 +4584,7 @@ GEOGCS["WGS 84", A blue fill, solid black outline style image/png - + @@ -4619,7 +4619,7 @@ GEOGCS["WGS 84", categories of population, drawn in different colors image/png - + @@ -4650,7 +4650,7 @@ GEOGCS["WGS 84", Default line style, 1 pixel wide blue image/png - + @@ -4681,7 +4681,7 @@ GEOGCS["WGS 84", Default line style, 1 pixel wide blue image/png - + @@ -4712,7 +4712,7 @@ GEOGCS["WGS 84", Default line style, 1 pixel wide blue image/png - + @@ -4755,7 +4755,7 @@ PROJCS["NAD27 / UTM zone 13N", Light red line, 2px wide image/png - + @@ -4786,7 +4786,7 @@ GEOGCS["WGS 84", Default line style, 1 pixel wide blue image/png - + @@ -4818,7 +4818,7 @@ GEOGCS["WGS 84", A sample style for rasters, good for displaying imagery image/png - + @@ -4850,7 +4850,7 @@ GEOGCS["WGS 84", A sample style for rasters, good for displaying imagery image/png - + @@ -4882,7 +4882,7 @@ GEOGCS["WGS 84", A sample style for rasters, good for displaying imagery image/png - + @@ -4929,7 +4929,7 @@ PROJCS["NAD27 / UTM zone 13N", Classic elevation color progression image/png - +