|
POST
|
Hello, I am looking into working with 3D data collection. I saw this from the Field Maps site and want to learn more about what it is meant by 'a default z-value'. Is it something we can set up in the Field Maps for? If the feature layer is z-aware, it must have a default z-value if you use the map to collect data.
... View more
02-05-2024
02:25 PM
|
0
|
2
|
1701
|
|
POST
|
Hello all, Is it possible to calculate Z values using expression? I am looking into building an evacuation solution that stores address information and the property location. Given that there are many high-rise buildings in big cities, displaying property points in the urban areas can be tricky - there will be hundreds points overlapping in a single property parcel and not able to distinguish the address information properly. My idea is that if we can calculate z values based on the floor number that field workers enter, I can build a 3D scene to display the evacuation information. For example, 1st floor's z value sitting on 0 m (let's say there is base elevation information somewhere. the z value here only represent relative height from DEM). If users enter floor 2, z value will be calculated 2.5 m (about 8' ceiling). I know that it's possible in Survey123 to calculate Z value but have not looked into it yet in Field Maps. I hope to get some insights before I jump into a test. I appreciate for any your advice and feedback on dealing with calculated z values. Thank you!
... View more
01-15-2024
05:16 PM
|
1
|
1
|
1042
|
|
POST
|
Hello, I hope to get some direction on how I can get the list of merged polygons (A+B) that intersect another polygon layer (C). I have two polygon layer A. Municipalities and B. Regional Districts. I merged A and B into a new FeatureSet in Data Expression using common attributes such as admin type and name of the area. Then, I want to count how many of these admin areas are affected by a weather event (polygon C), ideally returning all the names & geometry, not just count of intersects so that I can use the returned FeatureSet for further like filters. -- This is what I did so far. The third variable (fs3) is the one need to be used to define intersect, and has not been used yet. ==================================== // Portal var p = Portal('https://xyz.maps.arcgis.com'); // Create FeatureSet for points - municipality var fs1 = FeatureSetByPortalItem(p,'xxx', 0, ['*'], true); // Create Featureset for lines - regional district var fs2 = FeatureSetByPortalItem(p,'yyy', 13 ,['*'], true); var fs3 = Filter(FeatureSetByPortalItem(Portal('https://arcgis.com/'), 'zzz',1,['*'], true),"ImpactLevel=5"); // Create empty feature array and feat object for output var features = []; var feat; // Iterate fs1 for (var feature in fs1) { // Create feature with aggregated values feat = { 'attributes': { 'admin_type': ['Municipality'], 'name':feature['Admin_area_name'] } }; // Push feature into array Push(features, feat); }; for (var feature in fs2) { // Create feature with aggregated values feat = { 'attributes': { 'admin_type': ['Regional District'], 'name':feature['admin_area_name'] } }; // Push feature into array Push(features, feat); }; // Create dict for merged output FeatureSet var out_dict = { 'fields': [ {'name': 'admin_type', 'type': 'esriFieldTypeString'}, {'name': 'name', 'type': 'esriFieldTypeString'} ], 'geometryType': '', 'features': features }; // Convert dictionary to feature set - mergend A and B //return FeatureSet(Text(out_dict)); //Intersect the new FeatureSet with fs3 (polygon C)
... View more
08-03-2023
08:49 AM
|
0
|
1
|
879
|
|
POST
|
Hi @DavidNyenhuis1 I love the new mobile view feature as well! However, I could not make it work when I used a tablet (like iPad). It did not load neither of the desktop view or mobile view (the screen kept spinning). Is there anything I missed out? Thank you. Kerry
... View more
06-26-2023
10:36 AM
|
0
|
1
|
2467
|
|
POST
|
Hello, I hope to narrow down my item search in survey forms but it looks like there is no option. It's funny that the forms appeared under 'App', but no further sub category. Is there any way that I can filter out survey forms only among many items?
... View more
05-03-2023
11:51 AM
|
6
|
3
|
1028
|
|
POST
|
@IsmaelChivite I actually could fix it by republishing it again through 3.14. There were multiple csv files that I kept as archive and I was wondering they might interfere with the functionality. The weird error message above 'Can not find your location. Please check your browser to ensure that your location is shared' was gone after cleaned up the media folder and republished in 3.14. However, when I republished the survey through 3.16, the error came back. Can I get more information why I experience this behaviour? Kerry Image of the survey when published through 3.14 (no error).
... View more
01-30-2023
03:25 PM
|
0
|
0
|
1353
|
|
POST
|
@IsmaelChivite Thank you for your comments. I already have the x,y csv file in the media folder (I did not see 'media' tab next to 'linked content'. However it looks like it cannot pick up x, y values from the csv to create a point (see the image below). This error shows across any browsers that I am using, Edge, Chrome in both regular and private versions. There is no change in the csv file other than updating a couple of attributes that won't affect in the workflow. Any suggestions? Thank you. Kerry
... View more
01-30-2023
02:53 PM
|
0
|
1
|
1354
|
|
POST
|
Thank you @DougBrowning . It's too bad that the media folder option for csv is not valid anymore. Do you know if it would still work during offline? Kerry
... View more
01-30-2023
10:08 AM
|
0
|
1
|
1410
|
|
POST
|
Hi, I have a survey that pull out x, y coordinates from the csv stored within the media folder. It was published at least 3.14 or earlier version and it's been working fine until I update the survey with 3.16. The error I realized was that it does not pick up known x, y location and turned out there is no linkage between the CSV and the survey. I tried to add the CSV back, but it looks like there is no option for me to add the actual csv file from the media folder. I re-downloaded version3.14 but it still does not give me an option to add the csv file directly. This affect an important app used by multiple organizations. Thanks.
... View more
01-30-2023
09:33 AM
|
0
|
6
|
1474
|
|
POST
|
Thank you Doug for your suggestion. It worked perfectly for my scenario. I've copied an old survey form and the visible field was completely missing and could not think about it at all. Kerry
... View more
09-26-2022
02:54 PM
|
1
|
0
|
812
|
|
POST
|
Hello all, I have one question that controls three question groups using relevant. My goal is retaining all answers in each group no matter what value is selected in the main question, but it does not seem working that way. Is there way I can retain existing values? or not using 'relevant' but somehow hiding the question in a different way? Here are questions and scenario we'd like to use: - Question 'Hazard Status' has three choices: Reported, Under review, Remove/Cleared. - 'Reported' is expected to be used for initial data collection. - 'Under review' and 'Removed/Cleared' are expected to be used during review process using collected data (edit existing survey). - Each answer of Hazard Status will bring a group of questions to capture organization, name, contact, and comments using 'Relevant'. - Let's say someone collected data using 'Reported' status and entered all relevant information. - During review, another person opened the submitted record using the form (either inbox/edit records), and updated its status to 'Under review' and entered his/her information and comments. - Since 'Reported' is not selected anymore, it erased field worker's organization, name, contact and comments information entered under 'Reported'. - We'd like to keep all information to see how hazard has been reported and cleared for data management perspective. Thank you. Kerry
... View more
09-26-2022
11:59 AM
|
0
|
2
|
862
|
|
POST
|
Hello, There are three feature layers that I was able to combine as one using an Arcade expression in the data setting. Is it also possible to include their attachments and plug the result feature set into the detail widget to show photos and details? The attachments are critical information of the datasets, so I hope to get it work. Thank you. Kerry
... View more
09-20-2022
11:39 AM
|
0
|
0
|
416
|
|
POST
|
Hello, Is it possible to customize the 'Page Not Found' message? My hub site contains a few web apps that work with different levels of users; viewers and field workers who belong to different user groups. The default message sounds like something went wrong with the embedded site, but the reality is the users do not have a permission to access. I hope to update the message to provide more clear message. Thank you. Kerry
... View more
07-15-2022
04:49 PM
|
0
|
2
|
659
|
|
POST
|
Hi @ZacharySutherby After I click the delete button, the highlight (selection) colour on the record is moved to the next line, but the record I tried to delete is still there. Also I still see all test data after refreshing the page. The survey was built back on 2020 - using the connect 3.10. If I access through the rest service and send delete request, it worked successfully and I can see that the record I tried to delete is not in the survey data site anymore. Is it the error perhaps coming from using an old version of survey? Thank you. Kerry
... View more
06-23-2022
10:38 AM
|
0
|
0
|
658
|
|
POST
|
Hi, My client who holds a field worker account needs to manage their survey dataset directly including a deleting functionalities. I've set up the setting like below 'Add, update, and delete records (read access enabled). The field worker account could click 'delete' from the Data page of the Survey123 website, and seemed working, but the the record comes back after deleting. So it looks like the button is activated but it actually does not delete it. I am not sure if I miss any additional settings or it's a bug? or field workers are not supposed to delete any records? Thank you. Kerry
... View more
06-23-2022
09:26 AM
|
0
|
2
|
674
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2020 02:08 PM | |
| 1 | 04-22-2021 11:02 PM | |
| 1 | 01-15-2024 05:16 PM | |
| 1 | 04-18-2024 08:25 AM | |
| 2 | 03-01-2024 11:09 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-15-2024
12:33 AM
|