blob: 5f27f618601493293f5da52af985f71de6436e7d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sis.referencing.operation.projection;
import org.opengis.util.FactoryException;
import org.opengis.referencing.operation.TransformException;
import org.apache.sis.referencing.operation.provider.MapProjection;
// Test dependencies
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
/**
* Tests the {@link ModifiedAzimuthalEquidistant} class.
*
* @author Martin Desruisseaux (Geomatys)
*/
public final class ModifiedAzimuthalEquidistantTest extends AzimuthalEquidistantTest {
/**
* Creates a new test case.
*/
public ModifiedAzimuthalEquidistantTest() {
}
/**
* Returns the method to be tested.
*/
@Override
MapProjection method() {
return new org.apache.sis.referencing.operation.provider.ModifiedAzimuthalEquidistant();
}
/**
* Tests the projection on a sphere. We override the method provides in parent class
* because the point provided in Snyder is too far from projection centre.
*
* @throws FactoryException if an error occurred while creating the projection.
* @throws TransformException if an error occurred while projecting the test point.
*/
@Test
@Override
public void testSpherical() throws FactoryException, TransformException {
tolerance = 20; // Same tolerance as in parent class.
final double r = 6357767.51; // Conformal sphere radius at the latitude being tested.
testWithEPSG(r, r);
}
/**
* Tests with the point published in EPSG guidance note.
*
* @throws FactoryException if an error occurred while creating the projection.
* @throws TransformException if an error occurred while projecting the test point.
*/
@Test
@Override
public void testWithEPSG() throws FactoryException, TransformException {
tolerance = 0.01;
testWithEPSG(CLARKE_A, CLARKE_B);
}
/**
* Tests the <q>Modified Azimuthal Equidistant</q> (EPSG:9832) projection method.
* This test is defined in GeoAPI conformance test suite.
*
* @throws FactoryException if an error occurred while creating the map projection.
* @throws TransformException if an error occurred while projecting a coordinate.
*
* @see org.opengis.test.referencing.ParameterizedTransformTest#testModifiedAzimuthalEquidistant()
*/
@Test
public void runGeoapiTest() throws FactoryException, TransformException {
createGeoApiTestNoDerivatives(method()).testModifiedAzimuthalEquidistant();
}
/**
* Not yet supported.
*/
@Test
@Override
@Disabled("Implementation not yet completed")
public void testDerivative() throws FactoryException, TransformException {
// TODO
}
}