|
POST
|
I was curious if it was possible to pull metadata out of a basemap with python, specifically the date of the imagery in the World Imagery Basemap layer.
... View more
12-27-2021
10:11 AM
|
0
|
3
|
1150
|
|
POST
|
I appreciate the response, thank you! I think providing the user with a centroid of the first geoshape will allow them to quickly find the location and that should be fine. Just wanted to make sure I wasn't missing anything.
... View more
12-14-2021
05:20 AM
|
0
|
0
|
1002
|
|
POST
|
Hello, I have a survey that records data on a site. A portion of that data includes areas of interest within the site. I have my survey set up with a repeat to allow for 2 geoshape questions to be present, but the second geoshape question is completely independent of the first. It would be very helpful to preload the map in this second question with the polygon from the first geoshape question. Is this possible? Thanks,
... View more
12-11-2021
11:19 AM
|
0
|
2
|
1055
|
|
POST
|
I found the issue. I had 'intersect' as my search type, while you have 'intersects' in your example. That s at the end got it to work online. Thank you for the example that helped me figure that out!
... View more
10-24-2021
10:11 AM
|
0
|
0
|
3015
|
|
POST
|
Hello, I recently read about the new Search appearance for select_one and select_multiple questions and am really excited to get it deployed in current surveys. I have my search functions working in Survey123 connect, but once I publish and test in the web application, the spatial query built into my search appearance does not seem to fire when a new geometry is set. Is there a way to turn on this functionality or is this not available in the web form currently? Screenshot from Connect with a spatial filter working: Screenshot from the web version: Here is the appearance related to this question: minimal search('CountiesInAOI?url=https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis/rest/services/USA_Counties/FeatureServer/0','intersect','@geoshape',${RequestArea})
... View more
10-17-2021
09:46 AM
|
0
|
2
|
3101
|
|
POST
|
I was just curious if it was possible to sort forms in the field app by recent submittal. I have teams that use 10 or so forms and usually on any given day one team will jump between 2 or 3, but not all 10. If they could sort forms by their recent submittals, then only the forms they were using that day would make it to the top of their list, instead of them having to scroll and find them every time they switch forms. Thanks,
... View more
10-06-2021
07:18 AM
|
1
|
2
|
939
|
|
POST
|
Since I will be packaging this into a tool for other users to use, I decided to not go this route. I don't think I can get some non programming folk to install geopandas. Thank you though!
... View more
09-26-2021
08:47 AM
|
0
|
0
|
1967
|
|
POST
|
I was able to get this to work, I ended up using: with TemporaryDirectory() as TempDownloadLocation:
Download files using TempDownloadLocation This format so once the code within the "with" statement was done, the temporary folder gets cleaned up automatically. Thank you!
... View more
09-26-2021
08:45 AM
|
1
|
0
|
1967
|
|
POST
|
Hello, I was wondering if it was possible to create an "in_memory" or a "memory" feature layer from a downloaded zipped shapefile, without saving that zip file to the disk. I am hoping to download multiple zip files from an ftp site and compile them into one final deliverable with only the final shapefile or feature class being written to disk. Thanks,
... View more
09-20-2021
09:37 AM
|
0
|
4
|
2068
|
|
POST
|
Yeah, from what I understand you can have multiple items in an itemgroup, but they will all be symbolized differently. My main goal is to get multiple values to live under the same symbol and label.
... View more
07-07-2021
04:04 AM
|
0
|
0
|
1173
|
|
POST
|
Hello, I was wondering if it was possible to group multiple items in a UniqueValueRenderer into one item. In the item documentation (Item—ArcGIS Pro | Documentation) it notes that the values is a read only field, and when I try to add an item with multiple values, the group does not get added. Below is the format I am currently using to add 2 values to the "Counties" group. The 'Pickaway' value will show up, but the grouped one will not. CountySymbology.renderer.addValues({"Counties": ['Pickaway', 'Wood;Trumbull']}) If this is not possible, is there a way to update the default label from the <all other values> text?
... View more
07-06-2021
06:19 AM
|
0
|
2
|
1188
|
|
POST
|
Thank you for letting me know, I will be on the lookout for that!
... View more
07-06-2021
06:10 AM
|
0
|
0
|
845
|
|
POST
|
Hello, I have some survey data that has been collected and am trying to generate some reports from this data. I have made my template and everything seems to be working except for a couple data fields which are not transferring from the table to the report. Here are some screenshots for context. Similar to the second screenshot, the "MeterID" field does not transfer to the report that is generated. That field is a select_one_from_file field if that is important. Thank you!
... View more
06-17-2021
05:45 AM
|
0
|
2
|
917
|
|
POST
|
What you can do is read your excel file into an array, where when appending data into the array, you call the replace command to get rid of the comma. inRow = [str(row[0]),str(row[0]),str(row[2]),str(row[3]),str(row[4]),str(row[5]),str(row[6]),str(row[7]),str(row[8]),str(row[9]),str(row[10])] index = 0 for i in inRow: if "," in i: i = i.replace(",","") inRow[index] = i index += 1 points.append(inRow) And then use that array to create the csv. AllProjects_CSV.truncate() writer = csv.writer(AllProjects_CSV,delimiter=',') writer.writerow(fields) writer.writerows(points) My example is pulling data from a SDE database but I am pretty sure you can use something like openpyxl to read through an excel sheet.
... View more
04-29-2021
12:47 PM
|
0
|
0
|
6611
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-24-2025 02:07 PM | |
| 3 | 11-07-2025 09:23 AM | |
| 9 | 11-07-2025 08:12 AM | |
| 1 | 08-07-2025 07:47 AM | |
| 1 | 05-13-2025 11:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|