|
POST
|
You state that you are aware that ArcMap is being retired but you don't actually say if you want to make the jump to ArcPro? If you do then I would say many of your steps could be automated in arcpy, driving ArcPro projects for map production. You don't need the heavy investment of using VB/C# in visual studio. You can run python in an IDE, don't even need ArcPro open if that's what you want. What might be highly problematic for you is that ArcPro does not support MS Access in the way ArcMap use to. A failing of ArcPro in my opinion as MS Access is a very useful and powerful database software used by many. You could use the interoperability extension to export from an accdb as an intermediate step.
... View more
01-10-2025
05:13 PM
|
1
|
0
|
2310
|
|
POST
|
I'm surprised the HitTest() even works as the help file indicates the first parameter is a point object which in your code you don't supply?
... View more
01-10-2025
05:04 PM
|
0
|
0
|
2622
|
|
POST
|
Have you reviewed any of these solutions? https://gis.stackexchange.com/questions/333819/displaying-lines-which-share-segments-by-offsetting-them-only-where-they-overlap https://gis.stackexchange.com/questions/37777/representing-overlapping-lines-in-arcgis-desktop https://community.esri.com/t5/public-transit-questions/transit-map-with-offset-routes/m-p/1003771
... View more
01-10-2025
03:07 AM
|
0
|
0
|
957
|
|
POST
|
Same question was asked and answered on GIS StackExchange here.
... View more
01-10-2025
02:47 AM
|
0
|
0
|
850
|
|
POST
|
I don't really use notebooks, so what I'm about to suggest may be erroneous? How about copying that external notebook file into the project folder then follow the instructions you link to, to add it to the project?
... View more
01-09-2025
08:52 AM
|
0
|
0
|
1308
|
|
POST
|
Suggest you read this blog, then follow the links to examples, you put the calculate expressions into the layers form.
... View more
01-09-2025
08:20 AM
|
1
|
0
|
2177
|
|
POST
|
RivEX for ArcGIS Pro has the Link Sites tool designed to create the polyline linking two points on a river network. This tool will generate links between all combinations of points. If you want to understand the network between dams and thus the entire available network for the fish rather than a single route then RivEX has Create subnetworks tool. In fact RivEX has many other tools designed to pull out geometries aligned to the river network which can then feed into further analysis or visualisation.
... View more
01-08-2025
02:27 PM
|
0
|
0
|
576
|
|
POST
|
Would help if you explain what a "LCP" is, along with an image of what you have and what your are trying to achieve.
... View more
01-08-2025
02:14 PM
|
0
|
0
|
445
|
|
POST
|
Edit it to remove the space. Nothing wrong with tweaking the ini file.
... View more
01-08-2025
09:08 AM
|
0
|
1
|
2606
|
|
POST
|
This can be easily done and you were almost there. The trick is it set up the field map with concatenation. So input data is this: I want to join the polygon ID's to the lines, thus the Spatial Join is set up as: The field map was set up as below; take note of the ACTION: Run the tool and the output is a new line dataset with concatenated polygon ID's.
... View more
01-08-2025
09:03 AM
|
2
|
0
|
1462
|
|
POST
|
Just a shot in the dark, is your workflow creating schema.ini files? More info here, may be they are confusing ArcPro in someway?
... View more
01-08-2025
08:42 AM
|
0
|
0
|
2616
|
|
POST
|
I have reported a similar bug in 2024 which has yet to be resolved. Clearly the function is buggy and needs ESRI to resolve it.
... View more
01-07-2025
07:27 AM
|
2
|
0
|
899
|
|
POST
|
I personally have found trying to change the labels in symbols always a bit flaky through direct manipulation of arcpy classes, but may be that's just me... Anyway an alternative method is to access the CIM object module for fine tuning layer properties, this includes symbology. As you say in your question you can easily change the decimal places through Advanced symbology options in the UI, so lets replicate that! import arcpy
# Get handle on layer in first map
p = arcpy.mp.ArcGISProject('CURRENT')
m = p.listMaps('MAP')[0]
l = m.listLayers("fc_AreasMerged")[0]
sym = l.symbology
# Change rounding value using CIM
lcim = l.getDefinition('V2')
lcim.renderer.numberFormat.roundingValue = 2
l.setDefinition(lcim)
# Update/refresh renderer
sym = l.symbology
sym.updateRenderer ('GraduatedColorsRenderer')
l.symbology = sym If you want to get into manipulating CIM, best bit advice I can give is get hold of the CIM viewer AddIn, this allows you to see the CIM for a layer selected in the Contents Pane. I couldn't live without it!
... View more
01-07-2025
05:37 AM
|
1
|
1
|
1353
|
|
POST
|
The output of the console would certainly indicate it had created the correct permit number. But as you suggest the source of the issue may be down to how you run the code in the attribute rule you had set up. As you do not share a screen shot of this its impossible for people to comment...
... View more
01-06-2025
03:38 AM
|
0
|
0
|
866
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 04-14-2026 06:38 AM | |
| 1 | 04-14-2026 04:16 AM | |
| 8 | 03-30-2026 10:12 AM | |
| 2 | 03-18-2026 08:16 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|