[mapserver-users] Raster Data

2014-03-12 Thread jcwalz
Hello, I have a png raster image that I am adding to GeoMOOSE and it is about 3GB in size. It takes about 10 minutes for the image to show up because the file is so large. What is the best way of dealing with large images like this? Thanks, Jenna -- View this message in context:

Re: [mapserver-users] Raster Data

2014-03-12 Thread Newcomb, Doug
Jenna, My first thought would be to convert it to a jpeg compressed tiled geotiff using gdal_translate, and then add overviews using gdaladdo . http://www.gdal.org/gdal_utilities.html Doug On Wed, Mar 12, 2014 at 10:42 AM, jcwalz jennaw...@co.stevens.mn.us wrote: Hello, I have a png

Re: [mapserver-users] Raster Data

2014-03-12 Thread Rahkonen Jukka (Tike)
Hi, Standard recipe is to use tiled tiff file with overviews, perhaps both compressed. Uncompressed: gdal_translate -of GTiff -co tiled=yes -co bigtiff=yes image.png image.tif gdaladdo -r average image.tif 2 4 8 16 32 64 128 256 You may want to save space by making a compressed tiff. If it is

Re: [mapserver-users] Raster Data

2014-03-12 Thread Andy Colson
On 3/12/2014 9:42 AM, jcwalz wrote: Hello, I have a png raster image that I am adding to GeoMOOSE and it is about 3GB in size. It takes about 10 minutes for the image to show up because the file is so large. What is the best way of dealing with large images like this? Thanks, Jenna I'm

Re: [mapserver-users] Raster Data

2014-03-12 Thread Jeff McKenna
I also still recommend what Doug, Andy, Jukka say: for display speed in MapServer, make sure all your files are in the mapfile's output projection, and then convert your images to GeoTIFFs and add overviews. -jeff -- Jeff McKenna MapServer Consulting and Training Services

[mapserver-users] Raster Data from PostGIS

2010-11-29 Thread florencia.bujan
Hi, I have my data rasters (tif files) into my PostGIS database such as file. Any file into database is in bytea format. I want to show this raster layer from PostGIS with mapserver. My Raster Table structure and my .map code are: TABLE rasters ( id serial NOT NULL, nombre character

Re: [mapserver-users] Raster Data from PostGIS

2010-11-29 Thread Carlos Ruiz
: florencia.bujan florita...@gmail.com To: mapserver-users@lists.osgeo.org Sent: Mon, November 29, 2010 7:46:56 AM Subject: [mapserver-users] Raster Data from PostGIS Hi, I have my data rasters (tif files) into my PostGIS database such as file. Any file into database is in bytea format. I want to show

Re: [mapserver-users] Raster Data from PostGIS

2010-11-29 Thread Stephen Woodbridge
:* florencia.bujan florita...@gmail.com *To:* mapserver-users@lists.osgeo.org *Sent:* Mon, November 29, 2010 7:46:56 AM *Subject:* [mapserver-users] Raster Data from PostGIS Hi, I have my data rasters (tif files) into my PostGIS database such as file. Any file into database is in bytea format. I want to show

Re: [mapserver-users] Raster data performance

2010-07-28 Thread Tobias Weiß
Hi Alex, I tried some of the performance tips you mentioned, e.g. converted the .txt to a tiled TIFF to optimize performance. I can not see significant changes in rendering speed. gdal_translate -co TILED=YES input.txt output.tif The major brake still is the expression stuff. I really wonder

Re: [mapserver-users] Raster data performance

2010-07-28 Thread Alexandre Dube
On 10-07-28 09:25 AM, Tobias Weiß wrote: The major brake still is the expression stuff. I really wonder what makes this task so time-consuming, it should not be more than a simple comparison. Do you have experiences with this issue? Or do I have to live with this constraint? With vector

RE: [mapserver-users] Raster data performance

2010-07-28 Thread Fawcett, David (MPCA)
To: mapserver-users@lists.osgeo.org Subject: Re: [mapserver-users] Raster data performance Hi Alex, I tried some of the performance tips you mentioned, e.g. converted the .txt to a tiled TIFF to optimize performance. I can not see significant changes in rendering speed. gdal_translate -co TILED=YES

Re: [mapserver-users] Raster data performance

2010-07-28 Thread Stephen Woodbridge
] *On Behalf Of *Tobias Weiß *Sent:* Wednesday, July 28, 2010 8:25 AM *To:* mapserver-users@lists.osgeo.org *Subject:* Re: [mapserver-users] Raster data performance Hi Alex, I tried some of the performance tips you mentioned, e.g. converted the .txt to a tiled TIFF to optimize performance. I