-
Notifications
You must be signed in to change notification settings - Fork 1
/
updateBilderwuensche.go
95 lines (78 loc) · 2.07 KB
/
updateBilderwuensche.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
package main
import (
"archive/zip"
"compress/gzip"
"io"
"log"
"os"
"sync"
"github.com/simon04/bldrwnsch/bldrwnsch"
)
func main() {
var wg sync.WaitGroup
channelGeoJSON := make(chan bldrwnsch.Bilderwunsch, 10)
channelGPX := make(chan bldrwnsch.Bilderwunsch, 10)
channelKML := make(chan bldrwnsch.Bilderwunsch, 10)
channels := []chan bldrwnsch.Bilderwunsch{channelGeoJSON, channelGPX, channelKML}
wg.Add(1)
wg.Add(1)
wg.Add(1)
if u, _ := os.LookupEnv("MYSQL_USER"); u != "" {
db := bldrwnsch.OpenDB()
go db.SelectBilderwuensche(channels)
} else {
go bldrwnsch.ReadCsvFile("Bilderwuensche.tsv", channels)
}
go bldrwnsch.ConsumeFeatureAsGeoJSON("Bilderwuensche.geojson", channelGeoJSON, &wg)
go bldrwnsch.ConsumeFeatureAsGPX("Bilderwuensche.gpx", channelGPX, &wg)
go bldrwnsch.ConsumeFeatureAsKML("Bilderwuensche.kml", channelKML, &wg)
wg.Wait()
gzipFile("Bilderwuensche.geojson", "Bilderwuensche.geojson.gz")
gzipFile("Bilderwuensche.gpx", "Bilderwuensche.gpx.gz")
zipFile("Bilderwuensche.kml", "doc.kml", "Bilderwuensche.kmz")
}
func gzipFile(inputFilePath, outputFilePath string) {
inputFile, err := os.Open(inputFilePath)
if err != nil {
panic(err)
}
defer inputFile.Close()
outputFile, err := os.Create(outputFilePath)
if err != nil {
panic(err)
}
defer outputFile.Close()
gzipWriter := gzip.NewWriter(outputFile)
defer gzipWriter.Close()
_, err = io.Copy(gzipWriter, inputFile)
if err != nil {
panic(err)
}
log.Printf("Written %s", outputFilePath)
}
func zipFile(inputFilePath, entryName, outputFilePath string) {
inputFile, err := os.Open(inputFilePath)
if err != nil {
panic(err)
}
defer inputFile.Close()
outputFile, err := os.Create(outputFilePath)
if err != nil {
panic(err)
}
defer outputFile.Close()
zipWriter := zip.NewWriter(outputFile)
defer zipWriter.Close()
entryWriter, err := zipWriter.CreateHeader(&zip.FileHeader{
Name: entryName,
Method: zip.Deflate,
})
if err != nil {
panic(err)
}
_, err = io.Copy(entryWriter, inputFile)
if err != nil {
panic(err)
}
log.Printf("Written %s", outputFilePath)
}