forked from lukeroth/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utilities.go
172 lines (153 loc) · 4.48 KB
/
utilities.go
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
package gdal
/*
#include "go_gdal.h"
#include "gdal_version.h"
#cgo linux pkg-config: gdal
#cgo darwin pkg-config: gdal
#cgo windows LDFLAGS: -Lc:/gdal/release-1600-x64/lib -lgdal_i
#cgo windows CFLAGS: -IC:/gdal/release-1600-x64/include
*/
import "C"
import (
"fmt"
"unsafe"
)
var _ = fmt.Println
/* --------------------------------------------- */
/* Command line utility wrapper functions */
/* --------------------------------------------- */
// gdalwarp
func stringArrayContains(array []string, needle string) bool {
for _, s := range array {
if s == needle {
return true
}
}
return false
}
func Warp(dstDS string, sourceDS []Dataset, options []string) (Dataset, error) {
if dstDS == "" {
dstDS = "MEM:::"
if !stringArrayContains(options, "-of") {
options = append([]string{"-of", "MEM"}, options...)
}
}
length := len(options)
opts := make([]*C.char, length+1)
for i := 0; i < length; i++ {
opts[i] = C.CString(options[i])
defer C.free(unsafe.Pointer(opts[i]))
}
opts[length] = (*C.char)(unsafe.Pointer(nil))
warpopts := C.GDALWarpAppOptionsNew(
(**C.char)(unsafe.Pointer(&opts[0])),
(*C.GDALWarpAppOptionsForBinary)(unsafe.Pointer(nil)))
defer C.GDALWarpAppOptionsFree(warpopts)
srcDS := make([]C.GDALDatasetH, len(sourceDS))
for i, ds := range sourceDS {
srcDS[i] = ds.cval
}
var cerr C.int
cdstDS := C.CString(dstDS)
defer C.free(unsafe.Pointer(cdstDS))
ds := C.GDALWarp(cdstDS, nil,
C.int(len(sourceDS)),
(*C.GDALDatasetH)(unsafe.Pointer(&srcDS[0])),
warpopts, &cerr)
if cerr != 0 {
return Dataset{}, fmt.Errorf("warp failed with code %d", cerr)
}
return Dataset{ds}, nil
}
func Translate(dstDS string, sourceDS Dataset, options []string) (Dataset, error) {
if dstDS == "" {
dstDS = "MEM:::"
if !stringArrayContains(options, "-of") {
options = append([]string{"-of", "MEM"}, options...)
}
}
length := len(options)
opts := make([]*C.char, length+1)
for i := 0; i < length; i++ {
opts[i] = C.CString(options[i])
defer C.free(unsafe.Pointer(opts[i]))
}
opts[length] = (*C.char)(unsafe.Pointer(nil))
translateopts := C.GDALTranslateOptionsNew(
(**C.char)(unsafe.Pointer(&opts[0])),
(*C.GDALTranslateOptionsForBinary)(unsafe.Pointer(nil)))
defer C.GDALTranslateOptionsFree(translateopts)
var cerr C.int
cdstDS := C.CString(dstDS)
defer C.free(unsafe.Pointer(cdstDS))
ds := C.GDALTranslate(cdstDS,
sourceDS.cval,
translateopts, &cerr)
if cerr != 0 {
return Dataset{}, fmt.Errorf("translate failed with code %d", cerr)
}
return Dataset{ds}, nil
}
func VectorTranslate(dstDS string, sourceDS []Dataset, options []string) (Dataset, error) {
if dstDS == "" {
dstDS = "MEM:::"
if !stringArrayContains(options, "-f") {
options = append([]string{"-f", "MEM"}, options...)
}
}
length := len(options)
opts := make([]*C.char, length+1)
for i := 0; i < length; i++ {
opts[i] = C.CString(options[i])
defer C.free(unsafe.Pointer(opts[i]))
}
opts[length] = (*C.char)(unsafe.Pointer(nil))
translateopts := C.GDALVectorTranslateOptionsNew(
(**C.char)(unsafe.Pointer(&opts[0])),
(*C.GDALVectorTranslateOptionsForBinary)(unsafe.Pointer(nil)))
defer C.GDALVectorTranslateOptionsFree(translateopts)
srcDS := make([]C.GDALDatasetH, len(sourceDS))
for i, ds := range sourceDS {
srcDS[i] = ds.cval
}
var cerr C.int
cdstDS := C.CString(dstDS)
defer C.free(unsafe.Pointer(cdstDS))
ds := C.GDALVectorTranslate(cdstDS, nil,
C.int(len(sourceDS)),
(*C.GDALDatasetH)(unsafe.Pointer(&srcDS[0])),
translateopts, &cerr)
if cerr != 0 {
return Dataset{}, fmt.Errorf("vector translate failed with code %d", cerr)
}
return Dataset{ds}, nil
}
func Rasterize(dstDS string, sourceDS Dataset, options []string) (Dataset, error) {
if dstDS == "" {
dstDS = "MEM:::"
if !stringArrayContains(options, "-f") {
options = append([]string{"-of", "MEM"}, options...)
}
}
length := len(options)
opts := make([]*C.char, length+1)
for i := 0; i < length; i++ {
opts[i] = C.CString(options[i])
defer C.free(unsafe.Pointer(opts[i]))
}
opts[length] = (*C.char)(unsafe.Pointer(nil))
rasterizeopts := C.GDALRasterizeOptionsNew(
(**C.char)(unsafe.Pointer(&opts[0])),
(*C.GDALRasterizeOptionsForBinary)(unsafe.Pointer(nil)))
defer C.GDALRasterizeOptionsFree(rasterizeopts)
var cerr C.int
cdstDS := C.CString(dstDS)
defer C.free(unsafe.Pointer(cdstDS))
ds := C.GDALRasterize(cdstDS, nil,
sourceDS.cval,
rasterizeopts, &cerr)
if cerr != 0 {
return Dataset{}, fmt.Errorf("rasterize failed with code %d", cerr)
}
return Dataset{ds}, nil
}