-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerateFile.py
92 lines (73 loc) · 2.6 KB
/
generateFile.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import sys,os
import datetime
import random
if ((len(sys.argv) < 3)):
print """\
This script create binary image files inside the folder to the format accepted by DMS App
Usage: python generateFileDMS.py latitude longitude noOfFiles x_range y_range SOURCE time_range
(Files will be created inside sync directory)
1. Filename will be randomly spread in the area near latitude and longitude and size will be in between x_range and y_range
2. Give SOURCE the same as given in DMS app
3. time_range : Time difference from the current time
4. dirName : Directory at which you want to rename the files
5. x_range : Minimum Size of File
6. y_range : Maximum Size of File
"""
sys.exit(1)
lat = float(sys.argv[1])
lon = float(sys.argv[2])
noOfFiles = int(sys.argv[3])
x_range = float(sys.argv[4])
y_range = float(sys.argv[5])
TTL = 50
SOURCE = sys.argv[6]
time_range = int(sys.argv[7])
type_list = ["Victim","Shelter","Food","Health"]
def genFile(fileName, size):
with open('sync/' + fileName, 'wb') as fout:
fout.write(os.urandom(size * 1024 * 1024))
def getLatLong():
val = random.randint(0,100)
if val < 20:
ddd = 2000
else:
ddd = 1500
v = random.randint(0,3)
if v == 0:
la = float(lat - float(random.randint(0,ddd))/1000000.0)
lo = float(lon + float(random.randint(0,ddd))/1000000.0)
elif v==1:
la = float(lat + float(random.randint(0,ddd))/1000000.0)
lo = float(lon - float(random.randint(0,ddd))/1000000.0)
elif v==2:
la = float(lat + float(random.randint(0,ddd))/1000000.0)
lo = float(lon + float(random.randint(0,ddd))/1000000.0)
elif v==3:
la = float(lat - float(random.randint(0,ddd))/1000000.0)
lo = float(lon - float(random.randint(0,ddd))/1000000.0)
la = "%2.6f"% (la,)
lo = "%2.6f"% (lo,)
print str(la) + ',' + str(lo)
return (la,lo)
def random_date(start, end):
"""
This function will return a random datetime between two datetime
objects.
"""
delta = end - start
int_delta = (delta.days * 24 * 60 * 60) + delta.seconds
random_second = random.randrange(int_delta)
return start + datetime.timedelta(seconds=random_second)
def getTime():
d2 = datetime.datetime.now()
d1 = d2 - datetime.timedelta(hours=time_range)
return random_date(d1, d2).strftime('%Y%m%d%H%M%S')
for i in range(noOfFiles):
time_str = datetime.datetime.now()
dt_aware = time_str.strftime('%Y%m%d%H%M%S')
#print dt_aware
la,lo = getLatLong()
time_r = getTime()
fileName = "IMG_" + str(TTL) + "_" + random.choice(type_list) + "_" + str(SOURCE) + "_defaultMcs_" + str(la) + "_" + str(lo) + "_" + time_r + "_1.jpg"
size = random.randint(x_range,y_range)
genFile(fileName,size)