forked from flashlxy/PyMICAPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.py
65 lines (50 loc) · 1.43 KB
/
Main.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
# -*- coding: utf-8 -*-
#
# Author: Liu xianyao
# Email: [email protected]
# Update: 2017-04-11
# Copyright: ©江西省气象台 2017
# Version: 2.0.20170411
import sys
import math
reload(sys)
sys.setdefaultencoding('utf-8')
from itertools import takewhile
import time as ttime
def parseInt(s):
"""
全局函数 字符串转整数
:param s: 字符串
:return: 整数
"""
assert isinstance(s, basestring)
return int(''.join(list(takewhile(lambda x: x.isdigit(), s)))) if s[0].isdigit() else None
def equal(value1, value2):
return math.fabs(value1 - value2) < 10e-5
def main(debug):
"""
主程序
:param debug:
:return:
"""
if debug:
xml = r'config.xml'
else:
if len(sys.argv) < 2:
print(u'参数不够,至少需要一个xml文件名参数')
sys.exit()
xml = sys.argv[1]
# try:
start = ttime.clock()
from Products import Products
products = Products(xml)
if products is not None:
for micapsfile in products.micapsfiles:
micapsfile.file.micapsdata.Draw(products, micapsfile, debug)
# break
print('Micaps data contour and save picture seconds:', ttime.clock() - start)
# except Exception as err:
# print(err)
if __name__ == '__main__':
ISDEBUG = True
main(ISDEBUG)