Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@osmcha/osm-adiff-parser
Advanced tools
Parse OSM augmented diffs to create JSON representation of changesets
Parses OSM augmented diff XML and returns plain JS objects representing elements mentioned in the diff, grouped by changeset ID.
npm install @osmcha/osm-adiff-parser
import parser from 'osm-adiff-parser';
let changesets = await parser(changesetXmlString);
Input (an augmented diff of a simple changeset which added a couple of tags to an existing node)
<osm version="0.6" generator="Overpass API not used, but achavi detects it at the start of string; OSMExpress/python/examples/augmented_diff.py">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
<action type="modify">
<old>
<node id="2523603738" version="2" user="TheRomanP" uid="3844185" timestamp="2024-06-05T13:51:12Z" changeset="152289357" lon="-121.2881568" lat="47.6647943">
<tag k="highway" v="trailhead" />
</node>
</old>
<new>
<node id="2523603738" version="3" timestamp="2024-08-20T21:36:16Z" uid="8794039" user="jake-low" changeset="155530622" lat="47.6647943" lon="-121.2881568">
<tag k="highway" v="trailhead" />
<tag k="name" v="Necklace Valley Trailhead" />
<tag k="operator" v="US Forest Service" />
<tag k="website" v="https://www.fs.usda.gov/recarea/mbs/recarea/?recid=80228" />
</node>
</new>
</action>
</osm>
Output
{
"155530622": [
{
"id": "2523603738",
"version": "3",
"timestamp": "2024-08-20T21:36:16Z",
"uid": "8794039",
"user": "jake-low",
"changeset": "155530622",
"lat": "47.6647943",
"lon": "-121.2881568",
"old": {
"id": "2523603738",
"version": "2",
"user": "TheRomanP",
"uid": "3844185",
"timestamp": "2024-06-05T13:51:12Z",
"changeset": "152289357",
"lon": "-121.2881568",
"lat": "47.6647943",
"action": "modify",
"type": "node",
"tags": {
"highway": "trailhead"
}
},
"action": "modify",
"type": "node",
"tags": {
"highway": "trailhead",
"name": "Necklace Valley Trailhead",
"operator": "US Forest Service",
"website": "https://www.fs.usda.gov/recarea/mbs/recarea/?recid=80228"
}
}
]
}
This package is a fork of mapbox/osm-adiff-parser which is no longer maintained. Version 2.0.0 of @osmcha/osm-adiff-parser
contains breaking API changes compared to version 1.1.0 of osm-adiff-parser
. See the CHANGELOG for more details.
FAQs
Parse OSM augmented diffs to create JSON representation of changesets
We found that @osmcha/osm-adiff-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.