|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
Note: This is an unedited contribution. If this article is inappropriate,
needs attention or copies someone else's work without reference then please
Report This Article
IntroductionThis article presents GISCoordinate.java - a class that allows you to represent a GIS coordinate in your JAVA code in decimal degrees (38.4443, e.g. 122.33433) , minute degrees (33 44 22E, 122 33 44N), or radian degrees. Also, you can use this class to manipulate the coordinate, moving it around the globe by giving it distances in feet and direction of travel. You can then extract the new coordinate that is calculated after the travel. BackgroundIn one of my application I had to be able to export data that was drawn on a bitmap map to GIS software. I realized I needed some class to represent a GIS coordinate and allow me to manipulate (move) it. The complication here lies in the fact that to generate a new coordinate using an existing coordinate, direction of travel and distance of travel, one needs to take into account the fact that the earth is round, not flat and its roundness is not defined by any standard geometrical shape. Therefore, there are various formulas that you may use for this calculation, depending on what you believe the earth shape to be. The common methods are: Sphere The class presented here allows you to: Construct itself given a set of coordinates in degree minutes format or decimal degrees (e.g. 37:55:15N , 122:20:59W or their decimal equivalents). Move the coordinate any number of feet and to any direction (0-360 deg) and have the new Latitude and Longitude automatically updated to the new location. The calculation for the movement will be done using a method of your choice from the above 9 mentioned. Print out the latitude and longitude in either Decimal Degrees or Degrees Minutes Seconds. Credits: I based my code on the JavaScript code presented by Ed Williams, at: http://williams.best.vwh.net/gccalc.htm which of course had to be completely re-written in Java and wrapped in a nice object oriented wrapper. Using the codeGISCoordinate.java does have a main method that exemplifies the usage of the class. Basically here are a few pointers: You typically instantiate the class as follows: GISCoordinate g = new GISCoordinate("37:55:15","N","122:20:59","W"); This provides you with an object that represents the GIS coordinate: To see the representation of this in Decimal Degrees: g.printDEGDEC(System.out); You can then move the coordinate to any direction and any distance: double movedist=2640;//5280.0; double movedeg=167; System.out.println("Moving "+movedist+" Feet, in a direction of "+movedeg+" degrees..."); g.move(movedist, movedeg, NAD83); Note that The new location can be printed again: g.printDEGDEC(System.out); The demo is self contained in the actual class. To compile and run the demo: 1. Extract the zip file (Attached to this article) contents into c:\temp
while preserving the zip dir structure. javac com\ha\common\gis\*.java 3. Then, to run the demo, issue on the command line: java -classpath c:\temp\ com.ha.common.gis.GISCoordinate To use this class in your code, you can modify the package name to suit your package scheme and call on it as per the examples in the main() method HistoryInitial version: 6-24-2004
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||