|
IDEA
|
I see you put this in the Desktop category. It is to my understanding they are not enhancing Desktop anymore, all the focus is on Pro now.
... View more
04-26-2019
08:43 AM
|
0
|
1
|
1052
|
|
POST
|
For a Python 3 Expression try. str(!INLET_ID!) + str(!OBJECTID!-39618) There are several ways to pad it with zeros in python and you do not need to add an extra step. Here is an example. str(!INLET_ID!) + str(f'{!OBJECTID!-39618:04}')
... View more
04-26-2019
07:43 AM
|
0
|
0
|
3285
|
|
POST
|
After you create a version and before you change it try creating a connection to it. CreateDatabaseConnection_management
... View more
04-11-2019
08:50 AM
|
0
|
1
|
1256
|
|
POST
|
I came across this same problem with running scripts within Tasks and eventually abandoned using the Tasks for it. Go and vote this idea up. Perhaps you could use a definition query and a count instead of a python script.
... View more
04-11-2019
08:25 AM
|
0
|
1
|
1257
|
|
POST
|
The status of Esri BUG-000121285 - Angle Alignment set to "Display" is not honored after printing the map directly from ArcGIS Pro. - that you have been associated with has been changed to Implemented. Public Explanation: Case Number: 02290974 Version Fixed: 2.3.2
... View more
04-10-2019
07:08 AM
|
0
|
0
|
3074
|
|
POST
|
Wow. I am not sure what I first searched before asking now. Thanks
... View more
04-04-2019
01:50 PM
|
0
|
0
|
1354
|
|
POST
|
Are Symbols by Multiple Attributes not supported when you import a mxd into Pro? The import does a really good job for the most part, even with symbols by Categories, but any layers that have symbols by Multiple Attributes import as single Features symbols.
... View more
04-04-2019
01:12 PM
|
0
|
3
|
1481
|
|
POST
|
I was just testing the Copy and Project to show that you are perhaps going down the wrong path. I did not see anything that stuck out. If I were you I might comment out as much as you can and maybe test it line by line until the behavior is reproduced to find your smoking gun.
... View more
04-02-2019
01:42 PM
|
0
|
0
|
1991
|
|
POST
|
What I was pointing out was that if you look at the numbers, on the original photo, they are not +1, this shows that the copies of the main feature classes are getting copied more than are getting put on the TOC. I simplified the code and ran it and was not able to reproduce this problem. Also, after reading the Project documentation I found I steered you down a wrong path, you cannot use the in_memory for that particular tool. Which is why you got that error. import arcpy
arcpy.env.overwriteOutput = True
output_gdb = r"C:\\Users\\mdriscoll\\Desktop\\New Folder\\abc\\Default.gdb\\"
exclude_list = ["A","E"]
fc = output_gdb + "pnt"
with arcpy.da.SearchCursor(fc,"*") as cursor:
copy = output_gdb + "copy"
outCS = arcpy.SpatialReference('NAD 1983 UTM Zone 11N')
outputCS = output_gdb + "copy_proj"
for row in cursor:
field = row[2]
if field in exclude_list:
continue
else:
arcpy.CopyFeatures_management(fc,copy)
arcpy.Project_management(copy, outputCS, outCS)
print(field)
... View more
04-02-2019
01:03 PM
|
0
|
2
|
1991
|
|
POST
|
Nothing really sticking out here for the reason of the behavior. I really do think it is something in your code and not a bug for the following reason: The original example screen shot shows that a copy is getting created a lot but only every other third ends up in the table of contents. So it seems like it still creates a copy when it is in your exclude_list (continue) but does not go into your TOC. I do agree that it creating a new copy of the original on every loop and some of them getting added to the TOC is a major factor to slowing it down.
... View more
04-02-2019
12:08 PM
|
0
|
4
|
1991
|
|
POST
|
Click on the field and hit the Delete button on your keyboard.
... View more
04-02-2019
09:52 AM
|
0
|
0
|
743
|
|
POST
|
You need to create an event on the ComboBox.SelectionChange. Inside that event handler use button.Enabled = true;
... View more
04-02-2019
06:31 AM
|
0
|
0
|
1748
|
|
POST
|
Hard to say without seeing the code. You may not be finishing the loop cleanly before moving onto the next one. If it is clean I recently learned that MapView.Redraw was introduced in 2.2, you might give that a try before moving onto the next one.
... View more
04-01-2019
11:04 AM
|
0
|
0
|
2597
|
|
POST
|
I believe you still need to make a feature layer from your feature class if you are going to run it in_memory.
... View more
04-01-2019
10:04 AM
|
0
|
2
|
2597
|
|
POST
|
BUG-000121285 : Angle Alignment set to "Display" is not honored after printing the map directly from ArcGIS Pro 2.3.1 Status : New
... View more
03-29-2019
06:30 AM
|
2
|
0
|
3074
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 03-23-2026 08:11 AM | |
| 1 | 03-23-2026 07:55 AM | |
| 7 | 03-18-2026 12:15 PM | |
| 1 | 03-11-2026 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|