|
POST
|
According to Alter Field (Data Management)—ArcGIS Pro | Documentation: When using in memory feature classes or tables, renaming the ObjectID, Shape, or other required fields such as those found in network analysis layers can result in corrupted data or unexpected behavior. Not sure if that directly applies to your situation, but it seems close enough to point out in case you were not already aware. UPDATE: I just did a quick test using a basic feature class (nothing special like network analysis), and got: arcgisscripting.ExecuteError: ERROR 000664: Invalid input: The type of dataset is not supported.
Failed to execute (AlterField). It appears the newer memory workspace does not support altering fields.
... View more
11-30-2021
07:54 AM
|
3
|
5
|
4494
|
|
POST
|
You should contact your Esri Customer Service Representative (CSR). Regardless of the specific cause, a CSR will have to get involved to update your account so the licenses can show up for you to provision.
... View more
11-30-2021
07:43 AM
|
0
|
1
|
1746
|
|
POST
|
@Greta, I am not sure why you re-posted your original question as a reply to Dan's comment. I suggest you either change the reply or simply delete it since it currently adds no value to the discussion.
... View more
11-29-2021
07:25 AM
|
0
|
1
|
2430
|
|
POST
|
Why are you moving away from Concurrent-Use to Single-Use licensing? Knowing that might help inform people's feedback.
... View more
11-29-2021
07:16 AM
|
0
|
4
|
3232
|
|
POST
|
It isn't pretty, but it is simple to implement. You can use a chained Python string replace call: >>> s = "NRSP21_Rose Court_A\r\n_1_211012_162927447_16"
>>> print(s)
NRSP21_Rose Court_A
_1_211012_162927447_16
>>>
>>> s_new = s.replace("\r", "").replace("\n", "")
>>> print(s_new)
NRSP21_Rose Court_A_1_211012_162927447_16
>>>
... View more
11-19-2021
08:45 AM
|
1
|
1
|
7065
|
|
IDEA
|
@AJR, you make good music and do GIS too, impressive. 🙂 Adding regex support to Arcade is a great idea, definitely worth a vote, but it will be quite a lift for Esri to do it. I will cross my fingers, just not hold my breath.
... View more
11-19-2021
08:37 AM
|
0
|
0
|
3548
|
|
POST
|
@ReeseFacendini, the presentations I have seen about the upcoming ArcGIS Monitor changes are quite interesting, dare I say exciting. Any word on when the next release will be?
... View more
11-10-2021
11:00 AM
|
1
|
1
|
3972
|
|
POST
|
Interesting, I don't nest update cursors on the same dataset, but I will have to test it out sometime.
... View more
11-04-2021
08:03 AM
|
1
|
2
|
4679
|
|
POST
|
I am guessing nesting update cursors on the same feature class will create lock issues that prevent the nested cursor from actually updating. Have you tested this and it worked?
... View more
11-04-2021
07:59 AM
|
1
|
5
|
4681
|
|
POST
|
Commenting out the updateRow line effectively turns the UpdateCursor into a SearchCursor. That said, uncommenting the updateRow line won't work because the update cursor has been fully iterated by sorted so there is no current row to update.
... View more
11-04-2021
07:16 AM
|
0
|
0
|
4685
|
|
POST
|
A shape token is an Esri construct that backend datastores (shapefile, file geodatabase, enterprise geodatabase, etc...) don't know exist, so passing "SHAPE@X" in a SQL WHERE clause will fail regardless of the backend datastore. In general, the SQL clauses with ArcPy DA cursors are passed straight through to the backend datastore, so what you can do in the SQL clauses varies. For shapefiles and file geodatabases, I don't believe any spatial methods are supported in SQL clauses; however, you can use spatial methods in SQL clauses with enterprise geodatabases.
... View more
10-28-2021
07:49 AM
|
2
|
0
|
2000
|
|
POST
|
Can you elaborate on "it is making features bigger?" And can you give an example?
... View more
10-26-2021
11:30 AM
|
0
|
1
|
2830
|
|
POST
|
The error indicates it wants newlines or semicolon, have you tried adding those? //
// fields to concatenate
var apnparts = [$feature.BOOK, $feature.PAGE, $feature.NUMBER2DIG];
// the concantenation
var total = Concatenate(apnparts, "-");
var int = Concatenate(apnparts, "", '#');
var nodash = Concatenate(apnparts,"");
return {
"result" : {
"attributes" : {
"$feature.APN_TOTAL" : total,
"$feature.APN_INTEGER" : int,
"$feature.APN_NODASH" : nodash
}
}
}
... View more
10-21-2021
11:11 AM
|
1
|
1
|
2504
|
|
POST
|
If you just want to make the last word the first word: >>> s = "West Wind Ruisseau"
>>> " ".join(s.split()[-1:]+s.split()[:-1])
'Ruisseau West Wind'
>>>
... View more
10-21-2021
11:06 AM
|
2
|
1
|
1104
|
|
POST
|
>>> s = "Wind Ruisseau"
>>> " ".join(s.split()[::-1])
'Ruisseau Wind'
>>>
... View more
10-21-2021
09:07 AM
|
2
|
7
|
4147
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 07-06-2026 12:29 PM | |
| 1 | 07-06-2026 12:00 PM | |
| 2 | 06-05-2026 10:30 AM | |
| 1 | 05-29-2026 08:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|