|
IDEA
|
02-16-2022
11:54 PM
|
0
|
0
|
1879
|
|
IDEA
|
@IlkaIllers1 at this time there is not a cache or list of saved expressions. This current enhancement that I described is for equivalency with ArcMap, that when you reopen a tool window from the attribute table or clicking a ribbon button, that the most recent parameters you used will be auto-filled in the tool. For the idea of caching or listing previously used parameter values, please vote and comment here: https://community.esri.com/t5/arcgis-pro-ideas/table-select-by-attributes-list-most-recent/idi-p/1075122
... View more
02-09-2022
11:03 AM
|
0
|
0
|
3923
|
|
IDEA
|
02-09-2022
10:57 AM
|
0
|
0
|
4111
|
|
IDEA
|
This is in the works for ArcGIS Pro 3.0. The functionality is not limited to Select By Attributes, but also several other tools that are opened from ribbon buttons and context menus around the app, including in the attribute table.
... View more
02-08-2022
11:09 PM
|
0
|
0
|
3960
|
|
IDEA
|
@JakeKrall it is in our Near Term plan to include this concatenation option in Summary Statistics as well as other tools that combine multiple records into one record with some statistical or other computation applied to the field values (Dissolve for example). It is in development currently for ArcGIS Pro 3.0 but I can't give a guarantee on which release it will be available.
... View more
02-08-2022
02:54 PM
|
0
|
0
|
4033
|
|
IDEA
|
01-28-2022
02:05 PM
|
0
|
0
|
4052
|
|
POST
|
This kind of "merging" of multiple rows is typically done in the Summary Statistics tool, but there is not yet an option for concatenating values with a delimiter, though there is an enhancement logged that you can track ENH-000133689, also please comment and vote on the ArcGIS Ideas site: https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105
... View more
01-28-2022
01:57 PM
|
2
|
0
|
20442
|
|
IDEA
|
@AzinSharaf It will take some time and effort to get to this enhancement to the tool. Something that is supported already is to add hyperlinks in the existing summary so that the user of your tool can click the hyperlink after bringing up the hovertip over the help icon to open whatever content you would like.
... View more
01-24-2022
01:59 PM
|
0
|
0
|
1917
|
|
IDEA
|
The Delete Field tool was changed in Pro 2.9 to use a list of checkboxes as the control, and the fields are ordered the same as the attribute table (controlled through the field order which can be set in the Fields view). There is another idea about an application-wide setting to control display of field aliases vs. names: https://community.esri.com/t5/arcgis-pro-ideas/setting-to-disable-field-aliases/idi-p/1114493
... View more
01-24-2022
11:28 AM
|
0
|
0
|
1092
|
|
IDEA
|
This is being planned for the next release of ArcGIS Pro, along with other functional gaps that still remain in the atbx format.
... View more
11-22-2021
10:22 AM
|
0
|
0
|
5996
|
|
POST
|
Hi @DuncanHornby the improved performance statement refers to the loading/opening of a toolbox with many tools, as well as the access of those tools' properties and parameters, when a particular tool is opened. Tool execution is not impacted by the new format.
... View more
11-16-2021
10:35 AM
|
3
|
0
|
11948
|
|
IDEA
|
There is no plan for this sample to be recreated for use in ArcGIS Pro.
... View more
10-25-2021
12:21 PM
|
0
|
0
|
1450
|
|
IDEA
|
Thanks for your post @RobertHursey . I just want to point out a few features of Geoprocessing History that relate somewhat to your requests. You can currently change the Sort option of history based on a few options: And you can also make some tools as History Favorites, which elevates them to a top Favorites section. P.S. awww @KoryKramer called me a friend 🙂
... View more
10-15-2021
03:21 PM
|
0
|
0
|
2822
|
|
IDEA
|
This idea should be linked to Esri support case BUG-000106601. This will be fixed in ArcGIS Pro 2.9. Thanks, Drew
... View more
10-15-2021
03:11 PM
|
0
|
0
|
1934
|
|
POST
|
You can get info about the tool properties by right clicking a tool and select Properties, then go to the Parameters page. The Detect Feature Changes tool uses a value table parameter with two string columns. Use some code like this to have two parameter for picking the base and update layers, and a value table to pick the matching fields from the two datasets def getParameterInfo(self):
"""Define parameter definitions"""
p1 = arcpy.Parameter(displayName="Input Base Features",
name="base_Features",
datatype="GPFeatureLayer",
parameterType="Required",
direction="Input")
p2 = arcpy.Parameter(displayName="Input Updated Features",
name="updated_Features",
datatype="GPFeatureLayer",
parameterType="Required",
direction="Input")
p3 = arcpy.Parameter(displayName="Compare Fields",
name="compareFields",
datatype="GPValueTable",
parameterType="Optional",
direction="Input")
p3.columns = [['GPString', 'Base Fields'], ['GPString', 'Updated Fields']]
params = [p1,p2,p3]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal
validation is performed. This method is called whenever a parameter
has been changed."""
if parameters[0].valueAsText and parameters[1].valueAsText:
desc_b = arcpy.Describe(parameters[0].value)
desc_u = arcpy.Describe(parameters[1].value)
parameters[2].filters[0].list = [field.name for field in desc_b.fields]
parameters[2].filters[1].list = [field.name for field in desc_u.fields]
return results like this:
... View more
10-08-2021
01:06 PM
|
1
|
0
|
2360
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 03-22-2024 09:27 AM | |
| 2 | 03-08-2024 01:56 PM | |
| 3 | 02-21-2024 11:58 AM | |
| 1 | 05-09-2023 02:24 PM | |
| 3 | 02-27-2023 05:23 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-20-2026
01:10 PM
|