|
POST
|
Hi @BlairPellegrino , Unfortunately I didn't find a solution for this and consulted with another colleague as well. It seems so strange this functionality isn't there. I ended up embedding a dashboard in an EB page because in Dashboards I can specify multiple layers each to get filtered in the action. Also a clear filter option would be so nice too in EB. This post/responses might be useful or of interest: https://community.esri.com/t5/arcgis-experience-builder-questions/clearing-filter-widgets/m-p/1001349#M1231 If you figure out this is possible, please let me know. I was hoping in the last update but I didn't see anything for filter or a group filter. Thanks, Kathy
... View more
04-11-2022
08:01 AM
|
0
|
0
|
2427
|
|
POST
|
Thank-you @TaylorGreenup ! The information you provided is SUPER useful. I didn't realize the expression couldn't be overwritten in the field. I wanted one expression to use the last rating from previous observation and then only change if the user wanted to change the field. So I guess that functionality is out for now. Good luck and thank-you for taking the time to share.
... View more
04-06-2022
01:49 PM
|
0
|
0
|
2621
|
|
POST
|
What is the latest update, do calculated expressions work in Field Maps now per the latest What's New in Field Maps March 2022 or is it at the show-stopper stage. I want to add an expression for a field in the Field Maps app form builder and looks to be fine, but in Field Maps app I get the '"the form contains unsupported data.". Thanks for the latest information! Kathy
... View more
04-06-2022
10:32 AM
|
0
|
1
|
9174
|
|
POST
|
Hi, Thanks so much for sharing code and what you are using Field Maps for. I'm interested in using calculated expressions within Field Maps. Are you working offline and having good luck with the expressions? This still isn't very clear to me if the arcade calculated expressions work offline well or what the limitations are. Thanks! Kathy
... View more
04-06-2022
09:36 AM
|
0
|
2
|
2634
|
|
POST
|
Hi, I don't believe this functionality is currently available, but our group would really appreciate it since we mostly use Field Maps for aerial surveys. The default behavior of zooming way in is not only annoying but adds in time in the data collection and unnecessary time looking at the screen which is very limited. There are a number of features where its obvious these field apps are designed for on the ground type surveys. I had submitted this idea a year ago but I'm not sure if its even being considered. Thanks Kathy Allow option to disable 'Zoom to location' when Ad... - Esri Community
... View more
04-06-2022
09:05 AM
|
2
|
0
|
2551
|
|
POST
|
Hello, We have a couple of biologists using Field Maps and Garmin Glo units for use with the tracker extension. They are using iPad Pros and work offline. Field Maps and Tracker apps were both uninstalled and only Field Maps is now installed on both devices. The uninstall/reinstall did help one device in now tracks actually show on the map within Field Maps and they were able to collect tracks for about 3/4 of their survey. The other device briefly had tracks offline but then was never able to get the tracking layer to show in Field Maps. I'm attaching the tracking log for help in interpreting the errors for the device that never saw tracks in the map. 10:00 They downloaded an offline map and were in WiFi range for testing/training 12:00 they went offline (left the office) 3:00 returned to the office after aerial survey In the attached log: I see these messages and don't know how to interpret 12:07 [TRACKS] Location Manager failed: The operation couldn't be completed. (kCLErrorDomain error 0.) this error can be found in numerous places 12:26 [TRACKS] tracks fail-safe timer triggered (error also found throughout) They tried to disable/enable tracking to see if this would resolve the issue @ 1:11, but no luck. In the user settings, the receiver shows the Garmin Glo (updated with latest firmware) and has a good accuracy < 5m but they have consistently had issues with getting the tracks to be visible and then reliable. Interpretation of the errors above would be appreciated and any troubleshooting help to get their tracks working would be appreciated. Thanks, Kathy
... View more
04-01-2022
08:09 AM
|
0
|
1
|
1220
|
|
BLOG
|
I was just looking for what was new in Field Maps in March 2022. Thank-you for the post. For the arcade expressions, does this work offline? Also is it possible to get the device altitude for locations captured without an altitude attribute? Essentially it would be the device altitude at the time of data capture. Thank-you!, Kathy
... View more
03-28-2022
12:10 PM
|
1
|
0
|
4218
|
|
POST
|
Hi, I just encountered this issue today of trying to append attachments to a hosted AGOL feature layer using Pro and the append tool. This had worked fine prior and at the time I was using ArcGIS Pro 2.7. I am now using Pro 2.8 after encountering a different BUG in 2.9. The basic edit functionality of the split tool currently has issues in version 2.9 and I see the BUG (000146327) is only review. So I had to go back to 2.8 to be able to do my work. Now it looks like because of this BUG I will now need to go back to 2.7. I'm sorry but this is seems really ridiculous that in trying to be geospatial support to our agency there are so many BUGs to navigate. This seems like basic functionality for appending attachments same as editing with a split tool. Not good. I'm glad I seen this post regardless, but wow. Thanks, Kathy
... View more
03-26-2022
08:34 PM
|
0
|
2
|
2737
|
|
POST
|
Thanks to other posts on Community this code works! Might not be the most efficient but it works! var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxx', 0, ["AKDate"], false);
var track_dt = Distinct(fs,["AKDate"]);
var fs2 = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxxx', 2, ["AKDate"], false);
var spawn_dt = Distinct(fs2, ["AKDate"]);
var fs3 = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxxx', 1, ["AKDate"], false);
var pred_dt = Distinct(fs3, ["AKDate"]);
//return track_dt
var fs4 = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxx', 0, ["AKDate"], false);
var hschool_dt = Distinct(fs4, ["AKDate"]);
var Dict = {
'fields':[
{'name': 'AKDate', 'type': 'esriFieldTypeString'}
],
'geometryType': '',
'features':[]
};
var i = 0;
for (var f in track_dt){
Dict.features[i] = {
'attributes':{
'AKDate': f['AKDate'],
}
};
i++;
}
for (var f in spawn_dt){
Dict.features[i] = {
'attributes':{
'AKDate': f['AKDate'],
}
};
i++;
}
for (var f in pred_dt){
Dict.features[i] = {
'attributes':{
'AKDate': f['AKDate'],
}
};
i++;
}
for (var f in hschool_dt){
Dict.features[i] = {
'attributes':{
'AKDate': f['AKDate'],
}
};
i++;
}
Console(Text(Dict))
var s_dt = FeatureSet(Text(Dict));
return Distinct(s_dt,['AKDate']);
... View more
03-21-2022
11:28 AM
|
0
|
0
|
1357
|
|
POST
|
Hello, An update, I found in searching other posts similar syntax below to create a list. Below shows creating a list of survey dates just from one layer. My plan would be to bring in the other survey layers and then similarly add to the list, get distinct values and have the category selector use the data expression. Currently below the code returns a list of survey dates within the one layer when I test it, but outside of the data expression I get the yellow exclamation, "Unable to execute arcade script". I understand for the data expression the output needs to return a FeatureSet. How do I convert the list to a FeatureSet? Thanks! var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxxx', 0, ["AKDate"], false);
var track_dt = Distinct(fs,["AKDate"]);
//return track_dt
var sdate_lst = []
for (var dt in track_dt){
Push(sdate_lst, dt.AKDate)
}
return Concatenate(sdate_lst, '\n')
... View more
03-21-2022
07:53 AM
|
0
|
1
|
1366
|
|
POST
|
Yes we were expecting to see tracks between 8:18 and 8:47. The user tried again later yesterday and even though the user enabled tracking they could never see tracks in Field Maps. Today the biologist removed both Field Maps and Tracker app from the iPad, downloaded Field Maps, and I'm happy to report they can now see their tracks in Field Maps and we have points/lines. I'm not sure of the issue before (same workflow) but removing the apps/downloading again did the trick. Thank goodness!
... View more
03-17-2022
03:43 PM
|
0
|
0
|
5922
|
|
POST
|
Ok on a user not collecting tracks in both Tracker and Field Maps, but any ideas why the tracks wouldn't be collecting in Field Maps based on the log attached?
... View more
03-16-2022
05:16 PM
|
0
|
3
|
5933
|
|
POST
|
Thanks for the quick reply. The biologist is working offline, so that is good to know that the "Failed to update last known location" messages are expected. The biologist did yes disable tracking at the end of their survey so they were surveying/flying during the time the tracks were turned on and then protocol is to turn off when landing. I will check on the duration but it was such a short time today it doesn't seem likely they could have expired. Update I just checked and they had selected 4 hours as the duration but this was less than an hour. Today was the only day they haven't been turning on in the tracker app which is unfortunate since tracks were actually collecting then. Do your foresee any issue with the tracker app interfering with Field Maps. As it stands right now on this device/user the tracker app has been way more reliable. Thank-you for the help!
... View more
03-16-2022
11:39 AM
|
0
|
5
|
5966
|
|
POST
|
Hello, We are using tracker for aerial surveys and a biologist just returned from surveying to find out they have NO survey tracks recorded despite enabling tracks within Field Maps. They have been using the tracker extension for the past few years seasonally. The last few surveys they have enabled tracks through the Tracker app (which I know is now deprecated) but they could see the tracks there and we have been able to download from AGOL post-survey. Now today just using Field Maps to control the tracks there is nothing. I'm attaching the troubleshooting log where you can see on 3/16 8:18 tracks were enabled and then at 3/16 8:47 tracking was stopped. In the log, the tracks are having issues, "Failed to update last known location", "stationary updating LKL service with last location"....repeating the entire time. We are using iPad Pros. Can you please help us diagnose the issue? At the moment I've told the surveyor to still enable thru the Tracker app since at least we did get tracks collected then versus nothing which is a big loss. Thanks, Kathy
... View more
03-16-2022
10:44 AM
|
1
|
10
|
6743
|
|
POST
|
Hello, I am working on a dashboard with a category selector to show survey data by survey date. Instead of selecting just one data source in case no data was collected for that layer I would like to be able to set a data expression as the source, that way I do not miss showing survey data on the dashboard. There are 5 survey data layers and I can pull in the dates as a FeatureDataset for each of the data layers (like below), but I'm having trouble combining all the data sources and to get a distinct survey date list. I'm not sure where to go after I get the individual layer dates. Do I need to make a list from the FeatureDataset or please advise. I am not very versed in arcade. var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'xxxxxxx', 0, ["AKDate"], false);
var track_dt = Distinct(fs,["AKDate"]); @XanderBakker you have been such a great help in the past, any suggestions on the arcade syntax? Thank-you! Thanks in advance! Kathy
... View more
03-15-2022
01:16 PM
|
0
|
2
|
1434
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-15-2026 06:09 PM | |
| 1 | 03-18-2026 01:21 PM | |
| 1 | 10-02-2023 03:06 PM | |
| 2 | 10-09-2025 08:45 AM | |
| 1 | 03-03-2025 10:42 AM |
| Online Status |
Offline
|
| Date Last Visited |
4 weeks ago
|