|
IDEA
|
Esri provides great solutions that you can easily deploy but they have not included any feature level documentation, XML Workspace Documents or File Geodatabase to go along with the solutions. Why would you need this for an online solution? We need to give documentation to other users so they can decide if the fields are what they need or if we need to add more or change them to suit our organization. Often times domain values also need to be tweaked to suit our organization. We also need a way to compare the solutions over time. The blogs are a great starting point but we need to see what the schema changes are so we can evaluate if we need to use the new feature layer or keep the one we were using. Currently to do this we need to export each layer as FGDB and then download it from AGOL. We then have to export the FGDB to SDE geodatabase so we can produce a report with field information for the planning group to decide if they want changes. By providing feature level documentation, XML Workspace Documents or File Geodatabases to go along with their solutions would save a lot of time.Howard Crothers
... View more
08-16-2019
09:20 AM
|
8
|
0
|
1092
|
|
IDEA
|
Please create a proper executable instead of the AppxBundle for Collector for ArcGIS on Windows. The entire program should be able to be installed using the install file. The windows store is too flakey and involved between firewalls, security group permissions, and azure active directory connections. We actually had to temporarily unblock X-box live on our firewall to get the windows store to finally install it. Side loading is not an option for many organizations and it only worked on a few machines. Please just release it as a proper program and not an app for windows 10.
... View more
05-15-2019
08:24 AM
|
13
|
0
|
759
|
|
IDEA
|
Please create a proper executable instead of the AppxBundle. The entire program should be able to be installed using the install files. The windows store is too flakey and involved between firewalls, security group permissions, azure active directory connections and side loading is not an option for many organizations. Please just release it as a proper program and not an app for windows. Please up vote this idea to make a proper install for Collector on Windows 10 https://community.esri.com/ideas/12845-make-collector-for-arcgis-on-windows-10-available-for-download-directly-from-esri
... View more
05-15-2019
08:19 AM
|
0
|
0
|
2583
|
|
DOC
|
The options seems to have been removed, is there a new way of doing this?
... View more
05-15-2019
06:46 AM
|
0
|
0
|
36148
|
|
POST
|
Here is an article sent to me from Esri (but not Esri supported) about installing these bundles on Windows 10 that may help: https://www.howtogeek.com/285410/how-to-install-.appx-or-.appxbundle-software-on-windows-10/ As well the newest version currently is 18.0.2 and it can be found on Esri Downloads
... View more
02-21-2019
06:42 AM
|
0
|
0
|
906
|
|
IDEA
|
We ended up adding a loop to look for an exact match. I still think you should be able to just have a search function return an exact match directly. # Find the SD, update it, publish /w overwrite and set sharing and metadata print("Search for original SD on portal…") #Check that it found the correct layer match=0 layerno = 0 while (match == 0): sdItem = gis.content.search(query="title:"+ sd_fs_name + " AND owner: " + user, item_type="Service Definition")[layerno] foundlayer = sdItem.title if foundlayer == sd_fs_name: match = 1 print("Layer Returned: " + foundlayer + " vs " + sd_fs_name) else: match = 0 layerno = layerno + 1 print("Layer Returned: " + foundlayer + " vs " + sd_fs_name + " Index No: " + str(layerno)) #sdItem = gis.content.search("title:{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0] sdItem = gis.content.search(query="title:"+ sd_fs_name + " AND owner: " + user, item_type="Service Definition")[layerno] print ("Search title:{} AND owner:{}".format(sd_fs_name, user)) print("Found SD: {}, ID: {} n Uploading and overwriting…".format(sdItem.title, sdItem.id)) sdItem.update(item_properties={'tags': itemtags, 'snippet': itemsummary, 'accessInformation': itemcredit}, data=sd, thumbnail=itemThumbnail) print("Overwriting existing feature service...") fs = sdItem.publish(overwrite=True) if shrOrg or shrEveryone or shrGroups: print("Setting sharing options…") fs.share(org=shrOrg, everyone=shrEveryone, groups=shrGroups) rundate=datetime.datetime.now() print("Updated: {} – ID: {}".format(fs.title, fs.id)," at " + rundate.isoformat())
... View more
02-13-2019
09:52 AM
|
3
|
0
|
8031
|
|
POST
|
I am using a hosted tracking layer in ArcCollector that shows up in AGOL, in iOS and Android devices. On both iOS and Android you need to turn the tracking layer on to see it (even though visibility is set to true in the AGOL map and in the JSON of the map). They layer does not show up at all in the windows version of ArcCollector and there is no functionality to turn layers on and off. Two questions: Is there a way to force the tracking layer to be visible in all OS but specifically Windows since you can't turn it on in the app? When is the New Collector going to be release for Windows?
... View more
02-13-2019
09:36 AM
|
0
|
0
|
668
|
|
IDEA
|
I even deleted the Historic layer and replaced it with one named HISTORIC_TRAFFIC_CLOSURES and TRAFFIC_CLOSSURES still finds the historic one as the first result. Script: sdItem = gis.content.search("title:{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0] print ("Search title:{} AND owner:{}".format(sd_fs_name, user)) print("Found SD: {}, ID: {} n Uploading and overwriting…".format(sdItem.title, sdItem.id)) sdItem.update(item_properties={'tags': itemtags, 'snippet': itemsummary, 'accessInformation': itemcredit}, data=sd, thumbnail=itemThumbnail) fs = sdItem.publish(overwrite=True) Results: Search title:Traffic_Closures AND owner:KitchenerGIS Found SD: Historic_Traffic_Closures, ID: ca7a9a21ab1d48bcbc750f21817604bf n Uploading and overwriting… User cant overwrite this service, using this data, as this data is already referring to another service. type error: User cant overwrite this service, using this data, as this data is already referring to another service. (Error Code: 500) Search title:Historic_Traffic_Closures AND owner:KitchenerGIS Found SD: Historic_Traffic_Closures, ID: ca7a9a21ab1d48bcbc750f21817604bf n Uploading and overwriting… Finished updating: Historic_Traffic_Closures – ID: 92cc3761a7c1401c8508bb4a2f2c9e35 Process completed at 09-26-2018 09:24:52 AM.
... View more
09-26-2018
07:01 AM
|
0
|
1
|
8031
|
|
IDEA
|
When trying to search and update content on AGOL there is only the option to search close matches and then somehow figure out if you have the correct one prior to updating the one from the list returned using gis.content.search. There should be an option to search for an exact match and not bother with a list that is returned. If for example, I want to update Traffic_Closures the search will return Traffic_Closures_Historic. You have to know ahead of time which result will show up first so you can tell the search to give you the first result or the second result. In this case, I want to update both layers so I can't just get rid of similarly named features to make sure my first result is always the correct result. The use case is in https://www.esri.com/arcgis-blog/products/api-python/analytics/updating-your-hosted-feature-services-with-arcgis-pro-and… It will often find a similarly named layer rather than the one you asked for. print("Search for original SD on portal…") sdItem = gis.content.search("{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0] print("Found SD: {}, ID: {} n Uploading and overwriting…".format(sdItem.title, sdItem.id)) sdItem.update(data=sd) print("Overwriting existing feature service…") fs = sdItem.publish(overwrite=True) You can improve the results by adding in title sdItem = gis.content.search("title:{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0] but it still returns Traffic_Closures_Historic as the first result when you search for Traffic_Closures Please add a search that will return an exact match without having to get a list back.
... View more
09-24-2018
10:17 AM
|
51
|
7
|
9061
|
|
POST
|
I agree you should be able to search for an exact match. I want to search by the name, for example, Golf_Course and get the ID so I can update it. Unfortunately, the first one it finds is a similarly named layer. Updating data requires an exact match, it seems strange that finding an exact match would not have been the default Please vote on the following idea to have an exact match option. https://community.esri.com/ideas/15577
... View more
09-24-2018
10:02 AM
|
1
|
1
|
10074
|
|
POST
|
Idea posted to ideas pagehttps://community.esri.com/ideas/15221
... View more
07-03-2018
08:16 AM
|
0
|
0
|
6922
|
|
IDEA
|
We like to have all of our web services with database locking turned off. When the schema is locked the services can prevent SDE from compressing. I would like to change this so when we add a new web service, it is database locking unchecked (false) by default rather than checked (true). There should be a config file somewhere that can be changed so the default is set to false but there doesn't seem to be. I realize that we can easily change it every single time I add a web service but it only takes on to be forgotten to cause issues and if it is on by default it should also be able to be off by default. Tanu Hoque Nidhin Karthikeyan brian bieber Alison Gaiser Jason Greenlaw behavior
... View more
07-03-2018
08:16 AM
|
26
|
2
|
1793
|
|
IDEA
|
In the contents page of AGOL you can use HTML to create formatted text. It would be nice if that was replicated over to open data (geoHub). For example, in our description, we include a list of fields with an explanation of what they are in a table format. However, in Open Data, the table just comes across as a text squished together as shown in the two attached images.
... View more
06-06-2018
10:57 AM
|
1
|
0
|
798
|
|
IDEA
|
A way to easily update the source of a map layer in AGOL would be nice. It looks it can be done using AGOL online assistant https://ago-assistant.esri.com/ but it would be nice to be able to do it within the map itself like in ArcMap where you can update the data source in the properties window.
... View more
06-06-2018
10:52 AM
|
3
|
1
|
928
|
|
IDEA
|
Have a "Used by" tab in AGOL on the contents page that shows where services are being used elsewhere in AGOL. This would be similar to the "used by" tab in Toad for Oracle so you can see what apps, maps etc need to be updated when layers change. It would be great if there was a feature that allowed you to notify users of the service that a service has changed so they don't have to be surprised when one of their apps fails to work.
... View more
06-06-2018
10:49 AM
|
1
|
1
|
728
|
| Title | Kudos | Posted |
|---|---|---|
| 8 | a week ago | |
| 6 | 03-26-2026 01:08 PM | |
| 3 | 02-10-2025 09:11 AM | |
| 7 | 10-24-2024 08:36 AM | |
| 11 | 05-14-2024 06:34 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|