UNPKG

signalk-parquet

Version:

SignalK plugin and webapp that archives SK data to Parquet files with a regimen control system, advanced querying, Claude integrated AI analysis, spatial capabilities, and REST API.

12 lines (9 loc) 334 B
export function getPluginPath() { const currentPath = window.location.pathname; const pathParts = currentPath.split('/'); const pluginIndex = pathParts.indexOf('plugins'); if (pluginIndex !== -1 && pathParts[pluginIndex + 1]) { return `/plugins/${pathParts[pluginIndex + 1]}`; } return '/plugins/signalk-parquet'; }