Statistics
| Revision:

root / org.gvsig.proj / branches / refactor2018 / org.gvsig.proj / org.gvsig.proj.catalog / org.gvsig.proj.catalog.api / src / main / java / org / gvsig / proj / catalogue / crs / GeographicCRS.java @ 793

History | View | Annotate | Download (5.03 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2018 gvSIG Association.
5
 * 
6
 * This file has been adapted from GeoAPI, see 
7
 * the original copyright headers bellow.
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
 * MA  02110-1301, USA.
23
 *
24
 * For any additional information, do not hesitate to contact us
25
 * at info AT gvsig.com, or visit our website www.gvsig.com.
26
 * 
27
 * ----------
28
 * 
29
 *    GeoAPI - Java interfaces for OGC/ISO standards
30
 *    http://www.geoapi.org
31
 *
32
 *    Copyright (C) 2004-2017 Open Geospatial Consortium, Inc.
33
 *    All Rights Reserved. http://www.opengeospatial.org/ogc/legal
34
 *
35
 *    Permission to use, copy, and modify this software and its documentation, with
36
 *    or without modification, for any purpose and without fee or royalty is hereby
37
 *    granted, provided that you include the following on ALL copies of the software
38
 *    and documentation or portions thereof, including modifications, that you make:
39
 *
40
 *    1. The full text of this NOTICE in a location viewable to users of the
41
 *       redistributed or derivative work.
42
 *    2. Notice of any changes or modifications to the OGC files, including the
43
 *       date changes were made.
44
 *
45
 *    THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
46
 *    NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
47
 *    TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT
48
 *    THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY
49
 *    PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
50
 *
51
 *    COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
52
 *    CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
53
 *
54
 *    The name and trademarks of copyright holders may NOT be used in advertising or
55
 *    publicity pertaining to the software without specific, written prior permission.
56
 *    Title to copyright in this software and any associated documentation will at all
57
 *    times remain with copyright holders.
58
 */
59
package org.gvsig.proj.catalogue.crs;
60

    
61
import org.gvsig.proj.catalogue.cs.EllipsoidalCS;
62

    
63
/**
64
 * A 2- or 3-dimensional coordinate reference system based on an ellipsoidal approximation of the geoid.
65
 * This provides an accurate representation of the geometry of geographic features for a large
66
 * portion of the earth's surface.
67
 *
68
 * <p>A Geographic CRS is not suitable for mapmaking on a planar surface, because it describes geometry
69
 * on a curved surface. It is impossible to represent such geometry in a Euclidean plane without
70
 * introducing distortions. The need to control these distortions has given rise to the development
71
 * of the science of {@linkplain org.opengis.referencing.operation.Projection map projections}.</p>
72
 *
73
 * <p>This type of CRS can be used with coordinate systems of type
74
 * {@link org.opengis.referencing.cs.EllipsoidalCS}.</p>
75
 *
76
 * @departure constraint
77
 *   This interface is kept conformant with the specification published in 2003. The 2007 revision
78
 *   of ISO 19111 removed the <code>SC_GeographicCRS</code> and <code>SC_GeocentricCRS</code> types,
79
 *   handling both using the <code>SC_GeodeticCRS</code> parent type. GeoAPI keeps them for two reasons:
80
 *   <ul>
81
 *     <li>The distinction between those two types is in wide use.</li>
82
 *     <li>A distinct geographic type allows GeoAPI to restrict the coordinate system type to <code>EllipsoidalCS</code>.
83
 *         ISO 19111 uses a <code>union</code> for expressing this restriction at the <code>SC_GeodeticCRS</code> level,
84
 *         but the Java language does not provide such construct. A distinct geographic type is one way to achieve the
85
 *         same goal.</li>
86
 *   </ul>
87
 *
88
 * Note: gvSIG derived these interfaces from GeoAPI in order to have a simpler API and also to
89
 * avoid namespace collisions (e.g. GeoAPI 3 vs GeoTools interfaces). There is no plans
90
 * to evolve these interfaces to adapt them to future GeoAPI versions.
91
 * 
92
 * @author  gvSIG Team
93
 * @author  Martin Desruisseaux (IRD)
94
 * @version 3.0
95
 * @since   1.0
96
 *
97
 * @see CRSAuthorityFactory#createGeographicCRS(String)
98
 * @see CRSFactory#createGeographicCRS(Map, GeodeticDatum, EllipsoidalCS)
99
 */
100
public interface GeographicCRS extends GeodeticCRS {
101
    /**
102
     * Returns the coordinate system, which shall be ellipsoidal.
103
     *
104
     * @return the ellipsoidal coordinate system.
105
     */
106
    @Override
107
    EllipsoidalCS getCoordinateSystem();
108
}