public class RemoteDataImpl extends RemoteThingImpl implements RemoteData
Adapts methods from DataImpl, but not: equals, toString, hashCode or clone.
refABS, ACOS, ACOS_DEGREES, ADD, ASIN, ASIN_DEGREES, ATAN, ATAN_DEGREES, ATAN2, ATAN2_DEGREES, CEIL, COS, COS_DEGREES, DEGREES_TO_RADIANS, DEPENDENT, DIVIDE, EXP, FLOOR, INDEPENDENT, INV_ATAN2, INV_ATAN2_DEGREES, INV_DIVIDE, INV_POW, INV_REMAINDER, INV_SUBTRACT, LOG, MAX, MIN, MULTIPLY, NEAREST_NEIGHBOR, NEGATE, NO_ERRORS, NOP, POW, RADIANS_TO_DEGREES, REMAINDER, RINT, ROUND, SIN, SIN_DEGREES, SQRT, SUBTRACT, TAN, TAN_DEGREES, WEIGHTED_AVERAGE| Constructor and Description |
|---|
RemoteDataImpl(DataImpl data)
construct a RemoteDataImpl adapting local data
|
| Modifier and Type | Method and Description |
|---|---|
Data |
abs()
call unary() to take the absolute value of this, using
default modes for sampling (Data.NEAREST_NEIGHBOR) and
error estimation (Data.NO_ERRORS)
|
Data |
abs(int sampling_mode,
int error_mode)
call unary() to take the absolute value of this
|
Data |
acos()
call unary() to take the arccos of this producing
radian Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
acos(int sampling_mode,
int error_mode)
call unary() to take the arccos of this producing
radian Units
|
Data |
acosDegrees()
call unary() to take the arccos of this producing
degree Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
acosDegrees(int sampling_mode,
int error_mode)
call unary() to take the arccos of this producing
degree Units
|
Data |
add(Data data)
call binary() to add data to this, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
add(Data data,
int sampling_mode,
int error_mode)
call binary() to add data to this
|
Data |
adjustSamplingError(Data error,
int error_mode)
return a clone of this, except with ErrorEstimates
combined with values in error, according to error_mode
|
Data |
asin()
call unary() to take the arcsin of this producing
radian Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
asin(int sampling_mode,
int error_mode)
call unary() to take the arcsin of this producing
radian Units
|
Data |
asinDegrees()
call unary() to take the arcsin of this producing
degree Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
asinDegrees(int sampling_mode,
int error_mode)
call unary() to take the arcsin of this producing
degree Units
|
Data |
atan()
call unary() to take the arctan of this producing
radian Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
atan(int sampling_mode,
int error_mode)
call unary() to take the arctan of this producing
radian Units
|
Data |
atan2(Data data)
call binary() to take the atan of this by data
producing radian Units, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
atan2(Data data,
int sampling_mode,
int error_mode)
call binary() to take the atan of this by data
producing radian Units
|
Data |
atan2Degrees(Data data)
call binary() to take the atan of this by data
producing degree Units, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
atan2Degrees(Data data,
int sampling_mode,
int error_mode)
call binary() to take the atan of this by data
producing degree Units
|
Data |
atanDegrees()
call unary() to take the arctan of this producing
degree Units, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
atanDegrees(int sampling_mode,
int error_mode)
call unary() to take the arctan of this producing
degree Units
|
Data |
binary(Data data,
int op,
int sampling_mode,
int error_mode)
Pointwise binary operation between this (AdaptedData) and data.
|
Data |
binary(Data data,
int op,
MathType new_type,
int sampling_mode,
int error_mode)
Pointwise binary operation between this (AdaptedData) and data.
|
Data |
ceil()
call unary() to take the ceiling of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and
error estimation (Data.NO_ERRORS)
|
Data |
ceil(int sampling_mode,
int error_mode)
call unary() to take the ceiling of this
|
Data |
changeMathType(MathType new_type)
call unary() to clone this except with a new MathType
|
double[][] |
computeRanges(RealType[] reals)
compute ranges of values in this of given RealTypes, using
a dummy DisplayImplJ2D
|
DataShadow |
computeRanges(ShadowType type,
DataShadow shadow)
Recursive version of computeRanges(), called down through
Data object tree.
|
DataShadow |
computeRanges(ShadowType type,
int n)
Compute ranges of values for each of 'n' RealTypes in
DisplayImpl.RealTypeVector.
|
Data |
cos()
call unary() to take the cos of this assuming radian
Units unless this actual Units are degrees,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
cos(int sampling_mode,
int error_mode)
call unary() to take the cos of this assuming radian
Units unless this actual Units are degrees
|
Data |
cosDegrees()
call unary() to take the cos of this assuming degree
Units unless this actual Units are radians,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
cosDegrees(int sampling_mode,
int error_mode)
call unary() to take the cos of this assuming degree
Units unless this actual Units are radians
|
Object |
dataClone()
A VisAD adaptation of clone that works for local or remote Data.
|
Data |
divide(Data data)
call binary() to divide this by data, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
divide(Data data,
int sampling_mode,
int error_mode)
call binary() to divide this by data
|
Data |
exp()
call unary() to take the exponent of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and
error estimation (Data.NO_ERRORS)
|
Data |
exp(int sampling_mode,
int error_mode)
call unary() to take the exponent of this
|
Data |
floor()
call unary() to take the floor of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and
error estimation (Data.NO_ERRORS)
|
Data |
floor(int sampling_mode,
int error_mode)
call unary() to take the floor of this
|
MathType |
getType() |
boolean |
isMissing() |
DataImpl |
local() |
Data |
log()
call unary() to take the log of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and
error estimation (Data.NO_ERRORS)
|
Data |
log(int sampling_mode,
int error_mode)
call unary() to take the log of this
|
String |
longString() |
String |
longString(String pre) |
Data |
max(Data data)
call binary() to take the max of this and data, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
max(Data data,
int sampling_mode,
int error_mode)
call binary() to take the max of this and data
|
Data |
min(Data data)
call binary() to take the min of this and data, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
min(Data data,
int sampling_mode,
int error_mode)
call binary() to take the min of this and data
|
Data |
multiply(Data data)
call binary() to multiply this by data, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
multiply(Data data,
int sampling_mode,
int error_mode)
call binary() to multiply this by data
|
Data |
negate()
call unary() to negate this, using default modes for
sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
negate(int sampling_mode,
int error_mode)
call unary() to negate this
|
Data |
pow(Data data)
call binary() to raise this to data power, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
pow(Data data,
int sampling_mode,
int error_mode)
call binary() to raise this to data power
|
Data |
remainder(Data data)
call binary() to take the remainder of this divided by
data, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation (Data.NO_ERRORS)
|
Data |
remainder(Data data,
int sampling_mode,
int error_mode)
call binary() to take the remainder of this divided by data
|
Data |
rint()
call unary() to take the rint (essentially round)
of this, using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
rint(int sampling_mode,
int error_mode)
call unary() to take the rint (essentially round)
of this
|
Data |
round()
call unary() to take the round of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and error
estimation (Data.NO_ERRORS)
|
Data |
round(int sampling_mode,
int error_mode)
call unary() to take the round of this
|
Data |
sin()
call unary() to take the sin of this assuming radian
Units unless this actual Units are degrees,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
sin(int sampling_mode,
int error_mode)
call unary() to take the sin of this assuming radian
Units unless this actual Units are degrees
|
Data |
sinDegrees()
call unary() to take the sin of this assuming degree
Units unless this actual Units are radians,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
sinDegrees(int sampling_mode,
int error_mode)
call unary() to take the sin of this assuming degree
Units unless this actual Units are radians
|
Data |
sqrt()
call unary() to take the square root of this, using default
modes for sampling (Data.NEAREST_NEIGHBOR) and error
estimation (Data.NO_ERRORS)
|
Data |
sqrt(int sampling_mode,
int error_mode)
call unary() to take the square root of this
|
Data |
subtract(Data data)
call binary() to subtract data from this, using default modes
for sampling (Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
subtract(Data data,
int sampling_mode,
int error_mode)
call binary() to subtract data from this
|
Data |
tan()
call unary() to take the tan of this assuming radian
Units unless this actual Units are degrees,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
tan(int sampling_mode,
int error_mode)
call unary() to take the tan of this assuming radian
Units unless this actual Units are degrees
|
Data |
tanDegrees()
call unary() to take the tan of this assuming degree
Units unless this actual Units are radians,
using default modes for sampling
(Data.NEAREST_NEIGHBOR) and error estimation
(Data.NO_ERRORS)
|
Data |
tanDegrees(int sampling_mode,
int error_mode)
call unary() to take the tan of this assuming degree
Units unless this actual Units are radians
|
Data |
unary(int op,
int sampling_mode,
int error_mode)
Pointwise unary operation applied to this (AdaptedData).
|
Data |
unary(int op,
MathType new_type,
int sampling_mode,
int error_mode)
Pointwise unary operation applied to this (AdaptedData).
|
addReference, getTick, incTick, removeReferenceclone, exportObject, exportObject, exportObject, unexportObjectgetClientHost, getLog, setLogequals, getRef, hashCode, toString, toStubfinalize, getClass, notify, notifyAll, wait, wait, waitgetTick, incTickaddReference, removeReferencepublic RemoteDataImpl(DataImpl data) throws RemoteException
data - adapted DataImplRemoteException - an RMI error occurredpublic DataImpl local() throws VisADException, RemoteException
local in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic MathType getType() throws VisADException, RemoteException
getType in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic boolean isMissing()
throws VisADException,
RemoteException
isMissing in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data binary(Data data, int op, int sampling_mode, int error_mode) throws VisADException, RemoteException
binary in interface Datadata - other Data operand for binary operationop - may be Data.ADD, Data.SUBTRACT, etc; these include all
binary operations defined for Java primitive data typessampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data binary(Data data, int op, MathType new_type, int sampling_mode, int error_mode) throws VisADException, RemoteException
binary in interface Datadata - other Data operand for binary operationop - may be Data.ADD, Data.SUBTRACT, etc; these include all
binary operations defined for Java primitive data typesnew_type - MathType of the resultsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data add(Data data) throws VisADException, RemoteException
add in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data subtract(Data data) throws VisADException, RemoteException
subtract in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data multiply(Data data) throws VisADException, RemoteException
multiply in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data divide(Data data) throws VisADException, RemoteException
divide in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data pow(Data data) throws VisADException, RemoteException
pow in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data max(Data data) throws VisADException, RemoteException
max in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data min(Data data) throws VisADException, RemoteException
min in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan2(Data data) throws VisADException, RemoteException
atan2 in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan2Degrees(Data data) throws VisADException, RemoteException
atan2Degrees in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data remainder(Data data) throws VisADException, RemoteException
remainder in interface Datadata - other Data operand for binary operationVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data add(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
add in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data subtract(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
subtract in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data multiply(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
multiply in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data divide(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
divide in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data pow(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
pow in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data max(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
max in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data min(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
min in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan2(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
atan2 in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan2Degrees(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
atan2Degrees in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data remainder(Data data, int sampling_mode, int error_mode) throws VisADException, RemoteException
remainder in interface Datadata - other Data operand for binary operationsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data unary(int op, int sampling_mode, int error_mode) throws VisADException, RemoteException
unary in interface Dataop - may be Data.ABS, Data.ACOS, etc; these include all
unary operations defined for Java primitive data typessampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data unary(int op, MathType new_type, int sampling_mode, int error_mode) throws VisADException, RemoteException
unary in interface Dataop - may be Data.ABS, Data.ACOS, etc; these include all
unary operations defined for Java primitive data typesnew_type - MathType of the resultsampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data changeMathType(MathType new_type) throws VisADException, RemoteException
changeMathType in interface Datanew_type - MathType of returned Data objectVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data abs() throws VisADException, RemoteException
abs in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data acos() throws VisADException, RemoteException
acos in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data acosDegrees() throws VisADException, RemoteException
acosDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data asin() throws VisADException, RemoteException
asin in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data asinDegrees() throws VisADException, RemoteException
asinDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan() throws VisADException, RemoteException
atan in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atanDegrees() throws VisADException, RemoteException
atanDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data ceil() throws VisADException, RemoteException
ceil in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data cos() throws VisADException, RemoteException
cos in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data cosDegrees() throws VisADException, RemoteException
cosDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data exp() throws VisADException, RemoteException
exp in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data floor() throws VisADException, RemoteException
floor in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data log() throws VisADException, RemoteException
log in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data rint() throws VisADException, RemoteException
rint in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data round() throws VisADException, RemoteException
round in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sin() throws VisADException, RemoteException
sin in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sinDegrees() throws VisADException, RemoteException
sinDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sqrt() throws VisADException, RemoteException
sqrt in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data tan() throws VisADException, RemoteException
tan in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data tanDegrees() throws VisADException, RemoteException
tanDegrees in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data negate() throws VisADException, RemoteException
negate in interface DataVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data abs(int sampling_mode, int error_mode) throws VisADException, RemoteException
abs in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data acos(int sampling_mode, int error_mode) throws VisADException, RemoteException
acos in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data acosDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
acosDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data asin(int sampling_mode, int error_mode) throws VisADException, RemoteException
asin in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data asinDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
asinDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atan(int sampling_mode, int error_mode) throws VisADException, RemoteException
atan in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data atanDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
atanDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data ceil(int sampling_mode, int error_mode) throws VisADException, RemoteException
ceil in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data cos(int sampling_mode, int error_mode) throws VisADException, RemoteException
cos in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data cosDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
cosDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data exp(int sampling_mode, int error_mode) throws VisADException, RemoteException
exp in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data floor(int sampling_mode, int error_mode) throws VisADException, RemoteException
floor in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data log(int sampling_mode, int error_mode) throws VisADException, RemoteException
log in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data rint(int sampling_mode, int error_mode) throws VisADException, RemoteException
rint in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data round(int sampling_mode, int error_mode) throws VisADException, RemoteException
round in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sin(int sampling_mode, int error_mode) throws VisADException, RemoteException
sin in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sinDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
sinDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data sqrt(int sampling_mode, int error_mode) throws VisADException, RemoteException
sqrt in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data tan(int sampling_mode, int error_mode) throws VisADException, RemoteException
tan in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data tanDegrees(int sampling_mode, int error_mode) throws VisADException, RemoteException
tanDegrees in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data negate(int sampling_mode, int error_mode) throws VisADException, RemoteException
negate in interface Datasampling_mode - may be Data.NEAREST_NEIGHBOR or
Data.WEIGHTED_AVERAGEerror_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic double[][] computeRanges(RealType[] reals) throws VisADException, RemoteException
computeRanges in interface Datareals - array of RealTypes whose value ranges to computeVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic DataShadow computeRanges(ShadowType type, int n) throws VisADException, RemoteException
computeRanges in interface Datatype - ShadowType generated for MathType of thisn - number of RealTypes in DisplayImpl.RealTypeVectorVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic DataShadow computeRanges(ShadowType type, DataShadow shadow) throws VisADException, RemoteException
computeRanges in interface Datatype - ShadowType generated for MathType of thisshadow - DataShadow instance whose contained double[][]
array and animation sampling Set are modified
according to RealType values in this, and used
as return valueVisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic Data adjustSamplingError(Data error, int error_mode) throws VisADException, RemoteException
adjustSamplingError in interface Dataerror - error_mode - may be Data.INDEPENDENT, Data.DEPENDENT or
Data.NO_ERRORS;VisADException - a VisAD error occurredRemoteException - an RMI error occurredpublic String longString() throws VisADException, RemoteException
longString in interface DataVisADExceptionRemoteExceptionpublic String longString(String pre) throws VisADException, RemoteException
longString in interface Datapre - String added to start of each lineVisADExceptionRemoteExceptionpublic Object dataClone() throws RemoteException
dataClone in interface DataRemoteExceptionCopyright © 1996–2023 The SSEC Visualization Project. All rights reserved.