|
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
|
927
|
|
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
|
2196
|
|
POST
|
Hi Walid, I took the 19-001 Desktop Associate exam in August 2019. The main difference between that exam and 10.5 is that the 19-001 version focuses exclusively on ArcGIS Pro and ArcGIS Online, where the 10.5 version also includes questions about ArcMap. Also, the 19-001 version is not version specific, compared to the 10.5 exam which, obviously, would be more specifically catered to ArcMap 10.5. I was told by Esri that the non-versioned exams are refreshed on an 18-24 month basis. I chose the 19-001 version since it seemed to align more closely with industry trends, since Esri is in the process of retiring ArcMap. But there's obviously no "right" answer here. To study, I took all of the free courses in the Esri learning plan for this exam, as well as reviewed the exam guide to see if there were any knowledge gaps I needed to brush up on (for instance, I had no prior experience working with 3D data). That, in combination with my on-the-job experience, worked well enough for me that I passed the exam. There are certainly enough resources out there that you shouldn't need to spend a lot of money to prepare for the exam, in my opinion. Hope that helps! Katherine
... View more
05-27-2020
07:00 AM
|
3
|
0
|
1177
|
|
POST
|
Wade, Under the settings of the map's item details page, do you see these options for enabling offline mode and "Use in Collector for ArcGIS"?
... View more
05-19-2020
01:13 PM
|
0
|
1
|
3448
|
|
POST
|
Hi Lisa, I think embedding multiple web applications into a single dashboard might be the best approach for this. Embedded content—ArcGIS Dashboards | Documentation You can create multiple tabs at the bottom of the dashboard like this for the different applications. In this dashboard I made, "Map Viewer" is a map and "Edit Points" is an embedded WAB application. All you need to do to get the tabbed format is stack the embedded content on top of other elements in the dashboard. Hope that helps!! Cheers, Katherine
... View more
05-15-2020
01:11 PM
|
2
|
2
|
2019
|
|
POST
|
Wow, thanks for posting the code! I'll need to give that a try as well!
... View more
05-14-2020
11:09 AM
|
0
|
0
|
3716
|
|
POST
|
Thanks for sharing that, Mark Donnelly! It would be SO helpful for organization administrators to be able to generate reports like that! I did notice in the comments of that Idea that item.usage() from the Python API will produce similar results....maybe something that would be worth it to look into in the meantime. However, making this functionality available for all org admins, even those without programming experience, is essential!
... View more
05-14-2020
06:59 AM
|
1
|
0
|
3716
|
|
POST
|
Thanks for the insight. In my case, there were no relationship classes involved with the layer. I ended up just publishing a new data collection layer for the colleague to use since we were never able to figure out what caused the issue with the original layer. Good luck!
... View more
05-13-2020
10:32 AM
|
0
|
0
|
1506
|
|
POST
|
I found these Geonet Ideas, I would recommend up-voting and reading through the comments to see if you can find any helpful info! Enable multiple users to overwrite hosted feature services https://community.esri.com/ideas/10992
... View more
05-13-2020
10:18 AM
|
1
|
0
|
4190
|
|
POST
|
Yeah, I'm assuming there must be some reason for this design choice, but not exactly sure what it is. It would be nice at least if the user was an Administrator user role that they could overwrite other people's services with the same freedom that they can manipulate other services in the organization, regardless of owner. For your case, I agree that sharing your account/password is a major security concern and isn't recommended. Are either of you Administrators within your organization? If so, a possible workaround would be to swap the owner of the item whenever one of you needs to overwrite the service.
... View more
05-13-2020
06:54 AM
|
0
|
0
|
4190
|
|
POST
|
Unfortunately, according to Esri documentation, only the owner of an item can actually overwrite the layer. Overwrite a web feature layer—ArcGIS Pro | Documentation
... View more
05-12-2020
02:10 PM
|
0
|
3
|
4190
|
|
POST
|
Hi Robin, This page should answer your question! Shapefiles—ArcGIS Online Help | Documentation Specifically: The primary way to make shapefile data available for others to view through a web browser is to add it to a .zip file, upload it, and publish a hosted feature layer. The .zip file must contain at least the .shp, .shx, .dbf, and .prj files components of the shapefile. Hope that helps! -Katherine
... View more
05-12-2020
12:00 PM
|
1
|
0
|
3039
|
|
POST
|
Also, maybe you could try using the GetCount method? It says in the documentation that "If the input is a layer or table view containing a selected set of records, only the selected records will be counted." So you could set the result of that method to a variable and then print that variable. Get Count—Help | ArcGIS for Desktop
... View more
05-03-2020
05:43 PM
|
0
|
0
|
1571
|
|
POST
|
As far as I know, pop-ups aren't really intended to be interactive like that. What is your intended purpose for the drop-down menu if not for using in edit mode?
... View more
05-03-2020
10:00 AM
|
0
|
0
|
6830
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 3 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|