back to Documentation page
Anyone can get read-only access to SVN (username = anonymous, no password). Instructions are here: http://sourceforge.net/svn/?group_id=118054
If you want read/write access, send an email to the JPP-developer list or the project managers, and we will make a decision.
Java Unified Mapping Platform
JUMP stands for the “JUMP Unified Mapping Platform”. It was coined by Martin Davis at Vivid Solutions .
Sounds like you need a way to specify your proxy server. Turns out there’s a way to do this without modifying the Java code (as long as you don’t need to specify a username and password). Simply edit your startup script as follows: replace “start javaw” with something like:
start java -DproxySet=true -DproxyHost=myProxyServer.com -DproxyPort=80
More details at http://www.rgagnon.com/javadetails/java-0085.html
The Select Parts tool will let you select the individual geometries in a MultiPolygon, MultiLineString, MultiPoint, or GeometryCollection.
Evidently Java apps look problematic when run in Gnome. A simple workaround is to install the Looks Extension plugin, which applies the aesthetically pleasing JGoodies Looks skin.
You need to set up JBuilder to copy the following resources from your source directory to your output directory: .png, .gif, .java2xml, .html, .xml, .txt, .jpg. To do this:
1. Add the .java2xml file type to JBuilder by going to Tools / IDE Options / File Types. Select “XML file”, click Add, then enter “java2xml”.
2. Mark the above seven file types for copying by going to Project Properties / Build / Resource.
Click Tools > Feature Statistics. This will create a new layer containing areas and lengths. Right-click this layer and click View / Edit Attributes to view the areas and lengths.
Included with OpenJUMP is a Developer’s Guide with a tutorial on creating a simple plugin that pops up a Hello World window. This is a good way to get started.
Use the difference function of the menu Tools menu. see picture below. But you can also use the shift button during drawing see Tips.

The coordinate transformation plugin is turned off because there aren’t many projections in it (UTM, Transverse Mercator, lat/long, BC Albers). However, if you want to turn it on and try it out:
1. Click View > BeanShell
2. Paste in the following text and hit Enter:
new com.vividsolutions.jump.workbench.ui.plugin.FeatureInstaller(wc).addMainMenuItem(new com.vividsolutions.jump.workbench.ui.plugin.ChangeCoordinateSystemPlugIn(), “TEST”, “Change Coordinate System…”, null, new com.vividsolutions.jump.workbench.plugin.EnableCheckFactory(wc).createTaskWindowMustBeActiveCheck())
3. You should now see TEST in the menubar. Click TEST > Change Coordinate System to set the current coordinate system of the data.
4. To transform the data into a different coordinate system , click TEST > Change Coordinate System again and select the new coordinate system.
JUMP came first, but development has slowed down, so some enthusiastic users took the initiative to continue JUMP development on their own – their version is called OpenJUMP.
The JUMP Pilot Project is the same thing as OpenJUMP. That’s what it was called before the rename.
This is 64 bit problem. There are 2 solutions: If you are able to programm, you can change in the package
com.vividsolutions.jump.feature the class AttributeTypes:
public final static AttributeType INTEGER = new AttributeType(“INTEGER”, Integer.class)
and change it to:
public final static AttributeType INTEGER = new AttributeType(“INTEGER”, Long.class
The second solution – if you dont have programming knowledge – is, to change the attribute type of your dbf table from Integer to Double. (please make a copy of your data before doing any changes)
Please check if you have write-access to the geometry_columns table
Goto File Menu Choose Load Dataset(s)
When the Load Dataset(s) dialog appears choose SDE query on the popup menu at the top left corner of the dialog. This will display the connection edit boxes. When you have entered the correct data click OK.
This will bring up the dialog so that you can choose one or more layers from the SDE.
You must create a temp/ folder inside OJ’s install folder and give it read/write permissions. This is where the plugin stores temp info for the MrSID images being read.
see also Layer
(i didn’t see any of that mentioned in the user guide, so hopefully this helps someone else)
(i tried placing that file in /jump/lib/ext/ but it did not work…but placing it in the java dir does work)
jeff
a detailed how to is provided here: Using Your Own (Geologic) Symbology
Actually OpenJUMP doesn’t georeference raster files.
Please use external software like Hypercube (Windows and Mac) or Geroreferencing Tool for MapWindow (Windows).
An interesting tutorial about how to use Hypercube to georeferene raster can be found here
please have a look on this page: OpenJUMP Logo
If you are saving your data to ESRI Shapefiles there is a limit placed on the length of field names. This limit is imposed by the underlying DBF file that is used to stored attribute information as part of the Shapefile format. The limit is 10 characters.