|
POST
|
I have attachments (images) in a feature service stored in ArcGIS Online. I am trying to reference the image URL in a Story Map. It works great when you set it up. The issue is, after a certain period of time, the images no longer show up in the Story Map as the token is invalid. It looks like the tokens change on a regular basis so I have to go in and change the URL to reflect the newest token for each image. Is there any way to set the time refresh that a new token is made for the feature like you can in ArcGIS Server? I need to keep the token from being refreshed so often in the feature service and breaking the links in my Story Map. Thank you!!!
... View more
05-31-2016
12:42 PM
|
0
|
3
|
4543
|
|
POST
|
Found the answer to my question. It's not possible. According to ESRI "Storing time alone is not supported—time must always be a component of a date."
... View more
05-25-2016
06:57 AM
|
1
|
0
|
2367
|
|
POST
|
Thanks Dan. It looks like that is for setting up the data to use the time slider in ArcGIS Online. That is useful to know. Even when you do that though, it want's a date and a time so the time field comes in as December 1899 and then a time. There has to be a way to just show the time.
... View more
05-25-2016
06:38 AM
|
0
|
1
|
2367
|
|
POST
|
When I bring a layer into ArcGIS Online from ArcMap, the Time field in the attribute table converts the times to dates. For example, instead of 3:00, the Time attribute becomes December 30, 1899. I haven't found a way to display the time in hh:mm:ss or even just hh:mm format. I created a Date/Time field by combining the date and time and tried to get it to display only the time, but it always wants to show the date too. Does anyone know how to get ArcGIS Online to display a time and NOT a date in the popup or attribute table? Any help is greatly appreciated
... View more
05-24-2016
01:36 PM
|
0
|
3
|
4080
|
|
POST
|
Thank you Wes. It didn't originally work, but when I added .env. before the overwrite function it worked (arcpy.env.overwriteOutput = True)! Thank you again so much for all the help!!!
... View more
04-06-2016
01:45 PM
|
1
|
0
|
2682
|
|
POST
|
The goal is to update the layer on a regular basis, so I would like to just overwrite the data with newly geocoded data. Do you know if there is a way I can overwrite the layer instead of creatinga whole new file?' I really appreciate your help!!!
... View more
04-06-2016
01:06 PM
|
0
|
2
|
2682
|
|
POST
|
Thank you very much Wes. I did that and it got past line 14, but then gave me this error mesage. Traceback (most recent call last): File "D:\MY FILES\Scripts\Schools_Excel.py", line 23, in <module> arcpy.GeocodeAddresses_geocoding(FOUO_MembersExcel, IllinoisCity_AddressLocator, "City City VISIBLE NONE;State State VISIBLE NONE", O_Members, "STATIC") File "C:\Program Files (x86)\ArcGIS\Desktop10.3\ArcPy\arcpy\geocoding.py", line 212, in GeocodeAddresses raise e ExecuteError: Failed to execute. Parameters are not valid. ERROR 000725: Output Feature Class: Dataset D:\MY FILES\Studies\Schools\Schools.gdb\O_Members already exists. Failed to execute (GeocodeAddresses).
... View more
04-06-2016
12:54 PM
|
0
|
4
|
2682
|
|
POST
|
Here is a copy of the script # --------------------------------------------------------------------------- # Schools_Excel.py # Created on: 2016-04-06 11:30:27.00000 # (generated by ArcGIS/ModelBuilder) # Description: # --------------------------------------------------------------------------- # Import arcpy module import arcpy # Local variables: MAP_Feb_15_2016_-_Copy_xls = "D:\\Schools\\MEMBERSHIP\\MAP Feb 15 2016 Application Status for Program - Copy.xls" O_MembersExcel = "D:\\MY FILES\\Studies\\Schools\\Schools.gdb\\O_MembersExcel" IllinoisCity_AddressLocator = "D:\\MY FILES\\Basic Map Data\\IllinoisCity_AddressLocator" O_Members = "D:\\MY FILES\\Studies\\Schools\\Schools.gdb\\O_Members" # Process: Excel To Table arcpy.ExcelToTable_conversion(MAP_Feb_15_2016_Application_Status_for_Program_-_Copy_xls, O_MembersExcel, "O") # Process: Geocode Addresses arcpy.GeocodeAddresses_geocoding(FOUO_MembersExcel, IllinoisCity_AddressLocator, "City City VISIBLE NONE;State State VISIBLE NONE", O_Members, "STATIC")
... View more
04-06-2016
12:04 PM
|
0
|
0
|
2682
|
|
POST
|
Hello, I am trying to run a python script and am getting an error. I built a model in Model Builder, and when I run the model in ModelBuilder it works just fine. I then exported it to a python script (.py) and am trying to get it to run in python, but when I do I get an error messages stating "There's an error in your program: *** can't assign to operator (Schools_Excel.py, line 14). Can anyone help me and let me know what I may be doing wrong after I export the Model to a python script and then run it in python? Thank you!
... View more
04-06-2016
10:39 AM
|
0
|
8
|
5679
|
|
POST
|
Hi Russ, Did you ever resolve this issue? Our custom geocoding service on our server is not showing up in ESRI Maps for Office either and I'm thinking it may be a similar issue.
... View more
12-01-2015
01:46 PM
|
0
|
0
|
1507
|
|
POST
|
I talked with ESRI, and it appears the issue is that the address locator uploaded as a geocoding service may have been created using an ArcGIS version prior to 9.2. Locators created in a version prior to 9.2 are not supported in ESRI Maps for Office. We are going to try and rebuild the locator in 10.3 and see if it will work then.
... View more
11-23-2015
07:39 AM
|
0
|
0
|
2264
|
|
POST
|
Thank you for the reply Kyle. That's what I thought too, however our Geocoding Service is not there. It has been figured in Utility Services, so it should be showing up there, but it is not. We even deleted the World Geocoding Service, and when doing that, there are 0 address Geocoding Services under the address tab.
... View more
11-17-2015
06:42 AM
|
0
|
0
|
2264
|
|
POST
|
We are trying to use our own address locator in ESRI Maps for Office and are having issues. We added our own address locator as a Geocoding Service in our ArcGIS Online account (using Utility Services). When trying to geocode addresses in our Excel files however, that geocoding service is not there. The only address Geocoding Service that is there is the default World Geocoding Service. Is there something else that needs to be done to get the Geocoding Service accessible in ESRI Maps for Office? Any help would be greatly appreciated!
... View more
11-16-2015
01:57 PM
|
0
|
4
|
5383
|
|
POST
|
I have started to learn some python, at least for use in ArcGIS. There are a lot of useful resources out there to learn python for ArcGIS and just in general. Thanks!
... View more
08-06-2015
11:35 AM
|
1
|
0
|
2034
|
|
POST
|
I never figured out how to do it on changes to a layer or map, but did find out how to just have a script run at a prescribed time every day which should basically do the trick. Scheduling a Python script or model to run at a prescribed time | ArcGIS Blog
... View more
08-06-2015
11:09 AM
|
0
|
2
|
2034
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-11-2024 11:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|