File tree Expand file tree Collapse file tree 2 files changed +21
-9
lines changed
src/main/java/org/osgeo/proj4j Expand file tree Collapse file tree 2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 3
3
import org .osgeo .proj4j .units .*;
4
4
5
5
/**
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>
15
18
*
16
19
* @author Martin Davis
20
+ *
21
+ * @see CoordinateSystemFactory
17
22
*
18
23
*/
19
24
public class CoordinateSystem
Original file line number Diff line number Diff line change 5
5
6
6
import org .osgeo .proj4j .proj .*;
7
7
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
+ */
8
15
public class Registry {
9
16
10
17
public Registry () {
You can’t perform that action at this time.
0 commit comments