1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-03 17:26:56 +00:00

Add interactive demos for geounion, geodifference, geointersection

This commit is contained in:
jeremy@jermolene.com 2023-05-31 09:38:19 +01:00
parent 3ee09af9a7
commit 4b653c2547
6 changed files with 207 additions and 0 deletions

View File

@ -11,3 +11,10 @@ Each input list item is interpreted as a [[GeoJSON Polygon Feature Collection]]
```
[geodifference[]]
```
!! Examples
<$testcase>
<$data $compound-tiddler="$:/plugins/tiddlywiki/geospatial/tests/operators/geodifference-interactive"/>
<$data $tiddler="$:/plugins/tiddlywiki/geospatial"/>
</$testcase>

View File

@ -11,3 +11,10 @@ Each input list item is interpreted as a [[GeoJSON Polygon Feature Collection]]
```
[geointersect[]]
```
!! Examples
<$testcase>
<$data $compound-tiddler="$:/plugins/tiddlywiki/geospatial/tests/operators/geointersect-interactive"/>
<$data $tiddler="$:/plugins/tiddlywiki/geospatial"/>
</$testcase>

View File

@ -11,3 +11,10 @@ Each input list item is interpreted as a [[GeoJSON Polygon Feature Collection]]
```
[geounion[]]
```
!! Examples
<$testcase>
<$data $compound-tiddler="$:/plugins/tiddlywiki/geospatial/tests/operators/geounion-interactive"/>
<$data $tiddler="$:/plugins/tiddlywiki/geospatial"/>
</$testcase>

View File

@ -0,0 +1,62 @@
title: $:/plugins/tiddlywiki/geospatial/tests/operators/geodifference-interactive
description: geodifference operator interactive example
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Description
geodifference operator interactive example
+
title: Output
\whitespace trim
<$geomap
state=<<qualify "$:/state/demo-map">>
startPosition="bounds"
layersPanel="open"
>
<$geolayer json={{LayerOne}} name="LayerOne" color="red"/>
<$geolayer json={{LayerTwo}} name="LayerTwo" color="yellow"/>
<$geolayer json={{{ =[{LayerOne}] =[{LayerTwo}] +[geodifference[]] }}} name="Difference of LayerOne and LayerTwo" color="blue"/>
</$geomap>
+
title: LayerOne
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[100.0,0.0],[102.0,0.0],[102.0,2.0],[100.0,2.0],[100.0,0.0]]
]
}
}
]
}
+
+
title: LayerTwo
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[101.0,1.0],[103.0,1.0],[103.0,3.0],[101.0,3.0],[101.0,1.0]]
]
}
}
]
}
+
title: ExpectedResult
<p><div style="width:100%;height:600px;"></div></p>

View File

@ -0,0 +1,62 @@
title: $:/plugins/tiddlywiki/geospatial/tests/operators/geointersect-interactive
description: geointersect operator interactive example
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Description
geointersect operator interactive example
+
title: Output
\whitespace trim
<$geomap
state=<<qualify "$:/state/demo-map">>
startPosition="bounds"
layersPanel="open"
>
<$geolayer json={{LayerOne}} name="LayerOne" color="red"/>
<$geolayer json={{LayerTwo}} name="LayerTwo" color="yellow"/>
<$geolayer json={{{ =[{LayerOne}] =[{LayerTwo}] +[geointersect[]] }}} name="Intersection of LayerOne and LayerTwo" color="blue"/>
</$geomap>
+
title: LayerOne
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[100.0,0.0],[102.0,0.0],[102.0,2.0],[100.0,2.0],[100.0,0.0]]
]
}
}
]
}
+
+
title: LayerTwo
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[101.0,1.0],[103.0,1.0],[103.0,3.0],[101.0,3.0],[101.0,1.0]]
]
}
}
]
}
+
title: ExpectedResult
<p><div style="width:100%;height:600px;"></div></p>

View File

@ -0,0 +1,62 @@
title: $:/plugins/tiddlywiki/geospatial/tests/operators/geounion-interactive
description: geounion operator interactive example
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Description
geounion operator interactive example
+
title: Output
\whitespace trim
<$geomap
state=<<qualify "$:/state/demo-map">>
startPosition="bounds"
layersPanel="open"
>
<$geolayer json={{LayerOne}} name="LayerOne" color="red"/>
<$geolayer json={{LayerTwo}} name="LayerTwo" color="yellow"/>
<$geolayer json={{{ =[{LayerOne}] =[{LayerTwo}] +[geounion[]] }}} name="Union of LayerOne and LayerTwo" color="blue"/>
</$geomap>
+
title: LayerOne
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[100.0,0.0],[102.0,0.0],[102.0,2.0],[100.0,2.0],[100.0,0.0]]
]
}
}
]
}
+
+
title: LayerTwo
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[101.0,1.0],[103.0,1.0],[103.0,3.0],[101.0,3.0],[101.0,1.0]]
]
}
}
]
}
+
title: ExpectedResult
<p><div style="width:100%;height:600px;"></div></p>