Re: [mapserver-users] Templates & JOIN object (one to many)

2010-01-12 Thread Ted Spradley
Ok, I pieced the tidbits of info together. I thought I would go ahead and post it all in one place in case anyone else is ever interested. I don't know what I would do with out the postings in this list. The bottom line is that the JOIN object and the LAYER object both require a template direct

Re: [mapserver-users] catalina.bat on sysdeo

2010-01-12 Thread Flavio Souza
I did It Thanks for all ps: sorry my english , i am Brazilian ___ Flávio Souza (021) 7629-4249 On Mon, Jan 11, 2010 at 5:57 PM, Ian Tidy wrote: > Hi Flávio > > I'm don't know if this is applicable (I don't use Java MapScript), but when I > was trying to get php_

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Alan Boudreault
Carlos, glad to hear that your issue is fixed. This is a new feature of MapServer 5.6: the ability to automatically scale the symbology when resolution changes so that the map maintains the same look at each resolution. For more info: http://www.mapserver.org/development/rfc/ms- rfc-55.html Wha

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Carlos Ruiz
Oh, I tought it was one or the other. Adding DEFRESOLUTION fixes the label's visual size. Why do I need now to add this tag if I never used before ? Thanks for all, Alan IC Carlos Ruiz From: Alan Boudreault To: Carlos Ruiz Cc: mapserver-users Sent: Tue, January 12, 2010 2:37:46 PM Subje

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Alan Boudreault
emm, I mean, did you *added* the DEFRESOLUTION 99 ? and not replaced the RESOLUTION 99. You should have both. Alan On January 12, 2010 03:35:00 pm Carlos Ruiz wrote: > Hey Alan, > > > Using DEFRESOLUTION 99 now makes all the labels smaller than they was. > > Any other idea ? > Thanks for help

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Carlos Ruiz
Hey Alan, Using DEFRESOLUTION 99 now makes all the labels smaller than they was. Any other idea ? Thanks for helping me on this issue IC Carlos Ruiz From: Alan Boudreault To: mapserver-users@lists.osgeo.org Cc: Carlos Ruiz ; "Lime, Steve D (DNR)" Sent:

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Alan Boudreault
Carlos, you haven't attached the images. What's happen if you add the following line into your map definition: DEFRESOLUTION 99 Alan On January 12, 2010 02:26:18 pm Carlos Ruiz wrote: > Thanks Steve, > > Lets see something simple that is changing in the new Mapserver version, > here's the LAY

Re: [mapserver-users] 5.6.1 version and labels

2010-01-12 Thread Carlos Ruiz
Thanks Steve, Lets see something simple that is changing in the new Mapserver version, here's the LAYER definition: LAYER NAME "my name" TYPE annotation STATUS ON TRANSFORM ll UNITS PIXELS FEATURE POINTS 135 -10 END TEXT "my

[mapserver-users] Templates & JOIN object (one to many)

2010-01-12 Thread Ted Spradley
Hi guys, I have a query layer that joins two PostGIS tables. Mapserver objects if a TEMPLATE is not declared in the JOIN object, but I couldn't find a reference to a template being needed in the documentation other than in the LAYER object. The GetFeatureInfo request for this layer returns an e

Re: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread thomas bonfort
gap in pixels = symbol->gap * style->size On Tue, Jan 12, 2010 at 16:52, Oliver Christen < oliver.chris...@camptocamp.com> wrote: > GAP 20 is really giving unwanted result: > > http://dev.camptocamp.com/~ochriste/tilecache9.png > > though usi

Re: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread Oliver Christen
GAP 20 is really giving unwanted result: http://dev.camptocamp.com/~ochriste/tilecache9.png though using only one style instead of two seems to solve the oval problem (but why ???) style symbol "dots" size 8 color 204 102 0 outlinecolor 102 51 0 end I dont understa

Re: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread thomas bonfort
symbol name dots type ellipse points 1 1 end gap 20 end ... style symbol "dots" size 8 color r g b outlinecolor r g b end On Tue, Jan 12, 2010 at 16:31, Oliver Christen < oliver.chris...@camptocamp.com> wrote: > Hi Thomas :) > > thanks for the answer, but sadely it didnt solve my p

RE: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread Fawcett, David (MPCA)
Are you requesting your image through a WMS and maybe getting a ‘non-square pixel’ effect? If you are using WMS, are the symbols round when you do a cgi request in mode=map or mode=tile? David. From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On B

Re: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread Oliver Christen
Hi Thomas :) thanks for the answer, but sadely it didnt solve my problem: here are a few tests I did: using GAP 20 gave me really weird result: http://dev.camptocamp.com/~ochriste/tilecache6_gap_20.png using PATTERN 1 22 END gave me better result, but the dot are still slightly oval: http://de

Re: [mapserver-users] OWSRequest raw post data

2010-01-12 Thread Frank Broniewski
Sorry, I forgot to mention that. I'm using Python ... -- From: "Nolte, Tim" Sent: Tuesday, January 12, 2010 3:56 PM To: "Frank Broniewski" ; Subject: RE: [mapserver-users] OWSRequest raw post data What language are you using, is this PHP? - Tim

RE: [mapserver-users] OWSRequest raw post data

2010-01-12 Thread Nolte, Tim
What language are you using, is this PHP? - Tim Timothy J Nolte - tno...@ilpcs.com Network Planning Engineer 4717 Broadmoor Ave, Suite G Kentwood, MI 49512 Office: 616-656-5163 PCS:    616-706-2438 Support: 616-929-0289 Fax: 616-554-6484 -Original Message- From: mapserver-us

Re: [mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread thomas bonfort
hi Oliver :) try with GAP 20 instead of STYLE 1 20 END (which is deprecated btw, use PATTERN now) cheers, thomas On Tue, Jan 12, 2010 at 15:04, Oliver Christen < oliver.chris...@camptocamp.com> wrote: > hello > > I have a weird problem with symbology. > Im rendering a line with dots, but the do

[mapserver-users] symbol circle (ellipse) rendered not round but oval

2010-01-12 Thread Oliver Christen
hello I have a weird problem with symbology. Im rendering a line with dots, but the dots are not round but slightly oval, see image http://dev.camptocamp.com/~ochriste/tilecache.png Any idea what could be the cause ? Here is my symbol definition: SYMBOL NAME "linie-gepunkt10" TYPE ELLIPSE

[mapserver-users] OWSRequest raw post data

2010-01-12 Thread Frank Broniewski
Hello list, I am wondering how I could load / pass a raw post body to the owsrequest object. GET is simply done with setParameter. I see that there is a postrequest attribute for the owsrequest object, but there is no documentation for it. Can I set it manually? I am using a WSGI Framework and

[mapserver-users] OWSRequest raw post data

2010-01-12 Thread Frank Broniewski
Hello list, I am wondering how I could load / pass a raw post body to the owsrequest object. GET is simply done with setParameter. I see that there is a postrequest attribute for the owsrequest object, but there is no documentation for it. Can I set it manually? I am using a WSGI Framework and th