I know programming in Java and I am familiar with GIS concepts as well. I do GIS programming using javascript and PHP. I want to now do it using Java. How should I go about it? PLease let me know where I should begin with? Links to tutorials or simple Java based GIS project works will really be appreciated!
6 Answers
Why not take a look at the open source projects out there.
Take a look at the source code, choose one or many of them and join the projects :-)
A few examples:
GVSig with both desktop GIS, mobile version and mini version for phones http://www.gvsig.org/web/home/gvsig-home/view?set_language=en
JTS, Java Topology Suite (I think it means) http://www.vividsolutions.com/jts/jtshome.htm
Another desktop GIS http://openjump.org/
GeoServer, generating web-mapping services (website seems to be down right now) http://geoserver.org
and so on....
- 35,114
- 8
- 66
- 134
- 13,241
- 1
- 39
- 48
-
despite what Google claims the JTS home page is at http://tsusiatsoftware.net/jts/main.html – Ian Turton Dec 07 '10 at 16:35
-
ok, you are right, I just googled. But the download link in my link seems more alive. but the svn repository seems to be linked from your link. hmm – Nicklas Avén Dec 07 '10 at 18:26
-
Widely used opensource GIS java libraries are GeoToolkit : http://www.geotoolkit.org/ and GeoTools (osgeo) : http://www.geotools.org/
An example of an application based on GeoToolkit : https://github.com/codehaus/puzzle-gis
- 1,807
- 17
- 24
-
1See in particular for Geotools, the FOSS4G 2010 workshop http://geotoolsnews.blogspot.com/2010/09/geospatial-for-java-workbooks-available.html – ThomasG77 Dec 08 '10 at 00:06
-
-
Sorry, the codehaus website is now closed : https://www.codehaus.org/history/. The PuzzleGIS project migrated to GitHub, i updated the URL in my response. Be warned : the project is quite old. – Laurent Jégou Aug 05 '15 at 13:43
Here is some information from ESRI on how to develop GIS applications with Java:
http://www.esri.com/getting-started/developers/java.html
For Java EE developers, Esri offers the Web ADF for the Java platform, a Java web framework that extends the JavaServer Faces (JSF) specification.
http://help.arcgis.com/en/sdk/10.0/java_ao_adf/adf_home.html
- 35,114
- 8
- 66
- 134
- 3,476
- 5
- 40
- 59
-
Be aware though that the web ADF has been deprecated at 10.1. The ArcGIS Runtime SDK for Java or ArcGIS Server Object Extensions are the routes to use at 10.1, but documentation is still scarce right now. – blord-castillo Aug 21 '12 at 15:31
Geomajas is another open source project for building Java based web applications. It uses GWT to allow you to do everything in Java. There is a learning curve as it expects maven and spring knowledge, but it includes many goodies for your application (e.g. caching, printing,...) thanks to the many plug-ins.
- 377
- 4
- 3
@book{wood2002java, title={{Java programming for spatial sciences}}, author={Wood, J.}, isbn={0415260981}, year={2002}, publisher={CRC} }
– mdsumner Dec 07 '10 at 08:56