Re: [MapServer-users] multiple shapepaths

2023-12-06 Thread Lime, Steve D (MNIT) via MapServer-users
IMHO, if you do a SHAPEPATH at the layer level then you might as well just add the full-path to the DATA element. You’re not really gaining anything with the additional complexity. Did the idea of using runtime variables not pan out? From: MapServer-users On Behalf Of Jan Hartmann via

Re: [MapServer-users] Who remembers the truth about antialiasing?

2023-11-15 Thread Lime, Steve D (MNIT) via MapServer-users
Looking at the code, the keyword is still in place in 8.0. It is recognized in the STYLE object but is silently ignored inside a LABEL object. I didn't check rendering code specifically to see what true vs false values affected. So, I think your conclusions are correct. From: MapServer-users

Re: [MapServer-users] internal MapServer scaling

2023-11-15 Thread Lime, Steve D (MNIT) via MapServer-users
There is not. You'd do that (if it's possible) at the web server configuration level. From: MapServer-users On Behalf Of Marcin Niemyjski via MapServer-users Sent: Wednesday, November 15, 2023 9:49 AM To: Marcin Niemyjski via MapServer-users Subject: [MapServer-users] internal MapServer

Re: [MapServer-users] Docker image for MapServer with PHP-MapScript

2023-10-30 Thread Lime, Steve D (MNIT) via MapServer-users
Map-level metadata lives in the WEB object... From: MapServer-users On Behalf Of Jan Hartmann via MapServer-users Sent: Monday, October 30, 2023 12:46 PM To: Vassilis Chatzigiannakis ; mapserver-users@lists.osgeo.org Subject: Re: [MapServer-users] Docker image for MapServer with PHP-MapScript

Re: [MapServer-users] wms time validation of time parameter against timeextent gives unexpected results

2023-02-09 Thread Lime, Steve D (MNIT) via MapServer-users
So, if you turn on logging, what shows up in terms of Pg queries. -Original Message- From: MapServer-users On Behalf Of Clausen Marcel via MapServer-users Sent: Tuesday, February 7, 2023 7:37 AM To: sdl...@gmail.com Cc: mapserver-users@lists.osgeo.org Subject: Re: [MapServer-users] wms

Re: [MapServer-users] [EXTERNAL] Two regular expressions

2023-02-08 Thread Lime, Steve D (MNIT) via MapServer-users
You can also match either with something like: ^(GERMAN|FRENCH)$ A good resource for testing is https://www.regextester.com/ and there others out there too. --Steve From: MapServer-users On Behalf Of Schylberg Lars Sent: Wednesday, February 8, 2023 2:07 AM To:

Re: [MapServer-users] How to create aliases on mapserver docker image camptocamp/mapserver?

2023-01-06 Thread Lime, Steve D (MNIT) via MapServer-users
What isn't working with the configuration you have in place on docker? The locations aren't virtual hosts so they'd be sharing a mapserver config file. The config file support will fall back to an environment variable if the value isn't set explicitly in the config file - we get that for free

Re: [MapServer-users] Format of numeric query results in GML

2022-12-17 Thread Lime, Steve D (MNIT) via MapServer-users
Hi Tanya: You might want to try using an OGR output format (https://mapserver.org/output/ogr_output.html#ogr-output). It supports GML as well and should provide a little more control and does respect the precision metadata. --Steve From: MapServer-users On Behalf Of TC Haddad Sent: Friday,

Re: [MapServer-users] Filled SVG symbol after switching to Mapserver 8

2022-12-07 Thread Lime, Steve D (MNIT) via MapServer-users
Interestingly the SVG-related regression tests all pass using a more complex SVG file than what you had shared. Using 8.0, the msautotest/misc/data/Road_Works.svg (https://github.com/MapServer/MapServer/blob/branch-8-0/msautotest/misc/data/Road_Works.svg) file renders fine as a point symbol

Re: [MapServer-users] Filled SVG symbol after switching to Mapserver 8

2022-12-07 Thread Lime, Steve D (MNIT) via MapServer-users
Which SVG library are you using - RSVG or Cairo? From: Marcin Niemyjski Sent: Wednesday, December 7, 2022 9:38 AM To: Lime, Steve D (MNIT) ; Marcin Niemyjski via MapServer-users Subject: Re: Filled SVG symbol after switching to Mapserver 8 Steve, link to my svgs:

Re: [MapServer-users] Filled SVG symbol after switching to Mapserver 8

2022-12-07 Thread Lime, Steve D (MNIT) via MapServer-users
Hmmm... I'm not aware of any obvious changes between v.7 and v.8 that would account for the change and nothing jumps out looking at your mapfile. Would you be able to share one of your SVG graphics? --Steve From: MapServer-users On Behalf Of Marcin Niemyjski via MapServer-users Sent:

Re: [MapServer-users] Mapserver on k8s weird behaviour

2022-12-02 Thread Lime, Steve D (MNIT) via MapServer-users
Based on that error message you're not running MapServer 8.0 though. That was an area that changed between v.7 and v.8 and the error message was updated. V.8 outputs something like: msLoadMap(): Regular expression error. Filename validation failed. --Steve From: Marcin Niemyjski Sent:

Re: [MapServer-users] Mapserver on k8s weird behaviour

2022-12-02 Thread Lime, Steve D (MNIT) via MapServer-users
Hi Marcin: Are you using FastCGI? Which version of MapServer? We ran into something similar w/FastCGI and version 8 during development where you'd see the first instance of an error message but then the server error subsequently. It was consistent on some setups but never happened on others.

Re: [MapServer-users] Does MapServer support dot density layers?

2022-11-15 Thread Lime, Steve D (MNIT) via MapServer-users
Not explicitly. There might be a was to simulate something, perhaps doing something in a database to create a randomized set of N points within a polygon based on a value. Could even precompute that I suppose. From: MapServer-users On Behalf Of Kyle Qian Sent: Monday, November 14, 2022 6:23

Re: [MapServer-users] mapserver 8 - CGI map_object substitutions broken?

2022-10-07 Thread Lime, Steve D (MNIT) via MapServer-users
Easy solution - cool. You can do that with straight runsubs and relatively easy validation. Here's a nice document on the topic https://www.regextutorial.org/regex-for-numbers-and-ranges.php. I updated an existing ticket to clean that documentation up and remove some other cruft towards the