1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 02:03:14 +00:00
TiddlyWiki5/plugins/tiddlywiki/geospatial/tests/operators/geolookup.tid

64 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2023-04-13 08:39:52 +00:00
title: $:/plugins/tiddlywiki/geospatial/tests/operators/geolookup
2023-03-06 14:06:16 +00:00
description: geolookup operator
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
2023-04-13 08:39:52 +00:00
title: Description
geolookup operator
+
2023-03-06 14:06:16 +00:00
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>