[Geotools-devel] GeoTools / GeoWebCache / GeoServer Meeting 2017-05-16

2017-05-16 Thread Ben Caradoc-Davies

GeoTools / GeoWebCache / GeoServer Meeting 2017-05-16


Attending

Ben Caradoc-Davies

Torben Barsballe

Kevin Smith

Jody Garnett


Apologies

Brad Hards


Agenda

1.

   Release 17.1 / 2.11.1

2.

   Backport policy discussion

3.

   Mapbox styles


Actions

Actions:

 *

   TB/KS: release 17.1 / 2.11.1

 *

   KS: make GeoServer change proposal for GWC vulnerability


Previous Meeting actions:

 *

   KS: Follow up with Simon for security vulnerability PR (done)

 *

   JG: FOSS4G Blog post when presentations announced (pending)


Release 17.1 / 2.11.1

 *

   Announcement email sent

 *

   WFS CITE 1.1 failures: problematic commit reverted

 *

   Vulnerabilities fixed, to be announced in blog post

 *

   Update prior 2.10.x blog post

 *

   One vulnerability fix to be applied to 2.10.x

 *

   NetCDF Output screenshot for blog post:

 o

   http://docs.geoserver.org/latest/en/user/extensions/netcdf-out/index.html

 o

   http://docs.geoserver.org/latest/en/user/_images/netcdfoutpanel.png


Backport policy discussion

 *

   Backport policy applies to extensions

 *

   Wait one month for functionality on GeoServer master before backport

 *

   Can vote for exceptions

 *

   Anything that is in the release blog notes counts as a new feature

 *

   API changes are not backported, except to fix vulnerabilities or
   with vote


Mapbox styles

 *

   Mapbox Styles now mostly functional (core functionality is there and
   tested, still missing some features).

 *

   Reference docs:
   http://docs.geoserver.org/latest/en/user/styling/mbstyle/index.html

 *

   Can probably move to extension status fairly soon, but not quite yet.


General discussion

 *

   Could also consider promoting the CSS module, as it has been
   unsupported for quite some time, but seems well-maintained and stable.

 *

   Java 9 modules (JSR-376, also known as Jigsaw) voted down:

 o

   
http://mail.openjdk.java.net/pipermail/jpms-spec-experts/2017-April/000684.html

 o

   
https://developer.jboss.org/blogs/scott.stark/2017/04/14/critical-deficiencies-in-jigsawjsr-376-java-platform-module-system-ec-member-concerns

 o

   https://jcp.org/en/jsr/results?id=5959


Pull request roundup

The committee reviewed GeoWebCache pull requests.


--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] Reminder: GeoTools / GeoServer Meeting at 19:30 UTC on Tuesday

2017-05-16 Thread Ben Caradoc-Davies
Noted. Thanks for letting us know.

Kind regards,
Ben.

On 16/05/17 21:22, Brad Hards wrote:
> 0530 local - please accept my apologies.
>
> Brad

-- 
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


Re: [Geotools-devel] Reminder: GeoTools / GeoServer Meeting at 19:30 UTC on Tuesday

2017-05-16 Thread Brad Hards
0530 local - please accept my apologies.

Brad




--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel


[Geotools-devel] [JIRA] (GEOT-5730) MultiplyCoverages process only works when jai-ext enabled

2017-05-16 Thread Jeroen Dries (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeroen Dries created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 GeoTools /  GEOT-5730  
 
 
  MultiplyCoverages process only works when jai-ext enabled   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Affects Versions: 
 16.2  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 coverage, process  
 
 
Created: 
 16/May/17 9:09 AM  
 
 
Priority: 
  High  
 
 
Reporter: 
 Jeroen Dries  
 

  
 
 
 
 

 
 This method: org.geotools.process.raster.MultiplyCoveragesProcess#execute Sets the coverages to be multiplied like this: param.parameter("Sources").setValue(sources); This works for JAI-EXT, but when using the older jai, it expects its parameters to be named 'source0' and 'source1'.  So adding these lines should fix it: 

 

param.parameter("source0").setValue(coverageA);
param.parameter("source1").setValue(coverageB);
 

 Currently a rather ugly NullPointerException is thrown when using JAI: 
 
2017-05-16 07:08:00,629 ERROR [org.geoserver.wps.executor] - Process execution failed org.geotools.process.ProcessException: java.lang.NullPointerException at org.geotools.process.factory.AnnotationDrivenProcessFactory$InvokeMethodProcess.execute(AnnotationDrivenProcessFactory.java:565) at org.geoserver.wps.executor.ProcessStartupFilter$ProcessStartupWrapper.execute(ProcessStartupFilter.java:51) at org.geoserver.wps.executor.DefaultProcessManager$ProcessCallable.call(DefaultProcessManager.java:201) at