Class Image
- java.lang.Object
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.Image
-
public class Image extends Object
Represents an image.- Author:
- Andrea Antonello (www.hydrologis.com)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAltim()doublegetAzim()longgetId()longgetImageDataId()doublegetLat()doublegetLon()StringgetName()longgetNoteId()longgetTs()StringtoString()
-
-
-
Constructor Detail
-
Image
public Image(long id, String name, double lon, double lat, double altim, double azim, long imageDataId, long noteId, long ts)A wrapper for an image.- Parameters:
id- the image id.name- the text of the note.lon- lonlat- lataltim- elevationazim- azimuthimageDataId- image data id.noteId- note id.ts- the timestamp.
-
-
Method Detail
-
getId
public long getId()
-
getLat
public double getLat()
-
getLon
public double getLon()
-
getAltim
public double getAltim()
- Returns:
- the elevation.
-
getAzim
public double getAzim()
- Returns:
- the azimuth.
-
getName
public String getName()
-
getImageDataId
public long getImageDataId()
- Returns:
- the image data id.
-
getNoteId
public long getNoteId()
-
getTs
public long getTs()
- Returns:
- the timestamp.
-
-