Skip to content

Commit 0466950

Browse files
author
mdavis
committed
javadoc
1 parent a4de23b commit 0466950

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
package org.osgeo.proj4j;
22

3+
import org.osgeo.proj4j.units.*;
4+
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+
*
15+
*
16+
* @author Martin Davis
17+
*
18+
*/
319
public class CoordinateSystem
420
{
521
// allows specifying transformations which convert to/from Geographic coordinates on the same datum

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public CoordinateSystemFactory()
3838

3939
/**
4040
* Gets the {@link Registry} used by this factory.
41-
* @return
41+
* @return the Registry
4242
*/
4343
public Registry getRegistry()
4444
{
@@ -88,7 +88,7 @@ public CoordinateSystem createFromParameters(String name, String paramStr)
8888
* Creates a CoordinateSystem from a set of PROJ.4 parameters.
8989
*
9090
* @param name a name for this coordinate system (may be null)
91-
* @param params an array of PROJ.4 parameters
91+
* @param args an array of PROJ.4 parameters
9292
* @return a CoordinateSystem
9393
* @throws UnsupportedOperationException if a PROJ.4 parameter is not supported
9494
*/

0 commit comments

Comments
 (0)