【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 ...
随机推荐
- Linux命令基础3-cd命令
cd 到带空格的文件夹 [root@cctg-sjc16-grafana ccatgbld]# cd 'my test' [root@cctg-sjc16-grafana my test]# cd . ...
- RabbitMQ交换机、RabbitMQ整合springCloud
目标 1.交换机 2.RabbitMQ整合springCloud 交换机 蓝色区域===生产者 红色区域===Server:又称Broker,接受客户端的连接,实现AMQP实体服务 绿色区域===消费 ...
- php自定义函数之匿名函数
所谓匿名,就是没有名字. 匿名函数,也就是没有函数名的函数.直线电机参数 匿名函数的第一种用法,直接把赋数赋值给变量,调用变量即为调用函数. 匿名函数的写法比较灵活. 1.变量函数式的匿名函数 < ...
- 微信小程序微信登录
开发接口 登录 wx.login wx.checkSession 签名加密 小程序登录 小程序可以通过微信官方提供的登录能力方便地获取微信提供的用户身份标识,快速建立小程序内的用户体系. 登录流程时序 ...
- 【转】浅析Linux中的零拷贝技术
本文探讨Linux中主要的几种零拷贝技术以及零拷贝技术适用的场景.为了迅速建立起零拷贝的概念,我们拿一个常用的场景进行引入: 引文## 在写一个服务端程序时(Web Server或者文件服务器),文件 ...
- 关于nginx反代jenkins报错 反向代理设置有误
官方文档地址: https://wiki.jenkins.io/display/JENKINS/Running+Jenkins+behind+Nginx 直接解决的配置文件吧. 这是使用子域名,不使用 ...
- Fiddler抓取https请求证书问题【转载】
转载链接: https://www.cnblogs.com/liulinghua90/p/9109282.html
- java中快速失败(fail-fast)和安全失败(fail-safe)的区别是什么?
一:快速失败(fail—fast) 在用迭代器遍历一个集合对象时,如果遍历过程中对集合对象的内容进行了修改(增加.删除.修改),则会抛出Concurrent Modification Exceptio ...
- 【软工实践】团队项目Snug-选题报告
组长博客链接 组长博客 NABCD分析引用 NEED 需求 根据我们的调查显示,大部分人都有着不规律的生活习惯,他们都希望有一款软件能够帮助他们,养成一个适合自己的较规律的生活习惯.我们的Snug正是 ...
- 应急响应系列之OA被入侵挖矿分析报告
一 基本情况 1.1 简要 此事件是去年应急处置时完成的报告,距今有半年时间了.一直存在电脑里,最近准备完善应急响应中遇到的各类安全事件,这篇文章作为这一系列的开端. 对于 Linux 安全检查,个 ...