-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw1a_week1.py
46 lines (42 loc) · 1.28 KB
/
hw1a_week1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#-------------------------------------------------------------------------------
# Name: module2
# Purpose:
#
# Author: Hoa
#
# Created: 26/06/2014
# Copyright: (c) Hoa 2014
# Licence: <your licence>
#-------------------------------------------------------------------------------
#Import module
import ogr, os, sys, arcpy
# Create wokspace
os.chdir(r'E:\GFD_DATA\Study\PYHTHON\Python with GDAL\Week 1 Reading and writing vector data with OGR\ospy_data1')
# Create file
file = open('hw_wk1.txt', 'w')
# drive shapfile
driver = ogr.GetDriverByName('ESRI Shapefile')
# Open data source
datasource = driver.Open('sites.shp', 0)
if datasource is None:
print 'Could not open file'
sys.exit(1)
#Get data layer
layer = datasource.GetLayer()
#Loops feature in the layer
feature = layer.GetNextFeature()
while feature:
# Get attribute
id = feature.GetFieldAsString('id')
cover = feature.GetFieldAsString('cover')
# Get geometry Coordinates
geometry = feature.GetGeometryRef()
X = str(geometry.GetX())
Y = str(geometry.GetY())
# Wirte information to text file
file.write(id + ' ' + X + ' '+ Y + ' ' + cover + '\n ')
#Destroy the feature and get a now one
feature.Destroy()
feature = layer.GetNextFeature()
datasource.Destroy()
file.close()