All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geotoolkit.referencing.package-info Maven / Gradle / Ivy

Go to download

Implementations of Coordinate Reference Systems (CRS), conversion and transformation services derived from ISO 19111.

There is a newer version: 3.20-geoapi-3.0
Show newest version
/*
 *    Geotoolkit.org - An Open Source Java GIS Toolkit
 *    http://www.geotoolkit.org
 *
 *    (C) 2001-2011, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2009-2011, Geomatys
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation;
 *    version 2.1 of the License.
 *
 *    This library is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *    Lesser General Public License for more details.
 */

/**
 * {@linkplain org.geotoolkit.referencing.AbstractReferenceSystem Reference system} implementations.
 * An explanation for this package is provided in the {@linkplain org.opengis.referencing OpenGIS®
 * javadoc}. The remaining discussion on this page is specific to the Geotk implementation.
 * 

* This package provides implementations for general positioning, coordinate reference systems (CRS), * and coordinate transformations. Coordinates can have any number of dimensions. So this implementation * can handle 2D and 3D coordinates, as well as 4D, 5D, etc. *

* This package provides a special implementation of * {@linkplain org.geotoolkit.referencing.NamedIdentifier identifier}, which is also a * {@linkplain org.opengis.util.GenericName generic name}. By implementing those two * interfaces, it is possible to use the same kind of object for specifying both the * {@linkplain org.geotoolkit.referencing.AbstractIdentifiedObject#getName main identifier} and the * {@linkplain org.geotoolkit.referencing.AbstractIdentifiedObject#getAlias aliases} of an * {@linkplain org.geotoolkit.referencing.AbstractIdentifiedObject identified object}. *

* All factory methods are capable to find an object using an unscoped (or local) name. However, * in order to avoid potential conflict, it is recommended to use scoped name when possible. For * example even if both can work, prefer {@code "EPSG:9624"} instead of {@code "9624"} for the * affine transform in order to avoid potential conflict with an other authority using the same * code number. * * @author Martin Desruisseaux (IRD, Geomatys) * @author Guilhem Legal (Geomatys) * @version 3.18 * * @see List of authority codes * * @since 2.0 * @module */ @XmlSchema(elementFormDefault = XmlNsForm.QUALIFIED, namespace = Namespaces.GML, xmlns = { @XmlNs(prefix = "gml", namespaceURI = Namespaces.GML), @XmlNs(prefix = "gmd", namespaceURI = Namespaces.GMD) }) @XmlAccessorType(XmlAccessType.NONE) @XmlJavaTypeAdapters({ @XmlJavaTypeAdapter(CI_Citation.class), @XmlJavaTypeAdapter(RS_Identifier.class), // Java types, primitive types and basic OGC types handling @XmlJavaTypeAdapter(StringAdapter.class), @XmlJavaTypeAdapter(InternationalStringConverter.class) }) package org.geotoolkit.referencing; import javax.xml.bind.annotation.XmlNs; import javax.xml.bind.annotation.XmlNsForm; import javax.xml.bind.annotation.XmlSchema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapters; import org.geotoolkit.xml.Namespaces; import org.geotoolkit.internal.jaxb.gco.*; import org.geotoolkit.internal.jaxb.metadata.*; import org.geotoolkit.internal.jaxb.referencing.RS_Identifier;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy