[JPP-Devel] About deactivating Sextante "Modeler" and "History"

2015-04-27 Thread Giuseppe Aruta
Hi,
Today I tried to use Modeler and History plugins of Sextante - after a long
time.
Those tools were deactivated on OJ 1.6 as they were not working.
I activated them few years (2013) ago in order to have more user-comments
and time to solve the problems.

This is a short comment about the bugs I tested today
a) Modeler: it doesn't record new models. Which are not shown into the
Sextante Toolbar. Apart from them, sometimes the "open models" function
doesn't work.
b) History: whenever I tried to run an algorithm recorded into the history
list I have a warnig message. This is a screanshot:

We changed the RasterImage framework  but not the SextanteRasterImage one.
So I suspect that those bugs are just the same as some years ago and no one
of our users tested or used them (included me).

I am considering to deactivate (again) these 2 plugin again.
I don't have the technical preparation/time to solve those bugs. And
Sextante  and GUI source code are not provided by our site.

Deactivating them makes thing easier, I feel, for developers and possible
future users (We are a small community. And I feel that there are even
lesser OpenJUMP-Sextante users)

I will be glad to have the opinion of the list.
Best regards

Peppe
​
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [4410] plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/ spatialiteplugin

2015-04-27 Thread jump-pilot-svn
Revision: 4410
  http://sourceforge.net/p/jump-pilot/code/4410
Author:   jratike80
Date: 2015-04-27 10:34:38 + (Mon, 27 Apr 2015)
Log Message:
---
Correct typos in some file and class names.

Modified Paths:
--

plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/SpatialiteExtension.java

Added Paths:
---

plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PluginTest.java

plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/SpatialitePlugin.java

Removed Paths:
-

plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PuglinTest.java

plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/SpatialitePluging.java

Added: 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PluginTest.java
===
--- 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PluginTest.java
   (rev 0)
+++ 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PluginTest.java
   2015-04-27 10:34:38 UTC (rev 4410)
@@ -0,0 +1,56 @@
+/*
+ * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI 
+ * for visualizing and manipulating spatial features with geometry and 
attributes.
+ *
+ * JUMP is Copyright (C) 2003 Vivid Solutions
+ *
+ * This program implements extensions to JUMP and is
+ * Copyright (C) 2010 Jorge Almaraz.
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * 
+ * For more information, contact:
+ *
+ * Jukka Rahkonen
+ * jukka.rahko...@latuviitta.fi
+ * 
+ */
+package org.jam.openjump.spatialiteplugin;
+
+import javax.swing.*;
+
+public class PluginTest {
+
+   /**
+* @param args
+*/
+   public static void main(String[] args) {
+   try {
+   
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+   } catch(Exception e) {
+   System.out.println("Error setting native LAF: " + e);
+   }
+   try {
+Class.forName("org.sqlite.Driver");
+   } catch (ClassNotFoundException e1) {
+   System.out.println("no org.sqlite.Driver" );
+   }
+   SpatialiteDialog sd =new SpatialiteDialog();
+   sd.setVisible(true);
+   }
+
+   
+
+}

Deleted: 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PuglinTest.java
===
--- 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PuglinTest.java
   2015-04-23 08:55:49 UTC (rev 4409)
+++ 
plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/PuglinTest.java
   2015-04-27 10:34:38 UTC (rev 4410)
@@ -1,56 +0,0 @@
-/*
- * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI 
- * for visualizing and manipulating spatial features with geometry and 
attributes.
- *
- * JUMP is Copyright (C) 2003 Vivid Solutions
- *
- * This program implements extensions to JUMP and is
- * Copyright (C) 2010 Jorge Almaraz.
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- * 
- * For more information, contact:
- *
- * Jukka Rahkonen
- * jukka.rahko...@latuviitta.fi
- * 
- */
-package org.jam.openjump.spatialiteplugin;
-
-import javax.swing.*;
-
-public class PuglinTest {
-
-   /**
-* @param args
-*/
-   public static void main(String[] args) {
-   try {
-   
UIManager.setLookAndFeel(UIManager.get

Re: [JPP-Devel] About deactivating Sextante "Modeler" and "History"

2015-04-27 Thread sstein


Hi Peppe, to me it seems also best to deactivate it. Otherwise people may judge OJ reliabilty in general based on these two bugs - which we definitively don't want ;) Thanks for brining this up. cheers,stefan -- Originalnachricht --Von: Giuseppe Aruta Datum: 27.04.2015 5:44An: OpenJump develop and use;Betreff:[JPP-Devel] About deactivating Sextante "Modeler" and "History"Hi, Today I tried to use Modeler and History plugins of Sextante - after a long time.Those tools were deactivated on OJ 1.6 as they were not working.I activated them few years (2013) ago in order to have more user-comments and time to solve the problems.  This is a short comment about the bugs I tested todaya) Modeler: it doesn't record new models. Which are not shown into the Sextante Toolbar. Apart from them, sometimes the "open models" function doesn't work.b) History: whenever I tried to run an algorithm recorded into the history list I have a warnig message. This is a screanshot:We changed the RasterImage framework  but not the SextanteRasterImage one. So I suspect that those bugs are just the same as some years ago and no one of our users tested or used them (included me).I am considering to deactivate (again) these 2 plugin again.I don't have the technical preparation/time to solve those bugs. And Sextante  and GUI source code are not provided by our site.Deactivating them makes thing easier, I feel, for developers and possible future users (We are a small community. And I feel that there are even lesser OpenJUMP-Sextante users)I will be glad to have the opinion of the list.Best regardsPeppe​
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] About deactivating Sextante "Modeler" and "History"

2015-04-27 Thread Giuseppe Aruta
Thanks Stefan,
we are so few Jumpers. I will wait also the opinion of the other members.
Peppe


2015-04-27 15:35 GMT+02:00 sstein :

> Hi Peppe,
>
>
>
> to me it seems also best to deactivate it. Otherwise people may judge OJ
> reliabilty in general based on these two bugs - which we definitively don't
> want ;)
>
>
>
> Thanks for brining this up.
>
>
>
> cheers,
>
> stefan
>
>
> -- Originalnachricht --
> *Von: *Giuseppe Aruta
> *Datum: *27.04.2015 5:44
> *An: *OpenJump develop and use;
> *Betreff:*[JPP-Devel] About deactivating Sextante "Modeler" and "History"
>
>
> Hi,
> Today I tried to use Modeler and History plugins of Sextante - after a
> long time.
> Those tools were deactivated on OJ 1.6 as they were not working.
> I activated them few years (2013) ago in order to have more user-comments
> and time to solve the problems.
>
> This is a short comment about the bugs I tested today
> a) Modeler: it doesn't record new models. Which are not shown into the
> Sextante Toolbar. Apart from them, sometimes the "open models" function
> doesn't work.
> b) History: whenever I tried to run an algorithm recorded into the history
> list I have a warnig message. This is a screanshot:
>
> We changed the RasterImage framework  but not the SextanteRasterImage one.
> So I suspect that those bugs are just the same as some years ago and no one
> of our users tested or used them (included me).
>
> I am considering to deactivate (again) these 2 plugin again.
> I don't have the technical preparation/time to solve those bugs. And
> Sextante  and GUI source code are not provided by our site.
>
> Deactivating them makes thing easier, I feel, for developers and possible
> future users (We are a small community. And I feel that there are even
> lesser OpenJUMP-Sextante users)
>
> I will be glad to have the opinion of the list.
> Best regards
>
> Peppe
> ​
>
>
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] About deactivating Sextante "Modeler" and "History"

2015-04-27 Thread edgar . soldin
you should probably ask the user list.. ede


On 27.04.2015 16:11, Giuseppe Aruta wrote:
> Thanks Stefan,
> we are so few Jumpers. I will wait also the opinion of the other members.
> Peppe
> 
> 
> 2015-04-27 15:35 GMT+02:00 sstein  >:
> 
> Hi Peppe,
> 
>  
> 
> to me it seems also best to deactivate it. Otherwise people may judge OJ 
> reliabilty in general based on these two bugs - which we definitively don't 
> want ;)
> 
>  
> 
> Thanks for brining this up.
> 
>  
> 
> cheers,
> 
> stefan
> 
>  
> 
> -- Originalnachricht --
> *Von: *Giuseppe Aruta __
> *Datum: *27.04.2015 5:44
> *An: *OpenJump develop and use;
> *Betreff:*[JPP-Devel] About deactivating Sextante "Modeler" and "History"
> 
> 
> Hi,
> Today I tried to use Modeler and History plugins of Sextante - after a 
> long time.
> Those tools were deactivated on OJ 1.6 as they were not working.
> I activated them few years (2013) ago in order to have more user-comments 
> and time to solve the problems.
>  
> This is a short comment about the bugs I tested today
> a) Modeler: it doesn't record new models. Which are not shown into the 
> Sextante Toolbar. Apart from them, sometimes the "open models" function 
> doesn't work.
> b) History: whenever I tried to run an algorithm recorded into the 
> history list I have a warnig message. This is a screanshot:
> 
> We changed the RasterImage framework  but not the SextanteRasterImage 
> one. So I suspect that those bugs are just the same as some years ago and no 
> one of our users tested or used them (included me).
> 
> I am considering to deactivate (again) these 2 plugin again.
> I don't have the technical preparation/time to solve those bugs. And 
> Sextante  and GUI source code are not provided by our site.
> 
> Deactivating them makes thing easier, I feel, for developers and possible 
> future users (We are a small community. And I feel that there are even lesser 
> OpenJUMP-Sextante users)
> 
> I will be glad to have the opinion of the list.
> Best regards
> 
> Peppe
> ​
> 
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net 
> 
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 
> 
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] VM Out of Memory Error

2015-04-27 Thread edgar . soldin
On 27.04.2015 20:33, Lawrence Hartpence wrote:
> Edgar,
> 
> I am not sure how to send this file to the developer group.  I tried to 
> respond to your email, but the message bounced back.  I assume it was because 
> I attached a zip file.  I will try to send the shp file to you via zipfile.
> 
> Thanks for your help.
> 
> Again the problem is that when I try to open this file in Open JUMP, I get a 
> Java Out of memory error.
> 

Lawrence,

ok i tried OJ 1.8.0 and current snapshot. snapshot works fine while 1.8.0 
starts using all memory and loads the layer only partially with an error
"
Error reading shapefile 
'Y:\projekte\gps\testdata\waukeestreets.shp\WaukeeStreets.shp' :  number of 
records in shp (7.165) > number of records in dbf (1.060).   (Exception)
"
probably something fixed after the 1.8.0 release.

so please try the latest snapshot 
 https://sourceforge.net/projects/jump-pilot/files/OpenJUMP_snapshots/
and report back.

..ede

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel