1 | # --------------------------------------------------------------------------- |
---|
2 | # txt2fc_res.py |
---|
3 | # Created on: Mon Dec 01 2008 11:36:17 AM |
---|
4 | # (generated by ArcGIS/ModelBuilder) |
---|
5 | # --------------------------------------------------------------------------- |
---|
6 | |
---|
7 | # Import system modules |
---|
8 | import sys, string, os, arcgisscripting |
---|
9 | |
---|
10 | # Create the Geoprocessor object |
---|
11 | gp = arcgisscripting.create() |
---|
12 | |
---|
13 | # Load required toolboxes... |
---|
14 | gp.AddToolbox("C:/Program Files/ArcGIS/ArcToolbox/Toolboxes/Conversion Tools.tbx") |
---|
15 | gp.AddToolbox("C:/Program Files/ArcGIS/ArcToolbox/Toolboxes/Data Management Tools.tbx") |
---|
16 | gp.overwriteoutput = 1 |
---|
17 | |
---|
18 | scenario_dir="\\\\nas2\\gemd\\georisk_models\\inundation\\data\\western_australia\\perth_tsunami_scenario\\" |
---|
19 | output_dir = "anuga\\outputs\\" |
---|
20 | |
---|
21 | time_dir1 = '20081031_133353_run_final_0.6_68693_alpha0.1_kvanputt' |
---|
22 | time_dir2 = '20081031_133511_run_final_0_68693_alpha0.1_kvanputt' |
---|
23 | time_dir3 = '20081031_133624_run_final_0_27255_alpha0.1_kvanputt' |
---|
24 | time_dir4 = '20081031_133735_run_final_0.6_27255_alpha0.1_kvanputt' |
---|
25 | time_dir5 = '20081031_133841_run_final_0_27283_alpha0.1_kvanputt' |
---|
26 | time_dir6 = '20081031_133925_run_final_0.6_27283_alpha0.1_kvanputt' |
---|
27 | |
---|
28 | |
---|
29 | time_dirs = [time_dir1, time_dir2, time_dir3, time_dir4, time_dir5, time_dir6] |
---|
30 | |
---|
31 | for time_dir in time_dirs: |
---|
32 | |
---|
33 | # Local variables... |
---|
34 | folder = scenario_dir + output_dir + time_dir + '\\' |
---|
35 | input_dir_name = folder+'perth_res.csv' |
---|
36 | raster_gdb = folder + "raster.gdb" |
---|
37 | layer = 'layer' |
---|
38 | |
---|
39 | |
---|
40 | print 'Process: Make XY Event Layer' |
---|
41 | gp.MakeXYEventLayer_management(input_dir_name, "longitude", "latitude", layer, "GEOGCS['GCS_GDA_1994',DATUM['D_GDA_1994',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];IsHighPrecision") |
---|
42 | |
---|
43 | print 'Process: Feature Class to Feature Class' |
---|
44 | gp.FeatureClassToFeatureClass_conversion(layer, raster_gdb, "perth_res", "", "OBJECTID OBJECTID true true false 4 Long 0 10 ,First,#,perth_res.csv_Features,OBJECTID,-1,-1;LONGITUDE LONGITUDE true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,LONGITUDE,-1,-1;LATITUDE LATITUDE true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,LATITUDE,-1,-1;STRUCT_INUNDATED STRUCT_INUNDATED true true false 4 Long 0 10 ,First,#,perth_res.csv_Features,STRUCT_INUNDATED,-1,-1;STRUCT_DAMAGE_fraction STRUCT_DAMAGE_fraction true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,STRUCT_DAMAGE_fraction,-1,-1;COLLAPSE_CSV_INFO COLLAPSE_CSV_INFO true true false 255 Text 0 0 ,First,#,perth_res.csv_Features,COLLAPSE_CSV_INFO,-1,-1;MAX_DEPTH_m MAX_DEPTH_m true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,MAX_DEPTH_m,-1,-1;STRUCT_COLLAPSED STRUCT_COLLAPSED true true false 255 Text 0 0 ,First,#,perth_res.csv_Features,STRUCT_COLLAPSED,-1,-1;STRUCT_LOSS STRUCT_LOSS true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,STRUCT_LOSS,-1,-1;CONTENTS_DAMAGE_fraction CONTENTS_DAMAGE_fraction true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,CONTENTS_DAMAGE_fraction,-1,-1;CONTENTS_LOSS CONTENTS_LOSS true true false 8 Double 0 0 ,First,#,perth_res.csv_Features,CONTENTS_LOSS,-1,-1", "") |
---|
45 | |
---|