|
POST
|
Related ideas: Arcade docs: Equals() function doesn’t consider M-values Arcade function: EqualsMZ()
... View more
03-25-2022
03:06 AM
|
0
|
0
|
2575
|
|
POST
|
Yeah, although Equals() doesn’t work the way I would have expected…it doesn’t consider changes to M-values: Arcade: Editing M-values not treated as change to geometry So that’s why I went with the text comparison.
... View more
03-25-2022
03:01 AM
|
0
|
0
|
5790
|
|
POST
|
Thanks. Good suggestion about the variables. I tried to clean them up: var geom_text = Text(Geometry($feature));
if (geom_text == Text(Geometry($originalfeature))) {
return
}
function pythagoras(x1, y1, x2, y2) {
return sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
}
var geom = Dictionary(geom_text);
var paths = geom['paths'];
var oldX = paths[0][0][0];
var oldY = paths[0][0][1];
var line_length = 0;
for (var path_idx in paths) {
for (var point_idx in paths[path_idx]) {
var newX = paths[path_idx][point_idx][0];
var newY = paths[path_idx][point_idx][1];
if (point_idx != 0) {
line_length += pythagoras(oldX, oldY, newX, newY);
}
paths[path_idx][point_idx][-1] = line_length;
oldX = newX;
oldY = newY;
}
}
return { "result": { "geometry": Polyline(geom) } };
... View more
03-25-2022
01:37 AM
|
0
|
2
|
5799
|
|
POST
|
Thanks very much. That helps. As you suggested, I'm looking into updating my version of Pro: What versions of Pro are compatible with 10.7.1 EGDBs?
... View more
03-25-2022
01:18 AM
|
0
|
0
|
2609
|
|
POST
|
I'm hoping to update my version of ArcGIS Pro (2.5.0) to the latest version of Pro that will support our current 10.7.1 EGDB (Oracle 18c). I've heard a rumor that modern versions of Pro aren't compatible with older EGDBs -- although I don't have specific details. Is there a way to determine what versions of Pro work with 10.7.1 EGDBs? Thanks.
... View more
03-25-2022
01:03 AM
|
0
|
4
|
7306
|
|
POST
|
I have a calculation attribute rule that updates polyline geometries: Set polyline M-values to cumulative length of line. That attribute rule works as expected in ArcGIS Pro 2.9.2 / FGDB (test environment). Now, I want to use it in our 10.7.1 EGDB and ArcGIS Pro 2.5.0 (production environment). When I go to create the rule, I notice that the Field is mandatory, yet the SHAPE field is missing from the field list: (That's different than 2.9.2 -- the field isn't mandatory in 2.9.2, and the SHAPE field shows up in the list.) If the Field is mandatory in 2.5.0, and the SHAPE field is missing from the list, then how can I create an attribute rule that updates the geometry? Thanks!
... View more
03-24-2022
11:01 AM
|
0
|
2
|
2662
|
|
POST
|
When creating a multipart polyline: Is there a way to create the additional parts — all within the same drawing session? (create a part, finish part, create a new part) The way I currently do it is: create multiple separate features and merge them together after-the-fact. But that’s a bit of a pain. Thanks.
... View more
03-24-2022
05:52 AM
|
1
|
1
|
2084
|
|
POST
|
Regarding the ArcGIS Pro Roadmap - December 2021 Non-versioned editing - support of workflows similar to those implemented in ArcMap for editing non-versioned data. When implemented, edits against non-versioned data will not be written directly to the database, giving the user the ability to undo and/or discard edits before committing. What is meant by the word “undo”? I suspect it means that ALL edits in a session can be discarded. I don’t think it’s referring to true undo functionality. I.e., we won’t be able to undo (CTRL+Z) the last individual edit within a greater editing session. Can someone confirm what the intent is? I’m aware that roadmap plans are tentative/subject to change. Thanks!
... View more
03-24-2022
04:44 AM
|
1
|
8
|
5662
|
|
IDEA
|
Regarding the Repair Geometry (Data Management) GP tool: It looks like ESRI’s native SDE.St_Geometry spatial type is not supported by that tool. Only these spatial types are supported: Microsoft SQL Server—Geometry and Geography PostgreSQL—PostGIS, Geometry and Geography Oracle—SDO_Geometry Could support for SDE.St_Geometry (in Oracle) be added? We have real-world cases where SDE.St_Geometry (Oracle 18c) features have invalid geometry. But we don’t have a way to find and fix those issues. Related: Find & repair problem ST_GEOMETRY rows — "Shape integrity error"
... View more
03-24-2022
04:13 AM
|
5
|
2
|
2361
|
|
IDEA
|
Related: Search for the word “Arcade” in this page: (multiple instances) Your Ideas in the December 2021 ArcGIS Online Update Also, see the Arcade developer profile docs: Form Calculation (since Arcade version 1.17)
... View more
03-24-2022
02:39 AM
|
0
|
0
|
4176
|
|
POST
|
Rob, In case you aren’t aware, there is also an Attribute Rules community where you can ask questions like these.
... View more
03-24-2022
01:50 AM
|
0
|
1
|
2104
|
|
IDEA
|
Could a search tolerance parameter be added to the Arcade Intersects() function?
... View more
03-22-2022
01:14 AM
|
1
|
0
|
743
|
|
IDEA
|
In an Arcade calculation attribute rule, return a custom informational message to the user/application if an operation was performed successfully. For example, an attribute rule is designed to create a record in a related table: LIFECYCLE_TRANSACTIONS. It would be helpful if we could inform the user that the related record was created (the user might not be aware). The user might need to review the record and edit it with comments, etc..
... View more
03-21-2022
06:05 PM
|
10
|
2
|
3708
|
|
IDEA
|
Related: Code Review: Set polyline M-values to cumulative length of line
... View more
03-21-2022
08:55 AM
|
0
|
0
|
629
|
| 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 | 3 weeks ago |