
Python
IvanLJF
从事SAR相关算法研究。负责PIE-SAR产品的开发,以及宏图女娲星座地面处理系统的建设。
展开
-
Anaconda安装GDAL
1、双击Anaconda3-4.4.0-Windows-x86_64.exe安装,安装目录D:\ProgramData\Anaconda32、pycharm选择该Python解释器。File–>Settings–>Project–>Project Interpreter–>选择Anaconda3目录下的python.exe3、GDAL安装 下载GDAL的包,进入http://www.原创 2017-08-09 17:16:39 · 20002 阅读 · 4 评论 -
GUI programming with PyGTK
http://python.zirael.org/ch-gtk.html原创 2017-07-24 15:59:22 · 559 阅读 · 0 评论 -
Python包和类的基本用法
转自: http://blog.youkuaiyun.com/liukang325/article/details/46724365参考:http://www.runoob.com/python/python-modules.htmlPython 模块(Module),是一个 Python 文件,以 .py 结尾,包含了 Python 对象定义和Python语句。包是一个分层次的文件目录结构,它定义了一个由模块转载 2017-05-22 10:18:16 · 855 阅读 · 0 评论 -
Ubuntu12.04 安装PyCharm
参考网址:http://www.cnblogs.com/zhcncn/p/4027025.html原创 2017-01-11 10:28:07 · 569 阅读 · 0 评论 -
虚拟机ubuntu14.04上编译安装ISCE
#×××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××##×××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××#一、解压ISCE tar -jxvf isce-2.0原创 2017-01-11 17:19:51 · 2013 阅读 · 0 评论 -
python扩展实现方法--python与c混和编程
参考博客: http://www.cnblogs.com/btchenguang/archive/2012/09/04/2670849.html原创 2017-01-15 12:44:05 · 636 阅读 · 0 评论 -
Python创建及导入模块
#!/usr/bin/env python3def printme(var): print(var)if __name__ == '__main__': printme(5)将上面的代码保存为a.py在终端将工作路径定位到a.py所在目录下,可按以下两种方式执行:1、$python3>>>import a>>>a.printme(5)原创 2017-01-09 17:27:38 · 710 阅读 · 0 评论 -
什么是*args和**kwargs?
先来看个例子:def foo(*args, **kwargs): print ‘args = ‘, args print ‘kwargs = ‘, kwargs print ‘—————————————’if name == ‘main‘: foo(1,2,3,4) foo(a=1,b=2,c=3) foo(1,2,3,4, a=1,b=2转载 2017-01-03 13:20:02 · 688 阅读 · 0 评论