Re: [JPP-Devel] plugin internationalization

2009-04-05 Thread Larry Becker
I'm surprised that you ran out of heap that fast, but I guess the typical use would be to change the Geometry Type of an entire layer so perhaps you're right not to undo. Larry On Sun, Apr 5, 2009 at 5:26 PM, Edgar Soldin edgar.sol...@web.de wrote: in this case you should be able to reuse the

Re: [JPP-Devel] Auto Assign Attribute and layer queried from database

2009-04-06 Thread Larry Becker
Hi, I'll take a look at it to see where it might be getting hung up. Clearly, it shouldn't lock up. Larry On Mon, Apr 6, 2009 at 9:53 AM, Sunburned Surveyor sunburned.surve...@gmail.com wrote: Jukka, Could it be that the Auto Assign Attribute tool needs write access to the layer, and

Re: [JPP-Devel] Error in adding database layer

2009-04-06 Thread Larry Becker
selected - selection is point/points - selection is polygon/polygons -Jukka- Larry Becker wrote: Hi Jukka, Perhaps you have forgotten one of JUMP's best capabilities, help tool tips on grayed out menu items. regards, Larry

Re: [JPP-Devel] Auto Assign Attribute and layer queried from database

2009-04-06 Thread Larry Becker
that work with this layer? Larry On Mon, Apr 6, 2009 at 10:20 AM, Larry Becker becker.la...@gmail.comwrote: Hi, I'll take a look at it to see where it might be getting hung up. Clearly, it shouldn't lock up. Larry On Mon, Apr 6, 2009 at 9:53 AM, Sunburned Surveyor sunburned.surve

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-07 Thread Larry Becker
. Thanks, The Sunburned Surveyor On Thu, Apr 2, 2009 at 12:12 PM, Larry Becker becker.la...@gmail.com wrote: SS, The full mod to BasicFeature is attached. Why don't you go ahead with your idea of testing it out with a Select all modified Features tool? regards, Larry

Re: [JPP-Devel] R: List of all OpenJUMP plug-ins.

2009-04-08 Thread Larry Becker
Hi Peppe, You can deactivate any of the plugins you find in ../bin/default-plugins.xml by deleting their entry from the file. Some of the plugins in the list aren't really plugins at all, but base classes for building plugins (all of them that start with Abstract... and a few others).

Re: [JPP-Devel] modelToViewTransform

2009-04-09 Thread Larry Becker
Hi Bing, I haven't studied this code for a while, but it seems like the line is moving the origin (top for window coordinate system, bottom for world). regards, Larry 2009/4/9 Bing Ran bing_...@hotmail.com Hi list, Recently I started introducing an image back buffer in the LayerViewPanel

Re: [JPP-Devel] Almost GSoc Student and Best Way to Add Renderers

2009-04-09 Thread Larry Becker
Hi SS, The renderer is the lest of your problem with adding the capability to do labels without a backing feature. How are you planning to persist the labels. How will this integrate with the Project (Task)? How will you keep this from making prior .jmp files incompatible? Why is it

Re: [JPP-Devel] Almost GSoc Student and Best Way to Add Renderers

2009-04-09 Thread Larry Becker
Hi SS, We also have the need to transfer our labels from CAD to SkyJUMP. 1) Use Michael's DXF plugin to import the (simple) DXF. It comes in with a Text attribute. 2) Use my Extract Layer by Attribute plugin, (which defaults to the attribute Layer) to break the dxf-derived layer back out to

Re: [JPP-Devel] Almost GSoc Student and Best Way to Add Renderers

2009-04-10 Thread Larry Becker
/ SS On Thu, Apr 9, 2009 at 2:44 PM, Larry Becker becker.la...@gmail.com wrote: Hi SS, We also have the need to transfer our labels from CAD to SkyJUMP. 1) Use Michael's DXF plugin to import the (simple) DXF. It comes in with a Text attribute. 2) Use my Extract Layer

[JPP-Devel] OpenJump database support

2009-04-22 Thread Larry Becker
To maximize the use of Christopher's time this summer integrating H2 spatial, we should ensure we have the database code infrastructure ready so he can focus on the actual problem. So the first step would be consideration of my proposed mod to BasicFeature to add an isModified() method. I have

Re: [JPP-Devel] OpenJump database support

2009-04-23 Thread Larry Becker
- although I may know some very few things about it stefan Larry Becker wrote: To maximize the use of Christopher's time this summer integrating H2 spatial, we should ensure we have the database code infrastructure ready so he can focus on the actual

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-23 Thread Larry Becker
...@refractions.netwrote: Larry, why do you use an int rather than a boolean to flag changed attributes? BTW, In order to track changes to Geometry attributes correctly, the JUMP codebase needs to be scrutinized to make sure it isn't mutating Geometries in place. Larry Becker wrote: Hi, As I

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-23 Thread Larry Becker
is currently displayed on the screen. But simpler is always better! Alarm bells start ringing for me when I see counts being used - the semantics seems like they must be more complicated than a simple flag. Larry Becker wrote: I agree that a mechanism to reset the modified status is needed

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-24 Thread Larry Becker
capability? Larry 2009/4/23 Michaël Michaud michael.mich...@free.fr Larry Becker a écrit : I think the other developers need to understand that the cost of supporting per-feature modified status will be a per-feature cost of (size of int) * number of attributes. I'm not sure I made

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-24 Thread Larry Becker
. Larry Becker wrote: I think the other developers need to understand that the cost of supporting per-feature modified status will be a per-feature cost of (size of int) * number of attributes. I'm not sure I made that clear. Currently the memory cost is for all features on all layers

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-24 Thread Larry Becker
. To avoid this, I'd even suggest constructing a Feature as needed, then creating a new Feature from it via a constructor which sets the modified flag appropriately. Anything to avoid requiring more storage. How does GeoTools handle this? Larry Becker wrote

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-27 Thread Larry Becker
, then this system won't work. But I don't know why that would happen. Just a thought. SS On Fri, Apr 24, 2009 at 3:17 PM, Larry Becker becker.la...@gmail.com wrote: But there's something that could go wrong anyway, because an attribute has a NULL value by default and client code may decide to not set

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-29 Thread Larry Becker
Rahkonen- Larry Becker wrote: But what if the initial value for a certain attribute was indeed NULL??? Data coming from a database can contain NULLs... In that case, I believe the attribute object[] array would contain an object that references null and not null reference

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-04-30 Thread Larry Becker
An example of the standard usage pattern for JDBC can be seen in: com.vividsolutions.jump.datastore.jdbc.ValueConverterFactory. Regardless of whether you use ResultSet's getObject() or something like getInt(), eventually you are going to need an object representation of the data in order to work

[JPP-Devel] nightly build broken

2009-04-30 Thread Larry Becker
23-Apr-2009 seems to be the last nightly build. Larry -- http://amusingprogrammer.blogspot.com/ -- Register Now Save for Velocity, the Web Performance Operations Conference from O'Reilly Media. Velocity features a

Re: [JPP-Devel] I forgot to mention...

2009-05-01 Thread Larry Becker
Have you tested your mod yet? Larry On Fri, May 1, 2009 at 9:35 AM, Sunburned Surveyor sunburned.surve...@gmail.com wrote: ...that I will gladly commit (only) my BasicFeature modifications and my SelectModifiedFeatures plug-in to the JPP SVN after other programmers have a chance to examine

Re: [JPP-Devel] Modifying BasicFeature to track modifications

2009-05-01 Thread Larry Becker
I tried Sunburn's mod to BasicFeature and it seems to work. I looked again at Paolo's mod and it looks like it will work. I have tested my mod and it seems to work. Larry On Fri, May 1, 2009 at 10:17 AM, Paolo Rizzi g...@oicom.com wrote: An example of the standard usage pattern for JDBC can

Re: [JPP-Devel] I forgot to mention...

2009-05-01 Thread Larry Becker
? The Sunburned Surveyor On Fri, May 1, 2009 at 8:02 AM, Larry Becker becker.la...@gmail.com wrote: Have you tested your mod yet? Larry On Fri, May 1, 2009 at 9:35 AM, Sunburned Surveyor sunburned.surve...@gmail.com wrote: ...that I will gladly commit (only) my BasicFeature

Re: [JPP-Devel] Shapefile reader

2009-05-11 Thread Larry Becker
Hi Michaël, line 218 CGAlgorithms.isPointInRing(jPt, coordList) || pointInList(jPt,coordList) The second test is just paranoia that isPointInRing is not robust for non-fixed point math. I haven't scanned the jts code to see what it actually does. @Larry : I replaced a quick 'ring in ring'

Re: [JPP-Devel] Shapefile reader

2009-05-11 Thread Larry Becker
When I last worked on the issue that is the topic of this thread (last year sometime), I tried to use the geotools code to solve the problem, but it seemed to be buggy so I abandoned it. I don't recall anything specific, but I did make the effort. regards, Larry On Mon, May 11, 2009 at 3:49 PM,

Re: [JPP-Devel] Shapefile reader

2009-05-11 Thread Larry Becker
BTW, the original thread is archived here: http://www.mail-archive.com/jump-pilot-devel@lists.sourceforge.net/msg04403.html Larry On Mon, May 11, 2009 at 3:57 PM, Larry Becker becker.la...@gmail.comwrote: When I last worked on the issue that is the topic of this thread (last year sometime), I

Re: [JPP-Devel] geo silk icons

2009-05-15 Thread Larry Becker
The raster and vector modifiers aren't really self explanatory. Also, the silk set is really too small for anything but menu icons. The standard icons are brilliant, but the mapping specific ones are just ok. Part of that is that the concepts that they are trying to portray are too abstract.

Re: [JPP-Devel] Deegree GML adapter

2009-05-20 Thread Larry Becker
I agree KML loading witout projection support is not great, but it could load as lat/lon. BTW, SkyJUMP's KML reader is kind of a hack - no attribute support. OGR's is pretty good (for non-Java). Martin's sounds promising. While we're on the subject. John Clark and I have implemeted a Java GUI

[JPP-Devel] Fwd: OpenJUMP included in the Softpedia Mac OS software database

2009-05-25 Thread Larry Becker
Since no one else has reporedt this, I assume they sent this message to only me (perhaps because my user name sorts first on the developer's lists). It looks like we might get a few more Mac users in the future. regards, Larry From: Softpedia Editorial Team macedi...@softpedia.com Date: Sat,

Re: [JPP-Devel] UI direction for native database integration

2009-05-26 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] [SPAM]Re: a couple of requests.... on dimensions

2009-05-27 Thread Larry Becker
panel. I'll make tests reducing french labels to see if it helps Michaël Larry Becker a écrit : I'm pleased to report that the size changes to the Change Styles dialog have been accomplished. The vertical size has been reduced from 547 to 474. See the attached jpeg for a preview. @Peppe

Re: [JPP-Devel] basic feature modification

2009-05-27 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net mailto:Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] UI direction for native database integration

2009-05-27 Thread Larry Becker
heavyweights like Barbarian Group, R/GA, Big Spaceship. http://p.sf.net/sfu/creativitycat-com ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker

Re: [JPP-Devel] Shp as default format

2009-06-02 Thread Larry Becker
Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- OpenSolaris 2009.06 is a cutting edge operating system

Re: [JPP-Devel] registering a new DataStore

2009-06-05 Thread Larry Becker
Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- OpenSolaris 2009.06 is a cutting edge operating system

Re: [JPP-Devel] [SPAM]Re: a couple of requests.... on dimensions

2009-06-15 Thread Larry Becker
@Michaël, Does the new smaller Change Style dialog still cause problems to the french labels? Or has this issue been resolved? @Peppe, Did you get a chance to test the dialogs on your notebook yet? thanks, Larry On Wed, May 27, 2009 at 8:03 AM, Larry Becker becker.la...@gmail.comwrote: Hi

Re: [JPP-Devel] Possible Bug in FeatureCollectionTools.getEnvelopeForFeatures method.

2009-06-24 Thread Larry Becker
-pilot-devel -- ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry

Re: [JPP-Devel] Category and order

2009-06-24 Thread Larry Becker
-- ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] Possible Bug in FeatureCollectionTools.getEnvelopeForFeatures method.

2009-06-24 Thread Larry Becker
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- ___ Jump-pilot-devel mailing list Jump

Re: [JPP-Devel] Moving some org.openjump.core.apitools members to com.vividsolutions.jump.util.CollectionUtil.

2009-06-24 Thread Larry Becker
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- ___ Jump-pilot-devel mailing list Jump

Re: [JPP-Devel] Moving some org.openjump.core.apitools members to com.vividsolutions.jump.util.CollectionUtil.

2009-06-24 Thread Larry Becker
-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] [SPAM]Re: [SPAM]Re: a couple of requests.... on dimensions

2009-06-24 Thread Larry Becker
couche quand l'échelle est entre with your sentence (you french is very good !) or with something close to that (maybe Visible entre les échelles :) Michaël Larry Becker a écrit : Hi Michaël, I have been modifying some GridBagConstraints to try to fix the problem of excessive width

Re: [JPP-Devel] R: question on embedded gif fill patterns

2009-07-01 Thread Larry Becker
-devel -- ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker

Re: [JPP-Devel] R: question on embedded gif fill patterns

2009-07-01 Thread Larry Becker
...@yahoo.itwrote: Hi Larry, I want to customize OJ with some embedded JPG which can be used in cartographic maps. I thought I coud substitute embedded JPG since I cannot see a utilizations right now. Peppe --- Mer 1/7/09, Larry Becker becker.la...@gmail.com ha scritto: Da: Larry Becker becker.la

Re: [JPP-Devel] can't setup eclipse-project ...

2009-07-10 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Enter

Re: [JPP-Devel] Getting started ...

2009-07-22 Thread Larry Becker
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- ___ Jump-pilot-devel mailing list Jump

Re: [JPP-Devel] Getting started ...

2009-07-22 Thread Larry Becker
Also, don't overlook the advice in the JUMP Developers Guidehttp://www.vividsolutions.com/JUMP/bin/JUMP%20Developer%20Guide.pdf. Larry On Wed, Jul 22, 2009 at 8:14 AM, Larry Becker becker.la...@gmail.comwrote: Hi Helmut, Check out

Re: [JPP-Devel] off for holidays

2009-08-03 Thread Larry Becker
. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems

Re: [JPP-Devel] Death of our wiki.

2009-09-17 Thread Larry Becker
#33; http://p.sf.net/sfu/devconf ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] Death of our wiki.

2009-09-17 Thread Larry Becker
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Come build with us! The BlackBerryreg; Developer Conference in SF, CA is the only developer event

Re: [JPP-Devel] Death of our wiki.

2009-09-17 Thread Larry Becker
Not much help here either: http://www.mediawiki.org/wiki/Manual:FAQ#Importing_from_other_types_of_wiki_software Larry On Thu, Sep 17, 2009 at 1:41 PM, Larry Becker becker.la...@gmail.comwrote: I've maintained a MediaWiki once before. It is very robust. I like it, but it doesn't seem

Re: [JPP-Devel] Death of our wiki.

2009-09-18 Thread Larry Becker
It looks like the easiest way to move to MediaWiki is to export to HTML and use: http://toolserver.org/~diberri/cgi-bin/html2wiki/index.cgi Larry On Thu, Sep 17, 2009 at 1:46 PM, Larry Becker becker.la...@gmail.comwrote: Not much help here either: http://www.mediawiki.org/wiki/Manual:FAQ

Re: [JPP-Devel] Question on LayerPrinter2 and on OpenJUMPConfiguration

2009-09-21 Thread Larry Becker
-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Come build with us! The BlackBerryreg; Developer Conference in SF, CA

Re: [JPP-Devel] mediawiki write access

2009-09-24 Thread Larry Becker
on that stefan Larry Becker wrote: No, I still can't make modifications. I need the specific right to be an Editor for the MediaWiki feature. regards, Larry -- Come build with us! The BlackBerryreg; Developer

Re: [JPP-Devel] mediawiki write access

2009-09-25 Thread Larry Becker
to sabotage the wiki. stefan Larry Becker wrote: Any ideas? Do they need to activate it in their account settings (tab: Hosted Apps). All I know is that I did this first, so it may be true. Larry On Thu, Sep 24, 2009 at 1:09 PM, Stefan Steiniger sst...@geo.uzh.ch

Re: [JPP-Devel] app development with openJump

2009-09-29 Thread Larry Becker
GeoTools. regards, Larry Becker On Tue, Sep 29, 2009 at 12:11 PM, Jayaram Reddi jre...@gmail.com wrote: Hello all, I am new to OpenJump and I would like to request some help with developing external applications using OpenJump's API. I would like to use the visualization and processing

Re: [JPP-Devel] app development with openJump

2009-09-29 Thread Larry Becker
programmers. OpenJUMP is quite a beast. Check the developer's guide, and then ask on this mailing list if you have specific questions about OpenJUMP's architecture. The Sunburned Surveyor On Tue, Sep 29, 2009 at 10:46 AM, Larry Becker becker.la...@gmail.com wrote: The JUMP Developer

Re: [JPP-Devel] How to feed x and y coordinates to table?

2009-10-09 Thread Larry Becker
November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems

Re: [JPP-Devel] Please help me with mini-map and things related to drawing

2009-10-16 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] A couple of changes for the PlugInManager class.

2009-10-16 Thread Larry Becker
of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker

Re: [JPP-Devel] A couple of changes for the PlugInManager class.

2009-10-19 Thread Larry Becker
us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated

Re: [JPP-Devel] Questions on JPP Wiki

2009-10-21 Thread Larry Becker
/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year

Re: [JPP-Devel] SkyJUMP generating PDF directly with layers

2009-11-09 Thread Larry Becker
? -Jukka- -Alkuperäinen viesti- Lähettäjä: Larry Becker [mailto:becker.la...@gmail.com] Lähetetty: pe 6.11.2009 17:32 Vastaanottaja: OpenJump develop and use Aihe: [JPP-Devel] SkyJUMP generating PDF directly with layers I just wanted to report that I have just added direct PDF

Re: [JPP-Devel] SkyJUMP generating PDF directly with layers

2009-11-09 Thread Larry Becker
, No problem in installing, running and creating layered pdf from demo shapefiles. However, it does not print by own vectors from PostGIS into pdf. Layers appear in the resulting file but linework is not visible. Is there some simple reason for this? -Jukka- Larry Becker wrote: You can

Re: [JPP-Devel] SkyJUMP generating PDF directly with layers

2009-11-10 Thread Larry Becker
in the pdf file. -Jukka- Larry Becker wrote: Hmm. Perhaps PostGIS doesn't descend from Layer. There is no rendering optimization for non-Layer data, so it might render like a raster. Did you try unchecking the Change Line Width check box? Larry On Mon, Nov 9, 2009 at 12:27

Re: [JPP-Devel] Adding WMS GetFeatureInfo into OJ?

2009-11-16 Thread Larry Becker
. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems

Re: [JPP-Devel] R: OJ webpage wiki up and running with openjump.org domain - thanks to all

2009-11-18 Thread Larry Becker
://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration

Re: [JPP-Devel] R: txt (csv) driver

2009-11-23 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- Let Crystal Reports

Re: [JPP-Devel] R: OJ built-in help

2009-11-25 Thread Larry Becker
://p.sf.net/sfu/bobj-july ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

[JPP-Devel] SoftPedia certification

2009-12-03 Thread Larry Becker
Hi Stefan, I just remembered that we never added the SoftPedia certification to the OJ web site. http://mac.softpedia.com/progClean/OpenJUMP-Clean-56824.html regards, Larry -- Join us December 9, 2009 for the Red Hat

Re: [JPP-Devel] SoftPedia certification

2009-12-03 Thread Larry Becker
See how I displayed the Softpedia award at the SkyJUMP web site: http://skyjumpgis.org On Thu, Dec 3, 2009 at 10:36 AM, Larry Becker becker.la...@gmail.comwrote: Hi Stefan, I just remembered that we never added the SoftPedia certification to the OJ web site. http://mac.softpedia.com

Re: [JPP-Devel] Bug fixed for exporting (Sextante/Pirol)-Raster files in OpenJUMP

2009-12-07 Thread Larry Becker
. http://p.sf.net/sfu/redhat-sfdev2dev ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

[JPP-Devel] EZ Buttons

2009-12-09 Thread Larry Becker
I have just done a preliminary port of SkyJUMP's EZ Button feature. The EZ Buttons option appears to the View menu. It provides an option to display a button panel that can be easily programed by choosing existing menu options with right mouse clicks. It can be activated with both the buttons

Re: [JPP-Devel] EZ Buttons

2009-12-10 Thread Larry Becker
(no time yet). stefan Larry Becker schrieb: I have just done a preliminary port of SkyJUMP's EZ Button feature. The EZ Buttons option appears to the View menu. It provides an option to display a button panel that can be easily programed by choosing existing menu options with right

Re: [JPP-Devel] theaming feature

2009-12-10 Thread Larry Becker
); colorThemingStyle.setAttributeValueToLabelMap(attributeToLabelMap); //disable the BasicStyle and enable the ColorThemingStyle of the layer colorThemingStyle.setEnabled(true); lyr.getBasicStyle().setEnabled(false); lyr.fireAppearanceChanged(); bolRueck=true; } Larry Becker schrieb

Re: [JPP-Devel] theaming feature

2009-12-10 Thread Larry Becker
Fixed the drop z bugs in the move , move along angle, and paste items at tools. Larry On Thu, Dec 10, 2009 at 2:28 PM, Larry Becker becker.la...@gmail.comwrote: Some of the move tool's dropping Z problems are the fault of my com.vividsolutions.jump.geom.CoordUtil which uses the 2D Coordinate

Re: [JPP-Devel] 3D develop in OJ

2009-12-11 Thread Larry Becker
workbench-properties.xml file. It should normally be empty. It sounds like you may be getting multiple definitions of the menu options. We need more information to know for sure. regards, Larry Becker On Fri, Dec 11, 2009 at 8:39 AM, luca marletta lucama...@gmail.com wrote: Follow Stefan

Re: [JPP-Devel] 3D develop in OJ

2009-12-11 Thread Larry Becker
. It is attached. regards, Larry On Fri, Dec 11, 2009 at 9:05 AM, Larry Becker becker.la...@gmail.comwrote: Hi Luca, Thanks for your ideas to improve OJ. A great fix of this behavior could be: when you add a new vertex the Z will become the linear interpolation of the previous and next vertex

Re: [JPP-Devel] 3D develop in OJ

2009-12-11 Thread Larry Becker
Hi Michaël , Good catch. I agree that JTS limits how far we can go with supporting Z values. Larry 2009/12/11 Michaël Michaud michael.mich...@free.fr Larry Becker a écrit : I have added z interpolation to the Add Vertex tool for most normal cases. There are some boundary cases

Re: [JPP-Devel] EZ Buttons

2009-12-14 Thread Larry Becker
in OpenJump is the ability to write edited data back to the database. -Jukka Rahkonen- Larry Becker wrote: Thanks for the feedback Michaël and Stefan. In case anyone out there is wondering what is the use of a toolbox that can only reuse existing menu features, it is all about optimizing

Re: [JPP-Devel] EZ Buttons

2009-12-14 Thread Larry Becker
)); wc.workbench.frame.flash(htmlFrame); htmlFrame.surface(); } } The former script got the distance between the first two features on the selected layer. This one uses the two selected items. Larry On Mon, Dec 14, 2009 at 8:33 AM, Larry Becker becker.la...@gmail.comwrote: Hi Jukka, Here

Re: [JPP-Devel] EZ Buttons, Beanshell console and gdal

2009-12-14 Thread Larry Becker
, CmdRunner.isWindows() returns true on a windows system. regards, Larry On Mon, Dec 14, 2009 at 10:06 AM, Larry Becker becker.la...@gmail.comwrote: Hi Peppe, That is an interesting idea. I would require some new support classes, but nothing that we haven't done already in iGOR. regards

Re: [JPP-Devel] EZ Buttons

2009-12-15 Thread Larry Becker
application,I was wondering if anyone has the code for it so that i can know how the tool is calculating the area. Can you please let me know. Thanks for the help in advance. Thanks On Mon, Dec 14, 2009 at 6:46 AM, Larry Becker becker.la...@gmail.comwrote: Sorry, it should have been

[JPP-Devel] no way to ignore features in a layer?

2009-12-23 Thread Larry Becker
I found this critique of FOSS GIS at: http://lordkingsquirrel.wordpress.com/2006/05/07/everyday-mapsdesktop-mapping-software-udig/ *Change Symbology* Here I found my first problem – the troublesome roads layer. To review – the roads layer has all the streets and highways in the county, divided

[JPP-Devel] North Arrow

2009-12-23 Thread Larry Becker
I've added a North Arrow option on the View menu. As usual, to preview it set your workbench-properties to: workbench plug-inorg.openjump.core.ui.plugin.view.NorthArrowPlugIn/plug-in /workbench There are options for setting the alignment, style, and features of the North Arrow, but as yet no

Re: [JPP-Devel] Osiibility to automate openJUMP

2010-01-19 Thread Larry Becker
, luminaries and emerging and established companies. http://p.sf.net/sfu/rsaconf-dev2dev ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated

Re: [JPP-Devel] Mouse wheel zoom and WMS

2010-02-01 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc

Re: [JPP-Devel] Survey tool

2010-02-01 Thread Larry Becker
coordinate lists? For the latter, to create single points, I would use the Pirol CSV plugin. (needs some specific formatting, but... - Maybe Michaels recent text/SCV plugin can that too?) stefan Larry Becker wrote: I have a need for a tool to enter survey measurements into JUMP. Has anyone

Re: [JPP-Devel] Survey tool

2010-02-01 Thread Larry Becker
can do with my code. The Sunburned Surveyor On Mon, Feb 1, 2010 at 10:44 AM, Larry Becker becker.la...@gmail.com wrote: Like ArcGIS COGO, I guess: http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?ID=540rand=597pid=539TopicName=An_overview_of_COGO Larry On Mon, Feb 1, 2010 at 12

Re: [JPP-Devel] Survey tool

2010-02-02 Thread Larry Becker
a plug-in that shows what the library can do. If I get around to it, I will let you know. SS On Mon, Feb 1, 2010 at 1:02 PM, Larry Becker becker.la...@gmail.com wrote: Hi SS, Thanks for the info. I don't have a critical need at this time. One of my in-house users has already worked

Re: [JPP-Devel] Mouse wheel zoom and WMS

2010-02-02 Thread Larry Becker
, Feb 1, 2010 at 2:52 PM, Sunburned Surveyor sunburned.surve...@gmail.com wrote: Jukka, Can you file a feature request on SourceForge so we don't forget this? The Sunburned Surveyor On Mon, Feb 1, 2010 at 7:12 AM, Larry Becker becker.la...@gmail.com wrote: Hi Jukka, The behavior you

Re: [JPP-Devel] Mouse wheel zoom and WMS

2010-02-03 Thread Larry Becker
, Feb 2, 2010 at 5:02 PM, Larry Becker becker.la...@gmail.com wrote: OK, I have committed an experimental version of AbstractZoomTool that incorporates a deferred mouse wheel zoom for half a second. It does an image stretch from the center of the panel until the half second expires. Please test

Re: [JPP-Devel] Jump DB Query Plugin now supports Spatialite

2010-02-03 Thread Larry Becker
-devel -- Larry Becker Integrated Systems Analysts, Inc. -- The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business Choose flexible

Re: [JPP-Devel] Using Web Mercator tilesets in JUMP?

2010-02-05 Thread Larry Becker
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- The Planet: dedicated and managed hosting, cloud storage, colocation Stay online

Re: [JPP-Devel] AdB-ToolBox: a word about future developments

2010-02-05 Thread Larry Becker
___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- The Planet

Re: [JPP-Devel] Find/Substitute attribute

2010-02-05 Thread Larry Becker
/jump-pilot-devel -- Larry Becker Integrated Systems Analysts, Inc. -- The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business

Re: [JPP-Devel] AdB-ToolBox: a word about future developments

2010-02-08 Thread Larry Becker
values (I think the sources are in the OrbisGIS repository for the ASCII grid reader). so let me know if you think that we should build on the Sextante design as well (also with respect to all their algorithms). stefan Larry Becker schrieb: once the raster is loaded

Re: [JPP-Devel] Find/Substitute attribute

2010-02-08 Thread Larry Becker
box with the only exception to have the possibility to select the attribute where to search. I didn't realize that autoassign attributes would have been a valid substitute. Peppe --- Ven 5/2/10, Larry Becker becker.la...@gmail.com ha scritto: Da: Larry Becker becker.la...@gmail.com

Re: [JPP-Devel] EZ Buttons

2010-02-09 Thread Larry Becker
hosting pros just a phone call away. http://p.sf.net/sfu/theplanet-com ___ Jump-pilot-devel mailing list Jump-pilot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel -- Larry Becker Integrated Systems Analysts

<    1   2   3   4   5   6   7   8   >