|
POST
|
You are mixing the two patterns of use for Editor—ArcGIS Pro | Documentation. In addition to the Esri documentation, there are lots of good primers online about the Python with statement and context managers.
... View more
08-15-2024
10:28 AM
|
1
|
0
|
3556
|
|
POST
|
If you ignore the error and hit Apply/OK, does it work correctly? It might be a validation defect for the expression rather than an actual error in the expression.
... View more
08-14-2024
09:04 AM
|
0
|
1
|
1304
|
|
POST
|
You are mixing the two types of cursors in ArcPy; specifically, you are using the old-style cursor and trying to use new-style syntax. See Data access using cursors—ArcGIS Pro | Documentation
... View more
08-12-2024
11:56 AM
|
2
|
0
|
2180
|
|
POST
|
For Arcade, use When | Logical functions | ArcGIS Arcade | Esri Developer: var regular_hours_1 = 0.18;
return when(
regular_hours_1 < 0.13, 0.0,
regular_hours_1 < 0.38, 0.25,
regular_hours_1 < 0.63, 0.5,
regular_hours_1 < 0.88, 0.75,
1.0
)
... View more
07-31-2024
01:59 PM
|
0
|
0
|
2670
|
|
POST
|
Strings must be single-quoted: query = '"{}" = \'{}\''.format(unique_id_field, unique_id)
... View more
07-24-2024
02:13 PM
|
1
|
0
|
2700
|
|
POST
|
Unfortunately, the OP is using ArcMap 10.8.2, which is Python 2.x.
... View more
07-24-2024
01:36 PM
|
1
|
1
|
2706
|
|
POST
|
A few potential issues. Firstly, why all the curly brackets? If you are trying to use Python string formatting, you are missing calling the format function itself. Assuming the unique_id is a number and not a string, try query = '"{}" = {}'.format(unique_id_field, unique_id)
... View more
07-24-2024
11:48 AM
|
1
|
5
|
2730
|
|
IDEA
|
ArcPy already has a full-blown context manager for managing geoprocessing environments: EnvManager—ArcGIS Pro | Documentation
... View more
07-23-2024
01:35 PM
|
0
|
0
|
2092
|
|
IDEA
|
Although I agree ArcGIS Pro, and especially ArcGIS Server, has lots of unnecessary overhead if you only want to run ArcPy, what are the licensing issues you run into with ArcGIS Pro in the cloud?
... View more
07-23-2024
06:29 AM
|
0
|
0
|
1653
|
|
POST
|
Unless you are willing to provide a working link, or an example result file, it is difficult for anyone to comment when they have no idea what exactly the XML contents look like. How is this related to your other post? (OGC URL is not working - Esri Community). You haven't responded there but seemed to be asking a similar question.
... View more
07-22-2024
06:52 AM
|
0
|
0
|
1548
|
|
POST
|
Not to nitpick on semantics, but saying "Microsoft's Crowd Strike software" implies: 1) the software is called 'Crowd Strike', and 2) Microsoft either develops or owns the software. CrowdStrike is a company and not a software product, and the company is not owned by Microsoft. The affected software is Falcon Sensor, part of the CrowdStrike's Falcon multi-platform security product. The botched update causing the issue only impacts Microsoft Windows software, but that doesn't mean Microsoft has anything to do either directly or indirectly with what is happening. It is impossible to say whether your hosted feature services are impacted by the CrowdStrike issue because no one in the community here knows your organization's technical architecture and software products.
... View more
07-19-2024
07:19 AM
|
5
|
0
|
5476
|
|
POST
|
The containerized version of ArcGIS Enterprise is Introduction to ArcGIS Enterprise on Kubernetes—ArcGIS Enterprise on Kubernetes | Documentation
... View more
07-16-2024
06:00 AM
|
0
|
0
|
659
|
|
POST
|
Regarding your first question about ArcSOC.exe, you won't need to do anything for that process if you address the ArcGISServer.exe process because CPU affinity is inherited by child or spawned processes.
... View more
07-11-2024
06:33 AM
|
1
|
0
|
1610
|
|
POST
|
Looks to have a misconfigured certificate on the web server: NET::ERR_CERT_COMMON_NAME_INVALID
... View more
07-09-2024
09:16 AM
|
0
|
0
|
2335
|
|
POST
|
Spent time working through the issue with Esri Support, and it is complex. The issue has nothing to do with any specific type of workspace, nor anything with CalculateGeometryAttributes itself, it has to do with how Esri has structured their code for hundreds of Python-based tools like CalculateGeometryAttributes. There are literally hundreds of tools that will all fail to run with Python multiprocessing. The crazy part is, for most of the tools only a single line of code needs to be changed to make it work. The question then becomes are these issues with documentation or the software, are these defects or enhancement requests, etc.... I haven't closed out the Esri Support case yet, but I suspect it will be a mixture of documentation defects and software enhancements that come out of it. In the meantime, one can at least roll their own code with ArcPy DA cursors.
... View more
07-01-2024
02:46 PM
|
1
|
0
|
3270
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-11-2026 07:04 AM | |
| 1 | a month ago | |
| 2 | 07-06-2026 12:29 PM | |
| 1 | 07-06-2026 12:00 PM | |
| 2 | 06-05-2026 10:30 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|