Re: [Geoserver-devel] Implement FIDs for Mapbox vector tiles

2018-08-08 Thread Dave Blasby
Hi, Victor, As someone already noted in your PR - the FID# will not, typically, be unique in a VT because there's multiple layers in the tile. The VT features already have a layer associated with them, so this is likely not going to be too big a concern. I think the GeoServer part is fine -

Re: [Geoserver-devel] [Geotools-devel] upgrade postgresql JDBC driver to 42.1.1 (full binary xfer)

2017-06-06 Thread Dave Blasby
Hi, I was hoping we could merge Ben's PR, which updates the driver version. https://github.com/geotools/geotools/pull/1605 Thanks, Dave On Wed, May 31, 2017 at 4:08 AM, Ben Caradoc-Davies wrote: > CentOS 6 has 8.4.20: >

Re: [Geoserver-devel] upgrade postgresql JDBC driver to 42.1.1 (full binary xfer)

2017-05-30 Thread Dave Blasby
Thanks, Dave On Tue, May 30, 2017 at 10:43 AM, Andrea Aime <andrea.a...@geo-solutions.it> wrote: > On Tue, May 30, 2017 at 7:01 PM, Dave Blasby <dbla...@boundlessgeo.com> > wrote: > >> Hi, Andrea, >> >> Only updating the driver version. >> >> I c

Re: [Geoserver-devel] [Geotools-devel] upgrade postgresql JDBC driver to 42.1.1 (full binary xfer)

2017-05-30 Thread Dave Blasby
ava version: 1.8.0_131, vendor: Oracle Corporation > Java home: /usr/lib/jvm/java-8-openjdk-amd64/jre > Default locale: en_GB, platform encoding: UTF-8 > OS name: "linux", version: "4.9.0-3-amd64", arch: "amd64", family: "unix" > > Kind regards,

Re: [Geoserver-devel] upgrade postgresql JDBC driver to 42.1.1 (full binary xfer)

2017-05-30 Thread Dave Blasby
s store code to leverage the > binary transfer? > > Cheers > Andrea > > On Mon, May 29, 2017 at 11:22 PM, Dave Blasby <dbla...@boundlessgeo.com> > wrote: > >> Hi, >> >> For GeoGig, we noticed that the latest Postgresql JDBC driver (42.1.1) >> n

[Geoserver-devel] upgrade postgresql JDBC driver to 42.1.1 (full binary xfer)

2017-05-29 Thread Dave Blasby
Hi, For GeoGig, we noticed that the latest Postgresql JDBC driver (42.1.1) now allows full-binary data transfer. This is better than 25% less bandwidth than Base64 encoding! I'd like to update the pom.xml from 9.4.1211 to 42.1.1. NOTE: PostGIS could be upgraded to use this as its a big win

[Geoserver-devel] Backup-and-Restore and Resources

2017-05-19 Thread Dave Blasby
Hi, I tried running the backup-and-restore (2.11) community module on a geoserver with GeoGig repositories. GeoGig uses resources to store the configuration of the geogig repositories. On the file system they are in "DATA-DIR/geogig/config/repos/" (a bunch of .xml files). However, when I run

Re: [Geoserver-devel] CapabilitiesCacheHeadersCallback - caches getcap inappropriately (Time Series)

2017-04-04 Thread Dave Blasby
, the "etag" computed above could also be used for > conditional negotiation at the OGC > level. > > Cheers > Andrea > > > On Fri, Mar 31, 2017 at 8:06 PM, Dave Blasby <dbla...@boundlessgeo.com> > wrote: > >> Hi, >> >> I notice

[Geoserver-devel] CapabilitiesCacheHeadersCallback - caches getcap inappropriately (Time Series)

2017-03-31 Thread Dave Blasby
Hi, I noticed that the GetCap document was not up-to-date. When I dug into it, I found that CapabilitiesCacheHeadersCallback was returning a 304 (i.e. no changes). However, this is a timeseries dataset (ie. Time Dimension tab on Layer Publish). (i.e. a GeoGIG or PostGIS dataset with a time

[Geoserver-devel] Timezone handling in WFS

2017-03-30 Thread Dave Blasby
Hi, I'm just trying to track down how geoserver is handling time zones. Here's an example (I've used postgis); # create table date_test(fid integer primary key, geom geometry, date timestamp with time zone, tag text); CREATE TABLE postgis=# insert into date_test values (1,'POINT(0

Re: [Geoserver-devel] WFS-T Insert: Fids being returned in incorrect order

2017-03-21 Thread Dave Blasby
Thanks! On Mar 21, 2017 12:29 AM, "Andrea Aime" <andrea.a...@geo-solutions.it> wrote: On Tue, Mar 21, 2017 at 5:45 AM, Dave Blasby <dbla...@boundlessgeo.com> wrote: > Aside - does anyone know how to have WFS-NG preserve FIDs for inserts? I > havent been able to

[Geoserver-devel] WFS-T Insert: Fids being returned in incorrect order

2017-03-20 Thread Dave Blasby
Hi, I was looking at the WFS-T response for Inserts (it's a list of FIDs). The spec says these should be in the same order as the features in the request's Insert elements. However, I'm seeing these in a "strange" order. I think I've tracked it down to the DefaultFeatureCollection

Re: [Geoserver-devel] Time dimension on Vector Layer is SLOW

2017-01-23 Thread Dave Blasby
value) you will see two queries; 1. unique visitor (Postgis: SELECT DISTINCT ...) to get the LIST of values 2. max visitor (Postgis: SELECT max ...) to get the default value For most datasets (i.e. non-database), this will be 2 full scans of the dataset. Thanks, Dave On Mon, Jan 23, 2017 at 12:57 PM,

[Geoserver-devel] Time dimension on Vector Layer is SLOW

2017-01-23 Thread Dave Blasby
Hi, I'm just starting looking into some slow downs in geoserver when adding a time dimension to a vector layer (i.e. postgis or geogig). By this I mean editing the layer, going to the "Dimensions" Tab and "Enabling" Time or Elevation. A. GetCapabilities gets slow. It does a table scan for each

Re: [Geoserver-devel] Call for Vote: GSIP 138 - Promote Vector Tiles to Extension

2016-10-28 Thread Dave Blasby
;>> >>>> >>>> >>>> >>>> On 18 October 2016 at 22:58, Ben Caradoc-Davies <b...@transient.nz> >>>> wrote: >>>> >>>> +1 to promote gs-vectortiles to extension. Thanks, Dave, for your >>>> eff

[Geoserver-devel] GSIP-138 (vector tiles community module to extension)

2016-10-18 Thread Dave Blasby
Hi, I did some work in the VT community module; * very very minor code clean up (formatting) * integrated one of my old PRs (degenerate geometries filtering) * added some documentation pages https://github.com/geoserver/geoserver/wiki/GSIP-138 I believe it's now ready to move to an extension -

Re: [Geoserver-devel] [Geotools-devel] Feature freeze is upon us

2016-08-31 Thread Dave Blasby
I am still interested in getting VT into an extension for 4.10. I need to do; a) a review of the code, run auto-formatting, verify (c) headers b) Port over the Suite 4.8 documentation to Geoserver documentation, link in the 2 presentations that Andreas and I did at Foss4G. c) make sure the OL3

[Geoserver-devel] Request commit access to maintain Vector Tiles Community Module

2016-07-22 Thread Dave Blasby
Hi, I'd like to request commit access so I can accept pull-requests to the module. Vector Tiles is an important module, and I don't think it's currently being maintained. Thanks, Dave -- What NetFlow Analyzer can do for

Re: [Geoserver-devel] Module status GSIP still in "design and discussion"?

2016-07-11 Thread Dave Blasby
Hi, Andrea, I've been adding status pages for various modules (mostly ones involving native dependencies) - torben has been reviewing them. The status pages have been very useful in debugging install issues. I've moved it down from "discuss" to "active." Not sure if others are working on

Re: [Geoserver-devel] LibJPEGTurbo on OS X

2016-05-26 Thread Dave Blasby
er. > > -- > Jody Garnett > > On 25 May 2016 at 12:02, Dave Blasby <dbla...@boundlessgeo.com> wrote: >> >> Hi, >> >> I was able to confirm that I moded the TJ files (libturbojpeg.a, >> libturbojpeg.dylib, libturbojpeg.jnilib) from /usr/lib to one

Re: [Geoserver-devel] LibJPEGTurbo on OS X

2016-05-25 Thread Dave Blasby
d from TurboJpegUtilities#load() and perhaps replaced with a message telling them to move the files to one of the java.library.path directories? I expect this code; final class TJLoader { static void load() { System.loadLibrary("turbojpeg"); } }; Is auto-generated. Comment

Re: [Geoserver-devel] LibJPEGTurbo on OS X

2016-05-25 Thread Dave Blasby
; > Cheers > Andrea > > > On Wed, May 25, 2016 at 3:06 AM, Dave Blasby <dbla...@boundlessgeo.com> > wrote: >> >> Hi, >> >> I was looking at LibJPEGTurbo on OS X and noticed a possible problem. >> >> Over in TurboJpegUtili

[Geoserver-devel] LibJPEGTurbo on OS X

2016-05-24 Thread Dave Blasby
Hi, I was looking at LibJPEGTurbo on OS X and noticed a possible problem. Over in TurboJpegUtilities#load() public static final String LIBNAME = "turbojpeg"; static void load() { try { System.loadLibrary(LIBNAME); // If this method is called more than once with the same

Re: [Geoserver-devel] GeoServer imageio and GDAL 2.0.x

2016-04-04 Thread Dave Blasby
Even, That sounds very promising - thanks for your message. Did you run into any problems? Did you have a chance to do much testing? Thanks, Dave On Mon, Apr 4, 2016 at 11:01 AM, Even Rouault <even.roua...@spatialys.com> wrote: > Le lundi 04 avril 2016 19:29:49, Dave Blasby a écrit

Re: [Geoserver-devel] GeoServer imageio and GDAL 2.0.x

2016-04-04 Thread Dave Blasby
Hi, Simone, Another Boundless person (Amiram) used GDAL 2 with imageio-ext for a project. Unfortunately, they only tested the MrSid and DTED formats (include DTED as a WCS output). He indicated (for CentOS 7) to use SWIG 1.3 instead of 2.0 (included in centos7). I'll let him comment further.

Re: [Geoserver-devel] reminder GeoServer 2.9-beta scheduled for Thursday 18 Feb

2016-02-17 Thread Dave Blasby
Hi, For GSIP-138 (vector tiles promotion); I'm slowly reviewing the code base - will not be coming out until 2.10. Ignore it for this release. Thanks, Dave -- Site24x7 APM Insight: Get Deep Visibility into Application

[Geoserver-devel] Community Script-Core: test cases problem

2015-10-27 Thread Dave Blasby
Hi, I created another pull request to fix the test case failure in community's Script-core module. This was a trivial whitespace problem in the comparison. PR : https://github.com/geoserver/geoserver/pull/1306 issue: https://osgeo-org.atlassian.net/browse/GEOS-7282 Thanks, dave

[Geoserver-devel] Pulls for WPS changes and fixes

2015-10-27 Thread Dave Blasby
I'm starting to put my pull requests up for a series of changes and fixes for WPS. Here's the first; PR:https://github.com/geoserver/geoserver/pull/1305 issue: https://osgeo-org.atlassian.net/browse/GEOS-7281 This is a very simple fix to resolve an issue shown by the Python Scripting

Re: [Geoserver-devel] Hello/Intro (I'm back)

2015-10-17 Thread Dave Blasby
Hi, Now I feel old! Its good to see all the changes in Geoserver's community! I think I was part of the Geotools Project Management Committee; http://docs.geotools.org/latest/developer/roles/committee.html I'm very excited to get back into Geoserver/Geotools again - I see lot of existing

[Geoserver-devel] Hello/Intro (I'm back)

2015-10-16 Thread Dave Blasby
Hay, everyone, After a hiatus from doing Geoserver/Geotools work - I'm back working at Boundless. I've been super-excited getting re-acquainted with many of the familiar people, as well as meeting many of the new ones. It's great to see the community stronger than ever! I've dived into the