[Geoserver-users] WFS 2.0 GetFeature resultType="hits" on APP SCHEMA store returns always numberMatched="0"

2017-08-01 Thread Tomas Kliment
Dear all, I am trying to understand why Geoserver (v2.10.2) WFS 2.0 response as following: http://bolegweb.geof.unizg.hr:2017/geoserver/ows?service=WFS=2.0.0=GetFeature=ugs:GovernmentalService=gml32 =hits returns always value of numberMatched attribute = 0 on app-schema store type. Whereas If

Re: [Geoserver-users] How to use REST to create a coverage from a TIF file with no explicit SRS ?

2017-08-01 Thread Martin Davis
Figured this out... by some tweaks to the REST magic words needed. In case it helps someone else, here's how it finally worked: 1. Delete the existing coverage (if any) curl -s -o /dev/null -k -u %CRED% -XDELETE %HOST%/rest/workspaces/%WS%/coveragestores/%COV%?recurse=true 2. Create the

Re: [Geoserver-users] EPSG:4326 Incorrect WKT - Coordinates Reversed!

2017-08-01 Thread Andrea Aime
On Tue, Aug 1, 2017 at 8:09 PM, Gavin Medley wrote: > Hi, > > I'm using 1.1.0. Shouldn't the axis order be defined by the EPSG official > WKT string? Am I correct in thinking that order[1] and order[2] specify the > coordinate order? > OGC took its dear time to make things

Re: [Geoserver-users] Hide layers in layer group for vector tiles

2017-08-01 Thread Dave Blasby
Excellent - I will close the ticket. Cheers, Dave On Tue, Aug 1, 2017 at 2:14 AM, Dylan Parry wrote: > Hi Dave, > > Apologies, I've been away for a few days and was unable to test it until > this morning. Your fix appears to have worked! > > Thanks, > > On

Re: [Geoserver-users] EPSG:4326 Incorrect WKT - Coordinates Reversed!

2017-08-01 Thread Gavin Medley
Hi, I'm using 1.1.0. Shouldn't the axis order be defined by the EPSG official WKT string? Am I correct in thinking that order[1] and order[2] specify the coordinate order? -Gavin On Tue, Aug 1, 2017 at 11:57 AM, Ian Turton wrote: > Epsg:4326 axis order is a complex topic.

[Geoserver-users] EPSG:4326 Incorrect WKT - Coordinates Reversed!

2017-08-01 Thread Gavin Medley
Hi all, I believe that the WKT for EPGS:4326 in Geoserver is incorrect. Can someone verify? Note the lat lon coordinate order in the following strings. Geoserver displays: GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563,

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Daniele Romagnoli
Hi Filipe, so your data is byte at the end. note that when applying MEAN (+/-)n* STDDEV you should not exceed the input range (0, 255 on bytes). You can try using n=1 or just set 0 instead of negative value. In reference to the histogram percentile computations, you may need to do some math or

[Geoserver-users] WFS GetFeature does not seem to handle the NAMESPACE parameter

2017-08-01 Thread Mathieu Cartoixa
Hi all, I would like to report a possible bug that would affect all versions of WFS, on all versions of GeoServer I have tested so far. Let's take WFS 2.0.0. It is my understanding that the KVP requests are the translation of the default POST requests in XML in a way that can be used with a

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Filipe
Hello Thank you for your reply. I did what you sugested, and we're getting somewhere! using the formulas you sugested: my raster info is Now what can i do to come closer to the original one? (to get that "blueish" on the water) You

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Daniele Romagnoli
Hi Filipe. You may consider running a gdalinfo -stats on your sampledata and report it back so we can provide you additional assistance. If datatype is not byte, you should consider using 3 ChannelSelect to select R,G,B and a specific ContrastEnhancement node on each of them. Then, based on the

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Filipe
seems theres some kind of error: -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Raster-Normalize-tp5330021p5330057.html Sent from the GeoServer - User mailing list archive at Nabble.com. --

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Filipe
Cant seem to set it correctly. always end up with a black image. the min and max values on the percent clip stretch are "0.5". Any thoughts? Again, Thanks for the reply Regards -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Raster-Normalize-tp5330021p5330055.html Sent

Re: [Geoserver-users] Styling: How to draw geometries on top of labels

2017-08-01 Thread Julian Hollingbery
If layer2 is meant to hide information which the user is not authorized to see, then yes, it will be fairly simple for one who is competent with the WMS protocol and a browsers console to bypass this mechanism, and only request layer1. You will need to embed the polygons from layer2 in the

Re: [Geoserver-users] Error installing GDAL

2017-08-01 Thread cm00
I am experiencing this same problem. (Centos 7, Geoserver 2.11.1, GDAL 1.11.4) Should I be installing a different (lower?) version of the GDAL package? Thanks, Chris -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Error-installing-GDAL-tp5328170p5330046.html Sent from the

Re: [Geoserver-users] Styling: How to draw geometries on top of labels

2017-08-01 Thread Ian Turton
You can't do this in a single image, GeoServer puts a lot of effort into saving up the labels and doing conflict resolution etc to make them look nice. This has to happen last in the drawing process. To achieve this you can request two maps one for layer1 and another for layer2 (with transparency

[Geoserver-users] Styling: How to draw geometries on top of labels

2017-08-01 Thread Watermeyer, Andreas
Hi all, we have a layer "layer1" rendered by a css style, consisting of geometries and labels. Under certain circumstances another layer "layer2" shall be displayed on top of it (containing circular poylgons), hiding the geometries and labels "layer2" below. We are currently accomplishing

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Ian Turton
>From a quick look at the ESRI raster ops page - it looks like you need to calculate the fixed values that correspond to the min/max percentages you were using and use those in ClipToMinMax operation based on the distribution of the values in the image histogram. Ian On 1 August 2017 at 12:06,

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Filipe
Hi,you are right. Instead of validate i pressed submit and was acepted. now i have a problem. i can't figure out the correct values. whats the closest algorithm to the "Percent Clip"? Is there another way i could use to achieve the expected result? Thanks for the reply Regards -- View this

Re: [Geoserver-users] Raster Normalize

2017-08-01 Thread Ian Turton
It is right but it is technically invalid SLD so the validator rejects it. It will work fine as it is. Ian On 1 August 2017 at 11:49, Filipe wrote: > Hello, I'm trying to add a raster layer to geoserver. currently i can see > it in ArcGis with a style definition of "RGB

[Geoserver-users] Raster Normalize

2017-08-01 Thread Filipe
Hello,I'm trying to add a raster layer to geoserver.currently i can see it in ArcGis with a style definition of "RGB Composite", all the channels set to the corresponding banc (red, green and blue), and a Stretch of the type "Percent Clip".This gives me an image of something like this:

Re: [Geoserver-users] Hide layers in layer group for vector tiles

2017-08-01 Thread Dylan Parry
Hi Dave, Apologies, I've been away for a few days and was unable to test it until this morning. Your fix appears to have worked! Thanks, On 31/07/17 23:02, Dave Blasby wrote: Hi, Dylan, Did it work for you? Thanks, Dave On Fri, Jul 28, 2017 at 10:49 AM, Dave Blasby