|
POST
|
We created two different formats of the same data. The html data dictionary was provided with the solution as a stand alone file. The Experience Builder apps was an attempt to make a data dictionary explorer widget. We have not got a lot of feedback on the Experience Builder widget and are getting rid of that experience. We are recommending to use 3.2 and the GDB Schema Report.
... View more
03-12-2024
12:49 PM
|
0
|
0
|
1961
|
|
POST
|
What spatial ref is your data, wonder if you need to use https://developers.arcgis.com/arcade/function-reference/geometry_functions/#buffergeodetic
... View more
03-06-2024
10:21 AM
|
0
|
1
|
3039
|
|
POST
|
You are calling Count too much. Count on a FeatureSet causes a database query. I would suggest just call Intersect with a buffer(features are considered snapped if they are within the tolerance of the dataset) and looping over the results. If you are concerned about getting the closest, then call distance to and find the closest. Take a look at the function below function find_closest_line(input_geo, fs, search_distance) {
var candidates = Intersects(fs, Buffer(input_geo, search_distance, 'meters'));
var shortest = [Infinity, null];
if (IsEmpty(candidates)) {
return null
}
for (var line in candidates) {
var d = Distance(input_geo, line);
if (d < shortest[0]) {
shortest = [d, line];
}
}
return shortest[-1];
} I have not worked with curves in Arcade.
... View more
03-06-2024
04:42 AM
|
0
|
1
|
3055
|
|
POST
|
Take a look at - https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_calculation/CalcJunctionFields.md
... View more
03-05-2024
10:04 AM
|
0
|
1
|
3083
|
|
POST
|
We created a chart of AA methods to AR https://github.com/Esri/arcade-expressions/blob/master/Attribute%20Assistant.md The https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_calculation/CalcJunctionFields.md rule should work for you.
... View more
03-04-2024
03:27 AM
|
1
|
15
|
4429
|
|
POST
|
Listing the Junction Object tables with def queries does cause issues with the association tools. We do not split them up with def queries and just leave them as one table. They are adding subtype group tables to 3.3 to resolve this issue, but for now, one table in the map is the best option.
... View more
03-04-2024
03:20 AM
|
1
|
0
|
2674
|
|
POST
|
Sadly, it does not use the domain of the inline network attribute. It uses the domain assigned at the field of the first class that NA is assigned to.
... View more
03-04-2024
03:17 AM
|
1
|
1
|
1526
|
|
POST
|
Do you have a layer in the map pointing to the same target Service Layer more than once. Maybe it is repeated with a def query? Subtype Group Layers count as one layer
... View more
03-01-2024
05:49 AM
|
0
|
2
|
2689
|
|
POST
|
Could you try changing the name of the description column to something else? I wonder if it is removing the (description) from the name of the field and it thinks there are two fields of the same name.
... View more
02-29-2024
05:23 AM
|
0
|
0
|
1258
|
|
POST
|
Have you repeated the later in the map? I would suggest logging a tech support incident.
... View more
02-29-2024
03:15 AM
|
0
|
1
|
2700
|
|
POST
|
Gavin, Add the rule. We just did not model this scenario. I do not see any issue with it.
... View more
02-27-2024
05:48 AM
|
0
|
0
|
1791
|
|
POST
|
In arcade, there are no function on arrays. You need to call Includes(inputArray, value)
... View more
02-26-2024
08:29 PM
|
1
|
0
|
1739
|
|
POST
|
Jens, I cannot repo the error. I am not sure the difference. Maybe a language pack? Are you using a Config table at the same time?
... View more
02-26-2024
03:23 AM
|
0
|
1
|
1889
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 07-07-2026 06:45 AM | |
| 1 | 06-26-2026 09:15 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|