Class Las
- java.lang.Object
-
- org.hortonmachine.gears.io.las.core.Las
-
- Direct Known Subclasses:
ALasReader,ALasWriter
public abstract class Las extends Object
Las superclass.- Author:
- Andrea Antonello (www.hydrologis.com)
-
-
Constructor Summary
Constructors Constructor Description Las()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ALasReadergetReader(File lasFile)Get a las reader.static ALasReadergetReader(File lasFile, org.opengis.referencing.crs.CoordinateReferenceSystem crs)Get a las reader.static ALasWritergetWriter(File lasFile, org.opengis.referencing.crs.CoordinateReferenceSystem crs)Get a las writer.
-
-
-
Method Detail
-
getReader
public static ALasReader getReader(File lasFile) throws Exception
Get a las reader.- Parameters:
lasFile- the file to read.- Returns:
- the las reader.
- Throws:
Exception- if something goes wrong.
-
getReader
public static ALasReader getReader(File lasFile, org.opengis.referencing.crs.CoordinateReferenceSystem crs) throws Exception
Get a las reader.- Parameters:
lasFile- the file to read.crs- theCoordinateReferenceSystem.- Returns:
- the las reader.
- Throws:
Exception- if something goes wrong.
-
getWriter
public static ALasWriter getWriter(File lasFile, org.opengis.referencing.crs.CoordinateReferenceSystem crs) throws Exception
Get a las writer.- Parameters:
lasFile- the file to write.crs- theCoordinateReferenceSystemto be written in the prj.- Returns:
- the las writer.
- Throws:
Exception- if something goes wrong.
-
-