public interface Grid
| Modifier and Type | Interface and Description |
|---|---|
static class |
Grid.InterpolationMethod |
| Modifier and Type | Field and Description |
|---|---|
static int |
BICUBIC
Bicubic interpolation method.
|
static int |
BILINEAR
Bilinear interpolation method.
|
static int |
NEAREST
Nearest interpolation method.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getColumnNumber()
Get the number of columns of this grid.
|
double |
getDX()
Real world interval between two consecutive columns.
|
double |
getDY()
Real world interval between two consecutive row.
|
int |
getRowNumber()
Get the number of rows of this grid.
|
double[] |
getValue(double x,
double y,
Grid.InterpolationMethod method)
Get the value corrsponding to the x,y position.
|
double |
getX0()
Get the real world abscisse (x) of the first column.
|
double |
getXL()
Get the first ordinate of the last grid column.
|
double |
getY0()
Get the real world ordinate (y) of the first row.
|
double |
getYL()
Get the second ordinate of the last grid row.
|
static final int NEAREST
static final int BILINEAR
static final int BICUBIC
int getColumnNumber()
int getRowNumber()
double getX0()
double getY0()
double getXL()
double getYL()
double getDX()
double getDY()
double[] getValue(double x,
double y,
Grid.InterpolationMethod method)
throws OutOfExtentException,
InterpolationMethodException
x - y - method - OutOfExtentExceptionInterpolationMethodExceptionCopyright © 2019 CNRS. All rights reserved.