Re: [mapserver-users] HTML response to GetFeature request

2013-07-01 Thread Luís de Sousa
Hi Jukka, I also do get correct results with Poster, but not with API Kitchen. This is really frustrating, but at least the service seems to running as it should. Thank you, Luís On 28 June 2013 15:17, Rahkonen Jukka jukka.rahko...@mmmtike.fi wrote: Sorry, nothing wrong with the typename

[mapserver-users] wfs_namespace_prefix / DescribeLayer Response

2013-07-01 Thread Lars Lingner
Hello, while setting up MapServer and TinyOWS I'm facing a problem configuring wfs_namespace_prefix. My WEB-METADATA ... wms_onlineresource http://1.1.1.1:81/cgi-bin/wms; wfs_onlineresource http://1.1.1.1:81/cgi-bin/tinyows; wfs_title WFS Dienst wfs_namespace_prefix tows ows_enable_request * ...

[mapserver-users] Mapscript 6.2 / sql plugin bug for multipart geometries

2013-07-01 Thread James Perrins
Hi, I recently moved from Mapserver 6.0 to 6.21 and have one bit of code which is behaving differently (and I think incorrectly) In 6.0 when a resultCacheObj was returned containing a multipart geometry, oResults.bounds.maxx etc would give the extent of the multipart geometry. In 6.2 this seems

Re: [mapserver-users] Mapscript 6.2 / sql plugin bug for multipart geometries

2013-07-01 Thread Tamas Szekeres
James, Could you provide a sample geometry to reproduce the issue? Best regards, Tamas 2013/7/1 James Perrins james.perr...@gmail.com Hi, I recently moved from Mapserver 6.0 to 6.21 and have one bit of code which is behaving differently (and I think incorrectly) In 6.0 when a

Re: [mapserver-users] mapserver-users Digest, Vol 66, Issue 1

2013-07-01 Thread sam
Sorry I missed you, but I am on parental leave/holiday/training until August 5th. Urgent YLUPC business can be sent to the YLUPC director at r...@planyukon.ca. ___ mapserver-users mailing list mapserver-users@lists.osgeo.org

Re: [mapserver-users] Mapscript 6.2 / sql plugin bug for multipart geometries

2013-07-01 Thread James Perrins
Hi Tamas, STAsText() gives: MULTIPOLYGON (((95307.4877929688 348969.457519531, 100406.645019531 350051.097167969, 104578.683105469 353836.834960938, 100638.424804688 358626.952636719, 97470.7666015625 360403.932128906, 91289.9697265625 356927.233886719, 91212.7094726563 351982.596191406,

[mapserver-users] csv join in mapscript/OGR

2013-07-01 Thread Minka Stoyanova
Hello, I have a point shape layer and I would like to color each point according to a number in a csv file= The csv file is: id,color 1080,2 1090,4 11,2 12,5 The ID column is the same as the NUMBER column in the shape file. This is my layer: LAYER # Stations point layer 1 begins here

[mapserver-users] question on Request For Comment #6

2013-07-01 Thread Mark Volz
Hello, Has anything ever happened with RFC #6, or did this one stall out? The color range mapping could be useful in a couple of my applications. Thanks Mark Volz, GISP GIS Specialist ___ mapserver-users mailing list

[mapserver-users] RFC documentation - status would be useful

2013-07-01 Thread Mark Volz
Hello, It might be useful if the status (Passed, Implemented, Failed, New) of each RFC was indicated on http://www.mapserver.org/development/rfc/index.html Thanks Mark Volz, GISP GIS Specialist ___ mapserver-users mailing list

Re: [mapserver-users] Segmentation fault + Premature end of script headers: mapserv, referer: http://localhost/tutorial/section3.html

2013-07-01 Thread anantj
Please let me know if someone can help me on issue. I use libgdal1 version 1.9.0-3.1ubuntu1. -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Segmentation-fault-Premature-end-of-script-headers-mapserv-referer-http-localhost-tutorial-section3-l-tp5061446p5063403.html Sent

Re: [mapserver-users] csv join in mapscript/OGR

2013-07-01 Thread Even Rouault
Le lundi 01 juillet 2013 14:17:17, Minka Stoyanova a écrit : Hello, I have a point shape layer and I would like to color each point according to a number in a csv file= The csv file is: id,color 1080,2 1090,4 11,2 12,5 The ID column is the same as the NUMBER column in the shape

Re: [mapserver-users] RFC documentation - status would be useful

2013-07-01 Thread Lime, Steve D (MNIT)
Good point (I'm probably the biggest offender)... I'll take a pass through them. Steve -Original Message- From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of Mark Volz Sent: Monday, July 01, 2013 12:55 PM To:

[mapserver-users] FCGI and SVG output goes to STDERR?

2013-07-01 Thread Nick Webb
List, I've really tried hard to nail this down, but it makes no sense to me. I'm not a map guy, but am a system administrator for one. We have a mapserver setup that works fine for both PNG and SVG when we use the standard apache cgi module. When we switch to mod_fcgid, however, SVG displays

Re: [mapserver-users] FCGI and SVG output goes to STDERR?

2013-07-01 Thread Frank Warmerdam
Nick, As I vaguely recall from when I worked on fastcgi support in MapServer, only output formats that can be redirected through the low level mapserver io layer (ms_io*.c) will work properly in fastcgi mode. I'm guessing the svg encoder just writes directly to stdout. If my theory is correct,

Re: [mapserver-users] FCGI and SVG output goes to STDERR?

2013-07-01 Thread Nick Webb
On Mon, Jul 1, 2013 at 5:50 PM, Frank Warmerdam warmer...@pobox.com wrote: Nick, As I vaguely recall from when I worked on fastcgi support in MapServer, only output formats that can be redirected through the low level mapserver io layer (ms_io*.c) will work properly in fastcgi mode. I'm

Re: [mapserver-users] FCGI and SVG output goes to STDERR?

2013-07-01 Thread thomas bonfort
Nick, in mapcairo.c near line 857, function int saveImageCairo (imageObj *img, mapObj *map, FILE *fp, outputFormatObj *format) try changing fwrite to msIO_fwrite In any case, please open an issue for this one so it doesn't get forgotten. regards, thomas On 2 July 2013 06:29, Nick Webb