import arcgisscripting
gp = arcgisscripting.create()

gp.workspace = "c:/DEMs"

# Get a list of grids in the workspace.
rasters = gp.ListRasters("", "GRID")

raster = rasters.next()
while raster:
    print raster
    raster = rasters.next()

相关文章:

  • 2021-04-15
  • 2021-11-29
  • 2021-08-13
  • 2021-11-23
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2022-01-21
猜你喜欢
  • 2022-12-23
  • 2021-04-04
  • 2021-07-25
  • 2022-12-23
  • 2021-10-05
  • 2021-04-01
相关资源
相似解决方案