我们的组织spatial-go
正式成立,这是我们的第一个开源项目Geoos
,Geoos
提供有关空间数据和几何算法,使用Go
语言包装实现。
欢迎大家使用并提出宝贵意见!
1.algorithm 定义了计算几何的算法. 2.clusters 定义了空间计算的算法. 3.coordtransform 定义了坐标转换的算法. 4.example 代码示例. 5.geoencoding 定义了各种编码解码的方法. 6.grid 用于生成网格数据. 7.index 定义空间索引算法. 8.planar 封装平面空间运算和几何算法的实现. 9.space 封装空间线性矢量几何. 10.utils 实用程序的函数.
以计算面积Area
为例。
package main
import (
"bytes"
"fmt"
"github.com/spatial-go/geoos/geoencoding"
"github.com/spatial-go/geoos/planar"
)
func main() {
// First, choose the default algorithm.
strategy := planar.NormalStrategy()
// Secondly, manufacturing test data and convert it to geometry
const polygon = `POLYGON((-1 -1, 1 -1, 1 1, -1 1, -1 -1))`
// geometry, _ := wkt.UnmarshalString(polygon)
buf0 := new(bytes.Buffer)
buf0.Write([]byte(polygon))
geometry, _ := geoencoding.Read(buf0, geoencoding.WKT)
// Last, call the Area () method and get result.
area, e := strategy.Area(geometry)
if e != nil {
fmt.Printf(e.Error())
}
fmt.Printf("%f", area)
// get result 4.0
}
Example: geoencoding example_encoding.go
我们也将秉承“开放、共创、共赢”的目标理念在空间计算领域贡献自己的一份力量。
非常欢迎你的加入!提一个 Issue
联系邮箱: [email protected]