|
POST
|
Bob. It does not require Jupyter Notebook but you do need the necessary packages installed within Python 3. kml2geojson arcgis 1.5.0
... View more
11-13-2018
10:51 AM
|
0
|
2
|
1888
|
|
POST
|
Charles, You could change the domain to represent a numerical value and then change the alias to represent each month, such as (1 = January, 2 = February, etc).
... View more
11-08-2018
09:38 AM
|
0
|
0
|
725
|
|
POST
|
Bob, KML's are extremely difficult to work with because of how the architecture of the the data is written which creates limitations for displaying in ArcGIS Online. A solution if you are familiar with Python that you could pursue is do a transformation of the data from KML -> GeoJSON -> Overwriting a Feature Service through Python. Give this documentation a look over overwriting_feature_layers | ArcGIS for Developers The code below is one I have successfully implemented to update a Feature Service through a KML Feed. # coding: utf-8 # In[21]: # Import libraries import urllib.request import kml2geojson import urllib.request, json import os from arcgis.gis import GIS from arcgis import features # In[22]: url = 'http://www.wildcadmap.net/WildCAD_CA-CNF.kml' # In[23]: urllib.request.urlretrieve(url, 'C:/Python_Testing/KML2GeoJSON/KML/WildCAD_CA_CNF.kml') print("Successful Retrival") # In[24]: kml2geojson.main.convert('C:/Python_Testing/KML2GeoJSON/KML/WildCAD_CA_CNF.kml', 'C:/Python_Testing/KML2GeoJSON/GeoJSON') # In[25]: # Connect to the GIS gis = GIS("https://www.arcgis.com", "Your Username", "Your Password") print("Logged in as " + str(gis.properties.user.username)) # In[26]: CNF_incidents_json_file='C:/Python_Testing/KML2GeoJSON/GeoJSON/WildCAD_CA_CNF.geojson' # ## Overwrite the feature layer # Let us overwrite the feature layer using the new csv file we just created. To overwrite, we will use the `overwrite()` method. # In[27]: #item id of the feature layer in AGOL Organization CNF_incidents_featureLayer_item = gis.content.get('Feature Service ID') # In[28]: from arcgis.features import FeatureLayerCollection CNF_incidents_flayer_collection = FeatureLayerCollection.fromitem(CNF_incidents_featureLayer_item) # In[29]: from arcgis.features import FeatureLayer CNF_incidents_flayer = FeatureLayer.fromitem(CNF_incidents_featureLayer_item, layer_id=0) # In[30]: #get the count of the features in the geojson json_data = open(CNF_incidents_json_file) data2 = json.load(json_data) print(len(data2['features'])) # In[31]: #if there are features then overwrite the layer with the new data. If no features then truncate the database. if len(data2['features'])>0: CNF_incidents_flayer_collection.manager.overwrite(CNF_incidents_json_file) else: CNF_incidentsflayer.manager.truncate() # In[32]: dirPath = "C:/Python_Testing/KML2GeoJSON/KML" fileList = os.listdir(dirPath) for fileName in fileList: os.remove(dirPath+"/"+fileName) print("file deleted") Let me know if you have any questions. -Eric Shreve
... View more
11-08-2018
09:04 AM
|
1
|
4
|
1888
|
|
BLOG
|
I noticed this in Microsoft Flow this morning. I have several Survey123 survey's created and Microsoft is not recognizing them through my ArcGIS Account. I was doing some testing a couple weeks ago and everything appeared to work correctly now it is not setting any email notifications.
... View more
08-23-2018
08:16 AM
|
0
|
0
|
25566
|
|
POST
|
I noticed this in Microsoft Flow this morning. I have several Survey123 survey's created and Microsoft is not recognizing them through my ArcGIS Online Account. I was doing some testing a couple weeks ago and everything appeared to work correctly now it is not setting any email notifications.
... View more
08-23-2018
07:57 AM
|
0
|
5
|
1663
|
|
IDEA
|
Thanks Craig for commenting on the use case. When I was at the UC last month I made a request to their team to see it added to the road map.
... View more
08-02-2018
11:31 AM
|
1
|
0
|
3883
|
|
POST
|
Owen, this is perfect the &classicembedmode URL is exactly what I was looking for. I like the new update but I was getting inquiries from leadership to remove the share bar, especially when embedding it within another Story Map. Thank You, Eric
... View more
07-30-2018
07:52 AM
|
0
|
0
|
2264
|
|
POST
|
Owen were you able to look at the issue that I am running into with the embed bar? Thanks, Eric
... View more
07-30-2018
07:30 AM
|
0
|
0
|
2264
|
|
POST
|
Chris, thanks for the information. It is kind of frustrating that some of the ArcGIS Pro Solutions do not work especially if they are advertising it as a "solution for immediate use by your organization". It also is strange knowing that if I sign out of organization and sign into another one it has no issues on deploying the solution.
... View more
07-27-2018
03:08 PM
|
1
|
3
|
2171
|
|
POST
|
Chris when I changed the name to "DebrisReports_v2_AZ" the feature service was created succesfully. Is the workaround to create a new feature service from the ArcGIS Solutions if ArcGIS Pro is showing an error? I would also like to deploy the Ops Dashboard, Web Map, and Survey123 Form.
... View more
07-27-2018
12:37 PM
|
0
|
5
|
2171
|
|
POST
|
Owen here is the application AZ ESF/RSF Operations Dashboard
... View more
07-27-2018
12:33 PM
|
0
|
0
|
2264
|
|
POST
|
I noticed on the June 2018 release for Story Maps that the embed bar became a new feature on new stories created after June 2018. The documentation that I am reading states. "Also, if you embed a story map inside another story map, the embed bar won't appear " When I do the above function I still get the embed bar at the bottom of my application. I am currently sharing a Story Map Journal within a Story Map Tabbed Layout and I would like to have the shared bar remove. Is there something I can add to the Embed Code to remove the bar?
... View more
07-27-2018
11:35 AM
|
0
|
6
|
2861
|
|
POST
|
When I attempted to create the feature service by the url it appears I get an unresponsive page when I finalize the "Create a feature layer". The screenshot below froze up and did not actually do anything in AGOL.
... View more
07-26-2018
01:04 PM
|
0
|
7
|
2171
|
|
POST
|
Hi Chris, I attempted to use this Debris Reporting Solution. I initially tried to use my day-to-day organizational account to deploy the solution and had no success for the Feature Services, Web Map, Ops Dashboard, & Survey123 Form. When I switch accounts and went with this organization I had no problem creating the solution. I believe it may be related to how the current org is set up for my day-to-day job? Thanks, Eric Shreve
... View more
07-26-2018
10:31 AM
|
0
|
9
|
2171
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-19-2019 08:49 AM | |
| 1 | 05-31-2018 01:58 PM | |
| 1 | 02-11-2018 02:15 PM | |
| 1 | 02-12-2018 06:29 AM | |
| 1 | 05-01-2020 09:02 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|