|
POST
|
Thanks @Anonymous User I am using Connect 3.12.232 and app 3.12.277 The survey is still a work in progess but the relevant geoshape question is at the very bottom. I cant attach the mmpk as its to big for upload here. However a weird thing I noticed if that if I go back into the geshape questions again (after I created a shape), and recapture it then the priew/question extent remains to the area captured.
... View more
06-28-2021
08:26 PM
|
0
|
1
|
2011
|
|
POST
|
Hi All I have created an mmpk of a certain area of my state with some wetlands for context and added it to the media folder in survey123 connect. It published and downloaded to the device without any issue. I can click on the map in the geoshape question and zoom in to draw an area for capture However after I click on the tick/OK the map reverts back to the full extent in the geoshape question The geometry, extent and area still seem ok ...but it look weird in relation to the full extent of the map. If I click back on the geoshape question the map displays correctly as per the first image, Its just seems to be the preview/display thats not right Any ideas on whats happening here? Cheers Chris
... View more
06-28-2021
12:05 AM
|
0
|
3
|
2063
|
|
POST
|
Hi Jessica I have done something similar albiet the other way around. I developed and tested in out local Portal Environment the pubished the production version to ArcGIS Online. Now assuming you are wanting to start with a clean empty schema, you should just be able to republsih your survey to your local environment. What I did was in Connect create a copy of the survey so that I had a separate production version, logged in to our ArcGIS online account, then simply just published that version. As all the choice lists were part of the form structure it created a new Form and Hosted FC (with the domains) in ArcGIS online. Cheers, Chris
... View more
06-22-2021
05:33 PM
|
2
|
0
|
1321
|
|
BLOG
|
Great videos! Looking forward to the next release. Question regarding the select_one_from_file question, will/do they support a choice_filter? Cheers Chris
... View more
05-13-2021
09:40 PM
|
0
|
0
|
2161
|
|
POST
|
Hi Miles I know this post is a little old now, but any chance you could attached how you did this? I'm trying to achieve something very similar. Thanks in Advance Chris
... View more
04-07-2021
11:54 PM
|
0
|
1
|
4663
|
|
POST
|
Hi All I was wondering if its possible to centre a geotrace or geopoint question map based on the coordinates of a point from Collector. The use case is that we have a Collector Map showing the point location observations of pest plant and animals. The field officer will select a point then have a hyperlink to open Survey123 to either capture a line or polygon treatment area. The officer may not always be at the exact location of the point in question, so using the default GPS location isnt always an option. I have tried just passing the lats and longs of the point (using Arcade) to the geotrace question but it doesnt seem to work. Cheers Chris
... View more
02-16-2021
01:17 PM
|
1
|
1
|
920
|
|
POST
|
Did you work out how to do this? I'm in the same boat as you. Cheers
... View more
01-18-2021
03:56 PM
|
0
|
2
|
3838
|
|
POST
|
I'm seeing the same thing as Erik, in Enterprise I cant make a field/question connection
... View more
01-06-2021
02:21 PM
|
0
|
0
|
4285
|
|
POST
|
Hi Keith I have just started to look at experience builder myself and noticed the same thing that I cant seem to make a field connection to an existing survey. The dropdown list is empty. did you ever find a resolution to this? Cheers, Chris
... View more
01-06-2021
02:14 PM
|
1
|
5
|
6198
|
|
POST
|
Hi Phil We are using Enterprise Portal 10.8.1 They are all using latest version of Survey123 (3.10x) There does seem to be a slight variation, with the fastest being 10-12 seconds and the slowest up to 40 seconds. The use case for is a drive by survey so we could probably just live with a 10 second load time , but 40 seconds is just to long. If we were doing a ramble survey then the delay wouldn't be such an issue. The survey itself isn't overly huge, about a dozen questions, with 8 very short choice lists. There are no external csv file or calculations. If I search for and select the record directly from the inbox then it opens immediately. Also creating a new record opens the form straight away. Thats why I'm wondering if its the size of the inbox, I wouldn't of though that 5500 odd records is overly large? Incidentally, if I launch the form from Collector as creating a new record, not editing an existing one, then it also opens pretty much immediately Cheers Chris
... View more
10-11-2020
08:17 PM
|
2
|
1
|
1855
|
|
POST
|
Hi Rusty Not sure why its not working for you, perhaps you could share the xlsform, and if I get a chance I'll have a look and see if there is anything obvious? If you parse the coordinates to the appropriate geoshape question in the form then in should work - field:LandholderLiaisonParcels_polygon=-35.03596%20138.83725%3B-35.03959%20138.8346%3B-35.03807%20138.83162%3B-35.0355%20138.83349%3B-35.03549%20138.83348%3B-35.03446%20138.83422%3B-35.03596%20138.83725
... View more
10-11-2020
01:18 PM
|
0
|
1
|
4589
|
|
POST
|
The Arcade expression is for the geoshape question, sorry miss typed there. Here is one that copies a selected parcel in Explorer and parses the polygon to a Survey123 form (the bit in italics is what you want I think). Note I also capture the centroid of the Parcel so I can perform a reverse geocode in Survey123 to get the address arcgis-survey123://?itemID=xxx&field:dcdbid_1=F112784A2&field:ct=CT&field:volume=5203&field:folio=279&field:LandholderLiaisonParcels_polygon=-35.03596%20138.83725%3B-35.03959%20138.8346%3B-35.03807%20138.83162%3B-35.0355%20138.83349%3B-35.03549%20138.83348%3B-35.03446%20138.83422%3B-35.03596%20138.83725&field:longitude=138.8344310701019&field:latitude=-35.03701676138787
... View more
10-08-2020
02:22 PM
|
0
|
3
|
4589
|
|
POST
|
This works for me. Below is the Arcade script I created: var geom = Geometry($feature); var firstpart = geom.rings[0]; var originShift = 2.0 * PI * 6378137.0 / 2.0; var outparts = []; var counter = 0; for (var pt in firstpart){ var long = (firstpart[pt].x / originShift) * 180.0; var lat = (firstpart[pt].y / originShift) * 180.0; lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0); var lat =Round(lat, 5) var long =Round(long, 5) var ptstr = Concatenate(lat, " ", long); outparts[counter]= ptstr; Then create a hyperlink in the pop up: "arcgis-survey123://?itemID=xxxxxx&field:Polygon={expression/expr0}" With Polygon being the geotrace question in the survey You might notice in my Arcade that I round the lat and long returns down to 5 decimal places. I found that leaving them as default would often fail for slightly complex polys which I think is due to the overall length of the url it produces. Hope that helps Chris
... View more
10-07-2020
06:31 PM
|
1
|
5
|
4589
|
|
POST
|
I have an existing feature service with about 5500 points. These are refreshed in the Survey123 inbox, and called via a hyperlink in an Explorer Map. "arcgis-survey123://?itemID=187f8f4e007d427e83417bfee9e5bdff&action=edit&folder=inbox&update=true&filter=objectid:{objectid}" When selecting the hyperlink the Survey123 opens immediately but it takes about 30-40 seconds for the feature to be displayed in the survey123 form. Is there anyway that this performance can be improved. That delay time just won't cut it for field staff
... View more
09-30-2020
12:22 AM
|
1
|
6
|
1932
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-04-2022 01:26 PM | |
| 2 | 11-19-2023 02:45 PM | |
| 1 | 05-25-2022 04:36 PM | |
| 1 | 10-01-2019 08:31 PM | |
| 1 | 01-24-2019 09:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-11-2024
03:31 PM
|