Meeting 2018-01-19

Future Tasks

- Changes are noted by Bold
  • Frontend refactoring - Teyu
  • Take Multiple-Color-Pointmap as start point - Aaron
  • Stop words merge - Qiancheng
  • PointMap Parameter Configuration merge - Qiushi
  • "geoCell" & "getPoint" function - Qiushi
  • New middleware task finding for Qiancheng - Chen & Qiushi
  • Tableau Evaluation - Li Deng
  • Layers of Frontend - Yang Cao
  • Comparison with Oracle - Jiliang Ni

Notes: 
  • For people who need some sample data to play with, here is the link of 47000 records of Twitter data.
  • Data is `json` format:
The whole file is an array wrapped by []:
[
{tweet1},
{tweet2}
]

Each line/element (delimited by ",") is one tweet.
Example: "tweet1" - 
{
"create_at": "2016-01-01T00:00:00.000Z", //Timestamp the tweet was created.
"id": XXXXXXXXXXXX,
"text": "text content of this tweet",
...
"user": {sub-object, basic information of an user},
...
"place": {sub-object, location attributes when this tweet was published. One of them is `bounding_box` which contains 2 coordinates: [x1, y1] and [x2, y2] - diagonal corners of the rectangle bounding box where the tweet was published},
"geo_tag": {sub-object, this is an attribute added by us in order for our group-by aggregation UI, it includes "stateID", "stateName", "countID", "countyName", "cityID", "cityName"}
}
  • Here is an example query from our `Twittermap` application:
select `state` as `state`,coll_count(g) as `count`
from twitter t
where t.`create_at` >= datetime('2017-09-08T20:36:33.000Z') 
   and t.`create_at` < datetime('2017-09-10T20:36:33.000Z') 
   and t.`geo_tag`.`stateID` in [ 37,51,24,11,10,34,42,9,44,48,35,4,40,6,20,32,8,49,12,22,28,1,13,45,5,47,21,29,54,17,18,39,19,55,26,27,31,56,41,46,16,30,53,38,25,36,50,33,23,2 ]
group by t.geo_tag.stateID

of course, the `stateID` might be replaced by `countyID` or `cityID`
  • The data is the same with our website's `Quick Start` local demo's data.
  • If someone would play with our local demo, please use this `Quick Start` to get your hands dirty.
CrimeData

Comments

Popular posts from this blog

Meeting 2018-02-02

TODOs - Mar 16 2018

Meeting 2018-01-12