diff --git a/examples/attribution.html b/examples/attribution.html index 634d2dc3e2..5383db471f 100644 --- a/examples/attribution.html +++ b/examples/attribution.html @@ -18,8 +18,8 @@ {'attribution': 'Provided by MetaCarta'}); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"},{attribution:"Provided by NASA"}); + "http://t1.hypercube.telascience.org/cgi-bin/landsat7", + {layers: "landsat7"},{attribution:"Provided by Telascience"}); map.addLayers([ol_wms, jpl_wms]); map.addControl(new OpenLayers.Control.LayerSwitcher()); diff --git a/examples/click.html b/examples/click.html index dbf9db21e9..8a5b73a1af 100644 --- a/examples/click.html +++ b/examples/click.html @@ -17,8 +17,8 @@ "http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'} ); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}); jpl_wms.setVisibility(false); diff --git a/examples/controls.html b/examples/controls.html index e2181e433d..076b00740e 100644 --- a/examples/controls.html +++ b/examples/controls.html @@ -27,8 +27,8 @@ {layers: 'basic'} ); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}); var dm_wms = new OpenLayers.Layer.WMS( "DM Solutions Demo", "http://www2.dmsolutions.ca/cgi-bin/mswms_gmap", diff --git a/examples/example.html b/examples/example.html index 8721f6dba1..2185a823ff 100644 --- a/examples/example.html +++ b/examples/example.html @@ -59,8 +59,8 @@ resolutions: [0.17578125,0.087890625,0.0439453125,0.02197265625,0.010986328125,0.0054931640625,0.00274658203125,0.00137329101] }; var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}, options2); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}, options2); var dm_wms = new OpenLayers.Layer.WMS( "DM Solutions Demo", "http://www2.dmsolutions.ca/cgi-bin/mswms_gmap", diff --git a/examples/fullScreen.html b/examples/fullScreen.html index 4cdea67acb..6d0ec01ad5 100644 --- a/examples/fullScreen.html +++ b/examples/fullScreen.html @@ -17,8 +17,8 @@ "http://labs.metacarta.com:80/wms/vmap0?", {layers: 'basic'}); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}); var dm_wms = new OpenLayers.Layer.WMS( "DM Solutions Demo", "http://www2.dmsolutions.ca/cgi-bin/mswms_gmap", diff --git a/examples/image-layer.html b/examples/image-layer.html index faba77f813..39ca3fbdc7 100644 --- a/examples/image-layer.html +++ b/examples/image-layer.html @@ -26,8 +26,8 @@ options); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}, options); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}, options); map.addLayers([graphic, jpl_wms]); map.addControl(new OpenLayers.Control.LayerSwitcher()); diff --git a/examples/layerswitcher.html b/examples/layerswitcher.html index 63416f5f09..838a999c5f 100644 --- a/examples/layerswitcher.html +++ b/examples/layerswitcher.html @@ -20,8 +20,8 @@ {layers: 'basic'}, {'displayInLayerSwitcher':false} ); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}, {'isBaseLayer': false}); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}, {'isBaseLayer': false}); var dm_wms = new OpenLayers.Layer.WMS( "DM Solutions Demo", "http://www2.dmsolutions.ca/cgi-bin/mswms_gmap", diff --git a/examples/mvs.html b/examples/mvs.html index bf68e76216..c6bbe756b6 100644 --- a/examples/mvs.html +++ b/examples/mvs.html @@ -88,10 +88,10 @@ function runMVS() { case 'nasa': theMVS.addLayer( new OpenLayers.Layer.WMS("NASA Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", + "http://t1.hypercube.telascience.org/tiles/landsat7", {"EXCEPTIONS" : "application/vnd.ogc.se_inimage", "format" : "image/jpeg", - layers:"modis,global_mosaic"} + layers:"landsat7"} )); break; case 'gmaps': diff --git a/examples/overviewmap.html b/examples/overviewmap.html index 475d4a1c16..bd96537b2c 100644 --- a/examples/overviewmap.html +++ b/examples/overviewmap.html @@ -39,8 +39,8 @@ var jpl = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms..nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"} + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"} ); map1.addLayers([ol, jpl]); diff --git a/examples/wmst.html b/examples/wmst.html index 400ac72654..a1740c55b7 100644 --- a/examples/wmst.html +++ b/examples/wmst.html @@ -17,8 +17,8 @@ "http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'} ); var jpl_wms = new OpenLayers.Layer.WMS( "NASA Global Mosaic", - "http://wms.jpl.nasa.gov/wms.cgi", - {layers: "modis,global_mosaic"}); + "http://t1.hypercube.telascience.org/tiles/landsat7", + {layers: "landsat7"}); ia_wms = new OpenLayers.Layer.WMS("Nexrad","http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cgi?",{layers:"nexrad-n0r-wmst",transparent:true,format:'image/png',time:"2005-08-29T13:00:00Z"});