IDEA
|
Update: I just found this other post dated 03/03/2020 that says you can under very specific circumstances. You have to be kidding me!! I just spent a month setting up Enterprise Site and now thru this post, I'm finding out that the public can't download our data without an account?!?!?! ESRI please put this disclaimer on Enterprise Sites, so people don't waste time setting up something that the public can not use.
... View more
02-03-2021
12:51 PM
|
0
|
0
|
165
|
POST
|
Dashboards not working after geodatabase upgrade to 10.7. Everything else (services, applications, web maps, etc.) are all working without any issues after the upgrade. This specific dashboard has updated date and created date fields both are showing in epoch format in the dashboard only. The date format is correct everywhere else except on the dashboard. The indicator widget on the dashboard doesn't work because it can't filter by the date due to the new format. Any ideas? I already read this post https://community.esri.com/community/gis/enterprise-gis/geoevent/blog/2019/03/14/what-time-is-it-well-that-depends and my issue is not related to GeoEvent Server.
... View more
09-15-2020
01:28 PM
|
1
|
0
|
82
|
POST
|
Thanks, I already saw those slides. I'm asking for the slides from: - ArcGIS Insights: An Introduction - ArcGIS Insights: Best Practices They were both part of the "On Demand" technical workshops.
... View more
07-23-2020
08:17 AM
|
0
|
1
|
216
|
POST
|
Can you please make available the slides for ArcGIS Insights: An Introduction and ArcGIS Insights: Best Practices from the UC?
... View more
07-17-2020
09:52 AM
|
0
|
5
|
367
|
POST
|
This is a monthly recurring task. So every month the old GDB will be deleted and a new one created. After the new one is created, all the layers (records in each layer) that intersect with the AirBound layer will be copied to the new GDB.
... View more
07-08-2020
11:34 AM
|
0
|
1
|
20
|
POST
|
Thanks but that didn't work. Got the error below ERROR 000733: Output Feature Class: Same as input Input Features Failed to execute (CopyFeatures).
... View more
07-08-2020
11:20 AM
|
0
|
3
|
161
|
POST
|
The features would go into the new GDB. I want to use their original names from SDE I'm trying to avoid creating 30+ output names using variables. Sorry, should have copy the entire script. import arcpy, os, sys, math, time, smtplib arcpy.env.orverwriteOutput = True # Project Variables aprx = arcpy.mp. ArcGISProject ( "CURRENT" ) GDB = " \\\\ cdmgis \\ d$ \\ Scripts \\ Python \\ AirportFTP \\ Airport.gdb" AirportBound = " \\\\ cdmgis \\ d$ \\ Scripts \\ Python \\ AirportFTP \\ AirportBoundary.gdb" AirBound = AirportBound + " \\ CloseGISBoundary" ExtAirBound = AirportBound + " \\ ExtendedGISBoundary" # # Delete old GDB and creates new one if arcpy. Exists ( GDB 😞 arcpy. Delete_management ( GDB ) arcpy. AddMessage (arcpy. GetMessages ()) if not os.path. exists (os.path. dirname ( GDB )): os. mkdir (os.path. dirname ( GDB )) arcpy. CreateFileGDB_management (os.path. dirname ( GDB ), os.path. basename ( GDB )) print (arcpy. GetMessages ()) arcpy.env.workspace = GDB # Select by location all layers that intersect with AirBound and copy selection to GBD m = aprx. listMaps ( "Test" )[ 0 ] for layer in m. listLayers (): if layer.name != AirBound: arcpy. SelectLayerByLocation_management (layer, "INTERSECT" , AirBound) print (arcpy. GetMessages ())
... View more
07-08-2020
10:38 AM
|
0
|
5
|
161
|
POST
|
I'm writing a script that has 30+ layers and a boundary layer. I need to copy all the layers that intersect with the boundary to a GDB. I have the following for the "Select layer by location" tool # Select by location all layers that intersect with AirBound and copy selection to GBD m = aprx. listMaps ( "Test" )[ 0 ] for layer in m. listLayers (): if layer.name != AirBound: arcpy. SelectLayerByLocation_management (layer, "INTERSECT" , AirBound) print (arcpy. GetMessages ()) Is there any way to use "Copy Features" tool where the output name is the same as the input name? Thanks!
... View more
07-08-2020
09:21 AM
|
0
|
11
|
311
|
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|