[JPP-Devel] I need an help on programming

2013-03-06 Thread Giuseppe Aruta
Hi all,
I need to create a plugin which is able to launch a tool according to a
specific choice on an OptionsPanel

Something like this (I am even not sure if the sintax is correct)

***
Private  class *ThisPlugIn* extends AbstractPlugIn

 public boolean execute(PlugInContext context)   throws Exception
   {
 reportNothingToUndoYet(context);
 if  (*FileOptionsPanel* = AA) {
context.getLayerViewPanel().setCurrentCursorTool(new* AAtTool()*);
  }
  else {
 context.getLayerViewPanel().setCurrentCursorTool(new *BBTool()*);
  }
return true;
   }


As you can see the options are only two  AA (AATool) and else (BBTool)
My main problem is that I don't know  to build that FileOptionPanel and I
am not able to find a similar File into OJ source (SnapOptionPanels, etc)
I will really appreciate ant suggestions or help

The aim of this work is a further development of my measure plugin, I want
to add the possibility to user to choose if they have to calculate
area/distance under projected coordinates (and use tools which use JTS as
in OpenJUMP) or they are working with a map under geographic coordinates
(and so they switch to tools which use other formulas for area/lenght under
lat/lon coordinates AA option will be Metrics coordinates Map, BB (else)
geographics

Thanks a lot for any answer

 Peppe  [not an automatic machine, Stefan ;-)]
--
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and remains a good choice in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need an help on programming

2013-03-06 Thread edgar . soldin
you can have a look at the GPS extension. it has a options panel build in.
how to add the tab see after line 259
http://jump-pilot.svn.sourceforge.net/viewvc/jump-pilot/plug-ins/de.soldin.jump/trunk/src/de/soldin/jump/gps/GPSTrackerPlugin.java?revision=3301view=markup

the options panel has to implement OptionsPanel.

..ede


On 06.03.2013 13:49, Giuseppe Aruta wrote:
 Hi all,
 I need to create a plugin which is able to launch a tool according to a 
 specific choice on an OptionsPanel
 
 Something like this (I am even not sure if the sintax is correct)
 
 ***
 Private  class *ThisPlugIn* extends AbstractPlugIn
 
  public boolean execute(PlugInContext context)   throws Exception
{
  reportNothingToUndoYet(context);
  if  (*FileOptionsPanel* = AA) {
 context.getLayerViewPanel().setCurrentCursorTool(new*AAtTool()*);
   }
   else {
  context.getLayerViewPanel().setCurrentCursorTool(new *BBTool()*);
   }
 return true;
}
 
 
 As you can see the options are only two  AA (AATool) and else (BBTool)
 My main problem is that I don't know  to build that FileOptionPanel and I am 
 not able to find a similar File into OJ source (SnapOptionPanels, etc)
 I will really appreciate ant suggestions or help
 
 The aim of this work is a further development of my measure plugin, I want to 
 add the possibility to user to choose if they have to calculate area/distance 
 under projected coordinates (and use tools which use JTS as in OpenJUMP) or 
 they are working with a map under geographic coordinates (and so they switch 
 to tools which use other formulas for area/lenght under lat/lon coordinates 
 AA option will be Metrics coordinates Map, BB (else) geographics
 
 Thanks a lot for any answer
 
  Peppe  [not an automatic machine, Stefan ;-)]
 
 
 --
 Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
 Wave(TM): Endpoint Security, Q1 2013 and remains a good choice in the  
 endpoint security space. For insight on selecting the right partner to 
 tackle endpoint security challenges, access the full report. 
 http://p.sf.net/sfu/symantec-dev2dev
 
 
 
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
 

--
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and remains a good choice in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need an help

2011-07-20 Thread Giuseppe Aruta
Hi Matthias and others, 
thank you for your help and good infos. Actually I am working out of my house 
and I cannot use Internet so frequently - so excuse me for my late answers. 
@ Matthias - I will send you more details about this plugin. I am glad to 
collaborate with your project. 

regards 

Giuseppe



Da: Matthias Scholz lt;m...@jammerhund.degt;
A: OpenJump develop and use lt;jump-pilot-devel@lists.sourceforge.netgt;
Inviato: Giovedì 14 Luglio 2011 21:36
Oggetto: Re: [JPP-Devel] I need an help


Hi Peppe!

I#39;m right that you develop a angle measure tool? If so, we should work 
together. An angle measurement is one point of my TODO for the 
AdvancedMeasureTool. My plan was to integrate a third mode (length, area and 
angle) for the measure tool. The result should be displayed in same manner as 
in length and area mode. With all the styling possibilities. Please tell me 
your point of view.

Regards 
Matthias


Hi Stefan.  Welcome back!
gt;
gt;@Peppe, I think Stefan is referring to Edit Selected Side, and it seems 
like a perfect example of what you are trying to do.  It creates a new 
temporary layer and calculates distance and angles.
gt;
gt;regards,
gt;
gt;Larry
gt;
gt;
gt;On Wed, Jul 13, 2011 at 2:28 PM, Stefan Steiniger lt;sst...@geo.uzh.chgt; 
wrote:
gt;
gt;Hei Peppe
gt;gt;
gt;gt;thats great news that you started programming!
gt;gt;for the first one - how about this example on the buffer:
gt;gt;
gt;gt;http://sourceforge.net/apps/mediawiki/jump-pilot/index.php?title=Example_Plugin_For_Buffering_Features_in_a_Layer
gt;gt;
gt;gt;but instead of creating a buffer geometry you get the coordinate of the
gt;gt;point and create a new point feature in a new layer... or so?
gt;gt;But what makes it a bit more difficult is that you stay in an
gt;gt;interaction mode... i.e. you activate the function once and then stop it
gt;gt;later when you are done and keep writing to the same layer... so you
gt;gt;need like two buttons and create the layer only once? (my draw circles
gt;gt;tool from the editing box is a bit a mess, but could help too)...mhm the
gt;gt;more I think about it, the more complicated it seems to me.
gt;gt;
gt;gt;for the second on.. seems more tricky to me. Would need to think about 
it.
gt;gt;However, the tools that came with SkyJump to modify and access edges of
gt;gt;a polygon do something similar - right?
gt;gt;
gt;gt;cheers,
gt;gt;stefan
gt;gt;
gt;gt;
gt;gt;On 13/07/2011 2:26 AM, Edgar Soldin wrote:
gt;gt;gt;gt; My idea is to start from this tool to obtain other surveying 
tools.
gt;gt;gt;gt;
gt;gt;gt;gt; My questions are:
gt;gt;gt;gt;
gt;gt;gt;gt; 1) actually the tool only displays on status panel the value 
of the angle. I need that it creates a new layer and , for every measuring,  a 
point with the values of degrees saved in an attribute
gt;gt;gt;gt;
gt;gt;gt;gt; 2) I need that the tools creates, for every measuring, a line  
with vectors (segments) oriented according the calculated angles.
gt;gt;gt;gt;
gt;gt;gt;gt; I really thatnk if someone can help me.
gt;gt;gt;gt;
gt;gt;gt; i usually look around if somewhere in oj or in an extension is a 
similar functionality as i need and look how thy did it, reading the source. 
then i cherry-pick the routines i need and glue them together as needed.
gt;gt;gt;
gt;gt;gt; good luck ede
gt;gt;gt;
gt;gt;gt;
gt;gt;gt; 
--
gt;gt;gt; AppSumo Presents a FREE Video for the SourceForge Community by Eric
gt;gt;gt; Ries, the creator of the Lean Startup Methodology on quot;Lean 
Startup
gt;gt;gt; Secrets Revealed.quot; This video shows you how to validate your 
ideas,
gt;gt;gt; optimize your ideas and identify your business strategy.
gt;gt;gt; http://p.sf.net/sfu/appsumosfdev2dev
gt;gt;gt; ___
gt;gt;gt; Jump-pilot-devel mailing list
gt;gt;gt; Jump-pilot-devel@lists.sourceforge.net
gt;gt;gt; https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
gt;gt;
gt;gt;
gt;gt;--
gt;gt;AppSumo Presents a FREE Video for the SourceForge Community by Eric
gt;gt;Ries, the creator of the Lean Startup Methodology on quot;Lean Startup
gt;gt;Secrets Revealed.quot; This video shows you how to validate your ideas,
gt;gt;optimize your ideas and identify your business strategy.
gt;gt;http://p.sf.net/sfu/appsumosfdev2dev
gt;gt;___
gt;gt;Jump-pilot-devel mailing list
gt;gt;Jump-pilot-devel@lists.sourceforge.net
gt;gt;https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
gt;gt;
gt;
gt;
--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on quot;Lean Startup 
Secrets Revealed.quot; This video shows you how to validate your ideas, 
optimize your ideas

Re: [JPP-Devel] I need an help

2011-07-14 Thread Matthias Scholz

Hi Peppe!

I'm right that you develop a angle measure tool? If so, we should work 
together. An angle measurement is one point of my TODO for the 
AdvancedMeasureTool. My plan was to integrate a third mode (length, area 
and angle) for the measure tool. The result should be displayed in same 
manner as in length and area mode. With all the styling possibilities. 
Please tell me your point of view.


Regards
Matthias


Hi Stefan.  Welcome back!

@Peppe, I think Stefan is referring to Edit Selected Side, and it 
seems like a perfect example of what you are trying to do.  It creates 
a new temporary layer and calculates distance and angles.


regards,

Larry

On Wed, Jul 13, 2011 at 2:28 PM, Stefan Steiniger sst...@geo.uzh.ch 
mailto:sst...@geo.uzh.ch wrote:


Hei Peppe

thats great news that you started programming!
for the first one - how about this example on the buffer:


http://sourceforge.net/apps/mediawiki/jump-pilot/index.php?title=Example_Plugin_For_Buffering_Features_in_a_Layer

but instead of creating a buffer geometry you get the coordinate
of the
point and create a new point feature in a new layer... or so?
But what makes it a bit more difficult is that you stay in an
interaction mode... i.e. you activate the function once and then
stop it
later when you are done and keep writing to the same layer... so you
need like two buttons and create the layer only once? (my draw circles
tool from the editing box is a bit a mess, but could help
too)...mhm the
more I think about it, the more complicated it seems to me.

for the second on.. seems more tricky to me. Would need to think
about it.
However, the tools that came with SkyJump to modify and access
edges of
a polygon do something similar - right?

cheers,
stefan

On 13/07/2011 2:26 AM, Edgar Soldin wrote:
 My idea is to start from this tool to obtain other surveying tools.

 My questions are:

 1) actually the tool only displays on status panel the value of
the angle. I need that it creates a new layer and , for every
measuring,  a point with the values of degrees saved in an attribute

 2) I need that the tools creates, for every measuring, a line
 with vectors (segments) oriented according the calculated angles.

 I really thatnk if someone can help me.

 i usually look around if somewhere in oj or in an extension is a
similar functionality as i need and look how thy did it, reading
the source. then i cherry-pick the routines i need and glue them
together as needed.

 good luck ede




--
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on Lean Startup
 Secrets Revealed. This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 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



--
AppSumo Presents a FREE Video for the SourceForge Community by Eric
Ries, the creator of the Lean Startup Methodology on Lean Startup
Secrets Revealed. This video shows you how to validate your ideas,
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
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



--
AppSumo Presents a FREE Video for the SourceForge Community by Eric
Ries, the creator of the Lean Startup Methodology on Lean Startup
Secrets Revealed. This video shows you how to validate your ideas,
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev


___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on Lean Startup 
Secrets Revealed. This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev___
Jump-pilot-devel mailing list

[JPP-Devel] I need an help

2011-07-13 Thread Giuseppe Aruta
Hi all,
finally I came to study how to develop tools. I started from a Kosmo small tool 
which I adopted to OJ. It basically calculate the angle between a segment and 
the North, in a plane (UTM), in both degrees and radians.

that is the code:


public MeasureAzimutUTMTool() {
  super(2); 
  allowSnapping();}
protected void gestureFinished() throws Exception { Iterator it = 
getCoordinates().iterator();
Coordinate c1=null,c2=null;

/**
 *  Calculates Degrees and Radians
 */

double d = 0;
if (it.hasNext())
c1 = (Coordinate)it.next();
if (it.hasNext())
c2 = (Coordinate)it.next();
LineSegment ls = new LineSegment(c1,c2);
d = ls.angle();
double DEG = 90 - d * (180/Math.PI);

double DEG1 = DEG;
   if (DEG  0)
  DEG1 = DEG1 + 360;
   double RAD = DEG1/180;

getPanel().getContext().setStatusMessage(

I18N.get(org.saig.jump.tools.messuring.MessureAzimutUTMTool.Angle-referencing-north)
 + :+ getPanel().format(DEG1)+° =  + getPanel().format(RAD) + 
\u03C0); 

***

My idea is to start from this tool to obtain other surveying tools.

My questions are:

1) actually the tool only displays on status panel the value of the angle. I 
need that it creates a new layer and , for every measuring,  a point with the 
values of degrees saved in an attribute

2) I need that the tools creates, for every measuring, a line  with vectors 
(segments) oriented according the calculated angles.

I really thatnk if someone can help me.

regards


Giuseppe


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on Lean Startup 
Secrets Revealed. This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need an help

2011-07-13 Thread Edgar Soldin

 
 My idea is to start from this tool to obtain other surveying tools.
 
 My questions are:
 
 1) actually the tool only displays on status panel the value of the angle. I 
 need that it creates a new layer and , for every measuring,  a point with the 
 values of degrees saved in an attribute
 
 2) I need that the tools creates, for every measuring, a line  with vectors 
 (segments) oriented according the calculated angles.
 
 I really thatnk if someone can help me.
 

i usually look around if somewhere in oj or in an extension is a similar 
functionality as i need and look how thy did it, reading the source. then i 
cherry-pick the routines i need and glue them together as needed.

good luck ede


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on Lean Startup 
Secrets Revealed. This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need an help

2011-07-13 Thread Stefan Steiniger
Hei Peppe

thats great news that you started programming!
for the first one - how about this example on the buffer:

http://sourceforge.net/apps/mediawiki/jump-pilot/index.php?title=Example_Plugin_For_Buffering_Features_in_a_Layer

but instead of creating a buffer geometry you get the coordinate of the 
point and create a new point feature in a new layer... or so?
But what makes it a bit more difficult is that you stay in an 
interaction mode... i.e. you activate the function once and then stop it 
later when you are done and keep writing to the same layer... so you 
need like two buttons and create the layer only once? (my draw circles 
tool from the editing box is a bit a mess, but could help too)...mhm the 
more I think about it, the more complicated it seems to me.

for the second on.. seems more tricky to me. Would need to think about it.
However, the tools that came with SkyJump to modify and access edges of 
a polygon do something similar - right?

cheers,
stefan

On 13/07/2011 2:26 AM, Edgar Soldin wrote:
 My idea is to start from this tool to obtain other surveying tools.

 My questions are:

 1) actually the tool only displays on status panel the value of the angle. I 
 need that it creates a new layer and , for every measuring,  a point with 
 the values of degrees saved in an attribute

 2) I need that the tools creates, for every measuring, a line  with vectors 
 (segments) oriented according the calculated angles.

 I really thatnk if someone can help me.

 i usually look around if somewhere in oj or in an extension is a similar 
 functionality as i need and look how thy did it, reading the source. then i 
 cherry-pick the routines i need and glue them together as needed.

 good luck ede


 --
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on Lean Startup
 Secrets Revealed. This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on Lean Startup 
Secrets Revealed. This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need an help

2011-07-13 Thread Larry Becker
Hi Stefan.  Welcome back!

@Peppe, I think Stefan is referring to Edit Selected Side, and it seems like
a perfect example of what you are trying to do.  It creates a new temporary
layer and calculates distance and angles.

regards,

Larry

On Wed, Jul 13, 2011 at 2:28 PM, Stefan Steiniger sst...@geo.uzh.ch wrote:

 Hei Peppe

 thats great news that you started programming!
 for the first one - how about this example on the buffer:


 http://sourceforge.net/apps/mediawiki/jump-pilot/index.php?title=Example_Plugin_For_Buffering_Features_in_a_Layer

 but instead of creating a buffer geometry you get the coordinate of the
 point and create a new point feature in a new layer... or so?
 But what makes it a bit more difficult is that you stay in an
 interaction mode... i.e. you activate the function once and then stop it
 later when you are done and keep writing to the same layer... so you
 need like two buttons and create the layer only once? (my draw circles
 tool from the editing box is a bit a mess, but could help too)...mhm the
 more I think about it, the more complicated it seems to me.

 for the second on.. seems more tricky to me. Would need to think about it.
 However, the tools that came with SkyJump to modify and access edges of
 a polygon do something similar - right?

 cheers,
 stefan

 On 13/07/2011 2:26 AM, Edgar Soldin wrote:
  My idea is to start from this tool to obtain other surveying tools.
 
  My questions are:
 
  1) actually the tool only displays on status panel the value of the
 angle. I need that it creates a new layer and , for every measuring,  a
 point with the values of degrees saved in an attribute
 
  2) I need that the tools creates, for every measuring, a line  with
 vectors (segments) oriented according the calculated angles.
 
  I really thatnk if someone can help me.
 
  i usually look around if somewhere in oj or in an extension is a similar
 functionality as i need and look how thy did it, reading the source. then i
 cherry-pick the routines i need and glue them together as needed.
 
  good luck ede
 
 
 
 --
  AppSumo Presents a FREE Video for the SourceForge Community by Eric
  Ries, the creator of the Lean Startup Methodology on Lean Startup
  Secrets Revealed. This video shows you how to validate your ideas,
  optimize your ideas and identify your business strategy.
  http://p.sf.net/sfu/appsumosfdev2dev
  ___
  Jump-pilot-devel mailing list
  Jump-pilot-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel



 --
 AppSumo Presents a FREE Video for the SourceForge Community by Eric
 Ries, the creator of the Lean Startup Methodology on Lean Startup
 Secrets Revealed. This video shows you how to validate your ideas,
 optimize your ideas and identify your business strategy.
 http://p.sf.net/sfu/appsumosfdev2dev
 ___
 Jump-pilot-devel mailing list
 Jump-pilot-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on Lean Startup 
Secrets Revealed. This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need some help on a wiki page

2008-04-29 Thread Stefan Steiniger
mhm.. If I remember correctly in Uwe's Tutorial were a few pages for 
starting. Of course with his plugin.

So it may be a good start, to copy it (actually I could do a translation 
of his latest documentation - but I am missing the original OpenOffice 
file, need to ask him on that) So if you remind me.

stefan

Sunburned Surveyor wrote:
 Peppe,
 
 I do not use databases with OJ, so I'm afraid I can't help you out in
 this regard. I hope someone else can provide you with material. I may
 have the opportunity to use PostGIS with OJ at work in the next few
 months. If this becomes a reality, I will let you know.
 
 The Sunburned Surveyor
 
 On Thu, Apr 24, 2008 at 8:06 AM, Giuseppe Aruta [EMAIL PROTECTED] wrote:
 Hi all,
 I created this  page
 http://openjump.org/wiki/show/Database+Tutorial on the
 on line help.
 The aim was to create a complete and synthetic page on
 how to use all database plugin (PostGIS, Oracle, Arc
 SDE) on OpenJUMP. I realized that the information on
 wiki were scarse, expecially for new users
 Since I am not familiar with database and GIS. I ask
 you if can help me somehow.
 If you have some useful text, picture. You can send me
 and I will provide to (learn), reorganize and put all
 on the wiki page

 Regardes and thanks in advance

 Peppe


  Inviato da Yahoo! Mail.
 La casella di posta intelligente.
 http://it.docs.yahoo.com/mail/overview/index.html


 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 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 the 2008 JavaOne(SM) Conference 
 Don't miss this year's exciting event. There's still time to save $100. 
 Use priority code J8TL2D2. 
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 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 the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need some help on a wiki page

2008-04-28 Thread Sunburned Surveyor
Peppe,

I do not use databases with OJ, so I'm afraid I can't help you out in
this regard. I hope someone else can provide you with material. I may
have the opportunity to use PostGIS with OJ at work in the next few
months. If this becomes a reality, I will let you know.

The Sunburned Surveyor

On Thu, Apr 24, 2008 at 8:06 AM, Giuseppe Aruta [EMAIL PROTECTED] wrote:
 Hi all,
 I created this  page
 http://openjump.org/wiki/show/Database+Tutorial on the
 on line help.
 The aim was to create a complete and synthetic page on
 how to use all database plugin (PostGIS, Oracle, Arc
 SDE) on OpenJUMP. I realized that the information on
 wiki were scarse, expecially for new users
 Since I am not familiar with database and GIS. I ask
 you if can help me somehow.
 If you have some useful text, picture. You can send me
 and I will provide to (learn), reorganize and put all
 on the wiki page

 Regardes and thanks in advance

 Peppe


  Inviato da Yahoo! Mail.
 La casella di posta intelligente.
 http://it.docs.yahoo.com/mail/overview/index.html


 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 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 the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] I need some help on a wiki page

2008-04-24 Thread Giuseppe Aruta
Hi all,
I created this  page
http://openjump.org/wiki/show/Database+Tutorial on the
on line help.
The aim was to create a complete and synthetic page on
how to use all database plugin (PostGIS, Oracle, Arc
SDE) on OpenJUMP. I realized that the information on
wiki were scarse, expecially for new users
Since I am not familiar with database and GIS. I ask
you if can help me somehow.
If you have some useful text, picture. You can send me
and I will provide to (learn), reorganize and put all
on the wiki page

Regardes and thanks in advance

Peppe 


  Inviato da Yahoo! Mail. 
La casella di posta intelligente.
http://it.docs.yahoo.com/mail/overview/index.html


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel