opengeos / lidar

A Python package for delineating nested surface depressions from digital elevation data.
https://lidar.gishub.org
MIT License
248 stars 53 forks source link

Minor bug/typo in lidar.ipynb #36

Closed rafelafrance closed 10 months ago

rafelafrance commented 10 months ago

Description

While working thru the example notebook lidar.ipynb, I could not open the zip file in cell 4.

What I Did

To fix, change: with zipfile.ZipFile(zip_name, "r") as zip_ref: to with zipfile.ZipFile(zip_path, "r") as zip_ref:

Presumably, also change: with tarfile.open(zip_name, "r") as tar_ref: to with tarfile.open(zip_path, "r") as tar_ref:

giswqs commented 10 months ago

Can you submit a pull request to fix it? Thanks