Skip to content

Commit

Permalink
v0.6.55
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed Dec 6, 2023
1 parent 2843496 commit 6bcde18
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.6.55
* Improvements to the web UI intersections tool.

v0.6.54
* Only check for line self-intersections in web UI if user clicks the "Check line intersections" label.
* Added support for curly-bracket delimited expressions to -run command strings.
Expand Down
8 changes: 8 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,13 @@ Common options: `name=` `+` `target=`
mapshaper counties.shp -lines STATE_FIPS -o boundaries.shp
```

```bash
# Example: add the names of neighboring countries to each section of border
mapshaper countries.geojson \
-lines each='COUNTRIES = A.NAME + (B ? "," + B.NAME : "")' \
-o borders.geojson
```


### -merge-layers

Expand Down Expand Up @@ -1111,6 +1118,7 @@ module.exports = {
return `-i data.json`;
}
};
```


### -shape
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapshaper",
"version": "0.6.54",
"version": "0.6.55",
"description": "A tool for editing vector datasets for mapping and GIS.",
"keywords": [
"shapefile",
Expand Down

0 comments on commit 6bcde18

Please sign in to comment.