답변:
사용 가능한 무료 GIS 도구가 많이 있습니다. imho best 중 하나는 QuantumGIS : http://www.qgis.org 입니다. win / mac 및 linux에서 사용할 수 있습니다.
그러나 Java로 작성된 도구 인 openjump를 선호 할 수도 있습니다.이 도구는 편집, 토폴로지 검사에 특별한 장점이 있습니다. http://www.openjump.org/
또한 좀 봐 : http://freegis.org/
또한 파이썬에서 일부 스크립팅을 신경 쓰지 않으면 Shapefile 모듈이 있습니다.
작은 예를 들어 .xls의 좌표에서 점 피쳐를 사용하여 .shp를 만듭니다.
import xlrd
import shapefile
Path = "c:/"
f = "Excel_w_coords.xls"
# Open Excel workbook
wb = xlrd.open_workbook(Path + f)
# List all sheets in Excel
list = wb.sheet_names()
for i in list:
sh = wb.sheet_by_name(i)
# Make a point shapefile
w = shapefile.Writer(shapefile.POINT)
w.field("ID")
for rownum in range(sh.nrows):
RowList = sh.row_values(rownum)
ID = RowList[0]
x = RowList[2]
y = RowList[1]
z = RowList[3]
w.point(x,y,z)
w.record(ID)
w.save('C:/' + i)
델 f, 경로, wb,
uDig 도 옵션입니다
shapefile을 빨리 보려면 http://www.mapdoc.co.uk 에서 브라우저에서 shapefile을 빠르게 읽습니다 (파일을 다운로드하거나 파일을 업로드 할 필요 없음). 그래도 최신 브라우저가 필요합니다
EverlyMap은 당신이 좋아할 수있는 Free Shapefile Editor입니다. 모든 일을한다. Windows 데스크톱 앱. 에서 http://www.everlymap.com