123456789101112131415161718192021222324252627282930 |
- #!/usr/bin/env python
- # must be executed in the GRASS env
- # test case for Spearfish location
- import os, sys
- import grass
- if not os.environ.has_key("GISBASE"):
- print "You must be in GRASS GIS to run this program."
- sys.exit(1)
- rname = 'elevation.dem'
- mapset = 'PERMANENT'
- grass.G_gisinit('')
- grass.G_find_cell2(rname,'')
- print mapset
- print 'prints 0 if map was found'
- print 'roads:'
- print grass.G_raster_map_type('roads',mapset)
- print 'elevation.dem:'
- print grass.G_raster_map_type(rname,mapset)
|