mapshaper icon indicating copy to clipboard operation
mapshaper copied to clipboard

Tools for editing Shapefile, GeoJSON, TopoJSON and CSV files

Results 130 mapshaper issues
Sort by recently updated
recently updated
newest added

* CMYK versions of color ramps * Support for `cmyk(c,m,y,k)` notation * Interpolation of cmyk colors * Add an option to save values for each channel to a separate field...

I am using pattern of "simonepri" to start this issue. ## **Problem** Possibility of extraction of centroids of polygons. ## **Ideas** For centroids there are few techniques available. Best one...

With this PR, do `mapshaper-gui --manifest manifest.js` and get a custom GUI using the existing `manifest.js` existing mechanism like below ![Sélection_563](https://user-images.githubusercontent.com/642120/141224500-250ac74d-f9d8-47e8-b64a-0c92ed390cab.png) Follow-up to previous question from #511 and answer Current...

## What? When running actions (like `-snap precision=0.001`) it would be nice to get a highlight either on the map or as coordinates when using `-verbose`. ## Why? It would...

Hi may i know, is that mapshaper support any feature on inserting image link to icon properties? Thanks

probablyDecimalDegreeBounds rejects polygons that overlap the antimeridian I've attached the sample geojson files that are an admin1 region of Russia. My "fix" was to comment out the check - perhaps...

Hi there, thanks for creating this awesome software. Discovering it allowed me to develop a new hobby! maybe this is an error in use, but I can't seem to be...

Running the following (pretty high simplification)... mapshaper -i "Brick_maps_2020_region.shp" -simplify 15% weighted keep-shapes stats -clean -o "../../MapShaperOutput/Australia/simplified_au.json" format="geojson" geojson-type="FeatureCollection" Original unsimplified... Simplified (drops polygons - not biggest as documented) Is...

I'm adding support for Weia Reinboud's "Cupola" projection (an equal-area world map projection) to mapshaper's projections library (https://github.com/mbloch/mapshaper-proj). To use this projection, run `proj cupola` in the web UI or...

Specifying only `min-vertices=4` works (removes the polygon with three vervices): ``` echo '{"type":"GeometryCollection", "geometries": [ {"type":"Polygon","coordinates":[[[102,2],[104,2],[104,4],[102,4],[102,2]]]}, {"type":"Polygon","coordinates":[[[100,2],[101.5,4],[98,4],[100,2]]]}, {"type":"Polygon","coordinates":[[[100,0],[101,0],[101,1],[100,1],[100,0]]]} ]}' | mapshaper -i - -filter-islands min-vertices=4 -o - [filter-islands] Removed 1...