|
POST
|
I think you need to edit your question and include some images to explain what you are attempting to do as its not entirely clear what you are wanting.
... View more
01-19-2023
06:21 AM
|
0
|
0
|
1238
|
|
POST
|
You do not show how you get `layr`, so its impossible for anyone to answer this question. My immediate thoughts are maybe you have grabbed a group layer ...
... View more
01-18-2023
04:10 PM
|
0
|
0
|
4007
|
|
POST
|
Isn't what you are describing simply a buffer around a line? In the buffer tool you can get the buffer distance from a field which could hold your pre-computed distance. Suggest you check out the help file on the buffer tool.
... View more
01-18-2023
04:07 PM
|
0
|
0
|
1246
|
|
POST
|
Also as a test, if your map has a basemap in it, try removing that to see if performance improves. I'm seeing issues with 10.8 with basemaps, they lag horribly, similar to what you describe. I find removing the basemap significantly improves things. Leads me to think it is a graphic driver issue.
... View more
01-18-2023
03:58 PM
|
0
|
0
|
3380
|
|
POST
|
I'm using 10.8 at work and I have noticed issues when a basemap is being displayed. I also have a new laptop. It doesn't crash but it does lag horribly and this is on a brand spanking new i7 with a rtx graphic card. So either its a driver card issue or esri are throttling base map access to arcmap, is what I feel. I suspect it's more of an issue with hardware, even though ArcMap is a great piece of software, its 32 bit and old and is slowly being broken by office updates. Time to move on to ArcPro... which by the way also breaks with every Office 365 update.... 😵
... View more
01-18-2023
03:50 PM
|
0
|
0
|
879
|
|
POST
|
Can't you just click and drag on the little blue squares? If that is what you mean?
... View more
01-18-2023
03:44 PM
|
0
|
1
|
1979
|
|
POST
|
Here is some sample data, note 2 points are selected: DuncanHornby_0-1673027089220.png Here is the sub-model (This I called Select Model), with a single selection exist tool: DuncanHornby_1-1673027198644.png Here is the master model: DuncanHornby_2-1673027262015.png If a selection exists as determined by the sub-model (Select Model) then buffer the selection, else do a selection based upon ID. All logic ran as expected, may be you were not exposing the parameters of the sub-model as Parameters (those P's)?
... View more
01-06-2023
09:50 AM
|
0
|
0
|
1772
|
|
POST
|
When posting code please format it, click on the 3 dots icon to do that then the </> icon. YOU can always go back an edit your question.
... View more
01-06-2023
09:31 AM
|
0
|
0
|
2531
|
|
POST
|
It's not entirely clear what it you are doing, you say "Is it possible to generate two duplicate watershed feature class using the same pourpoint?". This sounds like you want to run the tool twice or simply call the Copy Features tool? Then you go on to show an update cursor which seems to have nothing to do with generating watersheds...
... View more
01-06-2023
09:27 AM
|
0
|
0
|
719
|
|
IDEA
|
Here is a snippet to get you going: class ToolValidator:
# Class to add custom behavior and properties to the tool and tool parameters.
def __init__(self):
# set self.params for use in other function
self.params = arcpy.GetParameterInfo()
def initializeParameters(self):
# Customize parameter properties.
# This gets called when the tool is opened.
self.params[2].value = "Regular"
return
def updateParameters(self):
# Modify parameter values and properties.
# This gets called each time a parameter is modified, before
# standard validation.
if self.params[2].value == "Regular":
self.params[3].enabled = False
self.params[4].enabled = True
self.params[5].enabled = False
elif self.params[2].value == "Randomly":
self.params[3].enabled = True
self.params[4].enabled = False
self.params[5].enabled = True
return
def updateMessages(self):
# Customize messages for the parameters.
# This gets called after standard validation.
params[2] is a text parameter with string filter listing only regular or randomly, when you change it on the interface it show/hides parameters 3 or 4.
... View more
01-05-2023
01:18 PM
|
0
|
0
|
3481
|
|
IDEA
|
A solution to your dilemma is to have a drop-down with the options "Current" and "other". If they select current then you use the code I had linked to. If other then that enables another parameter which offers up your File parameter. You do all that in the validation code section of your script tool. Enabling/disabling a parameter has the affect of show/hide the parameter.
... View more
01-02-2023
11:59 AM
|
0
|
0
|
3502
|
|
IDEA
|
All the tools you require for you to script in python or model builder are in the Package toolbox.
... View more
12-18-2022
04:11 AM
|
0
|
0
|
5551
|
|
IDEA
|
Historically ArcMap\ArcCatalog provided a great interface for recording metadata and ArcGIS Pro continues this tradition. ArcGIS Pro provides a toolbar for simple formatting when providing content in the Usage section. Toolbar offering simple formatting choices. Often when I am entering text into the Usage section I feel that what I want to show is best shown in a simple table format. It would be great if this toolbar could include an "insert table" button allowing me populate the Usage section information formatted into a simple table. I don't think it needs to be the bewildering choice of formatting that MS Word offers up, just a bare bone table something like this: Bare bones table
... View more
12-18-2022
04:07 AM
|
2
|
7
|
2586
|
|
POST
|
The error message in your screen shot says you can't add anything if you have a basic license. Have you updated ArcMap recently and its defaulted back to basic license for some reason? Is it a new installation on a new PC and whoever did that gave you a basic license? Are these geodatabases provided to you and they have stuck something in the feature dataset that is incompatible with your license level? Finally after making a backup of the geodatabase, try running compact tool on it, this may resolve the issue identified by @Anonymous User.
... View more
12-07-2022
08:40 AM
|
1
|
0
|
2965
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-03-2026 07:31 AM | |
| 3 | 06-29-2026 05:17 AM | |
| 1 | 02-15-2023 05:45 AM | |
| 1 | 06-16-2026 02:37 AM | |
| 1 | 06-15-2026 08:29 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|