用Python作GIS之三:入口程序 - stargui.py
"""
gui start file for Space-Time Analysis of Regional Systems
#STARS的图形用户界面入口(高级用户可以直接使用命令行方式进行操作)
----------------------------------------------------------------------
AUTHOR(S): Serge Rey
Mark V. Janikas
Boris Dev
----------------------------------------------------------------------
Copyright (c) 2000-2006 Sergio J. Rey
======================================================================
This source code is licensed under the GNU General Public License,
Version 2. See the file COPYING for more details.
======================================================================
OVERVIEW:
top module for stars gui. all modules should be imported into this module.
methods can be attached to menu callbacks.
#顶层程序,运行该文件时需要保证与其它调用文件在统一目录下
"""
import sys, os, string
from Tkinter import * # widget classes
from guimixin import * # mix-in methods
from guimaker import * # frame, plus menu/toolbar builder
from Numeric import *
import pickle
import os.path
import version
import time
VERSION = version.VERSION
VERSIONDATE = version.DATE
#以上为系统自带的包
from stars import *
import Esda
import Markov
import Inequality
import Mobility
import Data
import Markov
import eda
from Table import Table as RTable
from History import *
from SDialog import *
from pdf import *
import help
import DataViewer as DV
from kmean import Kmeans
import sdialogue as sd
import Utility
import STARSsmoothing as smooth
#以上为stars目录下的包
STARSHOME=options.getSTARSHOME()
PLATFORM=options.getPLATFORM()
ssTop = Tk()
ssTop.title("Welcome to STARS!")
ss=SplashScreen(master=ssTop)
#启动欢迎界面
# view modules
from gView import *
class SProject(Project):
...
class SBroadcast:
...
class SMap(Map,SBroadcast):
...
class STable(Table,SBroadcast):
...
class SMoranScatter(MoranScatter,SBroadcast):
...
class SDensity(Density,SBroadcast):
...
class SCDF(CDF,SBroadcast):
...
class SHistogram(Histogram,SBroadcast):
...
class STimeSeries(TimeSeries,SBroadcast):
...
class SBoxPlot(BoxPlot,SBroadcast):
...
class SpaceTimeButtonMatrix(View):
...
class STimePath(TimePath):
...
class SPCP(PCP):
...
class App(GuiMixin, GuiMaker): # or GuiMakerFrameMenu
"""application level class"""
#其中包含菜单定义与操作
...
if __name__ == '__main__':
import Tkinter
import sys
main = App()
main.disableMenus()
if len(sys.argv) == 1:
main.mainloop()
sys.exit()
else:
# below here are wrapper functions for shell
def openProject():
main.openProject()
def example():
main.example()
def catalogue():
print main.project.catalogue()
def matrixNames():
print main.getMatrixNames()
def openProject():
main.openProject()
def getVariable(name):
return main.project.getVariable(name)
def map(variable,t=[0]):
t=t[0]
title = "%s %s"%(variable.name,variable.timeString[t])
coords = main.project.coords
poly2cs = main.project.poly2cs
cs2poly = main.project.cs2poly
main.drawMap(title,coords,variable[:,t],variable.name,t,
poly2cs,cs2poly)
def boxPlot(variable,timePeriod = [0]):
t = timePeriod[0]
x = variable[:,t]
SBoxPlot(variable.name,main.project,main.master,
x= x,
csids = range(len(x)),
tsids = [t],
allX = variable)
def density(variable,timePeriod = [0]):
t=timePeriod[0]
yAll = variable
tsids = [t] * yAll.t
SDensity("Density",main.master,
main.project,y.name,y[:,t],csid=range(len(y)),
tsid = tsids,
title = "dtitle",xLabel=yAll.name,
xmin = None,
xmax = None)
def quit():
main.master.destroy()
sys.exit(0)
def disableMenus():
main.disableMenus()
用Python作GIS之三:入口程序 - stargui.py的更多相关文章
- 用Python作GIS之五:从示例入手—example函数
进入STARS后,最简单的学习方法就是演示示例数据.对于源码的分析也可以从这里入手. 以下为出发菜单项“Example Project”的函数example:def example(se ...
- 用Python作GIS之二:STARS开发环境配置
STARS的一般使用可以通过REGAL网页快速学习http://regionalanalysislab.org/?n=STARS再次不做详细介绍这里关注的主题是对STARS源代码分析即为使用Pytho ...
- 用Python作GIS之一:介入STARS
STARS的全称是Space-Time Analysis of Regional Systems,直译过来就是区域系统时空分析软件.这是针对区域多时相数据的分析包,源代码公开.该软件将最近几年发展起来 ...
- 用Python作GIS之四:Tkinter基本界面的搭建
Python下的主窗口可以定义如下:def start(self): #self.project = Project("temp") #self.pro ...
- python小练习之三---购物车程序
购物车购物的例子 严格来讲,这个例子相对大一些 功能也稍完备一些,具有用户登录,商品上架,用户购物,放入购物车,展示每个用户的购物车里的商品的数量,用户账户余额,支持用户账户充值等 下面展示的代码有些 ...
- 【python学习】新手基础程序练习(二)
Ι 继续上一节得内容,这里主要是对各种知识的理解以及如何运用. 一.执行 Python 脚本的两种方式 1.把python执行文件加到计算机的环境变量中,然后新建文件把程序写在新文件里,再通过cmd命 ...
- MVC入口程序 | 简单调用及实例化
入口程序: 现在大多采用单一入口机制,单一入口就是指在一个web应用程序中,所有的请求都指向一个脚本文件.通俗点说就是一幢大楼只有一个大门入口可以进去... 目录: 建立一个控制器/模型/视图调用函数 ...
- PHPCMS V9 框架代码分析(入口程序)
PHPCMS是采用MVC设计模式开发,基于模块和操作的方式进行访问,采用单一入口模式进行项目部署和访问,无论访问任何一个模块或者功能,只有一个统一的入口. 入口程序是在前期处理用户请求的引导程序.它是 ...
- Python打包项目为EXE程序
安装pyinstaller 如果使用了VirtualENV环境,则必须在要打包的项目环境中安装... 否则会找不到项目需求的包和模块 pip install -i https://pypi.douba ...
随机推荐
- iOS 导航栏颜色字体等的自定义
1.设置导航栏中间文字的文字颜色和文字大小 方法一:系统方法 self.title = @"下载微课";//在有navigationController的控制器中,作用与self. ...
- 《MFC游戏开发》笔记十 游戏中的碰撞检测进阶:地图类型&障碍物判定
本系列文章由七十一雾央编写,转载请注明出处. http://blog.csdn.net/u011371356/article/details/9394465 作者:七十一雾央 新浪微博:http:// ...
- Oracle 经典语法(三)
1. 让SELECT TO_CHAR(sal,'L99,999.99') FROM emp WHERE ROWNUM < 5 输出结果的货币单位是¥和$.SELECT TO_CHAR(sal, ...
- Java Script基础(二) 基本语法
一.变量的声明和使用 JavaScript是一种弱类型的语言,没有明确的数据类型,在声明变量时,不需要指定变量的类型,变量的类型由赋给变量的值决定. 变量声明的语法: var 变量名; 示例: var ...
- Oracle安装步骤及PL/SQL Developer连接数据库
一:Oracle安装步骤及PL/SQL Developer连接数据库 win7 64位 11g 点击(操作步骤):http://www.cnblogs.com/haoke/articles/27343 ...
- LearnMVC5-AddController
原创文章,转载必需注明出处:http://www.ncloud.hk/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/learnmvc5-addcontroller/ 本人是 ...
- javascript跨域请求RESTful Web Service
跨域请求RESTful Web Service 当我们用js请求RESTful Web Service的时候,通常会出现跨域无法访问的问题,也就是无法正常得到我们要的值.jsonp是个解决问题的方法. ...
- Oracle数据库作业-4 查询
9. 查询"95031"班的学生人数.
- PHP中变量,常量,超级全局变量小结
//一般来说,变量在函数无法在函数体中无法访问,但是常量可以.//超级全局变量确实可以的,地址栏上的参数/*$GLOBALS //变量注册的信息$_GET //地址栏参数$_POST ...
- 不容错过的七个jQuery图片滑块插件
1.jQuery多图并列焦点图插件 今天我们要来分享一款比较特别的jQuery焦点图插件,它允许你自己定义当前画面的图片数量,在这个演示中,我们定义了3张图片一起显示.和其他jQuery焦点图一样,这 ...