[JPP-Devel] Sponsors

2010-07-08 Thread Hernan Arellano
Hi All Anybody know who are the sponsors of OpenJump, Organizations of JPP? Thanks Hernan _ -- This SF.net email is s

Re: [JPP-Devel] OpenJump Documentation

2010-06-24 Thread Hernan Arellano
Hi Benjamin! It is a great work!! That is what I was looking for, it is very useful. Thank you for share it, and thank all those who collaborate with this great list!! Regards Hernan _

[JPP-Devel] Aditional information about OpenJump

2010-06-24 Thread Hernan Arellano
Hi All! Does anyone knows the minimal and recomended system requirements to OPENJUMP? I mean OS suported xp, vista, Seven, linux versions, amount of memory, CPU, etc, Other question, what are the dependency of OJ? I mean third parts that OJ needs to work, e.g. GeoTools, JRE, etc. Thanks in

[JPP-Devel] OpenJump Documentation

2010-06-24 Thread Hernan Arellano
Hi All! Does anyone know if there is documentacion of OJ Core? Documentation like class diagram or something where i can see the main classe and their relations (Map, LayerManager, Layer, etc). If there is not, maybe someone have a scheme of the most important classes that can share.

[JPP-Devel] Bug while loading a jpeg image (OJ default plugin)

2010-06-15 Thread Hernan Arellano
Hi, Does any one know the image requeriments to add into OJ? is there any documentation about this? Regards Hernan. _ -

Re: [JPP-Devel] Fonts True type as style of a point

2010-06-15 Thread Hernan Arellano
Larry that would be great!, and also would be very useful to add VertexStyle inside of the ColorThemingStyle if it`s possible. Hernan. _ -

[JPP-Devel] Fonts True type as style of a point

2010-06-14 Thread Hernan Arellano
Hi all! I got some fonts (True Type) and I want to assign a Character of any fonts to a Layer of points as style, it is like the vertex style with images, but I got many many fonts builded instead of images. Is it possible to use fonts? Thanks Hernán.

Re: [JPP-Devel] Style to points within the ColorThemingStyle

2010-06-11 Thread Hernan Arellano
Nils, Sunburned Thanks for answer guys, This was what I supposed, unfortunately i have not still the enough knowledge to modify the core of OJ, maybe in a couple of weeks... Geoffrey your plugins are nice, I will test them, but reading the description of vertexPlugin, I have noted that it

[JPP-Devel] Bug while loading a jpeg image (OJ default plugin)

2010-06-10 Thread Hernan Arellano
Hi all! I have recived an error while loading a jpeg image, when I was using the default plugin OpenFilePlugIn of OJ. The problem is to some images like this but with lesser resolution images OJ works ok. The image does not appear and its properties are: jpeg, dimention 5830x4514, size 6 MB,

[JPP-Devel] Style to points within the ColorThemingStyle

2010-06-08 Thread Hernan Arellano
Hi all! I need to assign style to a Layer of points, but inside of the ColorThemingStyle (with Style i mean show the point like a triangle, square or circle). I know and I use VertexStyle to assign the style to the layer and It works ok like a BasicStyle, but this kind of style is used to wh

Re: [JPP-Devel] Generate file of tracings (Persona lized Feature Layers)‏

2010-06-04 Thread Hernan Arellano
Hi Nils, You are right, I was missed with some things. I found that I need with the things you told me and reading the GMLReader class code. Regards Hernan. _ ---

[JPP-Devel] Generate file of tracings (Persona lized Feature Layers)‏

2010-06-02 Thread Hernan Arellano
Hi guys! I need to generate a file of tracings (like a feature layer), this file must contain distint shapes like points, lines, poligons, symbology, and text, all these shapes drawed by user on a map. I know that to do this, I need to generate a new FLayer for each kind of shape and draw on

Re: [JPP-Devel] How to hide menu options without desactivate the plugin

2010-06-02 Thread Hernan Arellano
Hi stefan! I have proved it and it works perfect! Thanks a lot! you rule man! Hernan. _ -- ThinkGeek and WIRED'

[JPP-Devel] How to hide menu options without desactivate the plugin

2010-06-02 Thread Hernan Arellano
Hi all! thanks for answer in advance! I need to hide the options of the menu i.e. "FILE" and all its submenus, "EDIT" and all its submenus, . including the ABOUT menu. But i don´t want desactivate these plugins, i just want to use them only by code. I saw the file called "default-plugins.

Re: [JPP-Devel] How handle diferents menu items, inside the same plugin

2010-06-02 Thread Hernan Arellano
Ok, This was what I thought. thanks for the help!. Hernan. _ --

[JPP-Devel] How handle diferents menu items, inside the same plugin

2010-06-01 Thread Hernan Arellano
Hi all! I got only one plugin with diferents menu items, each of them call a diferent method. Therefore inside the method execute(PlugInContext context) ¿how can i know which button is pressed? so i can call the correct method. public void initialize(PlugInContext context) throws Exce

Re: [JPP-Devel] How to Create TransverseMercator Coordinate System

2010-05-31 Thread Hernan Arellano
hi stefan! I got the shapefiles made with Planar coordinate system (Transversa Mercator), it is not lat/lon. Yes you are right, OpenJump displays perfectly the coordinates as written in the shapefile, but I also want reproject it to lat/lon coordinate system, so I can see both coordinates in

[JPP-Devel] How to Create TransverseMercator Coordinate System

2010-05-31 Thread Hernan Arellano
Hi all! thanks for reading in advance! I got ESRI Shapefiles, they are made with the Projection Gauss Kruger Posgar 94 Number 1. I know that the epsg code is 22181, and i also know other atributes for this projection like OriginLongitude= -72 ; OriginLatitude= -90 ; FalseEasting= 150; Fal

Re: [JPP-Devel] How to load ESRI shapefiles by code

2010-05-28 Thread Hernan Arellano
Hi all, in the same way that load a layer by code, I needed load a jpg image by code, at the same map. I want to share with you too, the code to load an image without a wizard: *** *** public boolean execute(PlugInContext context) throws Exception { LayerManager layerManager = co

Re: [JPP-Devel] How to load ESRI shapefiles by code

2010-05-27 Thread Hernan Arellano
Thanks for the help guys! I`ve solved it by the following code: (maybe there are some things no needed, like options, but it works!!) DataSource dataSource = (DataSource)LangUtil.newInstance(StandardReaderWriterFileDataSource.Shapefile.class); Map options = new HashMap(); Map

[JPP-Devel] How to load ESRI shapefiles by code

2010-05-26 Thread Hernan Arellano
Hi all! i'm working on a project, with OpenJump 1.3.1, that it needs to load a set of ESRI Shapefiles from a path to any category of the map. I`ve seen the following code to load a shapefile, of the method "open" from DataSourceFileLayerLoader class. The problem is that this uses a monitor of