Skip to content

Instantly share code, notes, and snippets.

View JobsDong's full-sized avatar

JobsDong JobsDong

  • Alibaba
  • HangZhou, China
View GitHub Profile
#!/usr/bin/python
#-*- coding=utf-8 -*-
"""用于描述一些具体的方法
"""
__author__ = ['"wuyadong" <[email protected]>']
import warnings
import functools
@JobsDong
JobsDong / gistools.py
Created January 8, 2014 07:58
Mercator to BD09, BD09 to GCJ03
#!/usr/bin/python
#-*- coding=utf-8 -*-
"""用于和地理信息有关的数据处理
"""
__author__ = ['"wuyadong" <[email protected]>']
import math
@JobsDong
JobsDong / sub.py
Last active May 4, 2018 07:55 — forked from FZambia/sub.py
使用tornado将命令行操作包装成异步
#!/usr/bin/python2.7
#-*- coding=utf-8 -*-
import shlex
import subprocess
from tornado.gen import coroutine, Task, Return
from tornado.process import Subprocess
from tornado.ioloop import IOLoop
@coroutine