你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/523870-geogpxer,源站連結 點此以跳轉。
GeoGPXer is a JavaScript library designed to convert GPX data into GeoJSON format efficiently. It supports the conversion of waypoints, tracks, and routes, with additional handling for GPX extensions.
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.org.cn/scripts/523870/1521198/GeoGPXer.js
# GeoGPXer
GeoGPXer is a JavaScript library designed to convert GPX data into GeoJSON format efficiently. It supports the conversion of waypoints, tracks, and routes, with additional handling for GPX extensions.
## License
This project is free software licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for more details.
## Overview
GeoGPXer provides an easy-to-use API to parse GPX files and convert them into a GeoJSON FeatureCollection, making it suitable for use in web mapping applications and geographic data visualization.
## Features
- **Convert GPX to GeoJSON**: Supports waypoints, tracks, and routes.
- **Handle Extensions**: Converts GPX `` to prefixed GeoJSON properties to avoid conflicts.
- **No External Dependencies**: Lightweight and easy to integrate into various projects.
## Usage
To use GeoGPXer, create an instance of `GeoGPXer` and use its methods to perform the conversion from GPX strings to GeoJSON objects.
### Example
```javascript
var geoGPXer = new GeoGPXer(); // Create a new instance of GeoGPXer
// Sample GPX data input
const gpxData = `...your GPX data...`;
// Parse the GPX data
const xmlDoc = geoGPXer.read(gpxData);
// Convert to GeoJSON
const geoJson = geoGPXer.toGeoJSON(xmlDoc);
console.log(geoJson);
```
## Key Methods
- read(gpxText): Parses a GPX string into an XML Document using DOMParser.
- toGeoJSON(document): Converts an XML Document into a GeoJSON FeatureCollection.
- extractProperties(node): Extracts properties from a GPX node, including handling of by prefixing property names.
## Acknowledgments
The code in this project is derived from the logic of gpx2geojson.