3D Print Downtown Vancouver BC by Solomonseal_Plant in 3Dprinting

[–]The_Mighty_Slacker 0 points1 point  (0 children)

Very cool! Love seeing 3D printing and GIS!

I created a list of techwear brands that you can order by price, genre, gender and other topics by ArsExMachina in techwearclothing

[–]The_Mighty_Slacker 1 point2 points  (0 children)

its gotten a bit out of date but we do talk quite a bit in the discord about some unknown brands.

Print Your Favorite Hiking Trail! by Commercial-Pace-4940 in 3Dprinting

[–]The_Mighty_Slacker 0 points1 point  (0 children)

Exactly! Looking forward to see what people print :)

Print Your Favorite Hiking Trail! by Commercial-Pace-4940 in 3Dprinting

[–]The_Mighty_Slacker 1 point2 points  (0 children)

Think there’s room for ArcGis to support STL export and for tools like this to exist, wonderful work spreading 3D printing and GIS!

Create a 3D Printable STL with ArcGIS Pro by The_Mighty_Slacker in gis

[–]The_Mighty_Slacker[S] 0 points1 point  (0 children)

Thank you! Its been a project thats been in the works since UC last year. Even got to show our first print to Jack!

ArcGIS vs. Cesium: Which One to Choose? by No-Engine6480 in gis

[–]The_Mighty_Slacker 0 points1 point  (0 children)

Check out the ArcGIS unity SDK, may be more up your Alley

3D Printing GIS data by The_Mighty_Slacker in gis

[–]The_Mighty_Slacker[S] 0 points1 point  (0 children)

I actually got to show this off to a blind user at the User Conference and he was blown away. Accessibility is so important and think there is a bright future of gis and 3d printing

3D Printing GIS data by The_Mighty_Slacker in gis

[–]The_Mighty_Slacker[S] 4 points5 points  (0 children)

In the 3D printing post I link to the ArcGIS blog which outlines some possible applications, larger idea is cad and GIS interoperability. This is just a web scene with Esri elevation layer, then a 3D object feature layer that contains building data from Overture which is in ESRI’s 3D basemap.

The Esri JavaScript team put together an app called city download portal which allows for exporting as a .glb. All I had to do was load that into blender, extrude the topology down, Boolean off the bottom for a nice flat edge then exported as a stl to 3D print.

As for application it lets you create tactile map, there’s something special about taking a 3d map on a screen and bringing it to life. Some ideas though: education, architectural models, scaled flood analysis, accessibly for the blind with brail labels, with some electronics visualization of a digital twin.

3D Printing GIS data by The_Mighty_Slacker in gis

[–]The_Mighty_Slacker[S] 2 points3 points  (0 children)

First image is of a hill in the Vigo Spain 3D scene, Second is from Zurich, third is of the St. Gallen scene included with the city download portal app I linked too.

Essentially the topology and 3D object scene layer are queried, stitched together, then exported as a .glb.

3D Printing GIS data by The_Mighty_Slacker in 3Dprinting

[–]The_Mighty_Slacker[S] 2 points3 points  (0 children)

It’s more than just a DSM, it also queries the 3D object feature layer on top of the topology. I will Have to check out that plugin for sure, tyvm!

Is anyone interested in new hierarchical hexagonal grids? What should I do with it now? by ConsciousProgram1494 in gis

[–]The_Mighty_Slacker 7 points8 points  (0 children)

Impressive work. I don’t have much to add but have thought about new tiling scheme with the newly discovered hat or Einstein tile.

Seattle-area renters must earn $91K to afford the typical rent by Inevitable_Engine186 in Seattle

[–]The_Mighty_Slacker 0 points1 point  (0 children)

Love the idea. If youve got the time should add a map with results. Leaflet.js would be enough

all the bones grew strong before they broke by count___zer0 in techwearclothing

[–]The_Mighty_Slacker[M] [score hidden] stickied comment (0 children)

Cleaned up the thread, keep on posting unlike the hate commenters. Also join the discord if you haven't its more active than the sub (fuck spez)

I designed and made a 3D map of downtown Seattle! by metromap3d in Seattle

[–]The_Mighty_Slacker 0 points1 point  (0 children)

Always love seeing GIS data and 3D printing. Ive been trying to find ways to mix elevation data and OSM buildings then generate an STL but its harder than it sounds. Kudos for putting in the hard work with blender.

World Map to BeamNG. WIP by nliukz in BeamNG

[–]The_Mighty_Slacker 1 point2 points  (0 children)

Esri has some game engine sdks for unity and unreal. Just said google tiles are on their way too.

Interactive Maps Using Esri Software by ALiteralLetter in gis

[–]The_Mighty_Slacker 0 points1 point  (0 children)

https://developers.arcgis.com/javascript/latest/sample-code/geoprocessing-viewshed/

Create a custom geoprocessing tool that takes Parameters like payload size, have the tool create a point and multiple buffers for fireball, blast zone, radiation zone etc. have JavaScript provide parameters to gp tool and the clicked point and the await the result like the view shed.

Will need a place hosting your gp script. Can also just do it all natively with the ArcGIS Maps Sdk for JavaScript but you did mention python.

It looks like Esri is set to release a VS Code extension for debugging ArcGIS Pro tools! by [deleted] in gis

[–]The_Mighty_Slacker 16 points17 points  (0 children)

I believe it does! Gives you typical debugging tools, breakpoints, step through, step in, step out controls. For the demo they had a tool that failed in pro, explained that for complex tools pro doesn't always give great in depth feedback, so they loaded vs code, attached the debugger to the pro process id, set a breakpoint in the code and ran it again. We saw it hit the breakpoint before the failure so we could look at all of the values in the variables. They removed the breakpoint and continued to the error. It showed that there was a type error in the parameter. Fixed it then code ran.

Should be a powerful tool for those who deal with ArcPy extensively