summaryrefslogtreecommitdiffstats
path: root/tests/auto/qgeojson/09-featurecollection.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qgeojson/09-featurecollection.json')
-rw-r--r--tests/auto/qgeojson/09-featurecollection.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/auto/qgeojson/09-featurecollection.json b/tests/auto/qgeojson/09-featurecollection.json
new file mode 100644
index 00000000..f79d2cd1
--- /dev/null
+++ b/tests/auto/qgeojson/09-featurecollection.json
@@ -0,0 +1,44 @@
+{
+ "type":"FeatureCollection",
+ "features": [
+ {
+ "type":"Feature",
+ "id":"Poly",
+ "properties": {
+ "text":"This is a Feature with a Polygon"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [17.13, 51.11],
+ [30.54, 50.42],
+ [26.70, 58.36],
+ [17.13, 51.11]
+ ],
+ [
+ [23.46, 54.36],
+ [20.52, 51.91],
+ [28.25, 51.50],
+ [26.80, 54.36],
+ [23.46, 54.36]
+ ]
+ ]
+ }
+ },
+ {
+ "type":"Feature",
+ "id":"MultiLine",
+ "properties": {
+ "text":"This is a Feature with a MultiLineString"
+ },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [[13.5, 43], [10.73, 59.92]],
+ [[9.15, 45], [-3.15, 58.90]]
+ ]
+ }
+ }
+ ]
+}