use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint2Rgb 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;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint6GpsTime method toMap.
@Override
public MapEx toMap() {
final MapEx map = super.toMap();
addToMap(map, "intensity", this.intensity);
addToMap(map, "returnNumber", getReturnNumber());
addToMap(map, "numberOfReturns", getNumberOfReturns());
addToMap(map, "scanDirectionFlag", this.scanDirectionFlag);
addToMap(map, "edgeOfFlightLine", this.edgeOfFlightLine);
addToMap(map, "classification", this.classification);
addToMap(map, "synthetic", this.synthetic);
addToMap(map, "keyPoint", this.keyPoint);
addToMap(map, "withheld", this.withheld);
addToMap(map, "scanAngle", getScanAngleDegrees());
addToMap(map, "userData", this.userData);
addToMap(map, "pointSourceID", this.pointSourceID);
addToMap(map, "overlap", this.overlap);
addToMap(map, "scannerChannel", this.scannerChannel);
addToMap(map, "gpsTime", this.gpsTime);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class LasPoint9GpsTimeWavePackets 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 AbstractGeoreferencedImage method toMap.
@Override
public MapEx toMap() {
final MapEx map = new LinkedHashMapEx();
addTypeToMap(map, "bufferedImage");
final BoundingBox boundingBox = getBoundingBox();
if (boundingBox != null) {
addToMap(map, "boundingBox", boundingBox.toString());
}
final List<MappedLocation> tiePoints = getTiePoints();
addToMap(map, "tiePoints", tiePoints);
return map;
}
use of com.revolsys.collection.map.MapEx in project com.revolsys.open by revolsys.
the class MappedLocation method toMap.
@Override
public MapEx toMap() {
final MapEx map = new LinkedHashMapEx();
map.put("sourceX", this.sourcePixel.getX());
map.put("sourceY", this.sourcePixel.getY());
map.put("target", this.targetPoint.toEwkt());
return map;
}
Aggregations