|
IDEA
|
I fully support this, my content is becoming cluttered with survey- folders... I would like to centralize all my surveys into one folder or choose which folder to place them in (by department, user, etc.)
... View more
04-11-2018
11:43 AM
|
0
|
1
|
5820
|
|
POST
|
Here is a script I use import arcpy sde_path = r"C:\Users\GIS.sde" arcpy.env.workspace = sde_path datasets = arcpy.ListDatasets('*', 'ALL') failedData = [] sucdata = [] for data in datasets: try: arcpy.RegisterAsVersioned_management(data, 'NO_EDITS_TO_BASE') sucdata.append(data) print str(data) + " completed" print "\n" except arcpy.ExecuteError: failedData.append(data) print str(data) +' failed' print arcpy.GetMessages(2) print "\n" continue print 'list of data sets that successfully enabled versioning...' for item in sucdata: print item print "\n" print 'List of Data Sets which failed to register as Versioned' for item in failedData: print item
... View more
04-09-2018
08:05 AM
|
0
|
0
|
3508
|
|
POST
|
import arceditor # # Import arcpy module import os import arcpy from arcpy import env inSDE = "\\\\server\\ArcSDE Connection Files\\GENgis_GISDB.sde" env.workspace = inSDE # # Get List of Rasters in workspace fcList = arcpy.ListFeatureClasses() for fc in fcList: # desc = arcpy.Describe(fc) if desc.dataType == "FeatureClass": # Process: Register As Versioned arcpy.AddMessage("Trying: " + fc) # outFC = os.path.join(inSDE, fc) arcpy.RegisterAsVersioned_management(outFC, "NO_EDITS_TO_BASE") arcpy.AddMessage(fc + " Registered as Versioned") # # Process: Change Privileges arcpy.ChangePrivileges_management(outFC, "public", "GRANT", "") arcpy.AddMessage(fc + " Granted Public permissions") # # Process: Add Global IDs arcpy.AddGlobalIDs_management(outFC) arcpy.AddMessage(fc + " now has Global IDs") # else: arcpy.AddMessage("Skip table: " + fc)
... View more
04-09-2018
08:02 AM
|
0
|
0
|
3508
|
|
BLOG
|
awsome!!!! No plans on enhancing the reporting functionality? Export all, customize the report templates (if blank dont show) etc..?
... View more
04-06-2018
10:22 AM
|
0
|
0
|
3261
|
|
POST
|
I have an old backup of a database, I wanted to restore but I cant use the same name because there is already a database in the instance with that name... I renamed it but not being able to connect to it.
... View more
04-06-2018
10:11 AM
|
0
|
1
|
3867
|
|
POST
|
I have ArcGIS Server 10.5.1 installed on a machine1, I want to migrate this installation to machine2 and then remove the original install on machine1. what is the recommended procedure to accomplish this? All Services are hosted on a shared network drive not on the local server machine.
... View more
04-06-2018
06:07 AM
|
1
|
16
|
4187
|
|
BLOG
|
are you aware if there is a plan to implement this functionality in the future?
... View more
04-03-2018
11:04 AM
|
0
|
0
|
10574
|
|
BLOG
|
thats an interesting idea to use Arcade expressions to generate a survey123 response... can you give an example of the workflow and application use? and you can confirm this works in a desktop browser just not in the collector app itself on a mobile device?
... View more
04-02-2018
01:30 PM
|
0
|
0
|
10574
|
|
POST
|
Thank you for the detailed reply! What I meant for Op. Dashboard was Arcade Expressions were not supported in the widgets I hope the ability to scan(read) an entire layer or multiple layers to preform calculations can be implemented in the future, this would greatly extend AGOL possibilities.
... View more
03-30-2018
12:42 PM
|
2
|
3
|
9241
|
|
POST
|
I find that PRO is more sluggish and buggy than ArcMap personally.... maybe just my machine set up
... View more
03-30-2018
07:13 AM
|
0
|
7
|
2821
|
|
POST
|
Here is my case: I have a series of point features in the same feature class. Each point has a attribute "cost" and "status". I would like to sum the total cost by the following: if $feature.status == 1 then : $feature.cost * .20 if $feature.status == 2 then: $feature.cost * .30 if $feature.status == 3 then: $feature.cost * .40 return sum of all features form the expression above ( I would be displaying this in Op. Dashboard) which I dont think yet supports arcade expressions, in a widget... I.E a widget that would update the total cost $ based on features being assigned a status)
... View more
03-30-2018
07:08 AM
|
0
|
6
|
9241
|
|
BLOG
|
this is great!!!! Surprised ESRI is pushing workflows to 3rd parties though...
... View more
03-28-2018
11:56 AM
|
1
|
0
|
15556
|
|
POST
|
posting here to get notifications of replies, I am interested in this also
... View more
03-22-2018
09:47 AM
|
1
|
0
|
9240
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-13-2018 10:15 AM | |
| 1 | 12-21-2017 06:41 AM | |
| 1 | 02-12-2018 01:36 PM | |
| 1 | 08-29-2017 06:30 AM | |
| 1 | 02-13-2018 10:13 AM |