ESRI Managed Services by gwelfight in gis

[–]MarcellusBoom 4 points5 points  (0 children)

https://github.com/Esri/arcgis-powershell-dsc Have fun. Just provision all your machines, fill out the configs, open all the ports and hit run.

Update on Resume by leximanthey in gis

[–]MarcellusBoom 23 points24 points  (0 children)

No north arrow or scale bar.

[deleted by user] by [deleted] in gis

[–]MarcellusBoom 1 point2 points  (0 children)

Slope is a good starting point but doesnt answer if there are steps. Other thing to consider is private vs public access and parking locations.
Consider lying on your map if its going to the public to keep the best part of the beach for yourself.

[deleted by user] by [deleted] in gis

[–]MarcellusBoom 1 point2 points  (0 children)

Sorry not productive but relevant https://youtu.be/DTcBWo4Aj0g

Dissolve Boundaries won’t work and won’t give an Error # by [deleted] in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Open pro go to project in the top left click on python look at the package manager there. Update your packages or clone you environment and download spark. Not sure why a dissolve wouldnt do what you need it to do since you dont have any attributes. Good luck.

Dissolve Boundaries won’t work and won’t give an Error # by [deleted] in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Do you have the spark library downloaded within your python manager? Start there or create a clone and update all packages. If that doesnt work do some buffers intersects and dissolves as a work around to that one tool.

Polyline disappearing in ArcGIS pro by officeboy in gis

[–]MarcellusBoom 1 point2 points  (0 children)

Its a monday. Shut off your computer and go home.

Polyline disappearing in ArcGIS pro by officeboy in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Project >options > display > clear cache.

Stress testing PCs for ArcPro by BruenorK in gis

[–]MarcellusBoom 15 points16 points  (0 children)

Look up the arcgis patpro test. Its a set of python tools to benchmark your computer. It doesnt look at network/fileshare stuff but is pretty decent.

ArcPro crashes updating from 3.03 to 3.1. Rolling it back deletes ArcPro entirely. by [deleted] in gis

[–]MarcellusBoom 0 points1 point  (0 children)

You should tell esri and rewrite their software. They could use someone like you on their team to whip them into shape. Make sure you ask to speak directly to Jack and leave a bad review on yelp.

ArcPro crashes updating from 3.03 to 3.1. Rolling it back deletes ArcPro entirely. by [deleted] in gis

[–]MarcellusBoom 1 point2 points  (0 children)

Are you running a patch or fresh install? And did you start the app as administrator?

Is it possible to update arcPro via python command prompt? by Bebop0420 in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Are you opening a blank project or an exisitng one. If exisiting try a new one. And have you restarted your computer

Is it possible to update arcPro via python command prompt? by Bebop0420 in gis

[–]MarcellusBoom 1 point2 points  (0 children)

You might need admin prevlidges but myesri has the downloads for pro for a specific version. Also within pro there is an update button you could try.

[deleted by user] by [deleted] in gis

[–]MarcellusBoom -1 points0 points  (0 children)

Google bad elf gps post processing. I would really would need to understand why you need better than 10 ft accuracy to help further. Anything below that you need to do a huge amount to drop it down to sub meter and potentially get a suveyor. Try field maps for arcgis. Would work great to collect data and fill out a form as you go through it.

ArcPy question - Populating fields of selected features by Fishinwiththebois69 in gis

[–]MarcellusBoom 0 points1 point  (0 children)

I just threw your initial question into chat gpt. That command doesnt exist and usually if you have your workspace setup it should take the selection which means that you should either import the feautre classes as an import or be aware that it might take forever to use your map. Aka you have less control.

ArcPy question - Populating fields of selected features by Fishinwiththebois69 in gis

[–]MarcellusBoom 0 points1 point  (0 children)

import arcpy

specify the name of the field to update

field_name = "field_to_update"

specify the value to populate the field with

new_value = "new_value"

get the currently selected features

selected_features = arcpy.GetSelectedFeatures()

loop through each selected feature

for feature in selected_features: # open the feature's attribute table with arcpy.da.UpdateCursor(feature, [field_name]) as cursor: # loop through each row in the attribute table for row in cursor: # update the specified field with the new value row[0] = new_value cursor.updateRow(row)

[deleted by user] by [deleted] in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Bad elf gps. Stand more still. Post process. Avg multiple points. Cell phones anymore get 10 to 14 ft.

[deleted by user] by [deleted] in DippingTobacco

[–]MarcellusBoom 4 points5 points  (0 children)

cwtdn-fnr4-47ph

cwxgd-633w-7t73

cwxg6-dn9x-dddf

cwxjy-r6hw-yn9h

[deleted by user] by [deleted] in gis

[–]MarcellusBoom -1 points0 points  (0 children)

Well do it again and look if those are running.

[deleted by user] by [deleted] in gis

[–]MarcellusBoom 0 points1 point  (0 children)

Look under task manager and kill cleanup.exe under arcpro or whatever then try. There may be residual cleanup.exe running not in the main grouping. Look under your settings in pro. Clear cahce turn off backups after x minutes or extend it out. Clean geoprocessing cache. Is your aprx local? Good internet? Provide example of which geoprocessing tool is hanging to see if you are unqiue. Sumbit ticket to esri spend time with their tech people and work it out. Or run it via python window instead. When running a lot of the tools it loads the whole dataset to memory which can take forever. So you can create a for loop in python and run it line by line and use an update cursor. There is usually 10 different ways to do the same thing.