【440】Tweet 元素意义
参考:Tweet Object
参考:Geo Objects
参考:User Object
Tweet Object
| Attribute | Type | Description |
| created_at | String | UTC time |
| id | Int64 | unique identifier |
| id_str | String | unique identifier |
| text | String | actual UTF-8 text |
| source | String | Tweet's source value,e.g. web or phone |
| truncated | Boolean | whether the text was truncated or not |
| in_reply_to_status_id | Int64 | None: not a reply or the original Tweet's ID |
| in_reply_to_status_id_str | String | string representation |
| in_reply_to_user_id | Int64 | None: not a reply or the original Tweet's author ID |
| in_reply_to_user_id_str | String | string representation |
| in_reply_to_screen_name | String | None: not a reply or the screen name of the original Tweet's author |
| user | User object | The user who posted this Tweet. |
| coordinates |
Array of |
A series of longitude and latitude points, defining a box which will contain the Place entity this bounding box is related to. [longitude, latitude] four pairs of points |
| type | String | The type of data encoded in the coordinates property. This will be "Polygon" for bounding boxes and "Points" for Tweets with extra coordinates. |
| lang | String | "lang": "en" |
| geo | Object | Deprecated attribute, Tweet geo is formatted as [lat, lon]. |
| place | Places | |
User Object
| Attribute | Type | Description |
| id | Int64 | The integer representation of the unique identifier for this User. |
| id_str | String | string representation |
| name | String | The name of the user. |
| screen_name | String | screen_names are unique but subject to change. |
| location | String | The user-defined location for this account's profile. Not necessarily a location, nor machine-parseable. |
| geo_enabled | Boolean | whether this user enable geo or not |
Place data dictionary
| Attribute | Type | Description |
| place_type | String | The type of location represented by this place. "place_type": "city" |
| name | String | Short human-readable representation of the place's name. "name": "Manhattan" |
| full_name | String | Short human-readable representation of the place's name. "full_name": "Manhattan, NY" |
| country_code | String | Shortened country code representing the country containing this place. "country_code": "US" |
| country | String | Name of the country containing this place. "country": "United States" |
| bounding_box | Object | A bounding box of coordinates which encloses this place.
{
|
Spatio-Temporal realated attributes:
- created_at
- coordinates
- geo
- user
- location
- created_at
- geo_enabled (deprecated)
- place
- name
- full_name
- place_type
- country_code
- country
- bounding_box
【440】Tweet 元素意义的更多相关文章
- HTML 5 中的标准属性
HTML 全局属性 HTML 属性赋予元素意义和语境. 下面的全局属性可用于任何 HTML 元素. (5)= HTML5 中添加的属性. 属性 描述 accesskey 规定激活元素的快捷键. cla ...
- HTML中<b>标签和<strong>便签的区别
最近碰到的问题,自己写的时候因为<b>标签比较简短偶尔使用,看到别人有使用<strong>标签的,本人不懂区别,在网上找的别人的东西,觉得很有道理,跟大家分享看看~~ 链接:h ...
- div整体布局分析
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- 《CSS网站布局实录》学习笔记(三)
第三章 CSS网页布局与定位 3.1 div 几乎XHTML中的任何标签都可以用于浮动与定位,而div首当其冲.对于其他标签而言,往往有它自身存在的目的,而div元素存在的目的就是为了浮动与定位. 3 ...
- oracle sql 知识小结
Oracle_sql : 第一单元:select 语句: ①:字符串连接操作符: || ②:去除重复行:distinct 第二单元:条件限制和排序 ①:关键字:where ②:比较操作符:=,&g ...
- 1-1 struts2 基本配置 struts.xml配置文件详解
详见http://www.cnblogs.com/dooor/p/5323716.html 一. struts2工作原理(网友总结,千遍一律) 1 客户端初始化一个指向Servlet容器(例如Tomc ...
- HTML5-全局属性
HTML5-全局属性 HTML 属性赋予元素意义和语境.全局属性可用于任何 HTML 元素. contentEditable - 规定元素内容是否可编辑.- 注释:如果元素未设置 contentedi ...
- 【struts2基础】配置详解
一.struts2工作原理(网友总结,千遍一律) 1 客户端初始化一个指向Servlet容器(例如Tomcat)的请求2 这个请求经过一系列的过滤器(Filter)(这些过滤器中有一个叫做Action ...
- 样式缩写——css技巧(一)
一.margin和padding缩写 例: .sample-margin1{ margin-top:15px; margin-right:20px; margin-bottom:12px; margi ...
随机推荐
- Union-Find(并查集): Quick find算法
解决dynamic connectivity的一种算法:Quick find Quick find--Data sturcture 如果两个objects是相连的,则它们有相同的array value ...
- 【Mac电脑】Burp 设置代理后提示“您的链接不是私密链接”的解决方案
一.遇到的问题 通过Burp Proxy代理抓包时,遇到的如下情况: 二.解决问题 (1)基础介绍 HTTPS协议是为了数据传输安全的需要,在HTTP原有的基础上,加入了安全套接字层SSL协议,通过C ...
- php 数组的计算
数组是我们最常用到的类型,那如何计算某个一维数组的个数呢.其实我们可以用到我们之前学过的数学函数里面的一个:count(). 我们来看看count函数的用法: int count ( mixed $变 ...
- HDP 企业级大数据平台
一 前言 阅读本文前需要掌握的知识: Linux基本原理和命令 Hadoop生态系统(包括HDFS,Spark的原理和安装命令) 由于Hadoop生态系统组件众多,导致大数据平台多节点的部署,监控极其 ...
- BZOJ3551 Peaks加强版 [Kruskal重构树,主席树]
BZOJ 思路 我觉得这题可持久化线段树合并也可以做 我觉得这题建出最小生成树之后动态点分治+线段树也可以做 还是学习一下Kruskal重构树吧-- Kruskal重构树,就是在做最小生成树的时候,如 ...
- Sklearn多元线性回归
Sklearn多元线性回归 1 正文 2 参考资料 Sklearn多元线性回归
- wpf防止界面卡死
AsyncInvokeHelper.CallbackInvoke(new Action(() => { System.Threading.Tasks.Task.Factory.StartNew( ...
- Linux 之数组
数组 和其他编程语言一样,Shell 也支持数组.数组(Array)是若干数据的集合,其中的每一份数据都称为元素(Element). Shell 并且没有限制数组的大小,理论上可以存放无限量的数据.和 ...
- Linux 搜索查找类指令
一.find 指令 find 指令将从指定目录向下递归遍历其各子目录,将满足条件的文件或者目录显示在终端. 基本语法 find [搜索范围] [选项] 选项说明 -name ...
- NOIP提高组初战告捷
前天第一次参加NOIP初赛,竟然提高组考了57分进入复赛啊啊!原本自己估分是52竟然估少了[滑稽]这个成绩 是我们学校初一提高组成绩最高 还是不错(出乎我意料之外)的!