Skip to content

Commit

Permalink
Merge pull request #51 from gregStickle/fix/README-typo
Browse files Browse the repository at this point in the history
#50 README.md: fix dataset -> datasets typo
  • Loading branch information
bugra9 authored Dec 6, 2022
2 parents b395c54 + 2de887c commit 15ea197
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ const Gdal = await initGdalJs();

const files = ['a.mbtiles', 'b.tif']; // [Vector, Raster]
const result = await Gdal.open(files); // https://gdal3.js.org/docs/module-f_open.html
const mbTilesDataset = result.dataset[0];
const tifDataset = result.dataset[1];
const mbTilesDataset = result.datasets[0];
const tifDataset = result.datasets[1];


/* ======== Dataset Info ======== */
Expand Down

0 comments on commit 15ea197

Please sign in to comment.