//
// PolarCoordinateSystem.java
//
/*
VisAD system for interactive analysis and visualization of numerical
data. Copyright (C) 1996 - 2017 Bill Hibbard, Curtis Rueden, Tom
Rink, Dave Glowacki, Steve Emmerson, Tom Whittaker, Don Murray, and
Tommy Jasmin.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA
*/
package visad;
/**
PolarCoordinateSystem is the VisAD CoordinateSystem class
for (Longitude, Radius) with a Cartesian Reference,
and with Longitude in degrees.<P>
*/
public class PolarCoordinateSystem extends CoordinateSystem {
private static Unit[] coordinate_system_units =
{CommonUnit.degree, null};
/** construct a CoordinateSystem for (longitude, radius)
relative to a 2-D Cartesian reference;
this constructor supplies units = {CommonUnit.Degree, null}
to the super constructor, in order to ensure Unit
compatibility with its use of trigonometric functions */
public PolarCoordinateSystem(RealTupleType reference)
throws VisADException {
super(reference, coordinate_system_units);
}
public double[][] toReference(double[][] tuples) throws VisADException {
if (tuples == null || tuples.length != 2) {
throw new CoordinateSystemException("PolarCoordinateSystem." +
"toReference: tuples wrong dimension");
}
int len = tuples[0].length;
double[][] value = new double[2][len];
for (int i=0; i<len ;i++) {
if (tuples[1][i] < 0.0) {
value[0][i] = Double.NaN;
value[1][i] = Double.NaN;
}
else {
double coslon = Math.cos(Data.DEGREES_TO_RADIANS * tuples[0][i]);
double sinlon = Math.sin(Data.DEGREES_TO_RADIANS * tuples[0][i]);
value[0][i] = tuples[1][i] * coslon;
value[1][i] = tuples[1][i] * sinlon;
}
}
return value;
}
public double[][] fromReference(double[][] tuples) throws VisADException {
if (tuples == null || tuples.length != 2) {
throw new CoordinateSystemException("PolarCoordinateSystem." +
"fromReference: tuples wrong dimension");
}
int len = tuples[0].length;
double[][] value = new double[2][len];
for (int i=0; i<len ;i++) {
value[1][i] = Math.sqrt(tuples[0][i] * tuples[0][i] +
tuples[1][i] * tuples[1][i]);
value[0][i] =
Data.RADIANS_TO_DEGREES * Math.atan2(tuples[1][i], tuples[0][i]);
// if (value[0][i] < 0.0) value[0][i] += 180.0;
if (value[0][i] < 0.0) value[0][i] += 360.0; // WLH 9 Sept 99
}
return value;
}
public float[][] toReference(float[][] tuples) throws VisADException {
if (tuples == null || tuples.length != 2) {
throw new CoordinateSystemException("PolarCoordinateSystem." +
"toReference: tuples wrong dimension");
}
int len = tuples[0].length;
float[][] value = new float[2][len];
for (int i=0; i<len ;i++) {
if (tuples[1][i] < 0.0) {
value[0][i] = Float.NaN;
value[1][i] = Float.NaN;
}
else {
float coslon = (float) Math.cos(Data.DEGREES_TO_RADIANS * tuples[0][i]);
float sinlon = (float) Math.sin(Data.DEGREES_TO_RADIANS * tuples[0][i]);
value[0][i] = tuples[1][i] * coslon;
value[1][i] = tuples[1][i] * sinlon;
}
}
return value;
}
public float[][] fromReference(float[][] tuples) throws VisADException {
if (tuples == null || tuples.length != 2) {
throw new CoordinateSystemException("PolarCoordinateSystem." +
"fromReference: tuples wrong dimension");
}
int len = tuples[0].length;
float[][] value = new float[2][len];
for (int i=0; i<len ;i++) {
value[1][i] = (float) Math.sqrt(tuples[0][i] * tuples[0][i] +
tuples[1][i] * tuples[1][i]);
value[0][i] = (float)
(Data.RADIANS_TO_DEGREES * Math.atan2(tuples[1][i], tuples[0][i]));
// if (value[0][i] < 0.0) value[0][i] += 180.0;
if (value[0][i] < 0.0) value[0][i] += 360.0; // WLH 9 Sept 99
}
return value;
}
public boolean equals(Object cs) {
return (cs instanceof PolarCoordinateSystem);
}
}