|
POST
|
Did they all use the same cell size and analysis extent?
... View more
03-02-2012
07:52 AM
|
0
|
0
|
1293
|
|
POST
|
within the help file code there is one salient line from arcpy.sa import * was that included in your failed script? Otherwise you may have to checkoutExtension if you aren't using an ArcInfo license
... View more
03-01-2012
11:25 AM
|
0
|
0
|
2856
|
|
POST
|
Is the mosaic projected so that the x, y and z values have the same units? If not, mosaic, project the dem, then hillshade. You may have to exaggerate the z factor if the elevation difference isn't very much relative to the x/y extent
... View more
02-24-2012
07:24 AM
|
0
|
0
|
4867
|
|
POST
|
The dissolve is working in the x/y direction and not what you want which is individual x/y/z's
... View more
02-23-2012
10:05 AM
|
0
|
0
|
3926
|
|
POST
|
this line will fail env.workspace = "C:\Backup Files\Backup Files\GISPROJECTS\Python_Practice" either use double backslashes, a single foreslash or append an r to the beginning of the path
... View more
02-23-2012
09:09 AM
|
0
|
0
|
1508
|
|
POST
|
enclose your code in the Code block symbol in the html editor (ie #) This line will fail env.workspace = "D:\pomme de terre 2\pomme de terre2.gdb" since you have to use raw notation env.workspace = r"D:\pomme de terre 2\pomme de terre2.gdb" or double backslashes or single foreslashes in python ie env.workspace = "D:\\pomme de terre 2\\pomme de terre2.gdb" may the spud be with you
... View more
02-23-2012
04:44 AM
|
0
|
0
|
912
|
|
POST
|
Jason, did you try a simple try except block try:
import arcpy as gp
gp_version = 10.0
except:
import arcgisscripting as gp
gp_version = 9.3 then you can do if gp_version == 10.0:
#do the arcpy stuff
else:
#do the arcgiscripting stuff
... View more
02-22-2012
08:22 AM
|
0
|
0
|
1218
|
|
POST
|
do a web search on floating point representation . There is nothing you can do about it
... View more
02-22-2012
07:49 AM
|
0
|
0
|
833
|
|
POST
|
Did you explicitly set the cell size and extent within the Environments tab while creating the ASCII file?
... View more
02-15-2012
09:10 AM
|
0
|
0
|
703
|
|
POST
|
The table doesn't get refreshed. Run scripts etc, then open the table, don't expect updates unless you are using the field calculator directly.
... View more
02-14-2012
09:24 AM
|
0
|
0
|
2508
|
|
POST
|
have you tried to use the "for row in rows:" syntax as shown in the online help for updaterow? http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000001q000000
... View more
02-14-2012
07:54 AM
|
0
|
0
|
2508
|
|
POST
|
I suspect that you didn't specify that the properties for that parameter are "obtained from" your input feature class. Check your parameter properties.
... View more
02-13-2012
02:48 AM
|
0
|
0
|
6559
|
|
POST
|
Have you examined the online help on editing tasks and procedures? http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001v00000002000000.htm
... View more
02-12-2012
04:47 AM
|
0
|
0
|
552
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-03-2017 11:39 AM | |
| 1 | 08-05-2019 05:21 PM | |
| 1 | 09-02-2016 08:05 AM | |
| 1 | 01-15-2018 01:10 PM | |
| 1 | 09-17-2018 12:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|