Skip to content

Commit

Permalink
Support preloading .zip files in mapshaper-gui
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed Feb 19, 2024
1 parent d8abfea commit 08c7426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/mapshaper-file-types.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function couldBeDsvFile(name) {
// File looks like an importable file type
// name: filename or path
export function looksLikeImportableFile(name) {
return !!guessInputFileType(name);
return !!guessInputFileType(name) || isImportableAsBinary(name);
}

// File looks like a directly readable data file type
Expand Down

0 comments on commit 08c7426

Please sign in to comment.