|
| 1 | +/* |
| 2 | + * Copyright 2025, PROJ4J contributors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.locationtech.proj4j.geoapi; |
| 17 | + |
| 18 | +import org.locationtech.proj4j.geoapi.spi.AuthorityFactory; |
| 19 | +import org.locationtech.proj4j.geoapi.spi.OperationFactory; |
| 20 | +import org.opengis.referencing.NoSuchAuthorityCodeException; |
| 21 | +import org.opengis.referencing.crs.CRSAuthorityFactory; |
| 22 | +import org.opengis.referencing.crs.CoordinateReferenceSystem; |
| 23 | +import org.opengis.referencing.operation.CoordinateOperation; |
| 24 | +import org.opengis.referencing.operation.CoordinateOperationFactory; |
| 25 | +import org.opengis.util.FactoryException; |
| 26 | + |
| 27 | + |
| 28 | +/** |
| 29 | + * Default implementations of referencing services backed by PROJ4J. |
| 30 | + * Those services are accessible by {@link java.util.ServiceLoader}, |
| 31 | + * which should be used by implementation-neutral applications. |
| 32 | + * This class provides shortcuts for the convenience of applications |
| 33 | + * that do not need implementation neutrality. |
| 34 | + * |
| 35 | + * @author Martin Desruisseaux (Geomatys) |
| 36 | + */ |
| 37 | +public final class Services { |
| 38 | + /** |
| 39 | + * Do not allows instantiation of this class. |
| 40 | + */ |
| 41 | + private Services() { |
| 42 | + } |
| 43 | + |
| 44 | + /** |
| 45 | + * {@return the singleton factory for creating CRS from authority codes}. |
| 46 | + */ |
| 47 | + public static CRSAuthorityFactory getAuthorityFactory() { |
| 48 | + return AuthorityFactory.provider(); |
| 49 | + } |
| 50 | + |
| 51 | + /** |
| 52 | + * {@return the singleton factory for creating coordinate operations between a pair of CRS}. |
| 53 | + */ |
| 54 | + public static CoordinateOperationFactory getOperationFactory() { |
| 55 | + return OperationFactory.provider(); |
| 56 | + } |
| 57 | + |
| 58 | + /** |
| 59 | + * Creates a coordinate reference system from the given authority code. |
| 60 | + * The argument should be of the form {@code "AUTHORITY:CODE"}. |
| 61 | + * If the authority is unspecified, then {@code "EPSG"} is assumed. |
| 62 | + * |
| 63 | + * @param code the authority code |
| 64 | + * @return coordinate reference system for the given code |
| 65 | + * @throws NoSuchAuthorityCodeException if the specified {@code code} was not found |
| 66 | + * @throws FactoryException if the object creation failed for some other reason |
| 67 | + */ |
| 68 | + public static CoordinateReferenceSystem createCRS(final String code) throws FactoryException { |
| 69 | + return getAuthorityFactory().createCoordinateReferenceSystem(code); |
| 70 | + } |
| 71 | + |
| 72 | + /** |
| 73 | + * Creates a coordinate operation between the given pair of coordinate reference systems. |
| 74 | + * |
| 75 | + * @param source input coordinate reference system |
| 76 | + * @param target output coordinate reference system |
| 77 | + * @return a coordinate operation from {@code source} to {@code target} |
| 78 | + * @throws FactoryException if the coordinate operation cannot be created |
| 79 | + */ |
| 80 | + public static CoordinateOperation findOperation(CoordinateReferenceSystem source, CoordinateReferenceSystem target) |
| 81 | + throws FactoryException |
| 82 | + { |
| 83 | + return getOperationFactory().createOperation(source, target); |
| 84 | + } |
| 85 | +} |
0 commit comments