|
From: Edgar S. <ed...@so...> - 2003-10-07 13:20:08
|
Dear all,
I am a german student doing my thesis in applied studies of media informatics. The thesis' topic "gps supported and graphical editing of spatial information" is a new field to me though I am positive that through the great work of great work already done with geotools I'll conquer the *quest*. The final goal is an as sophisticated as possible java application, from the users point of view ;) .. realized in a 3 month time, including the explaining paperwork for the project and used technologies.
I already did some research and looked at the j2examples, but I am still unsure how to present spatial information as a swing component, which enables editing of the features and their attributes. I saw this implemented in Jump, but couldn't find any georeferencing in it. So I am trying now to get familiar with JTS to work it out.
Questions:
a.) Does anybody know about open source applications, tools, docs introducing me to components that I could be helpful?
b.) Is the general way of using geotools in conjunction with JTS possible? Are there more docs except the ones included in geotools/jts?
Thanks a lot
Ede
--
public class WhoDidIt{ // A comment. I love comments
private static Student sender;
public static void main (String[] foo){
sender = new Student("Digital Media");
sender.setName("Edgar", "Soldin");
Address address=new Address();
address.setStreet("Stadtweg 119");
address.setSuburb("Ottersleben");
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(" ed...@so... ");
sender.setGender(true);
System.out.println(sender.toString());
}
}
|