-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopyright
2232 lines (2103 loc) · 101 KB
/
copyright
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: QGIS
Upstream-Contact: [email protected]
Source: https://github.com/qgis/QGIS
Files: *
Copyright: Carl Anderson
Christoph Spoerri <[email protected]>
Ivan Lucena <[email protected]>
Jens Oberender <[email protected]>
Leonardo Lami <[email protected]>
Marco Pasetti <[email protected]>
Masaru Hoshi <[email protected]>
Mateusz Loskot <[email protected]>
Tisham Dhar <[email protected]>
Werner Macho <[email protected]>
1997-1998, Lars Doelle <[email protected]>
2003, Denis Antipov <[email protected]>
2003-2004, Steve Halasz <[email protected]>
2004, Peter Brewer <[email protected]>
2004-2005, Gavin Macaulay <[email protected]>
2004-2005, Lars Luthman <[email protected]>
2004-2005, Mark Coletti <[email protected]>
2005, Brendan Morley <[email protected]>
2006, Ionut Iosifescu Enescu
2006-2007, Robert Knight <[email protected]>
2006-2007, Tom Elwertowski <[email protected]>
2007, Peter Ersts <[email protected]>
2007-2008, Matthew Perry
2008, Alessandro Furieri <[email protected]>
2008, Paolo L. Scala, Barbara Rita Barricelli, Marco Padula
2008, Stefan Ziegler
2000, 2009, Richard Kostecky <[email protected]>
2008-2009, Maciej Sieczka <[email protected]>
2009, Andres Manz <[email protected]>
2009, Diego Moreira <[email protected]>
2009, Florian El Ahdab <[email protected]>
2009, Godofredo Contreras <[email protected]>
2009, Lorenzo Masini <[email protected]>
2009, Mathias Walker <[email protected]>
2009, Paolo Cavallini <[email protected]>
2009, Vita Cizek <[email protected]>
2002-2005, 2007, 2009-2010, Gary E.Sherman <[email protected]>
2009-2010, Manuel Massing <m.massing at warped-space.de>
2010, Ivan Mincik <[email protected]>
2010, Jack R, Maxim Dubinin (GIS-Lab) <[email protected]>
2010, Jeremy Palmer <[email protected]>
2010, Michael Minn <[email protected]>
2010, NextGIS (http://nextgis.org)
2010, Pirmin Kalberer <[email protected]>
2010, Sourcepole <[email protected]>
2008-2011, Carson J. Q. Farmer <[email protected]>
2009-2011, Sergey Yakushev <[email protected]>
2009, 2011, Luiz Motta <[email protected]>
2011, German Carrillo <[email protected]>
2011, SunilRajKiran-kCube <[email protected]>
2007, 2009, 2012, Magnus Homann <[email protected]>
2009-2012, Giuseppe Sucameli <[email protected]>
2010-2012, Marco Bernasocchi <[email protected]>
2012, Arunmozhi <[email protected]>
2012, Anita Graser <[email protected]>
2012, Australia Indonesia Facility for Disaster Reduction
2012, Carterix Geomatics
2012, Etienne Tourigny <[email protected]>
2008, 2012, Horst Düster
2003-2005, 2007-2013, Tim Sutton <[email protected]>
2008-2013, Borys Jurgiel <[email protected]>
2012-2013, Chris Crook <[email protected]>
2012-2013, Larry Shaffer <[email protected]>
2012-2013, Massimo Endrighi <[email protected]>
2012-2013, Salvatore Larosa <[email protected]>
2012-2013, Vinayan Parameswaran <[email protected]>
2013, Alvaro Huarte <[email protected]>
2013, CS Systemes d'information (CS SI) <[email protected]>
2013, Joshua Arnott <[email protected]
2012-2013, René-Luc D'Hont <[email protected]>
2004-2014, Marco Hugentobler <[email protected]>
2005, 2012, 2014, Hugo Mercier <[email protected]>
2011-2012, 2014, Nathan Woodrow <[email protected]>
2008-2012, 2014, Jürgen E. Fischer <[email protected]>
2011, 2014, Tamas Szekeres <[email protected]>
2009-2014, Alexander Bruy <[email protected]>
2012-2014, Matthias Kuhn <[email protected]>
2012-2014, Piotr Pociask <[email protected]>
2011, 2013-2014, Bernhard Ströbl <[email protected]>
2013-2014, Martin Isenburg <[email protected]>
2014, Agresta S. Coop <[email protected]>
2014, Alessandro Pasotti <[email protected]>
2014, Angelos Tzotsos <[email protected]>
2014, Giovanni Allegri
2014, Michael Douchin
2014, Niccolo' Marchi <[email protected]>
2014, Radoslaw Guzinski <[email protected]>
2004-2006, 2009-2015, Radim Blazek <[email protected]>
2005-2015, Martin Dobias <[email protected]>
2012-2015, Victor Olaya <[email protected]>
2012-2015, The QGIS Project
2012-2015, Denis Rouzaud <[email protected]>
2013-2015, Nyall Dawson <[email protected]>
2014-2015, Arnaud Morvan <[email protected]>
2014-2015, Sandro Mani <[email protected]>
2014-2015, Sandro Santilli <[email protected]>
2014-2015, Tom Kralidis <[email protected]>
2015, Michael Kirk <[email protected]>
License: GPL-2+
Files: qgis.dtd
Copyright: disclaimed
License: public-domain
This DTD describes the maplayers and their symbology and
is used when saving/restoring a QGIS project.
This file is in the public domain
Files: python/ext-libs/dateutil/*
Copyright: 2003-2010, Gustavo Niemeyer <[email protected]>
License: BSD-3-Clause
Files: python/ext-libs/httplib2/*
Copyright: 2006, 2012, Joe Gregorio <[email protected]>
License: GPL-2+
Files: python/ext-libs/httplib2/socks.py
Copyright: 2006, Dan-Haim
License: BSD-2-Clause
Files: python/ext-libs/jinja2/*
Copyright: 2006-2010, the Jinja Team
License: BSD-3-Clause
Files: python/ext-libs/markupsafe/*
Copyright: 2010, 2013, Armin Ronacher
License: BSD-3-Clause
Files: python/ext-libs/owslib/*
Copyright: 2006, Ancient World Mapping Center
2008-2013, Tom Kralidis
2013, Christian Ledermann <[email protected]>
2012, Brad Hards <[email protected]>
2012, Jachym Cepicky
2007-2009, STFC <http://www.stfc.ac.uk>
2004-2006, Sean C. Gillies
2005, Nuxeo SARL <http://nuxeo.com>
License: BSD-3-Clause
Files: python/ext-libs/pygments/*
Copyright: 2006-2013, the Pygments team
License: BSD-2-Clause
Files: python/ext-libs/pygments/lexers/_robotframeworklexer.py
Copyright: 2006-2013, the Pygments team
2012, Nokia Siemens Networks Oyj
License: BSD-2-Clause and Apache-2.0
Files: python/ext-libs/pyspatialite/*
Copyright: 2004-2010, Gerhard Häring <[email protected]>
License: Zlib
Files: python/ext-libs/pytz/*
Copyright: 2003-2009, Stuart Bishop <[email protected]>
License: MIT
Files: python/ext-libs/six.py
Copyright: 2010-2014, Benjamin Peterson
License: MIT
Files: python/plugins/fTools/*
Copyright: 2009, Carson J.Q. Farmer
License: MIT
Files: python/plugins/GdalTools/*
Copyright: 2009, Faunalia
License: MIT
Files: python/plugins/processing/modeler/ModelerArrowItem.py
Copyright: 2010, Nokia Corporation and/or its subsidiary(-ies)
2010, Riverbank Computing Limited
License: BSD-3-Clause
Files: python/plugins/processing/algs/qgis/voronoi.py
Copyright: 2012, Victor Olaya
1994, AT&T Bell Laboratories
Comment: Voronoi diagram calculator/ Delaunay triangulator
Translated to Python by Bill Simons
September, 2005
.
Additional changes by Carson Farmer added November 2010
.
Calculate Delaunay triangulation or the Voronoi polygons for a set of
2D input points.
.
Derived from code bearing the following notice:
.
The author of this software is Steven Fortune. Copyright (c) 1994 by AT&T
Bell Laboratories.
Permission to use, copy, modify, and distribute this software for any
purpose without fee is hereby granted, provided that this entire notice
is included in all copies of any software which is or includes a copy
or modification of this software and in all copies of the supporting
documentation for such software.
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR AT&T MAKE ANY
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
.
Comments were incorporated from Shane O'Sullivan's translation of the
original code into C++ (http://mapviewer.skynet.ie/voronoi.html)
.
Steve Fortune's homepage: http://netlib.bell-labs.com/cm/cs/who/sjf/index.html
License: GPL-2+
Files: src/app/gps/qwtpolar-0.1/*
src/app/gps/qwtpolar-1.0/*
Copyright: 2008, Uwe Rathmann
Comment: This library is free software; you can redistribute it and/or
modify it under the terms of the Qwt License, Version 1.0
License: QWT-1.0
Files: src/app/qtmain_android.cpp
Copyright: 2009-2011, BogDan Vatra <[email protected]>
License: BSD-3-Clause
Files: src/astyle/*
Copyright: Jim Pattee <[email protected]>
Tal Davidson
Comment: Artistic Style is maintained and updated by Jim Pattee.
The original author was Tal Davidson, Israel.
License: LGPL-2.1+
Files: src/core/gps/config.h
src/core/gps/context.c
src/core/gps/context.h
src/core/gps/gmath.c
src/core/gps/gmath.h
src/core/gps/info.c
src/core/gps/info.h
src/core/gps/nmeatime.h
src/core/gps/parse.c
src/core/gps/parse.h
src/core/gps/parser.h
src/core/gps/sentence.c
src/core/gps/sentence.h
src/core/gps/time.c
src/core/gps/tok.c
src/core/gps/tok.h
src/core/gps/units.h
Copyright: Tim <[email protected]>
License: LGPL-2+
Files: src/core/pal/*
Copyright: 2008, Maxence Laurent, MIS-TIC, HEIG-VD
License: GPL-3+
Files: src/core/pal/rtree.hpp
Copyright: disclaimed
Comment: from http://www.superliminal.com/
.
AUTORS
- 1983 Original algorithm and test code by Antonin Guttman and Michael Stonebraker, UC Berkely
- 1994 ANCI C ported from original test code by Melinda Green - [email protected]
- 1995 Sphere volume fix for degeneracy problem submitted by Paul Brook
- 2004 Templated C++ port by Greg Douglas
- 2008 Portability issues fixed by Maxence Laurent
License: public-domain
LICENSE : Entirely free for all uses. Enjoy!
This File is in the public domain
Files: src/core/symbology-ng/qgscolorbrewerpalette.cpp
Copyright: 2002, Cynthia Brewer, Mark Harrower, and The Pennsylvania State University
2009, by Martin Dobias
License: Apache-2.0 and GPL-2+
Files: src/gui/raster/qwt5_histogram_item.h
Copyright: 1997, Josef Wilgen
2002, Uwe Rathmann
License: QWT-1.0
Files: src/gui/symbology-ng/characterwidget.cpp
src/gui/symbology-ng/characterwidget.h
Copyright: 2009, Nokia Corporation and/or its subsidiary(-ies)
License: QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3
Files: src/plugins/dxf2shp_converter/builder.cpp
src/plugins/dxf2shp_converter/builder.h
Copyright: 1999, Frank Warmerdam <[email protected]>
Comment: The code is heavily based on Christopher Michaelis' DXF to
Shapefile Converter (http://www.wanderingidea.com/content/view/12/25/),
released under GPL License
.
This code is based on two other products:
DXFLIB (http://www.ribbonsoft.com/dxflib.html)
This is a library for reading DXF files, also GPL.
SHAPELIB (http://shapelib.maptools.org/)
Used for the Shapefile functionality.
License: MIT
Files: src/plugins/dxf2shp_converter/shapelib-1.2.10/*
Copyright: 1999, 2001-2002, Frank Warmerdam
License: MIT or LGPL-2+
Files: src/plugins/dxf2shp_converter/dxflib/src/*
Copyright: 2001-2013, RibbonSoft GmbH
2001, Robert J. Campbell Jr
License: GPL-2+ or dxflib-Commercial-License
Files: src/plugins/evis/*
Copyright: 2007, American Museum of Natural History
License: LGPL-2+
Files: src/plugins/globe/osgEarthQt/ViewerWidget.cpp
src/plugins/globe/osgEarthUtil/Controls.cpp
Copyright: 2008-2012, Pelican Mapping
License: LGPL-2+
Files: src/plugins/grass/qtermwidget/BlockArray.*
Copyright: 2000, Stephan Kulow <[email protected]>
2008, e_k <[email protected]>
License: GPL-2+
Files: src/plugins/grass/qtermwidget/Emulation.cpp
Copyright: 1996, Matthias Ettrich <[email protected]>
1997-1998, Lars Doelle <[email protected]>
2007, Robert Knight <[email protected]>
2008, e_k <[email protected]>
License: GPL-2+
Files: src/plugins/grass/qtermwidget/k3process.cpp
src/plugins/grass/qtermwidget/k3process.h
src/plugins/grass/qtermwidget/k3processcontroller.cpp
src/plugins/grass/qtermwidget/k3processcontroller.h
Copyright: 1997, Christian Czezakte <[email protected]>
2008, e_k <[email protected]>
License: LGPL-2+
Files: src/plugins/grass/qtermwidget/konsole_wcwidth.*
Copyright: 2011, Markus Kuhn
License: public-domain
This file is in the public domain
Files: src/plugins/grass/qtermwidget/kpty.cpp
src/plugins/grass/qtermwidget/kpty.h
src/plugins/grass/qtermwidget/kpty_p.h
Copyright: 2002, Waldo Bastian <[email protected]>
2002-2003, 2007, Oswald Buddenhagen <[email protected]>
2008, e_k <[email protected]>
License: LGPL-2+
Files: src/plugins/grass/qtermwidget/qtermwidget.cpp
src/plugins/grass/qtermwidget/qtermwidget.h
Copyright: 2008, e_k <[email protected]>
2009, Lorenzo "Il Rugginoso" Masini <[email protected]>
License: LGPL-2+
Files: src/plugins/grass/qtermwidget/TerminalCharacterDecoder.cpp
src/plugins/grass/qtermwidget/TerminalCharacterDecoder.h
Copyright: 2006-2007, Robert Knight <[email protected]>
2008, e_k <[email protected]>
License: LGPL-2+
Files: src/providers/oracle/ocispatial/main.cpp
src/providers/oracle/ocispatial/qsql_ocispatial.cpp
Copyright: 2012, Digia Plc and/or its subsidiary(-ies)
2012-2013, Juergen E. Fischer <[email protected]>
License: QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3
Files: src/providers/oracle/ocispatial/qsql_ocispatial.h
src/providers/oracle/ocispatial/qsqlcachedresult_p.h
src/providers/spatialite/qspatialite/qsql_spatialite.cpp
src/providers/spatialite/qspatialite/qsql_spatialite.h
src/providers/spatialite/qspatialite/qsqlcachedresult_p.h
src/providers/spatialite/qspatialite/smain.cpp
Copyright: 2012, Digia Plc and/or its subsidiary(-ies)
License: QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3
Files: tests/qt_modeltest/modeltest.cpp
tests/qt_modeltest/modeltest.h
tests/qt_modeltest/tst_modeltest.cpp
Copyright: 2011, Nokia Corporation and/or its subsidiary(-ies)
License: QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3
Files: tests/qt_modeltest/dynamictreemodel.cpp
tests/qt_modeltest/dynamictreemodel.h
Copyright: 2009, Stephen Kelly <[email protected]>
License: QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3
Files: tests/testdata/cpt-city/gmt/*
Copyright: 2004, 2010, Paul Wessel, SOEST
2004, 2010, Andreas Trawoeger
2004, 2010, Walter Smith, NOAA
License: GPL-2+
Files: cmake/Bison.cmake
cmake/FindExpat.cmake
cmake/FindGRASS.cmake
cmake/FindPostgres.cmake
cmake/FindProj.cmake
cmake/FindSqlite3.cmake
cmake/Flex.cmake
Copyright: 2007, Martin Dobias <wonder.sk at gmail.com>
License: BSD-3-Clause
Files: cmake/FindFcgi.cmake
Copyright: 2010, Marco Hugentobler
License: BSD-3-Clause
Files: cmake/FindGDAL.cmake
Copyright: 2007, Magnus Homann <magnus at homann dot se>
License: BSD-3-Clause
Files: cmake/FindGEOS.cmake
Copyright: 2008, Mateusz Loskot <[email protected]>
Comment: based on FindGDAL.cmake by Magnus Homann
License: BSD-3-Clause
Files: cmake/FindGSL.cmake
Copyright: 2004, Felix Woelk
Jan Woetzel
License: BSD-3-Clause
Files: cmake/FindIconv.cmake
cmake/PyQt4Macros.cmake
Copyright: 2009, Juergen E. Fischer <jef at norbit dot de>
License: BSD-3-Clause
Files: cmake/FindLibPython.py
cmake/FindPyQt.py
cmake/FindSIP.py
Copyright: 2007, Simon Edwards <[email protected]>
License: BSD-3-Clause
Files: cmake/FindOSGEARTH.cmake
Copyright: 2011-2013, Pirmin Kalberer
2011, Jürgen E. Fischer <jef at norbit.de>
2013, William Kyngesburye
License: BSD-3-Clause
Files: cmake/FindPyQt4.cmake
Copyright: 2007-2008, Simon Edwards <[email protected]>
License: BSD-3-Clause
Files: cmake/FindPythonLibrary.cmake
cmake/FindSIP.cmake
cmake/PythonMacros.cmake
cmake/SIPMacros.cmake
Copyright: 2007, Simon Edwards <[email protected]>
License: BSD-3-Clause
Files: cmake/FindQextserialport.cmake
cmake/FindQwtPolar.cmake
cmake/Txt2Tags.cmake
Copyright: 2011, Jürgen E. Fischer <jef at norbit.de>
License: BSD-3-Clause
Files: cmake/FindQGIS.cmake
Copyright: Tim Sutton
License: BSD-3-Clause
Files: cmake/FindQsci.cmake
cmake/QsciAPI.cmake
Copyright: 2012, Larry Shaffer <[email protected]>
License: BSD-3-Clause
Files: cmake/FindQsci.py
Copyright: 2012, Larry Shaffer <[email protected]>
2012, The QGIS Project
License: BSD-3-Clause
Files: cmake/FindQScintilla.cmake
Copyright: 2007, Thomas Moenicke [email protected]
License: BSD-3-Clause
Files: cmake/FindQwt.cmake
Copyright: 2010, Tim Sutton <tim at linfiniti.com>
License: BSD-3-Clause
Files: cmake/FindSPATIALITE.cmake
Copyright: 2009, Sandro Furieri <a.furieri at lqt.it>
License: BSD-3-Clause
Files: cmake/MacBundleMacros.cmake
Copyright: 2010-2013, William Kyngesburye
2012, Larry Shaffer
License: BSD-3-Clause
Files: cmake/MacPlistMacros.cmake
Copyright: 2011, William Kyngesburye
License: BSD-3-Clause
Files: cmake/PythonCompile.py
Copyright: Simon Edwards <[email protected]>
License: public-domain
PythonCompile.py was written by Simon Edwards, and is placed in the public
domain. The author hereby disclaims copyright to this source code.
Files: cmake/UsePythonTest.cmake
Copyright: 2006-2010, Mathieu Malaterre <[email protected]>
License: BSD-3-Clause
Files: images/themes/default/*
Copyright: 2011, Robert Szczepanek
Anita Graser
Comment: GIS icons by Robert Szczepanek is licensed under a Creative Commons
Attribution-Share Alike 3.0 Unported License. Feel free to use it in any GIS
software or for other purposes. I only ask you to let me know about that and
to include licence.txt file in your work.
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/bhw/*
Copyright: 2011, Blackheartedworf (http://blackheartedwolf.deviantart.com/)
License: CC-BY-3.0
Files: resources/cpt-city-qgis-min/cb/*
Copyright: 2002, Cynthia Brewer, Pennsylvania State University
2002, Mark Harrower, University of Wisconsin-Madison
Comment: This product includes color specifications and designs developed by
Cynthia Brewer (http://colorbrewer.org/).
License: Apache-Style-Software-License-Version-1.1
Files: resources/cpt-city-qgis-min/dg/*
Copyright: 2011, Dave Green, Cavendish Laboratory, University of Cambridge
License: public-domain
Contributed to the public domain. Citation of the paper describing
the motivation for and design of the schemes
.
http://adsabs.harvard.edu/abs/2011BASI...39..289G
.
requested.
Files: resources/cpt-city-qgis-min/ds/*
Copyright: 2006, Diane Simoni (Webgoddess)
Comment: Additional rules listed at the source
.
"Feel free to use them as you wish; however, I would LOVE to see what you make from them."
.
URL: http://webgoddess.deviantart.com/art/Reddish-Inspired-Gradients-42208824
License: webgoddess
1. These are the general rules. Any additional rules will be listed
in the individual deviation descriptions.
2. My gradients can be used anywhere anytime.
3. If you use them on dA, I would appreciate a link back to the gradients,
so other people can find them.
4. I would also LOVE to see your piece and I will probably fav it.
Files: resources/cpt-city-qgis-min/ds9/*
Copyright: 2010, William Joye
License: GPL-3+
Files: resources/cpt-city-qgis-min/es/*
Copyright: 2008, ElvenSword (http://elvensword.deviantart.com/)
Comment: Credit requested for use, required for distribution
License: ElvenSword
For use:
.
* Using for commercial works, prints:
Yes. There is no need ask permission first, or after.
My resources are free for personal or commercial arts works. Credit is
enough if possible, if there is a description. Note link to me not
necessary. But it is good, I can not see them otherwise, feel free
about it.
.
* Using in only DA:
I submit them only DA yes, but you may use out of DA.
.
For distribute:
.
* I like sharing. So okay distributing my resources with credit,
for good, for free. But,
.
* Do not distribute my resource files without original preview.
('cause previews including credit. Credit is important point on
this situation.)
.
* Do not remove my name on it (preview). I saw some Turkish and
Russian forum sites delete artists names though, and they puting
their own cursed crappy logos on the previews. It is not sharing.
It is ...
.
* Do not create collection with new preview, claiming open or close
they're your own creations.
.
* Do not Rip/Merge with other artists work. Example: All in one
gradients by Merger/Ripper Nickname) for download/sell
.
* Thanks
Files: resources/cpt-city-qgis-min/fme/*
Copyright: 2005, Fred M. Erickson
License: GPL-2+
Files: resources/cpt-city-qgis-min/gery/*
Copyright: 2011, Gery
License: public-domain
Contributed to the Public Domain by the author.
Files: resources/cpt-city-qgis-min/ggr/*
Copyright: 2006, The GIMP team
License: GPL-2+
Files: resources/cpt-city-qgis-min/gist/*
Copyright: 1996, David H. Munro
License: BSD-like-gist
Copyright (c) 1996. The Regents of the University of California.
All rights reserved.
.
Permission to use, copy, modify, and distribute this software for any
purpose without fee is hereby granted, provided that this entire
notice is included in all copies of any software which is or includes
a copy or modification of this software and in all copies of the
supporting documentation for such software.
.
This work was produced at the University of California, Lawrence
Livermore National Laboratory under contract no. W-7405-ENG-48 between
the U.S. Department of Energy and The Regents of the University of
California for the operation of UC LLNL.
.
.
DISCLAIMER
.
This software was prepared as an account of work sponsored by an
agency of the United States Government. Neither the United States
Government nor the University of California nor any of their
employees, makes any warranty, express or implied, or assumes any
liability or responsibility for the accuracy, completeness, or
usefulness of any information, apparatus, product, or process
disclosed, or represents that its use would not infringe
privately-owned rights. Reference herein to any specific commercial
products, process, or service by trade name, trademark, manufacturer,
or otherwise, does not necessarily constitute or imply its
endorsement, recommendation, or favoring by the United States
Government or the University of California. The views and opinions of
authors expressed herein do not necessarily state or reflect those of
the United States Government or the University of California, and
shall not be used for advertising or product endorsement purposes.
.
.
AUTHOR
.
David H. Munro wrote Yorick and Gist. Berkeley Yacc (byacc) generated
the Yorick parser. The routines in Math are from LAPACK and FFTPACK;
MathC contains C translations by David H. Munro. The algorithms for
Yorick's random number generator and several special functions in
Yorick/include were taken from Numerical Recipes by Press, et. al.,
although the Yorick implementations are unrelated to those in
Numerical Recipes. A small amount of code in Gist was adapted from
the X11R4 release, copyright M.I.T. -- the complete copyright notice
may be found in the (unused) file Gist/host.c.
Files: resources/cpt-city-qgis-min/gmt/*
Copyright: 2004, 2010, Paul Wessel, SOEST
2004, 2010, Andreas Trawoeger
2004, 2010, Walter Smith, NOAA
License: GPL-2+
Files: resources/cpt-city-qgis-min/go2/webtwo/*
Copyright: 2007, Go Squared
License: go-squared
http://downloads.gosquared.com/vectors/Gradients_01.svg
.
These grads were made and are distributed for free by
Go Squared Ltd. You may use them as you wish, but
mentioning us or buying a Square would go down really
well.
Files: resources/cpt-city-qgis-min/gps/*
Copyright: 2012, Ramón Miranda
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/grass/*
Copyright: 2009, GRASS Development Team
License: GPL-3+
Files: resources/cpt-city-qgis-min/h5/*
Copyright: 2009, Steven G. Johnson, MIT
License: MIT
Files: resources/cpt-city-qgis-min/jjg/cbac/*
resources/cpt-city-qgis-min/jjg/cbcont/*
resources/cpt-city-qgis-min/jjg/polarity/*
Copyright: 2004, J.J. Green
License: Apache-Style-Software-License-Version-1.1
Files: resources/cpt-city-qgis-min/jjg/dem/*
resources/cpt-city-qgis-min/jjg/misc/*
resources/cpt-city-qgis-min/jjg/physics/*
tests/testdata/cpt-city/jjg/misc/*
Copyright: 2004, J.J. Green
License: public-domain
You can use this free for any purpose. It's in the public domain. It has no
warranty.
Files: resources/cpt-city-qgis-min/jm/*
Copyright: 2005, Jim Mossman
License: Jim-Mossman-Attribution
Files: resources/cpt-city-qgis-min/km/*
Copyright: 2012, Kenneth Moreland
License: public-domain
Contributed to the public domain by the author,
April 2012.
Files: resources/cpt-city-qgis-min/mby/*
Copyright: 2012, M. Burak YIKILMAZ, UC Davis Department of Geology
License: GPL-2+
Files: resources/cpt-city-qgis-min/ncl/*
Copyright: 2011, University Corporation for Atmospheric Research (UCAR)
License: NCL
.
NCL - UNIX Version 6.0.0
Copyright (C) 2011
University Corporation for Atmospheric Research
.
NCL Source Code License
.
Copyright (c) 2011 University Corporation for Atmospheric Research
(UCAR). All rights reserved. Developed by NCAR's Computational and
Information Systems Laboratory, UCAR, www.cisl.ucar.edu, with the
following contributions:
.
dcdflib
The University of Texas, M.D. Anderson Cancer Center
http://www.netlib.org/random/
.
FFTPACK5
Copyright 1995-2004
UCAR
http://www.cisl.ucar.edu/css/software/fftpack5/
.
GRIBEX
Copyright (c) 1981-2010
European Centre for Medium-Range Weather Forecast
http://www.ecmwf.int/products/data/software/grib.html
.
LAPACK
Copyright (c) 1999
Society for Industrial and Applied Mathematics
http://www.netlib.org/lapack/lug/lapack_lug.html
.
random
The University of Texas, M.D. Anderson Cancer Center
http://www.netlib.org/random/
.
RANGS / GSHHS
Dr. Rainer Feistel
Baltic Sea Research Institute Warnemunde
http://www.io-warnemuende.de/homepages/rfeistel/
.
Spherepack (V3.1)
Copyright (c) 1998
UCAR
http://www.cisl.ucar.edu/css/software/spherepack/
.
UDUNITS-2
Copyright 2008, 2009
University Corporation for Atmospheric Research
http://www.unidata.ucar.edu/software/udunits/udunits-2/udunits2.html
.
Udunits extensions from ncview
David Pierce, UCSD
http://meteora.ucsd.edu/~pierce/ncview_home_page.html
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
Neither the names of NCAR's Computational and Information Systems
Laboratory, the University Corporation for Atmospheric Research, nor
the names of its contributors may be used to endorse or promote
products derived from this Software without specific prior written
permission.
.
Redistributions of source code must retain the above copyright
notice, this list of conditions, and the disclaimer below.
.
Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer below in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
SOFTWARE.
Files: resources/cpt-city-qgis-min/nd/*
Copyright: 2007, Nevit Dilmen
Comment: License statement from
http://nevit.deviantart.com/art/900gradients-for-GIMP-Inkscape-103771340
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/ngdc/*
Copyright: 2009, Elliot Lim, NOAA/NGDC
2009, Greg Reed, Australian Ocean Data Centre Joint Facility
2009, Lester M. Anderson, CASP, UK
2009, Jesse Varner, NOAA/NGDC
Comment: Derived from GMT_globe and GMT_haxby which are licensed
under the GPL.
.
ETOPO1.cpt contributed to the archive by Jesse Varner,
Feb 2009; ETOPO1-Reed.cpt contributed to the archive
by Greg Reed, April 2012
License: GPL-2+
Files: resources/cpt-city-qgis-min/ocal/*
Copyright: 2004, Alan Horkan
Comment: Open clipart library (http://www.openclipart.org/)
License: Open-Clipart
Files: resources/cpt-city-qgis-min/os/*
Copyright: 2011, UK Ordnance Survey
Comment: License text available online at
http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/
License: OPL-PSI-1.0
Files: resources/cpt-city-qgis-min/pd/*
Copyright: 2007, Piecrust Design
License: public-domain
You can use this free for any purpose. It's in the public domain. It has no
warranty.
Files: resources/cpt-city-qgis-min/rf/*
Copyright: 1999, Rich Franzen
License: public-domain-attribution
May be used without restriction, but I would appreciate
credit if you implement this technique in your own code.
Files: resources/cpt-city-qgis-min/saga/*
Copyright: 2012, O. Conrad, Universität Hamburg
2012, J. Böhner, Universität Hamburg
License: GPL-2+
Files: resources/cpt-city-qgis-min/tp/*
Copyright: 2011, Tom Patterson
Comment: License statement from
http://www.shadedrelief.com/physical/pages/use.html
License: Tom-Patterson
Terms of Use
.
All versions of the Physical Map of the Coterminous United States found on
this website are in the public domain. You may use the maps in any manner,
including modifying the content and design, electronic dissemination, and
offset printing. The author, Tom Patterson, renounces all financial claim
to the maps and invites you to use them for personal, educational, and
commercial purposes.
.
No permission is needed to use the Physical Map of the Coterminous United
States. Crediting the author is unnecessary. However, if you wish to cite
the map, simply use the following: Tom Patterson.
.
All users of the Physical Map of the Coterminous United States are highly
encouraged to read about data sources and manipulation in the About the
map section.
.
The author provides the Physical Map of the Coterminous United States as
a public service and is not responsible for any problems relating to
accuracy, content, design, and how others use it.
.
Enjoy the terrain!
Files: resources/cpt-city-qgis-min/ukmo/*
Copyright: 2011, UK Met Office
Comment: License text available online at
http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/
License: OPL-PSI-1.0
Files: resources/cpt-city-qgis-min/wkp/country/*
Copyright: 2008, 2011, 2012, Bourrichon
2008, 2011, 2012, Eric Gaba
2008, 2011, 2012, PZmaps
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/encyclopedia/*
Copyright: 2012, Unknown
License: public-domain
Public domain due to age
Files: resources/cpt-city-qgis-min/wkp/ice/*
Copyright: 2008, Eric Gaba
License: GDFL-1.2+-no-invariant-sections
.
Any use of this map can be made as long as you credit me
(Eric Gaba, Wikimedia Commons user: Sting) as the author
and distribute the copies and derivative works under the
same license(s) that the one(s) stated below. A message
with a reply address would also be greatly appreciated.
.
I, the copyright holder of this work, hereby publish it under
the following licenses:
.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software
Foundation; with no Invariant Sections, no Front-Cover Texts,
and no Back-Cover Texts. A copy of the license is included in
the section entitled "GNU Free Documentation License".
.
On Debian systems, the complete text of the GNU Free Documentation
License version 1.2 can be found in the file
`/usr/share/common-licenses/GFDL-1.2'.
Files: resources/cpt-city-qgis-min/wkp/jarke/*
resources/cpt-city-qgis-min/wkp/jarke/*
Copyright: 2013, Jarke
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/knutux/*
Copyright: 2012, Knutux (Andrius Ramanauskas)
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/lilleskut/*
Copyright: 2012, Lilleskut
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/plumbago/*
Copyright: 2009, Plumbago
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/precip/*
Copyright: 2012, PZmaps
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/schwarzwald/*
Copyright: 2012, Jide
2012, W-j-s
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/shadowxfox/*
Copyright: 2013, Shadowxfox
License: CC-BY-SA-3.0
Files: resources/cpt-city-qgis-min/wkp/template/*
Copyright: 2008, Eric Gaba
License: public-domain
You can use this free for any purpose. It's in the public domain. It has no
warranty.
Files: resources/cpt-city-qgis-min/wkp/tubs/*
Copyright: 2012, TUBS
License: CC-BY-SA-3.0
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License version 2
an be found in the `/usr/share/common-licenses/Apache-2.0' file.
License: Apache-Style-Software-License-Version-1.1
Apache-Style Software License for ColorBrewer software and ColorBrewer
Color Schemes
.
Version 1.1
.
Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania
State University. All rights reserved.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
1. Redistributions as source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
.
2. The end-user documentation included with the redistribution, if any,
must include the following acknowledgment:
.
"This product includes color specifications and designs developed by
Cynthia Brewer (http://colorbrewer.org/)."
.
Alternately, this acknowledgment may appear in the software
itself, if and wherever such third-party acknowledgments normally appear.
.
4. The name "ColorBrewer" must not be used to endorse or promote products derived
from this software without prior written permission. For written permission, please
contact Cynthia Brewer at [email protected].
.
5. Products derived from this software may not be called "ColorBrewer", nor may "ColorBrewer"
appear in their name, without prior written permission of Cynthia Brewer.
.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CYNTHIA BREWER, MARK HARROWER, OR THE
PENNSYLVANIA STATE UNIVERSITY BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.