1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 01:03:16 +00:00
TiddlyWiki5/plugins/tiddlywiki/geospatial/tests/operators/geolookup.tid
2023-04-13 09:39:52 +01:00

64 lines
1.1 KiB
Plaintext

title: $:/plugins/tiddlywiki/geospatial/tests/operators/geolookup
description: geolookup operator
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Description
geolookup operator
+
title: Output
\whitespace trim
<$text text={{{ [geopoint[100.5],[0.5]geolookup{TestData}jsonget[0],[animal]] }}}/>
+
title: TestData
type: application/json
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [102.0,0.5]
},
"properties": {
"animal": "amoeba"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]
]
},
"properties": {
"animal": "snake",
"length": 100.0
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[[100.0,0.0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0]]
]
},
"properties": {
"animal": "boxfish",
"prop1": {
"this": "that"
}
}
}
]
}
+
title: ExpectedResult
<p>boxfish</p>