forked from slawler/gdal
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from Dewberry/merge-upstream-slawler
Merge upstream slawler
- Loading branch information
Showing
22 changed files
with
1,085 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
------------- | ||
About | ||
------------- | ||
|
||
The gdal.go package provides a go wrapper for GDAL, the Geospatial Data Abstraction Library. More information about GDAL can be found at http://www.gdal.org | ||
|
||
------------- | ||
Installation | ||
------------- | ||
|
||
1) go get github.com/lukeroth/gdal | ||
2) Set the GDAL library and include directories to the appropriate locations. | ||
3) go build | ||
|
||
------------- | ||
Compatibility | ||
------------- | ||
|
||
This software has been tested most recently on Ubuntu 18.10, GDAL version 2.3.2. | ||
|
||
------------- | ||
Examples | ||
------------- | ||
|
||
------------- | ||
Status (3/08/2019) | ||
------------- | ||
|
||
The majority of GDAL functionality exposed by the C API is available, as well as much of the OGR API. | ||
Most functionality is not covered by tests or benchmarks. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// +build darwin,amd64 | ||
|
||
package gdal | ||
|
||
/* | ||
#cgo pkg-config: gdal | ||
#cgo LDFLAGS: -Wl,-undefined,dynamic_lookup | ||
*/ | ||
import "C" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// +build darwin,arm64 | ||
|
||
package gdal | ||
|
||
/* | ||
#cgo pkg-config: gdal | ||
#cgo LDFLAGS: -Wl,-undefined,dynamic_lookup | ||
*/ | ||
import "C" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// +build linux,amd64 | ||
|
||
package gdal | ||
|
||
/* | ||
#cgo pkg-config: gdal | ||
*/ | ||
import "C" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// +build linux,arm64 | ||
|
||
package gdal | ||
|
||
/* | ||
#cgo pkg-config: gdal | ||
*/ | ||
import "C" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// +build windows,amd64 | ||
|
||
package gdal | ||
|
||
/* | ||
#cgo windows LDFLAGS: -Lc:/gdal/release-1600-x64/lib -lgdal_i | ||
#cgo windows CFLAGS: -IC:/gdal/release-1600-x64/include | ||
*/ | ||
import "C" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.