Skip to content

Commit 39691fa

Browse files
author
mdavis
committed
javadoc
1 parent 7d93583 commit 39691fa

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

src/main/java/org/osgeo/proj4j/CoordinateSystem.java

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,22 @@
33
import org.osgeo.proj4j.units.*;
44

55
/**
6-
* Represents a projected or geographic coordinate system,
7-
* to which coordinates are referenced.
8-
* A coordinate system is defined by a {@link Datum}
9-
* on a specified {@link Ellipsoid},
10-
* and by a {@link Projection} method
11-
* (which may be null in the case of geographic coordinate systems.
12-
* The numeric values of coordinates in a coordinate system
13-
* are expressed in a specified kind of {@link Unit}s.
14-
*
6+
* Represents a projected or geodetic geospatial coordinate system,
7+
* to which coordinates may be referenced.
8+
* A coordinate system is defined by the following things:
9+
* <ul>
10+
* <li>an {@link Ellipsoid} specifies how the shape of the Earth is approximated
11+
* <li>a {@link Datum} provides the mapping from the ellipsoid to
12+
* actual locations on the earth
13+
* <li>a {@link Projection} method maps the ellpsoidal surface to a planar space.
14+
* (The projection method may be null in the case of geodetic coordinate systems).
15+
* <li>a {@link Unit} indicates how the ordinate values
16+
* of coordinates are interpreted
17+
* </ul>
1518
*
1619
* @author Martin Davis
20+
*
21+
* @see CoordinateSystemFactory
1722
*
1823
*/
1924
public class CoordinateSystem

src/main/java/org/osgeo/proj4j/Registry.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55

66
import org.osgeo.proj4j.proj.*;
77

8+
/**
9+
* Records predefined values for various library classes
10+
* such as {@link Ellipsoid}, {@link Datum}, and {@link Projection}.
11+
*
12+
* @author Martin Davis
13+
*
14+
*/
815
public class Registry {
916

1017
public Registry() {

0 commit comments

Comments
 (0)