[JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread Giuseppe Aruta
Hi all, I am going to add a new class, "StatisticsIndices", which calculates position and statistics indices of an array of numbers. The following inidices will be available: count total sum max min mean 25 percentile median 75 percentile standard deviation coefficinet of variation root Mean Squar

[JPP-Devel] SVN: [5836] core/trunk/src/com/vividsolutions/jump/workbench/ui/ FeatureCollectionPanel.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5836 http://sourceforge.net/p/jump-pilot/code/5836 Author: ma15569 Date: 2018-06-05 08:47:36 + (Tue, 05 Jun 2018) Log Message: --- Added save button (to csv, jml, shp) Modified Paths: -- core/trunk/src/com/vividsolutions/jump/workbench/ui/Feat

[JPP-Devel] SVN: [5837] core/trunk/src/com/vividsolutions/jump/workbench/ui/images/ histdisplay.png

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5837 http://sourceforge.net/p/jump-pilot/code/5837 Author: ma15569 Date: 2018-06-05 08:54:24 + (Tue, 05 Jun 2018) Log Message: --- Added image as side image for (up-to-come) raster histogram plugin Added Paths: --- core/trunk/src/com/vividsolutions

[JPP-Devel] SVN: [5838] core/trunk/src/com/vividsolutions/jump/workbench/plugin/ EnableCheckFactory.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5838 http://sourceforge.net/p/jump-pilot/code/5838 Author: edso Date: 2018-06-05 09:44:23 + (Tue, 05 Jun 2018) Log Message: --- rename to a more speaking name remove warning suppressions check before fetching strings limit class parameter to layerable implement

Re: [JPP-Devel] SVN: [5833] core/trunk/src/com/vividsolutions/jump/workbench/plugin/ EnableCheckFactory.java

2018-06-05 Thread edgar . soldin
hey Peppe, i just touched your commit to EnableCheckFactory, hope you don't mind. notice how it checks and return before fetching strings in the no error case. also the warning suppressions were not needed really. be aware i finetuned the name to be more descriptive. so you might need to apply

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread edgar . soldin
On 05.06.2018 09:32, Giuseppe Aruta wrote: > My idea is to create an "org.openjump.core.math" package into OJ tree. generally i feel the source tree is clattered enough as it is and starting a package for one class only might not be necessary. on the other hand there is no math package that i ca

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread edgar . soldin
hey Peppe, while i understand the urge to consolidate packages, i can only suggest to leave them be having our legacy extensions in mind. unless you doublecheck each of them - and maybe some that might still work but are not part of PLUS - you will not know which one you break because some clas

[JPP-Devel] ViewAttributesPlugIn layer listener removal

2018-06-05 Thread edgar . soldin
Mike, this looks like the layer listner get's removed on any layers removal, not just the one the plugin shows the attributes for currently. did you check this? ..ede line 185ff. LayerListener layerListener = new LayerListener() { public void layerChanged(LayerEvent e) {

[JPP-Devel] EnsureAllLayersHaveSRIDStylePlugIn layer change listener

2018-06-05 Thread edgar . soldin
hey Mike, reading the code https://sourceforge.net/p/jump-pilot/code/HEAD/tree/core/trunk/src/org/openjump/core/ccordsys/srid/EnsureAllLayersHaveSRIDStylePlugIn.java it looks like now, when one layer is deleted the _one_ listener the plugin uses as hook get's to check that each layer has an

Re: [JPP-Devel] ViewAttributesPlugIn layer listener removal

2018-06-05 Thread edgar . soldin
same goes for AttributeTab as far as i can see. ede On 05.06.2018 12:46, edgar.sol...@web.de wrote: > Mike, > > this looks like the layer listner get's removed on any layers removal, not > just the one the plugin shows the attributes for currently. did you check > this? ..ede > > line 185ff. >

Re: [JPP-Devel] EnsureAllLayersHaveSRIDStylePlugIn layer change listener

2018-06-05 Thread Michaël Michaud
Hi, Yeah, you're right. This LayerListener is not added for each Layer but only once in the plugin init method. Let me some time to check also your following mails and fix all of that. Michaël Le 05/06/2018 à 12:41, edgar.sol...@web.de a écrit : hey Mike, reading the code https://sourc

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread Michaël Michaud
Hi Peppe, If it is a collection of pure static math methods with no dependency mabe it can take place in com.vividsolutions.jump.util.MathUtil Michaël Le 05/06/2018 à 09:32, Giuseppe Aruta a écrit : Hi all, I am going to add a new class, "StatisticsIndices", which calculates position and

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread edgar . soldin
right Mike, or simply placed alongside in that package. Peppe, did you create the class from scratch or where did you get the code, under which license? ..ede On 05.06.2018 13:52, Michaël Michaud wrote: > Hi Peppe, > > If it is a collection of pure static math methods with no dependency mabe

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread Giuseppe Aruta
I starded to work on class es.unex.sextante.math.simpleStats.SimpleStats (Sextante under GPL2) that I modified and extended for my purpose: a set of statistic operations to be used on a (raster) histogram, The final project is to add a raster histogram plugin to OJ Peppe 2018-06-05 13:54 GMT+02:00

[JPP-Devel] SVN: [5839] core/trunk/src/com/vividsolutions/jump/util/ StatisticIndices.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5839 http://sourceforge.net/p/jump-pilot/code/5839 Author: ma15569 Date: 2018-06-05 15:55:50 + (Tue, 05 Jun 2018) Log Message: --- Add a class that calculates statistic indices from an array of number Added Paths: --- core/trunk/src/com/vividsoluti

Re: [JPP-Devel] New Class to calculate statistic indices

2018-06-05 Thread Giuseppe Aruta
I added the class on OJ5839, under com.vividsolutions.jump.util package 2018-06-05 17:53 GMT+02:00 Giuseppe Aruta : > I starded to work on class es.unex.sextante.math.simpleStats.SimpleStats > (Sextante under GPL2) that I modified and extended for my purpose: a set of > statistic operations to be

Re: [JPP-Devel] SVN: [5838] core/trunk/src/com/vividsolutions/jump/workbench/plugin/ EnableCheckFactory.java

2018-06-05 Thread Giuseppe Aruta
I see. Thanks Ede 2018-06-05 11:44 GMT+02:00 jump-pilot-svn--- via Jump-pilot-devel < jump-pilot-devel@lists.sourceforge.net>: > Revision: 5838 > http://sourceforge.net/p/jump-pilot/code/5838 > Author: edso > Date: 2018-06-05 09:44:23 + (Tue, 05 Jun 2018) > Log Message: >

[JPP-Devel] SVN: [5840] core/trunk/src/org/openjump/core/ccordsys/srid/ EnsureAllLayersHaveSRIDStylePlugIn.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5840 http://sourceforge.net/p/jump-pilot/code/5840 Author: michaudm Date: 2018-06-05 19:42:43 + (Tue, 05 Jun 2018) Log Message: --- Revert change on EnsureAllLayersHaveSRIDStyle : layerListener is added once during the plugin initialization and must not be rem

[JPP-Devel] SVN: [5841] core/trunk/src/org/openjump/core/ccordsys/srid/ EnsureAllLayersHaveSRIDStylePlugIn.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5841 http://sourceforge.net/p/jump-pilot/code/5841 Author: michaudm Date: 2018-06-05 22:20:50 + (Tue, 05 Jun 2018) Log Message: --- EnsureAllLayersHaveSRIDStyle was style created for each internal frame Modified Paths: -- core/trunk/src/org/op

[JPP-Devel] SVN: [5842] core/trunk/src/com/vividsolutions/jump/workbench/ui

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5842 http://sourceforge.net/p/jump-pilot/code/5842 Author: michaudm Date: 2018-06-05 22:28:54 + (Tue, 05 Jun 2018) Log Message: --- Remove layerListeners from components which add new layerListeners but may also be closed : ViewAttributeFrame, InfoFrame Modif

Re: [JPP-Devel] ViewAttributesPlugIn layer listener removal

2018-06-05 Thread Michaël Michaud
Hi Ede, I changed the way to control addition/removal of LayerListeners. I keep a reference to the listeners in components in charge of creating them (AttributeTab, OneLayerAttributeTab...), and I remove these listeners from the LayerManager when the JInternalFrame which added them is closed.

[JPP-Devel] SVN: [5843] core/trunk/src/org/openjump/core/ui/plugin/wms

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5843 http://sourceforge.net/p/jump-pilot/code/5843 Author: michaudm Date: 2018-06-05 22:44:41 + (Tue, 05 Jun 2018) Log Message: --- Clean ZoomToWMSPlugIn Modified Paths: -- core/trunk/src/org/openjump/core/ui/plugin/wms/ZoomToWMSLayerPlugIn.jav

[JPP-Devel] SVN: [5844] core/trunk/src

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5844 http://sourceforge.net/p/jump-pilot/code/5844 Author: michaudm Date: 2018-06-05 22:47:28 + (Tue, 05 Jun 2018) Log Message: --- Remove warnings + small cleaning Modified Paths: -- core/trunk/src/com/vividsolutions/jump/datastore/oracle/Ora

[JPP-Devel] SVN: [5845] core/trunk/src/com/vividsolutions/jump/util/ StatisticIndices.java

2018-06-05 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 5845 http://sourceforge.net/p/jump-pilot/code/5845 Author: ma15569 Date: 2018-06-06 05:40:55 + (Wed, 06 Jun 2018) Log Message: --- Add language codes Modified Paths: -- core/trunk/src/com/vividsolutions/jump/util/StatisticIndices.java Modified