|
POST
|
@TimHodson I have attached the full legal description. This property is in Cook County, IL for reference. Thank you for your help!
... View more
Thursday
|
0
|
1
|
79
|
|
POST
|
@TimHodson I edited my previous response, the attachment is now included
... View more
Thursday
|
0
|
3
|
87
|
|
POST
|
@TimHodson The next call is clockwise to the previous call and the call after that counterclockwise (see Angle 2 attachment). However, when I enter those calls into the traverse the are not correctly oriented. Is there something I need to change/adjust when shifting from a clockwise to counterclockwise direction or vice versa?
... View more
Thursday
|
0
|
5
|
91
|
|
POST
|
Thanks @TimHodson Are the backstage units found Project Tab > Options > Units?
... View more
Thursday
|
0
|
8
|
114
|
|
POST
|
Could someone please advise me on how to properly enter the highlighted call into the Traverse tool?
... View more
Thursday
|
0
|
10
|
145
|
|
POST
|
@Rafael_Bombacini Thank you for verifying the issue. It looks like I don't have the appropriate authorization to create a support case. Could you please advise the best method to submitting the issue?
... View more
Thursday
|
0
|
1
|
75
|
|
POST
|
@Rafael_Bombacini @ChrisUnderwood I have another machine running version 3.6.2, the Copy Parallel tool worked correctly.
... View more
Wednesday
|
0
|
0
|
113
|
|
POST
|
Yes, I just updated to 3.7.1 this morning and received the same error. @ChrisUnderwood
... View more
Wednesday
|
0
|
0
|
160
|
|
POST
|
Every since version 3.7 was released the copy parallel tool is not working with the Parcel Fabric (PF). I am receiving the attached error message. Might anyone know what is causing this issue. Note the copy parallel tool works fine with non-PF data. Thanks
... View more
Wednesday
|
0
|
7
|
198
|
|
POST
|
I am still seeing the stuck circled. Also do I need to Intersect the parcels (see line 31). I really just want to join the 'Site Boundary' table to the 'Ownership Parcels' table. Thanks again!
... View more
07-01-2025
08:49 AM
|
0
|
0
|
554
|
|
POST
|
Like this? Thank you for all your help! for (var parcel in parcels) {Console(parcel.name)
... View more
07-01-2025
08:45 AM
|
0
|
1
|
554
|
|
POST
|
Here is my updated expression, still unable to execute. In the Arcade Playground my output says "Test execution error: Unexpected token '}'.. Verify test data."
... View more
07-01-2025
07:20 AM
|
0
|
5
|
2341
|
|
POST
|
// Connect to the same portal as your dashboard
var portal = Portal("https://some.portal.college.edu/portal")
// Shared item ID for both layers
var itemId = "7712f75bdb7246d9b6c56f2c9e029dbe"
// Ownership Parcels (Layer 24)
var parcels = FeatureSetByPortalItem(
portal, itemId, 24,
["Name", "CalculatedArea", "COST_CENTER"]
)
// Site Boundary (Layer 57)
var sites = FeatureSetByPortalItem(
portal, itemId, 57,
["Name", "COST_CENTER"]
)
// Define table schema
var fields = [
{ name: "Parcel_Name", type: "esriFieldTypeString" },
{ name: "Calculated_Area", type: "esriFieldTypeDouble" },
{ name: "Parcel_COST_CENTER", type: "esriFieldTypeString" },
{ name: "Site_Name", type: "esriFieldTypeString" },
{ name: "Site_COST_CENTER", type: "esriFieldTypeString" }
]
// List of output features
var features = []
// Intersect parcels with sites and build output table
for (var parcel in parcels) {
for (var site in sites) {
if (Intersects(parcel, site)) {
Push(features, {
attributes: {
Parcel_Name: parcel["Name"],
Calculated_Area: parcel["CalculatedArea"],
Parcel_COST_CENTER: parcel["COST_CENTER"],
Site_Name: site["Name"],
Site_COST_CENTER: site["COST_CENTER"]
}
})
}
}
}
// Return result (dictionary structure — required by Dashboards)
return FeatureSet({ fields: fields, features: features });
}
... View more
07-01-2025
07:20 AM
|
0
|
6
|
2341
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 09-10-2021 10:51 AM | |
| 2 | 10-20-2022 07:22 AM | |
| 1 | 02-06-2023 02:23 PM | |
| 1 | 03-18-2019 12:51 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|