POST
|
In this case, the two differences only point to the Schema owner in the database. If the base name " GDM_CO_AREA_83” has not changed, you could control for the schema owner name change.
... View more
07-17-2014
02:00 PM
|
0
|
1
|
14
|
POST
|
Hi Jennifer, We can handle the issue of not having the same number of layers. The layer names may be a little harder to automate, but may be doable. How have the new names changed and do you have a list of which ones line up?
... View more
07-17-2014
01:50 PM
|
0
|
3
|
14
|
POST
|
This should be some that is doable for your work. One tool that will be helpful in scripting is the Feature Compare tool which will compare a number of variables. Using this tool we should be able to script this for all of your layers. This could also be done through ModelBuilder. Feature Compare: ArcGIS Help (10.2, 10.2.1, and 10.2.2) This is a sample workflow logic that could be used to script this process: import arcpy, os #Create DB Connections to both databases gdb91 = r"DB Connection" gdb101 = r"DB Connection" #Create a list to store the feature classes from both databases list91 = [] list101 = [] #List the feature classes arcpy.env.workspace=gdb91 fcList = arcpy.ListFeatureClasses() for fc in fcList: list91.append(fc) arcpy.env.workspace=gdb101 fcList = arcpy.ListFeatureClasses() for fc in fcList: list101.append(fc) #Compare the feature name and them compare the feature classes themselves for fc91 in list91: try: idx = list101.index(fc91) fc101 = list101[idx] path91 = os.path.join(gdb91,fc91) path101 = os.path.join(gdb101,fc101) arcpy.FeatureCompare_management(path91, path101, out_compare_file=r"C:\CompareFile\{0}.txt".format(fc91)) except: print "Cannot compare layer {0}".format(fc91)
... View more
07-17-2014
01:29 PM
|
1
|
5
|
14
|
POST
|
Can you provide some more information regarding this issue: What is the error (if any) you receive when running the GP tool? Do any locks exist on the data? Are you currently logged in as the data owner? Have you tried rebuilding the indexes from Oracle?
CREATE INDEX cola_spatial_idx
ON cola_markets(shape)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
... View more
07-14-2014
07:35 AM
|
1
|
0
|
22
|
POST
|
This is something that is doable with your rasters. The best way to accomplish is to load the rasters into aRaster Catalog or Mosaic Dataset within a file geodatabase. In a Raster Catalog, you have an attribute table that can be used to store year information for each raster within the catalog. This attribute can then be used to create the time series maps. Sample Workflow for Raster Catalog: 1. Rename your raster datasets with a year suffix (i.e. "Rainfall_2014.tif") 2. Load those rasters into a Raster Catalog 3. Add a field called to the Raster Catalog to represent your time field 4. Start an edit session in ArcMap to edit the time field to match your Rasters 5. Save your edits 6. Create a map using the Time Slider or Definition Query to query your rasters
... View more
07-11-2014
07:04 AM
|
0
|
0
|
33
|
POST
|
Hi Joe, The staging geodatabase can be a file geodatabase and migrated using XML import or Copy/Paste through ArcGIS for Desktop. During the migration process you will be able to choose which configuration keyword that you would like to use (i.e. Geometry, Geography, Binary, etc). ArcGIS will handle all the conversions for you.
... View more
07-09-2014
12:06 PM
|
0
|
1
|
14
|
POST
|
If I am not mistaken, Neil Ericksonis looking for a way to set a custom full extent in his data frame (for use in the Full Extent button). This is a property held by the data frame that doesn't change as you pan and zoom. This setting cannot be modified in Python. It is only able to be set through the GUI or ArcObjects. IActiveView.FullExtent Property: ArcObjects 10 .NET SDK Help
... View more
07-09-2014
10:41 AM
|
2
|
6
|
66
|
POST
|
Glad that I could help. I just submitted a ticket for that document to be reviewed.
... View more
07-09-2014
09:12 AM
|
0
|
0
|
6
|
POST
|
In this case, I believe that it has a problem with the parentheses. In this case, SQL Server is expecting an expression or subquery where the field names are. I was able to successfully run this query by first removing the parentheses. Can you try removing the parentheses and running it again? CREATE VIEW spvw_TEST AS SELECT vw . FieldID , vw . Field1 , vw . Field2 , fc . Shape FROM vw_AllMain vw JOIN FeatsDistrib fc ON vw . txtFeatID = fc . txtFeatID
... View more
07-09-2014
06:58 AM
|
1
|
2
|
6
|
POST
|
Since you already have the bookmarks set up, you can use the Mapping module to complete this. In this module, you would have access to a list of the bookmarks. Each bookmark object would have an extent which can then be applied to the data frame and the map document could be exported. Sample workflow: import arcpy
mxd = arcpy.mapping.MapDocument("CURRENT")
for bkmk in arcpy.mapping.ListBookmarks(mxd):
ext = bkmk.extent
df = arcpy.mapping.ListDataFrames(mxd)[0]
df.extent = ext
arcpy.mapping.ExportToPDF(mxd, r"C:\Temp\{0}".format(bkmk.name))
ListBookmarks: ArcGIS Help 10.1 MapDocument: ArcGIS Help 10.1
... View more
07-08-2014
10:23 AM
|
2
|
0
|
59
|
Online Status |
Offline
|
Date Last Visited |
2 weeks ago
|