【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 ...
随机推荐
- 【测试工具】moco入门(一)
转自:https://www.cnblogs.com/tangqiu/p/9493147.html 简单来说,Moco就是解决了开发前端时没有后端支持,开发接口时依赖没有到位的尴尬场景.当然Moco的 ...
- 十五.ProtoBuf3的基础总结
转自: https://blog.csdn.net/u011518120/article/details/54604615 定义一个消息类型 指定字段类型 分配标识号 指定字段规则 添加更多消息类型 ...
- wait,waitpid学习测试
用man wait学习wait waitpid的使用 wait()函数功能:wait()函数使父进程暂停执行,直到它的一个子进程结束为止,该函数的返回值是终止运行的子进程的PID. 参数status所 ...
- Java - 框架之 SpringMVC
一. 简单配置 (XML) 1. web.xml <?xml version="1.0" encoding="UTF-8"?> <web-ap ...
- javaweb学习笔记(二)
一.javaweb学习是所需要的细节 1.Cookie的注意点 ① Cookie一旦创建,它的名称就不能更改,Cookie的值可以为任意值,创建后允许被修改. ② 关于Cookie中的setMaxAg ...
- MySQL kill进程后出现killed死锁问题
公司同事删除一张大表的数据,本想直接drop表,但是使用了delete删除表,发现很慢,就kill了这个操作, 但是,kill后,表锁住了,因为在回滚表数据. 原文链接:https://blog.cs ...
- 洛谷 P1257 平面上的最接近点对 题解
P1257 平面上的最接近点对 题目描述 给定平面上n个点,找出其中的一对点的距离,使得在这n个点的所有点对中,该距离为所有点对中最小的. 输入格式 第一行:n:2≤n≤10000 接下来n行:每行两 ...
- nyar4psg: Cannot find a class or type named "MultiMarker"
Cannot find a class or type named "MultiMarker" 是一种常见错误,产生的原因是Library里面有1个以上的ar库. 以我的电脑为例, ...
- 9、共享变量(Broadcast Variable和Accumulator)
一.共享变量 1.共享变量工作原理 Spark一个非常重要的特性就是共享变量. 默认情况下,如果在一个算子的函数中使用到了某个外部的变量,那么这个变量的值会被拷贝到每个task中.此时每个task只能 ...
- AtCoder Grand Contest 039 题解
传送门 \(A\) 首先只有一串的情况下,遇到相同的肯定是改后面那一个最优,然后两串的话可能要分奇偶讨论一下 //quming #include<bits/stdc++.h> #defin ...