From david.mitchell@telogis.com Thu Apr 1 01:28:50 2004 From: david.mitchell@telogis.com (David Mitchell) Date: Thu, 01 Apr 2004 13:28:50 +1200 Subject: [Mapserver-users] placing text along an arbitrary path In-Reply-To: <402B5F6F.8020509@atlas.gis.univie.ac.at> References: <402B5F6F.8020509@atlas.gis.univie.ac.at> Message-ID: <406B7052.8080406@telogis.com> I'd also be interested in this. Could the developers please comment on this idea? Cheers David Alexander Pucher wrote: > I've asked this already about a year ago and I'm wondering, if there is > any effort/news about this subject? > > Is there a way to label lines not only horizontal or by a given angle, > but along a path. In a PostScript book I have, they call this method > "placing text along an arbitrary path". > Consider labeling roads or even rivers that curve a lot. -- David Mitchell Software Engineer Telogis NOTICE: This message (including any attachments) contains CONFIDENTIAL INFORMATION intended for a specific individual and purpose, and is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. From joelman@joelman.com Thu Apr 1 04:11:07 2004 From: joelman@joelman.com (Joel Gwynn) Date: Wed, 31 Mar 2004 23:11:07 -0500 Subject: [Mapserver-users] OGR not found Message-ID: <406B965B.9050002@joelman.com> I'm going nuts here. I'm trying to configure mapserver like so: ./configure --with-gd=/usr/local --with-proj --with-ogr --with-gdal --with-postgis --with-wfs --with-wms --with-php=/usr/ And things chug along nicely until this point: checking for OGRRegisterAll in -lgdal.1.1... no configure: warning: OGR not found in system libs... use --with-ogr=DIR. and then later ... configure: error: OGC WFS Server support cannot be enabled: missing OGR which is required). I've installed the GDAL package, which seems to include ogr. How do I find out if ogr is installed, and if so, how do I tell the configure script, and if not, how do I install it? Thanks, Joel Gwynn From warmerdam@pobox.com Thu Apr 1 04:50:10 2004 From: warmerdam@pobox.com (Frank Warmerdam) Date: Wed, 31 Mar 2004 23:50:10 -0500 Subject: [Mapserver-users] OGR not found In-Reply-To: <406B965B.9050002@joelman.com> References: <406B965B.9050002@joelman.com> Message-ID: <406B9F82.6010400@pobox.com> Joel Gwynn wrote: > I'm going nuts here. I'm trying to configure mapserver like so: > ./configure --with-gd=/usr/local --with-proj --with-ogr --with-gdal > --with-postgis --with-wfs --with-wms --with-php=/usr/ > > And things chug along nicely until this point: > > checking for OGRRegisterAll in -lgdal.1.1... no > configure: warning: OGR not found in system libs... use > --with-ogr=DIR. > > and then later ... > > configure: error: OGC WFS Server support cannot be enabled: missing OGR > which is required). > > I've installed the GDAL package, which seems to include ogr. How do I > find out if ogr is installed, and if so, how do I tell the configure > script, and if not, how do I install it? Joel, I gather you are working with MapServer 4.0.1? I think it still has the problem of looking explicitly for -lgdal.1.1, I think there will be a MapServer 4.0.2 out at some point with this fix. In the meantime you can either use a "developer" snapshot of MapServer which does not have this problem or following the following steps. The good news is that the configure logic for MapServer doesn't really do anything to magical. For many purposes, you can just opt out of stuff on the configure line and then doctor up the Makefile after the fact. o Configure without --with-ogr. I used the following successfully just now with MapServer 4.0.1. ./configure --with-ogr --with-gd=/usr/local --with-wms --with-proj=/usr/local o Edit Makefile (with vi, or your text editor of choice) o Change the OGR section to look something like this: # Optional OGR Support. OGC Simple Feature inspired interface for vector # formats. See http://gdal.velocet.ca/projects/opengis/ OGR= -DUSE_OGR OGR_LIB= -lgdal OGR_INC= OGR_STATIC= o now save, and build normally. Hopefully all will go well. If there are problems finding the GDAL library, adjust OGR_LIB appropriately. If the GDAL/OGR include files aren't in the default include path change the OGR_INC to look something like: OGR_INC=-I/usr/local/include A similar strategy can be followed for GDAL. That is set the GDAL= line to: GDAL=-DUSE_GDAL and if -lgdal isn't already in OGR_LIB you can put it in GDAL_LIB. Best regards, -- ---------------------------------------+-------------------------------------- I set the clouds in motion - turn up | Frank Warmerdam, warmerdam@pobox.com light and sound - activate the windows | http://pobox.com/~warmerdam and watch the world go round - Rush | Geospatial Programmer for Rent From dmorissette@dmsolutions.ca Thu Apr 1 04:57:59 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Wed, 31 Mar 2004 23:57:59 -0500 Subject: [Mapserver-users] OGR not found In-Reply-To: <406B965B.9050002@joelman.com> References: <406B965B.9050002@joelman.com> Message-ID: <406BA157.8090708@dmsolutions.ca> Joel Gwynn wrote: > I'm going nuts here. I'm trying to configure mapserver like so: > ./configure --with-gd=/usr/local --with-proj --with-ogr --with-gdal > --with-postgis --with-wfs --with-wms --with-php=/usr/ > > And things chug along nicely until this point: > > checking for OGRRegisterAll in -lgdal.1.1... no > configure: warning: OGR not found in system libs... use > --with-ogr=DIR. > This is due to a change in GDAL 1.1.9 and more recent. See: http://mapserver.gis.umn.edu/data2/wilma/mapserver-users/0403/msg00257.html Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From Simon.Greener@forestrytas.com.au Thu Apr 1 05:21:10 2004 From: Simon.Greener@forestrytas.com.au (Simon Greener) Date: Thu, 01 Apr 2004 15:21:10 +1000 Subject: [Mapserver-users] Re: polygon label placement Message-ID: Blaise and other MapServer users, We have some code written in Java, PL/SQL and even VBScript (within the Manifold GIS) that implements a centroid algorithm that generates a point that is guaranteed to fall within ANY polygon (even one with multiple parts and multiple holes). If anyone wants it, let me know which of the above languages and I will send it to you. We placed two versions of the algorithm onto Georeference.org, which is the home of the Manifold System Users Group at: http://www.georeference.org/Forums/boxx/download.asp?Cat=6 You do need Manifold to be able to read these versions. We can provide the VBScript as a text file if you want. This algorithm has been downloaded and used by lots of people in its variety of languages and forms, so I don't see any issues in it being used within MapServer, however, while all we (FT) would require is simple acknowledgement of the source of the algorithm as defined in the documentation header. I would need to talk to Geometry Pty Ltd (the originator of the algorithm) about releasing their rights through an appropriate approved OSI license. regards Simon GIS - A Great Profession, and a lifelong Passion! --------------------------------------------------------------------------------- Simon Greener email: simon.greener@forestrytas.com.au GIS Manager Ph: +61 3 6233 8143 Forestry Tasmania Fax: +61 3 6233 8252 79 Melville Street, Hobart, Tasmania, 7000, Australia >>> blaise Wednesday, 31 March, 2004 7:03:39 pm >>> Dean Gadoury wrote : ----- Every now and then I need to label polygons in MapServer and I'm often unsatisfied with the resulting placement. Labeling is fine for points and lines, but when it comes to polygons it can be unpredictable.... If I'm not mistaken the POSITION parameter will only place the label relative to the point at which MapServer decides the label will go. Depending on the label's POSITION its quite possible to have labels that fall completely outside a polygon. Is there a way to force labels to be within a polygon? Is there anything else I'm missing? ----- I have seen some discussions some times ago in the list about having the polygon labels inside the polygons. First try the different label position parameters (vertical : up, center, down; horizontal : left, center, right). (i.e. : CC) If you can do some mapserver scripting, you can put the labels wherever you want (acoording you know where they have to go) : -- have a separate label (or point) layer where you will draw the labels for the polygons, -- for each polygon, compute the X/Y coordinates of each vertex to find the best point place for the label to be, -- insert a label (or a labeled point) at this computed location on your label layer. For the computation, you can use the simple : X = middle of Xmin - Xmax Y = middle of Ymin - Ymax But this won't give you good results if you deal with "inside-curved" polygons. I think you can find a lot of doc for the computation of the "center" of polygons. You can have a look at a demo where you can precisly set the polygon labels with the simple computation above and by the means of two X-offset and Y-offset parameters : http://webmaps.ouvaton.org link: java-tools demo (switch to html with the green java switch left to the scale bar (all editing and updating tools have not yet been developped in java), put the purple polygon layer in update mode and digitize new polygons or update the X/Y-offset of the existing ones, or update the vertex.) 'hope it'll help Blaise _______________________________________________ Mapserver-users mailing list Mapserver-users@lists.gis.umn.edu http://lists.gis.umn.edu/mailman/listinfo/mapserver-users This transmission is intended solely for the person or organisation to whom it is addressed. It is confidential and may contain legally privileged information. If you have received this transmission in error, you may not use, copy or distribute it. Please advise us by return e-mail or by phoning 61 3 62338203 and immediately delete the transmission in its entirety. We will meet your reasonable expenses of notifying us. Despite our use of anti-virus software, Forestry Tasmania cannot guarantee that this transmission is virus-free. From joelman@joelman.com Thu Apr 1 05:46:37 2004 From: joelman@joelman.com (Joel Gwynn) Date: Thu, 01 Apr 2004 00:46:37 -0500 Subject: [Mapserver-users] OGR not found In-Reply-To: <406BA157.8090708@dmsolutions.ca> References: <406B965B.9050002@joelman.com> <406BA157.8090708@dmsolutions.ca> Message-ID: <406BACBD.9010302@joelman.com> Daniel Morissette wrote: > Joel Gwynn wrote: > >> I'm going nuts here. I'm trying to configure mapserver like so: >> ./configure --with-gd=/usr/local --with-proj --with-ogr --with-gdal >> --with-postgis --with-wfs --with-wms --with-php=/usr/ >> >> And things chug along nicely until this point: >> >> checking for OGRRegisterAll in -lgdal.1.1... no >> configure: warning: OGR not found in system libs... use >> --with-ogr=DIR. >> > > > This is due to a change in GDAL 1.1.9 and more recent. See: > http://mapserver.gis.umn.edu/data2/wilma/mapserver-users/0403/msg00257.html > > > Daniel Thanks a lot. The new configure file worked. Can't wait to try it out! From joelman@joelman.com Thu Apr 1 06:06:32 2004 From: joelman@joelman.com (Joel Gwynn) Date: Thu, 01 Apr 2004 01:06:32 -0500 Subject: [Mapserver-users] OGR not found In-Reply-To: <406BA157.8090708@dmsolutions.ca> References: <406B965B.9050002@joelman.com> <406BA157.8090708@dmsolutions.ca> Message-ID: <406BB168.1070002@joelman.com> Daniel Morissette wrote: > Joel Gwynn wrote: > >> I'm going nuts here. I'm trying to configure mapserver like so: >> ./configure --with-gd=/usr/local --with-proj --with-ogr --with-gdal >> --with-postgis --with-wfs --with-wms --with-php=/usr/ >> >> And things chug along nicely until this point: >> >> checking for OGRRegisterAll in -lgdal.1.1... no >> configure: warning: OGR not found in system libs... use >> --with-ogr=DIR. >> > > > This is due to a change in GDAL 1.1.9 and more recent. See: > http://mapserver.gis.umn.edu/data2/wilma/mapserver-users/0403/msg00257.html > > > Daniel OK. I spoke too soon. When I try to run mapserv, I get the error: ./mapserv: error while loading shared libraries: libgdal.so.1: cannot open share d object file: No such file or directory It appears that I'm using gdal1.2.0b Perhaps I should be able to figure this out, but it's late. g'night. From josb@pml.ac.uk Thu Apr 1 08:46:48 2004 From: josb@pml.ac.uk (John Beisley - RSG) Date: Thu, 01 Apr 2004 09:46:48 +0100 Subject: [Mapserver-users] Shapefile question In-Reply-To: <000001c4175c$7c0af720$1364a8c0@parapente> References: <000001c4175c$7c0af720$1364a8c0@parapente> Message-ID: <406BD6F8.1070101@pml.ac.uk> Murilo Lacerda Yoshida wrote: > Hi all, > > I need to create a map that represents the path that someone walked. > For example, a guy started walking at 9:00 am at his house, and > stopped walking at 11:00 am at his office. During this time he walked, > he was using a gps device that was monitoring the points he passed trough. > > So I need to create this map. Question is what type of shapefile I > need to create to store this data. I guess it should be MS_SHP_ARC, > but I’m not sure. Until now I have used only MS_SHP_POLYGON shapes, > and it would be nice if I could still use this kind of shape. And if I > continue using MS_SHP_POLYGON shapes to draw the path the guy walked, > will the map show all the corners, turns and other small elements of > the path that are important? > > I am using PHP/MapScript. > > Thanks in advance, > > Murilo > When I created a shapefile to draw lines (geographically placed, but for a different purpose) I used an ARC type of shapefile. I imagine this is what you want for drawing a track of points on a map. - John -- Website: www.pml.ac.uk Registered Charity No. 1091222 Company No. 4178503 ------------------------------------------------------------------- This e-mail, its content and any file attachments are confidential. If you have received this e-mail in error please do not copy, disclose it to any third party or use the contents or attachments in any way. Please notify the sender by replying to this e-mail or e-mail forinfo@pml.ac.uk and then delete the email without making any copies or using it in any other way. The content of this message may contain personal views which are not the views of Plymouth Marine Laboratory unless specifically stated. Email transmission cannot be guaranteed to be secure or error free From jduflost@ben.vub.ac.be Thu Apr 1 09:24:43 2004 From: jduflost@ben.vub.ac.be (Johan Duflost) Date: Thu, 1 Apr 2004 11:24:43 +0200 Subject: [Mapserver-users] connection string Message-ID: <002c01c417cb$2ac01d90$0200000a@orion> This is a multi-part message in MIME format. ------=_NextPart_000_0029_01C417DB.EE0D4420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, I installed mapserver in tomcat under windows and I need to connect to a = postgis db on another host but the following error message is returned : msPOSTGISLayerOpen(): Query error. couldnt make connection to DB with = connect string 'user=3Dpgmap password=3Dpgmap dbname=3Dgis host=3Dcanis = port=3D5432'.=20 Error reported was 'unknown host name: canis '.=20 This error occured when trying to make a connection to the specified = postgresql server.=20 Most commonly this is caused by=20 (1) incorrect connection string=20 (2) you didnt specify a 'user=3D...' in your connection string=20 (3) the postmaster (postgresql server) isnt running=20 (4) you are not allowing TCP/IP connection to the postmaster=20 (5) your postmaster is not running on the correct port - if its not on = 5432 you must specify a 'port=3D...'=20 (6) the security on your system does not allow the webserver (usually = user 'nobody') to make socket connections to the postmaster=20 (7) you forgot to specify a 'host=3D...' if the postmaster is on a = different machine (8) you made a typo=20 I checked all these possibilities but all of them seem to be right. Is = this a bug of mapserver on windows ? Does anybody have an idea ? Thanks in advance, Johan Duflost Johan Duflost Analyst Programmer Belgian Biodiversity Information Facility (BeBIF) Universite Libre de Bruxelles (ULB) Boulevard du Triomphe - campus de la plaine B-1050 Bruxelles http://gis.bebif.be ------=_NextPart_000_0029_01C417DB.EE0D4420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
Hi all,
 
I installed mapserver in tomcat under = windows and I=20 need to connect to a postgis db on another host but the following error = message=20 is returned :
 
msPOSTGISLayerOpen(): Query error. couldnt make connection to DB = with=20 connect string 'user=3Dpgmap password=3Dpgmap dbname=3Dgis host=3Dcanis = port=3D5432'.=20
Error reported was 'unknown host name: canis '.
This error = occured when=20 trying to make a connection to the specified postgresql server.
Most = commonly this is caused by
(1) incorrect connection string
(2) = you didnt=20 specify a 'user=3D...' in your connection string
(3) the postmaster=20 (postgresql server) isnt running
(4) you are not allowing TCP/IP = connection=20 to the postmaster
(5) your postmaster is not running on the correct = port -=20 if its not on 5432 you must specify a 'port=3D...'
(6) the security = on your=20 system does not allow the webserver (usually user 'nobody') to make = socket=20 connections to the postmaster
(7) you forgot to specify a = 'host=3D...' if the=20 postmaster is on a different machine
(8) you made a typo
 
I checked all these possibilities but = all of them=20 seem to be right. Is this a bug of mapserver on windows ?
 
Does anybody have an idea = ?
 
Thanks in advance,
 
Johan Duflost
 
Johan Duflost
Analyst = Programmer
Belgian=20 Biodiversity Information Facility (BeBIF)
Universite Libre de = Bruxelles=20 (ULB)
Boulevard du Triomphe - campus de la plaine
B-1050 = Bruxelles
http://gis.bebif.be
------=_NextPart_000_0029_01C417DB.EE0D4420-- From gheysen.t@skynet.be Thu Apr 1 10:15:11 2004 From: gheysen.t@skynet.be (gheysen.t@skynet.be) Date: Thu, 01 Apr 2004 12:15:11 +0200 Subject: [Mapserver-users] Questions about PHP/MapScript Message-ID: <200404011015.i31AFBEV001135@outmx012.isp.belgacom.be> -------boundalter150977 Content-Type: text/plain Content-Transfer-Encoding: 8bit Hello, I make a work on the use of web mapping in forestry. I have made a client interface with PHP/MapScript 3.6.6. I have 4 questions about it. 1. I want to create a PHP function that export a layer of the current map in a new shapefile that will be download by the client. How can I do this ? 2. Someone can exply to me the use of the method getShape ? 3. In PHP/MapScript 3.6.6. it was possible to make a search (by the methode queryByAtrributes) on more than one atrribute. Is it still possible with PHP/MapScript 4.0.1 and the new version of this method ? 4. It-is possible to make a query on the results of the precedent query ? I have try with queryByFeatures() but I have not results : it draw only the good shapes but I have no results. Thanks in advance P.S. : Excuse for my bad english Gheysen Thibaut Faculté des Sciences Agronomiques de Gembloux. gheysen.t@fsagx.ac.be -------boundalter150977 Content-Type: text/html Content-Transfer-Encoding: 8bit Content-Disposition: inline Hello,
 
I make a work on the use of web mapping in forestry. I have made a client interface with PHP/MapScript 3.6.6. I have 4 questions about it.
 
1. I want to create a PHP function that export a layer of the current map in a new shapefile that will be download by the client. How can I do this ?
 
2. Someone can exply to me the use of the method getShape ?
 
3. In PHP/MapScript 3.6.6. it was possible to make a search (by the methode queryByAtrributes) on more than one atrribute. Is it still possible with PHP/MapScript 4.0.1 and the new version of this method ?
 
4. It-is possible to make a query on the results of the precedent query ? I have try with queryByFeatures() but I have not results : it draw only the good shapes but I have no results.
 
Thanks in advance
 
P.S. :  Excuse for my bad english
 
Gheysen Thibaut
Faculté des Sciences Agronomiques de Gembloux.
gheysen.t@fsagx.ac.be   
 


 
-------boundalter150977-- From jduflost@ben.vub.ac.be Thu Apr 1 12:21:22 2004 From: jduflost@ben.vub.ac.be (Johan Duflost) Date: Thu, 1 Apr 2004 14:21:22 +0200 Subject: [Mapserver-users] connection string References: <002c01c417cb$2ac01d90$0200000a@orion> Message-ID: <005301c417e3$d829a740$0200000a@orion> This is a multi-part message in MIME format. ------=_NextPart_000_0050_01C417F4.9B7BAFD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I think I found the source of the problem. The libpq.dll (postgresql = client interface) included in the binary distribution of mapserver = contains a bug listed in pgsql-bugs mailing list. Does anybody know where I can find a new version of that library ? Thanks Johan ----- Original Message -----=20 From: Johan Duflost=20 To: mapserver-users@lists.gis.umn.edu=20 Sent: Thursday, April 01, 2004 11:24 AM Subject: [Mapserver-users] connection string Hi all, I installed mapserver in tomcat under windows and I need to connect to = a postgis db on another host but the following error message is returned = : msPOSTGISLayerOpen(): Query error. couldnt make connection to DB with = connect string 'user=3Dpgmap password=3Dpgmap dbname=3Dgis host=3Dcanis = port=3D5432'.=20 Error reported was 'unknown host name: canis '.=20 This error occured when trying to make a connection to the specified = postgresql server.=20 Most commonly this is caused by=20 (1) incorrect connection string=20 (2) you didnt specify a 'user=3D...' in your connection string=20 (3) the postmaster (postgresql server) isnt running=20 (4) you are not allowing TCP/IP connection to the postmaster=20 (5) your postmaster is not running on the correct port - if its not on = 5432 you must specify a 'port=3D...'=20 (6) the security on your system does not allow the webserver (usually = user 'nobody') to make socket connections to the postmaster=20 (7) you forgot to specify a 'host=3D...' if the postmaster is on a = different machine (8) you made a typo=20 I checked all these possibilities but all of them seem to be right. Is = this a bug of mapserver on windows ? Does anybody have an idea ? Thanks in advance, Johan Duflost Johan Duflost Analyst Programmer Belgian Biodiversity Information Facility (BeBIF) Universite Libre de Bruxelles (ULB) Boulevard du Triomphe - campus de la plaine B-1050 Bruxelles http://gis.bebif.be ------=_NextPart_000_0050_01C417F4.9B7BAFD0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
I think I found the source of the = problem. The=20 libpq.dll (postgresql client interface) included in the binary = distribution of=20 mapserver contains a bug listed in pgsql-bugs mailing list.
Does anybody know where I can find a = new version of=20 that library ?
 
Thanks
 
Johan
 
----- Original Message -----
From:=20 Johan=20 Duflost
To: mapserver-users@lists.g= is.umn.edu=20
Sent: Thursday, April 01, 2004 = 11:24=20 AM
Subject: [Mapserver-users] = connection=20 string

 
Hi all,
 
I installed mapserver in tomcat under = windows and=20 I need to connect to a postgis db on another host but the following = error=20 message is returned :
 
msPOSTGISLayerOpen(): Query error. couldnt make connection to DB = with=20 connect string 'user=3Dpgmap password=3Dpgmap dbname=3Dgis = host=3Dcanis port=3D5432'.=20
Error reported was 'unknown host name: canis '.
This error = occured=20 when trying to make a connection to the specified postgresql server. =
Most=20 commonly this is caused by
(1) incorrect connection string
(2) = you=20 didnt specify a 'user=3D...' in your connection string
(3) the = postmaster=20 (postgresql server) isnt running
(4) you are not allowing TCP/IP=20 connection to the postmaster
(5) your postmaster is not running on = the=20 correct port - if its not on 5432 you must specify a 'port=3D...' =
(6) the=20 security on your system does not allow the webserver (usually user = 'nobody')=20 to make socket connections to the postmaster
(7) you forgot to = specify a=20 'host=3D...' if the postmaster is on a different machine
(8) you = made a typo=20
 
I checked all these possibilities but = all of them=20 seem to be right. Is this a bug of mapserver on windows ?
 
Does anybody have an idea = ?
 
Thanks in advance,
 
Johan Duflost
 
Johan Duflost
Analyst = Programmer
Belgian=20 Biodiversity Information Facility (BeBIF)
Universite Libre de = Bruxelles=20 (ULB)
Boulevard du Triomphe - campus de la plaine
B-1050 = Bruxelles
http://gis.bebif.be
------=_NextPart_000_0050_01C417F4.9B7BAFD0-- From dharanibabus@hotmail.com Thu Apr 1 14:13:12 2004 From: dharanibabus@hotmail.com (Dharani Babu) Date: Thu, 01 Apr 2004 19:43:12 +0530 Subject: [Mapserver-users] HOW TO ADD LABELS TO POLYGONS/POINTS ? Message-ID: Hi all After much of work TIGER files directly with OGR connection I found that adding layers is a fun with shp files !! I jus downloaded esri shape files for couple of counties and its real good. But I am fighting to add labels to the water polygon and landmark points layers . I have shape files for /Water Polygons /Landmark Polygons /Land polygons /Geo graphic locations . But addition of LABEL item to water polygon does nt work and also the Geographic locations layer is not displayed at all !!! and same way labels are not added to the land polygons ...This is my map file ...could any of you help me ?? LAYER GROUP tigerdata NAME tgr33015wat TYPE POLYGON STATUS DEFAULT DATA "NH-RM/tgr33015wat" CLASS NAME "Water Polygons" COLOR 0 200 0 LABEL MINFEATURESIZE 20 MINDISTANCE 100 BUFFER 10 ANGLE auto POSITION auto TYPE TRUETYPE FONT arial SIZE 8 COLOR 200 0 0 OUTLINECOLOR 255 255 255 ANTIALIAS true END END END # layer ends LAYER GROUP tigerdata NAME tgr33015lpy TYPE POLYGON STATUS DEFAULT DATA "NH-RM/tgr33015lpy" CLASS NAME "land Polygons" COLOR 130 130 130 END END # layer ends LAYER GROUP tigerdata NAME tgr33015kgl TYPE POINT STATUS DEFAULT DATA "NH-RM/tgr33015kgl" CLASS NAME "Ket Geo Locns" COLOR 0 200 0 END END # layer ends _________________________________________________________________ Get the best deals. On Electronics, Mobiles, Laptops. Log on to www.baazee.com http://go.msnserver.com/IN/45530.asp From dharanibabus@hotmail.com Thu Apr 1 14:16:02 2004 From: dharanibabus@hotmail.com (Dharani Babu) Date: Thu, 01 Apr 2004 19:46:02 +0530 Subject: [Mapserver-users] Multiple counties in a template file !!! Message-ID: Hi all Could any of you advise me how I could display multiple counties( or a full state) in the same map ?. After displaying them I want to have the same set of operations like zooming in /out/pan as we have with single county maps . With regards and thanks in advance dharani babu s _________________________________________________________________ Apply to 50,000 jobs now. http://go.msnserver.com/IN/45531.asp Post your CV on naukri.com today. From jhart@frw.uva.nl Thu Apr 1 15:29:28 2004 From: jhart@frw.uva.nl (Jan Hartmann) Date: Thu, 01 Apr 2004 17:29:28 +0200 Subject: [Mapserver-users] new site: Historical Atlas of Amsterdam Message-ID: <406C3558.6020203@frw.uva.nl> Hello list, I am happy to announce the preliminary version of the "Historical Atlas of Amsterdam" at: http://mapserver.sara.nl/atlas_amsterdam (SARA is the computing center of the University of Amsterdam) The atlas shows eighteen historical maps of Amsterdam from 1544 to 2003, referenced to the present-day national coordinate system. The scans are very detailed; when you zoom in very deeply, especially on the older maps, you can see how wonderful they are as works of cartography. When you pan around a bit, they really give the impression of flying very low over the city. If you are on a fast connection, you should certainly try this with a maximized map window. The site is meant as a test-bed for the user interface I presented at the MUM. It shows: - A menu based user interface - Movable and resizable map windows with independent zoom and pan for each map - A resizable and zoomable picture window, showing some eighty pictures with their location in the adjacent map window - Transparent overlaying with the base maps from 1832 and 2000 - A zoomable reference map - A street clickable register - Legends for every map that can be turned on and off - A menu based help system It's all very new, both the web-cartography and the user interface, so I don't expect everything to run smoothly at once. Also, in my experience, people need some time to get skilful with the user interface: you can do a lot with it, but it takes some learning. If things don't run as expected, please let me know. Thanks to the Amsterdam Municipal Archive, SARA computing center, and, above all, to all who developed and supported MapServer. Jan From dmorissette@dmsolutions.ca Thu Apr 1 15:32:25 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 10:32:25 -0500 Subject: [Mapserver-users] OGR not found In-Reply-To: <406BB168.1070002@joelman.com> References: <406B965B.9050002@joelman.com> <406BA157.8090708@dmsolutions.ca> <406BB168.1070002@joelman.com> Message-ID: <406C3609.2020106@dmsolutions.ca> Joel Gwynn wrote: > OK. I spoke too soon. When I try to run mapserv, I get the error: > > ./mapserv: error while loading shared libraries: libgdal.so.1: cannot > open share > d object file: No such file or directory > > It appears that I'm using gdal1.2.0b Perhaps I should be able to figure > this out, but it's late. g'night. > You might need to add /usr/local/lib to your runtime library path if you haven't done it yet, see: http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?FindingSharedLibraries Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From dmorissette@dmsolutions.ca Thu Apr 1 15:42:32 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 10:42:32 -0500 Subject: [Mapserver-users] Is it possible to display WMS layers as part of a GIF legend In-Reply-To: <00ac01c41764$0001c160$6c000a0a@sclark> References: <00ac01c41764$0001c160$6c000a0a@sclark> Message-ID: <406C3868.8000103@dmsolutions.ca> Stephen Clark wrote: > For example I have the following layer an I want to add to a raster (png) > legend as per the attached image > > How can I get the color of the raster WMS layer to display in the legend > correctly? > You could try setting KEYIMAGE in your layer to point to a small legend icon that would be used for that layer. I'm not sure when that was added (4.0 or 4.1?) and didn't try it myself, but that should do the trick. Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From stephen.clark@focus.ca Thu Apr 1 16:51:25 2004 From: stephen.clark@focus.ca (Stephen Clark) Date: Thu, 1 Apr 2004 08:51:25 -0800 Subject: [Mapserver-users] Is it possible to display WMS layers as part of a GIF legend References: <00ac01c41764$0001c160$6c000a0a@sclark> <406C3868.8000103@dmsolutions.ca> Message-ID: <004901c41809$91d8e6e0$6c000a0a@sclark> OK that works. But is it possible to get a legend object (raster or vector) from the WMS server directly? stephen ----- Original Message ----- From: "Daniel Morissette" To: "Stephen Clark" Cc: Sent: Thursday, April 01, 2004 7:42 AM Subject: Re: [Mapserver-users] Is it possible to display WMS layers as part of a GIF legend > Stephen Clark wrote: > > For example I have the following layer an I want to add to a raster (png) > > legend as per the attached image > > > > How can I get the color of the raster WMS layer to display in the legend > > correctly? > > > > You could try setting KEYIMAGE in your layer to point to a small legend > icon that would be used for that layer. I'm not sure when that was > added (4.0 or 4.1?) and didn't try it myself, but that should do the trick. > > Daniel > -- > ------------------------------------------------------------ > Daniel Morissette dmorissette@dmsolutions.ca > DM Solutions Group http://www.dmsolutions.ca/ > ------------------------------------------------------------ > > From dmorissette@dmsolutions.ca Thu Apr 1 16:15:34 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 11:15:34 -0500 Subject: [Mapserver-users] Is it possible to display WMS layers as part of a GIF legend In-Reply-To: <004901c41809$91d8e6e0$6c000a0a@sclark> References: <00ac01c41764$0001c160$6c000a0a@sclark> <406C3868.8000103@dmsolutions.ca> <004901c41809$91d8e6e0$6c000a0a@sclark> Message-ID: <406C4026.3030708@dmsolutions.ca> Stephen Clark wrote: > OK that works. > > But is it possible to get a legend object (raster or vector) from the WMS > server directly? > If the WMS server supports SLD then you may be able to use GetLegendGraphic. This is supported in MapServer 4.1 (CVS), e.g. http://www2.dmsolutions.ca/cgi-bin/mswms_gmap_dev?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetLegendGraphic&LAYER=prov_bound&WIDTH=30&HEIGHT=20&FORMAT=image/png Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From dmorissette@dmsolutions.ca Thu Apr 1 16:21:34 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 11:21:34 -0500 Subject: [Mapserver-users] Regarding GetLegendGraphic In-Reply-To: <3FC4483968B5A048BBD9F3387EBFF5C0E3474F@XMAIL1.sooner.net.ou.edu> References: <3FC4483968B5A048BBD9F3387EBFF5C0E3474F@XMAIL1.sooner.net.ou.edu> Message-ID: <406C418E.8020204@dmsolutions.ca> Swaminathan, Gayathri wrote: > In the mapserver bugzilla, > (http://mapserver.gis.umn.edu/bugs/show_bug.cgi?id=262) > > you have mentioned, that the GetLegendGraphic for WMS service is > implemented. Is this implemented in version 4.1? > > If yes, is CVS the 4.1 version of Mapserver? > Yes and yes. Any new developments go by default in the main trunk in CVS which is currently version 4.1 to be released as 4.2 -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From sgillies@frii.com Thu Apr 1 16:33:03 2004 From: sgillies@frii.com (Sean Gillies) Date: Thu, 1 Apr 2004 09:33:03 -0700 Subject: [Mapserver-users] new site: Historical Atlas of Amsterdam In-Reply-To: <406C3558.6020203@frw.uva.nl> References: <406C3558.6020203@frw.uva.nl> Message-ID: <3F4C7058-83FA-11D8-A0D8-000393B98B56@frii.com> Il giorno 01/apr/04, alle 08:29, Jan Hartmann ha scritto: > Hello list, > > I am happy to announce the preliminary version of the > > "Historical Atlas of Amsterdam" > > at: > > http://mapserver.sara.nl/atlas_amsterdam > > Dammit, Jan, I had things to do today ... now it looks I'll be spending all morning touring time and space on your site. :) Bravo, Sean -- Sean Gillies sgillies at frii dot com http://users.frii.com/sgillies From TMitchell@lignum.com Thu Apr 1 16:49:07 2004 From: TMitchell@lignum.com (Tyler Mitchell) Date: Thu, 1 Apr 2004 08:49:07 -0800 Subject: [Mapserver-users] Survey results available Message-ID: For those interested in how the voting on the past few "5 second surveys" turned out, I put links to all the results on the MapServer wiki at: http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?SurveyResults Does anyone know if you can upload graphic files to the wiki? I'd like to put snapshots of the survey result graphics on there if I could. Tyler From TMitchell@lignum.com Thu Apr 1 16:53:04 2004 From: TMitchell@lignum.com (Tyler Mitchell) Date: Thu, 1 Apr 2004 08:53:04 -0800 Subject: [Mapserver-users] Multiple counties in a template file !!! In-Reply-To: Message-ID: I assume you mean you have multiple TIGER files and want to have them appended into one map, right? If you have all the data for multiple counties, then you just add each one as a layer and it will make them work seamlessly together. mapserver-users-admin@lists.gis.umn.edu wrote on 04/01/2004 06:16:02 AM: > Hi all > Could any of you advise me how I could display multiple counties( or a > full state) in the same map ?. After displaying them I want to have the > same set of operations like zooming in /out/pan as we have with single > county maps . > With regards and thanks in advance > dharani babu s > > _________________________________________________________________ > Apply to 50,000 jobs now. http://go.msnserver.com/IN/45531.asp Post your CV > on naukri.com today. > > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users From TMitchell@lignum.com Thu Apr 1 16:54:43 2004 From: TMitchell@lignum.com (Tyler Mitchell) Date: Thu, 1 Apr 2004 08:54:43 -0800 Subject: [Mapserver-users] HOW TO ADD LABELS TO POLYGONS/POINTS ? In-Reply-To: Message-ID: You need to specify a LABELITEM (aka field or column from shape file dbf) in the LAYER definition so that it knows where to grab the text from. Make sense? mapserver-users-admin@lists.gis.umn.edu wrote on 04/01/2004 06:13:12 AM: > Hi all > After much of work TIGER files directly with OGR connection I found that > adding layers is a fun with shp files !! I jus downloaded esri shape files > for couple of counties and its real good. But I am fighting to add labels to > the water polygon and landmark points layers . I have shape files for > /Water Polygons /Landmark Polygons /Land polygons /Geo graphic locations . > But addition of LABEL item to water polygon does nt work and also the > Geographic locations layer is not displayed at all !!! and same way labels > are not added to the land polygons ...This is my map file ...could any of > you help me ?? > > LAYER > GROUP tigerdata > NAME tgr33015wat > TYPE POLYGON > STATUS DEFAULT > DATA "NH-RM/tgr33015wat" > CLASS > NAME "Water Polygons" > COLOR 0 200 0 > LABEL > MINFEATURESIZE 20 > MINDISTANCE 100 > BUFFER 10 > ANGLE auto > POSITION auto > TYPE TRUETYPE > FONT arial > SIZE 8 > COLOR 200 0 0 > OUTLINECOLOR 255 255 255 > ANTIALIAS true > END > END > END # layer ends > LAYER > GROUP tigerdata > NAME tgr33015lpy > TYPE POLYGON > STATUS DEFAULT > DATA "NH-RM/tgr33015lpy" > CLASS > NAME "land Polygons" > COLOR 130 130 130 > END > END # layer ends > > LAYER > GROUP tigerdata > NAME tgr33015kgl > TYPE POINT > STATUS DEFAULT > DATA "NH-RM/tgr33015kgl" > CLASS > NAME "Ket Geo Locns" > COLOR 0 200 0 > END > END # layer ends > > _________________________________________________________________ > Get the best deals. On Electronics, Mobiles, Laptops. Log on to > www.baazee.com http://go.msnserver.com/IN/45530.asp > > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users From lfilak@medinaco.org Thu Apr 1 17:26:55 2004 From: lfilak@medinaco.org (Lowell Filak) Date: Thu, 01 Apr 2004 12:26:55 -0500 Subject: [Mapserver-users] new site: Historical Atlas of Amsterdam Message-ID: <20040401172648.04AC21A659B@mail.medinaco.org> Well done! Lowell The following message was sent by Jan Hartmann on Thu, 01 Apr 2004 17:29:28 +0200. > Hello list, > > I am happy to announce the preliminary version of the > > "Historical Atlas of Amsterdam" > > at: > > http://mapserver.sara.nl/atlas_amsterdam > > > (SARA is the computing center of the University of Amsterdam) > > The atlas shows eighteen historical maps of Amsterdam from 1544 to 2003, > referenced to the present-day national coordinate system. The scans are > very detailed; when you zoom in very deeply, especially on the older > maps, you can see how wonderful they are as works of cartography. When > you pan around a bit, they really give the impression of flying very low > over the city. If you are on a fast connection, you should certainly try > this with a maximized map window. > > The site is meant as a test-bed for the user interface I presented at > the MUM. It shows: > > - A menu based user interface > - Movable and resizable map windows with independent zoom and > pan for each map > - A resizable and zoomable picture window, showing > some eighty pictures with their location in the adjacent map window > - Transparent overlaying with the base maps from 1832 and 2000 > - A zoomable reference map > - A street clickable register > - Legends for every map that can be turned on and off > - A menu based help system > > It's all very new, both the web-cartography and the user interface, so I > don't expect everything to run smoothly at once. Also, in my experience, > people need some time to get skilful with the user interface: you can do > a lot with it, but it takes some learning. If things don't run as > expected, please let me know. > > > Thanks to the Amsterdam Municipal Archive, SARA computing center, and, > above all, to all who developed and supported MapServer. > > > Jan > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users From kueda@wso.williams.edu Thu Apr 1 17:27:26 2004 From: kueda@wso.williams.edu (Ken-ichi) Date: Thu, 01 Apr 2004 09:27:26 -0800 Subject: [Mapserver-users] Questions about PHP/MapScript In-Reply-To: <200404011015.i31AFBEV001135@outmx012.isp.belgacom.be> References: <200404011015.i31AFBEV001135@outmx012.isp.belgacom.be> Message-ID: <406C50FE.4050906@wso.williams.edu> I'm a bit of a MapServer newbie, but I've been playing with allowing users to dl layers as well. I'm not sure if this technique will work in 3.6.6, but here's what I've been doing in 4.0.1. First I add a metadata element containing the file name to the layer. Then I create an HTML legend template and access that piece of metadata in the layer block to create a link to a PHP script, passing along the name of the file. The PHP script then uses the zlib functions to zip up every file in my shapepath that has the name stored in the metadata (ie filename.dbf, .sbn, .sbx, .shp, .shx, etc), drops the zip to the tmp directory, and provides the user with a link. Or you could just have static, pre-zipped versions of all your data and link to them, which would be easier and wouldn't stress out your server as much. I'd provide some code but I just put it together and it's pretty sloppy. Maybe I'll post it here when it's cleaned up. -Ken-ichi PS. I noticed the archive pages for this list don't provide any anti-spam encoding of email addresses (of the form kueda at wso dot blah, or using HTML entities). Can this be enabled? gheysen.t@skynet.be wrote: > Hello, > > I make a work on the use of web mapping in forestry. I have made a > client interface with PHP/MapScript 3.6.6. I have 4 questions about it. > > 1. I want to create a PHP function that export a layer of the current > map in a new shapefile that will be download by the client. How can I > do this ? > > 2. Someone can exply to me the use of the method getShape ? > > 3. In PHP/MapScript 3.6.6. it was possible to make a search (by the > methode queryByAtrributes) on more than one atrribute. Is it still > possible with PHP/MapScript 4.0.1 and the new version of this method ? > > 4. It-is possible to make a query on the results of the precedent > query ? I have try with queryByFeatures() but I have not results : it > draw only the good shapes but I have no results. > > Thanks in advance > > P.S. : Excuse for my bad english > > Gheysen Thibaut > Faculté des Sciences Agronomiques de Gembloux. > gheysen.t@fsagx.ac.be > > > > From sgay@earthsat.com Thu Apr 1 17:35:51 2004 From: sgay@earthsat.com (sgay@earthsat.com) Date: Thu, 1 Apr 2004 12:35:51 -0500 Subject: [Mapserver-users] Issues Installing Mapserver 4.0.1 Message-ID: This is a multi-part message in MIME format. ------=_NextPart_000_0024_01C417E5.DE07A890 Content-Type: multipart/alternative; boundary="----=_NextPart_001_0025_01C417E5.DE092F30" ------=_NextPart_001_0025_01C417E5.DE092F30 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello. I am looking for some help installing Mapserver on my Sun Ultra10 running Solaris 9 with SunONE Webserver 6.1 as our web server of choice. I have compiled PHP version 4.3.4 and have downloaded all of the GNU / 3rd party software necessary to make this work (in theory). I am also using the GNU compiler (version 3.3.2) instead of the Sun compiler. I have been compiling and recompiling, but to no avail. I keep getting stuck on the same error, and have changed/tweaked the PHP config/install many times. The other entries pertaining to this problem appear to be a bit dated, and do not appear to apply to my case. Is there anyone that has had a similar experience with Sun / Solaris and can point me in the right direction? The error below is the one that is causing me all of the headaches. Thanks in advance, Scott cd mapscript/php3; /usr/local/bin/make; cd ../.. make[1]: Entering directory `/home/goshko/MAPSERVER/mapserver-4.0.1/mapscript/php3' gcc -fPIC -O2 -Wall -DCOMPILE_DL=1 -DPHP4 -DUSE_WMS_LYR -DUSE_WFS_SVR -DUSE_WMS_SVR -DUSE_GDAL -DUSE_OGR -DUSE_PROJ -DUSE_P ROJ_API_H -DUSE_EPPL -DUSE_TIFF -DUSE_GD_PNG -DUSE_GD_JPEG -DUSE_GD_WBMP -DUSE_GD_FT -DUSE_JPEG -I/home/goshko/MAPSERVER/mapserve r-4.0.1 -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/home/goshko/MAPSERVER/php- 4.3.4 -I/home/goshko/MAPSERVER/php-4.3.4/dl -I/home/goshko/MAPSERVER/php-4.3.4/main -I/home/goshko/MAPSERVER/php-4.3.4/Zend -I/home/ goshko/MAPSERVER/php-4.3.4/include -I/home/goshko/MAPSERVER/php-4.3.4/TSRM -c -o php_mapscript_util.o php_mapscript_util.c php_mapscript_util.c: In function `_phpms_fetch_handle2': php_mapscript_util.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_fetch_property_handle2': php_mapscript_util.c:199: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_fetch_property_string': php_mapscript_util.c:246: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_fetch_property_long': php_mapscript_util.c:272: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_fetch_property_double': php_mapscript_util.c:305: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_fetch_property_resource': php_mapscript_util.c:331: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_set_property_string': php_mapscript_util.c:367: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_set_property_long': php_mapscript_util.c:396: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_set_property_double': php_mapscript_util.c:425: warning: dereferencing type-punned pointer will break strict-aliasing rules php_mapscript_util.c: In function `_phpms_object_init': php_mapscript_util.c:476: error: `tsrm_ls' undeclared (first use in this function) php_mapscript_util.c:476: error: (Each undeclared identifier is reported only once php_mapscript_util.c:476: error: for each function it appears in.) php_mapscript_util.c: In function `_php_extract_associative_array': php_mapscript_util.c:511: warning: dereferencing type-punned pointer will break strict-aliasing rules make[1]: *** [php_mapscript_util.o] Error 1 make[1]: Leaving directory `/home/goshko/MAPSERVER/mapserver-4.0.1/mapscript/php3' Scott Gay (sgay@earthsat.com), CCNP Unix Systems / Network Administrator Earth Satellite Corporation Phone: (240)833-8218 Fax: (240)833-8201 ------=_NextPart_001_0025_01C417E5.DE092F30 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello. I am=20 looking for some help installing Mapserver on my Sun Ultra10 running = Solaris 9=20 with SunONE Webserver 6.1 as our web server of choice. I have compiled = PHP=20 version 4.3.4 and have downloaded all of the GNU / 3rd party software = necessary=20 to make this work (in theory). I am also using the GNU compiler (version = 3.3.2)=20 instead of the Sun compiler. I have been compiling and recompiling, but = to no=20 avail. I keep getting stuck on the same error, and have changed/tweaked = the PHP=20 config/install many times. The other entries pertaining to this problem = appear=20 to be a bit dated, and do not appear to apply to my case. Is there=20 anyone that has had a similar experience with Sun / Solaris = and can=20 point me in the right direction? The error below is the one that is = causing me=20 all of the headaches. 
 
Thanks in=20 advance,
Scott 
 
cd mapscript/php3; = /usr/local/bin/make; cd=20 ../..
make[1]: Entering directory=20 `/home/goshko/MAPSERVER/mapserver-4.0.1/mapscript/php3'
gcc -fPIC = -O2 =20 -Wall -DCOMPILE_DL=3D1 -DPHP4 -DUSE_WMS_LYR  -DUSE_WFS_SVR=20 -DUSE_WMS_SVR     -DUSE_GDAL = -DUSE_OGR   =20 -DUSE_PROJ -DUSE_PROJ_API_H -DUSE_EPPL -DUSE_TIFF   = -DUSE_GD_PNG=20 -DUSE_GD_JPEG -DUSE_GD_WBMP -DUSE_GD_FT -DUSE_JPEG =20 -I/home/goshko/MAPSERVER/mapserver-4.0.1=20 -I/usr/local/include     -I/usr/local/include=20 -I/usr/local/include     =20 -I/usr/local/include   -I/home/goshko/MAPSERVER/php-4.3.4=20 -I/home/goshko/MAPSERVER/php-4.3.4/dl = -I/home/goshko/MAPSERVER/php-4.3.4/main=20 -I/home/goshko/MAPSERVER/php-4.3.4/Zend=20 -I/home/goshko/MAPSERVER/php-4.3.4/include=20 -I/home/goshko/MAPSERVER/php-4.3.4/TSRM  -c -o php_mapscript_util.o = php_mapscript_util.c
php_mapscript_util.c: In function=20 `_phpms_fetch_handle2':
php_mapscript_util.c:147: warning: = dereferencing=20 type-punned pointer will break strict-aliasing = rules
php_mapscript_util.c: In=20 function `_phpms_fetch_property_handle2':
php_mapscript_util.c:199: = warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_fetch_property_string':
php_mapscript_util.c:246: warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_fetch_property_long':
php_mapscript_util.c:272: warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_fetch_property_double':
php_mapscript_util.c:305: warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_fetch_property_resource':
php_mapscript_util.c:331: warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_set_property_string':
php_mapscript_util.c:367: warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_set_property_long':
php_mapscript_util.c:396: warning: = dereferencing=20 type-punned pointer will break strict-aliasing = rules
php_mapscript_util.c: In=20 function `_phpms_set_property_double':
php_mapscript_util.c:425: = warning:=20 dereferencing type-punned pointer will break strict-aliasing=20 rules
php_mapscript_util.c: In function=20 `_phpms_object_init':
php_mapscript_util.c:476: error: `tsrm_ls' = undeclared=20 (first use in this function)
php_mapscript_util.c:476: error: (Each=20 undeclared identifier is reported only once
php_mapscript_util.c:476: = error:=20 for each function it appears in.)
php_mapscript_util.c: In function=20 `_php_extract_associative_array':
php_mapscript_util.c:511: warning:=20 dereferencing type-punned pointer will break strict-aliasing = rules
make[1]:=20 *** [php_mapscript_util.o] Error 1
make[1]: Leaving directory=20 `/home/goshko/MAPSERVER/mapserver-4.0.1/mapscript/php3'

Scott Gay (sgay@earthsat.com), CCNP =
Unix=20 Systems / Network Administrator
Earth=20 Satellite Corporation
Phone: (240)833-8218
Fax:     = (240)833-8201

 
------=_NextPart_001_0025_01C417E5.DE092F30-- ------=_NextPart_000_0024_01C417E5.DE07A890 Content-Type: image/gif; name="image002.gif" Content-Transfer-Encoding: base64 Content-ID: <362082117@01042004-05a6> R0lGODlhcABtAHcAMSH/C01TT0ZGSUNFOS4wDQAAAAFzUkdCAK7OHOkAIf8LTVNPRkZJQ0U5LjAX AAAAC21zT1BNU09GRklDRTkuMEI8pPUAIf8LTVNPRkZJQ0U5LjAVAAAACXBIWXMAAA7EAAAOwwHa apjcACwAAAAAcABtAIf///////f//+/v9733/97v/73n97Xe763v/8bn9733/+fv/87n/73e97XW 763v/9be/63n/8be973e/7X3/+/v/97W97XO96XW/7XO963G76Xe/8bO/63G96W975y155TG763G /6XO/7XG962976XG/62175yt55S9/6W195yt75Sl54yt95RapUJSnDml94yt75yl55S196W1/6Wt 95yl75Sc54yU3oRSnEKt/5yl95Sc74yl/5SU54Sc94yU74RSpUJKnDmc/4yU3oyl95yc75Sc95SM 3oSU74yM54SE3nt71nOE53tzzmtrxmNarVJjvVpatVJSpUpSrUpKnEJKpUJClDk5hDGc/5SU94yM 74SU/4x73nOE73t753OE93trzmNz3mt793Nz52tr3mNavVJjzlpz92tj1lpaxlJStUpa1lJKrUJK tUKM3oyE1oSE3oR71nuE54RzznOE74SM/4xrxmtz1nN753uE94Rrzmtz3nOE/4R773tjxmNr1mtz 53N793tjzmNr3mtz73NavVpz93Nj1mNr52taxlpStVJz/3NKpUpj3mNr72tSvVJazlpKrUpj52Na 1lo5jDlKtUpa3lpCpUJSzlJKvUo5lDlCrUIxhDFKxko5nDlCtUIpcykxjDE5pTkpeykxlDEphClz 1ntStVpKtVJCpUpCrUqM3pSE3ox71oRzzns5lEI5nEIxjDkpezGE3pRjxnN73pzv9//e5//W3v/O 1v/Gzv+9xv+1vf+ttf+lrf+UnP+EjP97hP9ze/9KUv8xOf/39//n5//W1v/Ozv+9vf+trf+lpf+c nP+UlP+MjP+EhP97e/9zc/9ra/9jY/9aWv9SUv9KSv9CQv85Of8xMf8pKe8pKfcpKf8hIdYhId4h IechIe8YGM4YGNYQEK0QELUQEL0QEMYICJQICJwICKUAAHsAAIQAAIwAAJRza/9rY/9jWv9aUv9S Sv9KQv9COf85Mf8xKf8hGNYQCKWEe/8IAIS1rf+tpf+lnP85MYQAAAAI/wABCBxIsKDBgwgTKlzI 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 ------=_NextPart_000_0024_01C417E5.DE07A890-- From sgillies@frii.com Thu Apr 1 17:38:24 2004 From: sgillies@frii.com (Sean Gillies) Date: Thu, 1 Apr 2004 10:38:24 -0700 Subject: [Mapserver-users] placing text along an arbitrary path In-Reply-To: <406B7052.8080406@telogis.com> References: <402B5F6F.8020509@atlas.gis.univie.ac.at> <406B7052.8080406@telogis.com> Message-ID: <608D5A84-8403-11D8-A0D8-000393B98B56@frii.com> David, Alexander: As far as I know developers are at work on their own priorities, mainly OGC stuff, thread safety, better tile indexing. Performance and stability features that they need for their own projects. Cosmetic features like splined labels are going to be lower priority. That said, priority of any feature can be increased if you provide an incentive. Hire someone to do the work, trade some services, give them free beer, fly them to Jackson WY for a week-long all expenses paid skiing and coding sprint. Something like that. :) BTW, I searched Bugzilla for "label curve" and "label spline" and found no feature enhancement requests. That would be a start. cheers, Sean Il giorno 31/mar/04, alle 18:28, David Mitchell ha scritto: > I'd also be interested in this. Could the developers please comment on > this idea? > > Cheers > David > > Alexander Pucher wrote: >> I've asked this already about a year ago and I'm wondering, if there >> is any effort/news about this subject? >> Is there a way to label lines not only horizontal or by a given >> angle, but along a path. In a PostScript book I have, they call this >> method "placing text along an arbitrary path". >> Consider labeling roads or even rivers that curve a lot. > -- > David Mitchell > Software Engineer > Telogis > > NOTICE: > This message (including any attachments) contains CONFIDENTIAL > INFORMATION intended for a specific individual and purpose, and > is protected by law. If you are not the intended recipient, > you should delete this message and are hereby notified that any > disclosure, copying, or distribution of this message, or the > taking of any action based on it, is strictly prohibited. > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users > > -- Sean Gillies sgillies at frii dot com http://users.frii.com/sgillies From dmorissette@dmsolutions.ca Thu Apr 1 18:07:21 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 13:07:21 -0500 Subject: [Mapserver-users] Issues Installing Mapserver 4.0.1 In-Reply-To: References: Message-ID: <406C5A59.4040303@dmsolutions.ca> sgay@earthsat.com wrote: > php_mapscript_util.c: In function `_phpms_object_init': > php_mapscript_util.c:476: error: `tsrm_ls' undeclared (first use in this > function) > php_mapscript_util.c:476: error: (Each undeclared identifier is reported > only once > php_mapscript_util.c:476: error: for each function it appears in.) I don't remember seeing this error in a release build, but it probably relates to Zend's thread-safety stuff which would suggest that your PHP is not compiled as a CGI. This is just a guess, I could be wrong, but you could try making sure that your PHP is compiled as a CGI and not as a module Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From dmorissette@dmsolutions.ca Thu Apr 1 18:17:35 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 13:17:35 -0500 Subject: [Mapserver-users] placing text along an arbitrary path In-Reply-To: <406B7052.8080406@telogis.com> References: <402B5F6F.8020509@atlas.gis.univie.ac.at> <406B7052.8080406@telogis.com> Message-ID: <406C5CBF.3000301@dmsolutions.ca> David Mitchell wrote: > I'd also be interested in this. Could the developers please comment on > this idea? > > Cheers > David > > Alexander Pucher wrote: > >> I've asked this already about a year ago and I'm wondering, if there >> is any effort/news about this subject? >> >> Is there a way to label lines not only horizontal or by a given angle, >> but along a path. In a PostScript book I have, they call this method >> "placing text along an arbitrary path". >> Consider labeling roads or even rivers that curve a lot. That would be a very interesting feature, but I'm not aware of anyone working on that at the moment. There's the maptext.com guys that have talked about integrating their software as an extension to MapServer for improved labelling, but that wouldn't be free. Daniel -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From dmorissette@dmsolutions.ca Thu Apr 1 18:36:32 2004 From: dmorissette@dmsolutions.ca (Daniel Morissette) Date: Thu, 01 Apr 2004 13:36:32 -0500 Subject: [Mapserver-users] WFS / curl error code 7 (couldn't create socket) In-Reply-To: References: Message-ID: <406C6130.9070101@dmsolutions.ca> fheland@netcourrier.com wrote: > Hi all, I get an error using WFS using mapserver41 : > msDrawMap(): Image handling error. Failed to draw layer named 'IOWStations'. > msWFSLayerWhichShapes(): WFS connection error. Got HTTP status -7 downloading WFS layer IOWStations > msHTTPExecuteRequests(): HTTP request error. HTTP: request failed with curl error code 7 (couldn't create socket) for http://192.168.1.114/agentstruts/cgi-bin/mapserv_41.exe?map=d:/Tomcat4.1/webapps/agentstruts/mapservice/data/iow/htdocs/iow-wfs.map& > > The GetFeature request works well : > http://192.168.1.114/agentstruts/cgi-bin/mapserv_41.exe?map=d:/Tomcat4.1/webapps/agentstruts/mapservice/data/iow/htdocs/iow-wfs.map&REQUEST=GETFeature&SERVICE=WFS&VERSION=1.0.0 > I assume you mean that the GetFeature request works well whne tested in a web browser? Could it be that there is a firewall between your client app and your WFS server? That could explain why your browser can connect but your MapServer can't. -- ------------------------------------------------------------ Daniel Morissette dmorissette@dmsolutions.ca DM Solutions Group http://www.dmsolutions.ca/ ------------------------------------------------------------ From murilo.yoshida@agx.com.br Thu Apr 1 19:11:23 2004 From: murilo.yoshida@agx.com.br (Murilo Lacerda Yoshida) Date: Thu, 1 Apr 2004 16:11:23 -0300 Subject: RES: [Mapserver-users] Shapefile question In-Reply-To: <200404011254.47148.mweinelt@planiglobe.com> Message-ID: <000001c4181d$25ba48a0$1364a8c0@parapente> Martin, To create the shapefile I want to create, with a path in it, and using ms_shp_arc, I have to define a line with my whole path and then add it to the shapefile? I don't know if you understood what I'm trying to ask. If I have to draw the path of one man, one man only, I will have only one shape in the shapefile? Thanks for the help, Murilo -----Mensagem original----- De: Martin Weinelt [mailto:mweinelt@planiglobe.com] Enviada em: quinta-feira, 1 de abril de 2004 07:55 Para: murilo.yoshida@agx.com.br Cc: Murilo Lacerda Yoshida Assunto: Re: [Mapserver-users] Shapefile question On Wednesday 31 March 2004 22:12, Murilo Lacerda Yoshida wrote: > Hi all, > I need to create a map that represents the path that someone walked. > For example, a guy started walking at 9:00 am at his house, and stopped > walking at 11:00 am at his office. During this time he walked, he was > using a gps device that was monitoring the points he passed trough. > So I need to create this map. Question is what type of shapefile I > need to create to store this data. I guess it should be MS_SHP_ARC, but > I'm not sure. Until now I have used only MS_SHP_POLYGON shapes, and it > would be nice if I could still use this kind of shape. And if I continue > using MS_SHP_POLYGON shapes to draw the path the guy walked, will the > map show all the corners, turns and other small elements of the path > that are important? > I am using PHP/MapScript. > Thanks in advance, > Murilo Murilo, yes you would want to create a shapefile of the type 'MS_SHP_ARC', or with a more generic term, a polyline shapefile. Frank Warmerdams shapelib comes with utility programs that let you generate such a file and add data. If you feel like you can also use the perl bindings to shapelib provided by Ari Jolma. I can imagine to represent the path by a polygon but that would be a bit rough and do not see why you would want to. The details visualized are only dependent on your input data and the resolution/scale of you map. Cheers, Martin From woodbri@swoodbridge.com Thu Apr 1 19:51:59 2004 From: woodbri@swoodbridge.com (woodbri@swoodbridge.com) Date: Thu, 01 Apr 2004 14:51:59 -0500 Subject: [Mapserver-users] Multiple counties in a template file !!! In-Reply-To: References: Message-ID: <406C2C8F.2564.10A995ED@localhost> But if you have all the data in the US it is 3300 counties plus or minus and you probably don't want 3300 layers for each attribute. What you want to do is use a tileindex. This will allow you to treat all roads files in all 3300 counties as a single layer. -Steve W. On 1 Apr 2004 at 8:53, Tyler Mitchell wrote: > I assume you mean you have multiple TIGER files and want to have them > appended into one map, right? > If you have all the data for multiple counties, then you just add each one > as a layer and it will make them work seamlessly together. > > mapserver-users-admin@lists.gis.umn.edu wrote on 04/01/2004 06:16:02 AM: > > > Hi all > > Could any of you advise me how I could display multiple counties( or > a > > full state) in the same map ?. After displaying them I want to have the > > > same set of operations like zooming in /out/pan as we have with single > > county maps . > > With regards and thanks in advance > > dharani babu s > > > > _________________________________________________________________ > > Apply to 50,000 jobs now. http://go.msnserver.com/IN/45531.asp Post your > CV > > on naukri.com today. > > > > _______________________________________________ > > Mapserver-users mailing list > > Mapserver-users@lists.gis.umn.edu > > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users > > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users > From TMitchell@lignum.com Thu Apr 1 20:01:46 2004 From: TMitchell@lignum.com (Tyler Mitchell) Date: Thu, 1 Apr 2004 12:01:46 -0800 Subject: [Mapserver-users] Multiple counties in a template file !!! In-Reply-To: <406C2C8F.2564.10A995ED@localhost> Message-ID: > But if you have all the data in the US it is 3300 counties plus or > minus and you probably don't want 3300 layers for each attribute. > What you want to do is use a tileindex. This will allow you to treat > all roads files in all 3300 counties as a single layer. Good point, I often forget that option. I'm assuming Dharani is using TIGER data, so any tips on tiling tiger data would probably be appreciated, he is unfamiliar with the indexing tools. Tyler From scoota@supanet.com Thu Apr 1 20:12:02 2004 From: scoota@supanet.com (Keith Campbell) Date: Thu, 01 Apr 2004 21:12:02 +0100 Subject: [Mapserver-users] Really Strange Behaviour - WFS & PostGIS Message-ID: <406C7792.80604@supanet.com> Hi, Is there any reason why a WFS MapServer would return the GML for only one feature in one layer of a mapfile based on PostGIS datasources, but return all features for all requested layers in a Shape based mapfile? The geometries for both types of datasources are the same and so are the GetFeature requests. And just to make it more puzzling, if the data is returned as an image (i.e. standard MapServer, no WFS), all the features are returned for both layers for both mapfiles. Any suggestions welcome. Keith From Litea@sopac.org Thu Apr 1 21:16:21 2004 From: Litea@sopac.org (Litea Biukoto) Date: Fri, 2 Apr 2004 09:16:21 +1200 Subject: [Mapserver-users] Link Message-ID: Bula I'm trying to find a way to link a map object to a(n image) file or url. I'd be glad for any workarounds. Thought that I could get away with having a LINK attribute in my table/file then accessing the link through the query function. This does not appear to work, all you see are the other attributes and path but no active link. Any ideas? TIA Litea ---------------------------------------------------------------------------- ------- Litea Biukoto SOPAC South Pacific Applied Geoscience Commission Postal Address: Private Mail Bag, GPO, Suva, Fiji Islands Street Address: Mead Road, Nabua, Fiji Islands Tel: +679 338-1377 Fax: +679 337-0040 E-mail: litea@sopac.org Web site: http://www.sopac.org.fj/ , http://map.sopac.org/ Note that the gateway to our mail server limits the size of inward and outward messages with attachments to 1.5MB. If you need to send or receive larger messages apply compression, convert to PDF files or logically split. This e-mail is intended for its named recipients only. The author is no longer responsible if you forward this e-mail to other parties. The views expressed in this e-mail may not necessarily be the views of SOPAC. From scoota@supanet.com Thu Apr 1 22:52:37 2004 From: scoota@supanet.com (Keith Campbell) Date: Thu, 01 Apr 2004 23:52:37 +0100 Subject: [Fwd: Re: [Mapserver-users] connection string] Message-ID: <406C9D35.9030203@supanet.com> -------- Original Message -------- Subject: Re: [Mapserver-users] connection string Date: Thu, 01 Apr 2004 20:56:58 +0100 From: Keith Campbell Reply-To: scoota@supanet.com To: Johan Duflost References: <002c01c417cb$2ac01d90$0200000a@orion> Johan, Could be that the host you are on, i.e. your windows box with MapServer, is not included in the pg_hba.conf file on the Postgres server you are trying to connect to. The pg_hba.conf file controls authentication to postgres. Your user name will also need to be included in it, either specifically, through a group, or by allowing all users access. Hope this helps, Keith Johan Duflost wrote: > > Hi all, > > I installed mapserver in tomcat under windows and I need to connect to > a postgis db on another host but the following error message is returned : > > msPOSTGISLayerOpen(): Query error. couldnt make connection to DB with > connect string 'user=pgmap password=pgmap dbname=gis host=canis > port=5432'. > Error reported was 'unknown host name: canis '. > This error occured when trying to make a connection to the specified > postgresql server. > Most commonly this is caused by > (1) incorrect connection string > (2) you didnt specify a 'user=...' in your connection string > (3) the postmaster (postgresql server) isnt running > (4) you are not allowing TCP/IP connection to the postmaster > (5) your postmaster is not running on the correct port - if its not on > 5432 you must specify a 'port=...' > (6) the security on your system does not allow the webserver (usually > user 'nobody') to make socket connections to the postmaster > (7) you forgot to specify a 'host=...' if the postmaster is on a > different machine > (8) you made a typo > > I checked all these possibilities but all of them seem to be right. Is > this a bug of mapserver on windows ? > > Does anybody have an idea ? > > Thanks in advance, > > Johan Duflost > > Johan Duflost > Analyst Programmer > Belgian Biodiversity Information Facility (BeBIF) > Universite Libre de Bruxelles (ULB) > Boulevard du Triomphe - campus de la plaine > B-1050 Bruxelles > http://gis.bebif.be From nacional@cbs.umn.edu Thu Apr 1 23:29:53 2004 From: nacional@cbs.umn.edu (Pericles Nacionales) Date: Thu, 1 Apr 2004 17:29:53 -0600 (CST) Subject: [Mapserver-users] Link In-Reply-To: References: Message-ID: It should work... if I understand what you're doing. do something like this in your query template: [your_link_attribute] or [some_other_descriptive_attribute] Is that what you're trying to do? It should work if you have your image/file in the right directory (and that directory is web accessible with read privilege). Cheers! -Perry N. On Fri, 2 Apr 2004, Litea Biukoto wrote: > Bula > > I'm trying to find a way to link a map object to a(n image) file or url. > I'd be glad for any workarounds. Thought that I could get away with having > a LINK attribute in my table/file then accessing the link through the query > function. This does not appear to work, all you see are the other > attributes and path but no active link. > > Any ideas? > > TIA > > Litea > > > ---------------------------------------------------------------------------- > ------- > > Litea Biukoto > SOPAC South Pacific Applied Geoscience Commission > Postal Address: Private Mail Bag, GPO, Suva, Fiji Islands > Street Address: Mead Road, Nabua, Fiji Islands > Tel: +679 338-1377 Fax: +679 337-0040 > E-mail: litea@sopac.org > Web site: http://www.sopac.org.fj/ , > http://map.sopac.org/ > > Note that the gateway to our mail server limits the size of inward and > outward messages with attachments to 1.5MB. If you need to send or receive > larger messages apply compression, convert to PDF files or logically split. > > This e-mail is intended for its named recipients only. The author is no > longer responsible if you forward this e-mail to other parties. The views > expressed in this e-mail may not necessarily be the views of SOPAC. > > _______________________________________________ > Mapserver-users mailing list > Mapserver-users@lists.gis.umn.edu > http://lists.gis.umn.edu/mailman/listinfo/mapserver-users > From JWiley@city.parksville.bc.ca Thu Apr 1 23:59:40 2004 From: JWiley@city.parksville.bc.ca (John Wiley) Date: Thu, 01 Apr 2004 15:59:40 -0800 Subject: [Mapserver-users] Upgrade to 4.0.1 query problem Message-ID: This is a MIME message. If you are reading this text, you may want to consider changing to a mail reader or gateway that understands how to properly handle MIME multipart messages. --=_F9D8D810.C5A4CB77 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable I upgraded from 3.6 to 4.0.1 and can not query on lines or points just = polygon objects return result from the templates. Can someone point me in = the right direction... I've included a piece of my map file... for layer = Ppoints... Please help =20 # # Start of map file # NAME Pville STATUS ON SIZE 600 600 EXTENT 401500 5461000 410000 5466600 UNITS METERS FONTSET "C:\Inetpub\wwwroot\Parksville\fonts\fonts.list" SHAPEPATH "data" IMAGECOLOR 255 255 255 =20 # you may need to change this to match your MapServer build #IMAGETYPE PNG =20 # # Projection definition, consult the PROJ.4 documentation for parameter = discussion # #PROJECTION # "proj=3Dutm" # "ellps=3DGRS80" # "zone=3D15" # "north" # "no_defs" # # OR:=20 # # "init=3Depsg:26915" #END =20 # # Start of web interface definition (including WMS enabling metadata) # WEB HEADER Pville_header.html TEMPLATE Pville.html FOOTER Pville_footer.html MINSCALE 1000 MAXSCALE 155000 IMAGEPATH "set in Pville_init.html" IMAGEURL "set in Pville_init.html" METADATA WMS_TITLE "UMN MapServer Parksville BC" WMS_ABSTRACT "This is the UMN MapServer application for the City of = Parksville located on Vancouver Island." WMS_ACCESSCONSTRAINTS none =20 # change this value to match your setup WMS_ONLINERESOURCE "http://localhost/Parksville/Pville_init.html" =20 WMS_SRS "EPSG:26915" END END =20 QUERYMAP SIZE 200 200 STATUS ON STYLE HILITE COLOR 255 0 0 END =20 # # Start of reference map # REFERENCE IMAGE graphics/reference.gif EXTENT 401500 5461000 410000 5466600 SIZE 120 120 STATUS ON COLOR -1 -1 -1 OUTLINECOLOR 255 0 0 END =20 # # Start of legend # LEGEND KEYSIZE 12 12 LABEL TYPE BITMAP SIZE MEDIUM COLOR 0 0 89 END STATUS ON END =20 # # Start of scalebar # SCALEBAR IMAGECOLOR 255 255 255 LABEL COLOR 0 0 0 SIZE tiny =20 END STYLE 1 SIZE 80 2 COLOR 0 0 0 UNITS METERS INTERVALS 1 TRANSPARENT FALSE STATUS EMBED POSITION LR END =20 # # Start of symbol definitions (we're only using a few) # SYMBOL NAME 'circle' TYPE ELLIPSE POINTS 1 1 END FILLED TRUE END =20 # Rem March9,04 # Start of layer definitions # LAYER NAME Ptest TYPE RASTER STATUS OFF DATA test01.tif PROCESSING "BANDS=3D1,2,3" OFFSITE 71 74 65 END #LAYER =20 =20 LAYER NAME Pparks TYPE POLYGON STATUS OFF DATA Pparks LABELITEM "NAME" LABELMAXSCALE 5000 CLASS NAME Parks COLOR 40 195 48 TEMPLATE "Parks.html" LABEL MINFEATURESIZE 40 MINDISTANCE 100 BUFFER 10 ANGLE AUTO POSITION AUTO SIZE MEDIUM COLOR 0 0 0 =20 END #LABEL =20 END #CLASS =20 HEADER "Parks_header.html" FOOTER "Parks_footer.html" =20 END #LAYER =20 LAYER NAME Pwatercourse TYPE LINE STATUS OFF DATA Pwatercourse CLASS NAME Watercourse COLOR 49 117 185 END #CLASS=20 END #LAYER =20 LAYER NAME Pwatflow TYPE POLYGON STATUS DEFAULT DATA Pwatflow CLASS NAME Pwatflow COLOR 49 37 185 END #CLASS =20 END #LAYER =20 LAYER NAME Ppoints TYPE POINT DATA Ppoints STATUS DEFAULT LABELITEM "NAME" LABELMAXSCALE 2000 CLASS NAME 'Places' TEMPLATE "\Points.html" STYLE COLOR 128 255 164 SYMBOL 'circle' SIZE 7 END #STYLE LABEL MINFEATURESIZE 10 MINDISTANCE 20 BUFFER 5 ANGLE AUTO POSITION AUTO SIZE SMALL COLOR 128 255 164 END #LABEL END #CLASS HEADER "Points_header.html" FOOTER "Points_footer.html" =20 END #LAYER ... and on to the end... --=_F9D8D810.C5A4CB77 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Description: HTML
I upgraded from 3.6 to 4.0.1 and can not query on = lines or=20 points just polygon objects return result from the templates.  Can = someone=20 point me in the right direction... I've included a piece of my map file... = for=20 layer Ppoints... Please help
 
#
# Start of map file
#
NAME Pville
STATUS ON
SIZE = 600=20 600
EXTENT 401500 5461000 410000 5466600
UNITS METERS
FONTSET=20 "C:\Inetpub\wwwroot\Parksville\fonts\fonts.list"
SHAPEPATH=20 "data"
IMAGECOLOR 255 255 255
 
# you may need to change this to match your MapServer build
#IMAGET= YPE=20 PNG
 
#
# Projection definition, consult the PROJ.4 documentation for=20 parameter discussion
#
#PROJECTION
#  "proj=3Dutm"
# = =20 "ellps=3DGRS80"
#  "zone=3D15"
#  "north"
# =20 "no_defs"
#
#  OR:
#
#  "init=3Depsg:26915"
#END<= /DIV>
 
#
# Start of web interface definition (including WMS enabling=20 metadata)
#
WEB
  HEADER Pville_header.html
  = TEMPLATE=20 Pville.html
  FOOTER Pville_footer.html
  MINSCALE=20 1000
  MAXSCALE 155000
  IMAGEPATH "set in=20 Pville_init.html"
  IMAGEURL "set in Pville_init.html"
 =20= METADATA
    WMS_TITLE "UMN MapServer Parksville=20 BC"
    WMS_ABSTRACT "This is the UMN MapServer = application=20 for the City of Parksville located on Vancouver Island."
  &nb= sp;=20 WMS_ACCESSCONSTRAINTS none
 
    # change this value to match your=20 setup
    WMS_ONLINERESOURCE "http://localhost/Park= sville/Pville_init.html"
 
    WMS_SRS "EPSG:26915"
  END
END
 
QUERYMAP
  SIZE 200 200
  STATUS ON
  = STYLE=20 HILITE
  COLOR 255 0 0
END
 
#
# Start of reference map
#
REFERENCE
  IMAGE=20 graphics/reference.gif
  EXTENT 401500 5461000 410000 5466600
&n= bsp;=20 SIZE 120 120
  STATUS ON
  COLOR -1 -1 -1
  = OUTLINECOLOR=20 255 0 0
END
 
#
# Start of legend
#
LEGEND
  KEYSIZE 12 12
 = ;=20 LABEL
    TYPE BITMAP
    SIZE=20 MEDIUM
    COLOR 0 0 89
  END
  = STATUS=20 ON
END
 
#
# Start of scalebar
#
SCALEBAR
  IMAGECOLOR 255 = 255=20 255
  LABEL
    COLOR 0 0 0
   = SIZE=20 tiny   
  END
  STYLE 1
  SIZE = 80=20 2
  COLOR 0 0 0
  UNITS METERS
  INTERVALS = 1
 =20 TRANSPARENT FALSE
  STATUS EMBED
  POSITION LR
END
=
 
#
# Start of symbol definitions (we're only using a=20 few)
#
SYMBOL
  NAME 'circle'
  TYPE ELLIPSE
 = ;=20 POINTS 1 1 END
  FILLED TRUE
END
 
# Rem March9,04
# Start of layer definitions
#
LAYER
 = ;=20 NAME Ptest
  TYPE RASTER
  STATUS OFF
  DATA=20 test01.tif
  PROCESSING "BANDS=3D1,2,3"
  OFFSITE 71 74 = 65
END=20 #LAYER 
 
LAYER
   NAME Pparks
 &nbs= p;=20 TYPE POLYGON
   STATUS OFF
   DATA=20 Pparks
   LABELITEM "NAME"
   LABELMAXSCALE=20 5000
   CLASS
     NAME=20 Parks
     COLOR 40 195 48
   &nbs= p;=20 TEMPLATE "Parks.html"
    =20 LABEL
       MINFEATURESIZE=20 40
       MINDISTANCE=20 100
       BUFFER=20 10
       ANGLE=20 AUTO
       POSITION=20 AUTO
       SIZE=20 MEDIUM
       COLOR 0 0=20 0        
   &nb= sp;=20 END #LABEL     
   END #CLASS = =20
   HEADER "Parks_header.html"
   FOOTER=20 "Parks_footer.html"  
END #LAYER
 
LAYER
  NAME Pwatercourse
  TYPE LINE
  = STATUS=20 OFF
  DATA Pwatercourse
  CLASS
    = NAME=20 Watercourse
    COLOR 49 117 185
  END #CLASS =
END=20 #LAYER
 

LAYER
  NAME Pwatflow
  TYPE POLYGON
  = STATUS=20 DEFAULT
  DATA Pwatflow
  CLASS
    = NAME=20 Pwatflow
    COLOR 49 37 185
  END #CLASS = =20
END #LAYER
 

LAYER
  NAME Ppoints
  TYPE POINT
  = DATA=20 Ppoints
  STATUS DEFAULT
  LABELITEM "NAME"
 =20 LABELMAXSCALE 2000
  CLASS
    NAME=20 'Places'
    TEMPLATE "\Points.html"
   = ;=20 STYLE
      COLOR 128 255=20 164
      SYMBOL=20 'circle'
      SIZE 7
    = END=20 #STYLE
    LABEL
     =20 MINFEATURESIZE 10
      MINDISTANCE=20 20
      BUFFER 5
    &n= bsp;=20 ANGLE AUTO
      POSITION=20 AUTO
      SIZE=20 SMALL
      COLOR 128 255 164
  &n= bsp;=20 END #LABEL
  END #CLASS
  HEADER "Points_header.html"
&n= bsp;=20 FOOTER "Points_footer.html" 
END #LAYER
... and on to the=20 end...
--=_F9D8D810.C5A4CB77-- From gis@balkanu.com.au Fri Apr 2 00:55:16 2004 From: gis@balkanu.com.au (Balkanu GIS) Date: Fri, 2 Apr 2004 10:55:16 +1000 Subject: [Mapserver-users] TIF displays in grayscale Message-ID: <000001c4184d$2b7b0f10$566b110a@cydn.net.au> Hi all, I'm using MapLab 2.1rc3 with MapServer 4.x (as part of ms4w) on Windows 2000, SP4. I've successfully created a WLD file to display a TIF raster file (yay!) - however when the raster is displayed the entire map (not only the raster, but all other layers as well) is rendered in grayscale. I notice in the MapLab documentation it says that MapServer's built-in support for TIF does not include support for "tiled, 16bit, RGB, or odd color models". Could this be why it is not displaying in colour? When I converted the image from JPG (which it was originally) to TIF, I saved it from PhotoShop in 8-bit CMYK. I don't know what constitutes an 'odd colour model'. Is there perhaps a Style Object I need to include? The Class Object is essentially empty, as you can see in the relevant mapfile snippet below. I'm afraid I'm still not terribly clued up on the application of Classes to other Objects. ----- LAYER NAME "250k raster" GROUP "Raster - topographic" STATUS ON DATA "../../../../Documents and Settings/All Users/Data/Tables (MI)/Rasters/Topo_250k/Sd5513.tif" TYPE RASTER UNITS DD SIZEUNITS PIXELS CLASS NAME "Cooktown" MAXSCALE 500000 END ----- Thanks for any suggestions Yuri Banens From gis@balkanu.com.au Fri Apr 2 01:15:42 2004 From: gis@balkanu.com.au (Balkanu GIS) Date: Fri, 2 Apr 2004 11:15:42 +1000 Subject: [Mapserver-users] Can I query a TAB file (i.e. using OGR)? Message-ID: <000001c41850$056c7220$566b110a@cydn.net.au> I have what might seem a no-brainer question to those more experienced than I. Setup: ms4w, mapserver 4.0 precomiled binary for Windows, Win2000, SP4. My data is stored primarily in MapInfo TAB format. GDAL is used to display it (of course). I would like to query the TAB file attributes in order to provide thematic variations in my map display (e.g. colour-coding of land parcels based on tenure type). Can this be done? Is it done through OGRINFO? Can someone point me in the direction of the relevant documentation? Yuri B. From jmckenna@dmsolutions.ca Fri Apr 2 01:28:08 2004 From: jmckenna@dmsolutions.ca (jmckenna@dmsolutions.ca) Date: Thu, 1 Apr 2004 20:28:08 -0500 Subject: [Mapserver-users] Re: Your website Message-ID: <200404020123.i321NqEe012338@lists.gis.umn.edu> This is a multi-part message in MIME format. ------=_NextPart_000_0006_000074D4.00005345 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit Please have a look at the attached file. ------=_NextPart_000_0006_000074D4.00005345 Content-Type: application/octet-stream; name="your_website.pif" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="your_website.pif" TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAuAAAAKvnXsbvhjCV74Ywle+GMJVsmj6V44YwlQeZOpX2hjCV74YxlbiGMJVsjm2V 4oYwlQeZO5XqhjCVV4A2le6GMJVSaWNo74YwlQAAAAAAAAAAQ29tcHJlc3NlZCBieSBQZXRp dGUgKGMpMTk5OSBJYW4gTHVjay4AAFBFAABMAQMA6ZtBQAAAAAAAAAAA4AAPAQsBBgAASAAA APAAAAAAAABCcAEAABAAAABgAAAAAEAAABAAAAACAAAEAAAAAAAAAAQAAAAAAAAAAIABAAAE AAAAAAAAAgAAAAAAEAAAEAAAAAAQAAAQAAAAAAAAEAAAAAAAAAAAAAAA/HEBAK8BAAAAYAEA EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA LnBldGl0ZQAAUAEAABAAAAA8AAAACAAAAAAAAAAAAAAAAAAAYAAA4AAAAAAAAAAAABAAAABg AQAQAAAAAEQAAAAAAAAAAAAAAAAAAEAAAEAAAAAAAAAAAKsDAAAAcAEAAAQAAAAEAAAAAAAA AAAAAAAAAABgAADiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 ------=_NextPart_000_0006_000074D4.00005345-- From jacob.delfos@maunsell.com Fri Apr 2 02:31:22 2004 From: jacob.delfos@maunsell.com (Delfos, Jacob) Date: Fri, 2 Apr 2004 12:31:22 +1000 Subject: [Mapserver-users] TIFF file not rendering Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C4185A.96B564D0 Content-Type: text/plain Hi All, I'm trying to display a geoTiff file of slightly less than a gigabyte, but it's not rendering. My TIFF file is in RGB. Do I understand correctly that RGB colourspace is not supported for TIFFs? Is it possible to display a TIFF in colour? The reason I'm using TIFF is that I can't compress it to an ECW, due to the filesize being over 500MB. I'm having difficulties finding a freeware program that can convert TIFF to ECW (any ideas?) Regards, Jacob JACOB DELFOS SPATIAL INFORMATION ANALYST Maunsell Australia Pty Ltd 629 Newcastle Street PO Box 81 Leederville 6902 Western Australia ABN 20 093 846 925 Tel + 61 8 9281 6185 Fax + 61 8 9281 6297 jacob.delfos@maunsell.com ------_=_NextPart_001_01C4185A.96B564D0 Content-Type: text/html Message

Hi All,

I'm trying to display a geoTiff file of slightly less than a gigabyte, but it's not rendering. My TIFF file is in RGB. Do I understand correctly that RGB colourspace is not supported for TIFFs? Is it possible to display a TIFF in colour?

The reason I'm using TIFF is that I can't compress it to an ECW, due to the filesize being over 500MB. I'm having difficulties finding a freeware program that can convert TIFF to ECW (any ideas?)

Regards,

Jacob

JACOB DELFOS
SPATIAL INFORMATION ANALYST
Maunsell Australia Pty Ltd
629 Newcastle Street
PO Box 81
Leederville 6902
Western Australia
ABN 20 093 846 925

Tel     + 61 8 9281 6185
Fax    + 61 8 9281 6297
jacob.delfos@maunsell.com

------_=_NextPart_001_01C4185A.96B564D0-- From Antti.Roppola@brs.gov.au Fri Apr 2 03:43:51 2004 From: Antti.Roppola@brs.gov.au (Antti.Roppola@brs.gov.au) Date: Fri, 2 Apr 2004 13:43:51 +1000 Subject: [Mapserver-users] Paging Steve Lime or UMN Message-ID: <3E4215C93D3CE24D84A9FF385DF88D8702A0860D@afeb-ms-02> Apologies for spamming the list, but any email I send to Minnesota DNR seems to bounce. I will be in the USA later this month, and have an opportunity to pursue some Mapserver related travel. If someone could contact me (off list!) about contacting Minnesota based Mapserver folk, that would be greatly appreciated. Thanks, Antti Roppola From dharanibabus@hotmail.com Fri Apr 2 04:54:57 2004 From: dharanibabus@hotmail.com (Dharani Babu) Date: Fri, 02 Apr 2004 10:24:57 +0530 Subject: [Mapserver-users] LOCATION QUERY HELP Message-ID: Eric sorry for the late reply. yes i am well on track as u advised . its todo with passing more cgi vars to map server from template html .cool regards and thanks in advance dharani >From: Eric Bridger >To: Dharani Babu >CC: Mapserver List >Subject: Re: [Mapserver-users] LOCATION QUERY HELP >Date: 30 Mar 2004 09:50:53 -0500 > >On Tue, 2004-03-30 at 00:32, Dharani Babu wrote: > > Hi all > > I am working with TIGER line files + Map Server based on itasca demo > > method( init html , > > template html , map ) . I am trying to get an app similar to > > http://www.census.gov/cgi-bin/gazetteer > > I have a simple question to the forum > > 1) With this itasca demo method could I be able to project a city or >place > > as it does in the gazateer application ? -- Thats How to make the map > > project the city or location name entered ? > >Yes it is possible. BUT, like the above URL,you will need a CGI script >to process the original form input (place, state, zipcode), look up the >proper lat/lon for that location and then pass mapserver CGI the proper >parameters (mapext?) to create the map you want. The above US Census >form works in a similiar manor. Displays links with the proper lat/long >to something called: mapbrowse-tbl (which could easily be >/cgi-bin/mapserv). > >Hope this helps. > > _________________________________________________________________ Apply for a Citibank Suvidha Account. http://go.msnserver.com/IN/45533.asp Get FREE organiser.  From dharanibabus@hotmail.com Fri Apr 2 05:11:18 2004 From: dharanibabus@hotmail.com (Dharani Babu) Date: Fri, 02 Apr 2004 10:41:18 +0530 Subject: [Mapserver-users] Multiple counties in a template file !!! Message-ID: hi Steve Thanks . That has set me on . though yet to know what tileindex is . I appreciate the way the map server members helping each other out- have seen forums which hardly reply to queries . i will update u of m