📄 nongridcontourdataset.java
字号:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* 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;
* either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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.
*
* --------------------------
* NonGridContourDataset.java
* --------------------------
* (C) Copyright 2002, 2003, by David M. O'Donnell.
*
* Original Author: David M. O'Donnell;
* Contributor(s): David Gilbert (for Object Refinery Limited);
*
* $Id: NonGridContourDataset.java,v 1.5 2003/07/24 11:09:13 mungady Exp $
*
* Changes (from 24-Jul-2003)
* --------------------------
* 24-Jul-2003 : Added standard header (DG);
*
*/
package org.jfree.data;
/**
* A convenience class that extends the {@link DefaultContourDataset} to acommadate non-grid data.
*/
public class NonGridContourDataset extends DefaultContourDataset {
/** Default number of x values. */
final int DEFAULT_NUM_X = 50;
/** Default number of y values. */
final int DEFAULT_NUM_Y = 50;
/** Default power. */
final int DEFAULT_POWER = 4;
/**
* Default constructor.
*/
public NonGridContourDataset() {
super();
}
/**
* Constructor for NonGridContourDataset. Uses default values for grid dimensions and
* weighting.
*
* @param seriesName the series name.
* @param xData the x values.
* @param yData the y values.
* @param zData the z values.
*/
public NonGridContourDataset(String seriesName,
Object[] xData, Object[] yData, Object[] zData) {
super(seriesName, xData, yData, zData);
buildGrid(DEFAULT_NUM_X, DEFAULT_NUM_Y, DEFAULT_POWER);
}
/**
* Constructor for NonGridContourDataset.
*
* @param seriesName the series name.
* @param xData the x values.
* @param yData the y values.
* @param zData the z values.
* @param numX number grid cells in along the x-axis
* @param numY number grid cells in along the y-axis
* @param power exponent for inverse distance weighting
*/
public NonGridContourDataset(String seriesName, Object[] xData, Object[] yData, Object[] zData,
int numX, int numY, int power) {
super(seriesName, xData, yData, zData);
buildGrid(numX, numY, power);
}
/**
* Builds a regular grid. Maps the non-grid data into the regular grid using an
* inverse distance between grid and non-grid points. Weighting of distance can
* be controlled by setting through the power parameter that controls the exponent
* used on the distance weighting (e.g., distance^power).
* @param numX number grid points in along the x-axis
* @param numY number grid points in along the y-axis
* @param power exponent for inverse distance weighting
*/
protected void buildGrid(int numX, int numY, int power) {
double[] xGrid = null;
double[] yGrid = null;
double[] zGrid = null;
int numValues = numX * numY;
xGrid = new double[numValues];
yGrid = new double [numValues];
zGrid = new double [numValues];
// Find min, max for the x and y axes
double xMin = 1.e20;
for (int k = 0; k < xValues.length; k++) {
xMin = Math.min(xMin, xValues[k].doubleValue());
}
double xMax = -1.e20;
for (int k = 0; k < xValues.length; k++) {
xMax = Math.max(xMax, xValues[k].doubleValue());
}
double yMin = 1.e20;
for (int k = 0; k < yValues.length; k++) {
yMin = Math.min(yMin, yValues[k].doubleValue());
}
double yMax = -1.e20;
for (int k = 0; k < yValues.length; k++) {
yMax = Math.max(yMax, yValues[k].doubleValue());
}
Range xRange = new Range(xMin, xMax);
Range yRange = new Range(yMin, yMax);
xRange.getLength();
yRange.getLength();
// Determine the cell size
double dxGrid = xRange.getLength() / (numX - 1);
double dyGrid = yRange.getLength() / (numY - 1);
// Generate the grid
double x = 0.0;
for (int i = 0; i < numX; i++) {
if (i == 0) {
x = xMin;
}
else {
x += dxGrid;
}
double y = 0.0;
for (int j = 0; j < numY; j++) {
int k = numY * i + j;
xGrid[k] = x;
if (j == 0) {
y = yMin;
}
else {
y += dyGrid;
}
yGrid[k] = y;
}
}
// Map the nongrid data into the new regular grid
for (int kGrid = 0; kGrid < xGrid.length; kGrid++) {
double dTotal = 0.0;
zGrid[kGrid] = 0.0;
for (int k = 0; k < xValues.length; k++) {
double xPt = xValues[k].doubleValue();
double yPt = yValues[k].doubleValue();
double d = distance(xPt, yPt, xGrid[kGrid], yGrid[kGrid]);
if (power != 1) {
d = Math.pow(d, power);
}
d = Math.sqrt(d);
if (d > 0.0) {
d = 1.0 / d;
}
else { // if d is real small set the inverse to a large number to avoid INF
d = 1.e20;
}
if (zValues[k] != null) {
// scale by the inverse of distance^power
zGrid[kGrid] += zValues[k].doubleValue() * d;
}
dTotal += d;
}
zGrid[kGrid] = zGrid[kGrid] / dTotal; //remove distance of the sum
}
//initalize xValues, yValues, and zValues arrays.
initialize(formObjectArray(xGrid), formObjectArray(yGrid), formObjectArray(zGrid));
}
/**
* Calculates the distance between two points.
*
* @param xDataPt the x coordinate.
* @param yDataPt the y coordinate.
* @param xGrdPt the x grid coordinate.
* @param yGrdPt the y grid coordinate.
*
* @return The distance between two points.
*/
protected double distance(double xDataPt, double yDataPt, double xGrdPt, double yGrdPt) {
double dx = xDataPt - xGrdPt;
double dy = yDataPt - yGrdPt;
return Math.sqrt(dx * dx + dy * dy);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -