Lecture 1
Principles of GIS( UNSW Metternicht )
outline:data input---data management---data manipulation+data analysis---spatial modelling
Definition
1. GIS is a tool to digitally abstract the real world, information is connected to its physical location and organized into layers.
2. a GIS consists at least information database( with attribute ), map information, computer-based link between them.
GIS storement
1. people manage database information by layer or theme

2. a value can be a number or a text
type of data( vector矢量 raster栅格)
1. spatial data (空间数据): has location information, giving the information about where is it, can be mapped, spatial data models begin with conceptualization, how you will represent the real world phenomena or entities( road, river, etc.), which is the objects in a spatial database plus the relationships among them.
2. attribute data: giving the information about what is it.
3. topology(拓扑): what related to this feature
attribute data
1. nominal attributes: provide descriptive information about an object (for example, colors、city names or vegetation type), which can also be images, audios or other kinds of descriptive information.
2. ordinal attributes: imply rank order or scale by their values ( for example, small、medium、large, ranking from 1 to 10 ).
3. interval or ratio attributes: are used for numeric items where both order and difference in magnitudes( 量级 ) are reflected in number( real number in a linear scale, for example: height、weight, etc.)
data model concept
1. vector data model: discrete objects (point,lines)
2. raster data model: continuous phenomena (use grid cells)
vector data model
1. point: to represent the location
2. line: to represent linear features
3. polygon: represents entities which covers an area
raster data model (cells)
rasters are digital aerial photographs, imagery from satellites, digital pictures, or even scanned maps
TIN data model---tesselations (Triangulated Irregular Network)
1. TIN is a data model commonly used to represent terrain (地势) heights, which will be describes as x,y, and z locations.
2. TIN used for digital elevation models (DEM) or digital terrain models (DTM).
vector data
1. can be multipart
2. polygons can have holes
3. holes can contain islands
4. can overlap
vector model
the direction of a line is determined by the order of its vertices (制高点)
polygon exteriors (外观) are stored in an anticlockwise(逆时针) order
顺时针方向为内孔方向(Internal holes)
total area of the polygon areas is the sum of the part areas
raster data
a cell’s coordinate is inferred from its file order, the cell size and corner coordinates (坐标)
nodata means the value is not known or is not relevant
Lecture 1的更多相关文章
- [C2P3] Andrew Ng - Machine Learning
##Advice for Applying Machine Learning Applying machine learning in practice is not always straightf ...
- note of introduction of Algorithms(Lecture 3 - Part1)
Lecture 3(part 1) Divide and conquer 1. the general paradim of algrithm as bellow: 1. divide the pro ...
- codeforces 499B.Lecture 解题报告
题目链接:http://codeforces.com/problemset/problem/499/B 题目意思:给出两种语言下 m 个单词表(word1, word2)的一一对应,以及 profes ...
- Nobel Lecture, December 12, 1929 Thermionic phenomena and the laws which govern them
http://www.nobelprize.org/nobel_prizes/physics/laureates/1928/richardson-lecture.pdf OWEN W. RICHARD ...
- Jordan Lecture Note-1: Introduction
Jordan Lecture Note-1: Introduction 第一部分要整理的是Jordan的讲义,这份讲义是我刚进实验室时我们老师给我的第一个任务,要求我把讲义上的知识扩充出去,然后每周都 ...
- Jordan Lecture Note-3: 梯度投影法
Jordan Lecture Note-3:梯度投影法 在这一节,我们介绍如何用梯度投影法来解如下的优化问题: \begin{align} \mathop{\min}&\quad f(x)\n ...
- Jordan Lecture Note-2: Maximal Margin Classifier
Maximal Margin Classifier Logistic Regression 与 SVM 思路的不同点:logistic regression强调所有点尽可能远离中间的那条分割线,而SV ...
- [CF Round #294 div2] E. A and B and Lecture Rooms 【树上倍增】
题目链接:E. A and B and Lecture Rooms 题目大意 给定一颗节点数10^5的树,有10^5个询问,每次询问树上到xi, yi这两个点距离相等的点有多少个. 题目分析 若 x= ...
- Codeforces Round #287 D.The Maths Lecture
The Maths Lecture 题意:求存在后缀Si mod k =0,的n位数的数目.(n <=1000,k<=100); 用f[i][j]代表 长为i位,模k等于j的数的个数. 可 ...
- Lecture Halls
Lecture Halls (会议安排) 时间限制(普通/Java):1000MS/10000MS 运行内存限制:65536KByte 总提交: 38 测试通过: 2 ...
随机推荐
- Codeforces Round #566 (Div. 2)
Codeforces Round #566 (Div. 2) A Filling Shapes 给定一个 \(3\times n\) 的网格,问使用 这样的占三个格子图形填充满整个网格的方案数 如果 ...
- Linux —— GDB调试程序
调试实现 在可执行文件中加入源代码的信息,比如可执行文件中第几条机器指令对应源代码的第几行,但并不是把整个源文件嵌入到可执行文件中,所以在调试时必须保证gdb能找到源文件. 生成可执行文件命令: g+ ...
- Codeforces 1C(外接圆与正多边形)
要点 各点肯定都在外接圆上,边越多越接近圆面积,所以要最小面积应当取可能的最少边数. 给三角形求外接圆半径公式:\(R=\frac{abc}{4S}\). 三个角度对应的圆心角取gcd即是要求的正多边 ...
- Django - CRM项目(3)
一.CRM项目的业务逻辑与表结构梳理 1.分析业务逻辑 (1) 引流(sem) (2) 网络咨询师(客服):添加客户信息和查看客户,分配销售 (3) 销售:查看私户 添加跟进记录 失败:加入公户 成功 ...
- java课后思考问题(八)
1.请阅读并运行AboutException.java示例,然后通过后面的几页PPT了解Java中实现异常处理的基础知识. (1)import javax.swing.*; class AboutEx ...
- 简单记录下SpringCloud的微服务架构和一些概念
一.微服务的注册与发现——Eureka 和许多分布式设计一样,分布式的应用一般都会有一个服务中心,用于记录各个机器的信息.微服务架构也一样,我们把一个大的应用解耦成这么多个那么多个服务,那么在想要调用 ...
- js基础拖拽效果
function drag(ele) { const config = { mark: 0, x: 0, y: 0, left: ele.offsetLeft, top: ele.offsetTop, ...
- Dev控件工具箱安装
安装目录\Components\Tools,打开命令行 安装DEV工具 $ ToolboxCreator.exe /ini:toolboxcreator.ini 移除DEV工具 $ ToolboxCr ...
- SDOI 2018二轮题解(除Day2T1)
博主诈尸啦 虽然一轮之后就退役了但是二轮还是要去划划水呀~ 然鹅学了不到一个月文化课再回来看OI的东西有一种恍如隔世的感觉,烤前感觉也没啥可复习的,就补一补去年二轮的题吧. 题目思路基本都参考自sha ...
- c/c++的const和static区别
C语言中的const和static用来修饰变量或者函数,用const修饰表示不可改变,用static修饰表示变量或者函数是静态的,作用域控制在函数内. const定义的常量在超出其作用域之后其空间会被 ...