[mapserver-users] Pseudo-3D buildings

2013-09-25 Thread Rahkonen Jukka
Hi,

See these buildings which Andrei Nacu has drawn with OpenJUMP
http://img855.imageshack.us/img855/8340/b072.png

Buildings are constructed from 3 layers:
- OSM building polygons (orange)
- underneath them buffered polygons (buffer 2, round join) with dark grey 
outline and light grey fill
- above a copy of the building polygons with offsets dx=3 , dy=3, again with 
dark grey outline and light grey fill

I would like to see mapserver CLASS which gives the same result.

-Jukka Rahkonen-


___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] Presentation slides for MapServer Project Status Report at FOSS4G 2013

2013-09-25 Thread Daniel Morissette

Hi MapServer-users and -dev

FYI a copy of the MapServer Project Report slides presented at FOSS4G 
last week are available online at


http://talks.mapgears.com/en/conf/2013-09-21-mapserver-project-status-report

I received off-list questions about how to use some of the features 
since the presentation only provided a quick overview of each one. If 
you are looking for more info on any of the new 6.2 or 6.4 features, 
then I suggest that you start by looking at the 6.2 and 6.4 release 
announcements:


http://mapserver.org/development/announce/6-2.html

and

http://mapserver.org/development/announce/6-4.html

Thanks to all project members who were there and helped with 
updating/preparing the presentation.


--
Daniel Morissette
http://www.mapgears.com/
Provider of Professional MapServer Support since 2000

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] Pseudo-3D buildings

2013-09-25 Thread thomas bonfort
CLASS
  STYLE
 COLOR _building_clr
 OUTLINECOLOR _building_ol_clr
 WIDTH 1
 GEOMTRANSFORM (buffer([shape],2))
  END
  STYLE
 COLOR 255 0 0
 OPACITY 25
  END
  STYLE
 COLOR _building_clr
 OUTLINECOLOR _building_ol_clr
 WIDTH 1
 OFFSET 3 3
  END
END

works for me ...

On 25 September 2013 14:44, Rahkonen Jukka  wrote:
> Hi,
>
> See these buildings which Andrei Nacu has drawn with OpenJUMP
> http://img855.imageshack.us/img855/8340/b072.png
>
> Buildings are constructed from 3 layers:
> - OSM building polygons (orange)
> - underneath them buffered polygons (buffer 2, round join) with dark grey 
> outline and light grey fill
> - above a copy of the building polygons with offsets dx=3 , dy=3, again with 
> dark grey outline and light grey fill
>
> I would like to see mapserver CLASS which gives the same result.
>
> -Jukka Rahkonen-
>
>
> ___
> mapserver-users mailing list
> mapserver-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] Pseudo-3D buildings

2013-09-25 Thread thomas bonfort
On 25 September 2013 16:35, Basques, Bob (CI-StPaul)
 wrote:
> Hmmm, can the OFFSET values be database driven to fake heights of buildings?  
> Talking to myself here, I could even make a building shadow too with another 
> STYLE . . . .
no it is not data driven
>
> Actually, I guess a better question is, can any value anywhere in the MAPFILE 
> be data driven, or is OFFSET not capable?  Didn't there used to be some 
> values that couldn't be passed in this manner?
all data driven STYLE members have been added "by hand" when there was
a need for them. adding a new one (e.g. offset) is a relatively easy
patch to implement

>
> Bobb
>
>
>
> -Original Message-
> From: mapserver-users-boun...@lists.osgeo.org 
> [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of thomas bonfort
> Sent: Wednesday, September 25, 2013 8:22 AM
> To: Rahkonen Jukka
> Cc: Mapserver-Users (mapserver-users@lists.osgeo.org)
> Subject: Re: [mapserver-users] Pseudo-3D buildings
>
> CLASS
>   STYLE
>  COLOR _building_clr
>  OUTLINECOLOR _building_ol_clr
>  WIDTH 1
>  GEOMTRANSFORM (buffer([shape],2))
>   END
>   STYLE
>  COLOR 255 0 0
>  OPACITY 25
>   END
>   STYLE
>  COLOR _building_clr
>  OUTLINECOLOR _building_ol_clr
>  WIDTH 1
>  OFFSET 3 3
>   END
> END
>
> works for me ...
>
> On 25 September 2013 14:44, Rahkonen Jukka  wrote:
>> Hi,
>>
>> See these buildings which Andrei Nacu has drawn with OpenJUMP
>> http://img855.imageshack.us/img855/8340/b072.png
>>
>> Buildings are constructed from 3 layers:
>> - OSM building polygons (orange)
>> - underneath them buffered polygons (buffer 2, round join) with dark
>> grey outline and light grey fill
>> - above a copy of the building polygons with offsets dx=3 , dy=3,
>> again with dark grey outline and light grey fill
>>
>> I would like to see mapserver CLASS which gives the same result.
>>
>> -Jukka Rahkonen-
>>
>>
>> ___
>> mapserver-users mailing list
>> mapserver-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapserver-users
> ___
> mapserver-users mailing list
> mapserver-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
>
>
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] Pseudo-3D buildings

2013-09-25 Thread Basques, Bob (CI-StPaul)
Hmmm, can the OFFSET values be database driven to fake heights of buildings?  
Talking to myself here, I could even make a building shadow too with another 
STYLE . . . .

Actually, I guess a better question is, can any value anywhere in the MAPFILE 
be data driven, or is OFFSET not capable?  Didn't there used to be some values 
that couldn't be passed in this manner?

Bobb



-Original Message-
From: mapserver-users-boun...@lists.osgeo.org 
[mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of thomas bonfort
Sent: Wednesday, September 25, 2013 8:22 AM
To: Rahkonen Jukka
Cc: Mapserver-Users (mapserver-users@lists.osgeo.org)
Subject: Re: [mapserver-users] Pseudo-3D buildings

CLASS
  STYLE
 COLOR _building_clr
 OUTLINECOLOR _building_ol_clr
 WIDTH 1
 GEOMTRANSFORM (buffer([shape],2))
  END
  STYLE
 COLOR 255 0 0
 OPACITY 25
  END
  STYLE
 COLOR _building_clr
 OUTLINECOLOR _building_ol_clr
 WIDTH 1
 OFFSET 3 3
  END
END

works for me ...

On 25 September 2013 14:44, Rahkonen Jukka  wrote:
> Hi,
>
> See these buildings which Andrei Nacu has drawn with OpenJUMP 
> http://img855.imageshack.us/img855/8340/b072.png
>
> Buildings are constructed from 3 layers:
> - OSM building polygons (orange)
> - underneath them buffered polygons (buffer 2, round join) with dark 
> grey outline and light grey fill
> - above a copy of the building polygons with offsets dx=3 , dy=3, 
> again with dark grey outline and light grey fill
>
> I would like to see mapserver CLASS which gives the same result.
>
> -Jukka Rahkonen-
>
>
> ___
> mapserver-users mailing list
> mapserver-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] Can variables be used in "PROCESSING"?

2013-09-25 Thread Rahkonen Jukka
Hi,

Is this list correct http://mapserver.org/cgi/runsub.html#runsub? It does not 
mention PROCESSING.

I have been thinking that it would be cool to have a WMS client which could 
adjust on-the-fly from the client side
-  PROCESSING "BANDS=1,2,3" for making diffferent RGB versions of multi-channel 
images
- LUT, LUT_1, LUT_2 and LUT_3 for adjusting colours on-the-fly
- SCALE, SCALE_1, SCALE_2 and SCALE_3 for the same and especially for setting 
16-bit DEMs or measument data into visible range for on-screen work.

Some clever individual could perhaps make an OpenLayers demo with cool controls 
like sliders and dragable LUT-curves.

By fiddling with RESAMPLE and OVERSAMPLE_RATIO it would also be possible to get 
images fast into screen but also with top quality if that is needed for 
printing.

-Jukka Rahkonen-
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] RE Can variables be used in "PROCESSING"?

2013-09-25 Thread Steve . Toutant
I needed that for CHARTS as well
https://github.com/mapserver/mapserver/issues/4569

See the last comment: "substitutions are not yet enabled on processing 
options, but should be easy to add/implement"

Dont' know if it is plan to do it
Steve





Rahkonen Jukka @lists.osgeo.org 
Envoyé par : mapserver-users-boun...@lists.osgeo.org
2013-09-25 11:57

A
"Mapserver-Users (mapserver-users@lists.osgeo.org)" 

cc

Objet
[mapserver-users] Can variables be used in "PROCESSING"?








Hi,

Is this list correct http://mapserver.org/cgi/runsub.html#runsub? It does 
not mention PROCESSING.

I have been thinking that it would be cool to have a WMS client which 
could adjust on-the-fly from the client side
-  PROCESSING "BANDS=1,2,3" for making diffferent RGB versions of 
multi-channel images
- LUT, LUT_1, LUT_2 and LUT_3 for adjusting colours on-the-fly
- SCALE, SCALE_1, SCALE_2 and SCALE_3 for the same and especially for 
setting 16-bit DEMs or measument data into visible range for on-screen 
work.

Some clever individual could perhaps make an OpenLayers demo with cool 
controls like sliders and dragable LUT-curves.

By fiddling with RESAMPLE and OVERSAMPLE_RATIO it would also be possible 
to get images fast into screen but also with top quality if that is needed 
for printing.

-Jukka Rahkonen-
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users



___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Re: [mapserver-users] RE Can variables be used in "PROCESSING"?

2013-09-25 Thread thomas bonfort
Steve (or Jukka),
If you want to make this happen, contract your favorite MapServer provider
to add it in for you.

best regards,
thomas


On 25 September 2013 18:07,  wrote:

>
> I needed that for CHARTS as well
> https://github.com/mapserver/mapserver/issues/4569
>
> See the last comment: "substitutions are not yet enabled on processing
> options, but should be easy to add/implement"
>
> Dont' know if it is plan to do it
> Steve
>
>
>
>
>  *Rahkonen Jukka @lists.osgeo.org*
> Envoyé par : mapserver-users-boun...@lists.osgeo.org
>
> 2013-09-25 11:57
>   A
> "Mapserver-Users (mapserver-users@lists.osgeo.org)" <
> mapserver-users@lists.osgeo.org>
> cc
>   Objet
> [mapserver-users] Can variables be used in "PROCESSING"?
>
>
>
>
>
>
> Hi,
>
> Is this list correct http://mapserver.org/cgi/runsub.html#runsub? It does
> not mention PROCESSING.
>
> I have been thinking that it would be cool to have a WMS client which
> could adjust on-the-fly from the client side
> -  PROCESSING "BANDS=1,2,3" for making diffferent RGB versions of
> multi-channel images
> - LUT, LUT_1, LUT_2 and LUT_3 for adjusting colours on-the-fly
> - SCALE, SCALE_1, SCALE_2 and SCALE_3 for the same and especially for
> setting 16-bit DEMs or measument data into visible range for on-screen work.
>
> Some clever individual could perhaps make an OpenLayers demo with cool
> controls like sliders and dragable LUT-curves.
>
> By fiddling with RESAMPLE and OVERSAMPLE_RATIO it would also be possible
> to get images fast into screen but also with top quality if that is needed
> for printing.
>
> -Jukka Rahkonen-
> ___
> mapserver-users mailing list
> mapserver-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
>
>
>
>
> ___
> mapserver-users mailing list
> mapserver-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
>
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Re: [mapserver-users] Submitting filter does not filter - returns all features

2013-09-25 Thread tday
Thanks for the advice. I have not yet gotten the DWithin to work, however, I
was able to put together a successful Intersects filter and I'm going to
work with that for now.

I suspect you are right about the units being at the root of the problem.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Re-Submitting-filter-does-not-filter-returns-all-features-tp5079619p5080013.html
Sent from the Mapserver - User mailing list archive at Nabble.com.
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] Mapcache.exe for IIS 7

2013-09-25 Thread Arun Cherian
Is there a binary for mapcache.exe packaged as part of a distribution that
can be used via FCGI in IIS? If not, would it be better to compile with
VS2012 as VS2010 doesn't handle C99 style variable declarations very well?
Has anyone tried with something else, perhaps MinGW?

Thanks,
Arun
___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users