-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrayLength.py
More file actions
63 lines (51 loc) · 5.1 KB
/
arrayLength.py
File metadata and controls
63 lines (51 loc) · 5.1 KB
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
relevantSpecs = [ # Physical Design
'screen size', 'contrast ratio', 'display type', 'is dustproof and water-resistant', 'atm rating', 'ingress protection (ip) rating',
'has branded damage-resistant glass', 'gorilla glass version', 'pixel density', 'sweat resistance', 'watch band is replaceable',
'has a display', 'resolution', 'always-on display', 'thickness', 'has a touch screen', 'waterproof depth rating', 'weight',
'height', 'width', 'maximum operating temperature', 'lowest potential operating temperature', 'has sapphire glass display',
'volume', 'maximum altitude', 'width of band',
# Onboard sensors
'monitors blood oxygenation levels', 'has a heart rate monitor', 'has gps',
'has an accelerometer', 'has a temperature sensor', 'has a compass', 'has a barometer', 'has a gyroscope', 'has a cadence sensor',
'monitors perspiration', 'measures resting heart rate',
# Tracking
'tracks your sleep', 'tracks distance', 'tracks steps taken', 'measures pace', 'provides sleep reports',
'detects activities automatically', 'has a route tracker', 'tracks elevation', 'has multi-sport mode', 'has exercise tagging',
'has a stroke counter for swimming', 'tracks calorie intake', 'designed for diving', 'designed for golf', 'has hrv tracking',
'measures vo2 max', 'measures resting heart rate', "counts how many calories you've burned", 'has temperature tracking',
'number of exercises', 'predicts ovulation', 'predicts start date', 'tracks water intake', 'has weight tracking', 'has live tracking',
'tracks bmi',
# Connectivity
'is compatible with ios', 'is compatible with mac os x',
'is compatible with android', 'is compatible with windows', 'available on pc', 'bluetooth version', 'supports wi-fi', 'wi-fi version',
'supports ant+', 'sim cards', 'has nfc', 'has a cellular module', 'supports galileo', 'compatible with smart scales',
'compatible with external heart rate monitors',
# Battery
'battery life', 'battery power', 'battery life in training mode', 'charge time',
'battery life in power save mode', 'battery life with gps on', 'has wireless charging', 'has a rechargeable battery',
'has a solar power battery', 'has a removable battery',
# Features
'has fast/slow heart rate notifications', 'shows readiness level', 'can be used to answer calls', 'locates your phone', 'has call control',
'has notifications', 'has irregular heart rate warnings', 'has ecg technology', 'has silent alarm', 'has vibrating alerts',
'has fall detection', 'has a stopwatch', 'has smart alarm', 'has voice commands', 'has a built-in camera remote control function',
'has inactivity alerts', 'has goal setting', 'has achievements', 'free app', 'has exercise diary', 'ad-free', 'has coaching',
'has period notifications', 'supports routes', 'syncs with existing calendars', 'has voice feedback', 'has music playback', 'exports to email',
'displays fertile window notifications', 'has food diary', 'includes maps', 'doesn’t require account', 'suggests recipes',
'has video tutorials', 'supports widgets', 'can be personalised', 'has barcode scanner on app', 'has a battery level indicator', 'has passcode',
'can upload maps', 'has trackback mode', 'has auto pause', 'has a dedicated bike mount', 'waypoints', 'has an ambient light sensor'
# Hardware specifications
'ram', 'internal storage', 'cpu speed',
'acquires gps faster', 'warranty period', 'semiconductor size', 'gpu clock speed',
'directx version', 'maximum amount of external memory supported', 'megapixels (front camera)', 'number of microphones', 'opencl version',
'megapixels (main camera)', 'openvg version', 'floating-point performance', 'has a front camera', 'provides activity reports',
'has an external memory slot', 'has a socket for a 3.5 mm audio jack', 'has aptx', 'supports wi-fi 4 (802.11n)',
'supports wi-fi 5 (802.11ac)', 'supports wi-fi 6 (802.11ax)', 'maximum bluetooth range', 'refresh rate',
# Weather and climate
'provides the sunrise/sunset time', 'has a wind speed sensor', 'informs about the risk of thunderstorms',
]
#160
#
droneInfo = ['--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--',
'--', '--', '--', '--', '--', '--', '--', '--', '--', '--', '--','--', '--', '--', '--', '--', '--', '--', '--', '--']
print(len(relevantSpecs))
print(len(droneInfo))