|
POST
|
Hi Xander, I seem to get the error regardless of the zoom scale. I did some more testing, and noticed that if the buffer distance is reduced to 10, then it returns null unless the lines are within 3 feet. I then increased the buffer to 90 and it required a line to be within 27 feet to not return a null. So there appears to be a direct ratio to the problem. In the meantime I have increased the buffer distance to 100 feet, which is giving me the desired results of a 30 foot buffer. This isn't optimal, but is working for now.
... View more
05-15-2020
07:07 AM
|
1
|
0
|
1058
|
|
POST
|
When using an Intersects on a Buffer in Arcade I appear to be getting inaccurate results. I tested an intersection of two lines, one with a buffer of 30 feet. However, the result is null unless the lines are within 9 feet of each other? Here is the expression I am using: var fsRoadsAll = Intersects(Buffer($feature, 30, 'feet'), FeatureSetByName($datastore, "ROADS_ALL", ["SPEED"])); var intersect_max = null; var cnt = Count(fsRoadsAll); if (cnt > 0) { intersect_max = 99 } if (intersect_max == null) return null; else return intersect_max; Any idea what I maybe doing wrong?
... View more
05-13-2020
01:03 PM
|
0
|
2
|
1138
|
|
POST
|
Hi, I am trying to find the number of points that are inside a polygon and then find the amount within the polygon with a 5 mile buffer. I was able to find the number within the polygon using the following: var fsCase = Intersects(FeatureSetByName($datastore, "SanDiegoCasesGeocoded"), $feature); var cnt = Count(fsCase); return cnt However when I try to repeat this with a 5 mile buffer I am getting incorrect results. The following script returns a count of 24 points. However if I manually create a buffer around the polygon in ArcPro and select the intersecting points it returns 72. var fsCase = Intersects(FeatureSetByName($datastore,"SanDiegoCasesGeocoded"), Buffer($feature, 5, "miles")) var cnt = Count(fsCase); return cnt; Any idea what may be the problem?
... View more
04-08-2020
04:51 PM
|
0
|
0
|
657
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-15-2020 07:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-01-2025
08:29 AM
|