|
POST
|
Hi Craig, Does the Python script you reference above to integrate the new Workforce with Field Maps have to be run just one time to set things up? Or does it have to be run continually every time there is a new assignment generated? Thanks, Molly
... View more
03-29-2021
12:53 PM
|
0
|
1
|
7472
|
|
POST
|
I'd like to see this functionality added too. I can remove duplicates if I set up my category selector to use "grouped values" instead of "features." The problem with this method is that the "features" selection does not allow for the map actions like zoom, pan or show pop-up window. So if I want to enable those actions, I have to have duplicates in my category selector which is confusing to the user and looks bad.
... View more
09-03-2020
01:48 PM
|
6
|
0
|
11768
|
|
POST
|
Hi Russell, Is there any specific documentation on how to set up the subtypes? I tried to do this, but I get the coded value drop down list in both subtypes. I can't figure out how to get the text field in subtype 2. Below are some screenshots of my settings: Subtype 1 - Coded Values with domain specified Subtype 2 - This is where I want the free text. There is no domain specified but I don't know how to specify that it is a text field.
... View more
09-01-2020
01:31 PM
|
0
|
0
|
2370
|
|
POST
|
Hi Doug, This article references that the CreateWebLayerSDDraft tool is now a legacy tool and has been replaced by arcpy.sharing module: CreateWebLayerSDDraft—ArcGIS Pro | Documentation This article gives a python example of how to use the arcpy.sharing module to share a feature service: FeatureSharingDraft—ArcGIS Pro | Documentation Good luck!
... View more
08-03-2020
08:39 AM
|
0
|
0
|
714
|
|
POST
|
Hi Doug, I was having a similar issue where sometimes my script would overwrite and sometimes it wouldn't. I contacted ESRI technical support and we figured out that the CreateWebLayerSDDraft tool is actually old and has been replaced with a newer tool - WebLayerSharingDraft. After I switched to that tool, my issues were resolved. I also use a list to loop through all of my content to ensure I have a correct match with the feature service name. That also seemed to help resolve my issues. Here's a snippet of my code: # Create a new SDDraft and stage to SD for summary data print("Creating SD file") sharing_draft = mp.getWebLayerSharingDraft("HOSTING_SERVER", "FEATURE", sd_fs_name) sharing_draft.summary = "My Summary" sharing_draft.tags = "My tags" sharing_draft.description = "My description" sharing_draft.credits = "My credits" sharing_draft.use = "My disclaimer" # Create Service Definition Draft file sharing_draft.exportToSDDraft(sddraft) # Stage Service arcpy.StageService_server(sddraft, sd) print("Connecting to {}".format(portal)) gis = GIS(portal, user, password) #Check that it found the correct layer list = gis.content.search(query=sd_fs_name,item_type="Service Definition") i = 0 while list.title != sd_fs_name: i += 1 print("") print('MATCH FOUND!') print(f'item.title = {list.title}, sd_fs_name = {sd_fs_name}') item = list # define item based on above findings item.update(data=sd) # use sd to update hosted "Service Definition" file print("Overwriting existing feature service") fs = item.publish(overwrite=True) # publish "Service Definition" # Update Sharing if shrOrg or shrEveryone or shrGroups: print("Setting sharing options") fs.share(org=shrOrg, everyone=shrEveryone, groups=shrGroups)
... View more
07-31-2020
07:44 AM
|
1
|
3
|
3342
|
|
POST
|
Hi Lakshmi, Did you ever figure this out? I am having the same issue. My attribute table properties and pop-up window properties are set for no comma to be displayed; yet my edit window in AGOL still shows the comma. I am hoping I don't have to redo my feature class and change my field from integer to text so if there are any other work arounds, I'd love to know!
... View more
07-10-2020
02:09 PM
|
0
|
0
|
652
|
|
POST
|
Is it possible to add a csv file (or Excel spreadsheet) that is saved on a Sharepoint team site to an ArcGIS Pro map? When I try to add the file in ArcGIS Pro by adding data from path, I get a message "Invalid Path - Failed to create layer from "Your URL Here"". I also tried to map a connection to the file in the catalog view, but I can't do that either. I'm not sure if I'm getting this error because something is wrong in my path or because it's not possible to add a file from Sharepoint (even though my URL is correct). I've tried searching GeoNet and other ESRI resources and I can find alot on using ArcGIS Maps for Sharepoint to map data in Sharepoint. But I want to use ArcGIS Pro to reference Sharepoint data - not use Sharepoint to map data.
... View more
04-22-2020
09:46 AM
|
24
|
7
|
9827
|
|
POST
|
Yes, I think the 404 issues was related to the baseURL value. I was actually able to find another work around so I don't need to edit the time zone properties in AGOL. We added a time stamp to our date values. When our data is uploaded to AGOL, it retains the current date instead of going backwards one date due to the difference in hours from UTC and MST. Our data just needs to have the correct date, so this process works for us for now.
... View more
04-22-2020
07:05 AM
|
0
|
0
|
5896
|
|
POST
|
I've tried using this example to set the time zone property for some feature services in AGOL, but I continue to get a HTTP Error 404: Not Found. Has anybody else who has used this code example experienced the 404 error and were able to troubleshoot it?
... View more
04-20-2020
09:57 AM
|
0
|
2
|
5896
|
|
POST
|
Hi again, My supervisor found this blog post which is helpful in formatting your elements to only show the data for the most recent date. https://community.esri.com/thread/246919-most-recent-feature-in-indicator-widget To achieve this, Sort By a date field (e.g., last edited) in descending order. Then, set Maximum Features Displayed to 1. It will only display the newest feature. This method works well if you are using a feature as your source for the dashboard element. If you need to conduct a statistic (like sum) to get the value, then the sorting function isn't available.
... View more
04-14-2020
03:40 PM
|
3
|
0
|
5198
|
|
POST
|
Hi Jakub, Did you find an answer to this question? I am also interested in learning how to show the most recent date instead of "today." We have several dashboards we have developed as part of our county's COVID-19 response. The data update frequency varies so I am having a difficult time setting up the date filters in my dashboards. I have to manually change the date filters which is very cumbersome. I could set up a custom attribute expression in a web map to get the most recent date, however, the custom expressions can't be used in operations dashboard. So I am also stumped on how to do this.
... View more
04-14-2020
07:15 AM
|
1
|
1
|
5198
|
|
POST
|
I also have the same issue. The tool populates the use limitations on the item details page but none of the other parameters that I have specified (summary, description, tags, etc). Additionally, the overwrite existing service parameters works when I run the tool on my test feature service. However, when I run it on my working feature service, I get an error that "User can't overwrite this service, using this data, as this data is already referring to another service." The only thing I changed in my Python code was the name of the test feature service to the working feature service. It definitely seems buggy to me.
... View more
03-10-2020
09:18 AM
|
0
|
0
|
3342
|
|
IDEA
|
I've tried the exact match ideas suggested by Boise GIS and Melanie Wawryk and I still get an error: User cant overwrite this service, using this data, as this data is already referring to another service. The script finds the correct feature service and service definition but it won't overwrite.
... View more
03-09-2020
10:04 AM
|
0
|
0
|
7392
|
|
POST
|
Hi Tanu, Thanks for reaching out. The first attachment is a report that was created using ArcGIS Pro. These reports were created for some public meetings so the homeowners could take them home. We are hoping to transition to using an online map/app so it is more interactive and has more functionality for the user. However, we recognize that some users still like to have printed maps/reports so we don't want to lose that functionality. The second attachment includes a screenshot of me putting together different functions of the webapp builder map I created into one report. I experimented with using the Situation Awareness widget and the Incident Analysis widget. Ideally it could be printed to show the map, the legend and the hazard layers with their associated distances from the subject property. Right now, the legend goes away when you click on the bottom hazards bar so a user can't do a screenshot or print screen and get all the information at the same time. The third attachment includes a screenshot of the My Hazard app built by ESRI that I customized. Similar to above, I put together the map and legend into one screen shot so it could be printed. It would be nice if the panel on the right showed the distances (in addition to the number of layers in parenthesis or instead of). The user can click on each layer to see the distances which works great for online, but the distances aren't displayed for printing. Also, the legend goes away when you click on the hazards widget so you can't do a screenshot or print screen of all the information. Some of our services are hosted through our Boulder County organization account and some are hosted through my personal account. Here are some of the URLs I used in my map: http://maps.bouldercounty.org/arcgis/rest/services/HAZARD/FIRE_WILDFIRE_HISTORY/MapServer http://maps.bouldercounty.org/arcgis/rest/services/HAZARD/FLOODPLAIN_REG_COMPOSITE/MapServer http://maps.bouldercounty.org/arcgis/rest/services/HAZARD/HAZARD_STEEPLY_DIPPING_BEDROCK/MapServer http://maps.bouldercounty.org/arcgis/rest/services/HAZARD/HAZARD_SWELLING_SOILS_BEDROCK/MapServer http://maps.bouldercounty.org/arcgis/rest/services/Hazards/WildfireHazardRating/MapServer http://maps.bouldercounty.org/arcgis/rest/services/PLANNING/BCBC_Snowload_2017/MapServer http://maps.bouldercounty.org/arcgis/rest/services/PLANNING/BCBC_Windload_2017/MapServer I am happy to create a group and share my map or apps with you if that is easier to view them. Lastly, I don't see a link to the blog post you referenced. Can you resend that? Thanks, Molly
... View more
01-14-2020
09:40 AM
|
0
|
1
|
2236
|
|
POST
|
Hi Adrian, I haven't found a solution for this yet Thanks for the tips on updating the tags.
... View more
01-13-2020
02:17 PM
|
0
|
3
|
2236
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-20-2019 03:11 PM | |
| 1 | 08-30-2019 10:41 AM | |
| 1 | 12-14-2021 09:30 AM | |
| 1 | 07-31-2020 07:44 AM | |
| 1 | 08-08-2019 12:54 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-24-2024
05:42 PM
|