|
POST
|
Hey Greg Horne, If you look here you can see documentation on adding a csv and then publishing it as a feature layer: Publishing SDs, Shapefiles and CSVs | ArcGIS for Developers If you use just this part it should just add to the portal and not publish a feature layer:
upload_file = "c:\data.csv"
file_properties = {'title': friendly_name,
'tags': 'public, data, animal, welfare',
'type': 'CSV'
}
item = gis.content.add(file_properties, upload_file)
This line here is the part that is publishing the csv as a feature layer. misc = item.publish() Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-16-2020
04:19 PM
|
1
|
0
|
1226
|
|
POST
|
Hey Jeff Timm, You can print out the creators using something like so: group = gis.groups.get("6bde3136acbb48bcba1edc2eca61eac6") response = group.get_members() for user in response['users'] : if(user.userLicenseTypeId == "creatorUT"): print(user) Let me know if you have any issues with the above. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-16-2020
04:14 PM
|
1
|
2
|
2327
|
|
POST
|
Hey chad hickman, You could use the Enrich tool in ArcGIS Pro and use your zipcode polygons as an input. The tool does consume credits though. If this won't work for you let me know and I'll give you some other ideas. Thanks, Ben
... View more
04-15-2020
05:05 PM
|
1
|
0
|
2812
|
|
POST
|
Hey Jennifer Hopkins, There are a few ways you can do this. I find the easiest is to use ArcGIS Online Assistant: ArcGIS Online Assistant If you are more python inclined you can use something like this: source_gis = arcgis.gis.GIS("https://arcgis.com","username","password") target_gis = arcgis.gis.GIS("https://arcgis.com","username","password") item = source_gis.content.get("<item-id>") target_gis.content.clone_items([item]) You just need to plug in your account details for the two accounts and get the item id for the item you want to transfer. I like the python way as the clone_items will find all the dependencies of an item and copy them and repoint everything where the ArcGIS Online assistant seems to copy and setup references. Let me know if you have any questions! Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-14-2020
05:05 PM
|
6
|
1
|
8553
|
|
POST
|
Hey Chrissy Esposito, One thing you could look at is the ArcGIS Online Assistant (ArcGIS Online Assistant ). It has the ability to inspect the json of a webmap and can show you the colour values of your map. Here is a simple sample I have showing where to check the color: I've used this to setup custom colors before when I haven't had access to ArcGIS Pro. Try setting a couple of values in here and then give it some time and see they revert back. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-14-2020
04:57 PM
|
1
|
0
|
2984
|
|
POST
|
Hey Pamela Locke, You can use either of these two buttons: Thanks, Ben
... View more
04-08-2020
04:08 PM
|
1
|
0
|
2264
|
|
POST
|
Hey Pamela Locke, When you are configuring your dashboard you can click Modify Layout to add more dashboard panels/widgets but you can also resize the dashboard tiles in here. I've added a short video as it was a bit hard to put into words. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-07-2020
05:05 PM
|
1
|
2
|
2264
|
|
POST
|
Hey Michael Torbett, Have you got any scheduled scripts running that use your ArcGIS Online username and password? If you have updated your password recently and haven't updated the scripts it could be caused by that. It could also be a malicious attack with someone trying to get into your account. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-07-2020
05:02 PM
|
2
|
0
|
2355
|
|
POST
|
Hey Evaine Sing, Can you tell us a bit about the data you are trying to join? How many features in each? What are your join parameters? Have you watched your computers task manager while running the join to see if it is maxing out your computers memory? What are the specs on the PC? Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-06-2020
04:10 PM
|
1
|
2
|
1523
|
|
POST
|
Hey Marianne Caouette, Can we please know the following: Operating System Is there any other installed Esri apps? IIS or Tomcat It would also help if you could reboot the server, try and load the page and then provide a dump of all the log files after startup. I'm thinking there would be a chain of events that is cullminating in that error that we would see in other logs. It would be best to set the log level to verbose while we try and fix this issue. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-05-2020
05:10 PM
|
1
|
0
|
3691
|
|
POST
|
Hey Petra Valle, Are you able to provide a screen shot or write out the error message? It will make it a lot easier for people to troubleshoot this problem with the error message. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-05-2020
04:53 PM
|
1
|
0
|
836
|
|
POST
|
Hey Lisa Angstadt, If you mouse over the orange warning dot you will see that ArcGIS Online is trying to pull in too many features. Its hard to put an exact number on how many features it can draw because it switches between snapshot mode to on demand mode. You can find out more information from these two blogs on how to display large amounts of data: https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/10/17/so-you-want-to-display-a-bazillion-features-on-the-web-a-technical-approach-to-large-feature-datasets https://www.esri.com/arcgis-blog/products/arcgis-online/data-management/strategies-to-effectively-display-large-amounts-… I would recommend that you create a boundary layer for the data that shows where the data is and then set zoom scales so that your polygons turn on as you zoom in. Thanks Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-01-2020
03:55 PM
|
1
|
0
|
2256
|
|
POST
|
Hey Jesse Josserand, That is some strange behaviour you are seeing! Are you able to access the Portal Admin rest page and login? The url is normally https://domainhere.com/webadapotrnamehere/portaladmin It would also be worth looking at the logs to see if there is anything being reported in there. Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-01-2020
03:48 PM
|
1
|
1
|
3047
|
|
POST
|
Hey Robert Buckley, You can calculate the sum of all your layers like so: var sum_values = SUM($layer,"Total") return(sum_values) Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
04-01-2020
03:42 PM
|
1
|
2
|
2941
|
|
POST
|
Hey Sayed Wali, I don't think this is possible without some custom coding or calculating those fields before pushing it to ArcGIS Dashboards. If you are intereseted in this feature you may want to vote for this idea: Operations Dashboard widget to display count of distinct unique values Thanks, Ben If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.
... View more
03-30-2020
03:35 PM
|
1
|
1
|
4035
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-05-2020 08:40 PM | |
| 1 | 03-22-2020 07:12 PM | |
| 1 | 05-19-2020 07:11 PM | |
| 1 | 03-25-2020 03:17 PM | |
| 3 | 04-20-2020 04:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|