|
POST
|
FYI, vbscript was only implemented in ArcGIS Pro as of version 3.2. Support VB expressions in Calculate Field
... View more
04-03-2024
06:15 PM
|
0
|
0
|
9874
|
|
IDEA
|
FYI, as a plan B, you can calculate a weighted average in a database view or a query layer using SQL: https://dba.stackexchange.com/a/189236/100880 select
road_id,
to_char(trunc( insp_date), 'YYYY-MM-DD') as insp_day,
avg(condition) condition_avg,
sum(insp_length) insp_length_tot,
round(sum(condition * insp_length) / sum(insp_length), 2) as CONDITION_WEIGHTED_AVG
from
road_insp
group by
road_id,
trunc(insp_date)
order by
road_id,
trunc( insp_date);
ROAD_ID INSP_DAY CONDITION_AVG INSP_LENGTH_TOT CONDITION_WEIGHTED_AVG
---------- ---------- ------------- --------------- ----------------------
100 2017-01-01 5 100 5
101 2017-02-01 5.75 1500 5.83
102 2018-04-01 7 6000 7.08
103 2018-07-01 8.25 6500 8.27
103 2019-09-01 9.25 8500 9.26 As always, be very careful with nulls: Tips about nulls in SQL And I have a different idea here that might interest people who use Summary Statistics: Summary Statistics — Tie fields to a primary field
... View more
04-03-2024
06:07 PM
|
0
|
0
|
2812
|
|
POST
|
Bear in mind that if TYPE is null, it won’t be captured by either of those SQL expressions. But that’s easily fixable if needed: (TYPE=‘STORM’ OR TYPE IS NULL)
... View more
04-03-2024
05:52 PM
|
0
|
0
|
3702
|
|
POST
|
What kind of geodatabase? I.e., Oracle enterprise geodatabase? You could use a database view or a query layer to combine the two fields into a SQL calculated field. Then symbolize on that calculated field. https://www.w3schools.com/sql/sql_case.asp
... View more
04-03-2024
05:48 PM
|
0
|
0
|
3702
|
|
IDEA
|
This idea can be closed. I see now that I can: Drag an item from the Catalog Pane down to the Geoprocessing tab ...which will bring up the Geoprocessing Pane Then, drop the item into a geoprocessing parameter
... View more
04-03-2024
07:51 AM
|
0
|
0
|
1292
|
|
POST
|
I agree that ESRI’s minimum requirements are not enough.
... View more
04-02-2024
05:40 PM
|
0
|
0
|
3235
|
|
POST
|
ArcGIS Pro 3.2.2; Oracle 18c 10.7.1 EGDB: In Windows File Explorer, I want to copy a ArcGIS Pro Project/APRX to a different folder on the network. It looks like there are supporting files/folders in the existing .APRX’s folder that were automatically created by ArcGIS Pro when the original APRX was created. Should I copy those supporting files/folders to the new folder too?
... View more
04-02-2024
05:35 PM
|
0
|
4
|
3037
|
|
POST
|
This is the latest email update I received about that bug: 2023-07-26 Bud_0-1712103280039.png It says the issue is fixed in 3.2.
... View more
04-02-2024
05:15 PM
|
0
|
1
|
3944
|
|
IDEA
|
As a workaround, I suppose we could implement the sample code and then look at the Logs tab in the Diagnostic Monitor in ArcGIS Pro (in the Help tab in the ribbon). One of the End Cursor log entries might show the SQL query that’s sent to the database. Untested.
... View more
03-28-2024
06:06 AM
|
0
|
0
|
909
|
|
IDEA
|
https://pro.arcgis.com/en/pro-app/latest/help/data/excel/work-with-excel-in-arcgis-pro.htm#GUID-8414CA6E-2F80-4FB4-843F-36F303BDA6B2
... View more
03-27-2024
04:28 PM
|
0
|
0
|
3999
|
|
POST
|
Possibly related: BUG-000085841 The Create Database View tool does not accept the divide operator '/' in the view definition input field.
... View more
03-27-2024
04:02 PM
|
0
|
0
|
1951
|
|
IDEA
|
For users that are unfamiliar with the Interactive Feature Input functionality in tools like Copy Features: It would help to be able to navigate to the Interactive Feature Input help from within the GP tool. Such as a right-click menu option when clicking on the Interactive Feature Input picklist button. Bud_0-1711476515926.png Copy Features — What is the purpose of the Points, Lines, Polygons, or Multipatch picklist?
... View more
03-26-2024
06:23 PM
|
0
|
1
|
732
|
|
IDEA
|
ArcGIS Pro 2.9.12: In a geoprocessing tool, it would be great if we could use Catalog Pane to easily enter the Input parameter (instead of fiddling with the Browse dialog). I'm aware that I can right-click an item in the Catalog Pane to Copy Path: https://community.esri.com/t5/arcgis-pro-questions/use-catalog-pane-to-enter-input-parameter-in-gp/m-p/1400691/ . And then paste the path into the parameter. That works, but I'm wondering if there is a more efficient method, such as drag and drop from the Catalog pane.
... View more
03-26-2024
11:55 AM
|
0
|
4
|
1439
|
|
IDEA
|
A note about the path_to_dataset in Python from @DrewFlater : ...Python uses the \ backslash character as an escape character, so you need to either use double backslashes, use forward slashes, or put an r at the front of the string to indicate raw string.
... View more
03-26-2024
11:34 AM
|
0
|
0
|
3618
|
|
POST
|
ArcGIS Pro 2.9.12: What is the purpose of the Points/Lines/Polygons/Multipatch picklist in the Copy Features geoprocessing tool? Bud_0-1711476515926.png
... View more
03-26-2024
11:09 AM
|
0
|
1
|
990
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-20-2026 02:12 PM | |
| 1 | 03-19-2026 11:42 AM | |
| 1 | 06-03-2026 04:02 AM | |
| 1 | 03-18-2026 07:08 PM | |
| 2 | 07-08-2026 01:29 PM |