|
POST
|
Hmmm, I don't have first-hand experience with changing anything like that, but you might want to take a look at this page. Set language and region—ArcGIS Online Help | Documentation If that doesn't get you the answer you need, I recommend creating a new post so the question can get greater exposure. Also, if you've had your original question answered, please mark it as such so the question can be closed out on the forum. Thanks so much
... View more
06-08-2020
11:22 AM
|
0
|
0
|
6815
|
|
POST
|
If it is indeed hosted, do you see the option to disable attachments, as shown in my screenshot?
... View more
06-08-2020
10:42 AM
|
2
|
4
|
6815
|
|
POST
|
Ok, hopefully one of the workflows I suggested will do the trick, but I realized after I posted that my suggestions and screenshots are from a hosted feature layer, and also work with manipulating fields rather than the attachments column with is a result of the related attachments table, and doesn't have the same "delete" feature when you click on the column heading. So, things get a little more complicated. Sorry for my misunderstanding in my original answer. Are you working with a hosted feature layer?
... View more
06-08-2020
10:33 AM
|
0
|
6
|
6815
|
|
POST
|
You can prevent the field from appearing in the pop-up by configuring it in the web map: You can also configure edit settings (i.e. which fields can be edited) via the Edit widget configurations in WebApp Builder. If you want this to be the case regardless of which map or app the layer is pulled into, you can edit the pop-up configurations within the Visualization tab of the item details page for the feature layer. Additionally, if you have editing privileges for the layer (i.e. you're the owner or an administrator within your organization), you can delete fields within the Data tab of the item details page, or you could access the feature layer directly within ArcGIS Pro and delete the field there. You can also disable attachments in the Item Details page: So many options, take your pick Hope one of them works for your needs!
... View more
06-08-2020
09:02 AM
|
2
|
8
|
6815
|
|
POST
|
Adding on to what David Pike posted, I agree that my first method for troubleshooting something like that would be adding in some print statements to see what 'attachLayer.DATA' is actually returning. Just a (hopefully) helpful tip that if you want messages to print within the geoprocessing output details box, use the arcpy.AddMessage function. As for the repeat table, that is a result of file geodatabase coming from Survey123 rather than Collector. You use repeat questions when multiple photos/attachments are associated with a single survey entry. So, you're correct that you wouldn't have a repeat table when downloading data that was created in Collector for ArcGIS.
... View more
06-04-2020
09:39 AM
|
0
|
0
|
5188
|
|
POST
|
You can also look into creating the data yourself from the raster layer with the Raster to Polygon tool.
... View more
06-03-2020
09:35 AM
|
2
|
1
|
3372
|
|
POST
|
Thanks for the quick response, Zachary! That's a great idea, and definitely something I'll think about to see if we can use that workflow. However, ideally, I wouldn't want the analyst to have to put the custom URL scheme into every web map. The idea here is to be a one time thing for each app, mostly as a way of tracking consistent information about the various apps in a single location, along with having a spatial component to it to be able to visualize the general locations of the different projects across the country. So in this case, (like I said, ideally), the analyst would access the survey first to record this information without needing to drop a point in a web map. Hope that makes sense.... Thanks again for the suggestion!
... View more
06-02-2020
04:49 PM
|
0
|
0
|
2397
|
|
POST
|
Hello, I am hoping to use Survey123 to log data about existing projects and web maps in my organization. The idea is that a analyst would create a web map and application and then submit a survey, answering questions like what counties are within the project area, what datasets were used in the analysis, etc etc. Then this information would be displayed in an Operations Dashboard on our site page. Ideally, I would like the survey to create a point automatically based on the projects center, something like this map which is automatically generated and viewable within the Organization > Status > Content tab: Is this possible, or is my only choice to use a geopoint question and have the analyst submit a point manually within the survey? I've considered that option as a backup, but I've been requested to make this functionality automatic if possible, so I thought I'd see if there were any ideas out there. Thanks!!
... View more
06-02-2020
04:16 PM
|
0
|
2
|
2445
|
|
POST
|
I've had issues with this in the past as well, but I just went in to Pro and tested out my workflow and it worked for me. I selected my features using the rectangle select tool and then clicked copy. Then the paste special option appeared for me in the drop down. I think I remember having issues with it not showing up previously when I tried selecting my features within the attribute table. When you say it works intermittently for you, are you following the exact same workflow every single time?
... View more
06-01-2020
06:27 AM
|
2
|
0
|
19921
|
|
POST
|
Hello, I've created an Enterprise Site for my organization with a few different pages. On one of the pages ("Resources") I'd love to share some documents (PDF, Word, Excel) so users can have easy access to all relevant content within one site. I thought this was easy enough - I uploaded the PDF to my content via "Add Item > From My Computer", and then copied the URL for this document. I then pasted that into the Iframe URL section of the Iframe element configuration within Enterprise Sites Manager. Everything looked great and the user could easily scroll through the PDF, as intended. However, after (I assume) two weeks, the page no longer worked due to an expired token (which I understand is the longest length of time a token can be valid for?) Recopying and pasting the URL for the document within the IFrame URL fixes the access issue (because it generates a new token), but I know the problem will arise again in another two weeks. What is the best way to go about this workflow using Enterprise sites? I feel that this is likely a common functionality that people would want to incorporate into their sites, so I can't be the first one to run into this issue.... Thanks!
... View more
05-28-2020
03:37 PM
|
2
|
0
|
1031
|
|
POST
|
Bill Guthe all you have to do is create a group with shared editing capabilities and then share the items with that group. Also keep in mind that anyone with an Administrator user role can update any content, regardless of who the owner is or group it's shared with, so this could be a potential solution as well.
... View more
05-28-2020
03:24 PM
|
0
|
0
|
908
|
|
POST
|
Hi Mark, This should get you what you need: def fieldCalc(f1, f2, f3):
x = 0
if f1 == 1 and f2 == 1 and f3 == 1:
x = 1
elif f1 == 1 and f2 == 1 and f3 == 2:
x = 2
elif f1 == 1 and f2 == 1 and f3 == 3:
x = 3
elif f1 == 1 and f2 == 2 and f3 <= 4:
x = 4
elif f1 == 1 and f2 == 3 and f3 != 4:
x = 5
elif f1 == 1 and f2 == 5 and f3 <= 3:
x = 6
elif f1 == 4 and f2 != 4 and f3 <= 5:
x = 7
return x The above code would be put in the Code Block, and you would call the function with SLD = fieldCalc(!P!, !O!, !S!) Some of the major differences between VB Script and Python in relation to this code segment: Field names are referenced by surrounding the name with ! instead of [ ] The "and" operator is lowercase in Python If statements end with a colon instead of the word "THEN" In Python, the == means "is equivalent to", whereas the single = is used to assign a value to a variable In Python, use != for "does not equal" rather than <> In Python, use "elif" instead of "elseif" Don't forget the return statement at the end! Luckily, there are countless resources online where you can get even more information about operators and logical statements in Python. There is likely an even fancier way to do this, but my version should work and it was the simplest adaptation from your code. Hope that helps! -Katherine
... View more
05-28-2020
07:15 AM
|
1
|
2
|
2145
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Tuesday | |
| 4 | Tuesday | |
| 1 | Tuesday | |
| 33 | Tuesday | |
| 1 | Tuesday |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|