go - 适合 geojson 解码的结构类型

标签 go

我想将 geojson 字符串解码为合适的结构类型。 我有三个不同的 geojson 字符串,我想将它们解码到同一个结构中:

var jsonBlobPointString = []byte(`{"Type":"Point", "Coordinates":[1.1,2.0]}`)
var jsonBlobLineString = []byte(`{"Type":"LineString", "Coordinates":[[1.1,2.0],[3.0,6.3]]}`)
var jsonBlobPolygonString = []byte(`{"Type":"Polygon", "Coordinates":[[[1.1,2.0],[3.0,6.3],[5.1,7.0],[1.1,2.0]]]}`)

我想出了一个我不太满意的结构类型:

type GeojsonType struct {
    Type string
    Coordinates interface{}
}

完整示例请参见此链接: http://play.golang.org/p/Bt-51BX__A

我宁愿不对坐标使用 interface{}。 相反,我会使用一些能给我一些验证的东西,例如 Coordinates [] float64 for Point 和 Coordinates[][] float64 用于 LineString。

是否可以创建一个结构类型,以便 Point、LineString 和 Polygon 都可以在不使用接口(interface)的情况下用坐标表示?

最佳答案

你想要的是从同一个 json 字典创建 3 种不同类型的对象。

据我所知这是不可能的,但是您可以使用 RawMessage类型以延迟 json 解码并使用一些预处理 like this

package main

import (
    "encoding/json"
    "fmt"
)

type Point struct {
    Coordinates []float64
}

type Line struct {
    Points [][]float64
}

type Polygon struct {
    Lines [][][]float64
}

type GeojsonType struct {
    Type        string
    Coordinates json.RawMessage
    Point       Point
    Line        Line
    Polygon     Polygon
}

var jsonBlob = []byte(`[
{"Type":"Point", "Coordinates":[1.1,2.0]},
{"Type":"LineString", "Coordinates":[[1.1,2.0],[3.0,6.3]]},
{"Type":"Polygon", "Coordinates":[[[1.1,2.0],[3.0,6.3],[5.1,7.0],[1.1,2.0]]]}
]`)

func main() {
    var geojsonPoints []GeojsonType
    err := json.Unmarshal(jsonBlob, &geojsonPoints)
    if err != nil {
        fmt.Println("error:", err)
    }

    // Postprocess the coordinates  

    for i := range geojsonPoints {
        t := &geojsonPoints[i]

        switch t.Type {
        case "Point":
            err = json.Unmarshal(t.Coordinates, &t.Point.Coordinates)
        case "LineString":
            err = json.Unmarshal(t.Coordinates, &t.Line.Points)
        case "Polygon":
            err = json.Unmarshal(t.Coordinates, &t.Polygon.Lines)
        default:
            panic("Unknown type")
        }
        if err != nil {
            fmt.Printf("Failed to convert %s: %s", t.Type, err)
        }
        fmt.Printf("%+v\n", t)
    }
}

哪个打印

&{Type:Point Coordinates:[91 49 46 49 44 50 46 48 93] Point:{Coordinates:[1.1 2]} Line:{Points:[]} Polygon:{Lines:[]}}
&{Type:LineString Coordinates:[91 91 49 46 49 44 50 46 48 93 44 91 51 46 48 44 54 46 51 93 93] Point:{Coordinates:[]} Line:{Points:[[1.1 2] [3 6.3]]} Polygon:{Lines:[]}}
&{Type:Polygon Coordinates:[91 91 91 49 46 49 44 50 46 48 93 44 91 51 46 48 44 54 46 51 93 44 91 53 46 49 44 55 46 48 93 44 91 49 46 49 44 50 46 48 93 93 93] Point:{Coordinates:[]} Line:{Points:[]} Polygon:{Lines:[[[1.1 2] [3 6.3] [5.1 7] [1.1 2]]]}}

关于go - 适合 geojson 解码的结构类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15719532/

相关文章:

pointers - 通过 channel 发送指针

rest - 如何防止 SQL 注入(inject)并提高 REST API 的安全性?

go - 检查一张 map 的键是否存在于另一张 map 中

golang 中的 xml 解析(我想单独访问详细信息中的每个元素)

mongodb - $ in不使用mongodb比较golang中的所有值

ssl - 未知权威机构签署的 x509 证书

go - 在外壳程序脚本中运行时,“go get”命令不会生成bin文件夹

bash - 去工具 vert 。 |& grep -v vendor ;真

go - 为什么我在 for 循环的函数末尾缺少返回值

amazon-web-services - AWS 单 session 还是多 session ?