由arcgis的general产生的数据转换成shape文件格式

源代码在线查看: makefile

软件大小: 18 K
上传用户: zhouqiaks
关键词: general arcgis shape 数据
下载地址: 免注册下载 普通下载 VIP

相关代码

				# $Id: Makefile,v 1.5 2000/06/12 13:24:08 jan Exp $								# add -DWITH_STRICMP if you are compiling i.e. with MS VC				# add -DDEBUG if you want lots of debugging infos				CFLAGS=								all: gen2shp								utils.o: utils.c utils.h					$(CC) -c utils.c								gen2shp: gen2shp.c utils.o					$(CC) $(CFLAGS) -o $@ -lshp gen2shp.c utils.o								test: gen2shp					rm -f pnttest.dbf pnttest.shp pnttest.shx					./gen2shp pnttest points < pnttest.gen					rm -f arctest.dbf arctest.shp arctest.shx					./gen2shp arctest lines < arctest.gen					rm -f plytest.dbf plytest.shp plytest.shx					./gen2shp plytest polygons < plytest.gen								clean:					rm -f gen2shp *.o					rm -f pnttest.dbf pnttest.shp pnttest.shx					rm -f arctest.dbf arctest.shp arctest.shx					rm -f plytest.dbf plytest.shp plytest.shx							

相关资源