mapshaper 0.5.116 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mapshaper +1 -1
- package/bin/mapshaper-gui +1 -0
- package/mapshaper.js +1837 -136
- package/package.json +17 -12
- package/www/elements.css +2 -2
- package/www/images/close2.png +0 -0
- package/www/index.html +9 -6
- package/www/mapshaper-gui.js +9 -11
- package/www/mapshaper.js +1837 -136
- package/www/modules.js +688 -1836
- package/www/nacis/Makefile +22 -0
- package/www/nacis/Makefile.txt +22 -0
- package/www/nacis/images/close.png +0 -0
- package/www/nacis/images/eye.png +0 -0
- package/www/nacis/images/eye2.png +0 -0
- package/www/nacis/index.html +262 -0
- package/www/nacis/manifest.js +27 -0
- package/www/nacis/map.svg +12308 -0
- package/www/page.css +39 -15
- package/CHANGELOG.md +0 -1388
package/bin/mapshaper
CHANGED
package/bin/mapshaper-gui
CHANGED
|
@@ -247,6 +247,7 @@ function expandShapefiles(files) {
|
|
|
247
247
|
if (isUrl(f)) return; // TODO: try to load aux files from URLs
|
|
248
248
|
addAuxFile(files, f, '.dbf');
|
|
249
249
|
addAuxFile(files, f, '.prj');
|
|
250
|
+
addAuxFile(files, f, '.shx');
|
|
250
251
|
addAuxFile(files, f, '.cpg');
|
|
251
252
|
});
|
|
252
253
|
return files;
|