|
POST
|
Hi Megan, You may be encountering a bug that is now resolved in ArcGIS 10.1: NIM060270 Compressing and Uncompressing a file geodatabase with the Preview Tab open in ArcCatalog corrupts the last feature class previewed As a workaround, try exporting the feature class to a shapefile and see if you are able to preview the shapefile.
... View more
12-12-2012
06:57 AM
|
0
|
0
|
1623
|
|
POST
|
Hi Lila, Spatial Resolution refers to the cell size (the area covered on the ground and represented by a single cell). See here under 'Types of Resolution'. Therefore, if the cell size is 5 x 5 meters, the resolution is 5 meters. You can check the cell size by right-clicking on the raster dataset > Properties > Source tab. If your coordinate system is in a Geographic WGS 84 coordinate system, you will want to project your raster to a projected coordinate system with Meters for the linear unit. You can do this using the Project Raster tool.
... View more
12-11-2012
09:56 AM
|
0
|
0
|
6492
|
|
POST
|
Try copying the MDB to your local disk and see if you receive the same error.
... View more
12-11-2012
09:04 AM
|
0
|
0
|
1320
|
|
POST
|
You won't have to do any additional steps to convert you MDB to a PGD. For example, if I create a MDB in Access I can immediately begin to use this with ArcGIS. I can import/export feature classes, create tables, etc. with the database.
... View more
12-11-2012
08:07 AM
|
0
|
0
|
1320
|
|
POST
|
Hi Randy, Personal Geodatabases are Microsoft Access databases that can store, query, and manage both spatial and nonspatial data. See here. You should have no problem accessing a Microsoft Access MDB using ArcGIS 10.0.
... View more
12-11-2012
07:48 AM
|
0
|
0
|
1320
|
|
POST
|
Hi Paul, You could use python to list the field name, type, and length: import arcpy from arcpy import env env.workspace = r"C:\temp\python\test.gdb" fc = "Airports" for field in arcpy.ListFields(fc): print field.name, field.type, field.length
... View more
12-11-2012
01:29 AM
|
0
|
0
|
1942
|
|
POST
|
Hi Ken, I would ask the user that sent you the geodatabase to create a new geodatabase using the Create File GDB tool. With this tool they can specify a specific version of the geodatabase, i.e. (9.2, 9.3. 10.0, etc). Have them specify 9.3 and then copy/paste the data to this geodatabase.
... View more
12-10-2012
02:30 AM
|
0
|
0
|
476
|
|
POST
|
Hi Mike, It looks like you may have discovered a bug. I was able to reproduce the same behavior using ArcGIS 10.1 SP1 and SQL Server. I would recommend following up with Tech Support to verify this, and to have this bug logged with your customer information attached to it. As for your workaround, I don't see any problems using this. I ran a test and everything appeared to work. I also verified that the delta (A & D) tables update correctly, as well as the SDE_STATES table.
... View more
12-10-2012
02:09 AM
|
0
|
0
|
1642
|
|
POST
|
Hi Stephen, Does the raster contain a colormap? If it does, this is a bug and the raster dataset won't open in 10.0. As a workaround, use the Copy Raster tool to export the raster dataset to the 10.0 geodatabase and check the option 'Colormap to RGB'. This will create a 3 band raster, but all of the colors will be maintained.
... View more
12-07-2012
11:40 AM
|
0
|
0
|
601
|
|
POST
|
Here is an example: mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
df.zoomToSelectedFeatures()
... View more
12-07-2012
11:32 AM
|
0
|
0
|
1756
|
|
POST
|
You could use something like: import arcpy
input = arcpy.GetParameterAsText(0)
cur = arcpy.SearchCursor(input)
for row in cur:
geom = row.Shape
X = geom.centroid.X
Y = geom.centroid.Y
XY = str(X) + ", " + str(Y)
del row, cur
arcpy.AddMessage(XY) Here the X,Y coordinates are stored in a variable XY. For the input parameter, you will want to set the data type as Feature Set.
... View more
12-07-2012
11:23 AM
|
0
|
0
|
6680
|
|
POST
|
If all of these services are accessing data from your SDE Workgroup geodatabases, you are at your maximum connections. Set your 'Maximum number of instance per machine' to 1. You can do this by right-clicking on each service > Service Properties > Pooling. This way an additional database connection is not attempted if a simultaneous request is made on a service.
... View more
12-07-2012
10:16 AM
|
0
|
0
|
2605
|
|
POST
|
Hi Kevin, Set the data type to Feature Layer for the input parameter instead of Feature Class.
... View more
12-07-2012
08:49 AM
|
0
|
0
|
710
|
|
POST
|
What version of ArcGIS are you running? With the original code I sent and you test data, it reported each segment touched another segment successfully. I am currently using ArcGIS 10.1 SP1.
... View more
12-07-2012
04:34 AM
|
0
|
0
|
1748
|
|
POST
|
Hi John, The extent is created from two XY locations from two mouse clicks. If you want the extent, you would click in the lower left corner and the upper right corner for the area of interest. If you just want a single location you would just specify one mouse click and execute the tool.
... View more
12-07-2012
03:35 AM
|
0
|
0
|
6680
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|