Displaying Speed and Direction Symbology from U and V vectors (转)
This blog shows you how to calculate and symbolize wind or current speed and direction when the underlying data is stored as U and V vectors. In order to capture the speed and direction of wind or a water current, anemometers or Doppler current profilers measure the velocity of the wind or water in two perpendicular directions, U and V. U is the velocity toward east and V is the velocity toward north. U is sometimes referred to as the zonal velocity and V the meridional velocity. Using U and V, both the speed and direction of the wind or water current can be calculated.
Storing information about the flow of wind or water as vectors provides flexibility in how we calculate direction. This is important because meteorologists and oceanographers describe the flow of wind differently. Oceanographers prefer to describe wind in terms of the “direction of mass flow” or in other words the direction towards which the wind is blowing. In the oceanographic convention, wind flowing from the south to the north is symbolized by an arrow pointing north. Meteorologists use an arrow or a special symbol called a wind barb to show the direction from which the wind is blowing. The head of the arrow or wind barb points in the direction from which the wind is blowing. In the meteorological convention, a wind blowing from west to east is symbolized by an arrow pointing west. Water currents are almost always symbolized using the oceanographic convention.

Displaying Direction
To correctly display wind or current direction in ArcMap, the U and V components must be converted to a symbol rotation angle. The steps below assume that you have a point feature class with the attribute fields u and v. To calculate the rotation, follow the steps below:
- Right-click the point layer in the table of contents.
- Click Properties and click the Symbology tab.
- Click the Symbol. The Symbol Selector dialog box opens.
- Choose an arrow or wind barb whose head is pointing north.
- Click OK to close the Symbol Selector dialog.
- Click Advanced and choose Rotation from the drop-down list. The Rotation dialog box opens.
- Choose <expression> in the drop-down list.
- Click the Expression Builder button to provide the expression to use for rotating the symbol.
- Specify one of the following expression:
- Oceanographic Convention: (180/3.14) * Atn2([u],[v])
- Meteorological Convention: (180/3.14) * Atn2([u],[v])+180
Note: The formulas above are correct only if U and V are measured relative to a grid where true north consistently points straight up (e.g. no rotation). Otherwise, a convergence angle correction must be applied based on the projection of the data.
- Click OK to close the Expression Builder dialog.
- Click Geographic for the Rotation Style.
- Click OK on all dialog boxes.
This image shows the Symbology tab and Symbol Selector with the steps marked to apply symbol rotation.

This image shows the Expression Builder dialog with the steps marked to apply symbol rotation.

Displaying Speed
Using a similar procedure, U and V components can be used to calculate and display wind or current speed in ArcMap.
- Right-click the point layer in the table of contents.
- Click Properties and click the Symbology tab.
- Click Advanced and choose Size from the drop-down list. The Size dialog box opens.
- Choose <expression> in the drop-down list.
- Click the Expression Builder button to provide the expression to use for the size of the symbols.
- Specify the following for the expression: Sqr([u]**2 + [v]**2)Tip: ArcMap assumes that the size of the symbol returned from the expression is in points (1/72 of an inch). If the wind or current speeds are relatively low in your data, the symbols may be too small and cartographically unpleasing. You can adjust the size of the symbols by including a scaling factor in the formula. For example, Sqr([u]**2 + [v]**2) * 10 will increase the size of the symbols by a factor of 10.
- Click OK to close the Expression Builder dialog.
- Click OK on all dialog boxes.
from : https://blogs.esri.com/esri/arcgis/2013/07/17/displaying-speed-and-direction-symbology-from-u-and-v-vectors/
Displaying Speed and Direction Symbology from U and V vectors (转)的更多相关文章
- Unity Glossary
https://docs.unity3d.com/2018.4/Documentation/Manual/Glossary.html 2D terms 2D Physics terms AI term ...
- 《Note --- Unreal 4 --- PersonaHowToMovement》
https://docs.unrealengine.com/latest/CHN/Gameplay/HowTo/CharacterMovement/index.html 这里的demo是按照一些per ...
- jquery-leonaScroll-1.3-自定义竖向自适应滚动条插件
下载链接地址:https://share.weiyun.com/9ac3ca3fb29648bb1aad1b83a76b123c (密码:4y9t)[含mini版] 欢迎使用leonaScroll-1 ...
- jquery-leonaScroll-1.2-自定义滚动条插件
leonaScroll-1.2.js 下载链接地址:http://share.weiyun.com/bb531dd6b1916c0023c176897182dc15 (密码:iZck)[内含压缩版] ...
- Unity3D 第一人称控制器 C#脚本
CharacterMotor.cs using UnityEngine; using System.Collections; /** * @Author : www.xuanyusong.com */ ...
- 利用Native Client OLEDB 11 高效率地对SQL SERVER 进行查询和插入操作
前言: 鄙司原始用的都是ADO来访问数据库,而我现在着手的项目是从我的GPS历史数据库中,取出历时数据的一个接口,一个DLL.用ADO写完之后,测试下来,平均4000条的数据,需要 180 毫秒左右. ...
- 弄个知乎的粒子动态背景_实践particles.js
好久没登录知乎,发现他们的登录页面粒子动态效果蛮炫的,查一下代码用了Particles.js基于Canvas画布创建粒子颗粒效果. 上图 上图: 感觉有比格,就照着弄了一个,玩玩. githu ...
- HDOJ 4717 The Moving Points
The Moving Points Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others ...
- GLSL语言基础
from http://www.kankanews.com/ICkengine/archives/120870.shtml 变量 GLSL的变量命名方式与C语言类似.变量的名称可以使用字母,数字以及下 ...
随机推荐
- 初识C++ 中的STL
首先,STL是指standard template library,即C++标准模板库,也叫泛型库. STL提供了三种类型的组件:容器,迭代器和算法,他们都支持泛型程序设计标准. (一)容器: 分为: ...
- php redis 命令合集
1.https://www.cnblogs.com/aipiaoborensheng/p/5666005.html 2.https://www.cnblogs.com/doanddo/p/734908 ...
- 阿里云ubuntu 创建svn服务器
1.SubVersion服务安装 sudo apt-get install subversion sudo apt-get install libapache2-svn 2.服务器配置 2.1相关用户 ...
- git问题记录
1.从远程仓库拉取A文件,在本地删掉了这个A文件,然后再去拉取远程仓库,是拉不下来的,因为本地版本库比远程库的高 我觉得是第一次远程的版本已经拉取了,本地已记录,远程程没有发生变化,在拉取和先前的一致 ...
- [PYTHON 实作] 算100
问题:编写一个在1,2,…,9(顺序不能变)数字之间插入+或-或什么都不插入,使得计算结果总是100的程序,并输出所有的可能性.例如:1 + 2 + 34 – 5 + 67 – 8 + 9 = 100 ...
- 小程序mina框架与配置
小程序是采用MINA框架 <!--demo.wxml--> <view> Hello {{name}}</view> <button bindtap=&quo ...
- Anaconda使用总结(文章来自网络)
序 Python易用,但用好却不易,其中比较头疼的就是包管理和Python不同版本的问题,特别是当你使用Windows的时候.为了解决这些问题,有不少发行版的Python,比如WinPython.An ...
- 「小程序JAVA实战」 小程序私有页面的生命周期以及导航(10)
转自:https://idig8.com/2018/08/09/xiaochengxu-chuji-10/ 之前讲了小程序全局的生命周期,今天咱们说说单个页面的生命周期!源码:https://gith ...
- Oracle11g-BBED安装
oracle 11g中缺bbed包 下载地址: https://pan.baidu.com/s/19DVvIajarDjnynILNwQDWQ 密码:tmqt 1.BBED的安装 1.上传(sbbdp ...
- 【292】Python 关于中文字符串的操作
参考:什么是字符编码? 参考:Unicode 和 UTF-8 有何区别? 参考:python中文decode和encode转码 一.相关说明 Python 中关于字符串的操作只限于英文字母,当进行中文 ...