TiddlyWiki5/plugins/tiddlywiki/geospatial/geotools.js
Saq Imtiaz 785086e0a5
Fixes ESLint errors (#9668)
* fix: apply automatic eslint fixes

* lint: allow hashbang comment for tiddlywiki.js

* lint: first back of manual lint fixes for unused vars

* lint: added more fixes for unused vars

* lint: missed files

* lint: updated eslint config with selected rules from #9669
2026-02-20 08:38:42 +00:00

36 lines
745 B
JavaScript

/*\
title: $:/plugins/tiddlywiki/geospatial/geotools.js
type: application/javascript
module-type: library
Geospatial utilities
\*/
"use strict";
var turf = require("$:/plugins/tiddlywiki/geospatial/turf.js");
/*
Parse a string as a GeoJSON Point
*/
exports.parsePoint = function(str) {
var defaultResult = function() {
return turf.point([0,0,0]);
};
// If the string is missing then return 0,0,0
if(!str) {
return defaultResult();
}
// Convert to an object
var json = $tw.utils.parseJSONSafe(str,null);
if(json === null) {
return defaultResult();
}
// Check it is a valid point
if(turf.getType(json) !== "Point") {
return defaultResult();
}
// Return the string now we know it is a valid GeoJSON Point
return json;
};