Skip to content

Commit

Permalink
v0.6.93
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed May 8, 2024
1 parent 33cc3e9 commit 2baf34d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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.93
* Bug fix

v0.6.92
* Bug fix

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.92",
"version": "0.6.93",
"description": "A tool for editing vector datasets for mapping and GIS.",
"keywords": [
"shapefile",
Expand Down
2 changes: 1 addition & 1 deletion src/gui/gui-display-utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function getDatasetCrsInfo(dataset) {
// prevent GUI message popup on error
internal.setLoggingForCLI();
try {
if (!dataset || internal.datasetIsEmpty(dataset)) {
if (!dataset || internal.datasetIsEmpty(dataset) && !dataset.info?.crs) {
crs = internal.parseCrsString('wgs84');
} else {
crs = internal.getDatasetCRS(dataset);
Expand Down

0 comments on commit 2baf34d

Please sign in to comment.