Re: [MapServer-users] Question: Where do WMS URLs in WFS GetMetadata reply come from?

2024-07-27 Thread Stefan Gofferje via MapServer-users
OK, this is wild. The bbox coordinates of those WMS links are in the original projection of the shapefile, even if the projection in the same link is something different... Like https://mapserver.gofferje.net/?map=wfs&service=WMS&version=1.3.0&request=GetMap&width=500&height=300&styles=&layers

Re: [MapServer-users] Question: Where do WMS URLs in WFS GetMetadata reply come from?

2024-07-26 Thread Stefan Gofferje via MapServer-users
re is a similar setting for WFS. You can definitely serve both from a single mapfile. --Steve -Original Message- From: MapServer-users On Behalf Of Stefan Gofferje via MapServer-users Sent: Friday, July 26, 2024 6:06 AM To: mapserver-users@lists.osgeo.org Subject: [MapServer-users] Questio

[MapServer-users] Question: Where do WMS URLs in WFS GetMetadata reply come from?

2024-07-26 Thread Stefan Gofferje via MapServer-users
Hi, after getting WMS to run and thinking I got the basics, I moved to learning WFS with mapserver now. I have set up a simple WFS mapfile and it seems to work, however, I noticed that in the GetMetadata reply are WMS URLs in gmd:distributionInfo -> gmd:MD_Distribution -> gmd:transferOptions -

Re: [mapserver-users] Question on Feature Use

2022-01-18 Thread Ben Madin
Thanks Steve, I could see some potential, but we haven’t ever used this. Cheers Ben On Sat, 15 Jan 2022 at 01:17, Lime, Steve D (MNIT) wrote: > Hi all: This is in regard to > https://mapserver.org/cgi/controls.html#changing-map-file-parameters-via-a-form-or-a-url > – we’re seriously thinking

Re: [mapserver-users] Question on Feature Use

2022-01-14 Thread Basques, Bob (CI-StPaul)
Lime Date: Friday, January 14, 2022 at 11:17 AM To: "mapserver-users@lists.osgeo.org" Subject: [mapserver-users] Question on Feature Use Think Before You Click: This email originated outside our organization. Hi all: This is in regard to https://mapserver.org/cgi/controls.html#changin

[mapserver-users] Question on Feature Use

2022-01-14 Thread Lime, Steve D (MNIT)
Hi all: This is in regard to https://mapserver.org/cgi/controls.html#changing-map-file-parameters-via-a-form-or-a-url – we’re seriously thinking about dropping this functionality as part of 8.0. It’s just not as relevant as in the past with improvements runtime substitutions and SLD. This will

Re: [mapserver-users] Question about importing xml/json data from api

2021-01-04 Thread Travis Kirstine
Liron, Since MapServer is built with GDAL / OGR you connect to most common formats without parsing, see https://www.mapserver.org/input/vector/ogr.html. However this does not include hand rolled JSON / XML, if possible retrieve GeoJSON or some other GDAL / OGR supported format from the API. You m

[mapserver-users] Question about importing xml/json data from api

2021-01-01 Thread CHEN, LIRON (PGT)
Hi and happy New Year! Im completely new to MapServer and not from a development background, but I hope its ok to ask for help here. Im a GIS postgraduate with some programming skill and Im trying to teach myself to set up a service that generates maps or layers when called on; but I want the s

[mapserver-users] Question: Mapcache Deb-package

2020-09-01 Thread Иван Иванов
Hi everyone! How can i put builded mapcache into debian package to install it on debian stretch with one command? What I am interested in mostly is WHAT particular files after `MAKE` command was executed should I add into debian package for mapcache to work fine? __

Re: [mapserver-users] question on demo.mapserver.org

2020-03-10 Thread WhereGroup
Thanks Jeff! works: https://demo.mapserver.org/cgi-bin/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&BBOX=-180,-90,180,90&SRS=EPSG:4326&WIDTH=953&HEIGHT=480&LAYERS=continents&STYLES=&FORMAT=image/png&TRANSPARENT=true&FILTER=%3CFilter%3E%3CPropertyIsEqualTo%3E%3CPropertyName%3ENA3DESC%3C/PropertyNam

Re: [mapserver-users] question on demo.mapserver.org

2020-03-09 Thread Jeff McKenna
On 2020-03-09 11:55 a.m., Jörg Thomsen (WhereGroup) wrote: Hello, could please anyone tell me how the classitem for the layer continents of https://demo.mapserver.org/cgi-bin/wms? is named? I want to create demo-request for wms ogc-filter. Viele Grüße, Jörg Also, if you ever need a change m

Re: [mapserver-users] question on demo.mapserver.org

2020-03-09 Thread Jeff McKenna
Hi Jörg, Regarding that WMS service[1] here is the classitem syntax: CLASSITEM'NA3DESC' With an example value of 'Africa' or 'Europe . [1] https://demo.mapserver.org/cgi-bin/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities -jeff -- Jeff McKenna MapServer Consulting and Trai

[mapserver-users] question on demo.mapserver.org

2020-03-09 Thread WhereGroup
Hello, could please anyone tell me how the classitem for the layer continents of https://demo.mapserver.org/cgi-bin/wms? is named? I want to create demo-request for wms ogc-filter. Viele Grüße, Jörg -- QGIS Experience Day - jetzt kostenfrei anm

Re: [mapserver-users] Question about python mapscript and point style.

2019-11-23 Thread Seth G
Hi, The following example works for me - 2 styles are in the output Mapfile. Maybe there is an issue elsewhere? Is there a Python error, or is the output not what you are expecting? import mapscript m = mapscript.fromstring(""" MAP LAYER NAME "test" TYPE POINT CLASS NAME "0" STYLE COLOR

Re: [mapserver-users] Question about python mapscript and point style.

2019-11-22 Thread Seth G
Hi Vladimir, Could you try the following syntax? new_style = new mapscript.styleObj() new_style.symbolname = 'circle' new_style.size = 10 the_class.insertStyle(new_style) Also make sure your variables aren't overriding the class names - e.g. maybe use different variable names than classObj.

[mapserver-users] Question about python mapscript and point style.

2019-11-15 Thread Vladimir
Hi all!   I unsuccessfully try to style ‘Point’ layer with following code: (first)     style = mapscript.styleObj(classObj)     style.symbolname = 'circle'     style.size = 10     style.color = mapscript.colorObj(255, 0, 0)   No error, no picture as result of using this method. But similar approac

[mapserver-users] Question about WMS Dimension and Cluster

2016-11-17 Thread Frode Wiseth Jørgensen
Hi When combining Cluster and WMS dimension it seems like the Cluster is ignored. This leeds to for instance that attribute "Cluster_FeatureCount" is missing so using it on SIZE and LABELS won't work and there is no clustering of objects. Is Clustering supposed to work when using WMS Dimension?

Re: [mapserver-users] Question about gml_types - auto and WFS

2015-10-28 Thread Even Rouault
Le mercredi 28 octobre 2015 16:40:34, Rahkonen Jukka (MML) a écrit : > Hi, > > I can read from http://mapserver.org/ogc/wfs_server.html: > > gml_types (Optional) > If this field is "auto" then some input feature drivers (ie. OGR, POSTGIS, > ORACLESPATIAL and native shapefiles) will automatically

[mapserver-users] Question about gml_types - auto and WFS

2015-10-28 Thread Rahkonen Jukka (MML)
Hi, I can read from http://mapserver.org/ogc/wfs_server.html: gml_types (Optional) If this field is "auto" then some input feature drivers (ie. OGR, POSTGIS, ORACLESPATIAL and native shapefiles) will automatically populate the type, width and precision metadata for the layer based on the source

Re: [mapserver-users] Question about config Mapserver to provide SOS service from postgis table/view

2014-06-16 Thread Miguel-Angel Manso-Callejo (UPM)
Dear Till I'm trying to publish real time steam data computed on a permanent network of GPS stations and stored on a PostGIS DataBase. This network have 300 stations and i want to publish individual observation as a procedure result. As i have informed this morning to the list, i have gotten

Re: [mapserver-users] Question about config Mapserver to provide SOS service from postgis table/view

2014-06-15 Thread Miguel-Angel Manso-Callejo (UPM)
Thank you Stephen At this moment i can send a GetObservation Request and get response in O&M format but i can't understand why sos mapserv don't recognize any procedure name or eventTime format. First: In order to do it i must change DATA sql to: DATA "pos from (select pos,fecha,vap from

Re: [mapserver-users] Question about config Mapserver to provide SOS service from postgis table/view

2014-06-15 Thread Stephen Woodbridge
On 6/15/2014 2:16 PM, Miguel-Angel Manso-Callejo (UPM) wrote: Dear all, I'm trying to config mapserver to offer through SOS data stored in two tables joined by a view. I'm trying to offer in the first step only one time serial data and i'm using this configuration: LAYER NAME "test_sos

[mapserver-users] Question about config Mapserver to provide SOS service from postgis table/view

2014-06-15 Thread Miguel-Angel Manso-Callejo (UPM)
Dear all, I'm trying to config mapserver to offer through SOS data stored in two tables joined by a view. I'm trying to offer in the first step only one time serial data and i'm using this configuration: LAYER NAME "test_sos_layer" METADATA "sos_procedure" "vaporcolumna" ##

[mapserver-users] Question on RASTER layer with PROCESSING SCALE=min, max

2014-05-20 Thread Stephen Woodbridge
Hi All, I am trying to understand how a mapfile that I inherited is working. It has a raster layer like: LAYER NAME "modis_east_30_60" STATUS on TYPE raster PROJECTION "init=epsg:4326" END VALIDATION 'date' '.' END DATA "MODIS_SST_EAST/MODIS_SST_EAST-%date%.vrt" PROCESSING

Re: [mapserver-users] Question on Validation Blocks

2014-03-14 Thread Stephen Woodbridge
akrherz on IRC gave me the fix: http://imaptools.com:8080/cgi-bin/mapserv?mode=map&map.projection=init=epsg:900913&map=/u/data/tiger2013-maps/tiger2013-mc.map&layers=all&imagetype=jpeg&MAPSIZE=541+522&map.scalebar=status+embed+units+feet&map.units=meters&SCALEDENOM=3000&MAPXY=-7946835.7326273+525

Re: [mapserver-users] Question on Validation Blocks

2014-03-14 Thread Stephen Woodbridge
On 3/14/2014 2:08 PM, Humberto Cereser Ibanez wrote: Hi Steve, Em Sex, 2014-03-14 às 11:25 -0400, Stephen Woodbridge escreveu: Hi all, I'm trying to construct a mapserver URL to fetch an image from php. I'm change some of the mapfile parameters in the url. Do I need validation blocks for these

Re: [mapserver-users] Question on Validation Blocks

2014-03-14 Thread Humberto Cereser Ibanez
Hi Steve, Em Sex, 2014-03-14 às 11:25 -0400, Stephen Woodbridge escreveu: > Hi all, > > I'm trying to construct a mapserver URL to fetch an image from php. I'm > change some of the mapfile parameters in the url. Do I need validation > blocks for these changes? I assume I do not because I am get

[mapserver-users] Question on Validation Blocks

2014-03-14 Thread Stephen Woodbridge
Hi all, I'm trying to construct a mapserver URL to fetch an image from php. I'm change some of the mapfile parameters in the url. Do I need validation blocks for these changes? I assume I do not because I am getting a scale bar. I'm only getting a blank image. http://imaptools.com:8080/cgi-b

Re: [mapserver-users] Question about issues git-hub system

2013-07-22 Thread thomas bonfort
Andrea, there are other changes that affect an issue's "last updated" timestamp, some of which are not recorded on the interface (namely the milestone, labels, assignee, references from other tickets, etc...) On 20 July 2013 08:01, Andrea Peri wrote: > Hi, > > Reading the issue system of mapserve

[mapserver-users] Question about issues git-hub system

2013-07-19 Thread Andrea Peri
Hi, Reading the issue system of mapserver, the closed issues section https://github.com/mapserver/mapserver/issues?page=1&sort=updated&state=closed I see the last more recently closed issues is Various return value bugs fixed and it report the last update is two days ago. But if I go to read i

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

2013-07-02 Thread Even Rouault
n the interim. I > > do hope a more complete (and documented) implementation could be > > available as part of MapServer 7.0. > > > > Steve > > > > -Original Message- > > From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users- > > boun...

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

2013-07-02 Thread Jeff McKenna
On 2013-07-02 3:18 PM, Mark Volz wrote: > Steve, > > Thanks for your help. I was quite surprised at how quickly MapServer can > draw the color ramps from a DEM. Hi Mark, As emails are lost and forgotten, maybe you could add a page for your ramp tips on the MapServer wiki: https://github.com/ma

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

2013-07-02 Thread Mark Volz
nt: Monday, July 01, 2013 12:51 PM > To: mapserver-users@lists.osgeo.org > Subject: [mapserver-users] question on Request For Comment #6 > > Hello, > > Has anything ever happened with RFC #6, or did this one stall out? The color &

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

2013-07-01 Thread Lime, Steve D (MNIT)
erver-users@lists.osgeo.org Subject: [mapserver-users] question on Request For Comment #6 Hello, Has anything ever happened with RFC #6, or did this one stall out? The color range mapping could be useful in a couple of my applications. Thanks Mark Volz, GISP GIS Speci

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

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

Re: [mapserver-users] Question about Mapserver, WMS and Mapcache

2013-05-06 Thread Lime, Steve D (MNIT)
MapCache will produce much superior output. Steve -Original Message- From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of boesiii Sent: Monday, May 06, 2013 2:55 PM To: mapserver-users@lists.osgeo.org Subject: [mapserver-users] Question

[mapserver-users] Question about Mapserver, WMS and Mapcache

2013-05-06 Thread boesiii
I am developing a mapping application using Openlayers, Mapserver and Mapcache and I am trying to understand all the terminology. Mapserver without any WMS parameters in the MAP file will return an image based on the url request. Mapserver becomes a WMS server when you add the necessary WMS param

Re: [mapserver-users] Question: loadWeb(): Unknown identifier. Parsing error near (ms_tmp):(line 36)

2011-07-24 Thread Steve Lime
In MapServer 6.0, the GD driver can only produce 8-bit output so your output format is invalid. Try commenting it out and see what happens. I believe you can leave "IMAGETYPE png" in place and you'll get AGG-based, 8-bit output. Should look much nicer. Steve On Sun, Jul 24, 2011 at 11:14 PM, Miha

[mapserver-users] Question: loadWeb(): Unknown identifier. Parsing error near (ms_tmp):(line 36)

2011-07-24 Thread Mihaela Caluian
Hello everybody, I am very new to MapServer and I have a lots of problem that I cannot find answer. Currently I am having trouble to figure out what is wrong with my .map files. I am getting this error when I try to click the button to load the map file: loadWeb(): Unknown identifier. Parsing er

[mapserver-users] Question about MapServer

2011-06-14 Thread Jorge Arévalo
Hello, I'm executing Mapserver 5.6.4 under Apache2 in a Ubuntu 10.04 machine. I'm having problems with a SLD file. Basically, when I execute a request like this: http://myserver/cgi-bin/mapserv?map=/var/mapserver/mapfiles/sld_cookbook_polygon.map&service=WMS&version=1.1.1&request=GetMap&layers=s

Re: [mapserver-users] Question on predicates

2011-05-26 Thread Brent Fraser
Bob, If this is for your GeoMoose installation have a look at the "Search Parcels" function on the live demo (http://www.geomoose.org/demo/geomoose2/geomoose.html), and the [new] General Query Service doc (http://www.geomoose.org/services/query.php.html) Best Regards, Brent Fraser On 5/2

[mapserver-users] Question on predicates

2011-05-26 Thread Bistrais, Bob
I'm trying to construct a predicate to be used in a query. I need to select based on two items, however, such as "where item1 = 'this' and item2 =' that'", please excuse my informal SQL :) I don't know how to construct a predicate that way. Is it possible to do this, and what would it look like?

RE: [mapserver-users] Question on rfc 86

2011-05-16 Thread Lime, Steve D (DNR)
onored when set in the union'd layer definition. Steve -Original Message- From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of Jana Golinowski Sent: Monday, May 16, 2011 8:19 AM To: mapserver-users@lists.osgeo.org Subject:

Re: [mapserver-users] Question on rfc 86

2011-05-16 Thread Jana Golinowski
Good point. I've just been waiting for someone more proficient than me, who confirms that this approach makes sense ;-) Best regards, Tamas 2011/5/16 Daniel Morissette > On 11-05-14 03:21 PM, Tamas Szekeres wrote: However the desired scale range

Re: [mapserver-users] Question on rfc 86

2011-05-16 Thread Daniel Morissette
On 11-05-16 08:56 AM, Tamas Szekeres wrote: Hi Daniel, Good point. I've just been waiting for someone more proficient than me, who confirms that this approach makes sense ;-) Well, that's my thinking, but we could also see what others on the -dev list think before making the final call. --

Re: [mapserver-users] Question on rfc 86

2011-05-16 Thread Tamas Szekeres
Hi Daniel, Good point. I've just been waiting for someone more proficient than me, who confirms that this approach makes sense ;-) Best regards, Tamas 2011/5/16 Daniel Morissette > On 11-05-14 03:21 PM, Tamas Szekeres wrote: > >> However the desired scale range (MINSCALEDENOM, MAXSCALEDENOM)

Re: [mapserver-users] Question on rfc 86

2011-05-16 Thread Daniel Morissette
On 11-05-14 03:21 PM, Tamas Szekeres wrote: However the desired scale range (MINSCALEDENOM, MAXSCALEDENOM) could indeed be taken into account when accessing the source layers, by using a minor change. If that's not the case already then I think MINSCALEDENOM, MAXSCALEDENOM from the source lay

Re: [mapserver-users] Question on rfc 86

2011-05-15 Thread Richard Greenwood
a Rahkonen- > > > Lähettäjä: mapserver-users-boun...@lists.osgeo.org > [mailto:mapserver-users-boun...@lists.osgeo.org] Puolesta Josh Hevenor > Lähetetty: 15. toukokuuta 2011 5:02 > Vastaanottaja: Tamas Szekeres > Kopio: mapserver-users@lists.osgeo.org > Aihe:

Re: [mapserver-users] Question on rfc 86

2011-05-15 Thread Rahkonen Jukka
ukka Rahkonen- Lähettäjä: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] Puolesta Josh Hevenor Lähetetty: 15. toukokuuta 2011 5:02 Vastaanottaja: Tamas Szekeres Kopio: mapserver-users@lists.osgeo.org Aihe: Re: [mapserver-user

Re: [mapserver-users] Question on rfc 86

2011-05-15 Thread Tamas Szekeres
Hi Josh, The UNION layer doen't remove the source layers it refers to, so those would be displayed in the legend as well. Would this provide the expected result even so? Best regards, Tamas 2011/5/15 Josh Hevenor > Thanks Tamas, > > The legend is custom build by mapscript and it's a featur

Re: [mapserver-users] Question on rfc 86

2011-05-14 Thread Josh Hevenor
Thanks Tamas, The legend is custom build by mapscript and it's a feature of the app that it shows the out of scale layers. I could customize it to group layers that are essentially the same thing if there was a need for it, but I figured I'd see if this new feature would do that for me for free wh

Re: [mapserver-users] Question on rfc 86

2011-05-14 Thread Tamas Szekeres
Josh, The union layer always retrieve all features from the source layers regardless of their visibility. This is because the source layers are hidden in most cases (STATUS OFF) to avoid the duplication of the features drawn. However the desired scale range (MINSCALEDENOM, MAXSCALEDENOM) could ind

[mapserver-users] Question on rfc 86

2011-05-14 Thread Josh Hevenor
This may or may not be relevant but reading RFC 68 got me wondering. I have an application that has shape file data for lakes. There are different shapefiles for data with higher accuracy that are used with scale ranges so that only one is drawn at a time. Specifically something like lakes_1_1m,

[mapserver-users] Question about shp2img

2011-01-16 Thread Forest
Hi everyone,     I've used shp2img to generate the tile Image for my WebGIS System which is similary to google map.When I used the shp2img to generate image base on my shpfiles,I found that the the extent of longitude must be equal to the extent of latitude.It means it must be square,otherwise t

Re:Re: [mapserver-users] Question about shp2img Tools

2010-12-11 Thread Forest
Thanks for Jeff McKenna's answer.With your help,I've solved the problem.Thanks again ___ mapserver-users mailing list mapserver-users@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/mapserver-users

Re: [mapserver-users] Question about shp2img Tools

2010-12-11 Thread Jeff McKenna
On 10-12-10 11:59 PM, Forest wrote: Hello, Has anyone used shp2img.exe tools in Win32 System? I've used the tools to create tiles for my web applications.It can create proper image for me,but there was problems about the labels.Take a point for example,its name is "MapServer",If it is just beside

[mapserver-users] Question about shp2img Tools

2010-12-10 Thread Forest
Hello,    Has anyone used shp2img.exe tools in Win32 System? I've used the tools to create tiles for my web applications.It can create proper image for me,but there was problems about the labels.Take a point for example,its name is "MapServer",If it is just beside the boundary of tile extent,it

Re: [mapserver-users] question about joining

2010-10-26 Thread Jeff McKenna
Hi Mark, Your interpretation of the existing JOIN documentation (http://www.mapserver.org/mapfile/join.html) is correct, you can only use the JOIN feature for query templates. -jeff -- Jeff McKenna MapServer Consulting and Training Services http://www.gatewaygeomatics.com/ On 10-10-26 1

[mapserver-users] question about joining

2010-10-26 Thread Mark Volz
Hello, I have not used the Join shapefile to database function in mapserver before. I just have a couple questions * The description explains that "It is important to understand that JOINs are ONLY available once a query has been processed. You cannot use joins to affect the look of a map."

RE: [mapserver-users] Question about oracle spatial configuration change [SOLVED]

2010-07-16 Thread David Alda Fernandez de Lezea
io de 2010 15:57 Para: mapserver-users@lists.osgeo.org CC: David Alda Fernandez de Lezea Asunto: Re: [mapserver-users] Question about oracle spatial configuration change Normally, you shouldn't have to change anything else. Have you tried to connect to the DB with your new user from the orac

Re: [mapserver-users] Question about oracle spatial configuration change

2010-07-14 Thread Alan Boudreault
Normally, you shouldn't have to change anything else. Have you tried to connect to the DB with your new user from the oracle sqlplus and did a "select * from " ? Thanks, Alan On July 14, 2010 08:07:05 am David Alda Fernandez de Lezea wrote: > Hi list, > > We were working with mapserver 5.6.1

[mapserver-users] Question about oracle spatial configuration change

2010-07-14 Thread David Alda Fernandez de Lezea
Hi list, We were working with mapserver 5.6.1 and oracle spatial, and we have change the user (the new one has less privileges - it cannot modify anything stored in the DB) that connects to oracle spatial, and now we cannot connect to the layers stored in oracle. We get the following message:

[mapserver-users] Question about PropertyIsLike SLD

2010-07-04 Thread David Alda Fernandez de Lezea
Hi list, I'm trying to make work a SLD with a PorpertyIsLike Filter, but when get the images back, the filter is no applied, maybe I'm just doing something wrong. I want to perform this: (vi_vinedo_ like '%some_value%') And in the SLD I've put this: vi_vinedo_*"+ id +"* But the filter is

[mapserver-users] Question

2010-05-27 Thread Mike Heese
I'm trying to figure MapServer out for our applications. Right now, I just need a server setup that accepts a query for Elevation information at a specific Lat/Lon point. I also want to be able to send the server coordinates for a bounding rectangle that returns back a set of Elevation data

Re: [mapserver-users] Question about PHP object comparison

2010-04-10 Thread Alan Boudreault
Cristiano, I haven't tested the code below.. but I assume you are using php mapscript 5.6 or ealier. You cannot use the php clone keyword with mapscript object since it has no idea how to clone the internal object properly. If you would have used php mapscript from svn (which includes the ref

[mapserver-users] Question about PHP object comparison

2010-04-09 Thread Cristiano Sumariva
I executed this example and object comparison returned true on clone call. But it returned false when I request another reference from same layer from getLayer. Should not it return true ? #/* 09/04/2010 test for mapserver object comparison on PHP. # If I clone a layer object from a map instance

Re: [mapserver-users] Question about adding imagery to a project

2010-04-08 Thread Daniel Morissette
Gregory Roberts | Wendler wrote: I was wondering if it is possible when adding imagery to a project to not have a white background surrounding the image itself show up. For example, when I add an overlay image into a project and turn it on you can see the image but all the background imagery

[mapserver-users] Question about adding imagery to a project

2010-04-08 Thread Gregory Roberts | Wendler
Hi everyone, I was wondering if it is possible when adding imagery to a project to not have a white background surrounding the image itself show up. For example, when I add an overlay image into a project and turn it on you can see the image but all the background imagery is now white but if y

Re: [mapserver-users] Question on the layer order impact in a Getmap(WMS) call

2009-12-09 Thread Ted Spradley
Barend Kobben wrote: > > The WMS GetMap interface standard requires layers to be drawn in order > (bottom to top) they appear in the LAYERS= statement in the request. So > that > overrides the order in the MAP file... > > By observation, I might add to this that if layer STATUS is DEFAULT, th

Re: [mapserver-users] Question on the layer order impact in a Getmap(WMS) call

2009-12-04 Thread Barend Köbben
The WMS GetMap interface standard requires layers to be drawn in order (bottom to top) they appear in the LAYERS= statement in the request. So that overrides the order in the MAP file... -- Barend Köbben International Institute for Geo-Information Sciences and Earth Observation (ITC) PO Box 6, 7

[mapserver-users] Question on the layer order impact in a Getmap(WMS) call

2009-12-03 Thread Martin Ouellet
The mapserver doc specified that the layer are drawn in their order of appearance in the MapFile (first layer is at the bottom, last is on top). Extract from: http://umn.mapserver.ch/MapServer/en/layer.htm So I wonder why the map is different if I change the order of the layers (CEHQ_STATION_CEHQ_

Re: [mapserver-users] Question on MapServer tutorials

2009-11-03 Thread Alan Boudreault
Graham, After verification, it seems that apache is able to handle path like "/ms4w/dir1" without the "C:/". It is supposed to assume that the hard drive asked is the same that the web server is running. Alan On November 3, 2009 07:04:54 am Alan Boudreault wrote: > Hi Graham, > > The map para

Re: [mapserver-users] Question on MapServer tutorials

2009-11-03 Thread Alan Boudreault
Hi Graham, The map parameter is always an absolute path to the mapfile. Not a relative or a web path (alias) neither. Currently, you are using a Unix system path. You should use the proper Windows path in the URL: http://...?map=C:\ms4w\apps\tutorial\mapfiles\a_mapfile.map&otherOption=... Alan

[mapserver-users] Question on MapServer tutorials

2009-11-03 Thread graham_allan
Dear all, I'm currently trying to follow the MapServer tutorials by Pericles S. Nacionales, I have successful downloaded and installed both the tutorial data and MS4W distribution but when I try the URL in

Re: [mapserver-users] question about TRANSPARENT ON

2009-10-16 Thread Richard Greenwood
Stephen - Thanks! It appears that: OUTPUTFORMAT TRANSPARENT ON works. And that: OUTPUTFORMAT FORMATOPTION "TRANSPARENT=ON" does not. I've tested in 5.0 and 5.4 so I think I should submit a bug report. It would seem to be more of a 'bug' in the documentation than in the softwar

Re: [mapserver-users] question about TRANSPARENT ON

2009-10-16 Thread Richard Greenwood
Thanks Stephen, I tried with and w/o the "=", but no joy. Daniel - thanks for your suggestion to use the AGG RGBA mode, but still no luck there either. Varun - thanks for the reply, but opacity isn't exactly what I'm after. That effects everything in the layer, I just want a transparent backgroun

Re: [mapserver-users] question about TRANSPARENT ON

2009-10-16 Thread Stephen Woodbridge
Richard, Try: FORMATOPTION "TRANSPARENT=ON" -Steve W Richard Greenwood wrote: I have been using TRANSPARENT ON in the MAP section of my map file, but the documentation says that is deprecated and to use the FORMATOPTION. I'm trying to do this, but not getting transparent images back. I am c

[mapserver-users] question about TRANSPARENT ON

2009-10-16 Thread Richard Greenwood
I have been using TRANSPARENT ON in the MAP section of my map file, but the documentation says that is deprecated and to use the FORMATOPTION. I'm trying to do this, but not getting transparent images back. I am creating PNG images with MapServer 5.4.2. My output format is as follows: OUTPUTFORM

[mapserver-users] Question Regarding layer/Projection

2009-09-23 Thread benjamin ferlicot
Hi all , Is it possible to have two layer with the same name who have two raster set in two different projection (to avoid mapserver reprojection) ? I have one utm sonar raster layer who work well with most of gis, but when requested by Worldwind (WGS84 ), the picture quality is poor

RE: [mapserver-users] Question About WCS

2009-07-03 Thread Dillabough, Craig
tp://127.0.0.1/cgi-bin/mapserv?"; /> application/vnd.ogc.se_xml Craig -Original Message- From: Frank Warmerdam [mailto:warmer...@pobox.com] Sent: Friday, July 03, 2009 12:43 PM To: Dillabough, Craig Subject: Re: [mapserver-users] Questi

Re: [mapserver-users] Question About WCS

2009-07-03 Thread Frank Warmerdam
Dillabough, Craig wrote: Hi, I am brand new to MapServer, and I am trying to figure out WCS. I've been following the instructions on http://mapserver.org/ogc/wcs_server.html and was making some progress as executing a GetCapabilities request returns what I was expecting. However when I try to ex

[mapserver-users] Question About WCS

2009-07-02 Thread Dillabough, Craig
Hi, I am brand new to MapServer, and I am trying to figure out WCS. I've been following the instructions on http://mapserver.org/ogc/wcs_server.html and was making some progress as executing a GetCapabilities request returns what I was expecting. However when I try to execute a DescribeCoverage re

Re: [mapserver-users] Question re: city points layers and markers

2009-02-18 Thread Gregory Collins
Gregory Collins writes: > Hello all, > > Sorry if this question has an answer in the existing documentation but > I've been struggling for days and can't find a solution. > > I'm trying to render a city points layer on a regional-level map. I want > point markers to be placed for all of the citie

Re: [mapserver-users] Question re: city points layers and markers

2009-02-17 Thread Gregory Collins
Stephen Woodbridge writes: > Gregory Collins wrote: >> Hello all, >> >> Sorry if this question has an answer in the existing documentation but >> I've been struggling for days and can't find a solution. >> >> I'm trying to render a city points layer on a regional-level map. I want >> point marker

Re: [mapserver-users] Question re: city points layers and markers

2009-02-17 Thread Stephen Woodbridge
Gregory Collins wrote: Hello all, Sorry if this question has an answer in the existing documentation but I've been struggling for days and can't find a solution. I'm trying to render a city points layer on a regional-level map. I want point markers to be placed for all of the cities which are i

[mapserver-users] Question re: city points layers and markers

2009-02-17 Thread Gregory Collins
Hello all, Sorry if this question has an answer in the existing documentation but I've been struggling for days and can't find a solution. I'm trying to render a city points layer on a regional-level map. I want point markers to be placed for all of the cities which are important enough to get la

RE: [mapserver-users] Question about formats

2009-01-26 Thread Venkat Rao Tammineni
David Martinez Morata Sent: Monday, January 26, 2009 9:52 PM To: mapserver Subject: [mapserver-users] Question about formats Hello. I have a question about the input formats for Mapserver. They take de dxf format? Thanks -- Martinez Morata David Thinking GIS

Re: [mapserver-users] Question about formats

2009-01-26 Thread Frank Warmerdam
David Martinez Morata wrote: Hello. I have a question about the input formats for Mapserver. They take de dxf format? David, No, currently it is not practical to read DXF directly in MapServer. You will need to translate it to supported format externally. Best regards, -- --

[mapserver-users] Question about formats

2009-01-26 Thread David Martinez Morata
Hello. I have a question about the input formats for Mapserver. They take de dxf format? Thanks -- Martinez Morata David Thinking GIS ___ mapserver-users mailing list mapserver-users@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/mapserver-u

Re: [mapserver-users] question

2008-12-30 Thread Valeria Muñoz
Thomas you are absolutely right, thank you for everything now works 2008/12/30 thomas bonfort > you've probably left an ANGLE in your style block, no ? > > On Tue, Dec 30, 2008 at 14:51, Valeria Muñoz wrote: > > thank thomas, but now i have other problem, the arrow don't follow the > line > >

Re: [mapserver-users] question

2008-12-30 Thread thomas bonfort
you've probably left an ANGLE in your style block, no ? On Tue, Dec 30, 2008 at 14:51, Valeria Muñoz wrote: > thank thomas, but now i have other problem, the arrow don't follow the line > can you help me please? > attach image of the map.. > 2008/12/30 thomas bonfort >> >> hi, >> add >> GAP -20

Re: [mapserver-users] question

2008-12-30 Thread Valeria Muñoz
thank thomas, but now i have other problem, the arrow don't follow the line can you help me please? attach image of the map.. 2008/12/30 thomas bonfort > hi, > add > GAP -20 > to your symbol definition, for a 20 pixel gap between arrows > > regards, > thomas > > On Tue, Dec 30, 2008 at 14:03, Val

Re: [mapserver-users] question

2008-12-30 Thread thomas bonfort
hi, add GAP -20 to your symbol definition, for a 20 pixel gap between arrows regards, thomas On Tue, Dec 30, 2008 at 14:03, Valeria Muñoz wrote: > Hi > I have problems with symbol, this is my code: > > #Oneway nivel 4 > LAYER > NAME 'calle' > MAXSCALE 5000 > TYPE LINE > DATA 'calle.shp'

[mapserver-users] Question

2008-12-30 Thread Valeria Muñoz
Hi I have problems with symbol, this is my code: #Oneway nivel 4 LAYER NAME 'calle' MAXSCALE 5000 TYPE LINE DATA 'calle.shp' METADATA 'wms_title' 'calle' END STATUS DEFAULT TRANSPARENCY 80 PROJECTION 'proj=longlat' 'ellps=WGS84' 'datum=WGS84' 'no_defs' '' END CL

[mapserver-users] question

2008-12-30 Thread Valeria Muñoz
Hi I have problems with symbol, this is my code: #Oneway nivel 4 LAYER NAME 'calle' MAXSCALE 5000 TYPE LINE DATA 'calle.shp' METADATA 'wms_title' 'calle' END STATUS DEFAULT TRANSPARENCY 80 PROJECTION 'proj=longlat' 'ellps=WGS84' 'datum=WGS84' 'no_defs' '' END CL

Re: [mapserver-users] ...Question

2008-12-16 Thread Steve Lime
Looking like March/April 09. With a spatial DB extension you can do this stuff now. Steve >>> On 12/16/2008 at 9:12 AM, in message <4b56aefe0812160712u27109679hdb10df82d9d84...@mail.gmail.com>, "Valeria Muñoz" wrote: > Steve > do you know when will be release?? > > greetings > 2008/12/16 Steve

Re: [mapserver-users] ...Question

2008-12-16 Thread Valeria Muñoz
Steve do you know when will be release?? greetings 2008/12/16 Steve Lime > Text expressions don't support functions. They should, and likely will, > in the > next release. > > Steve > > >>> "Valeria Muñoz" 12/16/08 7:31 AM >>> > Hi.. > > Exist some command or clause in the MapFile for change t

Re: [mapserver-users] ...Question

2008-12-16 Thread Steve Lime
Text expressions don't support functions. They should, and likely will, in the next release. Steve >>> "Valeria Muñoz" 12/16/08 7:31 AM >>> Hi.. Exist some command or clause in the MapFile for change the text(type) to display in the map of a label from lower to upper or upper to lower? somethin

[mapserver-users] ...Question

2008-12-16 Thread Valeria Muñoz
Hi.. Exist some command or clause in the MapFile for change the text(type) to display in the map of a label from lower to upper or upper to lower? something like: CLASS EXPRESSION ('[HWYLEVEL]' = '1' and '[ONEWAY]'='0') TEXT (lower('[HWYLEVEL]')) greetings __

[mapserver-users] Question related to MapScript

2008-09-03 Thread Roberto Caron
Hi, In our infrastructure, Map Server will be installed on a machine and our Web Apps Servlet will on another machine. Some Web Apps Servlet will have to use MapScript Jar file to create map file. We were wondering if the both must be sit on the same machine or they can leave separate as long a

  1   2   >