Re: [mapserver-users] How to Mapserver 6.4 on Windows?

2014-09-05 Thread Ludwig Kniprath
Am 04.09.2014 um 14:04 schrieb mapserver-users-requ...@lists.osgeo.org: Message: 1 Date: Wed, 3 Sep 2014 23:10:25 +0200 (CEST) From: Siki Zoltans...@agt.bme.hu To: Thomas RAFFINtraf...@sirap.fr Cc:mapserver-users@lists.osgeo.org Subject: Re: [mapserver-users] How to Mapserver 6.4 on Windows?

Re: [mapserver-users] Upgrading Apache and PHP that came with MS4W

2014-02-28 Thread Ludwig Kniprath
-- Message: 2 Date: Mon, 24 Feb 2014 23:50:04 + From: EVANS, JAMES R GS-13 USAF ACC 84 RADES/SCZE james.evan...@us.af.mil To:mapserver-users@lists.osgeo.org mapserver-users@lists.osgeo.org Subject: [mapserver-users] Upgrading Apache and PHP that

[mapserver-users] Status with raster-layer-classes doesn't work

2012-06-07 Thread Ludwig Kniprath
Hi List, I'm using MS4W 3.0.6 (MapServer version 6.0.3) with PHP-mapscript, but this problem occured on older versions too. I have an tile-indexed raster-layer for topografic maps (for the german users: it's the TK 25 from NRW). The tiffs are colour-indexed, so I use several classes like

[mapserver-users] RE: Measure tool?

2010-11-12 Thread Ludwig Kniprath
Hi Bob, we use clientside javascript-functions. They both need an array of points (digi_points) with real-world-coordiantes (properties pointX and pointY) as input-parameter. This array is filled by clicks on the map, the click-coordiantes (pixel-distance from the click-point to the upper left

[mapserver-users] Problems with PostGIS connection pooling

2010-04-07 Thread Ludwig Kniprath
Hello all, I use mapserver 5.6.1 and php_mapscript (ms4w_3.0_beta10) on Apache and PHP 5.3.2 (CGI). The spatial-data (OpenStreetMap) is stored in PostGIS. The map-creation ist called by a php-script, which himself connects to a postgres database for administrative purposes. In the map-File

[mapserver-users] Re: choosing region of interest using referencemap

2010-03-28 Thread Ludwig Kniprath
We implemented such a feature with Javascript and PHP-Mapscript. Serverside (Mapscript): - Get extent (reference_map-extent) and - size of reference-map-image (reference_map-width, reference_map-height, pixel), - Calculate the cellsize (meter per pixel), - return these values to the

[mapserver-users] Re: wms output problem

2010-01-06 Thread Ludwig Kniprath
Just an idea: Perhaps a missing IMAGETYPE png in the mapfile? Regards Ludwig Hi! i have a problem with the output image of my wms, i define PNG but return JPEG. Source mapfile OUTPUTFORMAT NAME png DRIVER AGG/PNG MIMETYPE 'image/png' IMAGEMODE RGB EXTENSION png

[mapserver-users] RE: Rendering overlapping data

2009-12-21 Thread Ludwig Kniprath
I dont't think, Mapserver has the out-of-the-box possibility to render the overlapping parts of polygons in a special way. Perhaps you could try to create a separate layer (f. e. in Postgis with a special geo-query), that just shows these overlapping parts. But also then I think its difficult

[mapserver-users] Re: How to set Labels dynamically

2009-12-04 Thread Ludwig Kniprath
, 10); Thank you, Helen -Original Message- From: Ludwig Kniprath [mailto:lud...@kni-online.de] Sent: Thursday, December 03, 2009 4:57 PM To: Helen Eskina; mapserver-users@lists.osgeo.org Subject: Re: How to set Labels dynamically Oops, you're right, drawLabelCache is a method of the map

[mapserver-users] RE: How to set Labels dynamically

2009-12-03 Thread Ludwig Kniprath
Hi, I think there's only one line missing after $daLayer-draw($image): $daLayer-drawLabelCache($image); Regards Ludwig Message: 6 Date: Thu, 3 Dec 2009 11:13:10 -0500 From: Helen Eskina hesk...@ubitech.com Subject: [mapserver-users] How to set Labels dynamically? To:

[mapserver-users] Re: How to set Labels dynamically

2009-12-03 Thread Ludwig Kniprath
and got an error. I'm using Mapserver installed with fgs 5.4.2. I've tried $map- drawLabelCache($image); But it doesn't make any difference. Helen -Original Message- From: Ludwig Kniprath [mailto:lud...@kni-online.de] Sent: Thursday, December 03, 2009 12:13 PM To: mapserver-users

[mapserver-users] Re: mapserver-users Digest, Vol 22, Issue 71

2009-11-27 Thread Ludwig Kniprath
Hello, I used your slightly changed PHP and the mapfile below, it worked perfectly for me. Maybe your problems were caused by the extent defined in your mapfile? Regards Ludwig ?php $map = ms_newMapObj('e:\website\WVER_IMS\mapfiles\test.map'); $daLayer = ms_newLayerObj($map);

RE: [mapserver-users] Can not draw single point

2009-11-27 Thread Ludwig Kniprath
Hello, I used your slightly changed PHP and the mapfile below, it worked perfectly for me. Maybe your problems were caused by the extent defined in your mapfile? Regards Ludwig ?php $map = ms_newMapObj('e:\website\WVER_IMS\mapfiles\test.map'); $daLayer = ms_newLayerObj($map);

[mapserver-users] RE: LABELS

2009-11-23 Thread Ludwig Kniprath
Hi, you get a centered label which does not move around when panning with LABEL: POSITION cc and LAYER: PROCESSING LABEL_NO_CLIP=ON, as for example: ---schnipp-- LAYER NAME Country CONNECTIONTYPE postgis

Re: [mapserver-users] PHP mapscript $shape-buffer() takes a long time

2009-11-18 Thread Ludwig Kniprath
,$simplify_tolerance),$buffer_radius, $number_of_segments),$srid)::geometry ...FROM... And don't use the buffered polygon for geo-queries, there are faster ways in PostGIS and Mapserver. Regards Ludwig Kniprath I'm trying to buffer a shape returned from a point query on a polygon layer of parcels

Re: [mapserver-users] entities one upon the other

2009-11-12 Thread Ludwig Kniprath
Hello, perhaps some other solutions for your problem: - use a special class for the small entities, that has to be defined as the last class in the Layer-Definition and so will be drawn upon the other classes - for database-layers: use a order-by-clause to get the result ordered by their sice