Thank You Nathan...I now have access the the NASA WMS in openlayers!
<br />
<br />Any idea on how I would use the downloaded data pack in openlayers? Is that possible?
<br />
<br />
<br />
<br />On Nov 15, 2010 7:48pm, Nathan Gerber &lt;ngerber999@gmail.com&gt; wrote:
<br />&gt; Matt,
<br />&gt; &gt; 
<br />&gt; For using the World Wind WMS layers you referenced this is what you would add to your map assuming that you are using the default projection for OpenLayers (EPSG:4326)
<br />&gt; &gt; 
<br />&gt; 
<br />&gt;                                 var nasa = new OpenLayers.Layer.WMS(&quot;NASA WMS Service&quot;,
<br />&gt;                                         &quot;http://onearth.jpl.nasa.gov/wms.cgi?&quot;,
<br />&gt; 
<br />&gt; 
<br />&gt;                                                 {
<br />&gt;                                                         layers: &#39;global_mosaic&#39;
<br />&gt;                                                         , styles: &#39;visual&#39;
<br />&gt; 
<br />&gt; 
<br />&gt;                                                 },
<br />&gt;                                                 {
<br />&gt;                                                         tileSize: new OpenLayers.Size(512,512)
<br />&gt; 
<br />&gt; 
<br />&gt;                                                 }
<br />&gt;                                 );
<br />&gt;                                 map.addLayer(nasa);
<br />&gt; 
<br />&gt;  
<br />&gt; 
<br />&gt; In the link you posted go to the &quot;GetTileService&quot; When you view the XML take note of the comments in the TilePattern tags. For example:
<br />&gt; 
<br />&gt;  
<br />&gt; 
<br />&gt; request=GetMap&layers=daily_afternoon&srs=EPSG:4326&format=image/jpeg&styles=visual&width=512&height=512&bbox=-180,-166,76,90
<br />&gt;  
<br />&gt; 
<br />&gt; 
<br />&gt; In the above example you would take layers=daily_afternoon and use the daily_afternoon as your layers in the OpenLayers definition. Styles is not necessary unless you are looking for a specific theme. If so look in the above example string again and you will see styles=visual, visual is what you would specify in the styles definition for OpenLayers. Be sure you use the tileSize definition that matches the width and height from the TilePattern string.
<br />&gt; 
<br />&gt; 
<br />&gt; The WorldWind example you reference is accessing the remote WorldWind server for the tiles. It is not intended for accessing a copy of the data that you downloaded.
<br />&gt; 
<br />&gt; 
<br />&gt; --
<br />&gt; Nathan Gerber
<br />&gt; 
<br />&gt; &gt; 
<br />&gt; On Mon, Nov 15, 2010 at 4:33 PM,  maw269@gmail.com&gt; wrote:
<br />&gt; 
<br />&gt; 
<br />&gt; I have 2 questions:
<br />&gt; 
<br />&gt; 
<br />&gt; 1. Is it possible to show World Wind WMS Layers from OpenLayers as in http://onearth.jpl.nasa.gov/tiled.html?
<br />&gt; 
<br />&gt; 
<br />&gt; I can hit their wms from my browser: 
<br />&gt; 
<br />&gt; 
<br />&gt; http://wms.jpl.nasa.gov/wms.cgi?request=GetMap&layers=global_mosaic&srs=EPSG:4326&format=image/jpeg&styles=visual&width=512&height=512&bbox=-180,-166,76,90
<br />&gt; 
<br />&gt; 
<br />&gt; but can&#39;t seem to connect to it using any of the openlayers.layer.classes.
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 2. I also downloaded the NLT Landsat 7 Visible Color-Level 0 cache pack from http://www.worldwinddata.com/
<br />&gt; 
<br />&gt; 
<br />&gt; How do I use OpenLayers.Layer.WorldWind to show that layer? I looked at http://openlayers.org/dev/examples/worldwind.html but was even more confused after looking at that page&#39;s source.
<br />&gt; 
<br />&gt; 
<br />&gt; The cache pack uzipped to my harddrive as a folder entitled &#39;0&#39;; subfolders entitled &#39;0015&#39; through &#39;0075&#39;; and then images such as &#39;0015_0046.jpg&#39;
<br />&gt; 
<br />&gt; 
<br />&gt; Thanks,
<br />&gt; 
<br />&gt; 
<br />&gt; Matt
<br />&gt; _______________________________________________
<br />&gt; 
<br />&gt; 
<br />&gt; Dev mailing list
<br />&gt; 
<br />&gt; 
<br />&gt; Dev@lists.osgeo.org
<br />&gt; 
<br />&gt; 
<br />&gt; http://lists.osgeo.org/mailman/listinfo/openlayers-dev
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt; 
<br />&gt;