[mapserver-users] Serving tiled image sets with MapServer?

2014-02-06 Thread James_in_Utah
Hi, We have several imagery sets that are already tiled, in WorldWind format. They are mostly jpg images and the individual tiles are 512x512 pixels in size. It possible to serve that imagery to WMS clients using Mapserver? I would like to point a layer in my mapfile at the directory where the i

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-06 Thread Rahkonen Jukka (Tike)
Hi, It might be possible by reading the disk cache through GDAL WMS driver "TMS minidriver" http://www.gdal.org/frmt_wms.html. However, I do not know if it can be configured to read tiles from local file system. The place to do that would probably be the ServerUrl part. 1 http://s0.tileserv

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-10 Thread James_in_Utah
Hi Jukka, Thanks for the reply. I just had a chance to look it over tonight. I followed the link to the gdal site, and it does indicate that the GDAL_WMS driver can access a WorldWind style tile server, which we do have. Beyond that, I'm not following your suggestion. Does the snippet you provi

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-10 Thread Rahkonen Jukka (Tike)
Hi, First step is to follow the GDAL WMS driver page examples and write a XML configuration file for your tile service. Let's call it my_service.xml. You can test if the file is correct with GDAL utility programs. If "gdalinfo my_service.xml" is listing info about your service and "gdal_transla

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-11 Thread EVANS, JAMES R GS-13 USAF ACC 84 RADES/SCZE
--- From: Rahkonen Jukka (Tike) [mailto:jukka.rahko...@mmmtike.fi] Sent: Monday, February 10, 2014 10:54 PM To: EVANS, JAMES R GS-13 USAF ACC 84 RADES/SCZE; 'mapserver-users@lists.osgeo.org' Subject: Re: [mapserver-users] Serving tiled image sets with MapServer? Hi, First step is to follow the GDAL

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-12 Thread EVANS, JAMES R GS-13 USAF ACC 84 RADES/SCZE
Ok, I got this working, but right now it is really just a kludge. I have an aspx/php script that serves up the tiles, and the GDAL minidriver configuration file. I had to use the GDAL WorldWind minidriver due to the way my tiles were layed out, with the 0 row tiles at the bottom, but since I cou

Re: [mapserver-users] Serving tiled image sets with MapServer?

2014-02-12 Thread James_in_Utah
Apparently with the WorldWind minidriver, the tileset is designated with the tag, so update the xml above with: 1 http://localhost/tile.aspx? BMNG_04.2004 and the .aspx above with : $X = $_GET['X']; $Y = $_GET['Y']; $L = $_GET['L']; $T = $_GET['T']; -- View this m