|
BLOG
|
@SarahNoakes1, you're probably better off making a post for each of these in the Ideas space for ArcGIS Experience Builder. ArcGIS Experience Builder Ideas - Esri Community
... View more
04-02-2024
08:48 AM
|
0
|
0
|
1100
|
|
POST
|
To start, you need to pass a workspace argument to start editing. edit = arcpy.da.Editor(workspace) Fix that and then see where you're at.
... View more
04-02-2024
07:04 AM
|
0
|
1
|
1799
|
|
POST
|
Please share the code you're using and the result you get that you say does not work.
... View more
04-01-2024
08:00 AM
|
0
|
0
|
847
|
|
POST
|
If this is a standalone script that is run manually, then the solution from @Tom_Laue should work. Another option to consider is a script tool or Python toolbox.
... View more
03-26-2024
08:24 AM
|
0
|
2
|
2065
|
|
POST
|
I think the GroupBy() function is what you want. There are some examples in the documentation.
... View more
03-22-2024
08:21 AM
|
0
|
1
|
1781
|
|
POST
|
@ajreeve wrote: fc = os.path.join(geodatabase, "***.***.TEST", "C***.***.Test") What is "geodatabase"? Also why is there two feature classes after that? Thank you in advance! Hi @ajreeve, os.path.join takes a variable number of parameters. The first is the starting portion of the path and everything else will get combined with the starting path separated by a slash to build the whole path. In this case, geodatabase is a variable assumed to be defined somewhere else in the code (this is just a snippet). It could be something like: geodatabase = r"C:\temp\mydata.gdb" The next to variables are the feature dataset name ("***.***.TEST"), and then the feature class name ("C***.***.Test"). So the fc variable would end up with something like: "C:\temp\mydata.gdb\C***.***.Test\***.***.TEST" EDIT: I think the code in my post is slightly misleading. It should probably be: workspace = r"C:\Users\***\AppData\Roaming\ESRI\Desktop10.8\ArcCatalog\***_***_***.sde"
fc = os.path.join(workspace, "***.***.TEST", "C***.***.Test")
edit = arcpy.da.Editor(workspace)
... View more
03-21-2024
12:04 PM
|
0
|
0
|
3188
|
|
POST
|
Your expession is not valid. You need to make it a string variable, include a field name, and use some kind of statement or operator with that set of values. Something like: expression = "MyField in('45074.0115', '45074.0116', '45074.0117', '45074.0118', '45074.0119', '45074.0120')" Also, you have numbers formatted as text. Is that correct? And I don't understand the purpose of the row[0] = 0
... View more
03-20-2024
04:37 PM
|
1
|
1
|
1246
|
|
POST
|
Please clarify if you're working with ArcGIS Online or ArcGIS Enterprise and what type of authentication it's configured for. Also, does the user running the script have an account in your ArcGIS Online/Portal?
... View more
03-19-2024
01:53 PM
|
0
|
0
|
1164
|
|
POST
|
Same. I've always used built-in Windows Remote Desktop and I've had no complaints. I think there's some better options if you are constantly switching between many RD sessions at once, but for a single session it's perfectly fine. Is there some feature in particular you find lacking?
... View more
03-11-2024
07:20 AM
|
0
|
3
|
4954
|
|
POST
|
It looks to be possible, but I'm not sure how to implement it. I've not worked with CIMSymbol. Esri Web Style Symbols (2D) | Overview | ArcGIS Maps SDK for JavaScript 4.29 | ArcGIS Developers Maybe this video demo on Dynamic Vector Symbology will help.
... View more
03-07-2024
01:41 PM
|
0
|
0
|
1120
|
|
POST
|
MapView ready is right above resizeAlign in the documentation Rene linked to.
... View more
03-01-2024
06:44 AM
|
0
|
3
|
1474
|
|
POST
|
Yes, if you are able to host the Python script as a geoprocessing service.
... View more
02-27-2024
10:25 AM
|
0
|
0
|
1355
|
|
POST
|
It's a browser thing. It seems modern browsers prevent this intentionally for security. You could try some browser extensions to allow it (at your own risk).
... View more
02-26-2024
06:26 AM
|
0
|
2
|
1397
|
|
POST
|
You don't need to be a statistics professor, but it certainly helps to have some baseline knowledge about how to use and interpret the result of a geoprocessing tool. Could you name the particular tools you are interested in?
... View more
02-23-2024
07:38 AM
|
0
|
1
|
1537
|
|
POST
|
You would probably start with converting each graphic to JSON. From there, I only know of Python being able to turn that JSON into a geodatabase feature class, then export the feature class to shapefile. How exactly you implement that workflow can vary depending on your server capabilities and how much you need it to be automated.
... View more
02-21-2024
09:50 AM
|
1
|
0
|
1049
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-23-2025 03:53 PM | |
| 1 | 2 weeks ago | |
| 1 | 03-19-2026 08:59 AM | |
| 1 | 02-12-2026 01:37 PM | |
| 1 | 12-01-2025 06:19 AM |