[JPP-Devel] Reading zipped shapefiles by URL

2013-04-01 Thread Rahkonen Jukka
Hi, Michaël made OpenJUMP to read a routing solution in KML format directly from the web by URL. Is it possible to read zipped shapefiles in the same way for example from http://kartat.kapsi.fi/files/maastotietokanta/kaikki/etrs89/shp/M5/M53/M53122.shp.zip ? -Jukka Rahkonen- ---

Re: [JPP-Devel] Activating A Cursor Tool from MultiInputDialog

2013-04-01 Thread Landon Blake
Thanks Ede. Landon On Tue, Mar 26, 2013 at 4:53 AM, wrote: > you can assign a cursortool at any time via > > - find the active layerview and then > LayerViewPanel.setCurrentCursorTool(CursorTool newct) > > ..ede > > On 26.03.2013 06:10, Giuseppe Aruta wrote: > > It sounds interesting Landon. I

Re: [JPP-Devel] Hi: Startpoint/Endpoint X and Y with BeanShell

2013-04-01 Thread Michaël Michaud
Hi Jukka, Good job, With a few more lines, you can get the path in your map (hereafter, kml parsing is very crude, but it shows how powerful beanshell scripting can be). { import com.vividsolutions.jts.geom.*; import com.vividsolutions.jts.io.WKTReader; import com.vividsolutions.jump.feature.*;

[JPP-Devel] Hi: Startpoint/Endpoint X and Y with BeanShell

2013-04-01 Thread Rahkonen Jukka
Hi, Here is a demo script which finds route from the service or yournavigation.org. Save the following code into lib\ext\BeanTools, draw one or more lines with OpenJUMP by using EPSG:4326 system, run the tool and copy the URLs from the result window into browser and you will get the routes in K

Re: [JPP-Devel] update of sextante binding

2013-04-01 Thread Giuseppe Aruta
Hi Stefan, I used Sextante/OpenJUMP for a short course last week. Sextante was used for simple but critical activities: to convert a vector file to DTM using different algorithms and to use DTM to obtain thematic raster maps (slope, drainage, aspect, ect) in order to build some rescue maps for lan

Re: [JPP-Devel] Upgraded Plugin for OpenJUMP 1.6

2013-04-01 Thread Giuseppe Aruta
Thank you very much, Stefan. 2013/4/1 Stefan Steiniger > Hi Peppe, > > I will have a look and will update the svn files then. > > cheers, > stefan > > Am 01.04.13 10:38, schrieb Giuseppe Aruta: > > Hi Stefan, > > I saw your update on bindings. And I started to work on them. > > > > I modified

Re: [JPP-Devel] Upgraded Plugin for OpenJUMP 1.6

2013-04-01 Thread Stefan Steiniger
Hi Peppe, I will have a look and will update the svn files then. cheers, stefan Am 01.04.13 10:38, schrieb Giuseppe Aruta: > Hi Stefan, > I saw your update on bindings. And I started to work on them. > > I modified only plugin ojsextante_binding_oct2012.jar > a) I added icons on menu plugin, fro

[JPP-Devel] update of sextante binding

2013-04-01 Thread Stefan Steiniger
Hi I updated the sextante binding. I did a bug fix some weeks ago but never added the new binding to PLUS (was waiting for someone to test and afterwards forgot). Anyway now its commited too. stefan -- Own the Future-In

Re: [JPP-Devel] Menu icons not visible

2013-04-01 Thread edgar . soldin
On 01.04.2013 15:44, Michaël Michaud wrote: > Hi Ede, >> On 01.04.2013 12:14, Michaël Michaud wrote: >>> Hi, >> do you possibly stumble over the workaround in line 607 of >> FeatureInstaller > Right. > If I remove the Windows OS version test, everything appear normally. > I did

Re: [JPP-Devel] Upgraded Plugin for OpenJUMP 1.6

2013-04-01 Thread Stefan Steiniger
Hi Peppe, > I am working also on minor issues for Sextante (icons to menus and > permanent problem with help folder on linux), I think i will finish it > by tomorrow. I am not able to understand which version of Sextante we > currently use (0.6 or 1.0?). Does anyone know it? yep. We use Sextante

Re: [JPP-Devel] Menu icons not visible

2013-04-01 Thread Michaël Michaud
Hi Ede, > On 01.04.2013 12:14, Michaël Michaud wrote: >> Hi, > do you possibly stumble over the workaround in line 607 of > FeatureInstaller Right. If I remove the Windows OS version test, everything appear normally. I did not find information in oracle bug database (link me

[JPP-Devel] Upgraded Plugin for OpenJUMP 1.6

2013-04-01 Thread Giuseppe Aruta
Hi list, I made some upgrades to external openjump plugins for next 1.6 real: ColorChooser Plugin: now icons have the same size of other external plugins like CadPlann's ones (cf 24 px, previous version were smaller). I also added sone separators on menu. Here you can find the new version: http:/

[JPP-Devel] Fwd: Upgrade Plugin for OpenJUMP 1.6

2013-04-01 Thread Giuseppe Aruta
-- Forwarded message -- From: Giuseppe Aruta Date: 2013/4/1 Subject: Upgrade Plugin for OpenJUMP 1.6 To: OpenJump develop and use Hi list, I made some upgrades to external openjump plugins for next 1.6 real: ColorChooser Plugin: now icons have the same size of other external p

Re: [JPP-Devel] UnionPlugIn and ThiessenPolygonsPlugIn deactivated

2013-04-01 Thread Giuseppe Aruta
good to know: "Speak now or forever hold your peace!" ;-) ** 2013/4/1 Michaël Michaud > Hi all, > > I deactivated UnionPlugIn and ThiessenPolygonsPlugIn > from default-plugins.xml (r3445). > These plugins are redundant with Union/Merge and > VoronoiDiagram plugins. > If you still need them or o

[JPP-Devel] [ jump-pilot-Bugs-3609690 ] angle constraint fields not synchonized

2013-04-01 Thread SourceForge . net
Bugs item #3609690, was opened at 2013-04-01 05:49 Message generated for change (Tracker Item Submitted) made by michaudm You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=679906&aid=3609690&group_id=118054 Please note that this message will contain a full copy of the

Re: [JPP-Devel] Menu icons not visible

2013-04-01 Thread edgar . soldin
On 01.04.2013 12:14, Michaël Michaud wrote: > Hi, do you possibly stumble over the workaround in line 607 of FeatureInstaller >>> Right. >>> If I remove the Windows OS version test, everything appear normally. >>> I did not find information in oracle bug database (link mentionned in the >>> co

Re: [JPP-Devel] Startpoint/Endpoint X and Y with BeanShell

2013-04-01 Thread Michaël Michaud
Hi Jukka, You can easily pick start and end point with Geometry geometry = feature.getGeometry(); // this will return something whatever the geometry is Coordinate[] cc = geometry.getCoordinates(); x_start = cc[0].x; y_start = cc[0].y; x_end = cc[cc.length-1].x; y_end = cc[cc.length-1].y; // thi

[JPP-Devel] Startpoint/Endpoint X and Y with BeanShell

2013-04-01 Thread Rahkonen Jukka
Hi, How could I pick Startpoint_X, Startpoint_Y, Endpoint_X,Endpoint_Y from a linestring with BeanShell? Meaning is to build a http request for an external routing service. Something similar is done in the following code with envelope of a geometry for building a WFS GetFeature request with BBO

[JPP-Devel] UnionPlugIn and ThiessenPolygonsPlugIn deactivated

2013-04-01 Thread Michaël Michaud
Hi all, I deactivated UnionPlugIn and ThiessenPolygonsPlugIn from default-plugins.xml (r3445). These plugins are redundant with Union/Merge and VoronoiDiagram plugins. If you still need them or one of them, speak now. Michaël --

Re: [JPP-Devel] Menu icons not visible

2013-04-01 Thread Michaël Michaud
Hi, >>> do you possibly stumble over the workaround in line 607 of FeatureInstaller >> Right. >> If I remove the Windows OS version test, everything appear normally. >> I did not find information in oracle bug database (link mentionned in the >> code is dead). >> I tried with windows vista (6.0) jr