The Robot Application Programming Interface Delegate Project
|
Single (or multiple) line range scan. More...
Public Member Functions | |
RangeScanConfig () | |
RangeScanConfig (RangeScanConfig other) | |
boolean | equals (Object o) |
int | hashCode () |
Object | copy_from (Object src) |
This is the implementation of the Copyable interface. | |
String | toString () |
String | toString (String desc, int indent) |
Static Public Member Functions | |
static Object | create () |
Public Attributes | |
String | frameName = "" |
Reference frame. | |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 | scanLengths = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
Descriptions of rows from the same scan-line. | |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 | scanAzimuth = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
Horizontal shot angles of samples in a scan-line for those sensors that have static horizontal spacing. | |
float | scanAzimuthScale |
Scaling factor to convert azimuth units to radians. | |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 | scanElevation = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
Vertical shot angles of samples for those sensors that have static vertical spacing between scan lines. | |
float | scanElevationScale |
Scaling factor to convert elevation units to radians. | |
float | rangeScale |
Scaling factor to convert range units to meters. | |
float | intensityScale |
Scaling factor to convert byte value to intensity units FIXME: this is underspecified. |
RangeScanConfig | ( | ) |
RangeScanConfig | ( | RangeScanConfig | other | ) |
Object copy_from | ( | Object | src | ) |
This method will perform a deep copy of src
This method could be placed into RangeScanConfigTypeSupport
rather than here by using the -noCopyable
option to rtiddsgen.
src | The Object which contains the data to be copied. |
this
. NullPointerException | If src is null. |
ClassCastException | If src is not the same type as this . |
Reimplemented from Message.
static Object create | ( | ) | [static] |
boolean equals | ( | Object | o | ) |
int hashCode | ( | ) |
String toString | ( | String | desc, |
int | indent | ||
) |
String toString | ( | ) |
Reimplemented from Message.
String frameName = "" |
float intensityScale |
What are intensity units?
float rangeScale |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 scanAzimuth = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
For sensors with dynamic horizontal spacing, this sequence will be empty and the corresponding member in RangeScanSample will be used.
float scanAzimuthScale |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 scanElevation = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
For sensors with dynamic vertical spacing, this sequence will be empty and the corresponding member in RangeScanSample will be used.
float scanElevationScale |
gov.nasa.rapid.idl.dds.rapid.ShortSequence64 scanLengths = (gov.nasa.rapid.idl.dds.rapid.ShortSequence64) gov.nasa.rapid.idl.dds.rapid.ShortSequence64.create() |
If instrument is a single line scanner, this is unused. If instrument has multiple scan lines, this defines which samples belong to which scan line. e.g. if there are 4 scan lines of 100 points each, the Sample vector would be of size 400, and rowLengths = {100, 100, 100, 100}.