|
POST
|
Hi Fan, Try to create two null questions and each of them calculate first 3 code and the rest of 3 code. Then use 'concat' to put them together as calculate in postal code question. E.g.Name, Calculate, Esri field type postal_123, pulldata("@geopoint",${location},"reversegeocode.address.Postal"), null postal_456,pulldata("@geopoint",${location},"reversegeocode.address.PostalExt"), null postal_code, concat(${postal_123}, ' ', ${postal_456}). Kerry
... View more
02-24-2021
04:02 PM
|
0
|
5
|
4431
|
|
POST
|
Can you pull out city name only from reverse geocoding before getting full address, and set up and check if the city name is Corona or not. If it's not Corona, you can stop users submitting the survey by this way. - Put error messages as a note and make it required such as 'it looks like your location is outside of Corona....' - The error message from note is triggered when the city is not Corona. - Users need to 'answer' this question(note) because it is 'required' but they cannot do anything to add answers because it's note. - This prevents users from submitting the survey. Kerry
... View more
02-24-2021
03:10 PM
|
0
|
0
|
2025
|
|
POST
|
Hello Doug, thank you for your comment. I took a look at my code again compared to what you linked there, and found the reason why mine did not work. It was because I kept lat and long as numbers, not as text. In my code the lat and long variables are returned in the number format, and I used them directly to create the url. After I get the values in text and used to create a url, it finally worked.
... View more
02-24-2021
02:49 PM
|
1
|
0
|
1817
|
|
POST
|
Hello all, I have a survey form created in Survey123 using Geopoint. To make less effort in preparing offline maps within Survey123, I hope to utilize Field Maps so that field users can download their own offline map areas before going to the field. This is my workflow. 1. Field users will create a point using Field Maps offline map. 2. point x, y will be calculated in lat and long using Arcade. 3. The value above will be used to create a survey123 url using Arcade. this is my syntax <a href="arcgis-survey123://?itemID=...&field:strloss={CIVIC_NUMBER}¢er={expression/expr2},{expression/expr3},20">go to survey123 with XY location</a> ==> here expr2 is lat and expr3 is long. However, passing x, y point to Geopoint does not see working. Regardless it's done online or offline, it picks up GPS location. Do I miss something? One of the document by @JamesTedrick shows the parameter as "center:" instead of "center=". I used both but had no luck. https://community.esri.com/t5/arcgis-survey123-documents/create-survey123-urls-using-arcade/ta-p/1004175 Kerry
... View more
02-24-2021
11:08 AM
|
0
|
2
|
1881
|
|
POST
|
@XanderBakker Hi, I have the same issue. I could create a correct url but Survey123 picks up GPS location. I hope to utilize this during offline mode especially using Field Maps' offline area rather than preparing tile map packages. Kerry
... View more
02-24-2021
10:22 AM
|
0
|
0
|
2198
|
|
POST
|
How did you create a join? You may want to check if it is set up under 1:many relationship. I recommend to create a new join layer and see if that makes any difference. When the relationship I s 1:1, the existing joined record will be replaced as the latest one whenever new survey is submitted. kerry
... View more
02-22-2021
11:49 PM
|
1
|
1
|
1139
|
|
POST
|
Hello all, I hope to find a JS code or find reference sites where I can learn how to write my own code for my scenario. What I am looking for is passing the parcel polygon attributes > get the parcel geometry information> find overlapping address points> get address point's attribute. Available layers - A parcel polygon layer, no address information is available. - An address point layer Scenario: Create a new point within parcel polygons and calculate its (possible) address from the address point which is located within the same parcel polygon. I thought this may need to be done by two steps. 1. Get the overlapping parcel polygon's PID. ===> I could do this by using a sample JS code provided. 2. Pass the parcel polygon's PID, then get the overlapping address point's address attributes. ==> This is what I tried to do. I am not sure how I can extract the geometry information based on the given PID. Kerry
... View more
02-16-2021
03:28 PM
|
0
|
1
|
614
|
|
POST
|
Hello @JamesTedrick , I tried what you suggested - adding a dummy question in the parent form to add more questions in the nested repeat tables. Interestingly, the dummy question has been added successfully, but no luck with the rest. The publish processing was hanging for hours and I had to end it. Is it an expected behavior with 3.10? I used 3.10 version Connect.
... View more
11-18-2020
09:53 AM
|
0
|
0
|
2112
|
|
POST
|
Hello all, I have a question about Map viewer beta and dashboard combination. I am working on a building layout layer which placed in a diagonal direction. I hope to change the orientation so that users can understand the structure better. I was able to save the map with customized orientation in new map viewer beta. However, once I bring it into dashboard (both the current version and the beta), the map does not keep the orientation that I've set up in the map. Does anyone know if there is any setting that I can control the map's orientation within a dashboard? Or is it possible to add any parameter through AGO assistant website to keep my customized map orientation? I have added images below. In reality and how map appears in dashboard. This is how I saved in map viewer beta
... View more
11-06-2020
04:02 PM
|
0
|
0
|
540
|
|
POST
|
Hello all, I have a feature layer being updated by Survey123. I added this layer in 3D scene and tried to apply filter in Experience Builder, but it does not seem working. When the layer was added in 2D map it works fine, but not in 3D. Is it limited capability of Experience Builder? Cheers, Kerry
... View more
09-28-2020
10:33 AM
|
0
|
1
|
911
|
|
POST
|
Hello Shwu-Jing, thank you for the information. Is it possible to do that with 'Geoshape' instead of Geotrace? I hope to get the circle shape as polygon features. Also I was wondering if I can draw a circle by passing x, y, diameter values (maybe using concat?), not asking user to draw it on the map directly. Cheers, Kerry
... View more
09-23-2020
01:04 PM
|
0
|
1
|
921
|
|
POST
|
Hello all, I have a use case that geometry needs to be represented as circles (new data collection). I just checked the sample form, but it does not look like supporting drawing circles. Is there any work around? Cheers, Kerry
... View more
09-17-2020
08:53 AM
|
0
|
3
|
953
|
|
POST
|
Hello Zachary Sutherby, thank you for your comments! They are all great suggestions. I will create a post on ArcGIS Ideas page. By the way, I was not able to use repeat points as my app should work on the web form, so I had to go with creating a line with method=vertex to create straight lines. Thanks. Kerry
... View more
09-10-2020
04:25 PM
|
0
|
0
|
1318
|
|
POST
|
Hello all, I got a question from my client, but not sure if there is any work around. My client wants to enter GPS coordinate manually under a geopoint question during offline uses, but it does not allow editing. When I test it without the network connection, there is coordinate captured from my own mobile device but it's not editable. My client is using an actual GPS device to get the accurate values so she needs to replace the default value from the mobile device with the values from GPS. Is there any work around with minimal changes on the survey form? Cheers, K
... View more
09-10-2020
03:50 PM
|
0
|
2
|
1322
|
|
POST
|
Hi Brett, Thanks for confirming. Do you think sum repeated geopoints will be introduced in web form sometime soon? Cheers, K
... View more
09-08-2020
02:45 PM
|
0
|
2
|
2473
|
| 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
|