1.前言在GIS中元素一般分为点元素,线元素,面元素以及symbol元素(特殊的点元素)等。与此对应,图层可以分为点图层,线图层,面图层以及标注图层等。从第9章到第10章,我给大家讲解了什么是矢量数据、矢量数据的来源、矢量数据的构造、以及矢量数据中的地理坐标与屏幕坐标之间的转换。在了解了这些概念和算...
分类:
Web程序 时间:
2014-08-23 22:48:51
阅读次数:
312
WangYiActivity.java:public class WangYiActivity extends Activity implements OnClickListener{public void onCreate(Bundle savedInstanceState) {super.onC...
分类:
移动开发 时间:
2014-08-23 18:56:21
阅读次数:
159
上代码:
public class MainActivity extends Activity {
ImageView imgView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout....
分类:
移动开发 时间:
2014-08-23 11:19:50
阅读次数:
240
- (instancetype)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { _scrollView = [[UIScrollView alloc] initWith...
分类:
其他好文 时间:
2014-08-22 17:45:09
阅读次数:
229
Adventure of Super Mario
Time Limit: 2 Seconds Memory Limit: 65536 KB
After rescuing the beautiful princess, Super Mario needs to find a way home -- with the princess of course :-) He's ver...
分类:
其他好文 时间:
2014-08-22 16:27:09
阅读次数:
177
net_device->feature| NETIF_F_NO_CSUM: No need to use L4 checksum, it used for loopback device.| NETIF_F_IP_CSUM: the device can compute L4 checksum in...
分类:
系统相关 时间:
2014-08-22 14:26:59
阅读次数:
260
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#最佳实践"""为了避免前面所有的问题,必须考虑到几下几点:~1:应该避免多重继承,可以一些设计模式来代替它~2:super使用必须一致,在类层次结构中,应该在所有地方都使用super或者...
分类:
编程语言 时间:
2014-08-22 12:47:36
阅读次数:
234
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#当使用多重继承层次结构时,再使用super的时候是非常危险的,主要是因为类的初始化,基类不在__init__中被隐式调用#1滥用super和传统调用#来自jamesknight(http...
分类:
编程语言 时间:
2014-08-21 21:01:54
阅读次数:
257
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#超类01#它是一个内建类型,用于访问属于某个对象超类特性printsuper##如果已习惯于通过直接调用父类将self作为第一参数来访问的特性,可能会出现混乱#经典方法classM(ob...
分类:
编程语言 时间:
2014-08-21 18:57:04
阅读次数:
310
1关于 sklearn.datasets
from sklearn.datasets import load_iris
import numpy as np
data = load_iris()
data 的属性如下:
数据存储在.data项中
每个观察对象的种类存储在数据集的.target属性中
数据的特征的种类存储在数据集的.feature_na...
分类:
编程语言 时间:
2014-08-21 17:17:14
阅读次数:
223