Matthew Bloch
Matthew Bloch
I just released a new version (0.4.117) that includes the `-o svg-data=` option, which takes a comma-separated list of field names. This option exports data as `data-*` attributes. There are...
I thought a bit more about field renaming. It's very common to have capital letters in field names, and it would be a hassle to rename fields just to be...
This is not a good "first issue" for someone not familiar with the codebase. It seems like a worthwhile addition... I'll think about the best way to add this functionality.
I'll look into this if you send me an example data file.
Only the web UI has zip file support built in. The node module and command line program do not support zipping and unzipping. You'll have to use a different module...
I see that this format has some great features. And there's a JS implementation available (https://github.com/ngageoint/geopackage-js). On the other hand, geopackage-js is a huge package. The npm install size is...
@cgmike I like the idea of interfacing with `node-gdal`. As you point out, it would enable support for many file formats. It looks like the `node-gdal` project is not being...
I like the idea of interfacing with GDAL to support more file formats. That would give us not only GeoPackage, but also KML, ESRI geodatabase (read-only) and many other widely...
I'd like to add data classification to mapshaper. Maybe there should be a dedicated command, say, `-classify`. In addition to quantiles, there should be support for equal interval, standard deviation,...
I finally added a `-classify` command. It's documented in the wiki [here](https://github.com/mbloch/mapshaper/wiki/Command-Reference#-classify). This new command can generally replace the `-colorizer` command. I added quantile and equal-area methods. I'm happy to...