Re: [mapserver-users] MapServer on Intel Atom?

2009-01-13 Thread Milo van der Linden
Just out of curiosity, With what reason would you like to have a mapserver on a mobile device? I assume mostly to have some sort of localhost connection from a local application, and in that case, I would opt for a solution where one can for instance download raster-tiles from a server to the

Re: [mapserver-users] MapServer on Intel Atom?

2009-01-13 Thread Milo van der Linden
Oops, sorry. Should have read the initial post, for demonstration purposes, using datasets that are not to big sounds possible to me. Dan Little wrote: I agree with where Jukka is going... Raster layers are usually pretty fast so long as they are tuned correctly. - Original Message

Re: [mapserver-users] Show WFS layer

2009-01-13 Thread Alexandre Dube
Maybe this could help : http://faq.openlayers.org/wfs/ Best of luck, Alexandre Peesjee wrote: Hi, i'm new to Mapserver, i succesfully added a WMS layer from a shapefile, but now i want to add a WFS layer that connects to my Sybase (via ODBC). I followed the doc on Virtual Spatial data. This

Re: [mapserver-users] Show WFS layer

2009-01-13 Thread Rahkonen Jukka
Hi, I am not sure how strict uDig is with the getCapabilities response, but if uDig is trying to utilise the information it is reading from the document then I suppose it will fail. Your server is advertising the following as getMap onlineResource: GetFeature ... Get

Re: [mapserver-users] Show WFS layer

2009-01-13 Thread Peesjee
Hi, i tried it, no luck here. I added some WMS specs in my mapfile, and i can see my two test records when i open the layer as a WMS in openlayers... but, if i may, let me ask another question... I'm very new in this technology, i'm just testing all this, because we want to now if we can

Re: [mapserver-users] Mapserver.org sample ...

2009-01-13 Thread Christopher Schmidt
On Tue, Jan 13, 2009 at 12:57:24PM -0300, Paul james wrote: Thanks Tamas... Is It possible to use OpenLayers with mapscript? In what way? OpenLayers would typically take over many of the roles that a custom application would -- building your application in Javascript instead of PHP. Depending

Re: [mapserver-users] Mapserver.org sample ...

2009-01-13 Thread Paul james
Thanks ! Can you point me some quickstart with openlayer + mapserver + tilecache? I´m kind lost on it... I have a custom app using mapscript + postgis... And I´d like to make a version using openlayers and tilecache... On Tue, Jan 13, 2009 at 2:03 PM, Christopher Schmidt

Re: [mapserver-users] Map File for Open Street Map symbology

2009-01-13 Thread Stephen Woodbridge
thomas bonfort wrote: http://code.google.com/p/mapserver-utils/source/browse/trunk/ you'll need the code from the mapserver graphics sandbox (rev 8254 is preferred as it doesn't have the cairo code in it yet) Hi Thomas, I have been looking over your osm mapfile and have a few questions. 1)

[mapserver-users] Need help with build-order of libraries used by mapserver (UTF8 support, SDE, etc)

2009-01-13 Thread Russell McOrmond
On Tue, 6 Jan 2009, Russell McOrmond wrote with Subject: Re: [mapserver-users] Confirmation of status of UTF8 support, and where transcoding to Latin-1 may be happening. I hope people don't mind me posting as I learn things, hoping that it will spark some ideas from other people.

[mapserver-users] GPX format supported?

2009-01-13 Thread bean
Thanks Andreas, An obvious and simple mistake. Sorry to have bothered the list with such a simple question. I am still getting msLoadMap(): Premature End-of-File. I am a relative newbie with mapserver although I have managed to build a 2800 line mapfile of many layer types. This is my

[mapserver-users] Accessing a different type of raster data type

2009-01-13 Thread Roger André
Hi All, I'm curious if you could give me an idea of the level of effort this would take. I have access to a data service at work that will render an array of values in response to a bbox geographic query. I'd like the ability to create a Mapserver raster Layer that uses this service as a data

Re: [mapserver-users] Accessing a different type of raster data type

2009-01-13 Thread Frank Warmerdam
Roger André wrote: Hi All, I'm curious if you could give me an idea of the level of effort this would take. I have access to a data service at work that will render an array of values in response to a bbox geographic query. I'd like the ability to create a Mapserver raster Layer that uses

[mapserver-users] GPX format supported?

2009-01-13 Thread bean
Hi Steve, Thanks for the rapid reply. I have removed the layers one by one. They all parse right but this GPX layer. Curiously if I remove the class statement (including the first end statement) I get no parse errors but the layer fails to render. Still puzzled, bean Bean, You probably

Re: [mapserver-users] Mapserver queries for line layer

2009-01-13 Thread Steve Lime
Here's an example that uses OpenLayers with a hover event to fire queries off to MapServer: http://www.dnr.state.mn.us/waters/csg/index_copy.html The relevant javascript is at: http://maps.dnr.state.mn.us/waters/csg/current_test.js When ever the user pauses the app fires a query off to

Re: [mapserver-users] Accessing a different type of raster data type

2009-01-13 Thread Roger André
Frank, you rock. Thanks for the links. Roger -- On Tue, Jan 13, 2009 at 1:17 PM, Frank Warmerdam warmer...@pobox.comwrote: Roger André wrote: Hi All, I'm curious if you could give me an idea of the level of effort this would take. I have access to a data service at work that will render

Re: [mapserver-users] GPX format supported?

2009-01-13 Thread Stephen Woodbridge
b...@warbaby.com wrote: Hi Steve, Thanks for the rapid reply. I have removed the layers one by one. They all parse right but this GPX layer. Curiously if I remove the class statement (including the first end statement) I get no parse errors but the layer fails to render. Still puzzled, bean

Re: [mapserver-users] Where is the raster classifier code in Mapserver?

2009-01-13 Thread Frank Warmerdam
Roger André wrote: This is probably a question for Frank W.. I'd like to re-write the raster classifier in Mapserver so that it can apply a linear color gradient using LUTs. I've got code written already to do this with the Python API to GDAL, and would like to be able to do the same thing

RE: [mapserver-users] GPX format supported?

2009-01-13 Thread Fawcett, David
Don't forget to set STATUS to DEFAULT, or explicitly request the layer by name in the URL request. David. -Original Message- From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of Stephen Woodbridge Sent: Tuesday, January 13, 2009 3:59

Re: [mapserver-users] Where is the raster classifier code in Mapserver?

2009-01-13 Thread Roger André
Very cool. Looks like it is scheduled for inclusion in Release 5.4., and even better, the code is still functional. I'm playing around with it now, and am easily applying a gradient to a single range of values, but have not yet figured out how to apply different color gradients to different

Re: [mapserver-users] GPX format supported?

2009-01-13 Thread Jeff McKenna
b...@warbaby.com wrote: Thanks Andreas, An obvious and simple mistake. Sorry to have bothered the list with such a simple question. I am still getting msLoadMap(): Premature End-of-File. I am a relative newbie with mapserver although I have managed to build a 2800 line mapfile of many

[mapserver-users] GPX format supported?

2009-01-13 Thread bean
Hi Jeff, Thanks for the reply. I ran ogrinfo on both waypoints and track_points. waypoints returns 147 entries and track_points returns 0 entries (there are no tracks recorded in my GPS unit at this point, just trying to keep it simple for now). This is returned from a Garmin eTrex Venture

[mapserver-users] Can I turn off bounding box check for postgis query?

2009-01-13 Thread Ben Madin
G'day all, This might be a postgis list question, but I thought I'd try here first. I have a table with approx 4 million rows, each with a date and start and end point (and some other). This table would probably increase by around 300 000 rows per month. The table is indexed and clustered