-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadd_DEF_STUDY.py
36 lines (33 loc) · 1.67 KB
/
add_DEF_STUDY.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
##########################
## Designed to work in Arcgis 10.1
## Creates Study Area polygons for all shapefiles within a chosen directory.
## See https://emodnet.ec.europa.eu/sites/emodnet.ec.europa.eu/files/public/Data%20Preparation%20Guide%20for%20Point%20Datasets%20v1_2.pdf for written guidance on the data schema
## Outputs Study Area features into a subfolder named "StudyAreas".
## Names shapefiles correctly.
## Collects GUI from original habitat map name and transfers across.
## Creates "SUM_CONF" field for values to be entered manually.
##
## Warning: The habitat maps contained within the supplied folder MUST be in a MESH DEF for this script to work.
## Created by: Graeme Duncan, JNCC for EMODnet Seabed Habitats 2014.
## Updated by JNCC 2019-12-19: removal of SUM_CONF field (it's been moved to the translated habitat DEF)
## Contact: [email protected]
###########################
import arcpy
from arcpy import env
import os
env.overwriteOutput = True
print "Please ensure that all habitat maps are named correctly and in a EMODnet Seabed Habitats Data Exchange Format"
print ""
root_workspace = raw_input('Paste the full directory path to the folder containing your formatted maps here and press enter: ')
env.workspace = root_workspace
featureList = arcpy.ListFeatureClasses()
for fc in featureList:
print "Creating StudyArea for %s..." % fc
print "Creating DEF fields..."
arcpy.AddField_management(fc, "GUI","TEXT","#","#",8)
arcpy.AddField_management(fc, "UUID", "TEXT","#","#", 36)
arcpy.AddField_management(fc, "AVAILABLE", "TEXT","#","#", 13)
print "_______________________"
print "************"
print "* COMPLETE *"
print "************"