Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Uwe Dalluege
Hi,

sorry, I think Jukka is right!
It works with three points.
I made a wrong test!

Sorry again!

Uwe


Am 09.04.2015 um 13:28 schrieb Uwe Dalluege:
> Hi Jukka,
>
> I think this does not work.
> When you draw a triangle with LineString you will get
> an quadrangle when you close the linesegment.
>
> It is not so easy for me to teach new users
> why OJ can not catch the first point.
>
> But you posted some solutions I can teach.
> Thank you again.
>
> Regards
>
> Uwe
>
>
>
> Am 09.04.2015 um 13:16 schrieb Rahkonen Jukka (MML):
>> Hi,
>>
>> Found one more option: To draw a linestring, select it and use Right
>> click menu Convert selected geometries – Close open line segments.
>> Attach tool to EZ Buttons and usage will be rather simple. Selecting
>> the line is an extra step, though.
>>
>> -Jukka Rahkonen-
>>
>> Giuseppe Aruta wrote:
>>
>> Hi Jukka,
>>
>> right. A couple of years ago I had to work on CAD datas using a GIS,
>> that's why I developed those CAD Extensions. For a regular GIS user
>> maybe Ede's implementation to convert geometries is enough.
>>
>> On the other hand I feel we should consider to rewrite the editing
>> toolboox, to make it more simple and flexible. For instance grouping
>> drawing and constrained drawing tools into a single one.
>>
>> And maybe adding new functionalities, like "closing linestring" .
>>
>> Peppe
>>
>> 2015-04-09 9:23 GMT+02:00 Rahkonen Jukka (MML)
>> > >:
>>
>> Hi Uwe,
>>
>> I would guess that such use case was not on the list of features when
>> the original JUMP was developed or since that. However, I can see that
>> you are not the first one with that wish and Peppe has made such a tool
>> to his CAD extension. The name of the tool in Draw closed linestring.
>> Download the extension from
>> https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExtension/
>> and drop it into lib\ext. New tools are added into the standard edit
>> tool box.
>>
>> -Jukka-
>>
>>
>> Uwe Dalluege wrote:
>>
>>
>> Hi,
>>
>> thank you for the tips.
>> Is there a reason why OJ can not catch the first point directly?
>>
>> Regards
>>
>> Uwe
>>
>>
>> Am 09.04.2015  um 06:46 schrieb Rahkonen Jukka (MML):
>>   > Hi,
>>   >
>>   > The trick is that when you are drawing a new feature the new vertices
>> do not snap to the newly added vertices of that non-finalized geometry.
>> There are workarounds:
>>   > - digitize first a point and snap the start and end points of the line
>>   > into it
>>   > - digitize a polygon and convert it into linestring or linearring later.
>>   >
>>   > If you really need a geometry that is LINEARRING in WKT (not just
>>   > LINESTRING with the same start and end point) you must either draw a
>>   > polygon and use geometry converter, or draw a line and convert it by
>>   > editing the WKT from
>>   >
>>   > LINESTRING (
>>   >  666 435,
>>   >  714 307,
>>   >  590 344,
>>   >  666 435
>>   > )
>>   >
>>   > into
>>   >
>>   > LINEARRING (
>>   >  666 435,
>>   >  714 307,
>>   >  590 344,
>>   >  666 435
>>   > )
>>   >
>>   > -Jukka Rahkonen-
>>   >
>>   >
>>   > Uwe Dalluege wrote:
>>   >
>>   >> Hi,
>>   >
>>   >> how can I draw a closed LineString (LinearRing)?
>>   >
>>   >> When I try to catch the first point of the LineString with the last
>> point of the same LineString OpenJUMP does not catch the first point.
>>   >
>>   >> Is there a trick?
>>   >
>>   > Regards
>>   >
>>   > Uwe
>>   >
>>   > --
>>
>>   >  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>>
>>   > Develop your own process in accordance with the BPMN 2 standard Learn
>>   > Process modeling best practices with Bonita BPM through live exercises
>>   > http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>>   > event?utm_
>>   > source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>>   > ___
>>   > Jump-pilot-devel mailing list
>>   > Jump-pilot-devel@lists.sourceforge.net
>> 
>>   > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   >
>>
>> --
>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>> Develop your own process in accordance with the BPMN 2 standard
>> Learn Process modeling best practices with Bonita BPM through live exercises
>> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
>> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> 
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>
>> ---

Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Rahkonen Jukka (MML)
Hi,

Works for me. Draw an arrow A-B-C. Use the Close linestring tool and it comes a 
triangle with points A-B-C-A.

-Jukka-

-Alkuperäinen viesti-
Lähettäjä: Uwe Dalluege [mailto:uwe.dallu...@hcu-hamburg.de] 
Lähetetty: 9. huhtikuuta 2015 14:28
Vastaanottaja: OpenJump develop and use
Aihe: Re: [JPP-Devel] Draw a closed LineString

Hi Jukka,

I think this does not work.
When you draw a triangle with LineString you will get an quadrangle when you 
close the linesegment.

It is not so easy for me to teach new users why OJ can not catch the first 
point.

But you posted some solutions I can teach.
Thank you again.

Regards

Uwe



Am 09.04.2015 um 13:16 schrieb Rahkonen Jukka (MML):
> Hi,
>
> Found one more option: To draw a linestring, select it and use Right 
> click menu Convert selected geometries - Close open line segments.
> Attach tool to EZ Buttons and usage will be rather simple. Selecting 
> the line is an extra step, though.
>
> -Jukka Rahkonen-
>
> Giuseppe Aruta wrote:
>
> Hi Jukka,
>
> right. A couple of years ago I had to work on CAD datas using a GIS, 
> that's why I developed those CAD Extensions. For a regular GIS user 
> maybe Ede's implementation to convert geometries is enough.
>
> On the other hand I feel we should consider to rewrite the editing 
> toolboox, to make it more simple and flexible. For instance grouping 
> drawing and constrained drawing tools into a single one.
>
> And maybe adding new functionalities, like "closing linestring" .
>
> Peppe
>
> 2015-04-09 9:23 GMT+02:00 Rahkonen Jukka (MML) 
>  >:
>
> Hi Uwe,
>
> I would guess that such use case was not on the list of features when 
> the original JUMP was developed or since that. However, I can see that 
> you are not the first one with that wish and Peppe has made such a 
> tool to his CAD extension. The name of the tool in Draw closed linestring.
> Download the extension from
> https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExte
> nsion/ and drop it into lib\ext. New tools are added into the standard 
> edit tool box.
>
> -Jukka-
>
>
> Uwe Dalluege wrote:
>
>
> Hi,
>
> thank you for the tips.
> Is there a reason why OJ can not catch the first point directly?
>
> Regards
>
> Uwe
>
>
> Am 09.04.2015  um 06:46 schrieb Rahkonen Jukka (MML):
>  > Hi,
>  >
>  > The trick is that when you are drawing a new feature the new 
> vertices do not snap to the newly added vertices of that non-finalized 
> geometry.
> There are workarounds:
>  > - digitize first a point and snap the start and end points of the 
> line  > into it  > - digitize a polygon and convert it into linestring 
> or linearring later.
>  >
>  > If you really need a geometry that is LINEARRING in WKT (not just  
> > LINESTRING with the same start and end point) you must either draw a  
> > polygon and use geometry converter, or draw a line and convert it by  
> > editing the WKT from  >  > LINESTRING (
>  >  666 435,
>  >  714 307,
>  >  590 344,
>  >  666 435
>  > )
>  >
>  > into
>  >
>  > LINEARRING (
>  >  666 435,
>  >  714 307,
>  >  590 344,
>  >  666 435
>  > )
>  >
>  > -Jukka Rahkonen-
>  >
>  >
>  > Uwe Dalluege wrote:
>  >
>  >> Hi,
>  >
>  >> how can I draw a closed LineString (LinearRing)?
>  >
>  >> When I try to catch the first point of the LineString with the 
> last point of the same LineString OpenJUMP does not catch the first point.
>  >
>  >> Is there a trick?
>  >
>  > Regards
>  >
>  > Uwe
>  >
>  > 
> --
>
>  >  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM 
> EDT
>
>  > Develop your own process in accordance with the BPMN 2 standard 
> Learn  > Process modeling best practices with Bonita BPM through live 
> exercises  > 
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>  > event?utm_
>  > 
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>  > ___
>  > Jump-pilot-devel mailing list
>  > Jump-pilot-devel@lists.sourceforge.net
> 
>  > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>  >
>
> --
>  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT 
> Develop your own process in accordance with the BPMN 2 standard Learn 
> Process modeling best practices with Bonita BPM through live exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- 
> event?utm_ 
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>
> --

Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Uwe Dalluege
Hi Jukka,

I think this does not work.
When you draw a triangle with LineString you will get
an quadrangle when you close the linesegment.

It is not so easy for me to teach new users
why OJ can not catch the first point.

But you posted some solutions I can teach.
Thank you again.

Regards

Uwe



Am 09.04.2015 um 13:16 schrieb Rahkonen Jukka (MML):
> Hi,
>
> Found one more option: To draw a linestring, select it and use Right
> click menu Convert selected geometries – Close open line segments.
> Attach tool to EZ Buttons and usage will be rather simple. Selecting
> the line is an extra step, though.
>
> -Jukka Rahkonen-
>
> Giuseppe Aruta wrote:
>
> Hi Jukka,
>
> right. A couple of years ago I had to work on CAD datas using a GIS,
> that's why I developed those CAD Extensions. For a regular GIS user
> maybe Ede's implementation to convert geometries is enough.
>
> On the other hand I feel we should consider to rewrite the editing
> toolboox, to make it more simple and flexible. For instance grouping
> drawing and constrained drawing tools into a single one.
>
> And maybe adding new functionalities, like "closing linestring" .
>
> Peppe
>
> 2015-04-09 9:23 GMT+02:00 Rahkonen Jukka (MML)
>  >:
>
> Hi Uwe,
>
> I would guess that such use case was not on the list of features when
> the original JUMP was developed or since that. However, I can see that
> you are not the first one with that wish and Peppe has made such a tool
> to his CAD extension. The name of the tool in Draw closed linestring.
> Download the extension from
> https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExtension/
> and drop it into lib\ext. New tools are added into the standard edit
> tool box.
>
> -Jukka-
>
>
> Uwe Dalluege wrote:
>
>
> Hi,
>
> thank you for the tips.
> Is there a reason why OJ can not catch the first point directly?
>
> Regards
>
> Uwe
>
>
> Am 09.04.2015  um 06:46 schrieb Rahkonen Jukka (MML):
>  > Hi,
>  >
>  > The trick is that when you are drawing a new feature the new vertices
> do not snap to the newly added vertices of that non-finalized geometry.
> There are workarounds:
>  > - digitize first a point and snap the start and end points of the line
>  > into it
>  > - digitize a polygon and convert it into linestring or linearring later.
>  >
>  > If you really need a geometry that is LINEARRING in WKT (not just
>  > LINESTRING with the same start and end point) you must either draw a
>  > polygon and use geometry converter, or draw a line and convert it by
>  > editing the WKT from
>  >
>  > LINESTRING (
>  >  666 435,
>  >  714 307,
>  >  590 344,
>  >  666 435
>  > )
>  >
>  > into
>  >
>  > LINEARRING (
>  >  666 435,
>  >  714 307,
>  >  590 344,
>  >  666 435
>  > )
>  >
>  > -Jukka Rahkonen-
>  >
>  >
>  > Uwe Dalluege wrote:
>  >
>  >> Hi,
>  >
>  >> how can I draw a closed LineString (LinearRing)?
>  >
>  >> When I try to catch the first point of the LineString with the last
> point of the same LineString OpenJUMP does not catch the first point.
>  >
>  >> Is there a trick?
>  >
>  > Regards
>  >
>  > Uwe
>  >
>  > --
>
>  >  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>
>  > Develop your own process in accordance with the BPMN 2 standard Learn
>  > Process modeling best practices with Bonita BPM through live exercises
>  > http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>  > event?utm_
>  > source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>  > ___
>  > Jump-pilot-devel mailing list
>  > Jump-pilot-devel@lists.sourceforge.net
> 
>  > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>  >
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campai

[JPP-Devel] SVN: [4392] core/trunk/src/language

2015-04-09 Thread jump-pilot-svn
Revision: 4392
  http://sourceforge.net/p/jump-pilot/code/4392
Author:   ma15569
Date: 2015-04-09 11:26:42 + (Thu, 09 Apr 2015)
Log Message:
---
Updated Italian and Spanish language files

Modified Paths:
--
core/trunk/src/language/jump_es.properties
core/trunk/src/language/jump_it.properties

Modified: core/trunk/src/language/jump_es.properties
===
--- core/trunk/src/language/jump_es.properties  2015-04-09 08:40:50 UTC (rev 
4391)
+++ core/trunk/src/language/jump_es.properties  2015-04-09 11:26:42 UTC (rev 
4392)
@@ -2483,13 +2483,13 @@
 ui.AttributeTablePanel.feature.view-edit=Ver/Editar
 plugin.EnableCheckFactory.selected-layers-must-be-of-type=Las capas 
selecionadas deben ser de tipo {0} y no {1}.
 
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.Exclude-empty-geometries=Excluir
 geometr\xEDas vac\xEDas
-org.openjump.core.ui.plugin.file.open.OpenFileWizardState.dummy-loader-description=\#T\:Dummy
 loader (ignore data)
-ui.plugin.ViewSchemaPlugIn.cannot-convert-to-boolean=\#T\:Cannot convert to 
boolean\:
-ui.plugin.ViewSchemaPlugIn.cannot-convert-to-long=\#T\:Cannot convert to long\:
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Default=\#T\:Default
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Layer=\#T\:Layer
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.No-geo-table-found=\#T\:No
 geo table found for this connection
-org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.nodatasourcelayer.message=\#T\:This
 layer has no datasource
-org.openjump.core.ui.plugin.queries.SimpleQuery.boolean=\#T\:Boolean
-ui.EditOptionsPanel.configure-layer-tree-tooltip=\#T\:Configure layer tree 
tooltip
+org.openjump.core.ui.plugin.file.open.OpenFileWizardState.dummy-loader-description=
 Dummy loader (ignora datos)
+ui.plugin.ViewSchemaPlugIn.cannot-convert-to-boolean=No se puede convertir a 
boolean\:
+ui.plugin.ViewSchemaPlugIn.cannot-convert-to-long=No se puede convertir a 
long\:
+jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Default=Por defecto
+jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Layer=Capa
+jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.No-geo-table-found=No
 se ha encontrado inguna tabla geo para esta conexi\xF3n
+org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.nodatasourcelayer.message=Esta
 capa no tiene ninguna fuente de datos
+org.openjump.core.ui.plugin.queries.SimpleQuery.boolean=Boolean
+ui.EditOptionsPanel.configure-layer-tree-tooltip=Configurar el tooltip de las 
capas
 ui.EditOptionsPanel.enable-JUMP-basic-tooltips=

Modified: core/trunk/src/language/jump_it.properties
===
--- core/trunk/src/language/jump_it.properties  2015-04-09 08:40:50 UTC (rev 
4391)
+++ core/trunk/src/language/jump_it.properties  2015-04-09 11:26:42 UTC (rev 
4392)
@@ -697,7 +697,7 @@
 
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.layers-without-datasource=Ci
 sono {0} nuovi livelli senza dati di origine
 
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.layers-without-datasource-management=Livelli
 senza dati di origine
 
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.save-as-jml=Salva
 come JML
-org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.save-as-shp=Savlva
 come SHP
+org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.save-as-shp=Salva
 come SHP
 org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.Add-MrSID-Layer=Aggiungi 
livello MrSID
 
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.Error-See-Output-Window=Errore\:
 vedi finestra rapporti
 org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.files=file
@@ -2483,12 +2483,13 @@
 ui.AttributeTablePanel.feature.view-edit=Vedi/Modifica
 plugin.EnableCheckFactory.selected-layers-must-be-of-type=I livelli 
selezionati devono essere di tipo {0} ma non {1}.
 
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.Exclude-empty-geometries=Escludi
 geometrie vuote
-org.openjump.core.ui.plugin.file.open.OpenFileWizardState.dummy-loader-description=\#T\:Dummy
 loader (ignore data)
-ui.plugin.ViewSchemaPlugIn.cannot-convert-to-boolean=\#T\:Cannot convert to 
boolean\:
-ui.plugin.ViewSchemaPlugIn.cannot-convert-to-long=\#T\:Cannot convert to long\:
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Default=\#T\:Default
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Layer=\#T\:Layer
-jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.No-geo-table-found=\#T\:No
 geo table found for this connection
-org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.nodatasourcelayer.message=\#T\:This
 layer has no datasource
-org.openjump.core.ui.plugin.queries.SimpleQuery.boolean=\#T\:Boolean
-ui.EditOptionsPanel.configure-layer-tree-tooltip=\#T\:Configure layer tree 
tooltip
+org.openjump.core.ui.plugin.file.open

Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Rahkonen Jukka (MML)
Hi,

Found one more option: To draw a linestring, select it and use Right click menu 
Convert selected geometries – Close open line segments.  Attach tool to EZ 
Buttons and usage will be rather simple. Selecting  the line is an extra step, 
though.

-Jukka Rahkonen-

Giuseppe Aruta wrote:

Hi Jukka,
right. A couple of years ago I had to work on CAD datas using a GIS, that's why 
I developed those CAD Extensions. For a regular GIS user maybe Ede's 
implementation to convert geometries is enough.
On the other hand I feel we should consider to rewrite the editing toolboox, to 
make it more simple and flexible. For instance grouping drawing and constrained 
drawing tools into a single one.
And maybe adding new functionalities, like "closing linestring" .
Peppe

2015-04-09 9:23 GMT+02:00 Rahkonen Jukka (MML) 
mailto:jukka.rahko...@maanmittauslaitos.fi>>:
Hi Uwe,

I would guess that such use case was not on the list of features when the 
original JUMP was developed or since that. However, I can see that you are not 
the first one with that wish and Peppe has made such a tool to his CAD 
extension. The name of the tool in Draw closed linestring. Download the 
extension from
https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExtension/ 
and drop it into lib\ext. New tools are added into the standard edit tool box.

-Jukka-

Uwe Dalluege wrote:


Hi,

thank you for the tips.
Is there a reason why OJ can not catch the first point directly?

Regards

Uwe


Am 09.04.2015 um 06:46 schrieb Rahkonen Jukka (MML):
> Hi,
>
> The trick is that when you are drawing a new feature the new vertices do not 
> snap to the newly added vertices of that non-finalized geometry. There are 
> workarounds:
> - digitize first a point and snap the start and end points of the line
> into it
> - digitize a polygon and convert it into linestring or linearring later.
>
> If you really need a geometry that is LINEARRING in WKT (not just
> LINESTRING with the same start and end point) you must either draw a
> polygon and use geometry converter, or draw a line and convert it by
> editing the WKT from
>
> LINESTRING (
>  666 435,
>  714 307,
>  590 344,
>  666 435
> )
>
> into
>
> LINEARRING (
>  666 435,
>  714 307,
>  590 344,
>  666 435
> )
>
> -Jukka Rahkonen-
>
>
> Uwe Dalluege wrote:
>
>> Hi,
>
>> how can I draw a closed LineString (LinearRing)?
>
>> When I try to catch the first point of the LineString with the last point of 
>> the same LineString OpenJUMP does not catch the first point.
>
>> Is there a trick?
>
> Regards
>
> Uwe
>
> --
>  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard Learn
> Process modeling best practices with Bonita BPM through live exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>

--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Giuseppe Aruta
Hi Jukka,
right. A couple of years ago I had to work on CAD datas using a GIS, that's
why I developed those CAD Extensions. For a regular GIS user maybe Ede's
implementation to convert geometries is enough.
On the other hand I feel we should consider to rewrite the editing
toolboox, to make it more simple and flexible. For instance grouping
drawing and constrained drawing tools into a single one.
And maybe adding new functionalities, like "closing linestring" .
Peppe

2015-04-09 9:23 GMT+02:00 Rahkonen Jukka (MML) <
jukka.rahko...@maanmittauslaitos.fi>:

> Hi Uwe,
>
> I would guess that such use case was not on the list of features when the
> original JUMP was developed or since that. However, I can see that you are
> not the first one with that wish and Peppe has made such a tool to his CAD
> extension. The name of the tool in Draw closed linestring. Download the
> extension from
>
> https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExtension/
> and drop it into lib\ext. New tools are added into the standard edit tool
> box.
>
> -Jukka-
>
> Uwe Dalluege wrote:
>
>
> Hi,
>
> thank you for the tips.
> Is there a reason why OJ can not catch the first point directly?
>
> Regards
>
> Uwe
>
>
> Am 09.04.2015 um 06:46 schrieb Rahkonen Jukka (MML):
> > Hi,
> >
> > The trick is that when you are drawing a new feature the new vertices do
> not snap to the newly added vertices of that non-finalized geometry. There
> are workarounds:
> > - digitize first a point and snap the start and end points of the line
> > into it
> > - digitize a polygon and convert it into linestring or linearring later.
> >
> > If you really need a geometry that is LINEARRING in WKT (not just
> > LINESTRING with the same start and end point) you must either draw a
> > polygon and use geometry converter, or draw a line and convert it by
> > editing the WKT from
> >
> > LINESTRING (
> >  666 435,
> >  714 307,
> >  590 344,
> >  666 435
> > )
> >
> > into
> >
> > LINEARRING (
> >  666 435,
> >  714 307,
> >  590 344,
> >  666 435
> > )
> >
> > -Jukka Rahkonen-
> >
> >
> > Uwe Dalluege wrote:
> >
> >> Hi,
> >
> >> how can I draw a closed LineString (LinearRing)?
> >
> >> When I try to catch the first point of the LineString with the last
> point of the same LineString OpenJUMP does not catch the first point.
> >
> >> Is there a trick?
> >
> > Regards
> >
> > Uwe
> >
> > --
> >  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> > Develop your own process in accordance with the BPMN 2 standard Learn
> > Process modeling best practices with Bonita BPM through live exercises
> > http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> > event?utm_
> > source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> > ___
> > Jump-pilot-devel mailing list
> > Jump-pilot-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> >
>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [4391] core/trunk

2015-04-09 Thread jump-pilot-svn
Revision: 4391
  http://sourceforge.net/p/jump-pilot/code/4391
Author:   ma15569
Date: 2015-04-09 08:40:50 + (Thu, 09 Apr 2015)
Log Message:
---
Giuseppe Aruta [2015_04_09] Reduce display of large nodata values (es QGIS)* to 
readable number
Minor fix to language files/plugin xml file

Modified Paths:
--
core/trunk/scripts/default-plugins.xml
core/trunk/src/language/jump.properties
core/trunk/src/language/jump_es.properties
core/trunk/src/language/jump_it.properties

core/trunk/src/org/openjump/core/ui/plugin/raster/statistics/DEMStatisticsPlugIn.java

Modified: core/trunk/scripts/default-plugins.xml
===
--- core/trunk/scripts/default-plugins.xml  2015-04-08 13:08:58 UTC (rev 
4390)
+++ core/trunk/scripts/default-plugins.xml  2015-04-09 08:40:50 UTC (rev 
4391)
@@ -811,19 +811,18 @@



+   

-   
org.openjump.core.ui.plugin.raster.nodata.ChangeRangeValuesToNoDataPlugIn
-   
-   

org.openjump.core.ui.plugin.raster.nodata.ChangeNoDataValuePlugIn 
- 
-   
+   
 


org.openjump.core.ui.plugin.raster.nodata.ChangeValueToNoDataPlugIn
- 
+   
+   
+   
+   
org.openjump.core.ui.plugin.raster.nodata.ChangeRangeValuesToNoDataPlugIn

-   

 
 org.openjump.core.ui.plugin.raster.ProfileGraphPlugIn

Modified: core/trunk/src/language/jump.properties
===
--- core/trunk/src/language/jump.properties 2015-04-08 13:08:58 UTC (rev 
4390)
+++ core/trunk/src/language/jump.properties 2015-04-09 08:40:50 UTC (rev 
4391)
@@ -1073,7 +1073,7 @@
 
org.openjump.core.ui.plugin.raster.RasterImageLayerPropertiesPlugIn.layer_memory=Layer
 not saved
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.columns=Columns
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.rows=Rows
-org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Compare Grid 
Raster layers
+org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Compare selected 
Grid Raster layers
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.report=Calculating 
layers statistics
 
 org.openjump.core.ui.plugin.raster.nodata.menu=Manage No Data values

Modified: core/trunk/src/language/jump_es.properties
===
--- core/trunk/src/language/jump_es.properties  2015-04-08 13:08:58 UTC (rev 
4390)
+++ core/trunk/src/language/jump_es.properties  2015-04-09 08:40:50 UTC (rev 
4391)
@@ -1054,7 +1054,7 @@
 
org.openjump.core.ui.plugin.raster.RasterImageLayerPropertiesPlugIn.layer_memory=
 Capa sin datos
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.columns=Columnas
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.rows=l\xEDneas
-org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Comparar capas 
raster MDE
+org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Comparar capas 
raster MDE selecionadas
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.report=C\xE1lculo 
estad\xEDsticas de capas
 
 org.openjump.core.ui.plugin.raster.nodata.menu=Administrar valores NoData

Modified: core/trunk/src/language/jump_it.properties
===
--- core/trunk/src/language/jump_it.properties  2015-04-08 13:08:58 UTC (rev 
4390)
+++ core/trunk/src/language/jump_it.properties  2015-04-09 08:40:50 UTC (rev 
4391)
@@ -1054,7 +1054,7 @@
 
org.openjump.core.ui.plugin.raster.RasterImageLayerPropertiesPlugIn.layer_memory=Livello
 senza datasource
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.columns=Colonne
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.rows=Righe
-org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Compara livelli 
raster DEM
+org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.name=Compara livelli 
raster DEM selezionati
 org.openjump.core.ui.plugin.raster.DEMStatisticsPlugIn.report=Calcolando la 
statistica dei livelli
 
 org.openjump.core.ui.plugin.raster.nodata.menu=Gestisci valori nodata

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/statistics/DEMStatisticsPlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/statistics/DEMStatisticsPlugIn.java
   2015-04-08 13:08:58 UTC (rev 4390)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/statistics/DEMStatisticsPlugIn.java
   2015-04-09 08:40:50 UTC (rev 4391)
@@ -55,9 +55,10 @@
 import com.vividsolutions.jump.workbench.ui.images.IconLoader;
 
 /**
- * Giuseppe Aruta [2015_01_27]
- * Computes various statistics for selected layers.
+ * Giuseppe Aruta [2015_01_27] Computes various statistics for selected layers.
  *

Re: [JPP-Devel] 2 bugs on Sextante Raster Image layer

2015-04-09 Thread Giuseppe Aruta
Ciao Alberto,
now everything works fine, thanks!
Testing different versions of OJ, I found that now loading raster by new
RasterImageLayer/RasterIMageIO classes  has become a little slower that old
one, especially with JPGs. That might be different reasons (type of
raster-TIF, PNG vs PG, etc-, JRE, etc), I will do other tests and give a
better feedback.
thanks again
Giuseppe

2015-04-07 10:33 GMT+02:00 Alberto De Luca - GeA <
alberto.del...@geomaticaeambiente.com>:

>  Hey Giuseppe,
>
> sorry I didn't take care of them earlier... They should be fixed now, I
> committed the changes on SF.
>
> Let me know
> Alberto
>
>
> On 07/04/2015 9:22 AM, Giuseppe Aruta wrote:
>
> Hi Alberto,
>  a month ago I opened 2 bug tickets about Sextante RasterImageLayer.
>
>  a)https://sourceforge.net/p/jump-pilot/bugs/391/
>  The alpha transparency doesn't work anymore
>
>  b) https://sourceforge.net/p/jump-pilot/bugs/392/
>  and also the single color transparency is off
>
>  I checked that these bugs were introduced after OpenJUMP-20150110-r4259,
> by the time you upgraded the new raster framework.
>
>  You should give a look.
>
>  Peppe
>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live 
> exerciseshttp://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- 
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>
>
>
> ___
> Jump-pilot-devel mailing 
> listJump-pilot-devel@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Draw a closed LineString

2015-04-09 Thread Rahkonen Jukka (MML)
Hi Uwe,

I would guess that such use case was not on the list of features when the 
original JUMP was developed or since that. However, I can see that you are not 
the first one with that wish and Peppe has made such a tool to his CAD 
extension. The name of the tool in Draw closed linestring. Download the 
extension from 
https://sourceforge.net/projects/opensit/files/Openjump/PlugIn/CADExtension/ 
and drop it into lib\ext. New tools are added into the standard edit tool box.

-Jukka-

Uwe Dalluege wrote:


Hi,

thank you for the tips.
Is there a reason why OJ can not catch the first point directly?

Regards

Uwe


Am 09.04.2015 um 06:46 schrieb Rahkonen Jukka (MML):
> Hi,
>
> The trick is that when you are drawing a new feature the new vertices do not 
> snap to the newly added vertices of that non-finalized geometry. There are 
> workarounds:
> - digitize first a point and snap the start and end points of the line 
> into it
> - digitize a polygon and convert it into linestring or linearring later.
>
> If you really need a geometry that is LINEARRING in WKT (not just 
> LINESTRING with the same start and end point) you must either draw a 
> polygon and use geometry converter, or draw a line and convert it by 
> editing the WKT from
>
> LINESTRING (
>  666 435,
>  714 307,
>  590 344,
>  666 435
> )
>
> into
>
> LINEARRING (
>  666 435,
>  714 307,
>  590 344,
>  666 435
> )
>
> -Jukka Rahkonen-
>
>
> Uwe Dalluege wrote:
>
>> Hi,
>
>> how can I draw a closed LineString (LinearRing)?
>
>> When I try to catch the first point of the LineString with the last point of 
>> the same LineString OpenJUMP does not catch the first point.
>
>> Is there a trick?
>
> Regards
>
> Uwe
>
> --
>  BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT 
> Develop your own process in accordance with the BPMN 2 standard Learn 
> Process modeling best practices with Bonita BPM through live exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- 
> event?utm_ 
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>

--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel