|
POST
|
I added a custom basemap and it loads successfully on the map that I saved it in. I then added it as a the default basemap in the organization settings, but when I open a new blank map in the map viewer the basemap does not load and is grayed out. In the console, I can see a spatial reference error. Thoughts? My projection: System Type Name WKID Area of Use Min Lat Min Long Max Lat Max Long Projected Coordinate System NAD_1983_CSRS_New_Brunswick_Stereographic 2953 Canada - New Brunswick 44.560 -69.050 48.070 -63.700
... View more
07-08-2021
10:24 AM
|
0
|
0
|
2997
|
|
POST
|
Here is an example python script that can be run to specifically backup hosted feature layers from ArcGIS Online to a local drive or network drive on your computer or network. Although not ideal to code in credentials, if it is stored and ran from a secure machine, it can be scheduled to run automatically with Windows Task Scheduler. Alternatively, you can run this script manually and alter it to prompt you for credentials. Thanks to Adam Koelker for presenting the core of this script via YouTube. I adapted to query and loop through a specific set, and added some print statements. from time import strftime
print (strftime("%c"))
from arcgis.gis import GIS
###Authenticate to ArcGIS Online
gis=GIS("https://yourorganization.maps.arcgis.com","yourUsername","yourPassword")
###Query to for all items to be downloaded. In this case, it's searching for all feature layers marked as authoritative
myFeatureCollections=gis.content.search(query="contentstatus:org_authoritative",item_type="Feature Layer Collection",max_items=1000)
###Output location for downloaded backups
output=r"C:/path/to/output/location"
###Initiate cycle to export, download, and delete backups
for item in myFeatureCollections:
try:
print('Exporting '+str(item.title))
currentItemID=item.itemid
dataitem=gis.content.get(currentItemID)
### Create Backup
tempfile=strftime(dataitem.title+"_backup_%Y%m%d")
dataitem.export(title=tempfile,export_format="File Geodatabase",parameters=None,wait=True)
except:
print("Could not create backup for "+str(item.title)+' ('+str(item.itemid)+')')
pass
try:
### Find and download export
myexport=gis.content.search(tempfile,item_type="File Geodatabase")
fgdb=gis.content.get(myexport[0].itemid)
fgdb.download(save_path=output)
print("Downloaded "+str(fgdb.title)+" to "+output)
except:
print("Could not download export for "+str(myexport[0]))
pass
try:
###Delete export
fgdb.delete()
except:
print("Could not delete export for "+str(fgdb))
pass
print("Script completed at {}".format(strftime("%c"))) EDIT: This query no longer retrieves explicitly hosted feature layers, but also stored web layers. See https://developers.arcgis.com/rest/users-groups-and-items/items-and-item-types.htm for updated item types that can be queried
... View more
05-28-2021
01:01 PM
|
5
|
13
|
5554
|
|
POST
|
Unfortunately, you must create whole new accounts, transfer content and group membership, and delete old accounts. There is no way to convert existing accounts at this time. Keep in mind, you can maintain both the "old" way of logging in (AGOL named users) and the "new" way (SAML) at the same time, so make sure to train your users on logging in correctly if you choose not to disable Esri logins.
... View more
01-05-2021
11:39 AM
|
0
|
5
|
3978
|
|
POST
|
Peter, Setting the time in the service parameters did the trick. Thanks! Now if only I could get my data to display only one year at a time: In Desktop, I can show exactly one year's worth of data by excluding either the start or end time of the current interval. In ArcGIS Online, showing data for one year at a time actually shows data from two years. Here are my settings: Here is what my data looks like: You can clearly see that the pink points (2016) are mixing with points from 2017 (navy) if those points fall on 1/1/2017. In ArcGIS Online, either the start or end date should be excluded by default with these settings. I consider this a BUG because the user is expecting 1 year of data but they get a year and one day.
... View more
07-09-2020
01:48 PM
|
0
|
1
|
2776
|
|
IDEA
|
I have the exact same issue/request. In Desktop, I can show exactly one year's worth of data by excluding either the start or end time of the current interval. In ArcGIS Online, showing data for one year at a time actually shows data from two years. Here are my settings: Here is what my data looks like: You can clearly see that the pink points (2016) are mixing with points from 2017 (navy) if those points fall on 1/1/2017. In ArcGIS Online, either the start or end date should be excluded by default with these settings. I consider this a BUG because the user is expecting 1 year of data but they get a year and one day.
... View more
07-09-2020
01:09 PM
|
0
|
0
|
1525
|
|
POST
|
I set the time zone in the Time tab when configuring the time slider settings. I did not update the configuration when sharing it as a service. I will try that. It is a hosted service, not an AGS service.
... View more
07-01-2020
05:14 PM
|
0
|
0
|
2776
|
|
POST
|
Thanks for your reply. I did set the time zone to PST before publishing. Are you saying that I have to convert all times in my database to UTC and then set the time zone to UTC prior to publishing?
... View more
07-01-2020
02:52 PM
|
0
|
4
|
2776
|
|
POST
|
I have a map service and a feature service from an AGS that I manage. I added the data to a web map (and also to a BETA web map - Esri's newer version of the AGOL web map) and am experiencing the same issue: The current time is clearly 12/31/2008 - 12/31/2009, but the slider shows 2009-2010. ???? I don't even know what to make of this. The time settings established in ArcGIS Pro look like this: This is what was used to make the services. The time displays correctly in ArcGIS Pro.
... View more
06-05-2020
09:05 AM
|
0
|
7
|
2912
|
|
IDEA
|
Hi Owen, For us this is not a suitable solution because the Time Aware app is very limited. The user is not able to do things like hide the legend (so half of the map is covered or there is no legend - no in between), retain the benefits of embedding a web map directly in a story map (like building map actions, opening a pop up by default, etc.), and the time aware app does not have the same level of configuration detail as in a web map (I want to show the time slider as I have configured it in the web map, but find that the Time Aware app does not allow this). Some additional features inside a story map that would be useful: Show a time slider that honors the configuration set in the web map. For example: Auto play Playback speed Start and End Time Etc. Customize the color or theme of the time slider Set the data format for the time slider I went to an awful lot of trouble to display time-enabled data in my web map just to learn it cannot be displayed in the story map in the way expected. For now I will try to use a Time Aware app, adding a screenshot of the legend to my story next to this embedded app, so as to not cover my entire map, but give users the access to view the legend. I will have to think of some other creative solutions to get it to look the way we need.
... View more
06-02-2020
01:53 PM
|
0
|
0
|
2704
|
|
IDEA
|
I'd like to know more. What is it called? Who is "we"? and can your tool also restore backups easily?
... View more
12-18-2019
02:13 PM
|
1
|
1
|
2819
|
|
POST
|
Owen Evans Added information: I created the web map from ArcGIS Pro 2.4. I will try to replace the web map
... View more
08-08-2019
12:52 PM
|
0
|
0
|
636
|
|
POST
|
Thanks for checking, much appreciated. I have tried it on a different computer (mac vs pc) and a different network. I will email you a link, since I don't want the link posted publicly here.
... View more
08-08-2019
11:41 AM
|
0
|
1
|
636
|
|
POST
|
Hi, I have been building a Cascade Story Map and without fail, every 30 seconds or so, the page just crashes. I get a message saying that "something went wrong while displaying this webpage" and to "Reload" the page. The dev tools on Chrome also stop because the "rendering" has stopped. So I really don't know what is causing the issue. I cleared my cache, I used an incognito browser, I restarted my computer, I even tried recreating the story map from scratch. I tried on another machine. I tried replacing my data layers. But it still crashes.... It is impossible for me to get work done because if I make ONE change and try to save it, it still crashes. I feel like I am jumping through hoops. I called tech support but made no progress. I am only using one web map so far in my story map and there are no known issues with it according to Esri tech support. Thoughts? How can I move forward? Best browser to use? things to avoid to increase my chances? Better with hosted data vs server data? -Melanie Rosenberg Owen Evans
... View more
08-08-2019
11:08 AM
|
0
|
3
|
760
|
|
POST
|
Thanks for the story map. This is useful, but not quite the documentation I was hoping for. I am looking for something more technical and geared towards a user who already wants to use the capital project planning solutions and understand the details of how the schema is set up and how the applications can be configured.
... View more
07-29-2019
09:51 AM
|
0
|
1
|
1276
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 03-29-2023 06:15 PM | |
| 8 | 04-06-2023 03:19 PM | |
| 1 | 03-24-2023 02:15 PM | |
| 6 | 03-21-2023 12:22 PM | |
| 4 | 02-18-2022 11:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-12-2024
10:06 PM
|