Re: [JPP-Devel] Run Datastore Query plugin modify

2007-07-15 Thread Stefan Steiniger
Hei Pavel,

if i remember correctly there has been also a SQL plugin on the projet 
SIGLE webpage. (i think "OpenJUMP the Merge" did contain that plugin too)

stefan

Pavel Ševčík schrieb:
> Good Day.
> I want create wizard for spatial queries for system PostGis by means of edits 
> existing plugin Run Datastore Query. Wizard  would 'd to be similar to Wizard 
> use in application QuantumGIS 0.8. It should make possible simple trust using 
> PostGis function. (Lenght, Distance, Transform…). If already exists similar 
> plugin, or somebody develops on similar plugin, please write me e-mail.
> 
> please excuse my English
> P.
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Image reprojection

2007-07-15 Thread Stefan Steiniger
no..

dont know how far geotools people worked on that

but are you talking about geographical projections or just simple image 
stretching and rotation (i.e. affine transforms)

stefan

Paul Austin schrieb:
> Has anyone done any work with the raster plugins to support reprojecting 
> the images when loading/viewing in JUMP?
> 
> Thanks,
> Paul
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Extension Manager - addendum

2007-07-15 Thread Stefan Steiniger
Pedro Doria Meunier schrieb:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Hi Guys
> 
> Found what went wrong...
> The method put the file 'ext\gt2jump.cts-0.1a.zip' in the lib/ folder.
> So this is clearly a path problem.

sorry for not beeing in
.. is that the "trailing space" problem added as bug by a user?

stefan

> The method should check the envvar $JUMPHOME and then download the
> required plugin to $JUMPHOME/lib/ext where it then should decompress
> the file.
> I'm wondering about files with the same name, though... (during
> decompression).
> 
> Kind regards,
> Pedro Doria Meunier
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.7 (GNU/Linux)
> Comment: Using GnuPG with Remi - http://enigmail.mozdev.org
> 
> iD8DBQFGmLcj2FH5GXCfxAsRAjFOAJ9LMAi1NAgFjJWruFDkhdKWgX7F+gCfbwbL
> MZk7fu6X83Kqv5zqExt//kY=
> =/pex
> -END PGP SIGNATURE-
> 
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Adding attributes and attribute values

2007-07-16 Thread Stefan Steiniger
as far as i remember it is not possible to simply extend the 
FeatureSchema of a FeatureDataSet and the set the attribute.
You need to "copy/transform" every Feature towards the new Schema and 
create a new Feature and a new Feature Collection.

see for instance:
org.openjump.core.spatialAttributeOps.copyFeature(Feature feature, 
FeatureSchema newSchema)

i think in the pirol package are also similar functions: 
de.fho.jump.pirol.apiTools.FeatureCollectionTools

stefan

Anthony Jjumba wrote:

> I would like to add a new attribute to a schema and then start adding 
> values to the added attribute however I am
>
> having problems with it.
>
>  
>
> I have a shapefile from which I get:
>
>  
>
> FeatureCollection allFeatures;
>
> FeatureSchema lyrSchema = allFeatures.getFeatureSchema();
>
> Iterator fIt = allFeatures.iterator();
>
>  
>
> //check to see if attribute does not exist 
> already
>
> if(!lyrSchema.hasAttribute("myField")){
>
>   lyrSchema.addAttribute("myField",AttributeType.STRING);
>
> }
>
> //loop through all the features and add an 
> attribute value in the 'myField' column
>
> while (fIt.hasNext()){
>
> Feature currFeature = (Feature)fIt.next();
>
> currFeature.setSchema(lyrSchema);
>
> String attrValue = "someText";
>
> currFeature.setAttribute("myField",attrValue); // program 
> crashes here
>
> }
>
>
>
>
>
> I have checked and I am sure I can get the attribute index of the 
> 'myField' attribute that has just been added.
>
> However, for some reason I am not able to add the attribute value.  
>
>  
>
> It gives me this error:
>
> Exception in thread "AWT-EventQueue-0" 
> java.lang.ArrayIndexOutOfBoundsException: 4
>
>  
>
> Any ideas or help will be appreciated. 
>
> Thanks,
>
> Anthony
>
>
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.476 / Virus Database: 269.10.6/900 - Release Date: 
> 7/14/2007 3:36 PM
>
>
>
>-
>This SF.net email is sponsored by DB2 Express
>Download DB2 Express C - the FREE version of DB2 express and take
>control of your XML. No limits. Just data. Click to get it now.
>http://sourceforge.net/powerbar/db2/
>
>
>
>___
>Jump-pilot-devel mailing list
>Jump-pilot-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>  
>


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OpenJUMP 1.2 Beta vs Openjump Nightly Build

2007-07-17 Thread Stefan Steiniger
Hei,

i am actually nearly back to business. I submitted my work by end of 
last week.

i thought about the proposal from Peppe over the weekend,
but i have not even decided yet for myself.

what we could do is to make (fast) a new release with the improvements. 
But...
*) it should not be 1.2, since a couple of things have still to be done 
(i.e. translations, chnaging of menu sub-grouping?)

*) what would be the version? 1.2.1 is not possible, probably 1.2 C ??, 
but this looks crude, any suggestions?

There are currently no developement plans. We never have setup them so 
far, as we never had that much programmers available as now. I guess our 
major future efforts will be on transfering the developments from SkyJUMP.
Making plans for new developements is possible, but requires probably 
professionals that are not working in their free time on OJ. We could 
start something like, but i dont want that we impose something on 
volunteers, as i am glad we have them. Currently i also don't see that 
development is going into a wrong direction, as in the majority small 
usefull plugins are developed (e.g. by Paul)
Of course, larger changes need plans, but currently i don't see that we 
have as much man-power to realize large core changes. I know that a 
couple of projects have such plans ( i think even Qgis has), but most of 
the teams have a company in the backgound and further we should only 
setup plans if there is a real chance that we can stick to them.

But suggestions/comments are welcome.

stefan

Sunburned Surveyor schrieb:
> Peppe,
> 
> As you can see, our project could benefit from a little more organized
> approach to releases.
> 
> However, I typically defer to Stefan in this particular area, so I
> will let him respond to your post if he is not too busy.
> 
> The Sunburned Surveyor
> 
> On 7/16/07, Giuseppe Aruta <[EMAIL PROTECTED]> wrote:
>> Hi all,
>>
>> I saw that OpenJUMP 1.2 Beta is still available on
>> Sourge forge.
>> Nevertheless OJ nightly build walked more further.
>> Many important bugs were solved (see snap options)and
>> there are also some small but significant
>> modifications (see the desapeared "Open or Save
>> datastore as file.." function from "file" menu).
>> Many new user would be confused and download the buggy
>> OJ Beta instaead of new nightly build ones which seem
>> to work  better.
>>
>> Questions/proposals:
>>
>> 1) is it time to upgrade OJ BETA on Sourgeforce to one
>> of the latest nightly build?
>>
>> 2) would we call it OpenJUMP 1.2 (no beta). Nightly
>> Builds solve bugs but they are on the road to
>> something different (OJ 1.3?)  because of  the small
>> modification and other up-to-come projects (ex. see
>> Paul Austins' Open (File) Plugin project)
>>
>> 3) What about to plan a sort of road map for the
>> future (OJ 1.3 and maybe OJ 1.4)?
>>
>> Thanks all
>>
>> Peppe
>>
>>
>>  ___
>> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
>> http://it.docs.yahoo.com/nowyoucan.html
>>
>> -
>> This SF.net email is sponsored by DB2 Express
>> Download DB2 Express C - the FREE version of DB2 express and take
>> control of your XML. No limits. Just data. Click to get it now.
>> http://sourceforge.net/powerbar/db2/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] New Help Page on OpenJUMP wiki

2007-07-17 Thread Stefan Steiniger
@Pepe,

btw: if you want to inlcude images in the help (on the wiki) we can add 
you to our "developer list" (that requires an sourceforge account) and 
we can give you write access to our project-webspace for storing the images.

please send me an email if that would fit you and i will send you 
further instructions.

(actually one may also think about using the sourceforge wiki for it, 
but the OJ wiki is still our major page, i.e. most important)

stefan

Sunburned Surveyor schrieb:
> I agree with Michael and Stefan, Peppe. This is great documentation.
> 
> Thanks for the hard work.
> 
> The Sunburned Surveyor
> 
> On 7/14/07, Michaël Michaud <[EMAIL PROTECTED]> wrote:
>> Hi Giuseppe,
>>
>> Nice and useful list, I'm sure many users don't know what OpenJUMP
>> really can do :-) .
>>
>> Michaël
>>
>> Giuseppe Aruta a écrit :
>>
>>> Hi everybody
>>>
>>> I invite you to see the new help page (OpenJUMP List
>>> of Function) which I put on OpenJUMP Documentation
>>> Page
>>> http://openjump.org/wiki/show/OpenJUMP+List+of+Functions
>>> I put on this page some paragraphers (the ones I wrote
>>> by now) and I program to upgrade  by the time I write
>>> new one.
>>> The aim is to have a complete  list of functions of
>>> OpenJUMP software
>>>
>>>
>>> Peppe
>>>
>>>
>>>  ___
>>> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
>>> http://it.docs.yahoo.com/nowyoucan.html
>>>
>>> -
>>> This SF.net email is sponsored by DB2 Express
>>> Download DB2 Express C - the FREE version of DB2 express and take
>>> control of your XML. No limits. Just data. Click to get it now.
>>> http://sourceforge.net/powerbar/db2/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>
>>>
>>
>> -
>> This SF.net email is sponsored by DB2 Express
>> Download DB2 Express C - the FREE version of DB2 express and take
>> control of your XML. No limits. Just data. Click to get it now.
>> http://sourceforge.net/powerbar/db2/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OpenJUMP 1.2 Beta vs Openjump Nightly Build

2007-07-17 Thread Stefan Steiniger
wow..

but lets see how the look and feel will be (it looks in the screenshot 
pretty much like eclipse which is not that probably a low usuability for 
the non-devloping-enduser due to an information overload) but if all 
windows except the map window are "stackable" (term ?) into one window 
using tabs.. then it is pretty cool.


btw. @Paul:
about the file-dialog. i had an idea a while ago using an intermediate 
dialog, showing icons, from which one selects other types of data 
sources - with their necessary params and so on). This concept is for 
instance used in Cadcorp SIS (similar to the info/view tabs). I can send 
  some images if needed.

stefan

Paul Austin schrieb:
> Stefan,
> 
> In terms of naming of releases I like the form major.minor.patch then 
> with suffixes like _pre when we are getting ready for a release or 
> _beta when we have a version ready for testing but it's not close to 
> being a final release.
> 
> I've managed to convert all my stuff to plug-ins now with no changes to 
> the core, so when I have something ready to share I'll put it out there 
> and we can decide if we want to integrate into the core at a later date. 
> I've attached a screen shot as a teaser for what I've been working on.
> 
> Paul
> 
> Stefan Steiniger wrote:
>> Hei,
>>
>> i am actually nearly back to business. I submitted my work by end of 
>> last week.
>>
>> i thought about the proposal from Peppe over the weekend,
>> but i have not even decided yet for myself.
>>
>> what we could do is to make (fast) a new release with the 
>> improvements. But...
>> *) it should not be 1.2, since a couple of things have still to be 
>> done (i.e. translations, chnaging of menu sub-grouping?)
>>
>> *) what would be the version? 1.2.1 is not possible, probably 1.2 C 
>> ??, but this looks crude, any suggestions?
>>
>> There are currently no developement plans. We never have setup them so 
>> far, as we never had that much programmers available as now. I guess 
>> our major future efforts will be on transfering the developments from 
>> SkyJUMP.
>> Making plans for new developements is possible, but requires probably 
>> professionals that are not working in their free time on OJ. We could 
>> start something like, but i dont want that we impose something on 
>> volunteers, as i am glad we have them. Currently i also don't see that 
>> development is going into a wrong direction, as in the majority small 
>> usefull plugins are developed (e.g. by Paul)
>> Of course, larger changes need plans, but currently i don't see that 
>> we have as much man-power to realize large core changes. I know that a 
>> couple of projects have such plans ( i think even Qgis has), but most 
>> of the teams have a company in the backgound and further we should 
>> only setup plans if there is a real chance that we can stick to them.
>>
>> But suggestions/comments are welcome.
>>
>> stefan
>>
>> Sunburned Surveyor schrieb:
>>  
>>> Peppe,
>>>
>>> As you can see, our project could benefit from a little more organized
>>> approach to releases.
>>>
>>> However, I typically defer to Stefan in this particular area, so I
>>> will let him respond to your post if he is not too busy.
>>>
>>> The Sunburned Surveyor
>>>
>>> On 7/16/07, Giuseppe Aruta <[EMAIL PROTECTED]> wrote:
>>>
>>>> Hi all,
>>>>
>>>> I saw that OpenJUMP 1.2 Beta is still available on
>>>> Sourge forge.
>>>> Nevertheless OJ nightly build walked more further.
>>>> Many important bugs were solved (see snap options)and
>>>> there are also some small but significant
>>>> modifications (see the desapeared "Open or Save
>>>> datastore as file.." function from "file" menu).
>>>> Many new user would be confused and download the buggy
>>>> OJ Beta instaead of new nightly build ones which seem
>>>> to work  better.
>>>>
>>>> Questions/proposals:
>>>>
>>>> 1) is it time to upgrade OJ BETA on Sourgeforce to one
>>>> of the latest nightly build?
>>>>
>>>> 2) would we call it OpenJUMP 1.2 (no beta). Nightly
>>>> Builds solve bugs but they are on the road to
>>>> something different (OJ 1.3?)  because of  the small
>>>> modification and other up-to-come projects (ex. see
>>>> Paul Austins' Open (File) Plugin project)
>>>>
>>>> 3) What about 

Re: [JPP-Devel] OpenJUMP 1.2 Beta vs Openjump Nightly Build

2007-07-17 Thread Stefan Steiniger
sorry for my english.. i changed the sentence afterwards:

right form:

but lets see how the look and feel will be (it looks in the screenshot
pretty much like eclipse. That type of GUI ordering probably has low 
usuability for
the non-devloping-enduser due to an possible information overload)

stefan

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OpenJUMP 1.2 Beta vs Openjump Nightly Build

2007-07-19 Thread Stefan Steiniger
Hei Paul,

about the file loading:
it is not clear to me why you think we need both (open file and add 
layer), but it is clear to me that we need both in the background.
Anyway, as you implement the changes, it is your decission! I was only 
proposing something that i found of high "usuability". Something like 
this can still be an option for future releases or "OJ Starter Versions".
I will welcome every decission you do :)

On the tabs..
I can't comment as I am not sure on what you really like to point on. 
What kind of lack, or even misdevlopment, do you identify?
But introducing the tab-sytle is something what I currently consider a 
"user friendly" and "nice to have sometime" option. (you know.. ideas 
are many out there but time and man power to realize is limited ;)

stefan

Paul Austin schrieb:
> Stefan,
> 
> I can see the need for two approaches to adding layers, both of them
> provide a simple approach to loading data
> 
>1. Open File..
>   * This is what I'm currently working on
>   * Behaves like any Open File.. menu item/toolbar button in MS
> Word and other apps
>   * Only works with file based data sets
>   * Lets the user select one or more files to add as layers and
> to have a filter to only view files of certain types
>   * If a particular type of file has options or if there are a
> couple of choices of loaders to display a second dialog will
> be displayed to accept those options
>   * Will work for imagery, vector layers, compressed files
> (containing 1 or more file)
>2. Add Layer...
>  1. Wizard approach as shown in your screen shot, provides a
> slick approach for novice and advanced users
>  2. Works with any type of layer from files, databases to Web
> Services
>  3. I'll let someone else tackle this one
> 
> 
> For the Open File.. plugin there will be an interface FileLoader that
> each loader of files will implement, the interface will contain methods
> to get the file extensions, description, open a file and get the
> options. I have all this working except the options part.
> 
> I have defined two implementations of FileLoader, one to work with
> existing DataSource implementations (e.g. SHP, WKT, GML, JML, FME) and
> another to work with ReferencedImageFactories (e.g. jpg, ecw, mrsid) so
> there is minimal work to implement this new approach.
> 
> I'm going to start setting up a daily build of my plugins so I can share
> what I've done for review.
> 
> I like the ideas of the tabs to display things other than layers, the
> big one I think we need is the concept of a Project Catalogue that lists
> the sources of data that are loaded as part of a project (e.g. shp
> files, databases, wms servers etc). From this list a user would be able
> to say navigate a postgres database select a table and say add this as a
> layer to my current view.
> 
> Paul
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coding Stlyle / Namespace

2007-07-19 Thread Stefan Steiniger
Hei Harvey,

we welcome you (and others) on the list

Harvey Harrison schrieb:
> I'm new to the list and was wondering how welcome patches would be to
> do some codingstyle / pachage name cleanup?
> 
> Is there a standard codingstyle accepted for the project?
> 
> Is there any move afoot to unify under the org.openjump.* namespace
> and remove the com.vividsolutions, etc namespaces to make things more
> coherent.  Would such changes be welcomed?
> 

our last decissions (one may correct me here) has been that we don't go 
for code style standards, since everybody has his own preferences. A 
further, and more important reason, is that such small changes in the 
code make it very hard to keep the sources in sync and update new 
features among different projects (e.g. JUMP, OpenJUMP, SkyJUMP, SIGLE).

Similar things hold for the renaming of packages. Of course a 
unification is a plus and should be considered for the future (in one 
year???), but it makes updating between projects unnecessary diffcult. 
The current style also provides hints for programmers for the original 
sources.
I hope on your understanding?

But suggestions, bug-patches, reviewing, ... i.e. any feedback is highly 
appreciated.

> Also, any pointers to some low-hanging fruit a new developer could
> help with to get familiar with the project?

puhh.. thats a tricky question ;)
Here it would be nice to know your skills or background (for instance we 
have only very few people that are familiar with threading for GUI 
functionalities, but also database specialists or GIS analysis, raster 
tools specialists are sought)

currently people contribute "uncoordinated". That is everybody does what 
he things is of interest in his own work/project.
A rule is that we try to do as less core changes as possible and favour 
if new functionality is delivered by use of the great plugin concept. 
Changes of the core have to be discussed on the list, before any commit.

For direct inputs on "fruits" i would refer to our bug and feature 
request lists on sourceforge, as well as to this section on the wiki:
http://openjump.org/wiki/show/Future+Developments
(but i must admit, that some of the issues are rather old)

so finally my general answer would be, tell us (i.e. the list or in a 
personal email*) what is your (programming) background and/or what is 
your specific interest.
The top ranked things to do, are related to an OpenJUMP 1.2 release - 
which inludes even some non-dev-todos like documentation  (Peppe has a 
go on it) and creating windows-installer-versions (i think Paul put some 
hands on, and SkyJUMP has already a quite well working windows installer)

BTW: if you are a mac-osx-user and developer then we may have specific 
challenges for you ;)

cheers,
stefan


*) people who have contributed since a long time to the project (i.e. 
have a well-founded knowledge on source-code and the project), are: 
Michael Michaud, Larry Becker, Sunburned Surveyor and I. The designer of 
JUMP, Martin Davis, and original JUMP programmers, Jon Aquino and David 
Zwiers, are also watching this list.

> 
> Cheers,
> 
> Harvey Harrison
> 
> -
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coding Stlyle / Namespace

2007-07-19 Thread Stefan Steiniger
ups.. i did not thought about the plugins.
they would be really a major issue, as there should be a lot of plugins 
outhere (actually i estimate that our university research group only has 
developed 50 plugins which would be hard to change). but this holds 
probably only for the com.vividsolutions code

stefan

Stefan Steiniger schrieb:
> Hei Harvey,
> 
> we welcome you (and others) on the list
> 
> Harvey Harrison schrieb:
>> I'm new to the list and was wondering how welcome patches would be to
>> do some codingstyle / pachage name cleanup?
>>
>> Is there a standard codingstyle accepted for the project?
>>
>> Is there any move afoot to unify under the org.openjump.* namespace
>> and remove the com.vividsolutions, etc namespaces to make things more
>> coherent.  Would such changes be welcomed?
>>
> 
> our last decissions (one may correct me here) has been that we don't go 
> for code style standards, since everybody has his own preferences. A 
> further, and more important reason, is that such small changes in the 
> code make it very hard to keep the sources in sync and update new 
> features among different projects (e.g. JUMP, OpenJUMP, SkyJUMP, SIGLE).
> 
> Similar things hold for the renaming of packages. Of course a 
> unification is a plus and should be considered for the future (in one 
> year???), but it makes updating between projects unnecessary diffcult. 
> The current style also provides hints for programmers for the original 
> sources.
> I hope on your understanding?
> 
> But suggestions, bug-patches, reviewing, ... i.e. any feedback is highly 
> appreciated.
> 
>> Also, any pointers to some low-hanging fruit a new developer could
>> help with to get familiar with the project?
> 
> puhh.. thats a tricky question ;)
> Here it would be nice to know your skills or background (for instance we 
> have only very few people that are familiar with threading for GUI 
> functionalities, but also database specialists or GIS analysis, raster 
> tools specialists are sought)
> 
> currently people contribute "uncoordinated". That is everybody does what 
> he things is of interest in his own work/project.
> A rule is that we try to do as less core changes as possible and favour 
> if new functionality is delivered by use of the great plugin concept. 
> Changes of the core have to be discussed on the list, before any commit.
> 
> For direct inputs on "fruits" i would refer to our bug and feature 
> request lists on sourceforge, as well as to this section on the wiki:
> http://openjump.org/wiki/show/Future+Developments
> (but i must admit, that some of the issues are rather old)
> 
> so finally my general answer would be, tell us (i.e. the list or in a 
> personal email*) what is your (programming) background and/or what is 
> your specific interest.
> The top ranked things to do, are related to an OpenJUMP 1.2 release - 
> which inludes even some non-dev-todos like documentation  (Peppe has a 
> go on it) and creating windows-installer-versions (i think Paul put some 
> hands on, and SkyJUMP has already a quite well working windows installer)
> 
> BTW: if you are a mac-osx-user and developer then we may have specific 
> challenges for you ;)
> 
> cheers,
> stefan
> 
> 
> *) people who have contributed since a long time to the project (i.e. 
> have a well-founded knowledge on source-code and the project), are: 
> Michael Michaud, Larry Becker, Sunburned Surveyor and I. The designer of 
> JUMP, Martin Davis, and original JUMP programmers, Jon Aquino and David 
> Zwiers, are also watching this list.
> 
>> Cheers,
>>
>> Harvey Harrison
>>
>> -
>> This SF.net email is sponsored by: Microsoft
>> Defy all challenges. Microsoft(R) Visual Studio 2005.
>> http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> 
> -
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] postgis plugin SCM

2007-07-19 Thread Stefan Steiniger
in the jar itself?

stefan

Paul Austin schrieb:
> Does anyone known where the SV/CVS or source code for the postgis
> plug-in can be found?
> 
> Cheers,
> Paul
> 
> -
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] FW: Autoreply: Jump-pilot-devel Digest, Vol 14, Issue 34

2007-07-24 Thread Stefan Steiniger
Hei,

i though the "bounce" function of the email list would handle such cases?
but it does not look like.

btw. currently Sunburned and I manage all emails from non-list members 
by hand (about 4 emails a day)

stefan

Sunburned Surveyor wrote:

>David,
>
>I believe the only thing I can do is ask the "offending" party to turn
>off their auto-reply feature. I don't believe there is a way to
>recognize these automated replies on SourceForge/GMane and filter them
>out.
>
>I'll CC the list on this. Maybe someone there will have a suggestion for us.
>
>Landon
>
>On 7/23/07, David Zwiers <[EMAIL PROTECTED]> wrote:
>  
>
>>This list seems to be getting spammed ... Any chance you could alter the
>>auto-reply?
>>
>>Thanks
>>David
>>
>>
>>
>>>-Original Message-
>>>From: [EMAIL PROTECTED]
>>>[mailto:[EMAIL PROTECTED] On
>>>Behalf Of [EMAIL PROTECTED]
>>>Sent: July 23, 2007 3:37 PM
>>>To: jump-pilot-devel@lists.sourceforge.net
>>>Subject: [JPP-Devel] Autoreply: Jump-pilot-devel Digest, Vol
>>>14, Issue 34
>>>
>>>I am on holiday till the 3th of August and won't be able to
>>>reply to your email. For any urgent matters please contact
>>>Laura Senent at [EMAIL PROTECTED]
>>>
>>>
>>>
>>>-
>>>This transmission (including any attachments) may contain
>>>confidential information, privileged material (including
>>>material protected by the solicitor-client or other
>>>applicable privileges), or constitute non-public information.
>>>Any use of this information by anyone other than the intended
>>>recipient is prohibited. If you have received this
>>>transmission in error, please immediately reply to the sender
>>>and delete this information from your system. Use,
>>>dissemination, distribution, or reproduction of this
>>>transmission by unintended recipients is not authorized and
>>>may be unlawful
>>>
>>>
>>>
>>>
>>>--
>>>---
>>>This SF.net email is sponsored by: Splunk Inc.
>>>Still grepping through log files to find problems?  Stop.
>>>Now Search log events and configuration files using AJAX and
>>>a browser.
>>>Download your FREE copy of Splunk now >>
>>>http://get.splunk.com/ ___
>>>Jump-pilot-devel mailing list
>>>Jump-pilot-devel@lists.sourceforge.net
>>>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>  
>>>
>
>-
>This SF.net email is sponsored by: Splunk Inc.
>Still grepping through log files to find problems?  Stop.
>Now Search log events and configuration files using AJAX and a browser.
>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>___
>Jump-pilot-devel mailing list
>Jump-pilot-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] NPE in de.fho.jump.pirol.utilities.apiTools.FeatureCollectionTools

2007-07-24 Thread Stefan Steiniger
forwad for Malte as I accidently delted his message from the pending 
request list


Dear OpenJump Enthusiast,

I've tried to make a copy of a FeatureCollection containing Features 
with null values.
I used the cloneFeatureCollection-Method of the FeatureCollectionTools 
Class from the Pirol Project (now implemented in the OJ beta, too) and 
got a NPE.


I think a Feature should have Attributes containing null values, so I 
fixed this.

The fixed class is attached.

Greetings from cloudy Hanover,
Malte




/*
 * Created on 12.01.2005
 *
 * SVN header information:
 *  $Author: mentaer $
 *  $Rev: 2509 $
 *  $Date: 2007/02/03 14:19:04 $
 *  $Id: FeatureCollectionTools.java,v 1.2 2007/02/03 14:19:04 mentaer Exp $s
 */
package de.fho.jump.pirol.utilities.apiTools;

import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import com.vividsolutions.jts.geom.Coordinate;
import com.vividsolutions.jts.geom.Envelope;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
import com.vividsolutions.jump.feature.AttributeType;
import com.vividsolutions.jump.feature.BasicFeature;
import com.vividsolutions.jump.feature.Feature;
import com.vividsolutions.jump.feature.FeatureCollection;
import com.vividsolutions.jump.feature.FeatureDataset;
import com.vividsolutions.jump.feature.FeatureSchema;
import com.vividsolutions.jump.workbench.model.Layer;
import com.vividsolutions.jump.workbench.plugin.PlugInContext;
import com.vividsolutions.jump.workbench.ui.EditTransaction;

import de.fho.jump.pirol.utilities.FeatureCollection.PirolFeatureCollection;
import de.fho.jump.pirol.utilities.FormulaParsing.FormulaValue;
import de.fho.jump.pirol.utilities.attributes.AttributeInfo;
import de.fho.jump.pirol.utilities.comparisonAndSorting.ObjectComparator;
import de.fho.jump.pirol.utilities.debugOutput.DebugUserIds;
import de.fho.jump.pirol.utilities.debugOutput.PersonalLogger;
import de.fho.jump.pirol.utilities.metaData.MetaInformationHandler;

/**
 * Class to speed up handling of FeatureCollections (or lists of features) 
during progamming by implementing
 * a set of common tasks.
 * Most functions can be used in a static way, but on the other hand for each 
FeatureCollection a instance of this class can be invoked.
 * This might be more convenient, if there is more than one thing to do with 
the same feature collection. 
 * 
 * @author Ole Rahn
 * 
 * FH Osnabrück - University of Applied Sciences Osnabrück,
 * Project: PIROL (2005),
 * Subproject: Daten- und Wissensmanagement
 * 
 * @version $Rev: 2509 $
 */

public class FeatureCollectionTools extends ToolToMakeYourLifeEasier {

protected FeatureCollection fc = null;
protected List featureList;
private HashMap fid2Object = new HashMap();

protected static PersonalLogger logger = new 
PersonalLogger(DebugUserIds.ALL); 

public FeatureCollectionTools( FeatureCollection fc ){
super(); 
this.fc = fc;
this.featureList = this.fc.getFeatures();
}

public FeatureCollectionTools( List fcl ){
super();
this.featureList = fcl;
}

/**
 * gets the Feature with the given FID.
 [EMAIL PROTECTED] fid FID to look for
 [EMAIL PROTECTED] the feature
 */
public Feature getFeature( int fid ){
Integer FID = new Integer(fid);
if (!this.fid2Object.containsKey(FID)){

this.fid2Object.put(FID,FeatureCollectionTools.getFeatureFromCollection(this.featureList,
 fid));
}

return (Feature)this.fid2Object.get(FID);
}


/**
 * Get the feature with the specified ID from the List 
 [EMAIL PROTECTED] features array with Feature objects
 [EMAIL PROTECTED] fid the feature ID we are looking for
 [EMAIL PROTECTED] feature with specified FID if exists, else null
 */
public static Feature getFeatureFromCollection( List features, int 
fid ){
return 
FeatureCollectionTools.getFeatureFromCollection((Feature[])features.toArray(new 
Feature[0]), fid);   
}

/**
 * Get the feature with the specified ID from the array 
 [EMAIL PROTECTED] features array with Feature objects
 [EMAIL PROTECTED] fid the feature ID we are looking for
 [EMAIL PROTECTED] feature with specified FID if exists, else null
 */
public static Feature getFeatureFromCollection( Feature[] features, int fid 
){
Feature feat;

for ( int i=0; i < features.length; i++ ){
feat = features[i];

if (feat.getID() == fid){
return feat;
}
}
return null;
}

/**
 * deep copies a the Fea

Re: [JPP-Devel] Coming off of hiatus...

2007-07-24 Thread Stefan Steiniger
> Does anyone have some ideas about our most pressing documentation
> needs? Stefan, has Peppe sufficiently covered the new functionality in
> OpenJUMP with his latest documentation efforts?

mhm .. good question.
I would wait if Peppe makes a proposal at which places he needs some 
help. I think that the doc made by Pepe needs also an english revision?

otherwise i am not sure what is still on the todo list of the wiki (in 
the future developments section) .

stefan


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coding Stlyle / Namespace

2007-07-24 Thread Stefan Steiniger
Hei Harvey,

as you are interested in modeling demographic trends.. it seems to me 
quite related to raster modeling. So if you aim to work with raster 
tools: we don't have map algebra at all for now. Thus, if you got your 
first experiences in OJ and want to extend the core for raster "tools".. 
then drop me a line. I think i can tell you about some ideas and first 
plugins made by others (e.g. the image lib I favour and plugins 
developed by Pirol Project).

If you don't work with raster, then i wonder how you do your modelling 
in terms of base data ;)
(I don't know, but maybe such info is a bit list-off-topic or a 
jump-user topic?)

greetings from Zurich
stefan

PS: seems like there are couple of people from Vancouver area, but its 
obvious with respects to JUMP roots ;)

Harvey Harrison schrieb:
> On 7/23/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
>> Harvey,
>>
>> I see you have already received a welcome from some of our active
>> developers. I believe that they have done a good job answering your
>> questions. I also want to welcome you to our mailing list. I'd love to
>> know what context you are using OpenJUMP in, if you are willing to
>> share that. Also, it would be great to know if there are particular
>> aspects of the program that you are interested in working with.
>>
> 
> Well, my interests lie in doing some analysis of demographic trends in
> the greater Vancouver (BC) area.  I'm moderately familiar with
> Arcview/Mapinfo but was looking to build a more intensive growth model
> that will need an easier way of doing the spatial parts.  I'm a pretty
> decent C/C#//Java coder, and this looked like a promising project.
> 
> I've implemented some fairly large modelling projects in Java in the
> past few years (one just passed the 80k lines of code).
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Pluggable Rendering - The End Of This Week???

2007-07-24 Thread Stefan Steiniger
> 
> [1] I noticed that OpenJUMP passes a "SCALE_SHOW" String to each tasks
> RenderingManager. I wasn't able to find a Renderer for this String. I
> did find an InstallScaleShowPlugIn class. This class has an
> org.openjump package structure, so I don't think it was included in
> the original JUMP. Does anyone know what the purpose of this plug-in
> is and how it relates to the rendering of the scale bar in OpenJUMP. I
> need to figure how to integrate it into my pluggable rendering system.

mhm.. as far as i remember i did not change something in the core.
The code i used to display the "scale" as number (i assume you talk 
about this) was more or less a copy of the "scale bar" code from Jump.

so i am not sure where this change should come from (would be good to 
look in the history of the file that provides the string).

It may actually be, that this string is used for the project settings 
and has been added by Jon/Martin for the scale bar.

stefan


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Z value on packed coordinate sequence

2007-07-24 Thread Stefan Steiniger
mhm.. but if it is NaN, then some math functions as distance 
calculations would not work anymore?

stefan

Paul Austin schrieb:
> I just noticed that the packed coordinate sequence uses 0 for the z 
> value if the dimension is < 3.
> 
> I believe that to be inline with the Coordinate class it should be Nan
> 
> Paul
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] build error in svn source?

2007-07-26 Thread Stefan Steiniger
mhm..
do you mean that "lastSetSize" should be replaced by "lastSize"?

ok.. i can do that tomorrow and commit if this is the problem.

stefan

Paul Austin schrieb:
> Stefan,
> 
> Check the version of buoy.jar used
> 
> Paul
> Stefan Steiniger wrote:
>> Hei,
>>
>> i just realized my first SVN checkout.
>> unfortunately i got the following error during the building:
>>
>> lastSetSize cannot be resolved 
>> svn_openjump_src/org/openjump/core/ui/plugin/queries QueryDialog.java 
>> line 143 
>>
>> any idea? where lastSetsize comes from or why it is not defined in 
>> #initInternal()
>>
>> stefan
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] build error in svn source?

2007-07-26 Thread Stefan Steiniger
Hei,

i just realized my first SVN checkout.
unfortunately i got the following error during the building:

lastSetSize cannot be resolved 
svn_openjump_src/org/openjump/core/ui/plugin/queriesQueryDialog.java 
line 143

any idea? where lastSetsize comes from or why it is not defined in 
#initInternal()

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] build error in svn source?

2007-07-26 Thread Stefan Steiniger
mhm.. it seems to be 1.8 added by Michael on July 2nd according to the 
file history. Where can i see the version directly?

i really wonder, as i did a complete new checkout.

Paul Austin schrieb:
> Stefan,
> 
> Check the version of buoy.jar used
> 
> Paul
> Stefan Steiniger wrote:
>> Hei,
>>
>> i just realized my first SVN checkout.
>> unfortunately i got the following error during the building:
>>
>> lastSetSize cannot be resolved 
>> svn_openjump_src/org/openjump/core/ui/plugin/queries QueryDialog.java 
>> line 143 
>>
>> any idea? where lastSetsize comes from or why it is not defined in 
>> #initInternal()
>>
>> stefan
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] where to commit stable/trunk? - Some questions on SVN use

2007-07-27 Thread Stefan Steiniger
Hei,

I need some advise.
Yesterday I made 2 changes
* update of jmat library and
* bugfix

I made this changes in and commited to the stable version
now, as I have been on the way to update the changelog file, I have 
seen, that the one in the stable version is empty, while there is 
another one in the trunk version that is filled.

So I wonder
- where to make the bugfixes (stable/trunk)?,
- Have i done the bugfix in wrong place? and
- which changelog file to use? Or is the empty changelog file in 
"stable" just a mistake and it needs to be replaced?
As far as I see the change of the librarie can only be done in the 
stable version, as there are no libs in the trunk

and .. when I am asking already.. how can the stuff changed in the trunk 
moved to the stable version?

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] how to install resource bundle editor?

2007-07-31 Thread Stefan Steiniger
Hei Michael or any other who is experienced,

how to installed the Resource Bundle Editor 
(http://resourcebundleeditor.com/) ?

It seems like i am not able to bring the editor to work..
I unziped and placed the folder (com.essiembre.blabla..) in the "plugin" 
folder of my eclipse installation, but eclipse seems not to load (i.e. 
the editor is not available in the list of editors, which can be 
assigned to file endings).
Which version of Eclipse (3.2.1) and Plugin (0.7.7) do you use?

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] where to commit stable/trunk? - Some questions on SVN use

2007-07-31 Thread Stefan Steiniger
Hei Paul,

thanx for your advises :)
i appreciate your help

stefan

Paul Austin schrieb:
> Stefan,
> 
> I've just realized that the branch is not an exact directory copy of the 
> trunk it has a different structure and a subset of the files.
> 
> I would manually apply your changes to trunk.
> 
> When we are ready to create another release we should create a new 
> branch from trunk into branches/1.2 that has all the files in trunk. and 
> then delete the current branch.
> 
> Paul
> 
> Paul Austin wrote:
>> Stefan,
>>
>> Here is a nice quick reference for using subclipse 
>> https://www.projects.dev2dev.bea.com/Subversion%20Clients/Subclipse.html
>>
>> For development
>>
>> 1. Checkout 
>> https://jump-pilot.svn.sourceforge.net/svnroot/jump-pilot/core/trunk/ on 
>> your machine
>> 2. Make your changes locally
>> 3. Checkin
>>
>> To merge with the branch.
>>
>> 1. Switch your local files to the stable branch ('Team>Switch to another 
>> branch tag' in eclipse)
>> 2. Merge from the trunk to the branch ('Team>Merge' in eclipse) Enter in 
>> the trunk URL with Head revision as the "FROM" URL and then the branch 
>> as the to URL
>> 3. This will copy any changes in trunk into your local copy of branch, 
>> you'll have to resolve any conflicts
>> 4. When you are happy checkin the branch
>>
>> To make a release.
>>
>> 1. Merge all the things you want from trunk into the branch as above
>> 2. Create a tag of the branch for the new release under tags/> number>, basically in SVN this just creates a copy of the branch under 
>> the tag folder
>>
>> Now because you checkin to the branch you'll have to merge those changes 
>> into the trunk. For the samll number of changes you can always just 
>> checkout trunk and manually reapply the changes.
>>
>>
>> Paul
>>
>> Stefan Steiniger wrote:
>>   
>>> Hei,
>>>
>>> I need some advise.
>>> Yesterday I made 2 changes
>>> * update of jmat library and
>>> * bugfix
>>>
>>> I made this changes in and commited to the stable version
>>> now, as I have been on the way to update the changelog file, I have 
>>> seen, that the one in the stable version is empty, while there is 
>>> another one in the trunk version that is filled.
>>>
>>> So I wonder
>>> - where to make the bugfixes (stable/trunk)?,
>>> - Have i done the bugfix in wrong place? and
>>> - which changelog file to use? Or is the empty changelog file in 
>>> "stable" just a mistake and it needs to be replaced?
>>> As far as I see the change of the librarie can only be done in the 
>>> stable version, as there are no libs in the trunk
>>>
>>> and .. when I am asking already.. how can the stuff changed in the trunk 
>>> moved to the stable version?
>>>
>>> stefan
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>   
>>> 
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coming off of hiatus...

2007-07-31 Thread Stefan Steiniger
Hei Guiseppe..

please send a message if you are back from your holidays and are ready 
for working on the documentation.
then i will send you some more info for uploading images and respond on 
your email

stefan

Giuseppe Aruta schrieb:
> Hi SS Hi Stefan,
> I read my mails every now and then so I took some days to answer.
> I currently finished to write the Menu bar functionalities. I detailed 
> some functions and I simly described others. My idea is to give a simple 
> description of all, nevertheless I also add, for some of functions, 
> tricks or some interiesting extra functionalities (see ECW or Clone 
> window as Navigation tool).
> I still don't know where to reach. I want to finish all the 
> functionalities (menu bar, toolbar, list view and layer view.
> I se there's a lot of documentation which can be used (ex. Uwe's manual, 
> Vivid's, OJthe Merge).
> There is also al lot of documentation which originally was extra 
> documentation of former plugin (e.g. Isa tools or Simple query) in PDF 
> which could be used in the new help documentation. I wnt to collect all 
> and ask the authors (one is you Stefan, with Isa Tools)  the permision 
> to put only the PDF on line, with links to the Help documentation (list 
> of functions). The idea is to join all the documentation alread written 
> of OJ (as Manuals, as extra description of plugin, pdf, txt, etc) to get 
> a complete documentation in few months. A sort of BETA documentation.
> By the time that  SS defines the  "New help documentation"  with the new 
> functionalities (no metter if external doc or as a wiki) all my 
> documentation could be joined with it in order to have a "robust" 
> documentation.
> My plan till October is to write those extra docs (as wiki):
> Toolbar
> List View
> Layer View
> I have an extra documentation: import/export files, which I would put on 
> line: it is a sort of table of all supported and unsupported types of 
> file in OJ. Users have information about how to convert, which extra 
> software to use, how to use (ex. DWG to DXF, DXF 2002 to DXF 2000, DGN, 
> E00 and also rasters or spatial tables).
> This is the plan for next (2) months.
> The help I need: English correction (of coarse) and Ideas and correction 
> of descriptions. SS you are very welcome if you want to correct my wiki 
> page.
> **
>  
> I think also that the general "documentation page" has to reorganize to 
> help people to fine what they want.
> A proposal is to separate it in two pages: "Onlyne documentation" (PDF, 
> DOC,TXT etc) and "Wiki". Anyhow there time to think about.
> **
>  
> Nex mail-control: in 6-7 days.
>  
> Peppe
> 
> */Sunburned Surveyor <[EMAIL PROTECTED]>/* ha scritto:
> 
> Stefan,
> 
> I will remain supportive of Peppe's documentation efforts, and will
> try to help him whenever there is a need.
> 
> Your suggestion of checking the task list on the wiki was a good one.
> 
> I'm going to try to start using OpenJUMP at my day job this week for a
> simple GIS project managing survey control monuments in my area. I
> think this might give me the opportunity to write some tutorial docs
> on using OpenJUMP on a project from start to "finish". Perhaps I'll
> work on that for my Monday and Tuesday documentation effort. :]
> 
> The Sunburned Surveyor
> 
> On 7/24/07, Stefan Steiniger wrote:
>  > > Does anyone have some ideas about our most pressing documentation
>  > > needs? Stefan, has Peppe sufficiently covered the new
> functionality in
>  > > OpenJUMP with his latest documentation efforts?
>  >
>  > mhm .. good question.
>  > I would wait if Peppe makes a proposal at which places he needs some
>  > help. I think that the doc made by Pepe needs also an english
> revision?
>  >
>  > otherwise i am not sure what is still on the todo list of the
> wiki (in
>  > the future developments section) .
>  >
>  > stefan
>  >
>  >
>  >
> -
>  > This SF.net email is sponsored by: Splunk Inc.
>  > Still grepping through log files to find problems? Stop.
>  > Now Search log events and configuration files using AJAX and a
> browser.
>  > Download your FREE copy of Splunk now >> http://get.splunk.com/
>  > ___
>  >

Re: [JPP-Devel] To Sunburned Surveyor - Help files

2007-08-01 Thread Stefan Steiniger
aehm.. sorry i meant "Giuseppe" ;)

Stefan Steiniger schrieb:
> Hei Gusieppe,
> 
> if you feel the information from the other docs is sufficient and 
> necessary then use it otherwise make the improvements you want.
> I would also vote for a "quick - what's this for?" documentation, than 
> for a comprehensive documentation. If the first version one is done, we 
> can afterwards still extend the doc to a comprehensive guide. but at the 
> end it is your decision, because you better can estimate what time you 
> have for.
> 
> stefan
> 
> Giuseppe Aruta schrieb:
>> Hi london,
>> I am on holiday now but I upgrade a part of wiki help page.
>> Only the "Menu bar" is finished. It is as simple as possible (no images, 
>> simple description) in order to give a simple idea about the functions. 
>> Of coarse it is not finished because it requires sometimes more.
>> As I wrote in a former letter I will be glad if you correct the English 
>> and add information I could miss.
>> By the time I will be back home I want to put the "toolbar" page. It'll 
>> be more elaborated since I want to put images. This part of help has 
>> more former documentation (Vivids, Uwe's and a PDF of Isa extension) 
>> which I pobabily use as a semple.
>> My problem in this moment is (or what I feel as a problem): Should I 
>> repit what is already written in other PDF docs? e.g. tool bar functions 
>> or Change Style dialog window. I thought to re-write everything anyway.
>> If you have any idea about, we can talk each other and take a decision. 
>> Right now I appreciate if you, or other developers and user, could give 
>> me new idea or show me if I do mistakes.
>>  
>> Peppe
>>
>> */Sunburned Surveyor <[EMAIL PROTECTED]>/* ha scritto:
>>
>> Peppe,
>>
>> It sounds like you were able to create a page on the wiki. Please let
>> me know if you need any other help.
>>
>> We appreciate your documentation efforts.
>>
>> Landon
>>
>> On 7/23/07, Giuseppe Aruta wrote:
>>  > Hi SS,
>>  > sorry if I answer late. I am on camping and I didn't read mails
>> untill 17th.
>>  > Yes I was talking about the "New OpenJUMP Manual" page on wiki .
>> Anyhow I
>>  > solved the problem creating a new page.
>>  > By SS, I think I control email after 30th of July
>>  >
>>  > Peppe
>>  >
>>  > Sunburned Surveyor ha scritto:
>>  > Peppe,
>>  >
>>  > I'm sorry that I didn't get back to you on this question sooner. Are
>>  > you talking about the JPP wiki, or something else?
>>  >
>>  > Let me know, and we can talk some more about it.
>>  >
>>  > The Sunburned Surveyor
>>  >
>>  > On 7/11/07, Giuseppe Aruta wrote:
>>  > >
>>  > > Hi SS,
>>  > >
>>  > > I have an idea:
>>  > > I think I could tranfer the things I wrote about the
>>  > > help on your "New User Guide" web page.
>>  > > I could use a new page ("List of Functions") or I can
>>  > > modify the "Index" page. By the time I finish new
>>  > > parts I can upgrade it. Of coarse I will use minimum
>>  > > text and few pictures. You could control every now
>>  > > and then that I don't write dumb things
>>  > > What do you think about?
>>  > >
>>  > > Peppe
>>  > >
>>  > >
>>  > > ___
>>  > > L'email della prossima generazione? Puoi averla con la nuova
>> Yahoo! Mail:
>>  > http://it.docs.yahoo.com/nowyoucan.html
>>  > >
>>  > >
>>  >
>> -
>>  > > This SF.net email is sponsored by DB2 Express
>>  > > Download DB2 Express C - the FREE version of DB2 express and take
>>  > > control of your XML. No limits. Just data. Click to get it now.
>>  > > http://sourceforge.net/powerbar/db2/
>>  > > ___
>>  > > Jump-pilot-devel mailing list
>>  > > Jump-pilot-devel@li

Re: [JPP-Devel] To Sunburned Surveyor - Help files

2007-08-01 Thread Stefan Steiniger
Hei Gusieppe,

if you feel the information from the other docs is sufficient and 
necessary then use it otherwise make the improvements you want.
I would also vote for a "quick - what's this for?" documentation, than 
for a comprehensive documentation. If the first version one is done, we 
can afterwards still extend the doc to a comprehensive guide. but at the 
end it is your decision, because you better can estimate what time you 
have for.

stefan

Giuseppe Aruta schrieb:
> Hi london,
> I am on holiday now but I upgrade a part of wiki help page.
> Only the "Menu bar" is finished. It is as simple as possible (no images, 
> simple description) in order to give a simple idea about the functions. 
> Of coarse it is not finished because it requires sometimes more.
> As I wrote in a former letter I will be glad if you correct the English 
> and add information I could miss.
> By the time I will be back home I want to put the "toolbar" page. It'll 
> be more elaborated since I want to put images. This part of help has 
> more former documentation (Vivids, Uwe's and a PDF of Isa extension) 
> which I pobabily use as a semple.
> My problem in this moment is (or what I feel as a problem): Should I 
> repit what is already written in other PDF docs? e.g. tool bar functions 
> or Change Style dialog window. I thought to re-write everything anyway.
> If you have any idea about, we can talk each other and take a decision. 
> Right now I appreciate if you, or other developers and user, could give 
> me new idea or show me if I do mistakes.
>  
> Peppe
> 
> */Sunburned Surveyor <[EMAIL PROTECTED]>/* ha scritto:
> 
> Peppe,
> 
> It sounds like you were able to create a page on the wiki. Please let
> me know if you need any other help.
> 
> We appreciate your documentation efforts.
> 
> Landon
> 
> On 7/23/07, Giuseppe Aruta wrote:
>  > Hi SS,
>  > sorry if I answer late. I am on camping and I didn't read mails
> untill 17th.
>  > Yes I was talking about the "New OpenJUMP Manual" page on wiki .
> Anyhow I
>  > solved the problem creating a new page.
>  > By SS, I think I control email after 30th of July
>  >
>  > Peppe
>  >
>  > Sunburned Surveyor ha scritto:
>  > Peppe,
>  >
>  > I'm sorry that I didn't get back to you on this question sooner. Are
>  > you talking about the JPP wiki, or something else?
>  >
>  > Let me know, and we can talk some more about it.
>  >
>  > The Sunburned Surveyor
>  >
>  > On 7/11/07, Giuseppe Aruta wrote:
>  > >
>  > > Hi SS,
>  > >
>  > > I have an idea:
>  > > I think I could tranfer the things I wrote about the
>  > > help on your "New User Guide" web page.
>  > > I could use a new page ("List of Functions") or I can
>  > > modify the "Index" page. By the time I finish new
>  > > parts I can upgrade it. Of coarse I will use minimum
>  > > text and few pictures. You could control every now
>  > > and then that I don't write dumb things
>  > > What do you think about?
>  > >
>  > > Peppe
>  > >
>  > >
>  > > ___
>  > > L'email della prossima generazione? Puoi averla con la nuova
> Yahoo! Mail:
>  > http://it.docs.yahoo.com/nowyoucan.html
>  > >
>  > >
>  >
> -
>  > > This SF.net email is sponsored by DB2 Express
>  > > Download DB2 Express C - the FREE version of DB2 express and take
>  > > control of your XML. No limits. Just data. Click to get it now.
>  > > http://sourceforge.net/powerbar/db2/
>  > > ___
>  > > Jump-pilot-devel mailing list
>  > > Jump-pilot-devel@lists.sourceforge.net
>  > >
>  > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>  > >
>  >
>  >
> -
>  > This SF.net email is sponsored by DB2 Express
>  > Download DB2 Express C - the FREE version of DB2 express and take
>  > control of your XML. No limits. Just data. Click to get it now.
>  > http://sourceforge.net/powerbar/db2/
>  > ___
>  > Jump-pilot-devel mailing list
>  > Jump-pilot-devel@lists.sourceforge.net
>  > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>  >
>  >
>  >
>  > 
>  > 
>  > L'email della prossima generazione? Puoi averla con la nuova
> Yahoo! Mail
>  >
>  > 
>  > 
>  > L'email della prossima generazione? Puoi averla con la nuova
> Yahoo! Mail
>  >
>  >
>  >
>  >
>  >
> ---

Re: [JPP-Devel] WMS plugin

2007-08-01 Thread Stefan Steiniger
Hei Andreas,

please commit both. We trust you and it is not a core change, but rather 
some cosmetics.

stefan

Andreas Schmitz schrieb:
> Andreas Schmitz wrote:
> 
> 
> Hi,
> 
> I got another one.
> 
> When editing WMS requests and selecting some SRS in the combobox, this
> selection will vanish (and the first SRS will be selected again) when
> moving layers up and down.
> 
> The attached patch fixes the problem.
> 
> If nobody objects, I'll check it in.
> 
> Best regards, Andreas
> 
> 
> 
> 
> Index: 
> src/com/vividsolutions/jump/workbench/ui/plugin/wms/EditWMSQueryPanel.java
> ===
> --- 
> src/com/vividsolutions/jump/workbench/ui/plugin/wms/EditWMSQueryPanel.java
> (Revision 907)
> +++ 
> src/com/vividsolutions/jump/workbench/ui/plugin/wms/EditWMSQueryPanel.java
> (Arbeitskopie)
> @@ -36,6 +36,7 @@
>  import java.awt.Insets;
>  import java.util.Iterator;
>  import java.util.List;
> +
>  import javax.swing.BorderFactory;
>  import javax.swing.DefaultComboBoxModel;
>  import javax.swing.JComboBox;
> @@ -48,7 +49,6 @@
>  import com.vividsolutions.jump.I18N;
>  import com.vividsolutions.jump.workbench.plugin.EnableCheck;
>  import com.vividsolutions.jump.workbench.ui.InputChangedListener;
> -import com.vividsolutions.jump.workbench.ui.MultiInputDialog;
>  import com.vividsolutions.jump.workbench.ui.TransparencyPanel;
>  import com.vividsolutions.wms.WMService;
>  
> @@ -130,6 +130,13 @@
>  */
>  private void updateComboBox() {
>  String selectedSRS = (String) srsComboBox.getSelectedItem();
> +
> +// this method does get called many times when no SRS are available 
> here
> +// this makes sure that the selected SRS stays selected when 
> available
> +if(mapLayerPanel.commonSRSList().size() == 0) {
> +return;
> +}
> +
>  comboBoxModel.removeAllElements();
>  
>  for (Iterator i = mapLayerPanel.commonSRSList().iterator(); 
> i.hasNext();) {
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coming off of hiatus...

2007-08-01 Thread Stefan Steiniger
Hei Peppe,

some more answer

> There is also al lot of documentation which originally was extra 
> documentation of former plugin (e.g. Isa tools or Simple query) in PDF 
> which could be used in the new help documentation. I wnt to collect all 
> and ask the authors (one is you Stefan, with Isa Tools)  
actually ISA tools are from Larry
further i think you do not need a permission if the doc is floating 
around in the web (we may also look for the doc-license used).

> the permision 
> to put only the PDF on line, with links to the Help documentation (list 
> of functions). The idea is to join all the documentation alread written 
> of OJ (as Manuals, as extra description of plugin, pdf, txt, etc) to get 
> a complete documentation in few months. A sort of BETA documentation.

mhm.. i don't know.. i think it is good to have the documentation 
collected somewhere (see also the documentation page on the wiki). I 
would rather use that documentation as a base then only linking it. But 
this holds only for the english documents. Because I think we need to 
reference every non-english documentation.

On our sourceforge account should be sufficient space to store the 
documentation.

> By the time that  SS defines the  "New help documentation"  with the new 
> functionalities (no metter if external doc or as a wiki) all my 
> documentation could be joined with it in order to have a "robust" 
> documentation.
> My plan till October is to write those extra docs (as wiki):
> Toolbar
> List View
> Layer View
> I have an extra documentation: import/export files, which I would put on 
> line: it is a sort of table of all supported and unsupported types of 
> file in OJ. Users have information about how to convert, which extra 
> software to use, how to use (ex. DWG to DXF, DXF 2002 to DXF 2000, DGN, 
> E00 and also rasters or spatial tables).

yes.. this would be very good..
i think you can make also such tables on the wiki?

Furthermore I should mention 2 things:
* we could also use the new sourceforge internal wiki for documentation 
efforts (I don't know how long Jon will still host our wiki
* the stuff from Uwe's doc is also existing on a german(!) wiki: 
http://de.giswiki.net/wiki/OpenJUMP_Tutorial

> This is the plan for next (2) months.
> The help I need: English correction (of coarse) and Ideas and correction 
> of descriptions. SS you are very welcome if you want to correct my wiki 
> page.
> **
>  
> I think also that the general "documentation page" has to reorganize to 
> help people to fine what they want.
> A proposal is to separate it in two pages: "Onlyne documentation" (PDF, 
> DOC,TXT etc) and "Wiki". Anyhow there time to think about.
> **

mhm.. can you make it a bit more specific.
btw. i would not say "online documentation" but something like 
"paper/print documentation"

stefan

>  
> Nex mail-control: in 6-7 days.
>  
> Peppe

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Rename layer plugin

2007-08-01 Thread Stefan Steiniger
Hei Andreas,

I would like to see it in the OpenJUMP configuration file. It should be 
possible.. or is it too cumbersome?
(mhm... one moment)
If I remember right the ISA tools did as well add context menu 
functions. Some of them have been transfered and are found in 
openjump.core.ui.plugin.mousemenu
If you scroll down in the OpenJumpConfiguration file you will find 
initializations of MouseMenu functions.

What concerns the resource files: Please add the key to every language 
file including the english translation. The translation can be later 
replaced by the people that maintain the specific language file.

stefan

note: i fixed the last 2 hours the first MacOSX bug, so your changelog 
needs to be updated

Andreas Schmitz schrieb:
> Hi,
> 
> I just wrote a little plugin to rename a layer. I know one can rename a
> layer by double clicking, but users have asked me for a (context) menu
> item ;-)
> 
> Some questions came up:
> 
> 1) Where exactly do I have to put I18N keys? Right now I just put them
> in the en, de and jump.properties. Do I have to put an english key in
> the other language files?
> 
> 2) Since I wanted to have a context menu item I'm loading the plugin
> from the JUMPConfiguration. Is there a better/more preferred way? I
> found the OpenJumpConfiguration, but it does not seem to offer this.
> 
> I just wanted to clarify these points before checking anything in.
> 
> PS: Once again I attached a patch, and the plugin source which goes to
> src/org/openjump/core/ui/plugin/layer/ChangeLayerableNamePlugIn.java
> 
> Best regards, Andreas
> 
> 
> 
> 
> Index: src/com/vividsolutions/jump/workbench/JUMPConfiguration.java
> ===
> --- src/com/vividsolutions/jump/workbench/JUMPConfiguration.java  
> (Revision 907)
> +++ src/com/vividsolutions/jump/workbench/JUMPConfiguration.java  
> (Arbeitskopie)
> @@ -33,6 +33,8 @@
>  
>  import com.vividsolutions.jts.util.*;
>  import org.openjump.OpenJumpConfiguration;
> +import org.openjump.core.ui.plugin.layer.ChangeLayerableNamePlugIn;
> +
>  import com.vividsolutions.jump.I18N;
>  
>  import com.vividsolutions.jump.datastore.*;
> @@ -237,6 +239,8 @@
>  private ImageLayerManagerPlugIn imageLayerManagerPlugIn = new 
> ImageLayerManagerPlugIn();
>  
>   private RefreshDataStoreLayerPlugin refreshDataStoreLayerPlugin = new 
> RefreshDataStoreLayerPlugin();
> +
> +private ChangeLayerableNamePlugIn changeLayerableNamePlugIn = new 
> ChangeLayerableNamePlugIn();
>   
>  public void setup(WorkbenchContext workbenchContext) throws Exception {
>  configureStyles(workbenchContext);
> @@ -384,6 +388,9 @@
>  zoomToLayerPlugIn, zoomToLayerPlugIn.getName(), false, null,
>  zoomToLayerPlugIn.createEnableCheck(workbenchContext));
>  featureInstaller.addPopupMenuItem(layerNamePopupMenu,
> +  changeLayerableNamePlugIn, 
> changeLayerableNamePlugIn.getName(), false, null,
> +  
> changeLayerableNamePlugIn.createEnableCheck(workbenchContext));
> +featureInstaller.addPopupMenuItem(layerNamePopupMenu,
>  changeStylesPlugIn, changeStylesPlugIn.getName() + "...",
>  false, GUIUtil.toSmallIcon(changeStylesPlugIn.getIcon()),
>  changeStylesPlugIn.createEnableCheck(workbenchContext));
> Index: src/language/jump.properties
> ===
> --- src/language/jump.properties  (Revision 907)
> +++ src/language/jump.properties  (Arbeitskopie)
> @@ -434,6 +434,7 @@
>  org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.files
>   
>  = files
>  org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.not-installed
>   
>  = not installed.
>  org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.open-MrSID-file  
>   
>  = open MrSID file
> +org.openjump.core.ui.plugin.layer.ChangeLayerableName.Rename 
>   
>  = Rename Selected Layer
>  org.openjump.core.ui.plugin.layer.ChangeSRIDPlugIn.Change-SRID   
>   
>  = Change SRID
>  
> org.openjump.core.ui.plugin.layer.ToggleVisiblityPlugIn.Error-See-Output-Window
>   

Re: [JPP-Devel] Creating Polygons

2007-08-01 Thread Stefan Steiniger
mhm.. for your question:
try the planar-graph plugin in tools\Analysis. But it works only if the 
linestrings are connected with each other.

stefan


Sunburned Surveyor schrieb:
> This week I was actually able to start using OpenJUMP for a little
> mapping project at work! This means I'll probably be asking some
> really stupid user questions and you guys will be thinking "why
> doesn't he know this?" . To be honest I don't "use" OpenJUMP very much
> at all, so I think this will be a great experience for me. It may help
> me identify some areas where OpenJUMP could really use some
> improvement.
> 
> So here is my first stupid user question:
> 
> Is there a way to create a polygon from a groups of selected
> LineStrings? Right now it seems that I can only create polygons by
> adding nodes to an existing polygon and then moving the nodes where I
> want them.
> 
> Here is what I am trying to do:
> 
> I want to create polygons representind different management areas for
> survey control. I would like the polygons to share boundaries along
> road segments. It would be great if I could just select the road
> segments that form a bounday and create the polygon.
> 
> Any ideas? Does OpenJUMP already have this capabililty and I'm not finding it?
> 
> The Sunburned Surveyor
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Rename layer plugin

2007-08-03 Thread Stefan Steiniger
please commit, you had already my approval :)
the pos tag adds the item at that specific menu position. note, that a 
function can obtain a different pos when other plugins are added 
afterwards. furthermore separators are counted as one pos, if i remember 
right

stefan

Andreas Schmitz schrieb:
> Sunburned Surveyor wrote:
> 
> Hello,
> 
>> I don't see any problem with your patch. It sounds like a nifty
>> plug-in as well. I winder what the others would think about putting it
>> into our standard distribution.
> 
> Ok. Since I'll be back at work on Tuesday, I'll commit it then.
> 
>> P.S. - Thank you very much for your contributions. They are appreicated.
> 
> Thanks. I'm just wading my way through our internal issue tracker and
> fixing them if I find the time ;-)
> 
> Best regards, Andreas
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] translation of Union by Attribute

2007-08-05 Thread Stefan Steiniger
Hei Michael,

I hope you had some relaxing holidays.

i just looked at the new organzation of the language files (.. a bit 
diffult to find out what are new strings) and realized that you missed 
to translate the "Union by Attribute" function.

can you do that?.. because I could not yet install the resource bundle 
editor properly (some help .. see my older message) would be nice.

but there is no need to rush
stefan from Zurich

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] translation of Union by Attribute

2007-08-08 Thread Stefan Steiniger
Hei Michael,

nice to hear from you

Michaël Michaud schrieb:
> Hi Stefan,
> 
> I put the french version in the _fr file and the english version in the 
> default jump.properties file.
> I omitted to put english version in the _en file, and I'll do it.

ok.. see below
> For other properties file, I don't know what is the best practise :
> - doing nothing
> - putting only the keys
> - putting the keys and the english version until somebody can translate it
> 
> Any ideas ?

yes.. put the keys and the english translation.
so one only needs to look for some english text.
Can you give me an advise how to install the resourcebundle plugin (i.e. 
where to put the jar (which eclipse version to you use?).. the resource 
bundle editor is not available after puting the jar/folders in the 
"plugins" folder of eclipse

> 
> Another question about best practices.
> I only updated the trunk and never modified the OJ_stable_1_2 branch.
> I, which cases must we modify stable version ? never ? only bug fixes ?

good question.. as far as i understood bugfixes should be done on both. 
But due to (my) lazyness i would work only on the trunk. The stable 
version is then updated if we have done a new release.

Btw.  I currently focus on making an *OJ 1.2 C* release on the weekend. 
I would do that because we had some bug fixes, and i discovered that the 
1.2 B release can not be started on OSX.. i think it was a backslash 
problem on Unix path.. which seems to be resolved by You. But i will 
check that again with the next nightly built on my computer.

> 
> Finally, thanks to Stefan for having fixed the problem with SaveDataset 
> on macosx, and repared the SaveImageAsSVGPlugIn position after the 
> modification I made in the File menu.
> 
> Michaël
> 
> Stefan Steiniger a écrit :
> 
>> Hei Michael,
>>
>> I hope you had some relaxing holidays.
>>
>> i just looked at the new organzation of the language files (.. a bit 
>> diffult to find out what are new strings) and realized that you missed 
>> to translate the "Union by Attribute" function.
>>
>> can you do that?.. because I could not yet install the resource bundle 
>> editor properly (some help .. see my older message) would be nice.
>>
>> but there is no need to rush
>> stefan from Zurich
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>  
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Rename layer plugin

2007-08-08 Thread Stefan Steiniger
a late answer, although Landon gave already one:
- there are no trees and fruits assigned to anyone ;)
(but as Landon pointed out, changes on the rendering systems should be 
agreed with Larry and Sascha)

fix whereever you think you want to fix

stefan

Andreas Schmitz schrieb:
> Stefan Steiniger wrote:
> 
> Hi,
> 
>> the pos tag adds the item at that specific menu position. note, that a 
>> function can obtain a different pos when other plugins are added 
>> afterwards. furthermore separators are counted as one pos, if i remember 
>> right
> 
> ah, ok. So inserting a plugin that installs itself in a context menu in
> the wrong place can definitely lead to a menu with items in a different
> order.
> 
> By the way, are there maintainers for specific areas in OpenJUMP? I'm
> just wondering whether I step into someone's garden when I fix things in
> random places.
> 
> Best regards, Andreas
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] PostGIS 1.1.0 jar in lib folder (@Paolo)

2007-08-09 Thread Stefan Steiniger
Hi Paolo and others,

- Do you require the postgis 1.1.0 library that is shipped with OJ for 
your plugin?
- Do you use the postgresXX library as well?

i think about removing the first, the second is needed by some code.

stefan


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] deeJUMP plugin

2007-08-10 Thread Stefan Steiniger

>ah, so you meant we could add the GetFeatureInfo to the WFSPlugin,
>right?
>
>  
>
yes.. but for the download. If you think it may be worth to merge the 
sources.. you can also do that

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] deeJUMP plugin

2007-08-10 Thread Stefan Steiniger
Andreas Schmitz wrote:

>Stefan Steiniger wrote:
>
>Hi,
>
>  
>
>>I fully support to add these plugin to svn and the soureforge site. 
>>Maybe we need to think about the structure here .. so that not every 
>>plugin gets a new box. So the wfs plugin could be added to the other wfs 
>>plugin?
>>
>>
>
>hm, which other WFS plugin is there?
>  
>
i meant yours.. WFSPlugIn
but the grouping was only intended for the download section, not for the 
svn source

>  
>
>>btw.. there are two more things from deeJUMP which I did not transfer to 
>>my knowledge:
>>- the point/vertex styling (Pirol reported on some problems with large 
>>dataset), but maybe here Geoffs plugin is already ahead
>>
>>
>
>Ok. From the deeJUMP sources I just deleted stuff that I knew had been
>transferred, so they'd not be lost.
>
>  
>
>>- the coordinate transformation stuff (I did not add it, as it depends 
>>on proj4 which was a win dll)
>>
>>
>
>deegree also does not use proj4 any more and went back to its old
>transformation framework. Usage of the old framework is somewhat
>discouraged as it's a rather ad hoc implementation.
>  
>
aha.. should look at

>Best regards, Andreas
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] does PostGIS from internal Datastore Framework work?

2007-08-10 Thread Stefan Steiniger
Hei,

Uwe told me that he obtains a strange error message using Layer>Add 
Datastore Layer for PostGIS data when he tries to load a table.
And there is also a recent bug report (the person suggest a quotation bug):
http://sourceforge.net/tracker/index.php?func=detail&aid=1694304&group_id=118054&atid=679906

can somebody verify this? Is the internal version working  for somebody?
..or even fix it? I don't have a postgis installed (yet ;).

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] workaround for saving mixed geometry layers as shape

2007-08-10 Thread Stefan Steiniger
>> and you know what happens? OpenJUMP does not give any warning or 
>> message, but only polygons are stored to shapefiles.  What used to be 
>> points and lines seem to be stored as empty multipolygons into the 
>> polygon shapefile. Isn't this close to a bug? A kind of a solution 
>> with shapefiles could be to automatically split the layer to point, 
>> line and polygon shapefiles, but I wouldn't like to keep a bunch of up 
>> to 9 files together in the later processes.  And for sure I couldn't 
>> teach that in ten minutes.
>>   
> This should probably count as a bug.  JUMP should probably give an error 
> message and refuse to write out heterogeneous layers to shapefiles.

Ok, I just added a check, which throws an exception if different 
geometries are inside a layer. So it is now not anymore possible saving 
shape file with different geometries.
Thus, nobody will loose data because of that.

not the best solution, but sufficient for now

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] deeJUMP plugin

2007-08-10 Thread Stefan Steiniger
Hei Andreas,

I agree with you - and the dependencies are also the reason why i did 
not add them to OJ.
I fully support to add these plugin to svn and the soureforge site. 
Maybe we need to think about the structure here .. so that not every 
plugin gets a new box. So the wfs plugin could be added to the other wfs 
plugin?

btw.. there are two more things from deeJUMP which I did not transfer to 
my knowledge:
- the point/vertex styling (Pirol reported on some problems with large 
dataset), but maybe here Geoffs plugin is already ahead
- the coordinate transformation stuff (I did not add it, as it depends 
on proj4 which was a win dll)

cheers
stefan

Andreas Schmitz wrote:

>Hello developers,
>
>there are now just two plugins left in deeJUMP:
>
> * the GetFeatureInfo plugin for WMS layers
> * the deegree file adapters to use the deegree library to read/write
>   GML3 and shapefiles
>
>I realize that adding these plugins directly to OpenJUMP will result in
>OJ depending on quite some more libraries, since deegree itself needs
>some libraries. Since not everyone needs the functionality contained in
>these rather small plugins, it's not really worth the effort (especially
>since the rest of OJ does not immediately benefit from the new libs).
>
>Since these plugins may be desirable for others anyway, we'd like to
>make them publicly available. Since some plugins are already hosted
>within the OJ svn, we would like to ask if it would be possible to add a
>new deeJUMP plugin.
>
>Best regards, Andreas
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Build Errors From QueryDialog?

2007-08-10 Thread Stefan Steiniger


Michaël Michaud schrieb:
> Hi,
> 
> I have updated to buoy 1.8 five weeks ago, made a small change in the 
> code to keep compatibility, and I modified QueryPlugIn code again today 
> to fix a bug. But I have had no problem to compile in between.
> 
> Can you check that :
> you use the src placed in the trunk
> you have only one Buoy lib in the lib directory (Buoy.jar should be 
> 206 458 bytes)

it runs also on my machine

> 
> Please, tell me if the problem persists for you
> 
> Question : anybody knows what happens with automatic nightly builds if 
> the compilation phase fails...

then we have no nightly built. I.e. we see if something is wrong
As it builds correctly and files are on the server the error is on the 
"users/developers" side.


stefan

> 
> Michaël
> 
> Sunburned Surveyor a écrit :
> 
>> Thanks for that tip Paul. I will check it out.
>>
>> The Sunburned Surveyor
>>
>> On 8/9/07, Paul Austin <[EMAIL PROTECTED]> wrote:
>>  
>>
>>> Landon,
>>>
>>> This is due to a version upgrade in buoy, make sure you have version 1.8
>>> of buoy, the core/trunk has version 1.8 in the lib folder.
>>>
>>> Paul
>>>
>>> Sunburned Surveyor wrote:
>>>
>>>
 I'm trying to build the latest OpenJUMP source code from the SVN trunk
 so I can give my pluggable rendering system a spin. I seem to be
 getting a build error from the QueryDialog class. It looks like the
 initInternal method references a local variable called lastSize that
 isn't declared or defined.

 Has anyone else noticed this problem, or did I just mess something up?
 I'm a little confused, because it seems that the nightly builds are
 working just fine.

 I haven't been dorking around in the QueryDialog class, so I don't
 think I inadvertantly deleted the lastSize declaration. It looks like
 the last change to this class in the SVN was 5 weeks ago by Michael
 Michaud. The note said something about modifications to be compatible
 with a new version of the Bouy library.

 Thanks for the help.

 The Sunburned Surveyor

 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now >>  http://get.splunk.com/
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

  

>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>  
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] release of OpenJUMP 1.2 C --- a second pre-release for OJ 1.2

2007-08-12 Thread Stefan Steiniger
Dear Users and Developers,

yesterday I made an OpenJUMP 1.2 C releas with the saturday nightly 
built. I added today also a Windows setup file.

Todays changes by Michael are not included, but I thank him for updating 
the changes.txt file (i forgot that, but wrote at least down what has 
changed from OJ 1.2B to 1.2C: see release notes in the Sourceforge 
download menu). I am glad that we  have setup the changes and changelog 
files. :)

I hope OJ runs on all platforms as expected, although i could not bring 
to start on Linux/Knoppix on my machine, but Win and MacOSX should work 
properly. If errors occure, please send a message to either list and 
make a bug report.

I am looking forward to have a final OpenJUMP 1.2 release in autumn.

Until autumn we have to finish all translations (i think some functions 
aren't translated), we should include some data, work with Larry's 
installer which enables file-associations, check some libraries (i.e. 
remove PostGIS 1.0.0?), and so on...

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Coming off of hiatus... Help docs

2007-08-12 Thread Stefan Steiniger
Hei Guiseppe,

good to hear, and it is great that you do the help stuff.
Actually Uwe is currently on way to update his german tutorial for the 
new semester. So i guess by autumn we will have a first improved version.

to put images on our webspace we you need to have a sourceforge account.
Can you create one for yourself? Please tell me in a personal email, 
what your username is, so i can add you to the developer list

I need to look how you can put the images there and write you within the 
next days how to do. (i always forget)

stefan

BTW: i plan to travel next week, so i may not look for emails all the time

Giuseppe Aruta schrieb:
> Hi Stefan,
> I will be back home on next mondey. I'll have a week I cfan work on OJ , 
> then back to work, to geological map. I think I'll use OJ for a 
> new cartographic project so I could write a tutorial for geololgists.
> ***
> I upgrade the "List of functions" wiki page with two new docs (Toolbar 
> and Botton Bar), being as simple as possible (a sort of "What's this?") 
> but linking tools to Uwe's and Vivids documentation.
>  
> I am writing an upgrade  "Editing toolbox" doc which I would like to 
> link to "Toolbar". This doc is a sum of Vivids, Uwe's and your 
> documentation about Toolbar and Isa extention (Constrained polygons, 
> Resize, etc). Since it has more pictures it is probabily not usefull to 
> put as a wiki. I probabily save it as PDF
> **
> I want to add some pictures on "List of function" wiki in order to give 
> an idea about where are the tools or functions (e.g. a basic picture 
> which shows where is the List View, the Toolbar, the Botton Bar, etc and 
> a picture of the toolbar). Let me know how I do.
> *
>  
> HELP TUTORIAL
>  
> I take a time to answer to your former letter.
> I think that, by the time that the "List of function" is over, we should 
> think to work to an upgrade tutorial.
> I think that Uwe's Tutorial seems perfect to be upgrade (if Uwe agrees), 
> since it covers the majority of the OJ information and it is already in 
> 3 of the principal languages (German, French and English). Only English 
> needs some corrections.
> We could start to setup all other docs to add at the Uwe's Tutorial 
> (tools, editing toolbox, maybe usage of plugins, etc)
>  
> Peppe
>  
> 
> 
> 
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail 
> 
>  
> 
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] release of OpenJUMP 1.2 C --- a second pre-release for OJ 1.2

2007-08-12 Thread Stefan Steiniger
Hei Paul,

thanx for the reminder.
I have added a tag now (i hope the svn-log-email message says i did the 
right thing). But it looks like my eclipse-svn plugin has some problems 
with deleting the current src_branch. maybe i need a second shot on that?

stefan

Paul Austin schrieb:
> Stefan,
> 
> Can you create a tag of the 1.2preC release.
> 
> Did you create the release from trunk if so I think you should first 
> create a branch by copying core/trunk to core/branches/1.2 (current 
> branch we have needs to be removed as it is not a full copy).
> 
> Then from there create a copy of core/branches/1.2 to core/tags/1.2preC.
> 
> Going forward we should commit to trunk and then when ready to make a 
> release merge changes that we want in trunk to the branches/1.2 and then 
> tag it at the point we make a release.
> 
> Paul
> 
> Stefan Steiniger wrote:
>> Dear Users and Developers,
>>
>> yesterday I made an OpenJUMP 1.2 C releas with the saturday nightly 
>> built. I added today also a Windows setup file.
>>
>> Todays changes by Michael are not included, but I thank him for updating 
>> the changes.txt file (i forgot that, but wrote at least down what has 
>> changed from OJ 1.2B to 1.2C: see release notes in the Sourceforge 
>> download menu). I am glad that we  have setup the changes and changelog 
>> files. :)
>>
>> I hope OJ runs on all platforms as expected, although i could not bring 
>> to start on Linux/Knoppix on my machine, but Win and MacOSX should work 
>> properly. If errors occure, please send a message to either list and 
>> make a bug report.
>>
>> I am looking forward to have a final OpenJUMP 1.2 release in autumn.
>>
>> Until autumn we have to finish all translations (i think some functions 
>> aren't translated), we should include some data, work with Larry's 
>> installer which enables file-associations, check some libraries (i.e. 
>> remove PostGIS 1.0.0?), and so on...
>>
>> stefan
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] release of OpenJUMP 1.2 C --- a second pre-release for OJ 1.2

2007-08-12 Thread Stefan Steiniger
ok..

i hope i got it now:

- i removed the first created /trunk/trunk/

 > first create a branch by copying core/trunk to core/branches/1.2 
(current
> branch we have needs to be removed as it is not a full copy).

done:
- i removed the old branches/.../
- i copied the stuff (folder by folder from trunc using subclipse copy 
function, maybe i should have chosen branch/tag as well)

> Then from there create a copy of core/branches/1.2 to core/tags/1.2preC.

done: i used the branch/tag option in subclipe to make a copy to 
core/tags/1.2preC/

> Going forward we should commit to trunk and then when ready to make a 
> release merge changes that we want in trunk to the branches/1.2 and then 
> tag it at the point we make a release.

ok.. we will further work on trunc. if we make a next large release i'll 
probably ask you again what to do :)

thanx for your help Paul
stefan


> 
> Paul
> 
> Stefan Steiniger wrote:
>> Dear Users and Developers,
>>
>> yesterday I made an OpenJUMP 1.2 C releas with the saturday nightly 
>> built. I added today also a Windows setup file.
>>
>> Todays changes by Michael are not included, but I thank him for updating 
>> the changes.txt file (i forgot that, but wrote at least down what has 
>> changed from OJ 1.2B to 1.2C: see release notes in the Sourceforge 
>> download menu). I am glad that we  have setup the changes and changelog 
>> files. :)
>>
>> I hope OJ runs on all platforms as expected, although i could not bring 
>> to start on Linux/Knoppix on my machine, but Win and MacOSX should work 
>> properly. If errors occure, please send a message to either list and 
>> make a bug report.
>>
>> I am looking forward to have a final OpenJUMP 1.2 release in autumn.
>>
>> Until autumn we have to finish all translations (i think some functions 
>> aren't translated), we should include some data, work with Larry's 
>> installer which enables file-associations, check some libraries (i.e. 
>> remove PostGIS 1.0.0?), and so on...
>>
>> stefan
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] release of OpenJUMP 1.2 C --- a second pre-release for OJ 1.2

2007-08-12 Thread Stefan Steiniger
aehm.. as u see on the spelling errors, i am quite tired (it's 1am now)
and i meant of course "trunk" instead of "trunc" ;)

but one question remains: what is the difference between using the 
functions "copy" and "branch/tag". Is for branch/tag the link stored?
Because when "yes" i should redo the copy from "core/trunk/" to 
"core/branches/1.2/"

stefan

Stefan Steiniger schrieb:
> ok..
> 
> i hope i got it now:
> 
> - i removed the first created /trunk/trunk/
> 
>  > first create a branch by copying core/trunk to core/branches/1.2 
> (current
>> branch we have needs to be removed as it is not a full copy).
> 
> done:
> - i removed the old branches/.../
> - i copied the stuff (folder by folder from trunc using subclipse copy 
> function, maybe i should have chosen branch/tag as well)
> 
>> Then from there create a copy of core/branches/1.2 to core/tags/1.2preC.
> 
> done: i used the branch/tag option in subclipe to make a copy to 
> core/tags/1.2preC/
> 
>> Going forward we should commit to trunk and then when ready to make a 
>> release merge changes that we want in trunk to the branches/1.2 and then 
>> tag it at the point we make a release.
> 
> ok.. we will further work on trunc. if we make a next large release i'll 
> probably ask you again what to do :)
> 
> thanx for your help Paul
> stefan
> 
> 
>> Paul
>>
>> Stefan Steiniger wrote:
>>> Dear Users and Developers,
>>>
>>> yesterday I made an OpenJUMP 1.2 C releas with the saturday nightly 
>>> built. I added today also a Windows setup file.
>>>
>>> Todays changes by Michael are not included, but I thank him for updating 
>>> the changes.txt file (i forgot that, but wrote at least down what has 
>>> changed from OJ 1.2B to 1.2C: see release notes in the Sourceforge 
>>> download menu). I am glad that we  have setup the changes and changelog 
>>> files. :)
>>>
>>> I hope OJ runs on all platforms as expected, although i could not bring 
>>> to start on Linux/Knoppix on my machine, but Win and MacOSX should work 
>>> properly. If errors occure, please send a message to either list and 
>>> make a bug report.
>>>
>>> I am looking forward to have a final OpenJUMP 1.2 release in autumn.
>>>
>>> Until autumn we have to finish all translations (i think some functions 
>>> aren't translated), we should include some data, work with Larry's 
>>> installer which enables file-associations, check some libraries (i.e. 
>>> remove PostGIS 1.0.0?), and so on...
>>>
>>> stefan
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>   
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] deeJUMP plugin

2007-08-13 Thread Stefan Steiniger
of course, i am/we are interested in your evaluation results.

stefan

Dr. Markus Lupp (Müller) schrieb:
> Hi Landon,
> 
> Sunburned Surveyor schrieb:
>> [snip]
>>   
> 
>> I'd also like to know if the DeeJUMP team had any thoughts about
>> Paul's suggestion of tapping into the Java port of PROJ4. It seems
>> like a logical choice for projection code.
>>  
> 
> 
> When we started to include proj4 in deegree we had some problems with it
> (besides that it is a proj4 library). The problems were related to the
> precision of transformations, corrdinate axis order and naming of the
> projections. If the Java port shows the same problems, it would be good
> to be careful to include it in OJ.
> 
> Because of the mentioned problems we started to implement coordinate
> projection and transformation classes in deegree itself. The link to the
> java port that was sent over the OJ-list
> (http://www.jhlabs.com/java/maps/proj/) is very interesting for us. We
> will evaluate if the JH labs portal is a workable alternative for
> deegree. We can publish our results over the OJ list if there is interest.
> 
> Regards,
> 
> Markus
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] momentum on people interested in JUMP/OpenJUMP DB support ; )

2007-08-13 Thread Stefan Steiniger
Hei Guys,

i just found this new project on sourceforge:

http://sourceforge.net/projects/jumpdbqplugin/

started just a few days ago by a Larry Reeder.


@LREEDER: I don't know if you are listing already to our developer list, 
if not would be nice to have you on there ;)

If you need some info (i.e. DB plugins that have been devloped so far) 
or people doing some testing. Then there should be a couple of people 
out there.

would be good to have you on the jpp-devel list.

stefan

PS: mhm.. how does it come that David knows about Oracle.. is there 
another plugin outhere (or the one from JTS).. i just wonder, after 
having also read Pauls message on Oracle.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] NPE in de.fho.jump.pirol.utilities.apiTools.FeatureCollectionTools

2007-08-13 Thread Stefan Steiniger
no.. it was a fix sended

Sunburned Surveyor schrieb:
> Stefan,
> 
> I am sorry it is taking me so long to respond to this e-mail. Is this
> something that we need a patch for?
> 
> If so I can make the needed changes in the SVN.
> 
> Let me know.
> 
> The Sunburned Surveyor
> 
> On 7/24/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>> forwad for Malte as I accidently delted his message from the pending
>> request list
>>
>> Dear OpenJump Enthusiast,
>>
>> I've tried to make a copy of a FeatureCollection containing Features
>> with null values.
>> I used the cloneFeatureCollection-Method of the FeatureCollectionTools
>> Class from the Pirol Project (now implemented in the OJ beta, too) and
>> got a NPE.
>>
>> I think a Feature should have Attributes containing null values, so I
>> fixed this.
>> The fixed class is attached.
>>
>> Greetings from cloudy Hanover,
>> Malte
>>
>>
>>
>>
>>
>> /*
>>  * Created on 12.01.2005
>>  *
>>  * SVN header information:
>>  *  $Author: mentaer $
>>  *  $Rev: 2509 $
>>  *  $Date: 2007/02/03 14:19:04 $
>>  *  $Id: FeatureCollectionTools.java,v 1.2 2007/02/03 14:19:04 mentaer Exp $s
>>  */
>> package de.fho.jump.pirol.utilities.apiTools;
>>
>> import java.util.ArrayList;
>> import java.util.Date;
>> import java.util.HashMap;
>> import java.util.HashSet;
>> import java.util.List;
>> import java.util.Map;
>> import java.util.Set;
>>
>> import com.vividsolutions.jts.geom.Coordinate;
>> import com.vividsolutions.jts.geom.Envelope;
>> import com.vividsolutions.jts.geom.Geometry;
>> import com.vividsolutions.jts.geom.GeometryFactory;
>> import com.vividsolutions.jump.feature.AttributeType;
>> import com.vividsolutions.jump.feature.BasicFeature;
>> import com.vividsolutions.jump.feature.Feature;
>> import com.vividsolutions.jump.feature.FeatureCollection;
>> import com.vividsolutions.jump.feature.FeatureDataset;
>> import com.vividsolutions.jump.feature.FeatureSchema;
>> import com.vividsolutions.jump.workbench.model.Layer;
>> import com.vividsolutions.jump.workbench.plugin.PlugInContext;
>> import com.vividsolutions.jump.workbench.ui.EditTransaction;
>>
>> import de.fho.jump.pirol.utilities.FeatureCollection.PirolFeatureCollection;
>> import de.fho.jump.pirol.utilities.FormulaParsing.FormulaValue;
>> import de.fho.jump.pirol.utilities.attributes.AttributeInfo;
>> import de.fho.jump.pirol.utilities.comparisonAndSorting.ObjectComparator;
>> import de.fho.jump.pirol.utilities.debugOutput.DebugUserIds;
>> import de.fho.jump.pirol.utilities.debugOutput.PersonalLogger;
>> import de.fho.jump.pirol.utilities.metaData.MetaInformationHandler;
>>
>> /**
>>  * Class to speed up handling of FeatureCollections (or lists of features) 
>> during progamming by implementing
>>  * a set of common tasks.
>>  * Most functions can be used in a static way, but on the other hand for 
>> each FeatureCollection a instance of this class can be invoked.
>>  * This might be more convenient, if there is more than one thing to do with 
>> the same feature collection.
>>  *
>>  * @author Ole Rahn
>>  * 
>>  * FH Osnabrück - University of Applied Sciences Osnabrück,
>>  * Project: PIROL (2005),
>>  * Subproject: Daten- und Wissensmanagement
>>  *
>>  * @version $Rev: 2509 $
>>  */
>>
>> public class FeatureCollectionTools extends ToolToMakeYourLifeEasier {
>>
>>protected FeatureCollection fc = null;
>>protected List featureList;
>>private HashMap fid2Object = new HashMap> Feature>();
>>
>>protected static PersonalLogger logger = new 
>> PersonalLogger(DebugUserIds.ALL);
>>
>>public FeatureCollectionTools( FeatureCollection fc ){
>>super();
>>this.fc = fc;
>>this.featureList = this.fc.getFeatures();
>>}
>>
>>public FeatureCollectionTools( List fcl ){
>>super();
>>this.featureList = fcl;
>>}
>>
>>/**
>> * gets the Feature with the given FID.
>> [EMAIL PROTECTED] fid FID to look for
>> [EMAIL PROTECTED] the feature
>> */
>>public Feature getFeature( int fid ){
>>Integer FID = new Integer(fid);
>>if (!this.fid2Object.containsKey(FID)){
>>
>> this.fid2Object.put(FID,FeatureCollectionTools.getFeatureFromCollection(this.featureList,
>>  fid));
>> 

Re: [JPP-Devel] SVN Notification Mailing List

2007-08-14 Thread Stefan Steiniger
.. mhm.

you only need to check the approprpriate box, so that the sender is 
added to a "always allowed" list..

that should not be that hard for you.. as it is only once (btw. i get 
them as well)

stefan

Sunburned Surveyor schrieb:
> Guys,
> 
> If you are going to contribute to the SVN can you please make sure
> your SourceForge e-mail address is subscribed to the notify mailing
> list:
> 
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-svn-notify
> 
> If it is not, I get a message every time you contribute and I have to
> approve it or it doesn't get forwarded to the other members.
> 
> Thanks a bunch.
> 
> The Sunburned Surveyor
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJN: No SRID and VIEW support

2007-08-14 Thread Stefan Steiniger
btw... Peppe,

do you have the original openoffice from Uwe's tutorial doc?

stefan

Giuseppe Aruta schrieb:
> --- Uwe Dalluege <[EMAIL PROTECTED]> ha
> scritto:
> 
>> Hi Michael,
>>
>> thank you for putting my wishes to the feature
>> request!
>> I am changing my OpenJUMP tutorial to OpenJUMP 1.2
>> and like
>> to describe the core functions and some good
>> plugIns.
>> The SRID plugIn is from Jon Aquino and I improved
>> the PostGIS plugIn.
>> The PostGIS plugIn is not so comfortable but you can
>> write back
>> data to database with correct SRID values.
>>
>> Regards,
>>
>> Uwe Dalluege
>>
> 
> Hi Uwe,
> I am glad that you upgrade your tutorial, I used your
> former one to understand OpenJUMP.
> Now I am working, with the collaboration of Stefan and
> London, to a short tutorial of OJ1.2 on this page
> http://openjump.org/wiki/show/OpenJUMP+List+of+Functions.
> The idea is to give a short description of all the
> functions and tools in OJ, with related usage and
> tips. Anyhow I try to reference to your former
> tutorial or to VIVIDS one in order to help people to
> use OpenJUMP.
> If you need a collaboration or ideas  I will be glad
> to help you.
> 
> Peppe
> 
> 
> 
> Giuseppe Aruta
> Dipartimento di Scienze della Terra
> Via La Pira, 4
> 50122 - Firenze (Italy)
> [EMAIL PROTECTED]
> (39)051301827
> 
> 
> 
>   ___ 
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
> http://it.docs.yahoo.com/nowyoucan.html
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] momentum on people interested in JUMP/OpenJUMP DB support ; )

2007-08-14 Thread Stefan Steiniger
yes i was refering to this..
thanx for your info

stefab

Martin Davis schrieb:
> 
> Stefan Steiniger wrote:
>> PS: mhm.. how does it come that David knows about Oracle.. is there 
>> another plugin outhere (or the one from JTS).. i just wonder, after 
>> having also read Pauls message on Oracle.
>>   
> At Vivid we wrote a Datastore driver for Oracle Spatial.  Is that what 
> you're referring too?  Owing to potential problems of licensing and 
> support, we didn't release this in the publicly available version of 
> JUMP.  I have no idea if they still feel that this is an issue.
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJ 1.2C: Add Image Layer

2007-08-14 Thread Stefan Steiniger
Hei Uwe,

you are right.. i deeply appologize for not testing earlier!!

i only see black screens as well  - and it does not matter if i zoom
.. i actually can't say now what we changed..
maybe it is the rendering thing???

has anybody any f* idea why the screen appears black now? and 1.2 B also 
works on my computer.. so it can be only a matter of source code change 
in the last 4 months *yippy*. it should not be related to library change.

the stupid thing is that i need to disable 1.2 C


stefan

Uwe Dalluege schrieb:
> Hi,
> 
> with OpenJUMPNight 1.2B from 2007.05.10  Layer>Add Image Layer works!
> With the latest OpenJUMPNight version 1.2C it does not work!
> 
> Where is the different?
> 
> Regards,
> 
> Uwe
> 
> Uwe Dalluege schrieb:
>> Hi David,
>>
>> in the OpenJUMPNight lib directory I found jai_codec.jar and 
>> jai_core.jar.
>> I hope this is enough but it does not work with it!
>>
>> Regards,
>>
>> Uwe Dalluege
>>
>> -- 
>>
>> HafenCity Universitaet Hamburg
>> Department Geomatik
>> Rechenzentrum
>> Dipl.-Ing. Uwe Dalluege   :-)
>> Hebebrandstr. 1
>> 22297 Hamburg
>> Tel.: +49 40 42827 - 5335 oder 5353 oder 5313
>> Fax:  +49 40 42827 - 5409
>> E-Mail: mailto:[EMAIL PROTECTED]
>> Url: http://www.hcu-hamburg.de/geomatik/
>> -- 
>>
>>
>>
>>
>> David Zwiers schrieb:
>>> Are the drivers installed? If I recall you need JAI for those formats.
>>>
>>>   David Zwiers
>>>   Vivid Solutions Inc.
>>> -Original Message-
>>> From: [EMAIL PROTECTED]
>>> [mailto:[EMAIL PROTECTED] On Behalf Of Uwe
>>> Dalluege
>>> Sent: August 13, 2007 4:29 AM
>>> To: Devel Jump
>>> Subject: [JPP-Devel] OJ 1.2C: Add Image Layer
>>>
>>> Hi,
>>>
>>> I try to load images ( .jpg, .tng, .tif, .gif ) with Layer>Add Image
>>> Layer.
>>> Sometimes I see nothing, sometimes I see a black window!
>>>
>>> I there a trick to load an image?
>>>
>>> Regards,
>>>
>>> Uwe
>>>
>>>
>>> 
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>   
> 
> 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJ 1.2C: Add Image Layer

2007-08-14 Thread Stefan Steiniger
ok.. i just recognized that also my last cvs version contains the error:
i.e. it must have been happend between 1.2B release and the change to 
the cvs. since my last update is from 2. June it must have been between:
24. April and 2/3.June ?

probably...

Stefan Steiniger schrieb:
> Hei Uwe,
> 
> you are right.. i deeply appologize for not testing earlier!!
> 
> i only see black screens as well  - and it does not matter if i zoom
> .. i actually can't say now what we changed..
> maybe it is the rendering thing???
> 
> has anybody any f* idea why the screen appears black now? and 1.2 B also 
> works on my computer.. so it can be only a matter of source code change 
> in the last 4 months *yippy*. it should not be related to library change.
> 
> the stupid thing is that i need to disable 1.2 C
> 
> 
> stefan
> 
> Uwe Dalluege schrieb:
>> Hi,
>>
>> with OpenJUMPNight 1.2B from 2007.05.10  Layer>Add Image Layer works!
>> With the latest OpenJUMPNight version 1.2C it does not work!
>>
>> Where is the different?
>>
>> Regards,
>>
>> Uwe
>>
>> Uwe Dalluege schrieb:
>>> Hi David,
>>>
>>> in the OpenJUMPNight lib directory I found jai_codec.jar and 
>>> jai_core.jar.
>>> I hope this is enough but it does not work with it!
>>>
>>> Regards,
>>>
>>> Uwe Dalluege
>>>
>>> -- 
>>>
>>> HafenCity Universitaet Hamburg
>>> Department Geomatik
>>> Rechenzentrum
>>> Dipl.-Ing. Uwe Dalluege   :-)
>>> Hebebrandstr. 1
>>> 22297 Hamburg
>>> Tel.: +49 40 42827 - 5335 oder 5353 oder 5313
>>> Fax:  +49 40 42827 - 5409
>>> E-Mail: mailto:[EMAIL PROTECTED]
>>> Url: http://www.hcu-hamburg.de/geomatik/
>>> -- 
>>>
>>>
>>>
>>>
>>> David Zwiers schrieb:
>>>> Are the drivers installed? If I recall you need JAI for those formats.
>>>>
>>>>   David Zwiers
>>>>   Vivid Solutions Inc.
>>>> -Original Message-
>>>> From: [EMAIL PROTECTED]
>>>> [mailto:[EMAIL PROTECTED] On Behalf Of Uwe
>>>> Dalluege
>>>> Sent: August 13, 2007 4:29 AM
>>>> To: Devel Jump
>>>> Subject: [JPP-Devel] OJ 1.2C: Add Image Layer
>>>>
>>>> Hi,
>>>>
>>>> I try to load images ( .jpg, .tng, .tif, .gif ) with Layer>Add Image
>>>> Layer.
>>>> Sometimes I see nothing, sometimes I see a black window!
>>>>
>>>> I there a trick to load an image?
>>>>
>>>> Regards,
>>>>
>>>> Uwe
>>>>
>>>>
>>>> 
>>>> -
>>>> This SF.net email is sponsored by: Splunk Inc.
>>>> Still grepping through log files to find problems?  Stop.
>>>> Now Search log events and configuration files using AJAX and a browser.
>>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>>> ___
>>>> Jump-pilot-devel mailing list
>>>> Jump-pilot-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>>
>>>>
>>>>   
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJ 1.2C: Add Image Layer

2007-08-15 Thread Stefan Steiniger
hei Larry & Michael,

i could identify the change that caused the problem:

   AbstractSelectionRenderer.java, java2D/Java2DConverter.java,
   java2D/PolygonShape.java, style/WKTFillPattern.java:

i.e. the improvements from SkyJUMP on point coordinates decimation, 
selection renderer..

now we need to fix it (without loosing the improvements?)
tonight i would like to replace the old buggy files to have an OJ 
nightly built tomorrow that displays images.

stefan

Larry Becker schrieb:
> Ok, I've stepped the Image Layer code in the debugger up though the
> final g.drawImage() method in GraphicImage.paint() and all seemed to
> be well.  Of course, I can't really tell if the jpeg got converted to
> an image correctly using the debugger, but I suspect it has.
> 
> It would appear that the black area fills the window area and not
> simply the image polygon so it definitely looks like some kind of
> graphics interaction.  I stepped though the whole repaint pipeline for
> the image layer and I didn't execute any code that had been changed in
> the last several months.
> 
> Will try more tomorrow.
> 
> regards,
> Larry
> 
> On 8/14/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>> ok.. i just recognized that also my last cvs version contains the error:
>> i.e. it must have been happend between 1.2B release and the change to
>> the cvs. since my last update is from 2. June it must have been between:
>> 24. April and 2/3.June ?
>>
>> probably...
>>
>> Stefan Steiniger schrieb:
>>> Hei Uwe,
>>>
>>> you are right.. i deeply appologize for not testing earlier!!
>>>
>>> i only see black screens as well  - and it does not matter if i zoom
>>> .. i actually can't say now what we changed..
>>> maybe it is the rendering thing???
>>>
>>> has anybody any f* idea why the screen appears black now? and 1.2 B also
>>> works on my computer.. so it can be only a matter of source code change
>>> in the last 4 months *yippy*. it should not be related to library change.
>>>
>>> the stupid thing is that i need to disable 1.2 C
>>>
>>>
>>> stefan
>>>
>>> Uwe Dalluege schrieb:
>>>> Hi,
>>>>
>>>> with OpenJUMPNight 1.2B from 2007.05.10  Layer>Add Image Layer works!
>>>> With the latest OpenJUMPNight version 1.2C it does not work!
>>>>
>>>> Where is the different?
>>>>
>>>> Regards,
>>>>
>>>> Uwe
>>>>
>>>> Uwe Dalluege schrieb:
>>>>> Hi David,
>>>>>
>>>>> in the OpenJUMPNight lib directory I found jai_codec.jar and
>>>>> jai_core.jar.
>>>>> I hope this is enough but it does not work with it!
>>>>>
>>>>> Regards,
>>>>>
>>>>> Uwe Dalluege
>>>>>
>>>>> --
>>>>>
>>>>> HafenCity Universitaet Hamburg
>>>>> Department Geomatik
>>>>> Rechenzentrum
>>>>> Dipl.-Ing. Uwe Dalluege   :-)
>>>>> Hebebrandstr. 1
>>>>> 22297 Hamburg
>>>>> Tel.: +49 40 42827 - 5335 oder 5353 oder 5313
>>>>> Fax:  +49 40 42827 - 5409
>>>>> E-Mail: mailto:[EMAIL PROTECTED]
>>>>> Url: http://www.hcu-hamburg.de/geomatik/
>>>>> --
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> David Zwiers schrieb:
>>>>>> Are the drivers installed? If I recall you need JAI for those formats.
>>>>>>
>>>>>>   David Zwiers
>>>>>>   Vivid Solutions Inc.
>>>>>> -Original Message-
>>>>>> From: [EMAIL PROTECTED]
>>>>>> [mailto:[EMAIL PROTECTED] On Behalf Of Uwe
>>>>>> Dalluege
>>>>>> Sent: August 13, 2007 4:29 AM
>>>>>> To: Devel Jump
>>>>>> Subject: [JPP-Devel] OJ 1.2C: Add Image Layer
>>>>>>
>>>>>> Hi,
>>>>>>
>>>>>> I try to load images ( .jpg, .tng, .tif, .gif ) with Layer>Add Image
>>>>>> Layer.
>>>>>> Sometimes I see nothing, sometimes I see a black window!
>>>>>>
>>>>>> I there a trick to load an image?
>>>>>>
>>>>>> Regards,
>>

Re: [JPP-Devel] Mouse Wheel Zoom

2007-08-15 Thread Stefan Steiniger
Hei Larry,

thanx for adding the mousewheel support :)

can you also update the changeLog file with your changes?

thank you
stefan

Larry Becker schrieb:
> Yep, along with some support in ZoomTool.
> 
> Larry
> 
> On 8/14/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
>> This is great news Larry.
>>
>> I'm just curious, how did you go about adding support for mouse wheel
>> zoom. Did you add a mouse listener to the LayerViewPanel.
>>
>> SS
>>
>> On 8/14/07, Larry Becker <[EMAIL PROTECTED]> wrote:
>>> I have ported over the Mouse Wheel Zoom support from SkyJUMP.  I
>>> should appear in OJ's nightly build (assuming I didn't break it).
>>>
>>> regards,
>>> Larry Becker
>>> --
>>> http://amusingprogrammer.blogspot.com/
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJ 1.2C: Add Image Layer

2007-08-15 Thread Stefan Steiniger
cool :o)

thank you for the really fast fix.
I think i would never have found the real problem, as i am not familiar 
with Java renderer and drawing stuff.

So i guess I can do tomorrow a version OJ 1.2D

stefan

Larry Becker schrieb:
> Hi Stefan,
> 
>I've fixed the problem and committed the change.  It was caused by:
> g.setComposite(AlphaComposite.Src) in GraphicImage.  This changed the
> current Graphics Context compositing operation and it apparently
> caused problems later with some other renderer, probably a recent
> change.  I put in some code to save and restore the compositing mode.
> 
> regards,
> Larry
> 
> On 8/15/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>> hei Larry & Michael,
>>
>> i could identify the change that caused the problem:
>>
>>AbstractSelectionRenderer.java, java2D/Java2DConverter.java,
>>java2D/PolygonShape.java, style/WKTFillPattern.java:
>>
>> i.e. the improvements from SkyJUMP on point coordinates decimation,
>> selection renderer..
>>
>> now we need to fix it (without loosing the improvements?)
>> tonight i would like to replace the old buggy files to have an OJ
>> nightly built tomorrow that displays images.
>>
>> stefan
>>
>> Larry Becker schrieb:
>>> Ok, I've stepped the Image Layer code in the debugger up though the
>>> final g.drawImage() method in GraphicImage.paint() and all seemed to
>>> be well.  Of course, I can't really tell if the jpeg got converted to
>>> an image correctly using the debugger, but I suspect it has.
>>>
>>> It would appear that the black area fills the window area and not
>>> simply the image polygon so it definitely looks like some kind of
>>> graphics interaction.  I stepped though the whole repaint pipeline for
>>> the image layer and I didn't execute any code that had been changed in
>>> the last several months.
>>>
>>> Will try more tomorrow.
>>>
>>> regards,
>>> Larry
>>>
>>> On 8/14/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>>>> ok.. i just recognized that also my last cvs version contains the error:
>>>> i.e. it must have been happend between 1.2B release and the change to
>>>> the cvs. since my last update is from 2. June it must have been between:
>>>> 24. April and 2/3.June ?
>>>>
>>>> probably...
>>>>
>>>> Stefan Steiniger schrieb:
>>>>> Hei Uwe,
>>>>>
>>>>> you are right.. i deeply appologize for not testing earlier!!
>>>>>
>>>>> i only see black screens as well  - and it does not matter if i zoom
>>>>> .. i actually can't say now what we changed..
>>>>> maybe it is the rendering thing???
>>>>>
>>>>> has anybody any f* idea why the screen appears black now? and 1.2 B also
>>>>> works on my computer.. so it can be only a matter of source code change
>>>>> in the last 4 months *yippy*. it should not be related to library change.
>>>>>
>>>>> the stupid thing is that i need to disable 1.2 C
>>>>>
>>>>>
>>>>> stefan
>>>>>
>>>>> Uwe Dalluege schrieb:
>>>>>> Hi,
>>>>>>
>>>>>> with OpenJUMPNight 1.2B from 2007.05.10  Layer>Add Image Layer works!
>>>>>> With the latest OpenJUMPNight version 1.2C it does not work!
>>>>>>
>>>>>> Where is the different?
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> Uwe
>>>>>>
>>>>>> Uwe Dalluege schrieb:
>>>>>>> Hi David,
>>>>>>>
>>>>>>> in the OpenJUMPNight lib directory I found jai_codec.jar and
>>>>>>> jai_core.jar.
>>>>>>> I hope this is enough but it does not work with it!
>>>>>>>
>>>>>>> Regards,
>>>>>>>
>>>>>>> Uwe Dalluege
>>>>>>>
>>>>>>> --
>>>>>>>
>>>>>>> HafenCity Universitaet Hamburg
>>>>>>> Department Geomatik
>>>>>>> Rechenzentrum
>>>>>>> Dipl.-Ing. Uwe Dalluege   :-)
>>>>>>> Hebebrandstr. 1
>>>>>>> 22297 Hamburg
>>&g

Re: [JPP-Devel] OJ 1.2C: Add Image Layer

2007-08-15 Thread Stefan Steiniger
Moi Jukka,

yep would be nice if you could test tommorrow.
so we can also setup a compatibility list on the wiki.

about the compressed files.. i don't know. You can test, but if the test 
fails, then we will not have the resources to implement, i think.
there should be also "dozens" of tif formats out there, depending on b/w 
vs colour vs. packalgroithm

stefan

Rahkonen Jukka schrieb:
> Hi,
> 
> I can test Add image layer functionality with 1 by 1 pixel images 
> once bug free version is available. Are the formats to be tested as follows:
> 
> - jpeg with world file
> - png with world file
> - gif with world file
> - tiff with world file
> - GeoTiff
> - ECW
> 
> How about different tiffs? I think that band interleaved tiffs do not work.  
> Should I test some compressed variations as well?
> 
> -Jukka Rahkonen-
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED] on behalf of Michaël Michaud
> Sent: Wed 15.8.2007 18:06
> To: List for discussion of JPP development and use.
> Subject: Re: [JPP-Devel] OJ 1.2C: Add Image Layer
>  
>> Hi,
> 
>> I started to dig into the code, but I was a bit lost and quite far from 
>> the solution.
>> Thanks to Larry, Stefan will be able to commit a new "bug-free" version 
>> soon.
> 
>> Michaël
> 
>> Larry Becker a écrit :
> 
>>> Hi Stefan,
>>>
>>>   I've fixed the problem and committed the change.  It was caused by:
>>> g.setComposite(AlphaComposite.Src) in GraphicImage.  This changed the
>>> current Graphics Context compositing operation and it apparently
>>> caused problems later with some other renderer, probably a recent
>>> change.  I put in some code to save and restore the compositing mode.
>>>
>>> regards,
>>> Larry
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Toggle Visibility was broken

2007-08-16 Thread Stefan Steiniger
Hei,

but in general Larry is right.. we should sarch for testers

most of the errors are reported by the same people.

stefan

Uwe Dalluege schrieb:
> Hi Larry,
> 
> you wrote:
> 
>> This (and the problem with Image Layres) raises the question, "Is
>> anyone besides the developers testing and reporting bugs?" 
> 
> Please have a look at this side:
> 
> http://sourceforge.net/tracker/?atid=679906&group_id=118054&func=browse
> 
> Regards,
> 
> Uwe
> 
> --
> HafenCity Universitaet Hamburg
> Department Geomatik
> Rechenzentrum
> Dipl.-Ing. Uwe Dalluege   :-)
> Hebebrandstr. 1
> 22297 Hamburg
> Tel.: +49 40 42827 - 5335 oder 5353 oder 5313
> Fax:  +49 40 42827 - 5409
> E-Mail: mailto:[EMAIL PROTECTED]
> Url: http://www.hcu-hamburg.de/geomatik/
> --
> 
> 
> 
> Larry Becker schrieb:
>> I just found and fixed a problem with the Toggle Visibility Layer Name
>> popup menu item.  It was totally nonfunctional.  I wonder how long it
>> has been broken.
>>
>> This (and the problem with Image Layres) raises the question, "Is
>> anyone besides the developers testing and reporting bugs?"  We need to
>> recruit some testers.  Perhaps an announcement on SourceForge where
>> some of the 100 people downloading OpenJump per day might see it.
>> Something like:
>>
>> "Software testers needed on project OpenJump.  All you have to do is
>> use OpenJump and report any bugs you find using the SourceForge
>> tracker."
>>
>> regards,
>> Larry
>>
>>   
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Combo Box in SchemaPanel

2007-08-16 Thread Stefan Steiniger
ok.. i will have look


Uwe Dalluege schrieb:
> Hi,
> 
> I like to use OpenJUMP with this option:
> -Dswing.defaultlaf=javax.swing.plaf.metal.MetalLookAndFeel
> to get the MetalLookAndFeel.
> 
> Now I have a problem with the display of the Edit Schema Panel.
> 
> 1. View/Edit Schema.
> 2. Leftclick in a Data Type row.
> 3. The text of the Combo Box in the row has not enough space.
> You can not read the text.
> 
> Maybe this is a solution:
> 
> Set the RowHeight with setRowHeight ( 20 ) in the SchemaPanel
> (package com.vividsolutions.jump.workbench.ui;)
> from the table to 20 pixel. Then it works fine!
> 
> ...
> private void updateComponents() {
> table.setShowGrid(layer.isEditable());
> table.setRowHeight(20);
> ...
> 
> Regards,
> 
> Uwe
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] SF.net SVN: jump-pilot: [979] core/branches/1.2/trunk/]

2007-08-16 Thread Stefan Steiniger
Paul,

thanx for your advise... i was just on the way to write you.
it is really strange.. i could use "branch/tag" option of subclipse to
create a new tag. But it does not work for branches/1.2. Here it always
creates a copy of trunk in a new subfolder called "trunk".
The only way - using the normal copy function - is to copy folder by folder.

The merge function you mentioned I can not find in subclipse SVN
Repository View in the mouse menu. Do i need to make the merge locally?

probably it is the best way to remove all sources under branches/1.2/ as 
far as we not have yet a real 1.2 release

stefan

Paul Austin schrieb:
> I just noticed the following checkin which has created a sub directory
> called trunk under core/branches/1.2. I'm presuming that what was
> supposed to happen was that all the latest changed in trunk was to be
> copied to be under the branch.
> 
> There are two ways to do this.
> 
> 1. delete the old branch 1.2 and then use the branch tag command to copy
> trunk to branches/1.2
> 2. Use the merge function to merge the changes from trunk to the branch.
> To do this first use the switch command to switch your local copy to the
> branch, you then use the merge command to merge the changes into your
> local copy. Then finally commit those changes to the branch.
> 
> Option 1 only works if no local changes occur to the branch, otherwise
> you have to use option 2.
> 
> When we get to the point where we have the final 1.2 release we may then
> create bug fixes against the 1.2 branch which we may also apply to
> trunk, that's when the merging comes in
> 
> Paul
> 
>  Original Message 
> Subject:  [Jump-pilot-svn-notify] SF.net SVN: jump-pilot: [979]
> core/branches/1.2/trunk/
> Date: Thu, 16 Aug 2007 07:19:28 -0700
> From: [EMAIL PROTECTED]
> Reply-To: [EMAIL PROTECTED]
> To:   [EMAIL PROTECTED]
> 
> 
> 
> Revision: 979
>   http://jump-pilot.svn.sourceforge.net/jump-pilot/?rev=979&view=rev
> Author:   mentaer
> Date: 2007-08-16 07:19:28 -0700 (Thu, 16 Aug 2007)
> 
> Log Message:
> ---
> 
> 
> Added Paths:
> ---
> core/branches/1.2/trunk/
> 
> Copied: core/branches/1.2/trunk (from rev 978, core/trunk)
> 
> 
> This was sent by the SourceForge.net collaborative development platform, the 
> world's largest Open Source development site.
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-svn-notify mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-svn-notify
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] SF.net SVN: jump-pilot: [979] core/branches/1.2/trunk/]

2007-08-16 Thread Stefan Steiniger
thanx a lot for your advise. Its good to have experienced developers 
like Martin, Larry and You on the list

stefan

Paul Austin schrieb:
> Hi Stefan
> 
> For now lets remove the 1.2 branch as we are not going to be maintaining
> it. Do as we are doing for now by updating trunk and then creating a tag.
> 
> When we release 1.2 final at that point we'll create the branch.
> 
> The reason why the branch isn't working is that if the target directory
> of a branch already exists branches/1.2 then subclipse just creates a
> new directory with the same of the source below it rather than over
> writing it.
> 
> The merge function is done against the local checked out copy of the
> project. All it does is basically find the differences between the local
> copy and the repository copy that you want to copy from and then checks
> those out to your local copy. You then have to resolve any conflicts and
> then when happy check them back in.
> 
> What I'd encourage all developers to do is find a SVN repository that
> they can practice with dummy projects, some of it is quite confusing. I
> have to remind myself the specifics of merging every time I do it.
> 
> Paul
> 
> Stefan Steiniger wrote:
>> Paul,
>>
>> thanx for your advise... i was just on the way to write you.
>> it is really strange.. i could use "branch/tag" option of subclipse to
>> create a new tag. But it does not work for branches/1.2. Here it always
>> creates a copy of trunk in a new subfolder called "trunk".
>> The only way - using the normal copy function - is to copy folder by folder.
>>
>> The merge function you mentioned I can not find in subclipse SVN
>> Repository View in the mouse menu. Do i need to make the merge locally?
>>
>> probably it is the best way to remove all sources under branches/1.2/ as 
>> far as we not have yet a real 1.2 release
>>
>> stefan
>>
>> Paul Austin schrieb:
>>   
>>> I just noticed the following checkin which has created a sub directory
>>> called trunk under core/branches/1.2. I'm presuming that what was
>>> supposed to happen was that all the latest changed in trunk was to be
>>> copied to be under the branch.
>>>
>>> There are two ways to do this.
>>>
>>> 1. delete the old branch 1.2 and then use the branch tag command to copy
>>> trunk to branches/1.2
>>> 2. Use the merge function to merge the changes from trunk to the branch.
>>> To do this first use the switch command to switch your local copy to the
>>> branch, you then use the merge command to merge the changes into your
>>> local copy. Then finally commit those changes to the branch.
>>>
>>> Option 1 only works if no local changes occur to the branch, otherwise
>>> you have to use option 2.
>>>
>>> When we get to the point where we have the final 1.2 release we may then
>>> create bug fixes against the 1.2 branch which we may also apply to
>>> trunk, that's when the merging comes in
>>>
>>> Paul
>>>
>>>  Original Message 
>>> Subject:[Jump-pilot-svn-notify] SF.net SVN: jump-pilot: [979]
>>> core/branches/1.2/trunk/
>>> Date:   Thu, 16 Aug 2007 07:19:28 -0700
>>> From:   [EMAIL PROTECTED]
>>> Reply-To:   [EMAIL PROTECTED]
>>> To: [EMAIL PROTECTED]
>>>
>>>
>>>
>>> Revision: 979
>>>   http://jump-pilot.svn.sourceforge.net/jump-pilot/?rev=979&view=rev
>>> Author:   mentaer
>>> Date: 2007-08-16 07:19:28 -0700 (Thu, 16 Aug 2007)
>>>
>>> Log Message:
>>> ---
>>>
>>>
>>> Added Paths:
>>> ---
>>> core/branches/1.2/trunk/
>>>
>>> Copied: core/branches/1.2/trunk (from rev 978, core/trunk)
>>>
>>>
>>> This was sent by the SourceForge.net collaborative development platform, 
>>> the world's largest Open Source development site.
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-svn-notify mailing list
>>> [EMAIL PROTECTED]
>>> https://lists.sourceforge.net/lists/listinfo/jump-

[JPP-Devel] @Michael: styling bug

2007-08-16 Thread Stefan Steiniger
Hei Michael,

according to your entry for this bug:
https://sourceforge.net/tracker/index.php?func=detail&aid=1691836&group_id=118054&atid=679906

the bug is fixed. Can you comment?
Then i would close the report.

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] self backslapping ;)

2007-08-16 Thread Stefan Steiniger
Hei Guys,

thanx to your enthusiasm and activity we made it yesterday on 
sourceforge activity rank 180 of all sourceforge projects. More over, we 
are today the most active project of the GIS related projects (currently 
671 listed)

.. so lets keep movin on :o)

stefan

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] OJN 1.2D: Add Image Layer

2007-08-17 Thread Stefan Steiniger
mhm.. interesting... and thanx for test

but normal jpgs/png without a worldfile can be displayed on my computer

i tested by taking a screenshot 1440x900 and then stored the screenshot 
as jpg and png - non interlace - with Adobe Photoshop
the only issue was, that OJ became quite slow

stefan

Rahkonen Jukka schrieb:
> Hi,
> 
> I made a quick test with one 9996 by 9996 pixel colour image. The original is 
> band interleaved geotiff. I converted it with gdal_translate to following 
> formats:
> 
> - png (gdal_translate -of PNG jumptest.tif jumptest.png)
> - jpeg (gdal_translate -of jpeg jumptest.tif jumptest.jpg)
> - ecw (gdal_translate -of ECW -co LARGE_OK=YES jumptest.tif jumptest.ecw)
> - pixel interleaved geotiff (gdal_translate -of GTiff -co interleave=pixel 
> jumptest.tif jumptest_pixel_int.tif)
> 
> I created also ESRI world file (.tfw) and copied it for jpeg and png formats 
> as .jgw and .pgw, respectively.
> 
> Results:
> - band interleaved tiff does not show
> - jpeg does not show
> - png does not show
> - pixel interleaved tiff shows OK
> - ecw shows OK
> 
> Read error with band interleaved tiffs is quite usual, and a few weeks ago 
> GDAL default was changed to pixel interleave. There must be another reason 
> for problems with jpeg and png.
> 
> Right click - Properties on the failed jpeg and png image layer shows this 
> error:
> Javax.media.jai.util.ImagingException: All factories fail for the operation 
> "FileLoad"
> 
> Regards,
> 
> -Jukka-
> 
> 
>  
> 
>> -Alkuperäinen viesti-
>> Lähettäjä: [EMAIL PROTECTED] 
>> [mailto:[EMAIL PROTECTED] 
>> Puolesta Uwe Dalluege
>> Lähetetty: 17. elokuuta 2007 11:48
>> Vastaanottaja: Devel Jump
>> Aihe: [JPP-Devel] OJN 1.2D: Add Image Layer
>>
>> Hi,
>>
>> when I load a TIFF file which has a worldfile with Layer>Add 
>> Image Layer a new layer appears but nothing happens (no 
>> errormessage and no image)!
>>
>> Running OpenJUMPNight 1.2D with Eclipse I see the error:
>>
>> com.vividsolutions.jump.JUMPException: Neither geotiff tags 
>> nor valid worldfile found.
>> This is not a valid GeoTIFF file.
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> .init(GeoTIFFImage.java:72)
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> .(GeoTIFFImage.java:56)
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> Factory.createImage(GeoTIFFImageFactory.java:53)
>> at
>> com.vividsolutions.jump.workbench.imagery.ImageryLayerDataset.
>> createImage(ImageryLayerDataset.java:76)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.createFeature(ImageFeatureCreator.java:174)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.access$0(ImageFeatureCreator.java:159)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator$1.yield(ImageFeatureCreator.java:153)
>> at
>> com.vividsolutions.jump.util.CollectionUtil.collect(Collection
>> Util.java:298)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.createFeatures(ImageFeatureCreator.java:148)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.getImages(ImageFeatureCreator.java:79)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.AddImageLa
>> yerPlugIn.execute(AddImageLayerPlugIn.java:34)
>> at
>> com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.acti
>> onPerformed(AbstractPlugIn.java:130)
>> at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
>> at 
>> javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
>> at 
>> javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
>> at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
>> at javax.swing.AbstractButton.doClick(Unknown Source)
>> at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
>> at
>> javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(U
>> nknown Source)
>> at java.awt.Component.processMouseEvent(Unknown Source)
>> at javax.swing.JComponent.processMouseEvent(Unknown Source)
>> at java.awt.Component.processEvent(Unknown Source)
>> at java.awt.Container.processEvent(Unknown Source)
>> at java.awt.Component.dispatchEventImpl(Unknown Source)
>> at java.awt.Container.dispatchEventImpl(Unknown Source)
>> at java.awt.Component.dispatchEvent(Unknown Source)
>> at 
>> java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
>> at 
>> java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
>> at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
>> at java.awt.Container.dispatchEventImpl(Unknown Source)
>> at java.awt.Window.dispatchEventImpl(Unknown Source)
>> at java.awt.Component.dispatchEvent(Unknown Source)
>> at java.awt.EventQueue.dispatchEvent(Unknown Source)
>> at 
>> java.awt

Re: [JPP-Devel] OJN 1.2D: Add Image Layer

2007-08-17 Thread Stefan Steiniger
btw.. if it does not load..
can it be a image size problem?

because 9996x9996 px is shown by Adobe Photoshop as file with 285MB size 
in memory (stored as jpg: 15MB - of course depending on the image 
packability itself)

If i try to load the file with OpenJUMP (java memory option -Xmx256M).. 
then it is not shown as well.. without any error message

don't know how diffcult it is to obtain at least a message from jai that 
the file is to large.


stefan

Rahkonen Jukka schrieb:
> Hi,
> 
> I made a quick test with one 9996 by 9996 pixel colour image. The original is 
> band interleaved geotiff. I converted it with gdal_translate to following 
> formats:
> 
> - png (gdal_translate -of PNG jumptest.tif jumptest.png)
> - jpeg (gdal_translate -of jpeg jumptest.tif jumptest.jpg)
> - ecw (gdal_translate -of ECW -co LARGE_OK=YES jumptest.tif jumptest.ecw)
> - pixel interleaved geotiff (gdal_translate -of GTiff -co interleave=pixel 
> jumptest.tif jumptest_pixel_int.tif)
> 
> I created also ESRI world file (.tfw) and copied it for jpeg and png formats 
> as .jgw and .pgw, respectively.
> 
> Results:
> - band interleaved tiff does not show
> - jpeg does not show
> - png does not show
> - pixel interleaved tiff shows OK
> - ecw shows OK
> 
> Read error with band interleaved tiffs is quite usual, and a few weeks ago 
> GDAL default was changed to pixel interleave. There must be another reason 
> for problems with jpeg and png.
> 
> Right click - Properties on the failed jpeg and png image layer shows this 
> error:
> Javax.media.jai.util.ImagingException: All factories fail for the operation 
> "FileLoad"
> 
> Regards,
> 
> -Jukka-
> 
> 
>  
> 
>> -Alkuperäinen viesti-
>> Lähettäjä: [EMAIL PROTECTED] 
>> [mailto:[EMAIL PROTECTED] 
>> Puolesta Uwe Dalluege
>> Lähetetty: 17. elokuuta 2007 11:48
>> Vastaanottaja: Devel Jump
>> Aihe: [JPP-Devel] OJN 1.2D: Add Image Layer
>>
>> Hi,
>>
>> when I load a TIFF file which has a worldfile with Layer>Add 
>> Image Layer a new layer appears but nothing happens (no 
>> errormessage and no image)!
>>
>> Running OpenJUMPNight 1.2D with Eclipse I see the error:
>>
>> com.vividsolutions.jump.JUMPException: Neither geotiff tags 
>> nor valid worldfile found.
>> This is not a valid GeoTIFF file.
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> .init(GeoTIFFImage.java:72)
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> .(GeoTIFFImage.java:56)
>> at
>> com.vividsolutions.jump.workbench.imagery.geotiff.GeoTIFFImage
>> Factory.createImage(GeoTIFFImageFactory.java:53)
>> at
>> com.vividsolutions.jump.workbench.imagery.ImageryLayerDataset.
>> createImage(ImageryLayerDataset.java:76)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.createFeature(ImageFeatureCreator.java:174)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.access$0(ImageFeatureCreator.java:159)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator$1.yield(ImageFeatureCreator.java:153)
>> at
>> com.vividsolutions.jump.util.CollectionUtil.collect(Collection
>> Util.java:298)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.createFeatures(ImageFeatureCreator.java:148)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatu
>> reCreator.getImages(ImageFeatureCreator.java:79)
>> at
>> com.vividsolutions.jump.workbench.ui.plugin.imagery.AddImageLa
>> yerPlugIn.execute(AddImageLayerPlugIn.java:34)
>> at
>> com.vividsolutions.jump.workbench.plugin.AbstractPlugIn$1.acti
>> onPerformed(AbstractPlugIn.java:130)
>> at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
>> at 
>> javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
>> at 
>> javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
>> at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
>> at javax.swing.AbstractButton.doClick(Unknown Source)
>> at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
>> at
>> javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(U
>> nknown Source)
>> at java.awt.Component.processMouseEvent(Unknown Source)
>> at javax.swing.JComponent.processMouseEvent(Unknown Source)
>> at java.awt.Component.processEvent(Unknown Source)
>> at java.awt.Container.processEvent(Unknown Source)
>> at java.awt.Component.dispatchEventImpl(Unknown Source)
>> at java.awt.Container.dispatchEventImpl(Unknown Source)
>> at java.awt.Component.dispatchEvent(Unknown Source)
>> at 
>> java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
>> at 
>> java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
>> at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
>> at java.awt.Container.dispatchEventImpl(Unknown Source)
>> at java.awt.Window.dispatchEve

Re: [JPP-Devel] Scale

2007-08-20 Thread Stefan Steiniger
Hie Uwe,

if you activate the button that takes the current value for seting up 
the smallest/largest scale you will see that RealScale should be taken 
(if i remember correctly). I need to look where the hint comes from.. 
propabaly we forgot to change the language files here (it should be only 
units).

I would like to note that this RealScale is only valid for the 
monitor/screen. It may not be valid when a print on paper is done.

stefan

Uwe Dalluege schrieb:
> Hi Larry, hi Stefan
> 
> thank you for your detailed explanation!
> So the Current Scale in Change Style>Scale is equal the RealScale.
> 
> But what is about the check box
> "Only show layer when scale is between:"
> There we find the hint Units/Pixel.
> 
> Is the "Smallest/Largest" Scale in Units/Pixel (InternalScale)
> or the RealScale from Stefan?
> 
> Regards,
> 
> Uwe
> 
> Larry Becker schrieb:
>> Oops, I meant to say:
>>
>> Of course, a scale expressed as a ratio of 1:3780 means that one
>> unit on the map represents 3780 units on the ground.  So if we were to
>> print out the new project window as it was first opened, we would see
>> that one cm on the paper would be equivalent to 3780 cm or 37.8 m in the
>> real world.  This, of course, assumes that Stefan's math is correct.
>>
>> Larry
>> On 8/18/07, Larry Becker <[EMAIL PROTECTED]> wrote:
>>   
>>> Hi Uwe,
>>>
>>>   There are two kinds of scale in JUMP.  The internal scale is given by:
>>>
>>> internalScale = ModeViewWidth / PixelViewWidth.  (typically units of
>>> meters/pixel)
>>>
>>> The internalScale is used to transform distance between model space
>>> and screen space (at a particular view's zoom level) via a simple
>>> multiplication or division.
>>>
>>> Stefan modified the Change Style>Scale panel to compute a new display
>>> scale in late 2005 he called real scale.  He used:
>>>
>>>   realScale = ModeViewWidth * 100 / (INCHTOCM / SCREENRES * PixelViewWidth)
>>>
>>> This is basically the same equation with the conversion from pixel
>>> size to model units factored in.  When a new project window is first
>>> created, the internalScale will be 1 and every pixel will be one model
>>> unit wide.  The realScale will be 3779.527559055118 or approximately
>>> 3780 as you reported (given a SCREENRES of 96 and an INCHTOCM of
>>> 2.54).
>>>
>>> Of course, a scale expressed as a ratio of say 1:5000 means that one
>>> unit on the map represents 5000 units on the ground.  So if we were to
>>> print out the new project window as it was first opened, we would see
>>> that one cm on the paper would be equivalent to 5000 cm or 50 m in the
>>> real world.  This, of course, assumes that Stefan's math is correct.
>>> :-)
>>>
>>> regards,
>>> Larry Becker
>>>
>>>
>>>
>>> On 8/18/07, Uwe Dalluege <[EMAIL PROTECTED]> wrote:
>>> 
 Hi,

 does anybody knows how the scale
 of Change Style>Scale is calculate?

 I have a screen resolution of 1280 x 1024 pixel.
 When I use OpenJUMP with full screen
 the graphical window has a size of about 1060 x 860 units
 (coordinate display).

 The current scale shows me a value of 1:3780.

 What does it mean?

 Regards,

 Uwe



 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now >>  http://get.splunk.com/
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

   
>>> --
>>> http://amusingprogrammer.blogspot.com/
>>>
>>> 
>>
>>   
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] [jump-users] OpenJUMP release 1.2 D

2007-08-21 Thread Stefan Steiniger
Hi Larry,

mhm.. i could try it next weekend. I used the null-soft installer for 
now (i got some very simple script) but want to later use yours for the 
next releases.
Anyways it is interesting that is does not detect that you have 1.5 
installed. (probably it is not set to default)

stefan

Larry Becker schrieb:
> Hi Stefan,
> 
>   I tried the Setup-openjump12d.exe (nice looking installer), but I
> couldn't get past the "OpenJump uses Java 1.5, it will now be
> downloaded and installed" prompt.  I don't want to download since I
> already have Java 1.5 and Java 1.6 installed.  Can you make this step
> optional?
> 
> regards,
> Larry Becker
> 
> On 8/20/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>> Dear OpenJUMP users,
>>
>> after shipping the OpenJUMP 1.2 C prerelease we discovered a major bug
>> that prevented the loading of raster images. We could fix that bug last
>> week (thanx to Larry B.) and present as an additional feature of
>> OpenJUMP 1.2 D mouse wheel zooming capability.
>>
>> please feel free to download the new stable version OJ 1.2D from
>> sourceforge:
>>
>> http://sourceforge.net/project/showfiles.php?group_id=118054
>>
>> I am sorry to those, that already downloaded and installed the buggy
>> version 1.2C
>>
>> stefan
>>
>>
>> PS: A note on a known issue of raster image display: When one tries to
>> load large raster images (much larger than 1000x1000pixel), OpenJUMP may
>> fail to display the image without delivering an "out-of-memory" error
>> message.
>> ___
>> jump-users mailing list
>> [EMAIL PROTECTED]
>> http://lists.refractions.net/mailman/listinfo/jump-users
>>
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Snap points on vertices

2007-08-21 Thread Stefan Steiniger
In general i agree with you.
What may solve confusion is if we deliver a message like "point set" in 
the info box, down left?

stefan

Michaël Michaud schrieb:
> Sunburned Surveyor a écrit :
> 
>> Michael,
>>
>> What did you mean when you said "My experience is that it is more
>> confusing not to be able to snap points (snapping linestrings and
>> polygons works just fine) than to have points snapped on another one."
>>
>> To what "another one" do you refer? A point on the grid, or a node on
>> a feature geometry?
>>  
>>
> Both : snapping was disabled for both snapping on grid and snapping on a 
> feature vertex. I re-activated it, and a point can now be snapped on a 
> grid intersection, or on the vertex of another geometry or both (see the 
> option panel).
> I think the only situation which may be a little confuse is when you 
> create a point just beside an existing isolated point : the new point is 
> snapped on the previous one and finally, you see only one point on the 
> screen. My guess is that this case does not justify to disable snapping.
> 
> Michaël
> 
>> Thanks,
>>
>> The Sunburned Surveyor
>>
>>
>> On 8/16/07, Michaël Michaud <[EMAIL PROTECTED]> wrote:
>>  
>>
>>> Hi,
>>>
>>> Snapping points on vertices or on grid was not possible and I fixed that.
>>> I must say this was note a bug as there was a note from Jon Aquino saying :
>>> //Don't allow snapping. The user will get confused if he tries to draw
>>> //a point near another point and sees nothing happen because
>>> //snapping is happening. [Jon Aquino]
>>>
>>> My experience is that it is more confusing not to be able to snap points
>>> (snapping linestrings and polygons works just fine) than to have points
>>> snapped on another one.
>>> So I changed the code, but if you don't like it, it is as simple to as
>>> changing
>>> true to false or false to true :-)
>>> Note also that snapping is just an option, as it is for other geometries,
>>> so that it can be disabled for every features from the option panel.
>>>
>>> Michaël
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>  
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Language policies

2007-08-21 Thread Stefan Steiniger
just a note:

i think we do not need to make language translations continuously. I 
think the best way is as i did for OJ1.2B: just send out a call. 
Furthermore, the people helping last time are listed on the wiki and 
also in the readme-file under contributors in the etc folder on the svn/cvs

stefan

Sunburned Surveyor schrieb:
> Would it be better to see if we can get a volunteer translator for
> each language we want to support in OpenJUMP and coordinate with them
> to maintain the properties files for each language when new entries
> are made?
> 
> I wonder if this system would be better than "half-supported"
> languages in OpenJUMP.
> 
> I can see if my best friend could help me with the Spanish file.
> 
> The Sunburned Surveyor
> 
> On 8/16/07, Michaël Michaud <[EMAIL PROTECTED]> wrote:
>> I can tell you what Stefan answered to me after I asked the same question :
>>
>> add the key and the english value in every file and replace the value by
>> an appropriate translation where you can
>>
>> As I modified I18N original code, I can add that the normal behaviour of
>> jump should be :
>> - if a key in a specific language file is not found, jump should use the
>> one in jump.properties
>> - if the key does not exist in any file, OpenJUMP should use the last
>> part of the key (after a split(".")) as the string value
>>
>> Michaël
>>
>> Paul Austin a écrit :
>>
>>> What's the policy related to adding new I18N entries to the properties
>>> file. Do I just add the entries with the English to each file and hope
>>> that someone does a translation at some point?
>>>
>>> Paul
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>
>>>
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Mouse wheel zoom

2007-08-21 Thread Stefan Steiniger
I know.. very late (over the weekend i have been on an openair)

but if i could choose, i would prefer a "mouse-center-zoom" with an 
activated key (such as ctrl).

 From my point of view "Google" is not a reference, although they have 
some pretty nice usability stuff. But we should not miss that our target 
user group are GIS people. So we may also go conform with the general 
functionality in GIS.
At least i can imagine that having a zoom-in-out without a change of the 
center position may be useful as well during digitizing (but one can 
also claim the opposite ;)

maybe - we need to make a user-survey on that? but let me first try a 
few days with the mouse-center version.

my 2 cents
stefan

Larry Becker schrieb:
> Well, I guess I'll commit the change on the strength or Paul and
> Sunburn's recommendation.  We can always back out the change if we
> don't like it.
> 
> Larry
> 
> On 8/17/07, Larry Becker <[EMAIL PROTECTED]> wrote:
>> Hi Paul,
>>
>>   Some of the functionality you are talking about is already present
>> in my new ZoomRealTime tool, which pans and zooms continuously in real
>> time.  Perhaps I should port it over (it just needs
>> internationalization) before doing any more tweaks to Mouse Wheel
>> Zoom, which I thought was pretty cool when I first got it working, but
>> now seems a little tired in comparison with ZoomRealTime.
>>
>> I do agree that your #2 is more useful, now that I have tried it.
>> I'll wait for more feedback from others before committing the change.
>>
>> regards,
>> Larry
>>
>>
>>
>> On 8/17/07, Paul Austin <[EMAIL PROTECTED]> wrote:
>>> Hi Larry,
>>>
>>> Normally I hate people messing with my mouse pointer but in this case I
>>> would find it useful.
>>>
>>> Here are the three options for mouse wheel zooming that I see.
>>>
>>>1. Zoom in and out of the current viewport center (not that useful in
>>>   my view).
>>>2. Zoom in and out at the current mouse location (google maps does
>>>   this) (default option)
>>>3. Zoom in and out of the current mouse location but center the
>>>   viewport and mouse pointer at that location (advanced option while
>>>   holding down the shift key)
>>>
>>> Another thing I'd like to see is an integrated pan and zoom mode, where
>>> if you double click it zooms but when you drag it pans, much like google
>>> maps does. This could be integrated into the current pan tool. I'd still
>>> like the BBOX zoom functionality from the zoom tool.
>>>
>>> Paul
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>
>> --
>> http://amusingprogrammer.blogspot.com/
>>
> 
> 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] New OpenFile plugin

2007-08-21 Thread Stefan Steiniger
Yep.. sounds and looks interesting.

but two questions/comments:

- what about skiping any further dialog - e.g. if jml or shape files 
should be loaded without any reference system info necessary. Is that 
possible.

- how can we integrate the external plugins that deliver functionality 
such as dxf, mif, or PostGIS support. The problem here is that 
everything needs still to be the same as previously.

stefan

Paul Austin schrieb:
> All,
> 
> I have now implemented what I think should be the 'Open File...' menu 
> item in the File menu which will allow uses to open files and add them 
> as layers to the current Project.
> 
> This first screen shot shows the first page of the wizard where you can 
> select the File type (or leave it as All Files) and then select one or 
> more files to load.
> 
> 
> 
> If All files was selected as the file filter and one or more of the file 
> extensions could be loaded by more than one file loader (e.g. *.xml can 
> be loaded by the GML Loader and FME GML Loader) then the following 
> wziard panel will be displayed when you select the Next button on the 
> previous page. This will allow you to select which loader to use for 
> each extension.
> 
> 
> 
> If you uncheck the Use the same Settings for say *.xml you can select 
> the specific loader to use for each file as shown below.
> 
> 
> 
> Some file loaders have options (e.g. GML loader requires a template 
> file) if the loader has options these will be displayed on the next 
> wizard page. If no loaders have options then this page will not be 
> displayed. This is where we could add in options for the SRS ID to use 
> for the loaded data set. Options that are required will not allow the 
> finish button to be selected until a value is specified.
> 
> 
> 
> Again if you uncheck the Use same setting for all XXX then you can 
> define the options on a per file basis as shown below.
> 
> 
> 
> This new infrastructure also handles ZIP, GZ, tar and tar.gz, files by 
> looking at the contents of the zip file and finding the appropriate file 
> loader for that type of file. You can mix and match different types of 
> file in the zip file (e.g. TIF, SHP and GML) and each file will be loaded.
> 
> The FileLoader interface (attached) is implemented by loaders that can 
> load a file from a URI. There are implementations to wrap the file 
> DataSource and file ReferencedImageFactory implementations so they can 
> be loaded using the new framework.
> 
> The following code fragments show how these existing classes are wrapped
> 
> DataSourceFileLoader gmlLoader = addStandardReaderWriterFileDataSource(
>   "GML 2.0", StandardReaderWriterFileDataSource.GML.class);
> 
> gmlLoader.addOptionField(
>   StandardReaderWriterFileDataSource.GML.INPUT_TEMPLATE_FILE_KEY,
>   "FileString", true);
> 
> addFactory(new GraphicImageFactory(), new String[] {"wld", "bpw", "jpw", 
> "gfw"});
>   :
> 
>   private DataSourceFileLoader addStandardReaderWriterFileDataSource(
> String description, Class readerClass) {
> List extensions = getExtensions(readerClass);
> if (extensions != null) {
>   DataSourceFileLoader fileLoader = new DataSourceFileLoader(
> workbenchContext, readerClass, description, extensions);
>   registry.createEntry(FileLoader.KEY, fileLoader);
>   return fileLoader;
> }
> return null;
>   }
> 
>   private List getExtensions(Class readerClass) {
> try {
>   String[] extensions = 
> ((StandardReaderWriterFileDataSource)readerClass.newInstance()).getExtensions();
>   return Arrays.asList(extensions);
> } catch (Exception e) {
>   
> workbenchContext.getWorkbench().getFrame().log(StringUtil.stackTrace(e));
>   return null;
> }
>   }
> 
>   private void addFactory(ReferencedImageFactory factory, String[] 
> supportFileExtensions) {
> if (factory.isAvailable()) {
>   ReferencedImageFactoryFileLoader loader = new 
> ReferencedImageFactoryFileLoader(
> workbenchContext, factory, supportFileExtensions);
>   registry.createEntry(FileLoader.KEY, loader);
> }
>   }
> 
> 
> I'm going to bundle up a plugin so people can try this out and if they 
> like it I'll start work on getting it ready to commit.
> 
> Paul
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel



[JPP-Devel] some OJ testing by a guy called johannes copied from bug tracker

2007-08-21 Thread Stefan Steiniger
some things we need to check ...
i post it here so we don't forget

he also delivered testdata

stefan


General:

Option to set geometry type of Layer (most analysing tools require 
layers with exactly one featuretype anyway)
(also helpful for user who wants to produce shapefiles)

option to set a query when loading datasets

Joining external attribute tables (dbf;jdbc...)


Tool:

Overlay:
Enhancement: option to keep all Elements of 'First Layer' (intersected 
and non intersected)


Join attributes spatially:

Bug: Function 'source features contained in a target feature' handles 
overlapping polygons in a funny way(puts the value randomly? to one polygon)
In my opinion overlapping polygons should be ignored,

Enhancement: include operators for string Attributes e.g.:
Join attributes with a delimiter

Spatial query:

Enhancement: Put a list of feature Ids of the invoked features from the 
spatial operation to the target feature (helpful to interpret results 
and also nice analysing function)
'use selected features only' option

Attribute Query / Simple Query:
Enhancement:option to execute simple SQL queries


Geometry Functions:

Bug: Functions line merge and line sequence don't work (output similar 
to input)
Function polygonize gives only result on line strings with the same 
start and end point.

Can anyone explain the 'mask must contain only one geometry' stuff for 
the functions where mask is required?

Enhancement:combine the functions in the spatial query dialogue

Calculate areas and length:

Enhancement:

Include tool to load y,x,z coordinates from points into attributes

Generate Buffer:

Enhancement:
The Buffer function in the 'Geometry Functions' keeps the attributes but 
has no endcap option;  combination would be fine

Create Thiessen polygons:

Enhancement:
Option to read height from attributes
port Delaunay triangulation from PIROL Project (also with read height 
attribute option)

Convex hull:

port the 'generate borderline' function from PIROL as an additional option

Polygonize: no comments from my side

Extract segments: I don't understand this tool

Precision reducer:
Enhancement: create new layer for result

Affine Transformation: not tested (also the Warping tool)

Validate selected Layers:
Enhancement:check for duplicate elements. (maybe use a reverse version 
of the 'calculate geometry difference' function)
Zoom to errors step by step

calculate geometry difference: no comments from my side

Transfer attributes:

this tool doesn't shows any reaction

port tools from other projects:

Attribute grabber from Pirol Project


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Toggle Visibility was broken

2007-08-21 Thread Stefan Steiniger
mhm.. a forum..

i never thought about that. Can you explain what do you mean by forum? 
It is not a wiki?

btw. i think Sourceforge provides a forum per project

upps.. i just saw that Larry send a link on an example forum

@Paul: I/we use bug tracker and feature request on sourceforge.. (but 
mostly developers do use them)

stefan

Larry Becker schrieb:
> Hi,
> 
>   I would make a distinction between bugs that reduce usability and
> those where a feature is totally non-functional.  If we have features
> that are non-functional, they should be fixed immediately or removed.
> 
>   However, Uwe makes a good point about non-English speakers having
> nowhere to go for support. An email contact is one solution, however
> it has the disadvantage of depending on one person to be responsible
> for a language.  Perhaps a multilingual web forum would also solve
> this problem.  I manage a couple of forums and they are fairly easy to
> set up.  I can look for a place to host it if everyone likes the idea.
> 
>   I have always thought that we need to encourage more participation
> by JUMP users.  Unfortunately, the jump-users list discussions were
> dominated early on by developers.  The jump-pilot-devel list has
> helped with that problem, but now the jump-users list seems to be
> mostly quiet.  I think that most casual users of OpenJump are put off
> by the effort it takes to monitor discussion lists, and that they
> would be more likely to participate in a forum where they can search
> for solutions or post a question (hopefully in their own language).
> 
> regards,
> Larry Becker
> 
> On 8/16/07, Uwe Dalluege <[EMAIL PROTECTED]> wrote:
>> Hi,
>>
>> the problem is not to find an bug, the problem is to fix it
>> because we all have less time.
>>
>> The "normal user" can find bugs but I think it is
>> a problem for not English-speaken people to report a bug.
>>
>> So my suggestion:
>>
>> We need on the OpenJUMP page
>> http://openjump.org/wiki/show/HomePage
>>
>> a link where people can send a mail in
>> there national language
>> Maybe one e-mail address for each language.
>> The person behind this e-mail-address
>> test this error, translate it to English and put it to the bug-tracker.
>>
>> If you like, after my vacation,  I can  take the German-part of this job.
>>
>> Regards,
>>
>> Uwe
>>
>> Stefan Steiniger schrieb:
>>> Hei,
>>>
>>> but in general Larry is right.. we should sarch for testers
>>>
>>> most of the errors are reported by the same people.
>>>
>>> stefan
>>>
>>> Uwe Dalluege schrieb:
>>>> Hi Larry,
>>>>
>>>> you wrote:
>>>>
>>>>> This (and the problem with Image Layres) raises the question, "Is
>>>>> anyone besides the developers testing and reporting bugs?"
>>>> Please have a look at this side:
>>>>
>>>> http://sourceforge.net/tracker/?atid=679906&group_id=118054&func=browse
>>>>
>>>> Regards,
>>>>
>>>> Uwe
>>>>
>>>> --
>>>>
>>>> HafenCity Universitaet Hamburg
>>>> Department Geomatik
>>>> Rechenzentrum
>>>> Dipl.-Ing. Uwe Dalluege   :-)
>>>> Hebebrandstr. 1
>>>> 22297 Hamburg
>>>> Tel.: +49 40 42827 - 5335 oder 5353 oder 5313
>>>> Fax:  +49 40 42827 - 5409
>>>> E-Mail: mailto:[EMAIL PROTECTED]
>>>> Url: http://www.hcu-hamburg.de/geomatik/
>>>> --
>>>>
>>>>
>>>>
>>>>
>>>> Larry Becker schrieb:
>>>>> I just found and fixed a problem with the Toggle Visibility Layer Name
>>>>> popup menu item.  It was totally nonfunctional.  I wonder how long it
>>>>> has been broken.
>>>>>
>>>>> This (and the problem with Image Layres) raises the question, "Is
>>>>> anyone besides the developers testing and reporting bugs?"  We need to
>>>>> recruit some testers.  Perhaps an announcement on SourceForge where
>>>>> some of the 100 people downloading OpenJump per day might see it.
>>>>> Something like:
>>>>>
>>>>> "Software testers needed on project OpenJump.  All you have to do is
>>>>> use OpenJump and report any bugs you find using the Source

Re: [JPP-Devel] [jump-users] GDBMS and CAD support

2007-08-21 Thread Stefan Steiniger
Hi Peppe,

yep.. support via a plugin would be nice. I have never worked with xml 
stuff.. so i can also not comment how hard it would be to inlcude the 
jump stuff.
I think making a plugin for GDMS is a matter of time.

stefan

Giuseppe Aruta schrieb:
> Hi erwan bocher 
> 
> I will post the mails about GDBMS and CAD also in OJ
> DEVEL mail list since it seems to me interesting,
> 
> Regards
> 
> 
> Peppe
> 
> 
>   ___ 
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
> http://it.docs.yahoo.com/nowyoucan.html
> ___
> jump-users mailing list
> [EMAIL PROTECTED]
> http://lists.refractions.net/mailman/listinfo/jump-users
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Language policies

2007-08-21 Thread Stefan Steiniger
Hei Peppe,

an Italian translation was proposed by Ugo in winter - i think he asked 
some friend or customer. But until now we did not hear again and Ugo is 
currently working on other things. But if you think you can help to do 
the translation it would be great.

Brazilian Portugese was done by Ugo
and Spanish by Nacho Uve

stefan

Giuseppe Aruta schrieb:
> --- Sunburned Surveyor <[EMAIL PROTECTED]>
> ha scritto:
> 
> On OJ web page
> http://openjump.org/wiki/show/Todo+before+shipping+next+release
> it bis written that OJ Portuguese, Spanish and Italian
> are "in progress". 
> I do not know who is working on those languages, but
> probabily the people who took care of these languiage
> can subdivide the work in sub-ones and ask help to
> other OJ DEVEL members.
> We can create "groups" of translators for each
> language left.
> I probabily can give an help on Italian  (in the
> winter) (Who tooks care about Italian?)
> There must be more Spanish  and Brasilian Users that
> can help
> 
> peppe
> 
> 
> 
>> Would it be better to see if we can get a volunteer
>> translator for
>> each language we want to support in OpenJUMP and
>> coordinate with them
>> to maintain the properties files for each language
>> when new entries
>> are made?
>>
>> I wonder if this system would be better than
>> "half-supported"
>> languages in OpenJUMP.
>>
>> I can see if my best friend could help me with the
>> Spanish file.
>>
>> The Sunburned Surveyor
>>
>> On 8/16/07, Michaël Michaud
>> <[EMAIL PROTECTED]> wrote:
>>> I can tell you what Stefan answered to me after I
>> asked the same question :
>>> add the key and the english value in every file
>> and replace the value by
>>> an appropriate translation where you can
>>>
>>> As I modified I18N original code, I can add that
>> the normal behaviour of
>>> jump should be :
>>> - if a key in a specific language file is not
>> found, jump should use the
>>> one in jump.properties
>>> - if the key does not exist in any file, OpenJUMP
>> should use the last
>>> part of the key (after a split(".")) as the string
>> value
>>> Michaël
>>>
>>> Paul Austin a écrit :
>>>
 What's the policy related to adding new I18N
>> entries to the properties
 file. Do I just add the entries with the English
>> to each file and hope
 that someone does a translation at some point?

 Paul

>> -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find
>> problems?  Stop.
 Now Search log events and configuration files
>> using AJAX and a browser.
 Download your FREE copy of Splunk now >> 
>> http://get.splunk.com/
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel



>>>
>>>
> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?
>>  Stop.
>>> Now Search log events and configuration files
>> using AJAX and a browser.
>>> Download your FREE copy of Splunk now >> 
>> http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>>
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems? 
>> Stop.
>> Now Search log events and configuration files using
>> AJAX and a browser.
>> Download your FREE copy of Splunk now >> 
>> http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>>
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 
> 
>   ___ 
> L'email della prossima generazione? Puoi averla con la
> nuova Yahoo! Mail: http://it.docs.yahoo.com/nowyoucan.html
> 
> 
>   ___ 
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
> http://it.docs.yahoo.com/nowyoucan.html
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping

Re: [JPP-Devel] OJN 1.2D: Error with Rename Selected Layer

2007-08-21 Thread Stefan Steiniger
mhm.. what if you don't use "layerable" but "layer" instead?

checkFactory.createAtLeastNLayersMustBeSelectedCheck(n)

stefan

Andreas Schmitz schrieb:
> Uwe Dalluege wrote:
> 
> Hi,
> 
>> there is an error with Layer>Rename Selected Layer... :
>>
>> 1. Select a layer with leftclick.
>> 2. Layer>Rename Selected Layer...
>> 3. Click on the Cancel-Button in the dialog-window.
>> 4. Error:
> 
> ok, this is fixed.
> 
> I noted another problem, however. The enable check I used is
> 
> enableCheck = new MultiEnableCheck();
> enableCheck.add(enableCheckFactory
>.createWindowWithLayerManagerMustBeActiveCheck());
> enableCheck
>.add(enableCheckFactory
>.createExactlyNLayerablesMustBeSelectedCheck(1,
>Layerable.class));
> 
> Somehow, the menu item is still enabled when clicking on categories,
> it's also enabled when starting OJ.
> 
> Regards, Andreas

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Language policies

2007-08-21 Thread Stefan Steiniger
upps..  small mistake:

brazialian portugese was done by Cristiano Almeida

Stefan Steiniger schrieb:
> Hei Peppe,
> 
> an Italian translation was proposed by Ugo in winter - i think he asked 
> some friend or customer. But until now we did not hear again and Ugo is 
> currently working on other things. But if you think you can help to do 
> the translation it would be great.
> 
> Brazilian Portugese was done by Ugo
> and Spanish by Nacho Uve
> 
> stefan
> 
> Giuseppe Aruta schrieb:
>> --- Sunburned Surveyor <[EMAIL PROTECTED]>
>> ha scritto:
>>
>> On OJ web page
>> http://openjump.org/wiki/show/Todo+before+shipping+next+release
>> it bis written that OJ Portuguese, Spanish and Italian
>> are "in progress". 
>> I do not know who is working on those languages, but
>> probabily the people who took care of these languiage
>> can subdivide the work in sub-ones and ask help to
>> other OJ DEVEL members.
>> We can create "groups" of translators for each
>> language left.
>> I probabily can give an help on Italian  (in the
>> winter) (Who tooks care about Italian?)
>> There must be more Spanish  and Brasilian Users that
>> can help
>>
>> peppe
>>
>>
>>
>>> Would it be better to see if we can get a volunteer
>>> translator for
>>> each language we want to support in OpenJUMP and
>>> coordinate with them
>>> to maintain the properties files for each language
>>> when new entries
>>> are made?
>>>
>>> I wonder if this system would be better than
>>> "half-supported"
>>> languages in OpenJUMP.
>>>
>>> I can see if my best friend could help me with the
>>> Spanish file.
>>>
>>> The Sunburned Surveyor
>>>
>>> On 8/16/07, Michaël Michaud
>>> <[EMAIL PROTECTED]> wrote:
>>>> I can tell you what Stefan answered to me after I
>>> asked the same question :
>>>> add the key and the english value in every file
>>> and replace the value by
>>>> an appropriate translation where you can
>>>>
>>>> As I modified I18N original code, I can add that
>>> the normal behaviour of
>>>> jump should be :
>>>> - if a key in a specific language file is not
>>> found, jump should use the
>>>> one in jump.properties
>>>> - if the key does not exist in any file, OpenJUMP
>>> should use the last
>>>> part of the key (after a split(".")) as the string
>>> value
>>>> Michaël
>>>>
>>>> Paul Austin a écrit :
>>>>
>>>>> What's the policy related to adding new I18N
>>> entries to the properties
>>>>> file. Do I just add the entries with the English
>>> to each file and hope
>>>>> that someone does a translation at some point?
>>>>>
>>>>> Paul
>>>>>
>>> -
>>>>> This SF.net email is sponsored by: Splunk Inc.
>>>>> Still grepping through log files to find
>>> problems?  Stop.
>>>>> Now Search log events and configuration files
>>> using AJAX and a browser.
>>>>> Download your FREE copy of Splunk now >> 
>>> http://get.splunk.com/
>>>>> ___
>>>>> Jump-pilot-devel mailing list
>>>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>>>
>>>>>
>>>>
>> -
>>>> This SF.net email is sponsored by: Splunk Inc.
>>>> Still grepping through log files to find problems?
>>>  Stop.
>>>> Now Search log events and configuration files
>>> using AJAX and a browser.
>>>> Download your FREE copy of Splunk now >> 
>>> http://get.splunk.com/
>>>> ___
>>>> Jump-pilot-devel mailing list
>>>> Jump-pilot-devel@lists.sourceforge.net
>>>>
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems? 
>>> Stop.
>>> Now Search

Re: [JPP-Devel] Java Update = OpenJUMP Chokes?

2007-08-21 Thread Stefan Steiniger
sometimes the startup screen freezes if something with the plugin 
initialization isn't correct.
But then also an error message should appear.

stefan

Sunburned Surveyor schrieb:
> I was trying to track down another Null Pointer Exception in my
> pluggable rendering code when a funny thing happened. My build of
> OpenJUMP seemed to freeze on startup, after the splash screen
> displayed.
> 
> So I figured I must have inadvertently created an infinite loop or
> some other mistake in my code. I spent an hour or so looking for the
> culprit yesterday, but didn't find it. I finally decided to try a
> fresh build of the SVN and I got the same problem. So I tired a
> nightly build from a few nights ago and I got the same problem.
> 
> The only way to terminate OpenJUMP is with the task manager in
> Windows. I notice while there that the javaw.exe process was consuming
> 50% of my CPU resources.
> 
> Is there something going on with a recent build of OpenJUMP, or am I
> going crazy? Can anyone else verify the startup time for OJ on a
> Windows XP machine?
> 
> Could this be a problem caused by a recent Java update?
> 
> The Sunburned Surveyor
> 
> P.S. - I just downloaded the 1.2 D build and had the same problem.
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Mouse wheel zoom

2007-08-21 Thread Stefan Steiniger
ok.. i just tested a bit..
and i think it is ok using the mouse center as zoom center.. it goes 
slow, so that one does not recognize it realy.

cool work.. and also the new zoom tool

stefan

Stefan Steiniger schrieb:
> I know.. very late (over the weekend i have been on an openair)
> 
> but if i could choose, i would prefer a "mouse-center-zoom" with an 
> activated key (such as ctrl).
> 
>  From my point of view "Google" is not a reference, although they have 
> some pretty nice usability stuff. But we should not miss that our target 
> user group are GIS people. So we may also go conform with the general 
> functionality in GIS.
> At least i can imagine that having a zoom-in-out without a change of the 
> center position may be useful as well during digitizing (but one can 
> also claim the opposite ;)
> 
> maybe - we need to make a user-survey on that? but let me first try a 
> few days with the mouse-center version.
> 
> my 2 cents
> stefan
> 
> Larry Becker schrieb:
>> Well, I guess I'll commit the change on the strength or Paul and
>> Sunburn's recommendation.  We can always back out the change if we
>> don't like it.
>>
>> Larry
>>
>> On 8/17/07, Larry Becker <[EMAIL PROTECTED]> wrote:
>>> Hi Paul,
>>>
>>>   Some of the functionality you are talking about is already present
>>> in my new ZoomRealTime tool, which pans and zooms continuously in real
>>> time.  Perhaps I should port it over (it just needs
>>> internationalization) before doing any more tweaks to Mouse Wheel
>>> Zoom, which I thought was pretty cool when I first got it working, but
>>> now seems a little tired in comparison with ZoomRealTime.
>>>
>>> I do agree that your #2 is more useful, now that I have tried it.
>>> I'll wait for more feedback from others before committing the change.
>>>
>>> regards,
>>> Larry
>>>
>>>
>>>
>>> On 8/17/07, Paul Austin <[EMAIL PROTECTED]> wrote:
>>>> Hi Larry,
>>>>
>>>> Normally I hate people messing with my mouse pointer but in this case I
>>>> would find it useful.
>>>>
>>>> Here are the three options for mouse wheel zooming that I see.
>>>>
>>>>1. Zoom in and out of the current viewport center (not that useful in
>>>>   my view).
>>>>2. Zoom in and out at the current mouse location (google maps does
>>>>   this) (default option)
>>>>3. Zoom in and out of the current mouse location but center the
>>>>   viewport and mouse pointer at that location (advanced option while
>>>>   holding down the shift key)
>>>>
>>>> Another thing I'd like to see is an integrated pan and zoom mode, where
>>>> if you double click it zooms but when you drag it pans, much like google
>>>> maps does. This could be integrated into the current pan tool. I'd still
>>>> like the BBOX zoom functionality from the zoom tool.
>>>>
>>>> Paul
>>>>
>>>> -
>>>> This SF.net email is sponsored by: Splunk Inc.
>>>> Still grepping through log files to find problems?  Stop.
>>>> Now Search log events and configuration files using AJAX and a browser.
>>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>>> ___
>>>> Jump-pilot-devel mailing list
>>>> Jump-pilot-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>>
>>> --
>>> http://amusingprogrammer.blogspot.com/
>>>
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I18n: indian languages

2007-08-22 Thread Stefan Steiniger
Jei Jitendra,

on the openjump wiki I have tried to describe the steps to make a local 
language version of OpenJUMP:

http://openjump.org/wiki/show/How+to+translate+OpenJUMP+into+another+language

you need to read part A and B.
If it works succesfully, send me the language files and i will add them 
to our source-code repository

if you have further questions, don't hesitate to write us - preferably 
using the list ;)

stefan


[EMAIL PROTECTED] wrote:

>I have mentored a volunteer cum student group .We are a group interested in 
>localization of gis and would lije to check the feasibility of localising 
>openjump.
>Hence request to initiate a hindi and marathi version with instruction to make 
>interface and messages local.
>Pl realise that indic font that are pooular though not standard are opentype 
>which are unicode based and not just utf8 but have inbuilt program for 
>rendering "complex" I.e. Context sensitive , text.
>We are on the job of localising xwiki.
>See www.indictrans.in
>Jitendra
>
>Sent from BlackBerry® on Airtel
>-
>This SF.net email is sponsored by: Splunk Inc.
>Still grepping through log files to find problems?  Stop.
>Now Search log events and configuration files using AJAX and a browser.
>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>___
>Jump-pilot-devel mailing list
>Jump-pilot-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I18n: indian languages

2007-08-22 Thread Stefan Steiniger
Hei,

I am not sure what we can do (assuming that your Java usually displays 
hindi letters). I also assume, that it is an encoding problem.
Can you send the language file to me or the list for testing?

I send a copy to the user list, maybe some other person has some idea

stefan

Btw. you  do not need to say "Sir" on the list ;)

yogesh somvanshi wrote:

> Hello sir,
>
> i have followed all step mention in link 
> http://openjump.org/wiki/show/How+to+translate+OpenJUMP+into+another+language.
>
> But there is problem to see the font.
>
> we also give command  " export LANG=hi_IN.utf8 ".
>
> we create file for Hindi language form jump_pt_BR.properties, 
> hi_IN.properties.Then pack all the  of the previously extracted zip 
> file to a new .zip
>
> which has the same name as the old.
>
> rename the just packed file .zip to .jar.
>
> copy it in the same location as the old .jar
>
> tThen started open jump .But in open jump it not show that menu that 
> we change .
>
> we also send you snap shot of openjump.
>
> plz check attachment .
>
> On 8/22/07, *Swapnil Hajare* <[EMAIL PROTECTED] 
> <mailto:[EMAIL PROTECTED]>> wrote:
>
>
>
> -- Forwarded message --
> From: *Stefan Steiniger* <[EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>>
> Date: Aug 22, 2007 2:58 PM
> Subject: Re: [JPP-Devel] I18n: indian languages
> To: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>, "List for
> discussion of JPP development and use." <
> jump-pilot-devel@lists.sourceforge.net
> <mailto:jump-pilot-devel@lists.sourceforge.net>>
> Cc: Swapnil Hajare <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>,
> Darshana Pathak < [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>>
>
> Jei Jitendra,
>
> on the openjump wiki I have tried to describe the steps to make a
> local
> language version of OpenJUMP:
>
> 
> http://openjump.org/wiki/show/How+to+translate+OpenJUMP+into+another+language
>
> you need to read part A and B.
> If it works succesfully, send me the language files and i will add
> them
> to our source-code repository
>
> if you have further questions, don't hesitate to write us - preferably
> using the list ;)
>
> stefan
>
>
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> wrote:
>
> >I have mentored a volunteer cum student group .We are a group
> interested in localization of gis and would lije to check the
> feasibility of localising openjump.
> >Hence request to initiate a hindi and marathi version with
> instruction to make interface and messages local.
> >Pl realise that indic font that are pooular though not standard
> are opentype which are unicode based and not just utf8 but have
> inbuilt program for rendering "complex" I.e. Context sensitive , text.
> >We are on the job of localising xwiki.
> >See www.indictrans.in <http://www.indictrans.in>
> >Jitendra
> >
> >Sent from BlackBerry® on Airtel
> >- --
> --
> >This SF.net email is sponsored by: Splunk Inc.
> >Still grepping through log files to find problems?  Stop.
> >Now Search log events and configuration files using AJAX and a
> browser.
> >Download your FREE copy of Splunk now >>   http://get.splunk.com/
> >_ __
> >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
> >
> >
> >
> >
>
>
>
> -- 
> Swapnil Hajare
> blog: dreamil.indictrans.in <http://dreamil.indictrans.in> 
>
>
>
> 
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Vista Look and Feel

2007-08-22 Thread Stefan Steiniger
mhm.. as you reported a problem before on comboboxes..
it sounds like vista is a new challange for Sun (Java).

Maybe we wait for a new java release since microsoft is setting up 
standards as they want... i know it is a stupid comment

stefan

PS: I really consider to switch from win to linux in about 1-2 years, 
thus avoiding to ever use Win Vista. most of the opensource satuff seems 
mature to go that way


Uwe Dalluege wrote:

>Hi,
>
>under Windows Vista I have view-problems with some
>combo-boxes!
>
>For example:
>
>1. Tools>Generate>Buffer...
>2. The text of the Layer-ComboBox is not visible!
>
>Also with all Query-tools!
>
>Regards,
>
>Uwe
>
>-
>This SF.net email is sponsored by: Splunk Inc.
>Still grepping through log files to find problems?  Stop.
>Now Search log events and configuration files using AJAX and a browser.
>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>___
>Jump-pilot-devel mailing list
>Jump-pilot-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Open Recent Project Plugin

2007-08-22 Thread Stefan Steiniger
mhm.. you don't  have write access?
but you should have ;) There are no restrictions, as far as I know.

stefan

Larry Becker wrote:

>I'll be glad to help keep it up if I can get write access to the wiki.
>
>Right now I'm working through the wiki page on OpenJump-SkyJUMP 
>synchronization:
>http://openjump.org/wiki/show/SkyJUMP+-+OpenJUMP+Synchronization
>
>Larry Becker
>
>On 8/22/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
>  
>
>>This is awesome Larry.
>>
>>I was wondering if we might start a quick page on the wiki to track
>>new functionality in OpenJUMP that needs to be documented. I think
>>this would help Peppe and I in our documentation efforts.
>>
>>Note that this would be different from the Change Log for programmers.
>>
>>Would anyone have a problem with adding this to the OpenJUMP wiki.
>>
>>The Sunburned Surveyor
>>
>>On 8/22/07, Michaël Michaud <[EMAIL PROTECTED]> wrote:
>>
>>
>>>Thanks for the french translation
>>>
>>>We generally use something like :
>>>"Derniers projets utilisés"
>>>
>>>Note that in french, we don't use to capitalize all the words in
>>>menus... (it reminds me a recent and interseting discussion :-) )
>>>
>>>Thanks for all the improvements
>>>
>>>Michaël
>>>
>>>Larry Becker a écrit :
>>>
>>>  
>>>
Added an "Open Recent Project" submenu to the File menu that will
remember the last 8 tasks opened.  Tentative translations were made
for French, German, and Spanish.

In trying out various translations I had trouble deciding between, for
example (in French)

Ouvrir Des Projets Récents  (To open Recent Projects)

Projets Récemment Ouverts (Recently Open Projects)

I decided on the later, but would appreciate any insight on the
preferred form of menu commands in various languages.  In English, we
almost always go with "verb noun" or "verb adjective noun".

regards,
Larry Becker




>>>-
>>>This SF.net email is sponsored by: Splunk Inc.
>>>Still grepping through log files to find problems?  Stop.
>>>Now Search log events and configuration files using AJAX and a browser.
>>>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>>___
>>>Jump-pilot-devel mailing list
>>>Jump-pilot-devel@lists.sourceforge.net
>>>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>  
>>>
>>-
>>This SF.net email is sponsored by: Splunk Inc.
>>Still grepping through log files to find problems?  Stop.
>>Now Search log events and configuration files using AJAX and a browser.
>>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>___
>>Jump-pilot-devel mailing list
>>Jump-pilot-devel@lists.sourceforge.net
>>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>
>
>
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Open Recent Project Plugin

2007-08-22 Thread Stefan Steiniger
great ;)

and before i forget: Thanx for your contributions.
I suppose OJ 1.2 will be a promising release. Maybe we should just 
switch to 1.3 :o)
(but on the other hand I may never reach to get all the issues solved 
for a final release .. so we will always end-up with OJ beta-delta 
versions ;)

 will check out the forum thing on the weekend - i hope
(puhh.. today rank 164 on SF.. but still pretty good thanx to your's and 
Michaels work)

stefan

PS: I am actually wondering if we may release a seperate jython plugin? 
But we also need to thin about how to organize the external plugins. 
Michael proposed to make a new project. While i could imagine that too.. 
it may be another way to start setting up an new xoops on the SF website 
space.

Larry Becker wrote:

>Hi Stefan,
>
>   You're right.  Now that I have located the Edit button, I can make
>changes. 8-)
>
>thanks,
>Larry
>
>On 8/22/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>  
>
>>mhm.. you don't  have write access?
>>but you should have ;) There are no restrictions, as far as I know.
>>
>>stefan
>>
>>Larry Becker wrote:
>>
>>
>>
>>>I'll be glad to help keep it up if I can get write access to the wiki.
>>>
>>>Right now I'm working through the wiki page on OpenJump-SkyJUMP 
>>>synchronization:
>>>http://openjump.org/wiki/show/SkyJUMP+-+OpenJUMP+Synchronization
>>>
>>>Larry Becker
>>>
>>>On 8/22/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
>>>
>>>
>>>  
>>>
>>>>This is awesome Larry.
>>>>
>>>>I was wondering if we might start a quick page on the wiki to track
>>>>new functionality in OpenJUMP that needs to be documented. I think
>>>>this would help Peppe and I in our documentation efforts.
>>>>
>>>>Note that this would be different from the Change Log for programmers.
>>>>
>>>>Would anyone have a problem with adding this to the OpenJUMP wiki.
>>>>
>>>>The Sunburned Surveyor
>>>>
>>>>On 8/22/07, Michaël Michaud <[EMAIL PROTECTED]> wrote:
>>>>
>>>>
>>>>
>>>>
>>>>>Thanks for the french translation
>>>>>
>>>>>We generally use something like :
>>>>>"Derniers projets utilisés"
>>>>>
>>>>>Note that in french, we don't use to capitalize all the words in
>>>>>menus... (it reminds me a recent and interseting discussion :-) )
>>>>>
>>>>>Thanks for all the improvements
>>>>>
>>>>>Michaël
>>>>>
>>>>>Larry Becker a écrit :
>>>>>
>>>>>
>>>>>
>>>>>  
>>>>>
>>>>>>Added an "Open Recent Project" submenu to the File menu that will
>>>>>>remember the last 8 tasks opened.  Tentative translations were made
>>>>>>for French, German, and Spanish.
>>>>>>
>>>>>>In trying out various translations I had trouble deciding between, for
>>>>>>example (in French)
>>>>>>
>>>>>>Ouvrir Des Projets Récents  (To open Recent Projects)
>>>>>>
>>>>>>Projets Récemment Ouverts (Recently Open Projects)
>>>>>>
>>>>>>I decided on the later, but would appreciate any insight on the
>>>>>>preferred form of menu commands in various languages.  In English, we
>>>>>>almost always go with "verb noun" or "verb adjective noun".
>>>>>>
>>>>>>regards,
>>>>>>Larry Becker
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>-
>>>>>This SF.net email is sponsored by: Splunk Inc.
>>>>>Still grepping through log files to find problems?  Stop.
>>>>>Now Search log events and configuration files using AJAX and a browser.
>>>>>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>>>>___
>>>>>Jump-pilot-devel mailing list
>>>>>Jump-pilot-devel@lists.sourceforge.net
>>>>>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>>>
>

Re: [JPP-Devel] OpenJUMP release 1.2 D

2007-08-22 Thread Stefan Steiniger
Hei Larry,

thanx for your clarification. i always mixup installer and launcher.

I even uploaded a new installer that allows canceling/skipping the java 
installation (but i dont know how yet how to replace "cancel" by "skip").
I hope the installation works now as it should.

stefan

Larry Becker schrieb:
> Hi Stefan,
> 
>   I guess I need to correct the misconception that OJ should use
> SkyJUMP's installer.  It use the commercial software Wise
> (www.wise.com), which is OK but nothing special.  What would be a good
> idea is using SkyJUMP's launcher, since it is based on Eclipse.  It
> would simply be a replacement for /bin/OpenJump.exe.  However there is
> some work to do before SkyJUMP's launcher would work on platforms
> other than Windows.
> 
>   Anyway, I  think that the installer you are using is probably
> adequate for the task.  There just needs to be some way to skip the
> Java download and install.
> 
> regards,
> Larry
> 
> On 8/21/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>> Hi Larry,
>>
>> mhm.. i could try it next weekend. I used the null-soft installer for
>> now (i got some very simple script) but want to later use yours for the
>> next releases.
>> Anyways it is interesting that is does not detect that you have 1.5
>> installed. (probably it is not set to default)
>>
>> stefan
>>
>> Larry Becker schrieb:
>>> Hi Stefan,
>>>
>>>   I tried the Setup-openjump12d.exe (nice looking installer), but I
>>> couldn't get past the "OpenJump uses Java 1.5, it will now be
>>> downloaded and installed" prompt.  I don't want to download since I
>>> already have Java 1.5 and Java 1.6 installed.  Can you make this step
>>> optional?
>>>
>>> regards,
>>> Larry Becker
>>>
>>> On 8/20/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
>>>> Dear OpenJUMP users,
>>>>
>>>> after shipping the OpenJUMP 1.2 C prerelease we discovered a major bug
>>>> that prevented the loading of raster images. We could fix that bug last
>>>> week (thanx to Larry B.) and present as an additional feature of
>>>> OpenJUMP 1.2 D mouse wheel zooming capability.
>>>>
>>>> please feel free to download the new stable version OJ 1.2D from
>>>> sourceforge:
>>>>
>>>> http://sourceforge.net/project/showfiles.php?group_id=118054
>>>>
>>>> I am sorry to those, that already downloaded and installed the buggy
>>>> version 1.2C
>>>>
>>>> stefan
>>>>
>>>>
>>>> PS: A note on a known issue of raster image display: When one tries to
>>>> load large raster images (much larger than 1000x1000pixel), OpenJUMP may
>>>> fail to display the image without delivering an "out-of-memory" error
>>>> message.
>>>> ___
>>>> jump-users mailing list
>>>> [EMAIL PROTECTED]
>>>> http://lists.refractions.net/mailman/listinfo/jump-users
>>>>
>>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Anyone working on LabelStyle

2007-08-23 Thread Stefan Steiniger
Hei Geoff,

at some point we definitevly need to port your adhancements to the core.
But up to now I was not sure if you want that (for maintenance reasons)

stefan

Larry Becker schrieb:
> Hi Geoff,
> 
>I've played around with offset distance and HTML formatting on
> labels too.  Perhaps we'll get there.  I am changing the code base a
> little at a time to judge the response and keep backward compatibility
> with project files.
> 
> regards,
> Larry Becker
> 
> On 8/23/07, Geoffrey G Roy <[EMAIL PROTECTED]> wrote:
>> Dear Larry
>>
>> I am pleased to see an interest in improving the label style.  In my
>> vertexsymbol plugin I have created an additional label option that has a
>> range of formatting options, like centre, and 8 compass positions from
>> the vertex.  It is also possible to set the offset distance (in my case
>> to match the vertex symbol size, or manually).  I have also provided an
>> option to allow (HTML) formatted text to make String type labels more
>> interesting.
>>
>> ---  These are just thoughts for the built-in label style.  It would be
>> good to see these type of capabilities available in the core.
>>
>> Geoff
>>
>>
>> Larry Becker wrote:
>>> I'm going to be making some major improvements to the Label Style.  Is
>>> anyone else working in this area?
>>>
>>> The improvements will be:
>>>
>>> 1. Support for halo text.  A halo is a surrounding outline in a
>>> contrasting color to improve readability when using a mixed dark and
>>> light background such as raster images.
>>>
>>> 2. Support for hiding text below a specified scale.  This makes it
>>> possible to stop text from rendering when zoomed out too far to
>>> actually read, but still display the geometry.
>>>
>>> 3.  Support for horizontal alignment of text. (Left, Center, and Right 
>>> justify)
>>>
>>> regards,
>>> Larry Becker
>>>
>> --
>> Dr Geoffrey G Roy
>> Cadplan
>> 129 Gloster Street, Subiaco WA 6008
>> Tel: (08) 9381 4870  Fax: (08) 9382 4459
>> Email: [EMAIL PROTECTED]
>> http://www.cadplan.com.au
>>
>>
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] New OpenFile plugin

2007-08-23 Thread Stefan Steiniger
> 
> 2. FileDataSourceQueryChooser that register with the
> DataSourceQueryChooserManager will automatically get added. The only one
> caveat is that I have no way to automatically get the options panel
> fields if one is defined for that type. Other than GML can you think of
> any plugins that require options?

not sure.. but database connections need options - i think (see postgis 
plugin from Uwe on sourceforge, i.e. the one that can also write back)
I think one can change this, but i don't know if other people developes 
other plugins.. i.e. for raster files the Pirol-Image plugin should be 
checked.

just some thoughts.. i haven't checked any of those - so i may be wrong

stefan

> 
> List loadChoosers =
> DataSourceQueryChooserManager.get(workbenchContext.getBlackboard()).getLoadDataSourceQueryChoosers();
> for (Object chooser : loadChoosers) {
> if (chooser instanceof FileDataSourceQueryChooser) {
> FileDataSourceQueryChooser fileChooser =
> (FileDataSourceQueryChooser)chooser;
> Class dataSourceClass = fileChooser.getDataSourceClass();
> String description = fileChooser.getDescription();
> List extensions =
> Arrays.asList(fileChooser.getExtensions());
> DataSourceFileLoader fileLoader = new
> DataSourceFileLoader(workbenchContext, null, description, extensions);
> registry.createEntry(FileLoader.KEY, fileLoader);
> }
> }
> 
> Paul
> 
> Stefan Steiniger wrote:
>> Yep.. sounds and looks interesting.
>>
>> but two questions/comments:
>>
>> - what about skiping any further dialog - e.g. if jml or shape files 
>> should be loaded without any reference system info necessary. Is that 
>> possible.
>>
>> - how can we integrate the external plugins that deliver functionality 
>> such as dxf, mif, or PostGIS support. The problem here is that 
>> everything needs still to be the same as previously.
>>
>> stefan
>>
>> Paul Austin schrieb:
>>   
>>> All,
>>>
>>> I have now implemented what I think should be the 'Open File...' menu 
>>> item in the File menu which will allow uses to open files and add them 
>>> as layers to the current Project.
>>>
>>> This first screen shot shows the first page of the wizard where you can 
>>> select the File type (or leave it as All Files) and then select one or 
>>> more files to load.
>>>
>>>
>>>
>>> If All files was selected as the file filter and one or more of the file 
>>> extensions could be loaded by more than one file loader (e.g. *.xml can 
>>> be loaded by the GML Loader and FME GML Loader) then the following 
>>> wziard panel will be displayed when you select the Next button on the 
>>> previous page. This will allow you to select which loader to use for 
>>> each extension.
>>>
>>>
>>>
>>> If you uncheck the Use the same Settings for say *.xml you can select 
>>> the specific loader to use for each file as shown below.
>>>
>>>
>>>
>>> Some file loaders have options (e.g. GML loader requires a template 
>>> file) if the loader has options these will be displayed on the next 
>>> wizard page. If no loaders have options then this page will not be 
>>> displayed. This is where we could add in options for the SRS ID to use 
>>> for the loaded data set. Options that are required will not allow the 
>>> finish button to be selected until a value is specified.
>>>
>>>
>>>
>>> Again if you uncheck the Use same setting for all XXX then you can 
>>> define the options on a per file basis as shown below.
>>>
>>>
>>>
>>> This new infrastructure also handles ZIP, GZ, tar and tar.gz, files by 
>>> looking at the contents of the zip file and finding the appropriate file 
>>> loader for that type of file. You can mix and match different types of 
>>> file in the zip file (e.g. TIF, SHP and GML) and each file will be loaded.
>>>
>>> The FileLoader interface (attached) is implemented by loaders that can 
>>> load a file from a URI. There are implementations to wrap the file 
>>> DataSource and file ReferencedImageFactory implementations so they can 
>>> be loaded using the new framework.
>>>
>>> The following code fragments show how these existing classes are wrapped
>>>
>>> DataSourceFileLoader gmlLoader = addStandardReaderWriterFileDataSource(
>>>   "GML 2.

Re: [JPP-Devel] About embedded help

2007-08-23 Thread Stefan Steiniger
Yep.. adding a help is necessary and we need to look how SIGLE (and 
Pirol?) has done that.

but i am not sure about the pdf option? Maybe i did not really 
understand how you mean it. Do you want to open a browser with a 
web-page, so that someone can download it.. or do you want an integrated 
pdf viewer.

i think, some older emails discussed also possibilities for a help 
system (they should be also stored). Anyway we can add a new menu entry 
when we now how to go on.

stefan

Giuseppe Aruta schrieb:
> Hi all,
> I have a sort of request/idea for a future development of OJ.
> I am writiung a small PDF doc with all the essentil things about OJ: 
> List of functions, tools, editing toolbox, Change style and attribute 
> value. I image that this doc could work as an embedded help if it is 
> possible to open it within OJ.
> The require is that OJ must have in the Help menu an extra submenu 
> ("like "open help" or similar) which simply opens the PDF.
> 1) The PDF could be internationalized
> 2) downloaded OJ won't have PDF embedded
> 3) we live the PDF on the web site, if people want to download it and 
> put in OJ folder
> 3) It helps the internationalization of the menus: we can only translate 
> the menus and submenus: people can search on help if they want to 
> understand the tools
>  
> Peppe
> 
> 
> 
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail 
> 
>  
> 
> 
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> 
> 
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Network Installation

2007-08-23 Thread Stefan Steiniger
Hei Uwe,

unfortunately i have no idea where to and how to do, maybe someone else...

stefan

Uwe Dalluege schrieb:
> Hi Larry,
> 
> thank you for your tip :-)
> But so I have to copy one file to 50 pc.
> If the openjump.bat file has changed I must copy again :-(
> It would be great to have an option inside the file where I can
> manage the temporary files OpenJUMP creates.
> 
> Greetings from Hamburg,
> 
> Uwe
> 
> Larry Becker schrieb:
>> Hi Uwe,
>>
>>Interesting use case.  I've searched OJ's code, but haven't found
>> anything similar the the -properties option for the
>> workbench-properties.xml file.  I could probably put in an option to
>> do that fairly easily.
>>
>> There is a work around that might work.  If you copy the openjump.bat
>> (or .sh) to each local pc and then customize the script to include the
>> path to the network location instead of ../, the workbench-state.xml
>> file will be created in the directory that you place the script file.
>>
>> Here is an example that I used to test this that is customized for my pc:
>>
>> set LIB=C:\OpenJump\openjump-20070731-0017/lib
>> set 
>> CLASSPATH=C:\OpenJump\openjump-20070731-0017/conf;%LIB%/bsh-2.0b4.jar;%LIB%/Buoy.jar;%LIB%/Jama-1.0.1.jar;%LIB%/jdom.jar;%LIB%/jts-1.7.2.jar;%LIB%/jump-workbench-20070731-0017.jar;%LIB%/jump-api-20070731-0017.jar;%LIB%/xercesImpl.jar;%LIB%/xml-apis.jar;%LIB%/xml-apis-ext.jar;%LIB%/log4j-1.2.8.jar;%LIB%/batik/batik-all.jar;%LIB%/jmat_5.0m.jar;%LIB%/ermapper.jar;%LIB%/jai_codec.jar;%LIB%/jai_core.jar;%LIB%/ext
>> REM Add extension directory to path, so extensions can put DLL's there
>> [Jon Aquino 2005-03-18]
>> set PATH=%PATH%;%LIB%/ext
>> start javaw -Dlog4j.configuration=file:./log4j.xml -Xms256M -Xmx256M
>> -cp %CLASSPATH% com.vividsolutions.jump.workbench.JUMPWorkbench
>> -properties workbench-properties.xml -plug-in-directory %LIB%/ext
>>
>> regards,
>> Larry
>>
>> On 8/23/07, Uwe Dalluege <[EMAIL PROTECTED]> wrote:
>>   
>>> Hi,
>>>
>>> we are using OpenJUMP with about
>>> 50 PC (50 users).
>>> So I have installed the bin and lib directory
>>> on a server one time and made a link
>>> from the openjump.bat file on every PC.
>>> OpenJUMP creates and change the file
>>> workbench-state.xml in the bin directory.
>>> So I can not use the network installation
>>> because every user would change this file!
>>> What will happen if 50 user starts OpenJUMP?
>>> Is it possible to configurate in openjump.bat
>>> the path to the workbench-stade.xml file?
>>>
>>> Regards,
>>>
>>> Uwe
>>>
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>> 
>>
>>   
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] need help for shifting tool

2007-08-23 Thread Stefan Steiniger
Hei Michael,

where do you picked up that email?
i realy don't get what he means?

stefan

Michaël Michaud schrieb:
> Hi,
> 
> I transfer your mail to Jump Pilot Project forum as there are more 
> people there to be able to give you help.
> Jump Pilot Project hosts OpenJUMP project which is a bit different from 
> kosmo.
> So you may want to post a feature request to kosmo team too.
> For OpenJUMP, the Feature Request list is here : 
> http://sourceforge.net/tracker/?atid=679909&group_id=118054&func=browse
> 
> Michaël
> 
> veer pal singh a écrit :
> 
>> Hi sir
>> I want to seperate the tool from "view/edit attribute" which contain 
>> some other
>> tools like
>> "zoom to next row"
>> "zoom to previous row"
>> "zoom to top row"
>> "zoom to bottum row"
>>  i have attached the file that to be need. also mention the place to 
>> be shift seperate tool. which contain
>> ("zoom to next row"
>> "zoom to previous row"
>> "zoom to top row"
>> "zoom to bottum row") options
>>
>>
>> thanks n regards
>> veer
>>
>> 
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] File format plugins

2007-08-23 Thread Stefan Steiniger
note: i will forward your email to the users and jump-devel list.

stefan

Paul Austin schrieb:
> MOEP is a format used by the BC government, not really that useful
> except for my client.
> 
> Paul
> 
> Michaël Michaud wrote:
>> Hi,
>>
>> Don't know if you want to count csv point file (Pirol)
>>
>> I also wrote a GeoConcept Reader/writer (see 
>> http://geo.michaelm.free.fr/ecrire/?exec=articles&id_article=4)
>> The MIF driver doesn't work anymore, but there is not much work to make 
>> it work...
>>
>> Please, what is MOEP ?
>>
>> Michaël
>>
>> Paul Austin a écrit :
>>
>>   
>>> Does anyone know of any file based readers and writers or Image plugins
>>> for JUMP not included in the following list?
>>>
>>> *Raster*
>>> ECW - Standard
>>> GeoTiff/Tiff + World - Standard
>>> JPG, PNG, JPG - Standard
>>> MrSID -Standard
>>>
>>> *Vector*
>>> ESRI Shapefile - Standard
>>> WKT - Standard
>>> FME GML - Standard
>>> GML 2.0 - Standard
>>> JUMP GML - Standard
>>>
>>> DXF - Michael
>>> MIF - Michael
>>> SAIF - Me
>>> MOEP - Me
>>>
>>>
>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>  
>>>
>>> 
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>   
> 
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] need help for shifting tool

2007-08-23 Thread Stefan Steiniger
aha..

and I guess I missed an email by Veer (...) seems really disappeared..
or I miss a list ;)

Michaël Michaud schrieb:
> Hi Stefan,
> 
> Veer started a discussion about tab format on the jump discussion list, 
> then he wrote to me directly to have more information.
> I think he uses kosmo, not jump, but there are not so many differences.
> What I understand is that he would like the buttons on the left side of 
> the table panel to be dockable in the main toolbar.
> I don't know if it makes sense because there may be several tables 
> attached to one task, but I also feel there is a problem when dealing 
> with tables and map at the same time.
> May be something like the dockable framework Paul showed us could 
> improve usability of the UI...
> 
> Michaël
> 
> Stefan Steiniger a écrit :
> 
>> Hei Michael,
>>
>> where do you picked up that email?
>> i realy don't get what he means?
>>
>> stefan
>>
>> Michaël Michaud schrieb:
>>  
>>
>>> Hi,
>>>
>>> I transfer your mail to Jump Pilot Project forum as there are more 
>>> people there to be able to give you help.
>>> Jump Pilot Project hosts OpenJUMP project which is a bit different from 
>>> kosmo.
>>> So you may want to post a feature request to kosmo team too.
>>> For OpenJUMP, the Feature Request list is here : 
>>> http://sourceforge.net/tracker/?atid=679909&group_id=118054&func=browse
>>>
>>> Michaël
>>>
>>> veer pal singh a écrit :
>>>
>>>
>>>
>>>> Hi sir
>>>> I want to seperate the tool from "view/edit attribute" which contain 
>>>> some other
>>>> tools like
>>>> "zoom to next row"
>>>> "zoom to previous row"
>>>> "zoom to top row"
>>>> "zoom to bottum row"
>>>> i have attached the file that to be need. also mention the place to 
>>>> be shift seperate tool. which contain
>>>> ("zoom to next row"
>>>> "zoom to previous row"
>>>> "zoom to top row"
>>>> "zoom to bottum row") options
>>>>
>>>>
>>>> thanks n regards
>>>> veer
>>>>
>>>> 
>>>>
>>>>  
>>>>
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>
>>>
>>>
>>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
>>  
>>
> 
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] File format plugins

2007-08-24 Thread Stefan Steiniger
Hei Paul,

Andreas from lat/lon told me that there are also the deegree shp and gml 
(3.0?) file adapters in deeJUMP

stefan

Stefan Steiniger schrieb:
> note: i will forward your email to the users and jump-devel list.
> 
> stefan
> 
> Paul Austin schrieb:
>> MOEP is a format used by the BC government, not really that useful
>> except for my client.
>>
>> Paul
>>
>> Michaël Michaud wrote:
>>> Hi,
>>>
>>> Don't know if you want to count csv point file (Pirol)
>>>
>>> I also wrote a GeoConcept Reader/writer (see 
>>> http://geo.michaelm.free.fr/ecrire/?exec=articles&id_article=4)
>>> The MIF driver doesn't work anymore, but there is not much work to make 
>>> it work...
>>>
>>> Please, what is MOEP ?
>>>
>>> Michaël
>>>
>>> Paul Austin a écrit :
>>>
>>>   
>>>> Does anyone know of any file based readers and writers or Image plugins
>>>> for JUMP not included in the following list?
>>>>
>>>> *Raster*
>>>> ECW - Standard
>>>> GeoTiff/Tiff + World - Standard
>>>> JPG, PNG, JPG - Standard
>>>> MrSID -Standard
>>>>
>>>> *Vector*
>>>> ESRI Shapefile - Standard
>>>> WKT - Standard
>>>> FME GML - Standard
>>>> GML 2.0 - Standard
>>>> JUMP GML - Standard
>>>>
>>>> DXF - Michael
>>>> MIF - Michael
>>>> SAIF - Me
>>>> MOEP - Me
>>>>
>>>>
>>>>
>>>> -
>>>> This SF.net email is sponsored by: Splunk Inc.
>>>> Still grepping through log files to find problems?  Stop.
>>>> Now Search log events and configuration files using AJAX and a browser.
>>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>>> ___
>>>> Jump-pilot-devel mailing list
>>>> Jump-pilot-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>>
>>>>
>>>>  
>>>>
>>>> 
>>> -
>>> This SF.net email is sponsored by: Splunk Inc.
>>> Still grepping through log files to find problems?  Stop.
>>> Now Search log events and configuration files using AJAX and a browser.
>>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>>> ___
>>> Jump-pilot-devel mailing list
>>> Jump-pilot-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>>   
>>
>>
>> -
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>>
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
> 
> 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] Network Installation

2007-08-24 Thread Stefan Steiniger
cool... :)

i did not know that there was already the blackboard variable 
"PersistenceDirectory" in JUMP
good to know now.

stefan

Uwe Dalluege wrote:

>Moin Andreas,
>
>great! Thank you!
>
>Regards,
>
>Uwe
>
>Andreas Schmitz schrieb:
>  
>
>>Uwe Dalluege wrote:
>>
>>Hello,
>>
>>  
>>
>>
>>>it is a good idea, to put the changing  files
>>>of OJ in the user's home directory!
>>>
>>>I don't know if the files jump.log and workbench-state.xml are the only
>>>changing files?
>>>
>>>  
>>>
>>the workbench-state.xml file (or the directory where to store it) can
>>now be specified with the -state parameter. In openjump.sh this is
>>already done and defaults to $HOME/.jump/ (like the
>>workbench-properties).
>>
>>The next nightly build should include the fix.
>>
>>Best regards, Andreas
>>  
>>
>>
>
>-
>This SF.net email is sponsored by: Splunk Inc.
>Still grepping through log files to find problems?  Stop.
>Now Search log events and configuration files using AJAX and a browser.
>Download your FREE copy of Splunk now >>  http://get.splunk.com/
>___
>Jump-pilot-devel mailing list
>Jump-pilot-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
>  
>


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] About embedded help

2007-08-25 Thread Stefan Steiniger
mhm..ok.. in understand. But i am not sure if i like the solution ;)

Actually i just got one idea: The wiki-pages can be exported to html 
(http://openjump.org/wiki/export) - but i have never tried it.
So what we could do is to attach your wiki pages with the distribution 
(which is even faster as making a new pdf)

stefan

Giuseppe Aruta wrote:

> What I think about help is only an option in the menu bar that only 
> opens a pdf help file (if this is present in the lib/ext or lib/doc 
> folder).
> People who want the help can downloid it separately and put in the folder.
> If the help pdf is not present the option doesn't work
>  
>  
> peppe
>
> */Stefan Steiniger <[EMAIL PROTECTED]>/* ha scritto:
>
> Yep.. adding a help is necessary and we need to look how SIGLE (and
> Pirol?) has done that.
>
> but i am not sure about the pdf option? Maybe i did not really
> understand how you mean it. Do you want to open a browser with a
> web-page, so that someone can download it.. or do you want an
> integrated
> pdf viewer.
>
> i think, some older emails discussed also possibilities for a help
> system (they should be also stored). Anyway we can add a new menu
> entry
> when we now how to go on.
>
> stefan
>
> Giuseppe Aruta schrieb:
> > Hi all,
> > I have a sort of request/idea for a future development of OJ.
> > I am writiung a small PDF doc with all the essentil things about
> OJ:
> > List of functions, tools, editing toolbox, Change style and
> attribute
> > value. I image that this doc could work as an embedded help if
> it is
> > possible to open it within OJ.
> > The require is that OJ must have in the Help menu an extra submenu
> > ("like "open help" or similar) which simply opens the PDF.
> > 1) The PDF could be internationalized
> > 2) downloaded OJ won't have PDF embedded
> > 3) we live the PDF on the web site, if people want to download
> it and
> > put in OJ folder
> > 3) It helps the internationalization of the menus: we can only
> translate
> > the menus and submenus: people can search on help if they want to
> > understand the tools
> >
> > Peppe
> >
> >
> 
> >
> 
> > L'email della prossima generazione? Puoi averla con la nuova
> Yahoo! Mail
> >
> >
> >
> >
> >
> 
> >
> >
> -
> > This SF.net email is sponsored by: Splunk Inc.
> > Still grepping through log files to find problems? Stop.
> > Now Search log events and configuration files using AJAX and a
> browser.
> > Download your FREE copy of Splunk now >> http://get.splunk.com/
> >
> >
> >
> 
> >
> > ___
> > Jump-pilot-devel mailing list
> > Jump-pilot-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems? Stop.
> Now Search log events and configuration files using AJAX and a
> browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! 
> Mail 
> <http://us.rd.yahoo.com/mail/it/taglines/hotmail/nowyoucan/nextgen/*http://it.docs.yahoo.com/nowyoucan.html>
>  
>
>
> L'email della prossima generazione? Puoi averla con la nuova Yahoo! 
> Mail 
> <http://us.rd.yahoo.com/mail/it/taglines/hotmail/nowyoucan/nextgen/*http://it.docs.yahoo.com/nowyoucan.html>
>  
>
>
>
>
>--

Re: [JPP-Devel] Network Installation

2007-08-25 Thread Stefan Steiniger
mhm.. i guess it has something to do with log4j?
thanx for adding the the new command line property

stefan

Andreas Schmitz schrieb:
> Uwe Dalluege wrote:
> 
> Hi,
> 
>> does it also works for the jump.log file?
> 
> unfortunately, no. I'm not sure where the log file actually comes
> from.
> 
> Best regards, Andreas

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] [Fwd: Re: [Fwd: File format plugins]]

2007-08-26 Thread Stefan Steiniger
for the record and Paul - in case he missed it.

Furthermore i asked Uwe about the postgis plugin. He said that he 
adapted existing code. So he does not know why the PostGIS option is 
installed with the LoadDatasetDialogs

stefan

 Original-Nachricht 
Betreff: Re: [jump-users] [Fwd: File format plugins]
Datum: Fri, 24 Aug 2007 09:09:23 +0200
Von: Edgar Soldin <[EMAIL PROTECTED]>
Antwort an: JUMP Users Discussion <[EMAIL PROTECTED]>
An: JUMP Users Discussion <[EMAIL PROTECTED]>
Referenzen: <[EMAIL PROTECTED]>

the gt2 reader writer extension (not updated since 2004), installs as
extra entry in file menu, supports
gml2, shape, gtopo30, ascii, mapinfo
as they came with gt2... not sure about the last three (if raster or
vector, only vector supported by the extension) .. tested were only gml2
and shape then.

just to remind of it .. regards edgar
--
> important question by Paul Austin, because he wants to implement a new 
> file-load dialog for OpenJUMP
>
> stefan
> -
>
> Does anyone know of any file based readers and writers or Image plugins
> for JUMP not included in the following list?
>
> *Raster*
> ECW - Standard
> GeoTiff/Tiff + World - Standard
> JPG, PNG, JPG - Standard
> MrSID -Standard
>
> *Vector*
> ESRI Shapefile - Standard
> WKT - Standard
> FME GML - Standard
> GML 2.0 - Standard
> JUMP GML - Standard
>
> DXF - Michael
> MIF - Michael
> SAIF - Me
> MOEP - Me
> (MIF - Michael, not working currently)
> CSV - Pirol
>
>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>
>
> ___
> jump-users mailing list
> [EMAIL PROTECTED]
> http://lists.refractions.net/mailman/listinfo/jump-users


-- 
public class WhoDidIt{ // A comment. I love comments
  private static Person sender;

  public static void main (String[] foo){

  sender = new Person();
  sender.setName(new String[]{"Edgar", "Soldin"});

  Address address = new Address();
  address.setStreet("Stadtweg 119");
  address.setZip(39116);
  address.setCity("Magdeburg");
  address.setCountry("Germany");

  sender.setAddress(address);

  sender.setMobilePhone(" +49(0)171-2782880 ");
  sender.setWebSiteUrl(" http://www.soldin.de ");
  sender.setEmail(" [EMAIL PROTECTED] ");
  sender.setPGPPublicKey(" http://www.soldin.de/edgar_soldin.asc ");
  sender.setGender(true);

  System.out.println(sender.toString());
  }
}

___
jump-users mailing list
[EMAIL PROTECTED]
http://lists.refractions.net/mailman/listinfo/jump-users



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] deeJUMP plugin

2007-08-26 Thread Stefan Steiniger
Hei Andreas,

thats good to hear.
I hope you are looking on geotools projection code as well. As far as i 
checked out the guy that is responsible for it has the appropriate 
background (at least i think so). and geotools realized already lots of 
projections ( i guess EPSG completely). But lots of stuff needs to be 
replaced.
Just a question: do you have a person with proper math-geodesy 
background on projection stuff? (or a contact to Bonn University on 
that: i.e. someone of the team of Prof. Karl-Heinz Ilk?)

I ask, because projections are a realy nasty thing. It is very important 
to have appropriate testing data (e.g. to check the conversions to 
WGS84). (btw: I did some software evaluation on Cadcorp SIS for Finnish 
projection - which is to complicate for them, Swiss projection (also 
some special formulas) and German GK/UTM projections).
It is somehow "satisfying" to hear that you plan to work on the 
projection support implementation for 1-2 years (not just a month). I 
think the "design" itself is also quite tricky, because later on the 
user must be able to define its own coordinate system (beside the EPSG 
ones). So it is good to look how ArcGIS, Cadcorp SiS, MapInfo, and so on 
have realized the user interfaces and customization.

stefan

PS: you know.. if i would have time.. (maybe in autumn i could also help 
with some stuff like testing.) And just for the record: I think, being a 
surveyor (my second major was planetary geodesy), I can estimate that it 
is realy "heavy" to work on projection and transformation stuff. On the 
other hand i must admit that the only projection implementation i have 
done was some compulsory assignment at the Uni involving to project 
points from german GK coordinates to UTM (which involved also the 
transfer from Bessel (or was it Krasovski?) Ellipsoid to ETRS89 (or was 
it WGS84 ;)

Andreas Schmitz schrieb:
> Sunburned Surveyor wrote:
> 
> Hi,
> 
>> This is great. We need more efforts at collaboration like this.
> 
> I agree. Having a good, free projection library would be desirable.
> 
>> What is the status of the projection code in Deegree? Could it be
>> modified for use in OpenJUMP? (It would probably be easier to use a
>> library from Deegree, since using the port of Proj4 will probably
>> require conversion to another feature model, or at least a geometry
>> conversion of some sort. [Unless the library works with raw file
>> formats.])
> 
>> Maybe we need to consider using the Deegree projection code in
>> OpenJUMP and if this is sucsessful promoting the library as the "Java"
>> solution for map projection and coordinate transformations. It seems
>> like this would be a logical area for coordination among teams.
> 
> The deegree project decided to implement their own projection library,
> or rather implement it directly in deegree. This will probably happen
> in the next few weeks, since some work has already been done (before
> noting the existence of the proj4 Java port).
> 
> For the next major version of deegree, a more modular approach is
> planned, so the projection library is probably going to end up as a
> seperate module that could be used from OJ as library. This is going
> to happen during the next year or two.
> 
> Best regards, Andreas

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


  1   2   3   4   5   6   7   8   9   10   >