|
POST
|
can you return fs and see what type it is. Maybe it's a feature collection. Have you tried Featuresetbyportalitem?
... View more
12-04-2023
02:22 PM
|
0
|
0
|
1969
|
|
POST
|
you have negative values for RADIUS2? I don't understand. Aside from that it might be worth changing your aliases to radius2 etc. I have a distant memory of having something similar before.
... View more
12-04-2023
01:13 PM
|
0
|
0
|
1481
|
|
POST
|
Hi I'm not too sure on centroid() is that a database level function? Maybe I'm misreading it as a method but I don't quite understand. Would SHAPE@XY do the same job?
... View more
12-04-2023
01:08 PM
|
0
|
2
|
4903
|
|
POST
|
https://developers.arcgis.com/arcade/function-reference/array_functions/#includes Not sure your exact requirement but you could maybe keep SQL and use Filter() var fs = $map.myFeature
return Filter(fs, 'OBJECTID IN (1,2,3,4)') https://developers.arcgis.com/arcade/function-reference/featureset_functions/#filter
... View more
12-04-2023
12:27 PM
|
0
|
3
|
1980
|
|
POST
|
If you've got a numeric field called RADIUS2 populated with the values you need, then it should work. My guess is you've got your dataframe or data in a geographic coordinate system rather than projected, but without seeing your data or outputs that's just an educated guess.
... View more
12-04-2023
11:23 AM
|
1
|
0
|
1497
|
|
POST
|
Probably just a data expression with a new field created form Month() of the datetime.
... View more
12-04-2023
09:46 AM
|
0
|
0
|
1736
|
|
POST
|
There may also be some edge cases where the polygon centroid isn't within the polygon. Depending on the size of your area it may be easier just to run a select by location, switch selection and then manually move those remaining points (if there are any).
... View more
12-03-2023
04:30 AM
|
1
|
1
|
4955
|
|
POST
|
You first need to have a network, but: https://pro.arcgis.com/en/pro-app/latest/tool-reference/ready-to-use/itemdesc-findclosestfacilities.htm
... View more
12-03-2023
04:26 AM
|
0
|
0
|
2297
|
|
POST
|
Could it just be a field type change from when you rescaled by function? Have you checked the field types and precision/scale of your inputs?
... View more
12-03-2023
04:22 AM
|
0
|
1
|
6806
|
|
POST
|
Is it a 1 to 1 join by attributes? I'd probably run a search cursor on the polygons and get their centroid mapped into a dictionary. Next step would be an update cursor on the points to set the point geometry to that of the matching polygon.
... View more
12-01-2023
02:12 PM
|
0
|
0
|
5010
|
|
POST
|
The instructions only make sense if the highest value is greater than 52,800. If your raster only has values up to 41213.37, then just reclassify everything to 1. 0 52800 1 NODATA NODATA NODATA
... View more
12-01-2023
01:03 PM
|
0
|
0
|
1455
|
|
POST
|
what is highest value? I don't understand this - if it's 41213 then your start is higher than your end and the tool won't accept it. edit - I'd also recommend you share your analysis steps with someone before you submit your work as I don't really get your steps.
... View more
12-01-2023
12:31 PM
|
0
|
2
|
1466
|
|
POST
|
https://community.esri.com/t5/arcgis-pro-questions/copy-a-row-in-a-gdb-table-to-same-gdb-table/td-p/1258541 also works across different FCs
... View more
11-30-2023
11:35 AM
|
0
|
0
|
3599
|
|
POST
|
var ParcInt = Intersects(FeatureSetByName($map, "AllParcels",['USE_CODE']), BufferGeodetic($feature, 50, "feet"))
var arr_index = 0;
var features = [];
var feat;
for(var x in ParcInt){
useCode = mid(x.USE_CODE,1,1)
useCode = decode(useCode,
"0","Multi-USe",
"1","Residential",
"2","Open Space",
"3","Commercial",
"4","Industrial",
"5","Personal Property",
"6","Forest Property - Chapter 61",
"7","Agricultural",
"8","Recreational Property",
"9","Exempt Property",
'');
feat = {
'attributes': {
'UseType': useCode,
}
};
Push(features, feat);
}
var newDict = {
'fields': [
{ name: "UseType", type: "esriFieldTypeString" }
],
'geometryType': '',
'features':features
};
return FeatureSet(Text(newDict));
... View more
11-29-2023
01:15 PM
|
1
|
0
|
3259
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM | |
| 1 | 09-10-2025 02:35 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|