参考:Tweet Object

参考:Geo Objects

参考:User Object

Ref: Place data dictionary

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
Array of
Array of
Float

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.

{
"bounding_box": {
"coordinates": [
[
[
-74.026675,
40.683935
],
[
-74.026675,
40.877483
],
[
-73.910408,
40.877483
],
[
-73.910408,
40.3935
]
]
],
"type": "Polygon"
}
}
     
     
     

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 元素意义的更多相关文章

  1. HTML 5 中的标准属性

    HTML 全局属性 HTML 属性赋予元素意义和语境. 下面的全局属性可用于任何 HTML 元素. (5)= HTML5 中添加的属性. 属性 描述 accesskey 规定激活元素的快捷键. cla ...

  2. HTML中<b>标签和<strong>便签的区别

    最近碰到的问题,自己写的时候因为<b>标签比较简短偶尔使用,看到别人有使用<strong>标签的,本人不懂区别,在网上找的别人的东西,觉得很有道理,跟大家分享看看~~ 链接:h ...

  3. div整体布局分析

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  4. 《CSS网站布局实录》学习笔记(三)

    第三章 CSS网页布局与定位 3.1 div 几乎XHTML中的任何标签都可以用于浮动与定位,而div首当其冲.对于其他标签而言,往往有它自身存在的目的,而div元素存在的目的就是为了浮动与定位. 3 ...

  5. oracle sql 知识小结

    Oracle_sql : 第一单元:select 语句: ①:字符串连接操作符: || ②:去除重复行:distinct   第二单元:条件限制和排序 ①:关键字:where ②:比较操作符:=,&g ...

  6. 1-1 struts2 基本配置 struts.xml配置文件详解

    详见http://www.cnblogs.com/dooor/p/5323716.html 一. struts2工作原理(网友总结,千遍一律) 1 客户端初始化一个指向Servlet容器(例如Tomc ...

  7. HTML5-全局属性

    HTML5-全局属性 HTML 属性赋予元素意义和语境.全局属性可用于任何 HTML 元素. contentEditable - 规定元素内容是否可编辑.- 注释:如果元素未设置 contentedi ...

  8. 【struts2基础】配置详解

    一.struts2工作原理(网友总结,千遍一律) 1 客户端初始化一个指向Servlet容器(例如Tomcat)的请求2 这个请求经过一系列的过滤器(Filter)(这些过滤器中有一个叫做Action ...

  9. 样式缩写——css技巧(一)

    一.margin和padding缩写 例: .sample-margin1{ margin-top:15px; margin-right:20px; margin-bottom:12px; margi ...

随机推荐

  1. 样条函数后续(java)--可在hive中执行的函数

    之前写的样条插值算法只能在本地执行,但是我想要的是可在hive中执行的jar包,为了符合我的要求,经过痛苦.气愤.悲伤等一系列过程,终于实现了: 想要实现可在hive中执行的jar包,以下是具体步骤: ...

  2. Django admin中文报错Incorrect string value 解决办法

  3. 微信小程序引入Vant组件库

    前期准备 Vant Weapp组件库:https://youzan.github.io/vant-weapp/#/intro 1.先在微信开发者工具中打开项目的终端: 然后初始化一个package.j ...

  4. 向指定URL发送GET和POST请求

    package com.sinosoft.ap.wj.common.util; import java.io.BufferedReader;import java.io.IOException;imp ...

  5. 使用Navicat Premium 12导出SQL语句并在Power Designer 16.5中生成物理模型

    内容简介 本文主要介绍使用Navicat Premium 12导出建表SQL(使用MySQL数据库)文件,并在Power Designer 16.5中使用导出的SQL文件来生成物理模型的步骤. 操作步 ...

  6. Spark运行架构及作业提交流程

    1.yarn-cluster模式: (1)client客户端提交spark Application应用程序到yarn集群. (2)ResourceManager收到了请求后,在集群中选择一个NodeM ...

  7. 使用Fiddler抓包抓取不了数据包的问题

    一:(我)抓包遇到的问题. ①:抓包一直出现这个问题 解决办法:  如果你遇到上面的问题,就可能是证书的问题(我的本地证书是用系统生成证书的一个软件生成的个人证书,所以出现了问题,我抓的所有数据都出现 ...

  8. car二手车购买原理

    前提须知 1. Kbb,指著名的二手车估计网站 www.kbb.com .其中给出了具体年份里程车的参考价格. 2. Craigslist,简称 CL,著名的二手物品交易网站,美国的 58 同城. 3 ...

  9. apt-get linux 虚拟机安装vm tools下载

    要重启机器才行D:\Program Files (x86)\linux.iso解压tar zxvf VMwareTools-9.9.0-2304977.tar.gz

  10. linux安装sox,踩过坑的方法

    参考文章 : https://blog.csdn.net/e_zhiwen/article/details/80037476 重新在源码中 执行一遍 ./configure --prefix=$HOM ...