Basic rendering of Sugar Loaf?

I’ve got an idea for a project (well, like 11% of an idea), but would need to 3d print a small facsimile of Sugar Loaf. Anyone know of an easy way to build that model from some online source? Wondering if Google Earth has a basic rendering of it that could be extracted, a la How to Extract 3D Models from Google Earth: A Simple Guide for Creative Projects

Really want to avoid modeling it myself, or expensive ways of getting a model made

Sounds like a cool project! I found some LiDAR data via the USGS here: TNM Downloader - The National Map

I tried visualizing it with this program just now: Displaz lidar viewer

No idea how to convert this to something usable for modeling, but I can send the .laz file I downloaded if that’s helpful! (Actually the USGS tool has direct download links – here’s the one pictured below: https://rockyweb.usgs.gov/vdelivery/Datasets/Staged/Elevation/LPC/Projects/MN_SE_Driftless_2021_B21/MN_SEDriftless_2_2021/LAZ/USGS_LPC_MN_SE_Driftless_2021_B21_6100_48750.laz )

1 Like

I have a python script that converts a portion of the laz file to a 3D model (basically finds the highest elevation in it then converts a radius around it). Here’s what it looks like and the model is available here (can’t upload anything but images here). The model could be moved below the build plate or cut to focus more on sugar loaf.

1 Like

Nice! (I’d also be curious to see the python script if you don’t mind sharing it.)

Yeah, totally cool. You can download it here.

I have it setup to to run with uv, but if you don’t use that you can just use the python script and look at its dependencies in pyproject.toml. It expects USGS_LPC_MN_SE_Driftless_2021_B21_6100_48750.laz to be in the directory you run it from.

Very interesting, thanks!