From edmar.moretti at gmail.com Thu Feb 1 10:45:59 2018 From: edmar.moretti at gmail.com (Moretti Edmar) Date: Thu, 1 Feb 2018 16:45:59 -0200 Subject: [mapserver-users] UTFGRID and Mapscript Message-ID: Hi, Is it possible to create a LAYER with PHP-Mapscript to use UTFGRID? Another problem, when I save a Mapfile, via PHP-Mapscript, the specific parameters of UTFGRID disappear. Sounds like a bug to me. Can anybody help me? Thanks. -- ___________________________________________________________________________ Edmar Moretti Para tirar d?vidas sobre o i3Geo utilize a lista de e-mails da OSGEO: https://lists.osgeo.org/cgi-bin/mailman/listinfo/i3geo Tamb?m no Slack e no Facebook -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.lime at state.mn.us Fri Feb 2 14:08:34 2018 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Fri, 2 Feb 2018 22:08:34 +0000 Subject: [mapserver-users] UTFGRID and Mapscript In-Reply-To: References: Message-ID: Can you post what the layer definition *should* look like? It?s possible the PHP code wasn?t updated. Perhaps there?s a workaround using some of the OWS metadata since most output drivers will support a variety of means of configuration. From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Moretti Edmar Sent: Thursday, February 01, 2018 12:46 PM To: MapserverList OSGEO Subject: [mapserver-users] UTFGRID and Mapscript Hi, Is it possible to create a LAYER with PHP-Mapscript to use UTFGRID? Another problem, when I save a Mapfile, via PHP-Mapscript, the specific parameters of UTFGRID disappear. Sounds like a bug to me. Can anybody help me? Thanks. -- ___________________________________________________________________________ Edmar Moretti Para tirar d?vidas sobre o i3Geo utilize a lista de e-mails da OSGEO: https://lists.osgeo.org/cgi-bin/mailman/listinfo/i3geo Tamb?m no Slack e no Facebook -------------- next part -------------- An HTML attachment was scrubbed... URL: From erik.h11.01 at gmail.com Sun Feb 4 12:03:57 2018 From: erik.h11.01 at gmail.com (Erik H) Date: Sun, 4 Feb 2018 15:03:57 -0500 Subject: [mapserver-users] Status of MVT vector tiles? Message-ID: Hello I'm very interested in MapBox Vector Tiles, because I'd like to do client-side rendering. I found a branch in several github clones (tbonfort,sdlime) but it's not clear to me if/how I could try them out. My setup is perhaps a little unusual: I run a small cluster of Java-based web servers, each of which links to the MapServer shared library. I therefore do not use WMS or MapCache. How would I configure a .map file to generate a .mvt file? Is this even possible? In Steve's mvt-demo, I see a parameter 'map.imagetype=mvt' hidden in a JSON file, but nothing in the .map file seems to indicate that a .mvt should be created. Thanks, Erik -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.lime at state.mn.us Mon Feb 5 14:36:55 2018 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Mon, 5 Feb 2018 22:36:55 +0000 Subject: [mapserver-users] Status of MVT vector tiles? In-Reply-To: References: Message-ID: My branch (https://github.com/sdlime/mapserver/tree/vector-tiles) is the one to try. You should be able build it as you would any other branch ? using cmake. You need protobuf and protobuf-c installed to be able to compile things though. Configuring MVT output is really quite similar to configuring WFS or WMS output. The MVT renderer relies on the WFS/WMS/OWS/GML metadata items to define what fields should be output and what they should be named. In my demo https://github.com/sdlime/mapserver/tree/vector-tiles the MVT related configuration is pretty much just the gml_* metadata items associated with each layer. I?m mapping shapefile fields to standard names in the MVT output for consistency ? so every feature has a name and a unique id. The id is referenced in the MVT specs (https://github.com/mapbox/vector-tile-spec) and must be unique within a layer. From there it?s just a matter of setting the image type. In the case of the demo I do that remotely ? as a parameter in the service URL but I could just as easily just set IMAGETYPE ?mvt? in the mapfile. How are you computing tile bounds, etc?? The demo (https://github.com/sdlime/mvt-demo) runs without map cache and uses MapServer mode=tile to handle extent computation and so forth. Steve From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Erik H Sent: Sunday, February 04, 2018 2:04 PM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] Status of MVT vector tiles? Hello I'm very interested in MapBox Vector Tiles, because I'd like to do client-side rendering. I found a branch in several github clones (tbonfort,sdlime) but it's not clear to me if/how I could try them out. My setup is perhaps a little unusual: I run a small cluster of Java-based web servers, each of which links to the MapServer shared library. I therefore do not use WMS or MapCache. How would I configure a .map file to generate a .mvt file? Is this even possible? In Steve's mvt-demo, I see a parameter 'map.imagetype=mvt' hidden in a JSON file, but nothing in the .map file seems to indicate that a .mvt should be created. Thanks, Erik -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.lewis at igeotec.com Wed Feb 7 09:13:23 2018 From: paul.lewis at igeotec.com (Paul Lewis) Date: Wed, 7 Feb 2018 17:13:23 +0000 Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER Message-ID: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com> Does anyone have experience of the following issue that they could possibly offer help or point me in the right direction I'm trying to pass a dynamic filter to the mapfile but can't work out the syntax to do so. The context is having a web-application where I have a WMS layer in Openlayers that connects to a Mapserver Mapfile which in turn is reading from a PostGIS raster DB, all latest versions available on a base Ubuntu 16.04 server. In a vector PostGIS DB case a layer can be configured to have a dynamic client-side filter through the following base syntax, which is fine and works for vector tables in the DB: DATA "geom FROM some_table using unique id using srid=4326" FILTER (id = '%id%') As I understand it this in effect this generates an SQL statement where the FILTER is created as a where clause in the DATA SQL. However, in a raster DB example the DATA syntax shown at this link [http://postgis.net/docs/RT_FAQ.html#idm28328] is as follows: DATA "PG:host=localhost port=5432 dbname='some_db' user='some_user' password='some_password' schema='some_schema' table='some_table' where='id=12' mode='2' " So I can get things to work with hardcoded where elements, i.e. id=12 but in the previous example I could set the id parameter dynamically in the Openlayers WMS query through the FILTER line. Does anyone know the syntax to achieve this in the above type of raster DATA example or is it even possible? Thanks From steve.lime at state.mn.us Wed Feb 7 17:35:56 2018 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Thu, 8 Feb 2018 01:35:56 +0000 Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER In-Reply-To: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com> References: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com> Message-ID: What version? You don?t have to use a filter. You can do it all in the data statement plus validation. ?Steve ________________________________ From: mapserver-users on behalf of Paul Lewis Sent: Wednesday, February 7, 2018 11:13:23 AM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER Does anyone have experience of the following issue that they could possibly offer help or point me in the right direction I'm trying to pass a dynamic filter to the mapfile but can't work out the syntax to do so. The context is having a web-application where I have a WMS layer in Openlayers that connects to a Mapserver Mapfile which in turn is reading from a PostGIS raster DB, all latest versions available on a base Ubuntu 16.04 server. In a vector PostGIS DB case a layer can be configured to have a dynamic client-side filter through the following base syntax, which is fine and works for vector tables in the DB: DATA "geom FROM some_table using unique id using srid=4326" FILTER (id = '%id%') As I understand it this in effect this generates an SQL statement where the FILTER is created as a where clause in the DATA SQL. However, in a raster DB example the DATA syntax shown at this link [http://postgis.net/docs/RT_FAQ.html#idm28328] is as follows: DATA "PG:host=localhost port=5432 dbname='some_db' user='some_user' password='some_password' schema='some_schema' table='some_table' where='id=12' mode='2' " So I can get things to work with hardcoded where elements, i.e. id=12 but in the previous example I could set the id parameter dynamically in the Openlayers WMS query through the FILTER line. Does anyone know the syntax to achieve this in the above type of raster DATA example or is it even possible? Thanks _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.lime at state.mn.us Wed Feb 7 20:14:40 2018 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Thu, 8 Feb 2018 04:14:40 +0000 Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER In-Reply-To: References: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com>, Message-ID: To build on this, your data and validation statements would look like: DATA "my_geom FROM (select my_id, my_geom from my_table where my_id = %my_id%) as foo USING UNIQUE my_id USING SRID=XXXX" VALIDATION 'my_id' '^[0-9]{1,3}$' 'default_my_id' '-1' END If the my_id parameter isn't supplied or doesn't validate (e.g. a 3-digit number) the default value is used. --Steve ________________________________ From: mapserver-users on behalf of Lime, Steve D (MNIT) Sent: Wednesday, February 7, 2018 7:35:56 PM To: Paul Lewis; mapserver-users at lists.osgeo.org Subject: Re: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER What version? You don?t have to use a filter. You can do it all in the data statement plus validation. ?Steve ________________________________ From: mapserver-users on behalf of Paul Lewis Sent: Wednesday, February 7, 2018 11:13:23 AM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER Does anyone have experience of the following issue that they could possibly offer help or point me in the right direction I'm trying to pass a dynamic filter to the mapfile but can't work out the syntax to do so. The context is having a web-application where I have a WMS layer in Openlayers that connects to a Mapserver Mapfile which in turn is reading from a PostGIS raster DB, all latest versions available on a base Ubuntu 16.04 server. In a vector PostGIS DB case a layer can be configured to have a dynamic client-side filter through the following base syntax, which is fine and works for vector tables in the DB: DATA "geom FROM some_table using unique id using srid=4326" FILTER (id = '%id%') As I understand it this in effect this generates an SQL statement where the FILTER is created as a where clause in the DATA SQL. However, in a raster DB example the DATA syntax shown at this link [http://postgis.net/docs/RT_FAQ.html#idm28328] is as follows: DATA "PG:host=localhost port=5432 dbname='some_db' user='some_user' password='some_password' schema='some_schema' table='some_table' where='id=12' mode='2' " So I can get things to work with hardcoded where elements, i.e. id=12 but in the previous example I could set the id parameter dynamically in the Openlayers WMS query through the FILTER line. Does anyone know the syntax to achieve this in the above type of raster DATA example or is it even possible? Thanks _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andreas.Eichner at sid.sachsen.de Thu Feb 8 01:44:24 2018 From: Andreas.Eichner at sid.sachsen.de (Eichner, Andreas - SID) Date: Thu, 8 Feb 2018 09:44:24 +0000 Subject: [mapserver-users] MapFile DATA Syntax for PostGIS raster with FILTER In-Reply-To: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com> References: <43543856-1ff4-6e07-aa94-c4e4ef1792fe@igeotec.com> Message-ID: <6F331135492B944D90731CE93743D56814CF65AC@FS-EX-DB101.fs.sachsen.de> Hallo Paul, > -----Original Message----- > In a vector PostGIS DB case a layer can be configured to have a dynamic > client-side filter through the following base syntax, which is fine and > works for vector tables in the DB: > > DATA "geom FROM some_table using unique id using srid=4326" > FILTER (id = '%id%') > > As I understand it this in effect this generates an SQL statement where > the FILTER is created as a where clause in the DATA SQL. this only works for a vector layer. > However, in a raster DB example the DATA syntax shown at this link > [http://postgis.net/docs/RT_FAQ.html#idm28328] is as follows: > > DATA "PG:host=localhost port=5432 dbname='some_db' user='some_user' > password='some_password' schema='some_schema' table='some_table' > where='id=12' mode='2' " Raster layers use GDAL internally and AFAIK don't support FILTER at all. But GDAL allows to pass a WHERE clause via the DATA string as described at the PostGIS docs or at https://trac.osgeo.org/gdal/wiki/frmts_wtkraster.html#a3.2-Readingrasterdatafromthedatabase Since runtime substitution is applied by MapServer before using the DATA string you can use something like DATA "PG: [...] where='id=%id%' [...]" Together with a proper validation as described by Steve L.: VALIDATION 'id' '^[0-9]{1,3}$' 'default_id' '-1' END HTH From jukka.rahkonen at maanmittauslaitos.fi Thu Feb 8 07:45:50 2018 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 8 Feb 2018 15:45:50 +0000 Subject: [mapserver-users] Resampling=bicubic supported or not? Message-ID: <11f8099250eb4d4e83b86294612d80f0@C119S212VM042.msvyvi.vaha.local> Hi, Documentation in http://www.mapserver.org/input/raster.html gives these alternatives PROCESSING "RESAMPLE=NEAREST" PROCESSING "RESAMPLE=AVERAGE" PROCESSING "RESAMPLE=BILINEAR" while in http://www.mapserver.org/development/rfc/ms-rfc-4.html there is one more alternative PROCESSING "RESAMPLE=BICUBIC" Which list is correct? -Jukka Rahkonen- -------------- next part -------------- An HTML attachment was scrubbed... URL: From even.rouault at spatialys.com Thu Feb 8 07:49:37 2018 From: even.rouault at spatialys.com (Even Rouault) Date: Thu, 08 Feb 2018 16:49:37 +0100 Subject: [mapserver-users] Resampling=bicubic supported or not? In-Reply-To: <11f8099250eb4d4e83b86294612d80f0@C119S212VM042.msvyvi.vaha.local> References: <11f8099250eb4d4e83b86294612d80f0@C119S212VM042.msvyvi.vaha.local> Message-ID: <2533693.7I6kuH2RNV@even-i700> On jeudi 8 f?vrier 2018 15:4550 CET Rahkonen Jukka (MML) wrote: > Hi, > > Documentation in http://www.mapserver.org/input/raster.html gives these > alternatives PROCESSING "RESAMPLE=NEAREST" > PROCESSING "RESAMPLE=AVERAGE" > PROCESSING "RESAMPLE=BILINEAR" --> Correct > while in http://www.mapserver.org/development/rfc/ms-rfc-4.html there is one > more alternative PROCESSING "RESAMPLE=BICUBIC" --> Not implemented I've just removed mention of it in RFC4 -- Spatialys - Geospatial professional services http://www.spatialys.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Fri Feb 9 07:56:18 2018 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Fri, 9 Feb 2018 15:56:18 +0000 Subject: [mapserver-users] TIGER data Mapfile update. In-Reply-To: References: <9B0C1CF2-BD15-4348-82D6-11118EE926A0@ci.stpaul.mn.us> Message-ID: <44C8F5E2-F91C-4BFE-99C6-6BF1255F2E58@ci.stpaul.mn.us> As requested: GitHub here: https://gist.github.com/bblammo/a526d34a7bda4fdffc44260c0477840c#file-centerlines-map I?ll add in some screenshots too. bobb On Jan 8, 2018, at 3:53 PM, Dan Little > wrote: Hey Bob, Is there any chance you can start a GitHub repo with an appropriate license and maybe some screenshots for this? It's hard to use dropbox as a collaboration platform... Cheers, -Duck On Mon, Jan 8, 2018 at 1:39 PM, Basques, Bob (CI-StPaul) > wrote: Tp whom it may concern . . . I?ve recently been optimzing some MapServer layer MapFiles in our system for TIGER based centerline data to take advantage of the newer capabilities of MapServer. The MapFile I?ve been working on recently was just over 10 years old!! Anyway, lot?s of new stuff for optimizing the Mapfile and I wanted to pass the results by the list to see if there is anything I may have missed. For long time list users, you may remember my post in the past about setting up a ?googlish? type layer style for MapServer way back when. This is my refactoring of that MapFile to the new look and feel of the Google style(s). This mapfile has mutiple CLASSes with many STYLE settings per CLASS. So it ens up a bit complicated. I?ve also switch all data sourcing over from SHP file to Postgres/PostGIS as well as consolidating the all the DATA connection calls into a single call. While the old file ran very fast, this one comes back almost instantly now, even for very large images. Here are a couple of fragments of the MAPFILE that I?ve currently set up, and just looking for thoughts on improving it even more. Sample output is here: https://www.dropbox.com/s/epdzrod6yvg7143/centerlines_stpaul_public.2.map?dl=0 and the fragment below is for the Interstate roads, darker yellow color and Hwy Shields.. Thanks bobb -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Fri Feb 9 12:31:15 2018 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Fri, 9 Feb 2018 20:31:15 +0000 Subject: [mapserver-users] TIGER data Mapfile update. In-Reply-To: <44C8F5E2-F91C-4BFE-99C6-6BF1255F2E58@ci.stpaul.mn.us> References: <9B0C1CF2-BD15-4348-82D6-11118EE926A0@ci.stpaul.mn.us> <44C8F5E2-F91C-4BFE-99C6-6BF1255F2E58@ci.stpaul.mn.us> Message-ID: As (really) requested: https://github.com/bblammo/MapServer_MapFile_Tricks bobb On Feb 9, 2018, at 9:56 AM, Basques, Bob (CI-StPaul) > wrote: As requested: GitHub here: https://gist.github.com/bblammo/a526d34a7bda4fdffc44260c0477840c#file-centerlines-map I?ll add in some screenshots too. bobb On Jan 8, 2018, at 3:53 PM, Dan Little > wrote: Hey Bob, Is there any chance you can start a GitHub repo with an appropriate license and maybe some screenshots for this? It's hard to use dropbox as a collaboration platform... Cheers, -Duck On Mon, Jan 8, 2018 at 1:39 PM, Basques, Bob (CI-StPaul) > wrote: Tp whom it may concern . . . I?ve recently been optimzing some MapServer layer MapFiles in our system for TIGER based centerline data to take advantage of the newer capabilities of MapServer. The MapFile I?ve been working on recently was just over 10 years old!! Anyway, lot?s of new stuff for optimizing the Mapfile and I wanted to pass the results by the list to see if there is anything I may have missed. For long time list users, you may remember my post in the past about setting up a ?googlish? type layer style for MapServer way back when. This is my refactoring of that MapFile to the new look and feel of the Google style(s). This mapfile has mutiple CLASSes with many STYLE settings per CLASS. So it ens up a bit complicated. I?ve also switch all data sourcing over from SHP file to Postgres/PostGIS as well as consolidating the all the DATA connection calls into a single call. While the old file ran very fast, this one comes back almost instantly now, even for very large images. Here are a couple of fragments of the MAPFILE that I?ve currently set up, and just looking for thoughts on improving it even more. Sample output is here: https://www.dropbox.com/s/epdzrod6yvg7143/centerlines_stpaul_public.2.map?dl=0 and the fragment below is for the Interstate roads, darker yellow color and Hwy Shields.. Thanks bobb _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users "Life is really simple, but we insist on making it complicated. ? - Confucius -------------- next part -------------- An HTML attachment was scrubbed... URL: From johann.mitterbinder at gmx.de Sat Feb 10 06:28:20 2018 From: johann.mitterbinder at gmx.de (johann) Date: Sat, 10 Feb 2018 07:28:20 -0700 (MST) Subject: [mapserver-users] I want to display a KML file as a wms service Message-ID: <1518272900668-0.post@n6.nabble.com> Hi, I want to display a KML file as a wms service. The file contains a dot. When calling the WMS, only a white area appears. can someone please help me, here my data: ############################################### KML_File: Antrag A_Antraege 1 1234/2018 Huber Flst 1234 12.73131 48.57780 440.8 8.3 2.7 12.73131,48.57780,0 MAP-File: MAP # Der Name der Map. Dieser ist frei w?hlbar NAME "Antrag" STATUS ON # Groe?e von dem zu erzeugenden Bild SIZE 500 400 # Die Extend-Werte aus dem Shape-File #EXTENT 12.731200 48.577690 12.731320 48.577810 # Typ von dem zu erzeugenden Bild. png hat den vorteil, dass es transparente Hindergruende darstellen kann IMAGETYPE PNG # Die Projektion des Shapes. Das Shape hatte als Datum "WGS_84", was epsg:4326 entspricht. # welchem epsg-Wert die Projektion eines Shapes entspricht, muss man im Internet suchen. PROJECTION "init=epsg:4326" END WEB IMAGEPATH "/var/www/tmp/" IMAGEURL "/tmp/" METADATA "wms_enable_request" "*" END END # Hier werden dann die Layer definiert LAYER NAME "Antrag" TYPE POINT STATUS DEFAULT CONNECTIONTYPE OGR CONNECTION "/home/spo/MAP/shapes/Antrag.kml" DATA "Antrag" LABELITEM "Antrag" CLASS NAME "My Antrag" STYLE COLOR 250 0 0 OUTLINECOLOR 0 255 255 SYMBOL 'circle' SIZE 6 END LABEL SIZE TINY COLOR 0 250 0 OUTLINECOLOR 255 255 255 POSITION AUTO END END END END ############################# -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From yjacolin at free.fr Sat Feb 10 06:32:34 2018 From: yjacolin at free.fr (Yves Jacolin) Date: Sat, 10 Feb 2018 15:32:34 +0100 Subject: [mapserver-users] FOSS4G-fr 2018, Save the date and more! Message-ID: <1988485.XrVIJEqRuf@janus> Sorry if you already get the information. We try to share this as far as we can :) Organized by the local chapter OSGeo-fr, the FOSS4G-fr 2018 event will take place on the 15th up to the 17th of May, 2018 at the National School of Geographical Sciences, Marne-la-Vall?e - Paris. As a unique opportunity for meetings, this conference is opened to all players in the French-speaking Geospatial Open Source ecosystem : decision-makers, users and developers. English contributions are also welcome ! This 3rd edition will take place over 3 days : the first day is dedicated to workshops, then the 2 following days focus on presentations on wide and inspiring themes ! At this point, you may already : 1. Save the date ! 2. Submit a workshop (15th of May) or a paper for the conference days (16th and 17th of May). 3. Sponsor of the event. More information on the web site: http://foss4g.osgeo.fr We are looking forward to your participation! The organizing team, @FOSS4GFR -- Yves Jacolin From sanfilippopablo at gmail.com Mon Feb 12 08:05:19 2018 From: sanfilippopablo at gmail.com (Pablo Sanfilippo) Date: Mon, 12 Feb 2018 13:05:19 -0300 Subject: [mapserver-users] Map rendering correctly with shp2img but blank when using WMS Message-ID: This is the command I'm using that renders fine: shp2img \ -m /maps/config.map \ -o /sources/testb.png \ -e -118.41347694396971 33.919930516263086 -118.40274810791016 33.92787160756615 \ -s 500 500 \ -l mylayer \ -all_debug 5 \ And this WMS request renders a transparent image: http://localhost:8080/?map=/maps/config.map&SERVICE=WMS&VERSION=1.1.1%20&REQUEST=GetMap&LAYERS=mylayer&STYLES=&SRS=EPSG:4326&BBOX=-118.41347694396971,33.919930516263086,-118.40274810791016,33.92787160756615&WIDTH=500&HEIGHT=500&FORMAT=image/png This is my mapfile: # A valid mapfile used for testing MAP NAME valid STATUS ON PROJECTION "init=epsg:4326" END # IMAGECOLOR 0 0 0 TRANSPARENT ON WEB METADATA "wms_title" "Slingshot WMS Server" "wms_onlineresource" "http://localhost:8080/?map=config.map&" "wms_enable_request" "GetCapabilities GetMap GetFeatureInfo" "wms_srs" "EPSG:4326 EPSG:3857" END END LAYER NAME "myindex" STATUS ON TYPE POLYGON CONNECTIONTYPE POSTGIS CONNECTION "mypostgisconnection" DATA "geometry from (select i.geometry, i.id, '/sources/' || i.path as location from images_image) as myindex using unique id" CLASS STYLE OUTLINECOLOR 0 0 0 COLOR 0 255 0 WIDTH 1.0 ANTIALIAS true END END END LAYER NAME "mylayer" STATUS ON TILEINDEX "myindex" TILEITEM "location" PROCESSING "SCALE=AUTO" TYPE RASTER PROJECTION AUTO END METADATA "wms_title" "My Imagery" END END END I'm using MapServer 7.0.1 Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From sethg at geographika.co.uk Mon Feb 12 15:32:29 2018 From: sethg at geographika.co.uk (Seth G) Date: Tue, 13 Feb 2018 00:32:29 +0100 Subject: [mapserver-users] Map rendering correctly with shp2img but blank when using WMS In-Reply-To: References: Message-ID: <1518478349.880421.1268647704.2B044909@webmail.messagingengine.com> Hi, Syntax looks fine to me. Could there be an issue accessing the Mapfile using the web service account?Can you run a profiler on the database to see if it is being hit at all? The results of this would reduce the list of possible issues. Regards, Seth -- web:http://geographika.co.uk twitter: @geographika On Mon, Feb 12, 2018, at 5:05 PM, Pablo Sanfilippo wrote: > This is the command I'm using that renders fine: > shp2img \ -m /maps/config.map \ -o /sources/testb.png \ -e - > 118.41347694396971 33.919930516263086 -118.40274810791016 > 33.92787160756615 \ -s 500 500 \ -l mylayer \ -all_debug 5 \> And this WMS request renders a transparent image: > > http://localhost:8080/?map=/maps/config.map&SERVICE=WMS&VERSION=1.1.1%20&REQUEST=GetMap&LAYERS=mylayer&STYLES=&SRS=EPSG:4326&BBOX=-118.41347694396971,33.919930516263086,-118.40274810791016,33.92787160756615&WIDTH=500&HEIGHT=500&FORMAT=image/png> > This is my mapfile: > > # A valid mapfile used for testing > MAP > NAME valid > STATUS ON > PROJECTION > "init=epsg:4326" > END > > # IMAGECOLOR 0 0 0 > TRANSPARENT ON > > WEB > METADATA > "wms_title" "Slingshot WMS Server" > "wms_onlineresource" "http://localhost:8080/?map=config.map&" > "wms_enable_request" "GetCapabilities GetMap GetFeatureInfo" > "wms_srs" "EPSG:4326 EPSG:3857" > END > END > > LAYER > NAME "myindex" > STATUS ON > TYPE POLYGON > CONNECTIONTYPE POSTGIS > CONNECTION "mypostgisconnection" > DATA "geometry from (select i.geometry, i.id, '/sources/' || > i.path as location from images_image) as myindex using unique id"> CLASS > STYLE > OUTLINECOLOR 0 0 0 > COLOR 0 255 0 > WIDTH 1.0 > ANTIALIAS true > END > END > END > > LAYER > NAME "mylayer" > STATUS ON > TILEINDEX "myindex" > TILEITEM "location" > PROCESSING "SCALE=AUTO" > TYPE RASTER > PROJECTION > AUTO > END > METADATA > "wms_title" "My Imagery" > END > END > > END > > I'm using MapServer 7.0.1 > > Thanks! > _________________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From aperi2007 at gmail.com Tue Feb 13 01:32:07 2018 From: aperi2007 at gmail.com (Andrea Peri) Date: Tue, 13 Feb 2018 10:32:07 +0100 Subject: [mapserver-users] LABEL_NO_CLIP comand with LINE geometries Message-ID: Hi, I' m try-ig to reproduce a chart with meridian and parallel using mapserver. I have two dataset (meridian and parallel). My trouble are with the position of the labels. My need is to put the label on every side of the map. To have this result I try to clip at runtime every time the meridian and parallel geometries using the command PROCESSING "LABEL_NO_CLIP=False" And put the label using the command POSITION ll .. and so on to have all the labels always on the contours of the map for every meridian or parallel line. But this seem do not work. It seem that the PROCESSIING do not clip lines. Perhaps it work only for POLYGONS ? Many thx. A. -- ----------------- Andrea Peri . . . . . . . . . qwerty ????? ----------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From j.l.h.hartmann at uva.nl Tue Feb 13 05:03:34 2018 From: j.l.h.hartmann at uva.nl (Jan Hartmann) Date: Tue, 13 Feb 2018 14:03:34 +0100 Subject: [mapserver-users] Release date of Mapserver 7.2 Message-ID: <0ee4d783-68e6-7160-384c-db719632cc82@uva.nl> Hello folks, Can anyone tell me when Mapserver 7.2 will be officially released? We are updating our servers, and would very much like to use PHP 7 and vector tiles. Cheers, Jan Hartmann University of Amsterdam From steve.lime at state.mn.us Tue Feb 13 09:38:50 2018 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Tue, 13 Feb 2018 17:38:50 +0000 Subject: [mapserver-users] Release date of Mapserver 7.2 In-Reply-To: <0ee4d783-68e6-7160-384c-db719632cc82@uva.nl> References: <0ee4d783-68e6-7160-384c-db719632cc82@uva.nl> Message-ID: I?d like to shoot for an alpha by March 1st. I think we're pretty much waiting on my merge of the vector tiles code. My pull request is in good shape, just trying to track down a few regression test errors (and I need to add some tests of my own). --Steve -----Original Message----- From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Jan Hartmann Sent: Tuesday, February 13, 2018 7:04 AM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] Release date of Mapserver 7.2 Hello folks, Can anyone tell me when Mapserver 7.2 will be officially released? We are updating our servers, and would very much like to use PHP 7 and vector tiles. Cheers, Jan Hartmann University of Amsterdam _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users From sanfilippopablo at gmail.com Wed Feb 14 13:53:24 2018 From: sanfilippopablo at gmail.com (Pablo Sanfilippo) Date: Wed, 14 Feb 2018 18:53:24 -0300 Subject: [mapserver-users] Requesting TIFFs with 4 bands Message-ID: Hi. I have TIFFs files as raster sources that contain 4 bands: R,G,B,NIR. Is there a way to request areas of that with MapServer using format=image/tiff and get all four bands back? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Feb 14 14:21:49 2018 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 14 Feb 2018 22:21:49 +0000 Subject: [mapserver-users] REMINDER: OSGeo Twin Cities Chapter (TCMUG) Meeting Message-ID: <47E18322-421A-448B-BF1A-7613D0E6D251@ci.stpaul.mn.us> All, Just a reminder for next weeks meeting at Waldmann Brewery & Wurstery on Wednesday the 21st, @4:30 bobb The third-rate mind is only happy when it is thinking with the majority. The second-rate mind is only happy when it is thinking with the minority. The first-rate mind is only happy when it is thinking. ?A. A. Milne -------------- next part -------------- An HTML attachment was scrubbed... URL: From erigul at ra.no Thu Feb 15 02:16:39 2018 From: erigul at ra.no (astron) Date: Thu, 15 Feb 2018 03:16:39 -0700 (MST) Subject: [mapserver-users] Wrong getfeatureinfo result from cluster layer Message-ID: <1518689799847-0.post@n6.nabble.com> Hi, When I click on a point in my cluster layer, I get the getfeatureinfo result from another point. That is, after the first click, I get the same result from every point. If the point is a cluster that represent more than 1 entity, I get the correct amount of results, but all the entities contains the same info. The only time the result changes, is when I zoom in or out. It looks like it?s only when I zoom in really close, I get a correct result, but it?s only the first entity I click that is correct. The next will give me the same result as the first. A regular layer without clustering, works fine. I'm using Mapserver 7.0.7. Any help would be appreciated. My mapfile: MAP DEBUG 5 CONFIG "MS_ERRORFILE" "/logs/ms_error.txt" NAME test_service PROJECTION "init=epsg:4326" END STATUS ON EXTENT 3 58 27 71 #SIZE 512 512 #IMAGECOLOR 200 255 255 SYMBOLSET symbols FONTSET fonts/fonts.txt CONFIG "CGI_CONTEXT_URL" "1" UNITS dd WEB IMAGEPATH "./" IMAGEURL "/tmp/" METADATA "wms_onlineresource" "http://server:8787/cgi-bin/mapserv/?map=/map/test.map" "wms_enable_request" "*" "wms_title" "test_service" "wms_srs" "EPSG:4326 EPSG:32633" END END LAYER NAME "testlayer" TEMPLATE "dummy" FOOTER "dummy" HEADER "dummy" DEBUG 5 TYPE POINT EXTENT 3 58 27 71 UNITS dd CONNECTIONTYPE POSTGIS CONNECTION "host=x dbname=x user=x password=x port=5432" DATA "geometry from data.table using unique id using srid=4326" METADATA "wms_title" "myttitle" "wms_include_items" "all" "wms_feature_info_mime_type" "text/plain" "gml_include_items" "name,id" END STATUS ON LABELITEM "Cluster_FeatureCount" CLASSITEM "Cluster_FeatureCount" CLUSTER MAXDISTANCE 30 REGION "ellipse" END PROCESSING "CLUSTER_GET_ALL_SHAPES=ON" PROCESSING "ITEMS=name,description" CLASS EXPRESSION ([Cluster_FeatureCount] > 1) LABEL COLOR 255 255 255 #OUTLINECOLOR 255 255 255 FONT "OpenSans-Regular" TYPE truetype SIZE 6 FORCE TRUE POSITION cc PARTIALS FALSE END STYLE SYMBOL "default-circle" COLOR 255 0 0 SIZE 35 ANTIALIAS true END END CLASS EXPRESSION ([Cluster_FeatureCount] = 1) STYLE SYMBOL "default-circle" COLOR 255 0 0 SIZE 7 ANTIALIAS true END LABEL COLOR 255 0 0 OUTLINECOLOR 255 255 255 FONT "OpenSans-Regular" TYPE truetype SIZE 7 POSITION auto PARTIALS FALSE TEXT "[name]" END END END END Thanks, Erik -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From jukka.rahkonen at maanmittauslaitos.fi Thu Feb 15 06:34:09 2018 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 15 Feb 2018 14:34:09 +0000 Subject: [mapserver-users] Wrong getfeatureinfo result from cluster layer Message-ID: <3916c511438145fd9f5d0fae62d0f2ee@C119S212VM042.msvyvi.vaha.local> Hi, Please add also the GetFeatureInfo request that your application is sending. -Jukka Rahkonen- -----Alkuper?inen viesti----- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta astron L?hetetty: 15. helmikuuta 2018 12:17 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: [mapserver-users] Wrong getfeatureinfo result from cluster layer Hi, When I click on a point in my cluster layer, I get the getfeatureinfo result from another point. That is, after the first click, I get the same result from every point. If the point is a cluster that represent more than 1 entity, I get the correct amount of results, but all the entities contains the same info. The only time the result changes, is when I zoom in or out. It looks like it?s only when I zoom in really close, I get a correct result, but it?s only the first entity I click that is correct. The next will give me the same result as the first. A regular layer without clustering, works fine. I'm using Mapserver 7.0.7. Any help would be appreciated. My mapfile: MAP DEBUG 5 CONFIG "MS_ERRORFILE" "/logs/ms_error.txt" NAME test_service PROJECTION "init=epsg:4326" END STATUS ON EXTENT 3 58 27 71 #SIZE 512 512 #IMAGECOLOR 200 255 255 SYMBOLSET symbols FONTSET fonts/fonts.txt CONFIG "CGI_CONTEXT_URL" "1" UNITS dd WEB IMAGEPATH "./" IMAGEURL "/tmp/" METADATA "wms_onlineresource" "http://server:8787/cgi-bin/mapserv/?map=/map/test.map" "wms_enable_request" "*" "wms_title" "test_service" "wms_srs" "EPSG:4326 EPSG:32633" END END LAYER NAME "testlayer" TEMPLATE "dummy" FOOTER "dummy" HEADER "dummy" DEBUG 5 TYPE POINT EXTENT 3 58 27 71 UNITS dd CONNECTIONTYPE POSTGIS CONNECTION "host=x dbname=x user=x password=x port=5432" DATA "geometry from data.table using unique id using srid=4326" METADATA "wms_title" "myttitle" "wms_include_items" "all" "wms_feature_info_mime_type" "text/plain" "gml_include_items" "name,id" END STATUS ON LABELITEM "Cluster_FeatureCount" CLASSITEM "Cluster_FeatureCount" CLUSTER MAXDISTANCE 30 REGION "ellipse" END PROCESSING "CLUSTER_GET_ALL_SHAPES=ON" PROCESSING "ITEMS=name,description" CLASS EXPRESSION ([Cluster_FeatureCount] > 1) LABEL COLOR 255 255 255 #OUTLINECOLOR 255 255 255 FONT "OpenSans-Regular" TYPE truetype SIZE 6 FORCE TRUE POSITION cc PARTIALS FALSE END STYLE SYMBOL "default-circle" COLOR 255 0 0 SIZE 35 ANTIALIAS true END END CLASS EXPRESSION ([Cluster_FeatureCount] = 1) STYLE SYMBOL "default-circle" COLOR 255 0 0 SIZE 7 ANTIALIAS true END LABEL COLOR 255 0 0 OUTLINECOLOR 255 255 255 FONT "OpenSans-Regular" TYPE truetype SIZE 7 POSITION auto PARTIALS FALSE TEXT "[name]" END END END END Thanks, Erik -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users From erigul at ra.no Thu Feb 15 08:22:45 2018 From: erigul at ra.no (astron) Date: Thu, 15 Feb 2018 09:22:45 -0700 (MST) Subject: [mapserver-users] Wrong getfeatureinfo result from cluster layer In-Reply-To: <3916c511438145fd9f5d0fae62d0f2ee@C119S212VM042.msvyvi.vaha.local> References: <1518689799847-0.post@n6.nabble.com> <3916c511438145fd9f5d0fae62d0f2ee@C119S212VM042.msvyvi.vaha.local> Message-ID: <1518711765182-0.post@n6.nabble.com> Hi, Here's an example: GET /cgi-bin/mapserv/?map=/map/test.map& SERVICE=WMS &VERSION=1.3.0 &REQUEST=GetFeatureInfo &BBOX=60.93291618583994307,10.24023726617630814,61.29150318557810806,10.80779514235347349 &CRS=EPSG:4326 &WIDTH=1616 &HEIGHT=1021 &LAYERS=testlayer &STYLES= &FORMAT=image/png &QUERY_LAYERS=testlayer &INFO_FORMAT=text/plain &I=1006&J=261 &FEATURE_COUNT=10 regards, Erik -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From edmar.moretti at gmail.com Thu Feb 15 09:39:16 2018 From: edmar.moretti at gmail.com (Moretti Edmar) Date: Thu, 15 Feb 2018 15:39:16 -0200 Subject: [mapserver-users] UTFGRID and Mapscript In-Reply-To: References: Message-ID: Hi Steve, My "mapfile" looks like this: LAYER DATA "mundo.shp" NAME "mundoutfgrid" UTFDATA "{\'CNTRY_NAME\':\'[CNTRY_NAME]\'}" UTFITEM "FIPS_CNTRY" STATUS OFF TEMPLATE "none.htm" TYPE POLYGON CLASS NAME "" STYLE COLOR 230 230 230 OUTLINECOLOR 255 255 255 END END END I solved the problem using metadata: METADATA "UTFITEM" "FIPS_CNTRY" "UTFDATA" "{\"CNTRY_NAME\":\"[CNTRY_NAME]\"}" END With PHP-Mapscript I do the replacement: $layer->updateFromString("LAYER UTFITEM '" . $layer->getmetadata("UTFITEM") . "' END"); $layer->updateFromString("LAYER UTFDATA '" . $layer->getmetadata("UTFDATA") . "' END"); Thanks. 2018-02-02 20:08 GMT-02:00 Lime, Steve D (MNIT) : > Can you post what the layer definition **should** look like? It?s > possible the PHP code wasn?t updated. Perhaps there?s a workaround using > some of the OWS metadata since most output drivers will support a variety > of means of configuration. > > > > *From:* mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] *On > Behalf Of *Moretti Edmar > *Sent:* Thursday, February 01, 2018 12:46 PM > *To:* MapserverList OSGEO > *Subject:* [mapserver-users] UTFGRID and Mapscript > > > > Hi, > > > > Is it possible to create a LAYER with PHP-Mapscript to use UTFGRID? > Another problem, when I save a Mapfile, via PHP-Mapscript, the specific > parameters of UTFGRID disappear. Sounds like a bug to me. > > > > Can anybody help me? > > > > Thanks. > > > > -- > > ____________________________________________________________ > _______________ > > Edmar Moretti > > > > Para tirar d?vidas sobre o i3Geo utilize a lista de e-mails da OSGEO: > > https://lists.osgeo.org/cgi-bin/mailman/listinfo/i3geo > > Tamb?m no Slack e no Facebook > > > > > -- ___________________________________________________________________________ Edmar Moretti Para tirar d?vidas sobre o i3Geo utilize a lista de e-mails da OSGEO: https://lists.osgeo.org/cgi-bin/mailman/listinfo/i3geo Tamb?m no Slack e no Facebook -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Tue Feb 20 11:50:38 2018 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Tue, 20 Feb 2018 19:50:38 +0000 Subject: [mapserver-users] [Geomoose-users] REMINDER: OSGeo Twin Cities Chapter (TCMUG) Meeting Message-ID: All, Just a reminder (again) for next this weeks meeting at Waldmann Brewery & Wurstery on Wednesday the 21st, @4:30 bobb The third-rate mind is only happy when it is thinking with the majority. The second-rate mind is only happy when it is thinking with the minority. The first-rate mind is only happy when it is thinking. ?A. A. Milne _______________________________________________ Geomoose-users mailing list Geomoose-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/geomoose-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From erigul at ra.no Wed Feb 21 05:36:08 2018 From: erigul at ra.no (astron) Date: Wed, 21 Feb 2018 06:36:08 -0700 (MST) Subject: [mapserver-users] Wrong getfeatureinfo result from cluster layer In-Reply-To: <1518689799847-0.post@n6.nabble.com> References: <1518689799847-0.post@n6.nabble.com> Message-ID: <1519220168919-0.post@n6.nabble.com> So the reason for this was that I used the tables primary key instead of the OID. So changing DATA "geometry from data.table using unique id using srid=4326" to DATA "geometry from data.table using unique oid using srid=4326" fixed the problem. Can anybody explain why? Regards, Erik -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From pmperez at larioja.org Thu Feb 22 05:45:49 2018 From: pmperez at larioja.org (pmperez) Date: Thu, 22 Feb 2018 06:45:49 -0700 (MST) Subject: [mapserver-users] INSPIRE xsd MapServer WFS 2.0 Message-ID: <1519307149384-0.post@n6.nabble.com> We are implementing an INSPIRE download service, through MapServer 7.0.7 WFS 2.0.0 We want to know if an INSPIRE XSD can be applied to a layer with INSPIRE structure, example xsd: https://inspire.ec.europa.eu/schemas/us-govserv/4.0/GovernmentalServices.xsd We are currently obtaining the attributes of the INSPIREID field, without grouping: 1153396 ES-GLR 2014/10/29 What we would get after applying XSD is: 1153396 ES-GLR 2014/10/29 How can I do it in MapServer? Greetings to all -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From bob.basques at ci.stpaul.mn.us Thu Feb 22 06:40:03 2018 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Thu, 22 Feb 2018 14:40:03 +0000 Subject: [mapserver-users] OSGeo Twin Cities local Chapter (aka TCMUG) meeting schedule. Message-ID: <52C85006-2F54-4A5C-8DB0-2A95CD49E37F@ci.stpaul.mn.us> All, Nice turn out at Waldmann Brewery yesterday, even ran into some surprise guests here and there. Cozy sit-down was had by all, Steve L. showed up too but isn?t pictured, left early. https://www.dropbox.com/s/xska9ppy4ikzuwe/20180221_180021-01.waldmann.jpg?dl=0 Moving over towards Minneapolis with the next meeting in the Midway area. The next meeting will be at: Location: BlackStack ? Map Date: Wed. Mar. 14st ( I moved back ahead a week because of Valentines day!, so this is only three weeks out. Time: 4:30 pm. Suggestion : what does everyone thing about the idea of using the second Wednesday of the month as a date to shoot for, for the meetings? thoughts. bobb "Reality is merely an illusion, albeit a very persistent one." - Albert Einstein -------------- next part -------------- An HTML attachment was scrubbed... URL: From karsten at terragis.net Wed Feb 28 09:02:47 2018 From: karsten at terragis.net (karsten) Date: Wed, 28 Feb 2018 18:02:47 +0100 Subject: [mapserver-users] mapcache 1.6 with MapServer 7.07 - configuration problem ? Message-ID: Hi all, I have build and installed mapcache v 1.6.0 on an Ubuntu 14.04 server to sue with MapServer version 7.0.7. I got the test data to render via mapcache but afield so far to render a MapServer layer I had already running on a local MS4W installation. The Ubuntu based demo is at http://terra9.terragis.net/mapcache/demo/wms I tried to set up verbose debugging and also tried seeding but both did not give me good tiles nor any error output. The seeding process ( I used an adapted version of the command that worked on my windows box like this: /usr/local/bin/mapcache_seed -c /var/www/mapdata/mapcache/mapcache_server.xml -t luftbilder_mech_tiles -g GoogleMapsCompatible -e 726209,6535935,755143,6562556 -z 1,2 -n 4 -M 8,8 This seeding did render empty tiles (when I set the empty_img tag in the mapcache config). I could not get any error message so far and am stuck how to debug/fix my configuration. Any ideas what I can do ? Cheers Karsten Karsten Vennemann Terra GIS -------------- next part -------------- An HTML attachment was scrubbed... URL: