|
POST
|
Could be the size limitation I just found out about. Is this a large area? Please see my "idea".
... View more
10-04-2023
07:57 AM
|
0
|
1
|
1280
|
|
IDEA
|
Our project requires very high resolution photos and we're easily reaching the 1GB limit.
... View more
10-04-2023
07:37 AM
|
1
|
1
|
1458
|
|
IDEA
|
* In Survey123 Connect No exaggeration I have >200 forms.
... View more
10-03-2023
07:36 AM
|
0
|
0
|
975
|
|
POST
|
When filtering for parentglobalid in map viewer, they disappear after viewing. If I were to open the filter pane to verify its existence, then navigate away, then come back, the filter will be missing. If I refresh without saving and verify again, it will be back.
... View more
08-17-2023
07:42 AM
|
0
|
1
|
482
|
|
POST
|
Can anyone point me in the right direction on how to create a quarterly/annual report? If I had a Survey123 form with some fields, say "date range". I'd like to be able to report all features collected within that date range and export the report.
... View more
08-09-2023
10:49 AM
|
0
|
1
|
612
|
|
POST
|
You'll probably have to contact support about getting the deleted data back. Or get a nice DEM to find the values. Do you need the Z field exposed for editing? Probably take it out, only expose the fields you need for editing.
... View more
05-24-2023
07:03 AM
|
0
|
0
|
1057
|
|
POST
|
Are you using the relevant column? If so, try the esri::hide column instead.
... View more
05-23-2023
04:14 PM
|
0
|
1
|
1072
|
|
POST
|
Can anyone point me in the right direction to generating quarterly and annual reports? I've used Power Automate to generate reports as they come in, but I'd like somehow to select all the surveys that have come in during a certain time frame and create a summary report for that selection.
... View more
05-23-2023
04:13 PM
|
0
|
0
|
420
|
|
POST
|
I have a field user in a remote island in the Pacific. He downloaded an offline version of the map before departing the US. Got an email today with the below screenshot. Any help is greatly appreciated.
... View more
05-03-2023
07:31 AM
|
1
|
2
|
1322
|
|
POST
|
You wouldn't happen to know how to get Field Maps to make this calculation, would you? Calcs work in ArcGIS Online, but not Field Maps. Probably because you cannot "Finish" the drawing in Field Maps (Submit) like you do in AGOL (double click).
... View more
05-03-2023
07:04 AM
|
0
|
1
|
3654
|
|
POST
|
Perfect! I merged this with the code found in the "Common Calculated Expressions" blog post to get Lat/Long instead of meters. Thank you so much! https://www.esri.com/arcgis-blog/products/field-maps/field-mobility/common-calculated-expressions-for-arcgis-field-maps/
... View more
05-02-2023
10:21 AM
|
0
|
0
|
3673
|
|
POST
|
Need to capture the starting point and end point of line features. Surely the table would contain fields for each - [StartX], [StartY], [EndX], [EndY]. Does anyone know if Field Maps/Arcade has an expression that would do this calculation? Otherwise I'd ask the field crews to capture both point (x2) and line. In which case they would complain.
... View more
05-02-2023
09:05 AM
|
1
|
5
|
3702
|
|
POST
|
Any help is MUCH appreciated. I'm trying to get a widget to perform a Union on two layers, then run an Intersection on another, then report back attribute from both layers. The screenshot above shows the three layers, all polygons. Union is to be performed on the polygons labeled 2, 3, 5 (poly_fs, poly_fs3). (I think) I need to union because I need to report back the square footage. The Permanent | Actual yellow polygon intersects the 2, 5, and 3 in two places. Intersection to be performed on the Temporary/Permanent | Actual/Estimated polygon layer (poly_fs2). Actually, this layer needs to do a union on itself. We don't want to double count the area. I've successfully executed the Intersection part, but I cannot get either the Union(s), nor the Attributes, to come back. This is the foundation which I started. Aggregate by Spatial Relationship And here is what is working for me right now. // Write an expression that returns a FeatureSet.
// Documentation: https://arcg.is/3c419TD
// Samples: https://arcg.is/38SEWWz
// Portal
var portal = Portal('https://www.arcgis.com/');
// Create FeatureSet for polygons
var poly_fs = FeatureSetByPortalItem(
portal,
'535e3b40ca954053b1348a11f7ebfb59',
15,
[
'*'
],
true
);
// Create Featureset for points
var poly_fs2 = FeatureSetByPortalItem(
portal,
'535e3b40ca954053b1348a11f7ebfb59',
20,
[
'*'
],
true
);
var poly_fs3 = FeatureSetByPortalItem(
portal,
'535e3b40ca954053b1348a11f7ebfb59',
5,
[
'*'
],
true
);
// Create empty feature array and feat object for output
var features = [];
var feat;
var geom1 = poly_fs;
var geom2 = poly_fs3;
//If I uncomment this, I get an error
//var union = Union([poly_fs,geom2]);
// Iterate over time zones
for (var poly in poly_fs) {
// Filter points by polygon
var pts = Intersects(poly, poly_fs2);
var cnt = Count(pts);
var intersectsArea = 0;
if(cnt>0) {
for (var pt in pts) {
intersectsArea += AreaGeodetic(Intersection(poly, pt),'square-feet');
}
}
// Create feature with aggregated values
feat = {
'attributes': {
'Multiplier': poly['multiplier'],
'M Code': poly['OBJECTID'],
'AreaSqFt': Round(intersectsArea,2)
}
};
// Push feature into array
Push(features, feat);
};
// Create dict for output FeatureSet
var out_dict = {
'fields': [
{'name': 'Multiplier', 'type': 'esriFieldTypeInteger'},
{'name': 'AreaSqFt', 'type': 'esriFieldTypeDouble'},
{'name': 'M_Code', 'type': 'esriFieldTypeInteger'}
],
'geometryType': '',
'features': features
};
// Convert dictionary to feature set.
return FeatureSet(Text(out_dict));
... View more
03-20-2023
04:14 PM
|
0
|
0
|
866
|
|
POST
|
Apple users (Mac and iPad) are experiencing attempts to download page links instead of opening. This happens on Google Chrome and Safari. Typically when clicking a link from a Gallery widget. Doesn't matter if settings are to open within Hub, or straight to app.
... View more
03-02-2023
09:28 AM
|
0
|
0
|
453
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-29-2025 08:51 AM | |
| 3 | 08-26-2025 08:47 AM | |
| 1 | 09-05-2024 11:18 AM | |
| 1 | 05-03-2023 07:31 AM | |
| 1 | 05-15-2024 11:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-29-2025
08:39 AM
|