API Documentation
Loading...
Searching...
No Matches
LASLicense.h
Go to the documentation of this file.
1#pragma once
2
3#include <NDEVR/String.h>
4namespace NDEVR
5{
6 /**--------------------------------------------------------------------------------------------------
7 \brief The license for using libLAS.
8 **/
9 static String LASLicense()
10 {
11 return String(R"license(--------------------------------------------------------------------------
12
13 LICENSE AGREEMENT:
14
15 This software is distributed WITHOUT ANY WARRANTY and without even the
16 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18--------------------------------------------------------------------------
19
20 There are TWO parts of LAStools. One part is OPEN source.
21 The other part is CLOSED source and requires licensing for most
22 commercial or government use. If you're unsure please email
23 'info@rapidlasso.de' before using LAStools.
24 For education and evaluation purposes you can use and test LAStools
25 for free. Some free version tools are may limited in the maximum count
26 of lidar points in one single file to avoid commercial usage.
27
28--------------------------------------------------------------------------
29
30 This part of LAStools is "free" open-source (see COPYING.txt).
31
32 * laszip
33 * lasindex
34 * lasvalidate
35 * lasliberate
36 * lasinfo
37 * las2las
38 * lasdiff
39 * lasmerge
40 * las2txt & txt2las
41 * lasprecision
42 * LASzip
43 * LASlib (with LASzip) - the API used by LAStools.
44
45 These are also "free" to use but not (yet) available in open source.
46
47 * demzip
48 * demdiff
49 * e572las
50 * lasview
51 * laspublish
52 * lasoptimize
53
54--------------------------------------------------------------------------
55
56 The following LAStools require licensing for any commercial, government,
57 or production use. However, they may be used "freely" for all non-profit
58 personal, non-military educational, or non-profit humanitarian purposes.
59 Note that the output of the unlicensed version can be slightly distorted
60 after certain point limits are exceeded. Control output in the console
61 (aka "the black window") informs the user whenever this happens.
62
63 * blast2dem
64 * blast2iso
65
66 * las2dem
67 * las2iso
68 * las2shp & shp2las
69 * las2tin
70 * lasboundary
71 * lasclassify
72 * lasclip
73 * lascolor
74 * lascontrol
75 * lascopy
76 * lasdatum & lasvdatum
77 * lasdistance
78 * lasduplicate
79 * lasgrid & lascanopy
80 * lasground & lasground_new
81 * lasheight & lastrack
82 * laslayers
83 * lasoverage
84 * lasoverlap
85 * lasplanes
86 * lasprobe
87 * lasreturn
88 * lassort
89 * lassplit
90 * lasthin & lasnoise
91 * lastile
92 * lastool
93 * lasvoxel
94
95--------------------------------------------------------------------------
96
97 If you want to use LAStools please contact us for licensing. You can
98
99 (a) license the existing executables for production
100 (b) license the existing executables for inclusion in your software
101
102 You can also contract with rapidlasso GmbH to create LAStools tailored
103 to your particular needs.
104
105 See https://rapidlasso.de/licensing for licensing details.
106
107--------------------------------------------------------------------------
108
109 COPYRIGHT:
110
111 (c) 2007-2022, rapidlasso GmbH, GERMANY - fast tools to catch reality
112
113--------------------------------------------------------------------------)license");
114
115 }
116}
Definition ACIColor.h:37