Class TLcdContourUtil

java.lang.Object
com.luciad.tea.TLcdContourUtil

public class TLcdContourUtil extends Object
Deprecated.
This is a utility class for the computation of contour lines.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
    Constructs a new TLcdContourUtil class.
  • Method Summary

    Modifier and Type
    Method
    Description
    double[]
    getLinearLevels(ILcdMatrix aMatrix, int aNumberOfLevels, double aMinLevel, double aMaxLevel)
    Deprecated.
    Returns the different levels using a linear subdivision.
    double[]
    getLogarithmicLevels(ILcdMatrix aMatrix, int aNumberOfLevels, double aMinLevel, double aMaxLevel)
    Deprecated.
    Returns the different levels using a logarithmic subdivision.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TLcdContourUtil

      public TLcdContourUtil()
      Deprecated.
      Constructs a new TLcdContourUtil class.
  • Method Details

    • getLinearLevels

      public double[] getLinearLevels(ILcdMatrix aMatrix, int aNumberOfLevels, double aMinLevel, double aMaxLevel)
      Deprecated.
      Returns the different levels using a linear subdivision.
      Parameters:
      aMatrix - the ILcdMatrix to compute the levels from.
      aNumberOfLevels - The number of levels to compute.
      aMinLevel - The minimum level. Only values above this level will be considered when computing the subdivision.
      aMaxLevel - The minimum level. Only values below this level will be considered when computing the subdivision.
      Returns:
      An array of length aNumberOfLevels containing the levels for a linear subdivision.
    • getLogarithmicLevels

      public double[] getLogarithmicLevels(ILcdMatrix aMatrix, int aNumberOfLevels, double aMinLevel, double aMaxLevel)
      Deprecated.
      Returns the different levels using a logarithmic subdivision. For a logarithmic subdivision, either aMatrix should only contain positive values, or aMinLevel should be larger than zero.
      Parameters:
      aMatrix - the ILcdMatrix to compute the levels from.
      aNumberOfLevels - The number of levels to compute.
      aMinLevel - The minimum level. Only values above this level will be considered when computing the subdivision.
      aMaxLevel - The minimum level. Only values below this level will be considered when computing the subdivision.
      Returns:
      An array of length aNumberOfLevels containing the levels for a logarithmic subdivision.