Lecture 3
surface models
1. The two main methods of creating surface models are interpolation and triangulation
interpolation: we use it to help developing 3D surfaces, which is a digital representation of features, either real or hypothetical(假定的), in three-dimensional space.
Otherwise, extrapolation is to predict the value of an attribute at sites outside the area covered by existing observations
2. people need 3D surfaces to do surface analysis, which implies the analysis of continuous spatial variation. The most common application of surface analysis is digital elevation modelling (DEM).
3. A 3D surface is usually derived or calculated from continuous or noncontinuous surfaces (point, line, polygons) and converted it into a digital 3D surface
4. ArcGIS can create and store four types of surface models: raster, triangulated irregular network (TIN), terrain datasets, and LAS datasets.
TIN
1. TINs 保存输入数据的所有精度(preserve all the precision), 对已知点的值进行建模
2. TINs是一种基于矢量(vector-based)的数字地理数据形式(digital geographic data),将通过对一组顶点(vertices)进行三角测量(triangulating)来构建。顶点与一系列边相连,形成三角形网络
3. A TIN expects units to be in meters, not decimal degrees.
4. Method of interpolation to form these triangles: Delaunay triangulation or distance ordering.
5. raster surface models在工作效率、使用范围以及价位上都优于TINs,TINs主要用于较小区域内的高精度建模
Raster
1. Interpolation根据有限数量的采样数据点预测cells in a raster的值,可用于预测任何地点的未知数据,如海拔、降雨量、化学浓度和噪音水平等
Interpolation
1. everything is connected, but that near things are more related than those far apart
2.Need to define or quantify that relationship to interpolate
3.Works under the principle of the continuous field data model
4. Need a high density of data for it to be reliable( 需要高密度数据以确保可靠性 )
5. Need to use an interpolator that can represent the process you are modelling
Interpolation methods
1. Global interpolators( Prediction for the whole area of interest ): Trend surface analysis+Regression( 回归 )
2. Local interpolators( Operate within a small zone around the point being interpolated ):Nearest neighbours: Tiessen polygons,Delaunay triangulation( 三角测量 )+IDW(Inverse Distance interpolation)+Splines
3. Geostatistical: Kriging
#IDW assumes that unknown value is influenced more by nearby than far away points, but we can control how rapid that decayis, however there is no method of testing for the quality of predictions
Lecture 3的更多相关文章
- [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 ...
随机推荐
- HDU-3639-Hawk-and-Chicken(强连通,缩点,DFS)
链接:https://vjudge.net/problem/HDU-3639 题意: 有n个小朋友在一个班级中,现在要选择班长.收集了小朋友们的意见,一条意见表示为A认为B合适.这个是具备传递性的,A ...
- Codeforces 1175F(哈希后暴力)
要点 官解使用的哈希,给每个数一个二维键值,这样每个排列就有唯一的键值,再预求一下所给数列的前缀键值,暴力寻找有多少个答案即可. #include <cstdio> #include &l ...
- HTML标签的三种类型
HTML标签的类型分为三种:行内元素,行内块元素,块级元素 而标签的属性是可以转换的 display:inline: 转换为行内元素 display:linline-block 转换为行内块元素 di ...
- 破解百度翻译页面api参数加密
我们的目标 https://fanyi.baidu.com/ 找到获取翻译的请求 是这个 https://fanyi.baidu.com/v2transapi 查看一下post提交的表单,是 ...
- es6新语法:let、const
关于浏览器的兼容情况,可以访问can i use进行查询. 目前的主要方式还是通过使用Babel编译来解决兼容性问题. 我们目前使用Babel将ES6的代码兼容到了IE8,但这是在放弃某些新特性的条件 ...
- UITableView 的一些奇淫技巧1
http://www.strongx.cn/ 感谢这位老兄 UITableView是工程开发中最经常使用到的UI控件,但是你真的了解它嘛,这里记录几点有用的但你可能并不知道的. 当我们的数据未能显示 ...
- JsonModel&AFNetWorking
// HttpManager.h // JsonModel&AFNetWorking // // Created by qianfeng on 15/7/21. // Copyright (c ...
- EF批量插入数据耗时对比
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...
- Redis sorted set(有序集合)
Redis 有序集合是string类型元素的集合,元素不允许重复. 有序集合中的每个元素都会关联一个数值型的分数.redis正是通过分数来为集合中的成员进行从小到大的排序. 有序集合的成员是唯一的(不 ...
- 如何在cmd查看文件内容的md5值
在cmd下进入 要查看的文件目录 默认目录是c,切换到其他盘符例如: C:\D: 就会切换到D盘 D:\ 然后输入命令 certutil -hashfile 文件名称.文件类型 MD5 如 cert ...