Skip to content

Commit c2252fe

Browse files
authored
Merge pull request #222 from opengeospatial/chris-little-MulriPolygon-2
Correct MultiPolygon examples
2 parents 21e7d23 + 2dddfbd commit c2252fe

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

standard/clause_specification_text.adoc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,8 +1841,8 @@ Domain example of a MultiPolygon:
18411841
"dataType": "polygon",
18421842
"coordinates": ["x","y"],
18431843
"values": [
1844-
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
1845-
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ]
1844+
[ [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
1845+
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ] ]
18461846
]
18471847
},
18481848
"z": { "values": [2] },
@@ -1866,8 +1866,8 @@ Coverage example of a MultiPolygon:
18661866
"dataType": "polygon",
18671867
"coordinates": ["x","y"],
18681868
"values": [
1869-
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
1870-
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ]
1869+
[ [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
1870+
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ] ]
18711871
]
18721872
},
18731873
"z": { "values": [2] },
@@ -1903,9 +1903,9 @@ Domain example of a MultiPolygon where one polygon has a hole:
19031903
"dataType": "polygon",
19041904
"coordinates": ["x", "y"],
19051905
"values": [
1906-
[ [[40, 40], [20, 45],[45, 30], [40, 40]] ],
1907-
[ [[20, 35],[10, 30],[10, 10],[30, 5],[45, 20],[20, 35]],
1908-
[[30, 20],[20, 15],[20, 25],[30, 20]] ]
1906+
[ [ [[40, 40], [20, 45],[45, 30], [40, 40]] ],
1907+
[ [[20, 35],[10, 30],[10, 10],[30, 5],[45, 20],[20, 35]],
1908+
[[30, 20],[20, 15],[20, 25],[30, 20]] ] ]
19091909
]
19101910
},
19111911
"z": {
@@ -1933,9 +1933,9 @@ Coverage example of a MultiPolygon where one of the Polygons has a hole.
19331933
"dataType": "polygon",
19341934
"coordinates": ["x", "y"],
19351935
"values": [
1936-
[ [[40, 40],[20, 45],[45, 30],[40, 40]] ],
1937-
[ [[20, 35],[10, 30],[10, 10],[30, 5],[45, 20],[20, 35]],
1938-
[[30, 20],[20, 15],[20, 25],[30, 20]] ]
1936+
[ [ [[40, 40],[20, 45],[45, 30],[40, 40]] ],
1937+
[ [[20, 35],[10, 30],[10, 10],[30, 5],[45, 20],[20, 35]],
1938+
[[30, 20],[20, 15],[20, 25],[30, 20]] ] ]
19391939
]
19401940
},
19411941
"z": {
@@ -1981,8 +1981,8 @@ Domain example of a MultiPolygonSeries:
19811981
"dataType": "polygon",
19821982
"coordinates": ["x","y"],
19831983
"values": [
1984-
[ [[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]] ],
1985-
[ [[200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0]] ]
1984+
[ [ [[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]] ],
1985+
[ [[200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0]] ] ]
19861986
]
19871987
},
19881988
"z": { "values": [2] },
@@ -2006,8 +2006,8 @@ Coverage example of a MultiPolygonSeries:
20062006
"dataType": "polygon",
20072007
"coordinates": ["x","y"],
20082008
"values": [
2009-
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
2010-
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ]
2009+
[ [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ],
2010+
[ [ [200.0, 10.0], [201.0, 10.0], [201.0, 11.0], [200.0, 11.0], [200.0, 10.0] ] ] ]
20112011
]
20122012
},
20132013
"z": { "values": [2] },

0 commit comments

Comments
 (0)