Package: goexif Version: 0.0~git20150520.0.709fab3-1 Architecture: amd64 Maintainer: Debian Go Packaging Team Installed-Size: 3127 Built-Using: golang-1.10 (= 1.10.4-2ubuntu1) Filename: ./amd64/goexif_0.0~git20150520.0.709fab3-1_amd64.deb Size: 1396784 MD5sum: 6aabaf33502e5827503868789caa548b SHA1: 59ae52bd36643886b15fb2faa81b6d93695c5eae SHA256: 49c8b0fa13a8fbc2669bf2d7e84e6897b6ab4ec1031022a80eb6dd95af495d79 Section: devel Priority: extra Homepage: https://github.com/rwcarlsen/goexif Description: Decode embedded EXIF meta data from image files. goexif Provides decoding of basic exif and tiff encoded data. Still in alpha - no guarantees. Suggestions and pull requests are welcome. Functionality is split into two packages - "exif" and "tiff" The exif package depends on the tiff package. Documentation can be found at http://godoc.org/github.com/rwcarlsen/goexif . Like goexif? - Bitcoin tips welcome: 17M7LFh3ETz4bz83VikB7xuGQskt8K5Lj4 . To install, in a terminal type: . . go get github.com/rwcarlsen/goexif/exif . . Or if you just want the tiff package: . . go get github.com/rwcarlsen/goexif/tiff . . Example usage: . ```go package main . import ( "fmt" "log" "os" "github.com/rwcarlsen/goexif/exif" "github.com/rwcarlsen/goexif/mknote" . ) . func ExampleDecode() { fname := "sample1.jpg" f, err := os.Open(fname) if err != nil { log.Fatal(err) } . // Optionally register camera makenote data parsing - currently Nikon and // Canon are supported. exif.RegisterParsers(mknote.All...) . x, err := exif.Decode(f) if err != nil { log.Fatal(err) } . camModel, _ := x.Get(exif.Model) // normally, don't ignore errors! fmt.Println(camModel.StringVal()) . focal, _ := x.Get(exif.FocalLength) numer, denom, _ := focal.Rat2(0) // retrieve first (only) rat. value fmt.Printf("%v/%v", numer, denom) . // Two convenience functions exist for date/time taken and GPS coords: tm, _ := x.DateTime() fmt.Println("Taken: ", tm) . lat, long, _ := x.LatLong() fmt.Println("lat, long: ", lat, ", ", long) . } ``` githalytics.com alpha (http://githalytics.com/rwcarlsen/goexif) Package: golang-photocp Version: 0.0~git20161231.0.ca5bef3-1 Architecture: amd64 Maintainer: Debian Go Packaging Team Installed-Size: 1807 Built-Using: goexif (= 0.0~git20150520.0.709fab3-1), golang-1.10 (= 1.10.4-2ubuntu1) Filename: ./amd64/golang-photocp_0.0~git20161231.0.ca5bef3-1_amd64.deb Size: 567632 MD5sum: 3a2d5849209f9acecd918996e235787c SHA1: 3fe677864a359f610e6bf747e32948a936e87f5b SHA256: 60da43b9f26a29c40d246081f3a93154eb19f578443428536edff1356ee89630 Section: devel Priority: extra Homepage: TODO Description: TODO: short description Package: libhdfs3 Version: 2.2.30-1 Architecture: amd64 Maintainer: Zhanwei Wang Installed-Size: 3047 Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libgsasl7 (>= 1.1), libkrb5-3 (>= 1.6.dfsg.2), libprotobuf17, libstdc++6 (>= 6), libuuid1 (>= 2.16), libxml2 (>= 2.7.4) Filename: ./amd64/libhdfs3_2.2.30-1_amd64.deb Size: 595420 MD5sum: da162a3f610e0ddf41f77e90ed6baeba SHA1: d99e1535dcb60ba29848a66fbdcffd4f50397fba SHA256: 56e35b515aeb9b933ab55044def424cc85708103c3cb1fa9637b7531b7e1a252 Section: libs Priority: optional Homepage: http://pivotalrd.github.io/libhdfs3/ Description: Native C/C++ HDFS Client Libhdfs3, designed as an alternative implementation of libhdfs, is implemented based on native Hadoop RPC protocol and HDFS data transfer protocol. It gets rid of the drawbacks of JNI, and it has a lightweight, small memory footprint code base. In addition, it is easy to use and deploy. . Libhdfs3 is developed by Pivotal and used in HAWQ, which is a massive parallel database engine in Pivotal Hadoop Distribution. Package: libhdfs3-dev Source: libhdfs3 Version: 2.2.30-1 Architecture: amd64 Maintainer: Zhanwei Wang Installed-Size: 7239 Depends: libhdfs3 (= 2.2.30-1) Filename: ./amd64/libhdfs3-dev_2.2.30-1_amd64.deb Size: 676224 MD5sum: 3cfc981a0af8d208674d713c311e6eb9 SHA1: fc0ee2f2ee73593f8aef0960b865f30545a7a3e3 SHA256: b9c79bcfef34a3ea746cb35380aad3e8368a2c802607c22387081b35e43cede5 Section: libdevel Priority: optional Homepage: http://pivotalrd.github.io/libhdfs3/ Description: Native C/C++ HDFS Client - development files Libhdfs3, designed as an alternative implementation of libhdfs, is implemented based on native Hadoop RPC protocol and HDFS data transfer protocol. It gets rid of the drawbacks of JNI, and it has a lightweight, small memory footprint code base. In addition, it is easy to use and deploy.