summaryrefslogtreecommitdiff
path: root/tests/auto/qgeojson/07-geometrycollection.json
blob: 3e504f02ddb98e292a5db22d456327313f5c1b40 (plain)
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
{
    "type":"GeometryCollection",
    "geometries":[
        {
            "type": "MultiPoint",
            "coordinates": [
                [11,60], [5.5,60.3], [5.7,58.90]
            ]
        },
        {
            "type": "MultiLineString",
            "coordinates": [
              [[13.5, 43], [10.73, 59.92]],
              [[9.15, 45], [-3.15, 58.90]]
            ]
        },
        {
            "type": "MultiPolygon",
            "coordinates": [
                  [
                    [
                      [17.13, 51.11],
                      [30.54, 50.42],
                      [26.74, 58.36],
                      [17.13, 51.11]
                    ]
                  ],
                  [
                    [
                      [19.84, 41.33],
                      [30.45, 49.26],
                      [17.07, 50.10],
                      [19.84, 41.33]
                    ]
                ]
            ]
        }
    ]
}