GeohashPigUDF:一个 UDF,可以将 2-d latlon 对编码为 1-d geohash

时间:2024-07-04 17:54:38
【文件属性】:

文件名称:GeohashPigUDF:一个 UDF,可以将 2-d latlon 对编码为 1-d geohash

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-04 17:54:38

Java

GeohashPigUDF 通过以下方式构建 UDF: mvn clean package 然后可以通过 REGISTER 命令将打包的 jar 导入到 pig 脚本中,并像其他 UDF 一样使用。 使用 UDF 的示例: REGISTER /root/pig/udfs/geohash-1.0-SNAPSHOT.jar; A = LOAD '/user/root/data/crimes.csv' USING PigStorage('\t'); B = FILTER A BY NOT($19 == '') AND NOT($20 == ''); C = FOREACH B GENERATE *,geohash.Encode($19, $20, 12);


【文件预览】:
GeohashPigUDF-master
----src()
--------main()
----pom.xml(3KB)
----README.md(433B)

网友评论