/*
Copyright 2010 Bernhard Jenny
Licensed 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 com.jhlabs.map.proj;
import com.jhlabs.map.MapMath;
import java.awt.geom.Point2D;
/**
* Bacon Globular projection.
* Code from proj4.
* @author Bernhard Jenny, Institute of Cartography, ETH Zurich
*/
public class OrteliusProjection extends Projection {
private static final double HLFPI2 = 2.46740110027233965467;
private static final double EPS = 1e-10;
public OrteliusProjection() {
minLongitude = Math.toRadians(-90);
maxLongitude = Math.toRadians(90);
initialize();
}
public Point2D.Double project(double lplam, double lpphi, Point2D.Double out) {
out.y = lpphi;
final double ax = Math.abs(lplam);
if (ax >= EPS) {
if (ax >= MapMath.HALFPI) {
out.x = Math.sqrt(HLFPI2 - lpphi * lpphi + EPS) + ax - MapMath.HALFPI;
} else {
final double f = 0.5 * (HLFPI2 / ax + ax);
out.x = ax - f + Math.sqrt(f * f - out.y * out.y);
}
if (lplam < 0.) {
out.x = -out.x;
}
} else {
out.x = 0.;
}
return out;
}
@Override
public Point2D.Double projectInverse(double x, double y, Point2D.Double out) {
binarySearchInverse(x, y, out);
return out;
}
@Override
public boolean hasInverse() {
return true;
}
public String toString() {
return "Ortelius Oval";
}
}