[JPP-Devel] Roadmatcher for OJ 1.10

2016-12-06 Thread Michaël Michaud
Hi,

I just upgraded RoadMatcher so that it is compatible with future OJ1.10 
(need last NB of OJ)

https://sourceforge.net/projects/jump-pilot/files/OpenJUMP_plugins/More%20Plugins/

Please, report any problem,

Michaël


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [5251] plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs

2016-12-06 Thread jump-pilot-svn
Revision: 5251
  http://sourceforge.net/p/jump-pilot/code/5251
Author:   michaudm
Date: 2016-12-06 22:38:06 + (Tue, 06 Dec 2016)
Log Message:
---
Upgrade RoadMatcher to be compatible with OpenJUMP 1.10

Modified Paths:
--

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/BoundaryFeature.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedSegment.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedShellReference.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedShellSubject.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/roads/model/HideConflationAttributesFeature.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/roads/model/ResultFeature.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/roads/model/SourceFeature.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/jump/FUTURE_Java2XML.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/jump/FUTURE_StandardReaderWriterFileDataSource.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/jump/FUTURE_XML2Java.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/ExportResultPackagePlugIn.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/LegendToolboxPanel.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/ResultPackageExporter.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/ResultPackageSourceFeatureCollection.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/SelectInputLayersWizardPanel.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/SourcePackageManifest.java

plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/plugin/conflate/roads/Transaction.java

Modified: 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/BoundaryFeature.java
===
--- 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/BoundaryFeature.java
   2016-12-06 22:36:10 UTC (rev 5250)
+++ 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/BoundaryFeature.java
   2016-12-06 22:38:06 UTC (rev 5251)
@@ -35,7 +35,6 @@
 package com.vividsolutions.jcs.conflate.boundarymatch;
 
 import com.vividsolutions.jump.feature.Feature;
-import com.vividsolutions.jump.util.CoordinateArrays;
 import com.vividsolutions.jts.algorithm.RobustCGAlgorithms;
 import com.vividsolutions.jts.geom.*;
 import java.util.*;
@@ -139,12 +138,12 @@
   public List getAdjustedVertexIndicators()
   {
 MatchedShell ms = getMatchedShell();
-List coordArrays = null;
+List coordArrays = null;
 coordArrays = ms.computeAdjustedVertexIndicators();
 
 Geometry g = (Geometry) feature.getGeometry();
 GeometryFactory fact = new GeometryFactory(g.getPrecisionModel(), 
g.getSRID());
-return CoordinateArrays.fromCoordinateArrays(coordArrays, fact);
+return 
com.vividsolutions.jump.util.CoordinateArrays.fromCoordinateArrays(coordArrays, 
fact);
   }
 
   public List getAdjustedEdgeIndicators()
@@ -155,7 +154,7 @@
 
 Geometry g = (Geometry) feature.getGeometry();
 GeometryFactory fact = new GeometryFactory(g.getPrecisionModel(), 
g.getSRID());
-return CoordinateArrays.fromCoordinateArrays(coordArrays, fact);
+return 
com.vividsolutions.jump.util.CoordinateArrays.fromCoordinateArrays(coordArrays, 
fact);
   }
 
   public boolean isAdjusted()
@@ -223,7 +222,7 @@
 shellPts = (Coordinate[]) coord.clone();
 RobustCGAlgorithms cga = new RobustCGAlgorithms();
 if (cga.isCCW(shellPts)) {
-  CoordinateArrays.reverse(shellPts);
+  com.vividsolutions.jts.geom.CoordinateArrays.reverse(shellPts);
 }
   }
 
@@ -232,7 +231,6 @@
* it with all neighbour features.  (If a neighbour feature
* is flagged as overlapping, however, it is skipped)
*
-   * @param sm the SegmentMatcher used to check for matches
*/
   public void computeVertexMatches(double distanceTolerance) {
 MatchedShell shell = getMatchedShell();

Modified: 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedSegment.java
===
--- 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedSegment.java
2016-12-06 22:36:10 UTC (rev 5250)
+++ 
plug-ins/RoadMatcher/trunk/src/com/vividsolutions/jcs/conflate/boundarymatch/MatchedSegment.java
2016-12-06 22:38:06 UTC (rev 5251)
@@ -36,6 +36,7 @@
 
 import java.util.*;
 import com.vividsolutions.jts.geom.Coordinate;
+import com.vividsolutions.jts.geom.CoordinateList;
 import 

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

2016-12-06 Thread jump-pilot-svn
Revision: 5250
  http://sourceforge.net/p/jump-pilot/code/5250
Author:   michaudm
Date: 2016-12-06 22:36:10 + (Tue, 06 Dec 2016)
Log Message:
---
compatibility with RoadMatcher

Modified Paths:
--
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java

Modified: 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java
===
--- 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java
2016-12-06 17:40:59 UTC (rev 5249)
+++ 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java
2016-12-06 22:36:10 UTC (rev 5250)
@@ -83,7 +83,7 @@
 private ImageIcon nullObject = IconLoader.icon("null1.png");
 private ImageIcon nullString = IconLoader.icon("null1.png");
 
-interface FeatureEditor {
+public interface FeatureEditor {
 
 void edit(PlugInContext context, Feature feature, Layer layer)
 throws Exception;


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Fwd: Re: Fwd: Re: Java codes in OpenJUMP which are not under GNU or any other public licence

2016-12-06 Thread Giuseppe Aruta
Thanks to Ugo!
This plug-in opens to an interesting future!

Il 06/Dic/2016 20:38, "stefan steiniger"  ha scritto:

> nice!
> and also that he is still reachable ;)
>
> On Dec 6, 2016, at 14:34, edgar.sol...@web.de wrote:
>
> >
> > for reference here's the answer from Ugo.. ede
> >
> >  Forwarded Message 
> > Subject:  Re: Fwd: Re: [JPP-Devel] Java codes in OpenJUMP which are
> not under GNU or any other public licence
> > Date: Mon, 5 Dec 2016 18:38:36 +0100
> > From: Ugo Taddei 
> > To:   Edgar Soldin 
> >
> >
> >
> > Hello Edgar,
> >
> > Feel free to modify the license as required by the project.
> >
> > I wrote the plugin management code while at latlon but it had not been
> paid for or funded by them in any form.
> >
> > As far as I'm concerned, it's my code which I'm hereby donating to the
> project. Just please make sure you keep my authorship ;-)
> >
> > The plugin manager did work at some time, requiring a simple web server
> to serve plugin jars.
> >
> > Cheers
> >
> > Ugo
> >
> >
> > On Dec 5, 2016 10:52 AM, "Edgar Soldin" > wrote:
> >
> >hey Ugo,
> >
> >we found some source code of yours in OJ that is not properly
> licensed (see below). can you please say why you decided to add this
> license header? would you be willing to relicense it to GPL so we are free
> base further development on it?
> >
> >..thanks ede/OJ
> >
> > Forwarded Message 
> >Subject: Re: [JPP-Devel] Java codes in OpenJUMP which are not under
> GNU or any other public licence
> >Date: Sun, 4 Dec 2016 12:43:56 +0100
> >From: edgar.sol...@web.de 
> >Reply-To: OpenJump develop and use  sourceforge.net >
> >To: jump-pilot-devel@lists.sourceforge.net  lists.sourceforge.net>, i...@lat-lon.de ,
> Giuseppe Aruta >
> >
> >i'll CC Lat-Lon, as the latest contact to the original author Ugo
> Taddei >.
> >
> >@Lat-lon: do you guys have a more recent mail address for Ugo Taddei?
> thank you!
> >
> >@Peppe: interesting stuff! the license header
> >  https://sourceforge.net/p/jump-pilot/code/HEAD/tree/
> core/trunk/src/de/latlon/deejump/plugin/manager/
> ExtensionManagerDialog.java#l1  jump-pilot/code/HEAD/tree/core/trunk/src/de/latlon/deejump/plugin/manager/
> ExtensionManagerDialog.java#l1>
> >is clearly violating the GPL2, at least for the files that extend or
> implement OJ classes. hence, these parts are automatically licensed GPL2
> because of it's virulent nature.
> >for now i'd say we try to contact Ugo and clear up his reasons for
> this licensing.
> >in the future we might think about removing the source code as it is
> not used currently anyway. we might think about basing a future plugin
> management, if something of it is reusable.
> >
> >..ede
> >
> >On 04.12.2016 11:04, Giuseppe Aruta wrote:
> >> This seem the case of all classes in
> >> de.latlon.deejump.plugin.manager folder
> >>
> >> Can OpenJUMP ship them? Or should we have to add an extra info on
> license
> >> folder?
> >> best regards
> >> Peppe
> >>
> >>
> >>
> >
> >
> > 
> --
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today.http://sdm.link/xeonphi
> > ___
> > Jump-pilot-devel mailing list
> > Jump-pilot-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
> 
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today.http://sdm.link/xeonphi
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net

Re: [JPP-Devel] Fwd: Re: Fwd: Re: Java codes in OpenJUMP which are not under GNU or any other public licence

2016-12-06 Thread stefan steiniger
nice! 
and also that he is still reachable ;)

On Dec 6, 2016, at 14:34, edgar.sol...@web.de wrote:

> 
> for reference here's the answer from Ugo.. ede
> 
>  Forwarded Message 
> Subject:  Re: Fwd: Re: [JPP-Devel] Java codes in OpenJUMP which are not 
> under GNU or any other public licence
> Date: Mon, 5 Dec 2016 18:38:36 +0100
> From: Ugo Taddei 
> To:   Edgar Soldin 
> 
> 
> 
> Hello Edgar,
> 
> Feel free to modify the license as required by the project.
> 
> I wrote the plugin management code while at latlon but it had not been paid 
> for or funded by them in any form.
> 
> As far as I'm concerned, it's my code which I'm hereby donating to the 
> project. Just please make sure you keep my authorship ;-)
> 
> The plugin manager did work at some time, requiring a simple web server to 
> serve plugin jars.
> 
> Cheers
> 
> Ugo
> 
> 
> On Dec 5, 2016 10:52 AM, "Edgar Soldin"  > wrote:
> 
>hey Ugo,
> 
>we found some source code of yours in OJ that is not properly licensed 
> (see below). can you please say why you decided to add this license header? 
> would you be willing to relicense it to GPL so we are free base further 
> development on it?
> 
>..thanks ede/OJ
> 
> Forwarded Message 
>Subject: Re: [JPP-Devel] Java codes in OpenJUMP which are not under GNU or 
> any other public licence
>Date: Sun, 4 Dec 2016 12:43:56 +0100
>From: edgar.sol...@web.de 
>Reply-To: OpenJump develop and use  >
>To: jump-pilot-devel@lists.sourceforge.net 
> , i...@lat-lon.de 
> , Giuseppe Aruta  >
> 
>i'll CC Lat-Lon, as the latest contact to the original author Ugo Taddei 
> >.
> 
>@Lat-lon: do you guys have a more recent mail address for Ugo Taddei? 
> thank you!
> 
>@Peppe: interesting stuff! the license header
>  
> https://sourceforge.net/p/jump-pilot/code/HEAD/tree/core/trunk/src/de/latlon/deejump/plugin/manager/ExtensionManagerDialog.java#l1
>  
> 
>is clearly violating the GPL2, at least for the files that extend or 
> implement OJ classes. hence, these parts are automatically licensed GPL2 
> because of it's virulent nature.
>for now i'd say we try to contact Ugo and clear up his reasons for this 
> licensing.
>in the future we might think about removing the source code as it is not 
> used currently anyway. we might think about basing a future plugin 
> management, if something of it is reusable.
> 
>..ede
> 
>On 04.12.2016 11:04, Giuseppe Aruta wrote:
>> This seem the case of all classes in
>> de.latlon.deejump.plugin.manager folder
>> 
>> Can OpenJUMP ship them? Or should we have to add an extra info on license
>> folder?
>> best regards
>> Peppe
>> 
>> 
>> 
> 
> 
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today.http://sdm.link/xeonphi
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [5249] plug-ins/SextantePlugIn

2016-12-06 Thread jump-pilot-svn
Revision: 5249
  http://sourceforge.net/p/jump-pilot/code/5249
Author:   ma15569
Date: 2016-12-06 17:40:59 + (Tue, 06 Dec 2016)
Log Message:
---
Updated Sextante binding

Modified Paths:
--
plug-ins/SextantePlugIn/.classpath

plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteExtension.java

plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteToolboxPlugin.java

Added Paths:
---
plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar

Modified: plug-ins/SextantePlugIn/.classpath
===
--- plug-ins/SextantePlugIn/.classpath  2016-12-06 14:17:55 UTC (rev 5248)
+++ plug-ins/SextantePlugIn/.classpath  2016-12-06 17:40:59 UTC (rev 5249)
@@ -2,13 +2,13 @@
 


-   
-   
-   
-   
-   
-   
-   

+   
+   
+   
+   
+   
+   
+   

 

Added: plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar
===
(Binary files differ)

Index: plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar
===
--- plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar
2016-12-06 14:17:55 UTC (rev 5248)
+++ plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar
2016-12-06 17:40:59 UTC (rev 5249)

Property changes on: 
plug-ins/SextantePlugIn/dist/ojsextante_binding_dic2016a.jar
___
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Modified: 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteExtension.java
===
--- 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteExtension.java
 2016-12-06 14:17:55 UTC (rev 5248)
+++ 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteExtension.java
 2016-12-06 17:40:59 UTC (rev 5249)
@@ -31,7 +31,7 @@
  */
 
 private static final String NAME = "Sextante 1.0";
-private static final String VERSION = "OpenJUMP binding 2016-11-28";
+private static final String VERSION = "OpenJUMP binding 2016-12-06";
 
 public String getName() {
 return NAME;

Modified: 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteToolboxPlugin.java
===
--- 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteToolboxPlugin.java
 2016-12-06 14:17:55 UTC (rev 5248)
+++ 
plug-ins/SextantePlugIn/src/es/unex/sextante/openjump/extensions/SextanteToolboxPlugin.java
 2016-12-06 17:40:59 UTC (rev 5249)
@@ -3,6 +3,7 @@
 import java.io.File;
 
 import javax.swing.ImageIcon;
+import javax.swing.JFrame;
 
 import org.apache.log4j.Logger;
 
@@ -11,7 +12,6 @@
 
 import es.unex.sextante.core.Sextante;
 import es.unex.sextante.gui.core.SextanteGUI;
-import es.unex.sextante.gui.toolbox.ToolboxDialog;
 import es.unex.sextante.gui.toolbox.ToolboxPanel;
 import es.unex.sextante.openjump.core.OpenJUMPOutputFactory;
 import es.unex.sextante.openjump.gui.OpenJUMPGUIFactory;
@@ -21,26 +21,17 @@
 import es.unex.sextante.openjump.language.I18NPlug;
 
 public class SextanteToolboxPlugin implements PlugIn {
-protected static ToolboxPanel m_Toolbox;
 
 public boolean execute(final PlugInContext context) throws Exception {
 
-SextanteGUI.getInputFactory().createDataObjects();
-final ToolboxDialog toolbox = new ToolboxDialog(
-SextanteGUI.getMainFrame());
-m_Toolbox = toolbox.getToolboxPanel();
-toolbox.pack();
-// toolbox.setModalityType(Dialog.ModalityType.MODELESS);
-toolbox.setVisible(true);
-SextanteGUI.getInputFactory().clearDataObjects();
-m_Toolbox = null;
+SextanteGUI.getGUIFactory().showToolBoxDialog();
 
-// SextanteGUI.getGUIFactory().showToolBoxDialog();
-
 return true;
 
 }
 
+protected static ToolboxPanel m_Toolbox;
+
 public String getName() {// Giuseppe Aruta - PlugIn Internationalized
  // 2013_05_25//
 
@@ -49,101 +40,173 @@
 
 }
 
-public void initialize(PlugInContext context) throws Exception {
-System.out.println("starting Sextante initialization >>");
-// [Giuseppe Aruta] This part activates GRASS/SAGA/R panels on Setting
-// Frame
-// Those part of Sextante has not been implemented in OpenJUMP so it is
-// deactivated for now
-// HashMap map = new HashMap();
-// map.put("isFirstTimeUsingSextante" + Sextante.getVersionNumber(),
-// Boolean.FALSE.toString());
-// SextanteGUI.addAlgorithmProvider(new 

[JPP-Devel] Fwd: Re: Fwd: Re: Java codes in OpenJUMP which are not under GNU or any other public licence

2016-12-06 Thread edgar . soldin

for reference here's the answer from Ugo.. ede

 Forwarded Message 
Subject:Re: Fwd: Re: [JPP-Devel] Java codes in OpenJUMP which are not 
under GNU or any other public licence
Date:   Mon, 5 Dec 2016 18:38:36 +0100
From:   Ugo Taddei 
To: Edgar Soldin 



Hello Edgar,

Feel free to modify the license as required by the project.

I wrote the plugin management code while at latlon but it had not been paid for 
or funded by them in any form.

As far as I'm concerned, it's my code which I'm hereby donating to the project. 
Just please make sure you keep my authorship ;-)

The plugin manager did work at some time, requiring a simple web server to 
serve plugin jars.

Cheers

Ugo


On Dec 5, 2016 10:52 AM, "Edgar Soldin" > wrote:

hey Ugo,

we found some source code of yours in OJ that is not properly licensed (see 
below). can you please say why you decided to add this license header? would 
you be willing to relicense it to GPL so we are free base further development 
on it?

..thanks ede/OJ

 Forwarded Message 
Subject: Re: [JPP-Devel] Java codes in OpenJUMP which are not under GNU or 
any other public licence
Date: Sun, 4 Dec 2016 12:43:56 +0100
From: edgar.sol...@web.de 
Reply-To: OpenJump develop and use >
To: jump-pilot-devel@lists.sourceforge.net 
, i...@lat-lon.de 
, Giuseppe Aruta >

i'll CC Lat-Lon, as the latest contact to the original author Ugo Taddei 
>.

@Lat-lon: do you guys have a more recent mail address for Ugo Taddei? thank 
you!

@Peppe: interesting stuff! the license header
  
https://sourceforge.net/p/jump-pilot/code/HEAD/tree/core/trunk/src/de/latlon/deejump/plugin/manager/ExtensionManagerDialog.java#l1
 

is clearly violating the GPL2, at least for the files that extend or 
implement OJ classes. hence, these parts are automatically licensed GPL2 
because of it's virulent nature.
for now i'd say we try to contact Ugo and clear up his reasons for this 
licensing.
in the future we might think about removing the source code as it is not 
used currently anyway. we might think about basing a future plugin management, 
if something of it is reusable.

..ede

On 04.12.2016 11:04, Giuseppe Aruta wrote:
> This seem the case of all classes in
> de.latlon.deejump.plugin.manager folder
>
> Can OpenJUMP ship them? Or should we have to add an extra info on license
> folder?
> best regards
> Peppe
>
>
>


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Sextante

2016-12-06 Thread Giuseppe Aruta
Thank Ede,
I will upgrade the source this evening
Peppe

2016-12-06 18:30 GMT+01:00 :

> as the sextante binding source is in svn, let me have a try at that
> initialization. i think, i can simplify that somewhat and make sure it runs
> wherever it is placed.
> might take until the weekend though.
>
> ..ede
>
>
> On 06.12.2016 15:40, Giuseppe Aruta wrote:
> > Hi Ede,
> > can you check the new version? (OJ 5248)
> > a) added Logger.debug  instead of System.out.println
> > b) checked all Stefan's path and rewrite according to his sintax
> > c) test on my local OJ setup to see if everything (old and new*) was
> working: access to algorithms, access to plugins, access to help
> framework*, access to advanced GUI for some algorithms*
> > It seems that everything is fine form my side.
> >
> > In order to trace back any possible mistakes, I also reused Stefan
> original copy of file limiting to minimal substitutions. I added to this
> mail a copy of the code (as PDF) of SextanteToolboxPlugin.class file with
> all the (minimal) modifications: you can see the original Stefan's text in
> red - mine in blue.
> >
> > I have some questions about:
> > a) if I move in my local copy of OJ all Sextante framework from lib/ext
> to lib/plus, Sextante is not inizialized as startup files are pointing only
> to lib/ext folder as plugin folder. Is it correct?
> > b) This is different on your OJ from Eclipse. As we need to keep
> separate bindings (Base and Plus) when building OJ (excuse me again for my
> not "usual " programming language)
> > c) If we don't find a solution for this problem, can we redefine the
> startup files in  order to have lib/ext AND lib/plus  folders as plugin
> folders?
> >
> > thanks again
> > Let me know. I cannot work on this bug until tomorrow afternoon
> >
> > Peppe
> >
> > 2016-12-05 20:52 GMT+01:00 >:
> >
> > Peppe also sextante does not seem to work, i suggest you simply
> detect if the path's exist and set them properly.
> >
> > errors are :
> >
> > 1. for the help
> >
> > java.lang.NullPointerException
> > at es.unex.sextante.gui.help.SextanteHelpWindow.fillTree(
> SextanteHelpWindow.java:274)
> > at es.unex.sextante.gui.help.SextanteHelpWindow.initGUI(
> SextanteHelpWindow.java:135)
> > at es.unex.sextante.gui.help.SextanteHelpWindow.(
> SextanteHelpWindow.java:65)
> > at es.unex.sextante.openjump.extensions.SextanteHelpPlugIn.
> execute(SextanteHelpPlugIn.java:42)
> > at com.vividsolutions.jump.workbench.plugin.
> AbstractPlugIn$1.actionPerformed(AbstractPlugIn.java:339)
> >
> > 2. for the command line
> >
> > [INFO] 20:40:41.194 Executing Command line
> > Exception in thread "AWT-EventQueue-0" 
> > java.lang.IllegalArgumentException:
> Logger: either message or throwable must be given.
> > at com.vividsolutions.jump.workbench.Logger.log(Logger.
> java:136)
> > at com.vividsolutions.jump.workbench.Logger.warn(Logger.
> java:86)
> > at com.vividsolutions.jump.workbench.ui.WorkbenchFrame.
> handleThrowable(WorkbenchFrame.java:1242)
> > at com.vividsolutions.jump.workbench.ui.WorkbenchFrame.
> handleThrowable(WorkbenchFrame.java:1234)
> > at com.vividsolutions.jump.workbench.plugin.
> AbstractPlugIn$1.actionPerformed(AbstractPlugIn.java:366)
> > at javax.swing.AbstractButton.fireActionPerformed(
> AbstractButton.java:2022)
> > at javax.swing.AbstractButton$Handler.actionPerformed(
> AbstractButton.java:2348)
> > at javax.swing.DefaultButtonModel.fireActionPerformed(
> DefaultButtonModel.java:402)
> > at javax.swing.DefaultButtonModel.setPressed(
> DefaultButtonModel.java:259)
> > at javax.swing.AbstractButton.doClick(AbstractButton.java:
> 376)
> > at javax.swing.plaf.basic.BasicMenuItemUI.doClick(
> BasicMenuItemUI.java:833)
> > at javax.swing.plaf.basic.BasicMenuItemUI$Handler.
> mouseReleased(BasicMenuItemUI.java:877)
> > at java.awt.Component.processMouseEvent(Component.java:6535)
> >
> > simply replace every sysout/log statement with Logger.(that/should
> show whats wrong at 2.)
> >
> > ..ede
> >
> > On 05.12.2016 20 :14, edgar.sol...@web.de
>  wrote:
> > > Peppe,
> > >
> > > tried the latest, this is what shows when verbosity is '-v info'
> > >
> > > starting Sextante initialization >>
> > > Sextante not initialized!
> > > Check for problems with Sextante initialization, path for libs and
> resources: E:\proj_oj-core_svn-4.4\lib\ext\sextante
> > > Check if image 'terminal.png' exist
> > > Check also for Sextante help classes path:
> E:\proj_oj-core_svn-4.4\lib\ext\sextante/help
> > > => Will do 2nd try with OJ-IDE-Dev settings:
> > > => looking for algorithms and image in:
> 

Re: [JPP-Devel] Sextante

2016-12-06 Thread edgar . soldin
as the sextante binding source is in svn, let me have a try at that 
initialization. i think, i can simplify that somewhat and make sure it runs 
wherever it is placed.
might take until the weekend though.

..ede


On 06.12.2016 15:40, Giuseppe Aruta wrote:
> Hi Ede,
> can you check the new version? (OJ 5248)
> a) added Logger.debug  instead of System.out.println
> b) checked all Stefan's path and rewrite according to his sintax
> c) test on my local OJ setup to see if everything (old and new*) was working: 
> access to algorithms, access to plugins, access to help framework*, access to 
> advanced GUI for some algorithms*
> It seems that everything is fine form my side.
> 
> In order to trace back any possible mistakes, I also reused Stefan original 
> copy of file limiting to minimal substitutions. I added to this mail a copy 
> of the code (as PDF) of SextanteToolboxPlugin.class file with all the 
> (minimal) modifications: you can see the original Stefan's text in red - mine 
> in blue.
> 
> I have some questions about:
> a) if I move in my local copy of OJ all Sextante framework from lib/ext to 
> lib/plus, Sextante is not inizialized as startup files are pointing only to 
> lib/ext folder as plugin folder. Is it correct?
> b) This is different on your OJ from Eclipse. As we need to keep separate 
> bindings (Base and Plus) when building OJ (excuse me again for my not "usual 
> " programming language)
> c) If we don't find a solution for this problem, can we redefine the startup 
> files in  order to have lib/ext AND lib/plus  folders as plugin folders?
> 
> thanks again
> Let me know. I cannot work on this bug until tomorrow afternoon
> 
> Peppe
> 
> 2016-12-05 20:52 GMT+01:00 >:
> 
> Peppe also sextante does not seem to work, i suggest you simply detect if 
> the path's exist and set them properly.
> 
> errors are :
> 
> 1. for the help
> 
> java.lang.NullPointerException
> at 
> es.unex.sextante.gui.help.SextanteHelpWindow.fillTree(SextanteHelpWindow.java:274)
> at 
> es.unex.sextante.gui.help.SextanteHelpWindow.initGUI(SextanteHelpWindow.java:135)
> at 
> es.unex.sextante.gui.help.SextanteHelpWindow.(SextanteHelpWindow.java:65)
> at 
> es.unex.sextante.openjump.extensions.SextanteHelpPlugIn.execute(SextanteHelpPlugIn.java:42)
> at 
> com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.actionPerformed(AbstractPlugIn.java:339)
> 
> 2. for the command line
> 
> [INFO] 20:40:41.194 Executing Command line
> Exception in thread "AWT-EventQueue-0" 
> java.lang.IllegalArgumentException: Logger: either message or throwable must 
> be given.
> at com.vividsolutions.jump.workbench.Logger.log(Logger.java:136)
> at com.vividsolutions.jump.workbench.Logger.warn(Logger.java:86)
> at 
> com.vividsolutions.jump.workbench.ui.WorkbenchFrame.handleThrowable(WorkbenchFrame.java:1242)
> at 
> com.vividsolutions.jump.workbench.ui.WorkbenchFrame.handleThrowable(WorkbenchFrame.java:1234)
> at 
> com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.actionPerformed(AbstractPlugIn.java:366)
> at 
> javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
> at 
> javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
> at 
> javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
> at 
> javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
> at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
> at 
> javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
> at 
> javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
> at java.awt.Component.processMouseEvent(Component.java:6535)
> 
> simply replace every sysout/log statement with Logger.(that/should show 
> whats wrong at 2.)
> 
> ..ede
> 
> On 05.12.2016 20 :14, edgar.sol...@web.de 
>  wrote:
> > Peppe,
> >
> > tried the latest, this is what shows when verbosity is '-v info'
> >
> > starting Sextante initialization >>
> > Sextante not initialized!
> > Check for problems with Sextante initialization, path for libs and 
> resources: E:\proj_oj-core_svn-4.4\lib\ext\sextante
> > Check if image 'terminal.png' exist
> > Check also for Sextante help classes path: 
> E:\proj_oj-core_svn-4.4\lib\ext\sextante/help
> > => Will do 2nd try with OJ-IDE-Dev settings:
> > => looking for algorithms and image in: 
> E:\proj_oj-core_svn-4.4\lib\ext\sextante
> > No success with Sextante initialization - printing error log:
> > java.lang.NullPointerException
> >   at 
> 

Re: [JPP-Devel] Creating TIN with OpenJUMP

2016-12-06 Thread Brian M Hamlin




Formally valid WKT TIN (from PostGIS regress)
-

TIN ZM ( ((0 0 0 0, 0 0 1 0, 0 1 0 4, 0 0 0 0)), ((0 0 0 1, 0 1 0 2, 1 1 0 
3, 0 1 0 1)) )

TIN EMPTY

TIN ( ((0 0, 0 0, 0 1, 0 0)), ((0 0, 0 1, 1 1, 0 0)) )

TIN Z ( ((0 0 0, 0 0 1, 0 1 0, 0 0 0)), ((0 0 0, 0 1 0, 1 1 0, 0 0 0)) 
)

TIN M ( ((0 0 0, 0 0 1, 0 1 0, 0 0 0)), ((0 0 0, 0 1 0, 1 1 0, 0 0 0)) 
)

TIN ZM ( ((0 0 0 0, 0 0 1 0, 0 1 0 4, 0 0 0 0)), ((0 0 0 1, 0 1 0 2, 1 1 0 
3, 0 0 0 1)) )






On Tue, 6 Dec 2016 07:42:15 -0800, Landon Blake 
 wrote:





Jukka:


I did some work on a TIN plug-in for GeoTools a few years ago with a 
Summer of Code project. I know there is also TIN code as part of JTS.



I dont think either of these got incorporated in to 
JUMP/OpenJUMP.



Do you need the TIN WKT file format for a specific purpose?



Landon





On Fri, Dec 2, 2016 at 8:57 AM, Giuseppe Aruta mailto:giuseppe.ar...@gmail.com; 
target="_blank">giuseppe.ar...@gmail.com wrote:





Good question
there was a Google summer of code some years ago about OpenJUMP and TIN.
AFAIR Landon should have more information about it
Peppe




2016-12-02 13:53 GMT+01:00 Rahkonen Jukka (MML) mailto:jukka.rahko...@maanmittauslaitos.fi; 
target="_blank">jukka.rahkonen@maanmittauslaitos.fi:







Hi,



It seems that the Triangulation 
function in OpenJUMP handles the Z coordinate and creates triangles which could 
be combined into TIN.



With four source points:



POINT ( 420 560 25 )

POINT ( 420 720 10 )

POINT ( 620 720 20 )

POINT ( 620 560 15 )



Triangulation creates two triangles as 
polygons:

POLYGON (( 420 720 10, 420 560 25, 620 
560 15, 420 720 10 ))

POLYGON (( 420 720 10, 620 560 15, 620 
720 20, 420 720 10 ))



I suppose that as a TIN these two 
triangles would look like 

TIN ((( 420 720 10, 420 560 25, 620 560 
15, 420 720 10 )), (( 420 720 10, 620 560 15, 620 720 20, 420 720 10 
)))



Has anybody made OpenJUMP 
TIN-abled? TIN is pretty close to multipolygon, but OpenJUMP knows that 
multipolygons are not allowed to be side-by-side and therefore it is not 
possible to use a workaround to combine polygons into multipolygon and finally 
edit WKT and change MULTIPOLYGON-TIN. Now OpenJUMP builds a 
geometrycollection and there is much more to edit.



-Jukka Rahkonen- 






--
Check out the vibrant tech community on one of the worlds most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot; 
rel="noreferrer" target="_blank">http://sdm.link/slashdot
___
Jump-pilot-devel mailing list
mailto:Jump-pilot-devel@lists.sourceforge.net; 
target="_blank">Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel; 
rel="noreferrer" target="_blank">https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel




--
Check out the vibrant tech community on one of the worlds most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot; 
rel="noreferrer" target="_blank">http://sdm.link/slashdot
___
Jump-pilot-devel mailing list
mailto:Jump-pilot-devel@lists.sourceforge.net;>Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel; 
rel="noreferrer" target="_blank">https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel





--


Landon
Homemade cookies. Hmm!

Web: http://www.landonblake.com; 
target="_blank">www.landonblake.com

LinkedIn: https://www.linkedin.com/in/; 
target="_blank">https://www.linkedin.com/in/landonblake

Google+: https://plus.google.com/u/0/+LandonBlake; 
target="_blank">https://plus.google.com/u/0/+LandonBlake

Facebook:https://www.facebook.com/scott.l.blake.3; 
target="_blank">https://www.facebook.com/scott.l.blake.3

Pinterest:https://www.pinterest.com/landon_blake/; 
target="_blank">https://www.pinterest.com/landon_blake/

Sumry:https://sumry.me/landonblake; 
target="_blank">https://sumry.me/landonblake

About.Me: https://about.me/landonblake; 
target="_blank">https://about.me/landonblake





--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi 
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer 

Re: [JPP-Devel] Creating TIN with OpenJUMP

2016-12-06 Thread Landon Blake
Jukka:

I did some work on a TIN plug-in for GeoTools a few years ago with a Summer
of Code project. I know there is also TIN code as part of JTS.

I don't think either of these got incorporated in to JUMP/OpenJUMP.

Do you need the TIN WKT file format for a specific purpose?

Landon


On Fri, Dec 2, 2016 at 8:57 AM, Giuseppe Aruta 
wrote:

> Good question
> there was a Google summer of code some years ago about OpenJUMP and TIN.
> AFAIR Landon should have more information about it
> Peppe
>
> 2016-12-02 13:53 GMT+01:00 Rahkonen Jukka (MML)  maanmittauslaitos.fi>:
>
>> Hi,
>>
>>
>>
>> It seems that the Triangulation function in OpenJUMP handles the Z
>> coordinate and creates triangles which could be combined into TIN.
>>
>>
>>
>> With four source points:
>>
>>
>>
>> POINT ( 420 560 25 )
>>
>> POINT ( 420 720 10 )
>>
>> POINT ( 620 720 20 )
>>
>> POINT ( 620 560 15 )
>>
>>
>>
>> Triangulation creates two triangles as polygons:
>>
>> POLYGON (( 420 720 10, 420 560 25, 620 560 15, 420 720 10 ))
>>
>> POLYGON (( 420 720 10, 620 560 15, 620 720 20, 420 720 10 ))
>>
>>
>>
>> I suppose that as a TIN these two triangles would look like
>>
>> TIN ((( 420 720 10, 420 560 25, 620 560 15, 420 720 10 )), (( 420 720 10,
>> 620 560 15, 620 720 20, 420 720 10 )))
>>
>>
>>
>> Has anybody made OpenJUMP TIN-abled?  TIN is pretty close to
>> multipolygon, but OpenJUMP knows that multipolygons are not allowed to be
>> side-by-side and therefore it is not possible to use a workaround to
>> combine polygons into multipolygon and finally edit WKT and change
>> MULTIPOLYGON->TIN. Now OpenJUMP builds a geometrycollection and there is
>> much more to edit.
>>
>>
>>
>> -Jukka Rahkonen-
>>
>>
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, SlashDot.org! http://sdm.link/slashdot
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, SlashDot.org! http://sdm.link/slashdot
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>


-- 
Landon
"Homemade cookies. Hmm!"

Web: www.landonblake.com

LinkedIn: https://www.linkedin.com/in/landonblake

Google+: https://plus.google.com/u/0/+LandonBlake

Facebook: https://www.facebook.com/scott.l.blake.3

Pinterest: https://www.pinterest.com/landon_blake/

Sumry: https://sumry.me/landonblake

About.Me: https://about.me/landonblake
--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Sextante

2016-12-06 Thread Giuseppe Aruta
Hi Ede,
can you check the new version? (OJ 5248)
a) added Logger.debug  instead of System.out.println
b) checked all Stefan's path and rewrite according to his sintax
c) test on my local OJ setup to see if everything (old and new*) was
working: access to algorithms, access to plugins, access to help
framework*, access to advanced GUI for some algorithms*
It seems that everything is fine form my side.

In order to trace back any possible mistakes, I also reused Stefan original
copy of file limiting to minimal substitutions. I added to this mail a copy
of the code (as PDF) of SextanteToolboxPlugin.class file with all the
(minimal) modifications: you can see the original Stefan's text in red -
mine in blue.

I have some questions about:
a) if I move in my local copy of OJ all Sextante framework from lib/ext to
lib/plus, Sextante is not inizialized as startup files are pointing only to
lib/ext folder as plugin folder. Is it correct?
b) This is different on your OJ from Eclipse. As we need to keep separate
bindings (Base and Plus) when building OJ (excuse me again for my not
"usual " programming language)
c) If we don't find a solution for this problem, can we redefine the
startup files in  order to have lib/ext AND lib/plus  folders as plugin
folders?

thanks again
Let me know. I cannot work on this bug until tomorrow afternoon

Peppe

2016-12-05 20:52 GMT+01:00 :

> Peppe also sextante does not seem to work, i suggest you simply detect if
> the path's exist and set them properly.
>
> errors are :
>
> 1. for the help
>
> java.lang.NullPointerException
> at es.unex.sextante.gui.help.SextanteHelpWindow.fillTree(
> SextanteHelpWindow.java:274)
> at es.unex.sextante.gui.help.SextanteHelpWindow.initGUI(
> SextanteHelpWindow.java:135)
> at es.unex.sextante.gui.help.SextanteHelpWindow.(
> SextanteHelpWindow.java:65)
> at es.unex.sextante.openjump.extensions.SextanteHelpPlugIn.
> execute(SextanteHelpPlugIn.java:42)
> at com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.
> actionPerformed(AbstractPlugIn.java:339)
>
> 2. for the command line
>
> [INFO] 20:40:41.194 Executing Command line
> Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException:
> Logger: either message or throwable must be given.
> at com.vividsolutions.jump.workbench.Logger.log(Logger.java:136)
> at com.vividsolutions.jump.workbench.Logger.warn(Logger.java:86)
> at com.vividsolutions.jump.workbench.ui.WorkbenchFrame.
> handleThrowable(WorkbenchFrame.java:1242)
> at com.vividsolutions.jump.workbench.ui.WorkbenchFrame.
> handleThrowable(WorkbenchFrame.java:1234)
> at com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.
> actionPerformed(AbstractPlugIn.java:366)
> at javax.swing.AbstractButton.fireActionPerformed(
> AbstractButton.java:2022)
> at javax.swing.AbstractButton$Handler.actionPerformed(
> AbstractButton.java:2348)
> at javax.swing.DefaultButtonModel.fireActionPerformed(
> DefaultButtonModel.java:402)
> at javax.swing.DefaultButtonModel.setPressed(
> DefaultButtonModel.java:259)
> at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
> at javax.swing.plaf.basic.BasicMenuItemUI.doClick(
> BasicMenuItemUI.java:833)
> at javax.swing.plaf.basic.BasicMenuItemUI$Handler.
> mouseReleased(BasicMenuItemUI.java:877)
> at java.awt.Component.processMouseEvent(Component.java:6535)
>
> simply replace every sysout/log statement with Logger.(that/should show
> whats wrong at 2.)
>
> ..ede
>
> On 05.12.2016 20:14, edgar.sol...@web.de wrote:
> > Peppe,
> >
> > tried the latest, this is what shows when verbosity is '-v info'
> >
> > starting Sextante initialization >>
> > Sextante not initialized!
> > Check for problems with Sextante initialization, path for libs and
> resources: E:\proj_oj-core_svn-4.4\lib\ext\sextante
> > Check if image 'terminal.png' exist
> > Check also for Sextante help classes path: E:\proj_oj-core_svn-4.4\lib\
> ext\sextante/help
> > => Will do 2nd try with OJ-IDE-Dev settings:
> > => looking for algorithms and image in: E:\proj_oj-core_svn-4.4\lib\
> ext\sextante
> > No success with Sextante initialization - printing error log:
> > java.lang.NullPointerException
> >   at es.unex.sextante.core.AlgorithmsAndResources.
> addAlgorithmsAndPropertiesFromFolder(AlgorithmsAndResources.java:143)
> >   at es.unex.sextante.core.Sextante.initialize(Sextante.java:67)
> >   at es.unex.sextante.openjump.extensions.SextanteToolboxPlugin.
> initialize(SextanteToolboxPlugin.java:106)
> >   at es.unex.sextante.openjump.extensions.SextanteExtension.
> configure(SextanteExtension.java:49)
> >   at com.vividsolutions.jump.workbench.plugin.PlugInManager.
> loadConfigurations(PlugInManager.java:212)
> >   at com.vividsolutions.jump.workbench.plugin.PlugInManager.load(
> PlugInManager.java:192)
> >   at 

[JPP-Devel] SVN: [5248] core/trunk/lib/plus

2016-12-06 Thread jump-pilot-svn
Revision: 5248
  http://sourceforge.net/p/jump-pilot/code/5248
Author:   ma15569
Date: 2016-12-06 14:17:55 + (Tue, 06 Dec 2016)
Log Message:
---


Added Paths:
---
core/trunk/lib/plus/ojsextante_binding_dic2016a.jar

Removed Paths:
-
core/trunk/lib/plus/ojsextante_binding_dic2016.jar

Deleted: core/trunk/lib/plus/ojsextante_binding_dic2016.jar
===
(Binary files differ)

Added: core/trunk/lib/plus/ojsextante_binding_dic2016a.jar
===
(Binary files differ)

Index: core/trunk/lib/plus/ojsextante_binding_dic2016a.jar
===
--- core/trunk/lib/plus/ojsextante_binding_dic2016a.jar 2016-12-05 23:37:22 UTC 
(rev 5247)
+++ core/trunk/lib/plus/ojsextante_binding_dic2016a.jar 2016-12-06 14:17:55 UTC 
(rev 5248)

Property changes on: core/trunk/lib/plus/ojsextante_binding_dic2016a.jar
___
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel