com.github.mreutegg.laszip4j.lastools.GeoProjectionConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of laszip4j Show documentation
Show all versions of laszip4j Show documentation
The LASzip library ported to Java
/*
* Copyright 2007-2016, martin isenburg, rapidlasso - fast tools to catch reality
*
* This is free software; you can redistribute and/or modify it under the
* terms of the GNU Lesser General Licence as published by the Free Software
* Foundation. See the LICENSE.txt file for more information.
*
* This software is distributed WITHOUT ANY WARRANTY and without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
package com.github.mreutegg.laszip4j.lastools;
// TODO: only contains dummy implementation
public class GeoProjectionConverter {
public boolean parse(int argc, String[] argv) {
return true;
}
public boolean has_projection() {
return false;
}
public boolean get_geo_keys_from_projection(int number_of_keys, GeoProjectionGeoKeys[] geo_keys, int num_geo_double_params, double[] geo_double_params) {
return false;
}
}