-
Notifications
You must be signed in to change notification settings - Fork 0
/
CAC_new.py
68 lines (41 loc) · 1.39 KB
/
CAC_new.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import arcpy
from datetime import datetime
import sys, string, os
start_time = datetime.now()
outpath = r"C:/Users/artur/Desktop/101MEDIA"
arcpy.env.workspace= outpath
arcpy.env.overwriteOutput = True
arcpy.CheckOutExtension("3D")
# Entre com o diretório e o nome do arquivo texto de saída"
My_txt = "C:/Users/artur/Desktop/101MEDIA/CAVLocal.txt"
# Entre com o diretório e o nome do modelo"
My_surface= "C:/Users/artur/Desktop/101MEDIA/demacude.tif"
direction = "below"
# Cota do Nível de Referência da Batimetria
startingplane = 728.72
# Fator de Escala - Normalmente usado em transformação de unidades
z = 1
# Passo para cálculo da CAV "1 = 1m; 0.1 = 10cm; 0.01 = 1cm"
# y = 0.01
y = 0.1
# Cota do Fundo do Reservatório
q = 723.68
print("please wait...this script is processing...(CAV processing)")
#error handler
try:
if direction == "below":
x=startingplane
while x > q:
arcpy.SurfaceVolume_3d(My_surface, My_txt, direction, x, z)
x = x - y
# if direction == "above":
# x = startingplane
# while x < q:
# arcpy.SurfaceVolume_3d(My_surface, My_txt, direction, x, z)
# x = x + y
except:
arcpy.AddMessage(arcpy.GetMessages(2))
print(arcpy.GetMessages(2))
end_time = datetime.now()
print('FIM, PROCESSAMENTO CONCLUÍDO')
print ('TEMPO DE PROCESSAMENTO: {}'.format(end_time - start_time))