Re: [Geoserver-users] Setting AUTO CRSes

2021-06-29 Thread Jim Hughes
Cheers, Jim On 6/28/2021 6:46 PM, Jody Garnett wrote: The clients are supposed to be smart enough to pass in the lat/lon when making the getmap request. I am not sure if any clients are outside of testbeds. -- Jody Garnett On Mon, 28 Jun 2021 at 15:35, Jim Hughes <mailto:jhug...@ccri.co

[Geoserver-users] Setting AUTO CRSes

2021-06-28 Thread Jim Hughes
Hi all, I see that GeoTools has a few auto projections[1].  I tried setting them in the GeoServer UI and that isn't working as I would hope/expect.  The strings I tried were variations on "AUTO:97002,-74,40.7". Incidentally, that does work in a WFS 2.0 request. Is it possible to set the CRS

Re: [Geoserver-users] GeoServer Support

2021-06-22 Thread Jim Hughes
Hi Nikola, As a guess, if your setup is doing any proxying, you may need to configure the Proxy Base URL. https://geoserver-pdf.readthedocs.io/en/stable/webadmin/server/globalsettings.html#global-setting-fields If that doesn't do it, as Brad suggested, you may need to provide some more

Re: [Geoserver-users] WCS support for geoserver extension layers

2021-05-04 Thread Jim Hughes
Hi Norman, I think I hit that same kind of issue when implementing raster support in GeoMesa with Accumulo years ago.  If it is the same issue, we got around by guessing when GeoServer was making a registration request and GeoMesa returned a blank image with the requested envelope[1]. At

Re: [Geoserver-users] WPS Query process not sending filters into PostGIS query

2021-04-27 Thread Jim Hughes
Hi Jason, I don't think this is a technically a bug.  The Process you are using comes from GeoTools; its input assumes that it gets a SimpleFeatureCollection, some attributes, and a filter.  When GeoServer is running a WPS, in your request, the block after "features" is calling for all the

Re: [Geoserver-users] Kubernetes ingress: HTTP Status 400 – Bad Request

2021-02-08 Thread Jim Hughes
Hi Helge, You may need to configure the proxy URL: https://docs.geoserver.org/stable/en/user/configuration/globalsettings.html#proxy-base-url. GeoServer uses info about its hostname to generate responses and webpages.  If GeoServer doesn't know what it ought to report its URL as, then

Re: [Geoserver-users] gs: HeatMap "nonstandard"

2021-02-01 Thread Jim Hughes
Hi Fernando, Depending on how the data is organized this may be possible.  The HeatMap takes an optional weightAttr.  Instead of having a value of "1" for each value, it would add up the price at each point. In some cases, maybe that'd be ok. If not, you may have to figure out some way to

Re: [Geoserver-users] A later Freemarker engine than 2.3.18?

2020-11-25 Thread Jim Hughes
Hi David, Good question.  I doubt anyone has tried, but that's just a guess. There are two quick options which you might try: First, if the library's API has stayed constant / stable, you may just be able to replace the older jar with a newer one and have things just work.  This may enable

Re: [Geoserver-users] Does GeoServer work with abfs (azure blob filesystem)

2020-10-26 Thread Jim Hughes
Hi Joris, Good question.  GeoServer does not ship with any Hadoop code by default.  Several of the interfaces in GeoTools and GeoServer do properly respect Java URL / URL FactoryHandlers, etc.  When those things line up, one can use GeoServer with different URLs for a number of really,

Re: [Geoserver-users] Slicing geoserver data directory

2020-10-06 Thread Jim Hughes
Hi Jody, Related to the second suggestion... is the Backup and Restore community module required to use the catalog parametrization? Cheers, Jim On 10/6/2020 1:38 AM, Jody Garnett wrote: A couple options: - Use absolute paths (to a network share or fast disk or where your actual data

[Geoserver-users] Cross-layer query question

2020-07-22 Thread Jim Hughes
Hi all, I'm interested in running one query which would return a list of ids or attributes that I could look up quickly against another layer. The cross-layer filtering[1] is getting me close, but not quite there, and I wanted to ask for any suggestions that I'm missing. To look up a

Re: [Geoserver-users] WPS extra functionality libraries

2020-06-01 Thread Jim Hughes
Hi David, Neat!  Nice find! GeoMesa implements some WPSes and they are documented here: https://www.geomesa.org/documentation/current/user/process.html. Generally, GeoMesa has implemented WPSes as a way to 'push down' work to the underlying distributed databases that GeoMesa leverages. 

Re: [Geoserver-users] Release date for GeoServer 2.17.1

2020-05-29 Thread Jim Hughes
Hi Andreas, The release schedule is maintained here: https://github.com/geoserver/geoserver/wiki/Release-Schedule. The expected date for GeoServer 2.17.1 was May 18th, 2020. There have been discussions on the GeoTools Devel and GeoServer Devel lists about some last minute PRs being merged,

Re: [Geoserver-users] Heatmap rendering with fixed BBOX

2020-05-19 Thread Jim Hughes
Hi Chris, One approach is to render the heatmap at a suitable resolution and then save the result as a format that GeoServer can render (such as GeoTiff).  That GeoTiff can be registered as a new layer, and you can serve up that layer.  Users/clients would be able to zoom around that layer

Re: [Geoserver-users] GeoServer AD Integration

2020-03-25 Thread Jim Hughes
Hi Vera, I haven't tried to do exactly what you are attempting, so I can't offer direct help. That said, just as sanity check, have you read through the security part of the GeoServer docs (https://docs.geoserver.org/latest/en/user/security/index.html)? It is fairly thorough. You could

Re: [Geoserver-users] openlayers layer preview trying to load css and js on http, but server is on https

2020-03-12 Thread Jim Hughes
under the webapps dir. *From:*Jim Hughes mailto:jhug...@ccri.com>> *Sent:* Thursday, 12 March 2020 10:30 *To:* geoserver-users@lists.sourceforge.net <mailto:geoserver-users@lists.sourceforge.net> *Subject:* Re: [Geoserver-users] openlayers layer preview trying to load

Re: [Geoserver-users] openlayers layer preview trying to load css and js on http, but server is on https

2020-03-11 Thread Jim Hughes
Hi Phil, The OpenLayers ftl template is here[1], and it doesn't specify http.  It appears that there's an attempt between the ftl and [2] to use whatever protocol you used when requesting the preview page. If you visited the page with https and it is redirecting you to http for the ol.css

Re: [Geoserver-users] SLD time functions

2020-01-09 Thread Jim Hughes
Hi, To answer #1, SPI is the Java 'Service Provider Interface'.  It is one option on the JVM to provide concrete implementations to interfaces at runtime[1].  To create the jar, you'd need to compile your class and make sure to include the file in META-INF/services that Andrea mentioned. 

Re: [Geoserver-users] Is it possible to change the default Cache-Control response header response for GetCapabilities requests?

2019-10-17 Thread Jim Hughes
that might illustrate how to do this?  Also, from reading the commenting from the github link you passed along, it seems as though I can set this variable as a Linux system variable.  Thanks again. Best, Todd On Thu, Oct 17, 2019 at 10:05 AM Jim Hughes <mailto:jhug...@ccri.com>> wrote:

Re: [Geoserver-users] Is it possible to change the default Cache-Control response header response for GetCapabilities requests?

2019-10-17 Thread Jim Hughes
. Best, Todd On Wed, Oct 16, 2019 at 2:54 PM Jim Hughes <mailto:jhug...@ccri.com>> wrote: Hi Todd, Good question.  I grepped through the source code and found this class[1].  I haven't tried it myself in production, but I tried it in the unit test framework.  It l

Re: [Geoserver-users] Is it possible to change the default Cache-Control response header response for GetCapabilities requests?

2019-10-16 Thread Jim Hughes
Hi Todd, Good question.  I grepped through the source code and found this class[1].  I haven't tried it myself in production, but I tried it in the unit test framework.  It looks like setting CAPABILITIES_CACHE_CONTROL_ENABLED to "false" will let you have control over the headers. Cheers,

Re: [Geoserver-users] Cross-layer filtering ISSUE

2019-08-09 Thread Jim Hughes
Hi, The documentation notes that you could use 'INCLUDE' as the filter if you don't want to restrict what comes back from the other layer. I haven't used this plugin too much myself; let us know if that works for you!

Re: [Geoserver-users] Composing WPS's in SLDs/YSLDs

2019-08-06 Thread Jim Hughes
transformations are working all that well in SLD either, it's not a common use case (not common enough to have it show up in sponsored projects so far, at least). Cheers Andrea On Sat, Aug 3, 2019 at 2:51 AM Jim Hughes <mailto:jhug...@ccri.com>> wrote: Hi all, I know there's a some docu

[Geoserver-users] Composing WPS's in SLDs/YSLDs

2019-08-02 Thread Jim Hughes
Hi all, I know there's a some documentation for chaining WPS's as XML, and I know that WPS's can be used in SLDs as transforms...  Are there any examples of chained functions/WPS's in (Y)SLD? I tried to look in the documentation and came up empty. As an example, I'm interested in tossing

[Geoserver-users] GeoFence updates

2019-04-25 Thread Jim Hughes
Hi all, From the State of GeoServer talk, I saw that the internal-to-GeoServer version of GeoFence has received a number of improvements.  Is the external web-app version of GeoFence still intended to be supported as well going forward? I'm curious since managing the access separate from

Re: [Geoserver-users] WFS 2.0.0 in GeoServer with GeoMesa FS plugin is broken: namespace is null

2019-02-28 Thread Jim Hughes
Hi Christian, Sorry for the trouble with this.  In GeoMesa, we are using the ContentDataStore API, and maybe we've missed something in our implementation.  Emilio pointed out the bit of code that is doing the thing. We tossed in a GeoMesa ticket here to track this:

Re: [Geoserver-users] Known vulnerability in commons-fileupload v1.2.1, used by geoserver

2018-06-07 Thread Jim Hughes
Hi Joe, The GitHub security alerts seem to only be available for JavaScript and Ruby. Is there a scanner which would work with a Maven/JVM project that you can recommend? Cheers, Jim On 06/07/2018 02:18 PM, Joe Murphy wrote: Not to try and start a huge discussion; but since the cat is

Re: [Geoserver-users] filter vs expression performance

2018-06-01 Thread Jim Hughes
Hi Arnaud, This is good question, and I'd be interested to know the answer.  As a gut reaction, I don't think it'll matter too much. That said, there are several variables about this which will be specific to your use case.  The best general advice is probably to set up a way to measure

Re: [Geoserver-users] Authkey module questions

2018-01-19 Thread Jim Hughes
filters by key stuff. Mauro 2018-01-18 23:44 GMT+01:00 Jim Hughes <jhug...@ccri.com>: Hi all, Does the Authkey community module have a UI? I tossed the jar(s) into a GeoServer 2.12.0, and I'm not seeing anything in the GeoServer admin UI. Second, does the Authkey module work with GeoFence

[Geoserver-users] Authkey module questions

2018-01-18 Thread Jim Hughes
Hi all, Does the Authkey community module have a UI?  I tossed the jar(s) into a GeoServer 2.12.0, and I'm not seeing anything in the GeoServer admin UI. Second, does the Authkey module work with GeoFence?  I'd like to be able to restrict Authkey access by applying additional CQL filters by

[Geoserver-users] Quick GeoFence question

2017-12-17 Thread Jim Hughes
Hi all, I'm trying out GeoFence (https://github.com/geoserver/geofence) in order to apply CQL on a per-user basis.  As a sanity check, that's only available with the standalone GeoFence deployment, correct? Is there a page which tells the differences between the embedded and standalone

Re: [Geoserver-users] Single Sign On (SSO) for Geoserver

2017-09-19 Thread Jim Hughes
Hi Ricardo, GeoServer has a rich, powerful, and (most importantly for you) extensible security system. For starters, I'd suggest reading through the documentation and trying out some of the tutorials here (http://docs.geoserver.org/latest/en/user/security/index.html#security). I imagine

Re: [Geoserver-users] Sharing the GeoServer data folder on a S3 bucket

2017-08-04 Thread Jim Hughes
Hi Corina, This is a great question. I haven't tried what you are suggesting, but I'd like to highlight a community module which provides a similar option. The JDBC Config module (http://docs.geoserver.org/stable/en/user/community/jdbcconfig/index.html) lets one run a GeoServer where the

Re: [Geoserver-users] MIssing REST datastores Swagger doc?

2017-05-24 Thread Jim Hughes
Hi Martin, Looks like there is link missing for this yaml: http://docs.geoserver.org/api/#/1.0.0/datastores.yaml. Cheers, Jim On 05/24/2017 04:22 PM, Martin Davis wrote: Is the documentation for the REST datastores resource missing in the new REST API Swagger doc? It's not listed here:

Re: [Geoserver-users] How to use viewParams and cqlFilter in WPS request?

2017-05-04 Thread Jim Hughes
Hi, I'm also interested in your question. My understanding is that WPS takes a feature collection defined by a ' wfs:GetFeature' XML block. If you can use OpenLayers to output that XML that you are sending, that might be worth discussing. From my testing/research/attempts, it looks like

Re: [Geoserver-users] Custom InfluxDB datastore - implementing filtering

2017-01-17 Thread Jim Hughes
Hi Maja, Ian's dead-on. If you are calling to InfluxDB directly, your options are to handle certain filters manually (which is great for a prototype!) or implement a visitor (again, you can focus on certain predicates first). As an alternative solution, it appears that there is at least one

Re: [Geoserver-users] InfluxDB as data source

2016-11-30 Thread Jim Hughes
Hi Maja, As far as I know, there is no existing implementation of the GeoTools DataStore interface for InfluxDB. If you are interested in learning how to implement such a DataStore, I'd point out this tutorial: http://docs.geotools.org/stable/userguide/tutorial/datastore/index.html

Re: [Geoserver-users] SSL Module Not Found

2016-11-21 Thread Jim Hughes
Hi Clifford, I'd imagine it would; if I recall, the warning is from Jetty. Cheers, Jim On 11/21/2016 03:50 PM, Clifford Snow wrote: On Mon, Nov 21, 2016 at 12:19 PM, Jim Hughes <jn...@ccri.com <mailto:jn...@ccri.com>> wrote: Are you seeing this warning when using the Jett

Re: [Geoserver-users] SSL Module Not Found

2016-11-21 Thread Jim Hughes
Hi Clifford, Are you seeing this warning when using the Jetty quickstart? Generally, I view that deployment option as a way to see things work fast; for a production deployment, you might need to invest in using Tomcat or Wildfly, etc. Cheers, Jim On 11/21/2016 02:39 PM, Clifford Snow

[Geoserver-users] In-memory geo-databases

2016-08-16 Thread Jim Hughes
Hi all, I'm looking to have an in-memory database in GeoServer which can handle a few million SimpleFeatures with great spatial indexing and some secondary indices on other non-spatial columns. To that end, I have two quick questions: 1. Which in-memory GeoTools datastores have folked used

Re: [Geoserver-users] Combining comparison and spatial predicates in CQL

2016-08-07 Thread Jim Hughes
Hi Andrea, Thanks for noting the WFS 2.0 joins (I obviously didn't know about them:)). Is the join delegated to the GeoTools DataStore level or does GeoServer execute queries across the layers? Cheers, Jim On 8/7/2016 10:52 AM, Andrea Aime wrote: On Sun, Aug 7, 2016 at 4:28 PM, Jim Hughes

Re: [Geoserver-users] Combining comparison and spatial predicates in CQL

2016-08-07 Thread Jim Hughes
Hi Saka, It sounds like you want to select a list of features and then find additional features within a small distance of the first features? CQL by itself (with no functions) is not powerful enough to express that in one go. I think of CQL as the 'where' clause for a single SQL statement

Re: [Geoserver-users] [Geoserver-devel] [Geotools-devel] Call for Online MiniSprint

2016-07-11 Thread Jim Hughes
Hi all, I'd like to participate as well; maybe you can kick a few of the easy tasks my way. Cheers, Jim On 7/11/2016 7:15 PM, Ben Caradoc-Davies wrote: > Count me in! > > Kind regards, > Ben. > > On 12/07/16 10:28, Jody Garnett wrote: >> I tomorrows meeting I would like to firmly establish

Re: [Geoserver-users] Disable / alter Geoserver web admin interface for    external users

2016-07-11 Thread Jim Hughes
Hi Chris, Ah! If you need separate access for an ip block, you might want to explore GeoFence: https://github.com/geoserver/geofence/wiki/Main-concepts. Not all the features are available in the module version, so you may need to install a stand-alone GeoFence. Cheers, Jim On 07/11/2016

Re: [Geoserver-users] Disable / alter Geoserver web admin interface for external users

2016-07-11 Thread Jim Hughes
Hi Chris, GeoServer has a rich security module. Briefly, users can be authenticated and authorized to have access to specific workspaces and data layers with varied read/write/admin options. Additionally, a user can be configured to administer GeoServer. With those options, you can

Re: [Geoserver-users] Restrict simultaneous logins for same user

2016-07-08 Thread Jim Hughes
Hi Sakis, Do you want to restrict users to one http session? E.g., you'd be able to log into the web ui in two tabs/windows and use a tiled slippy map (which would make multiple WMS requests at the same time). I'm unaware of any quick way to do that. I think one could create an

Re: [Geoserver-users] CQL_FILTER with IN

2016-06-27 Thread Jim Hughes
Hi Andrea, We've hit similar issues in query planning for GeoMesa for queries like this. If I understand correctly, "attr IN(value1, value2, ...)" is part of ECQL. While I know that GeoTools/GeoServer could not depend on OpenLayers to integrate with GeoServer extensions, would there be any

Re: [Geoserver-users] CQL_FILTER with IN

2016-06-27 Thread Jim Hughes
Hi Eva, Which database are you using? There may be an optimization which can be made for your database. By chance is the data something which could be shared publicly? Another possibility is that the slowness is a bug in a GeoTools datastore implementation. If so, it'd be great to have a

Re: [Geoserver-users] How to serve large spatio-temporal dataset with GeoServer?

2016-06-21 Thread Jim Hughes
Hi Peter, Are you always querying for a short time period? If so, you might get the most mileage out of a SQL database (Oracle/Postgres) by creating an index on time and providing any vendor specific query hints to leverage that index. From a GeoTools/GeoServer perspective, WMS/WFS queries

Re: [Geoserver-users] Admin login access

2016-06-09 Thread Jim Hughes
Hi Kevin, I've seen the same thing. From the docs (1), I think the short answer is 'no'. As an option, you could setup a user in JDBC with the default admin's username and password. Cheers, Jim 1.

Re: [Geoserver-users] Restrict access to admin controls based on ip address

2016-06-07 Thread Jim Hughes
Hi Shawn, It looks like that solution is using filtering at the container level (i.e., Tomcat). You might be able to change the to be /web/* instead of *. That should prevent access to the /web/* pages while leaving access to /ows/*,/wfs/*, etc. endpoints. Cheers, Jim On 06/07/2016

[Geoserver-users] Geodetic buffering near the poles

2016-06-07 Thread Jim Hughes
Hi all, I know that there are a number of options for mathematically buffering a point using JTS either directly or via WPS in GeoServer. Are there similar options for geodetically correct buffering operations? I'm particularly interested in buffers which would happen near or at the poles.

Re: [Geoserver-users] User isolation in Geoserver

2016-06-05 Thread Jim Hughes
-org.atlassian.net/browse/GEOS-7429 -Brian On Tue, Feb 16, 2016 at 9:28 AM, Jim Hughes <jn...@ccri.com <mailto:jn...@ccri.com>> wrote: Hi Brian, I'm a bit short on time to help out at the minute. It sounds like you have a pretty clear bug report. I know the issue tra

Re: [Geoserver-users] Reload ImageMosaic store via Rest API

2016-05-31 Thread Jim Hughes
Hi Ivan, We've had a project dig into the ImageMosaic plugin recently. What happens if you use the GeoServer UI to re-'save' the ImageMosaic layer? I've seen that reload just the datastores and layers associated. If that doesn't work for the plugin, there may be a small bit of work

Re: [Geoserver-users] Geoserver - Authentication with LDAP

2016-05-02 Thread Jim Hughes
Hi, No worries. Happy to help. I have two questions/suggestions: First, for your current setup, do you have any of the original *.*.r = * or *.*.w = * entries remaining? That might be causing the issues... Second, have you had a chance to try out the LDAP tutorial here:

Re: [Geoserver-users] Geoserver - Authentication with LDAP

2016-04-25 Thread Jim Hughes
Hi, As an admin in GeoServer, click on "Authentication" under "Security" on the left-hand side. On the page which comes up, under Authentication filters, click the box next to 'remeberme' and then click 'Remove selected'. In terms of documentation, I'd recommend the particular section:

Re: [Geoserver-users] Geoserver - Authentication with LDAP

2016-04-21 Thread Jim Hughes
Hi, As two quick questions/suggestions... 1. Did you remove the 'remember me' bit from the filter chain? 2. Have you confirmed from a logged out session that the anonymous role/user cannot access the layer via the Layer Preview? The first might explain why you are still logged in. Cheers,

Re: [Geoserver-users] User isolation in Geoserver

2016-02-16 Thread Jim Hughes
those settings. Thanks a bunch! -Brian On Fri, Jan 22, 2016 at 7:57 PM, Jim Hughes <jn...@ccri.com <mailto:jn...@ccri.com>> wrote: Hi Brian, As a quick question, when you click on the workspace configuration, is the 'enabled' button checked? Also,

Re: [Geoserver-users] Server error for getMap request...

2016-02-01 Thread Jim Hughes
Hi Tony, Are you actually using GeoServer 2.0? If so, updating may be the first thing to try. Particularly, I'd suggest trying things out with GeoServer 2.8.2 (latest stable) and grabbing the extension from here: http://ares.boundlessgeo.com/geoserver/2.8.x/community-latest/. I'm surprised

Re: [Geoserver-users] GeoServer 2.8.2 - Link is broken?

2016-01-26 Thread Jim Hughes
Hi all, Jody was showing me how to release GeoTools and GeoServer. It looks like we missed a step (or an something automated didn't run). We'll look into it. Sorry for the issues, Jim On 1/26/2016 11:30 AM, Ben Caradoc-Davies wrote: > It appears that the download links have not yet been

Re: [Geoserver-users] GeoServer 2.8.2 - Link is broken?

2016-01-26 Thread Jim Hughes
Hi all, During the GeoServer call, Jody showed me what we missed. Shout if there are any additional issues. Thanks, Jim On 1/26/2016 11:38 AM, Jim Hughes wrote: > Hi all, > > Jody was showing me how to release GeoTools and GeoServer. It looks > like we missed a step (or

Re: [Geoserver-users] User isolation in Geoserver

2016-01-22 Thread Jim Hughes
Hi Brian, As a quick question, when you click on the workspace configuration, is the 'enabled' button checked? Also, I'd suggest adding 'r' and 'w' permissions to the user. I just tried it out that configuration (with 'a', 'r', and 'w' permissions), and the missing piece was that the

[Geoserver-users] Gathering data from multiple layers/sources

2015-11-20 Thread Jim Hughes
Hi all, I'm interested in 'enriching' SimpleFeatures from a GeoTools datastore with data from other vector and/or raster layers. As a concrete example, if I had the location of a building, I might want to return the country it is (from a countries shapefile layer) and the current or

Re: [Geoserver-users] CQL and Time queries

2015-06-15 Thread Jim Hughes
the 'Z'. Still can not understand why this gives the wrong results: intime BETWEEN '2011-03-11 23:01:26' and '2011-03-11 23:09:12' Mario. On Mon, Jun 15, 2015 at 3:21 AM, Jim Hughes jn...@ccri.com mailto:jn...@ccri.com wrote: Hi Mario, From a quick peek at the docs for ECQL(*), you can

Re: [Geoserver-users] CQL and Time queries

2015-06-14 Thread Jim Hughes
Hi Mario, From a quick peek at the docs for ECQL(*), you can specify a 'date-time' by giving the date, the letter 'T', and then the UTC time. Example filters: dtg BETWEEN '-01-01T00:00:00.000Z' AND '-12-31T23:59:59.000Z' or dtg DURING 2010-08-08T00:00:00.000Z/2010-08-08T23:59:59.000Z

[Geoserver-users] GeoJSON TotalFeatures

2015-05-07 Thread Jim Hughes
Hi all, Out of curiosity, is the totalFeatures returned as part of a GeoJSON WFS request used by various clients? My issue is that a GeoMesa user noted that GeoJSON output from the GS Layer Preview page was taking much longer than GML. I found that GeoJSONGetFeatureResponse is making a

Re: [Geoserver-users] Mongodb Extension

2015-05-07 Thread Jim Hughes
Hi Nathan, You might check out Boundless's MongoDB support: https://github.com/boundlessgeo/geoserver-exts/tree/master/mongodb. They'd likely be willing and excited to discuss paid support. Cheers, Jim On 05/07/2015 11:01 AM, Reese, Nathan wrote: The mongodb extension is currently

Re: [Geoserver-users] CSS module questions

2015-04-24 Thread Jim Hughes
On 04/24/2015 02:19 AM, Andrea Aime wrote: On Thu, Apr 23, 2015 at 10:29 PM, Jim Hughes jn...@ccri.com mailto:jn...@ccri.com wrote: Hi Andrea, First, the CSS extension is awesome; thank you for your hard work on it. I have a few quick questions... 1. I am trying to style

[Geoserver-users] CSS module questions

2015-04-23 Thread Jim Hughes
Hi Andrea, First, the CSS extension is awesome; thank you for your hard work on it. I have a few quick questions... 1. I am trying to style GDELT data by EventCode. The first two characters of the EventCode string would be sufficient to name the file I want. I was able to make a separate

Re: [Geoserver-users] WCS return GeoTiff with point Pixels.

2015-04-01 Thread Jim Hughes
Hi Andrea, Thanks for the links; those are incredibly helpful. We are asking since we supporting a use case which involves imagery (pixel by area) and elevation (pixel by point) together. Just to make sure, it sounds like gdal's 'pixel by area' maps to 'pixel is center', right? Thanks

Re: [Geoserver-users] Pluggable Change Notification

2015-01-22 Thread Jim Hughes
Hi Andrea, Jody, Thanks for the responses. I think the CatalogListener is exactly what I'm looking for. Jim On 01/22/2015 02:21 AM, Andrea Aime wrote: On Wed, Jan 21, 2015 at 8:33 PM, Jim Hughes jn...@ccri.com mailto:jn...@ccri.com wrote: Hi all, I'm wondering if there is any

[Geoserver-users] Pluggable Change Notification

2015-01-21 Thread Jim Hughes
Hi all, I'm wondering if there is any existing capability to generate notifications when something of interest in GeoServer changes. For example, if I register a new layer, would there be a way to generate an alert or other message which would let downstream consumers know about the new info

[Geoserver-users] OpenLayers Feature ordering question

2015-01-13 Thread Jim Hughes
Hi all, A GeoMesa user ingested the NYC polygon landmark shapefile (which ships with GeoServer) and registered the layer in GeoServer. They reported that features appeared and disappeared from the OpenLayers preview as they dragged the layer around. I reproduced the error today, and I think