Skip to content

Commit 319b9c9

Browse files
committed
fixing licences
1 parent c251218 commit 319b9c9

File tree

8 files changed

+1422
-294
lines changed

8 files changed

+1422
-294
lines changed

CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# delaunator-cpp
2+
3+
**c_cpp_properties.json**
4+
5+
```
6+
{
7+
"configurations": [
8+
{
9+
"name": "CPP Mac",
10+
"includePath": [
11+
"${workspaceFolder}/**",
12+
"/usr/include/**"
13+
],
14+
"defines": [],
15+
"macFrameworkPath": [
16+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks"
17+
],
18+
"compilerPath": "/usr/bin/clang",
19+
"cStandard": "c11",
20+
"cppStandard": "c++17",
21+
"intelliSenseMode": "clang-x64",
22+
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
23+
}
24+
],
25+
"version": 4
26+
}
27+
```

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Vova Bilonenko
3+
Copyright (c) 2018 Volodymyr Bilonenko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

THIRD-PARTY-NOTICES

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Delaunator-cpp is a port of https://github.com/mapbox/delaunator
2+
ISC License
3+
Copyright (c) 2017, Mapbox
4+
5+
6+
For development purpose it uses following third parties (not required for library users)
7+
8+
https://github.com/Tencent/rapidjson
9+
MIT License:
10+
Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip.
11+
12+
BSD License:
13+
Copyright (c) 2006-2013 Alexander Chemeris
14+
15+
JSON License:
16+
Copyright (c) 2002 JSON.org
17+
18+
https://github.com/louisdx/cxx-prettyprint
19+
20+
Boost Software License
21+
Copyright Louis Delacroix 2010 - 2014.
22+
23+
test-files/*
24+
Open Database License
25+
This is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/.
26+
Any rights in individual contents of the database are licensed under the Database Contents License: http://opendatacommons.org/licenses/dbcl/1.0/
27+
28+

src/delaunator.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ class Delaunator{
2020
std::vector<unsigned long int> triangles;
2121
std::vector<long int> halfedges;
2222
std::vector<double> coords;
23-
// long int triangles_len;
2423
private:
2524
double m_center_x;
2625
double m_center_y;

test-files/map-25p.geojson

Lines changed: 0 additions & 280 deletions
This file was deleted.

test-files/map-mercator.geojson

Lines changed: 0 additions & 11 deletions
This file was deleted.

test-files/map.geojson

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)