97 lines
2.3 KiB
JSON
97 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://git.add-ideas.de/lotobo/toolbox-sdk/raw/branch/main/schemas/toolbox-app.v1.schema.json",
|
|
"schemaVersion": 1,
|
|
"id": "de.add-ideas.geo-tools",
|
|
"name": "Geo Tools",
|
|
"version": "0.2.0",
|
|
"description": "Inspect, edit, measure and convert geospatial files locally.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["geography", "data", "files"],
|
|
"tags": [
|
|
"geojson",
|
|
"gpx",
|
|
"kml",
|
|
"track",
|
|
"geometry",
|
|
"measure",
|
|
"coordinates"
|
|
],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": false,
|
|
"workers": false,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{
|
|
"mediaType": "application/geo+json",
|
|
"extensions": [".geojson", ".json"],
|
|
"label": "GeoJSON"
|
|
},
|
|
{
|
|
"mediaType": "application/gpx+xml",
|
|
"extensions": [".gpx"],
|
|
"label": "GPX"
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.google-earth.kml+xml",
|
|
"extensions": [".kml"],
|
|
"label": "KML"
|
|
},
|
|
{
|
|
"mediaType": "text/csv",
|
|
"extensions": [".csv"],
|
|
"label": "Coordinate CSV"
|
|
}
|
|
],
|
|
"produces": [
|
|
{
|
|
"mediaType": "application/geo+json",
|
|
"extensions": [".geojson", ".json"],
|
|
"label": "GeoJSON"
|
|
},
|
|
{
|
|
"mediaType": "application/gpx+xml",
|
|
"extensions": [".gpx"],
|
|
"label": "GPX"
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.google-earth.kml+xml",
|
|
"extensions": [".kml"],
|
|
"label": "KML"
|
|
},
|
|
{
|
|
"mediaType": "text/csv",
|
|
"extensions": [".csv"],
|
|
"label": "Coordinate CSV"
|
|
}
|
|
]
|
|
},
|
|
"capabilities": { "required": [], "optional": ["clipboard-write"] },
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": true,
|
|
"telemetry": false,
|
|
"label": "Inputs stay in this browser; nothing is uploaded."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/geo-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/geo-tools"
|
|
}
|
|
]
|
|
}
|