use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint4GpsTimeWavePackets method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "wavePacketDescriptorIndex", this.wavePacketDescriptorIndex);
addToMap(map, "byteOffsetToWaveformData", this.byteOffsetToWaveformData);
addToMap(map, "waveformPacketSizeInBytes", this.waveformPacketSizeInBytes);
addToMap(map, "returnPointWaveformLocation", this.returnPointWaveformLocation);
addToMap(map, "xT", this.xT);
addToMap(map, "yT", this.yT);
addToMap(map, "zT", this.zT);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint1GpsTime method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "gpsTime", this.gpsTime);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint3GpsTimeRgb method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "gpsTime", this.gpsTime);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint5GpsTimeRgbWavePackets method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "wavePacketDescriptorIndex", this.wavePacketDescriptorIndex);
addToMap(map, "byteOffsetToWaveformData", this.byteOffsetToWaveformData);
addToMap(map, "waveformPacketSizeInBytes", this.waveformPacketSizeInBytes);
addToMap(map, "returnPointWaveformLocation", this.returnPointWaveformLocation);
addToMap(map, "xT", this.xT);
addToMap(map, "yT", this.yT);
addToMap(map, "zT", this.zT);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint7GpsTimeRgb method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "red", this.red);
addToMap(map, "green", this.green);
addToMap(map, "blue", this.blue);
return map;
}
Aggregations