embulk-filter-join_file 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/LICENSE.txt +21 -0
- data/README.md +122 -0
- data/build.gradle +75 -0
- data/example/config.yml +32 -0
- data/example/data.csv +100 -0
- data/example/master.json +765 -0
- data/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.properties +6 -0
- data/gradlew +164 -0
- data/gradlew.bat +90 -0
- data/lib/embulk/filter/join_file.rb +3 -0
- data/src/main/java/org/embulk/filter/join_file/FilteredPageOutput.java +165 -0
- data/src/main/java/org/embulk/filter/join_file/JoinFileFilterPlugin.java +162 -0
- data/src/main/java/org/embulk/filter/join_file/TableBuilder.java +87 -0
- data/src/test/java/org/embulk/filter/join_file/TestJoinFileFilterPlugin.java +5 -0
- metadata +89 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c930b9f8d2efac6c196e72071268d25e0596f107
|
4
|
+
data.tar.gz: 2a5b3b96c7a8c34c53045a72038634ed06072ab7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ebce654eaa2b20d892d64d9ceebe0d7f914b762bae4a09fcbafe52b8bea406a5a552aad5a0ad38a9699a40a8763d5043e75ecd5bad0200ad5d50e34bfbf2a20e
|
7
|
+
data.tar.gz: f53a115e19a1e96a760fc7c65f19479d93f42a36ff31c6473ee4a37959fbc9ec125f82d3a6f89fda2c7fb47dfb8b484fd76e577e6fd40491c221429c135547f9
|
data/.gitignore
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
MIT License
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
# Join File filter plugin for Embulk
|
2
|
+
|
3
|
+
This plugin combine rows from file having data format like a table, based on a common field between them.
|
4
|
+
|
5
|
+
## Overview
|
6
|
+
|
7
|
+
* **Plugin type**: filter
|
8
|
+
|
9
|
+
## Configuration
|
10
|
+
|
11
|
+
- **base_column**: a column name of data embulk loaded (hash, required)
|
12
|
+
- **name**: name of the column
|
13
|
+
- **type**: type of the column (see below)
|
14
|
+
- **format**: format of the timestamp if type is timestamp
|
15
|
+
- **counter_column**: a column name of data loaded from file (string, default: `{name: id, type: long}`)
|
16
|
+
- **name**: name of the column
|
17
|
+
- **type**: type of the column (see below)
|
18
|
+
- **format**: format of the timestamp if type is timestamp
|
19
|
+
- **joined_column_prefix**: prefix added to joined data columns (string, default: `"_joined_by_embulk_"`)
|
20
|
+
- **file_path**: path of file (string, required)
|
21
|
+
- **file_format**: file format (string, required, supported: `csv`, `tsv`, `yaml`, `json`)
|
22
|
+
- **columns**: required columns of json table (array of hash, required)
|
23
|
+
- **name**: name of the column
|
24
|
+
- **type**: type of the column (see below)
|
25
|
+
- **format**: format of the timestamp if type is timestamp
|
26
|
+
|
27
|
+
---
|
28
|
+
**type of the column**
|
29
|
+
|
30
|
+
|name|description|
|
31
|
+
|:---|:---|
|
32
|
+
|boolean|true or false|
|
33
|
+
|long|64-bit signed integers|
|
34
|
+
|timestamp|Date and time with nano-seconds precision|
|
35
|
+
|double|64-bit floating point numbers|
|
36
|
+
|string|Strings|
|
37
|
+
|
38
|
+
## Example
|
39
|
+
|
40
|
+
```yaml
|
41
|
+
filters:
|
42
|
+
- type: join_file
|
43
|
+
base_column: {name: name_id, type: long}
|
44
|
+
counter_column: {name: id, type: long}
|
45
|
+
joined_column_prefix: _joined_by_embulk_
|
46
|
+
file_path: master.json
|
47
|
+
file_format: json
|
48
|
+
columns:
|
49
|
+
- {name: id, type: long}
|
50
|
+
- {name: name, type: string}
|
51
|
+
```
|
52
|
+
|
53
|
+
## Run Example
|
54
|
+
|
55
|
+
```
|
56
|
+
$ ./gradlew classpath
|
57
|
+
$ embulk run -I lib example/config.yml
|
58
|
+
```
|
59
|
+
|
60
|
+
## Supported Data Format
|
61
|
+
- csv ( **not implemented** )
|
62
|
+
- tsv ( **not implemented** )
|
63
|
+
- yaml ( **not implemented** )
|
64
|
+
- json
|
65
|
+
|
66
|
+
### Supported Data Format Example
|
67
|
+
|
68
|
+
#### CSV
|
69
|
+
|
70
|
+
```csv
|
71
|
+
id,name
|
72
|
+
0,civitaspo
|
73
|
+
2,mori.ogai
|
74
|
+
5,natsume.soseki
|
75
|
+
```
|
76
|
+
|
77
|
+
#### TSV
|
78
|
+
|
79
|
+
Since the representation is difficult, it represents the tab as `\t`.
|
80
|
+
|
81
|
+
```tsv
|
82
|
+
id\tname
|
83
|
+
0\tcivitaspo
|
84
|
+
2\tmori.ogai
|
85
|
+
5\tnatsume.soseki
|
86
|
+
```
|
87
|
+
|
88
|
+
#### YAML
|
89
|
+
|
90
|
+
```
|
91
|
+
- id: 0
|
92
|
+
name: civitaspo
|
93
|
+
- id: 2
|
94
|
+
name: mori.ogai
|
95
|
+
- id: 5
|
96
|
+
name: natsume.soseki
|
97
|
+
```
|
98
|
+
|
99
|
+
#### JSON
|
100
|
+
|
101
|
+
```
|
102
|
+
[
|
103
|
+
{
|
104
|
+
"id": 0,
|
105
|
+
"name": "civitaspo"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"id": 2,
|
109
|
+
"name": "moriogai"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"id": 5,
|
113
|
+
"name": "natsume.soseki"
|
114
|
+
}
|
115
|
+
]
|
116
|
+
```
|
117
|
+
|
118
|
+
## Build
|
119
|
+
|
120
|
+
```
|
121
|
+
$ ./gradlew gem # -t to watch change of files and rebuild continuously
|
122
|
+
```
|
data/build.gradle
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
plugins {
|
2
|
+
id "com.jfrog.bintray" version "1.1"
|
3
|
+
id "com.github.jruby-gradle.base" version "0.1.5"
|
4
|
+
id "java"
|
5
|
+
}
|
6
|
+
import com.github.jrubygradle.JRubyExec
|
7
|
+
repositories {
|
8
|
+
mavenCentral()
|
9
|
+
jcenter()
|
10
|
+
}
|
11
|
+
configurations {
|
12
|
+
provided
|
13
|
+
}
|
14
|
+
|
15
|
+
version = "0.0.1"
|
16
|
+
sourceCompatibility = 1.7
|
17
|
+
targetCompatibility = 1.7
|
18
|
+
|
19
|
+
dependencies {
|
20
|
+
compile "org.embulk:embulk-core:0.7.4"
|
21
|
+
provided "org.embulk:embulk-core:0.7.4"
|
22
|
+
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
|
23
|
+
testCompile "junit:junit:4.+"
|
24
|
+
}
|
25
|
+
|
26
|
+
task classpath(type: Copy, dependsOn: ["jar"]) {
|
27
|
+
doFirst { file("classpath").deleteDir() }
|
28
|
+
from (configurations.runtime - configurations.provided + files(jar.archivePath))
|
29
|
+
into "classpath"
|
30
|
+
}
|
31
|
+
clean { delete "classpath" }
|
32
|
+
|
33
|
+
task gem(type: JRubyExec, dependsOn: ["gemspec", "classpath"]) {
|
34
|
+
jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "build"
|
35
|
+
script "${project.name}.gemspec"
|
36
|
+
doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
|
37
|
+
}
|
38
|
+
|
39
|
+
task gemPush(type: JRubyExec, dependsOn: ["gem"]) {
|
40
|
+
jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "push"
|
41
|
+
script "pkg/${project.name}-${project.version}.gem"
|
42
|
+
}
|
43
|
+
|
44
|
+
task "package"(dependsOn: ["gemspec", "classpath"]) << {
|
45
|
+
println "> Build succeeded."
|
46
|
+
println "> You can run embulk with '-L ${file(".").absolutePath}' argument."
|
47
|
+
}
|
48
|
+
|
49
|
+
task gemspec {
|
50
|
+
ext.gemspecFile = file("${project.name}.gemspec")
|
51
|
+
inputs.file "build.gradle"
|
52
|
+
outputs.file gemspecFile
|
53
|
+
doLast { gemspecFile.write($/
|
54
|
+
Gem::Specification.new do |spec|
|
55
|
+
spec.name = "${project.name}"
|
56
|
+
spec.version = "${project.version}"
|
57
|
+
spec.authors = ["Civitaspo"]
|
58
|
+
spec.summary = %[Join File filter plugin for Embulk]
|
59
|
+
spec.description = %[Join File]
|
60
|
+
spec.email = ["civitaspo@gmail.com"]
|
61
|
+
spec.licenses = ["MIT"]
|
62
|
+
spec.homepage = "https://github.com/civitaspo/embulk-filter-join_file"
|
63
|
+
|
64
|
+
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
|
65
|
+
spec.test_files = spec.files.grep(%r"^(test|spec)/")
|
66
|
+
spec.require_paths = ["lib"]
|
67
|
+
|
68
|
+
#spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION']
|
69
|
+
spec.add_development_dependency 'bundler', ['~> 1.0']
|
70
|
+
spec.add_development_dependency 'rake', ['>= 10.0']
|
71
|
+
end
|
72
|
+
/$)
|
73
|
+
}
|
74
|
+
}
|
75
|
+
clean { delete "${project.name}.gemspec" }
|
data/example/config.yml
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
in:
|
2
|
+
type: file
|
3
|
+
path_prefix: example/data.csv
|
4
|
+
parser:
|
5
|
+
type: csv
|
6
|
+
charset: UTF-8
|
7
|
+
newline: CRLF
|
8
|
+
null_string: 'NULL'
|
9
|
+
skip_header_lines: 1
|
10
|
+
comment_line_marker: '#'
|
11
|
+
columns:
|
12
|
+
- {name: time, type: timestamp, format: "%Y-%m-%d"}
|
13
|
+
- {name: id, type: long}
|
14
|
+
- {name: name, type: string}
|
15
|
+
- {name: score, type: double}
|
16
|
+
|
17
|
+
filters:
|
18
|
+
- type: join_file
|
19
|
+
base_column: {name: id, type: long}
|
20
|
+
counter_column: {name: id, type: long}
|
21
|
+
joined_column_prefix: _joined_by_embulk_
|
22
|
+
file_path: example/master.json
|
23
|
+
file_format: json
|
24
|
+
columns:
|
25
|
+
- {name: id, type: long}
|
26
|
+
- {name: name, type: string}
|
27
|
+
- {name: created_at, type: timestamp, format: "%Y-%m-%d"}
|
28
|
+
- {name: point, type: double}
|
29
|
+
- {name: time_zone, type: string}
|
30
|
+
|
31
|
+
out:
|
32
|
+
type: stdout
|
data/example/data.csv
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
time,id,name,score
|
2
|
+
2015-07-13,0,Vqjht6YEUBsMPXmoW1iOGFROZF27pBzz0TUkOKeDXEY,1370
|
3
|
+
2015-07-13,1,VmjbjAA0tOoSEPv_vKAGMtD_0aXZji0abGe7_VXHmUQ,3962
|
4
|
+
2015-07-13,2,C40P5H1WcBx-aWFDJCI8th6QPEI2DOUgupt_gB8UutE,7323
|
5
|
+
2015-07-13,3,Prr0_u_T1ts4myUofBorOJFpCYcOTLOmNBMuRmKIPJU,5905
|
6
|
+
2015-07-13,4,AEGIhHVW5cV6Xlb62uvx3TVl3kmh3Do8AvvtLDS7MDw,8378
|
7
|
+
2015-07-13,5,eupqWLrnCHr_1UaX4dUInLRxx5Q_cyQ4t0oSJBcw0MA,275
|
8
|
+
2015-07-13,6,BN8cQ47EXRb_oCGOoN96bhBldoiyoCp5O_vGHwg0XCg,9303
|
9
|
+
2015-07-13,7,RvV35-6jY6MC9_Wnm4nPsmyyfqcr-hlnBt88sXtn1nU,6130
|
10
|
+
2015-07-13,8,6OZiuPiJKjWNLMPgiEbJarB0F80lTPYkkePP8LMliv0,6652
|
11
|
+
2015-07-13,9,13CgEU_ApAMVE6Ll6Y-mSu-aubskNgHbynj2rj8f8oE,6822
|
12
|
+
2015-07-13,10,j1evoWRzKrJR0sfo014ZxhZtKigWDkRip5FwpAHAsmU,1311
|
13
|
+
2015-07-13,11,4vBBBcArfMGhediXV5Sn80hj4KkI4nUCllECNKxNgnI,4748
|
14
|
+
2015-07-13,12,6LSLQGjv46TWsvXrxYCfM5yIz4JGiGd1eEQI4TC-4yc,43
|
15
|
+
2015-07-13,13,bgLJeacIPOMH6sDb5tEmca1oYyaMdfqZomGEI2uby7k,1214
|
16
|
+
2015-07-13,14,bRHc-42RqKVv3ORxhVCA4T4dLEXyBzBCQoed8VOrDCo,7048
|
17
|
+
2015-07-13,15,ysiB3w-K5jb3FxpQY61OHYTlK9qklz3nW84RLvBnh9s,8795
|
18
|
+
2015-07-13,16,Rvn7-tMbQM3q0yWQD8AUdURhFB0ZkzLGdIiDg-AJokM,7838
|
19
|
+
2015-07-13,17,FDEI99QVJ8xRTOiQ-UDVlPMOBfuA0IwIAbJ872XnKOo,9507
|
20
|
+
2015-07-13,18,lZUazYHDEGbQbzN7vEFeLjmnzp1wsjR0D8r8f7Cs6x0,3378
|
21
|
+
2015-07-13,19,WmDFEQsDPSnVs8AiAdO3QJqlSFer1K0I8z7F0cl_WRk,1661
|
22
|
+
2015-07-13,20,OEDSi7YIj4OjMNqTw12EA04BNtNuVWva6YRhokxL4xQ,5934
|
23
|
+
2015-07-13,21,fXYhm19m2FsbWcRQGqJvVOSl2ZIRSNhWTfke-iG8e7Q,680
|
24
|
+
2015-07-13,22,LK59zfxizCwr5CI2Wu88B8gY8-G4OeyAXZobplwGzKk,8758
|
25
|
+
2015-07-13,23,8i5TVZorCp4YATsaxgybkdOHcmDywvb35Sf-Eb-sl9E,8392
|
26
|
+
2015-07-13,24,MrM9vy1U-9_OEYOQAxbshenvvUGdCZfqjx7l3KKBQ2I,8708
|
27
|
+
2015-07-13,25,miVWwEwur_7baTxIBHUT9y351AU3tnAcCXgBzvyUR5I,2843
|
28
|
+
2015-07-13,26,_vxViqC02KVb7RRBeDGYs9VZ52KB8QmvguzSXUYGfwI,6681
|
29
|
+
2015-07-13,27,Ui6BqkQDipo5kQEeVUuC2OFFIB1O4T8ALlM2GI_zvtk,7542
|
30
|
+
2015-07-13,28,OT3VLH-RdK0sIgQM3f6LIbBa_rt0YzCD5YOw4qpu6p8,5791
|
31
|
+
2015-07-13,29,vassmNeEo_jbn88g7QP58mTxH-b1jhHfwFhy-FL6T8c,9613
|
32
|
+
2015-07-13,30,VjzTphngC6V5fphi9fkGeYGCPIQNpDajfkHxrJopF6k,3064
|
33
|
+
2015-07-13,31,aqw27tMVvSsLJ8EEY3hphHMb0BRLm-LZysjVV3aX7pQ,7862
|
34
|
+
2015-07-13,32,ZXepGbCv7Yw_ejNQyAPjrqG_VwNH_RZoG8lKODl-f9c,397
|
35
|
+
2015-07-13,33,-yRoubVSa0oPfg0E1Gh7zYBQfBO8dIxZvQH9c5OsZAU,5003
|
36
|
+
2015-07-13,34,UkhBEKU7G0rV58Urs6JTAgC0UF5Y2kP-dffmE6H4nGs,6514
|
37
|
+
2015-07-13,35,ktLO3RTpHLZon7AhE9XMwPPh0t_GiOpS8vwCCqoPPnk,8634
|
38
|
+
2015-07-13,36,3ktjc_W87j3S8qLOJ0CVEVSSpz_nUAEQVBsqOMabrp0,3679
|
39
|
+
2015-07-13,37,KscV-oPqhG_CZXYUgdCmekKdR9FIT5tSt7rd3wpQDcU,1013
|
40
|
+
2015-07-13,38,VFiC8YyBk6zZk5bpfZG8s1a3kYfMA1zvnbs6DDSplGY,1556
|
41
|
+
2015-07-13,39,s0bxCQyW048GkhEAoEzXYGcTV8BZo6MLnRhL62nepYk,2844
|
42
|
+
2015-07-13,40,aWbMyvSxxTqrVONKAeQVvqi_bGqROu9UeR5NqPPlI4A,8035
|
43
|
+
2015-07-13,41,qfjEvEY8XSgMEmc-vIZLinOeIdIz6xprQbsYAe0i2WU,3205
|
44
|
+
2015-07-13,42,NK2ddaghTrUTS6Y7U1e-l57922ccVOKnqlODcA6lyBQ,302
|
45
|
+
2015-07-13,43,JRQpF1luRmNk2stUaZzDQDj93hy4RSW_iWybVgsgzJA,6534
|
46
|
+
2015-07-13,44,lz7bs1xZi4qdWLE7fQwpykWDNgp_o9oUuCZXipSLSqw,9250
|
47
|
+
2015-07-13,45,TxcwVGwelHKJws_6Q0Nk6I4Eeo9sSThM7M9KorqIGhA,5549
|
48
|
+
2015-07-13,46,u_uy6k3TgUIp3NWMFJ8EOH1mKtFhozGBD208z9um88s,3624
|
49
|
+
2015-07-13,47,RaI9xr82f0D7Jjuc4QY8Rz-UlCg3V5tw7KgJtczEo44,5278
|
50
|
+
2015-07-13,48,u6Nqudxl6vrbKGemO8xXgYojhtBGK3SQkTRPSYcaZuI,9588
|
51
|
+
2015-07-13,49,r-IgfD4fE9TiQWarsVxO_4AdieYIUZ9cczPD44_snQ4,4795
|
52
|
+
2015-07-13,50,KIiUpd04d3zYDul1mFlcJ3934AYvA_YeXDYG089ub-M,4344
|
53
|
+
2015-07-13,51,zZs0iuqm7liPKKHHn8wz-kNvd2zLCqRdXAng4B3gL0A,2116
|
54
|
+
2015-07-13,52,Rg7T2IsH0-HIvhgq0mNRC-4q5JoZ5Rcjq4tP7dz_3Ew,5323
|
55
|
+
2015-07-13,53,uBNgdXPL6kZGXP-gTic2N-uDRCxAtmI-KixkJWgrObA,9
|
56
|
+
2015-07-13,54,fQ_TLG3oByt3sDqM3Kruo69fBd1qLMXbbg10myfFXkQ,2471
|
57
|
+
2015-07-13,55,0uNd4TrRpEA1lY_zWikyELZ3MmCTzON_5ftfi-45wic,9831
|
58
|
+
2015-07-13,56,Jfp4VCtsFElA6UzzZyPxOwegfGqsYwrimSFp59YshTs,3177
|
59
|
+
2015-07-13,57,KAHSwcCwblbPRysuImbzUxx0SLAMIMb6LmMAXJBjUww,1182
|
60
|
+
2015-07-13,58,wuyDbV5ljr5275eGWhAe8wkElCzd2d_gRW3SpBkLIyY,183
|
61
|
+
2015-07-13,59,R3KTTvKRvPn6vu4qtooBbqYmwdOCC9vjmcsnf_fyu5g,5001
|
62
|
+
2015-07-13,60,Pgsf32JIv2cUMdTE9Vydh2Y36B_Xi4T1ufIy7QiKFSU,6182
|
63
|
+
2015-07-13,61,EZmz-tWhPPAsXsDZms_HHsDLKBOuZisUDotr72xXQnI,5228
|
64
|
+
2015-07-13,62,mk4y32O73DU2z65dFuW1PvIokdB7bB7btUnCoDlSVxM,8094
|
65
|
+
2015-07-13,63,fs1HvYjpOvAHnT5W1rCPU9A3k8_Px2XwfprrLrkQibM,5849
|
66
|
+
2015-07-13,64,x8WAAde6AqG2YaOEIpCFMzItRrfUXqgc8bwcoWSiMEo,6076
|
67
|
+
2015-07-13,65,zuvlwNyn8AgPEvg6qIxzkUp_ClPkMn5A__YyksWbxTo,6439
|
68
|
+
2015-07-13,66,ZWWjbJAqVtZz3AzCpacgEabm7SMloLHPBTlS3NMk7GA,6531
|
69
|
+
2015-07-13,67,wdHfAVpHp9rFaGhZOC81AusTsZX0KHxTf5RkFBw6gpI,8088
|
70
|
+
2015-07-13,68,hw8HUkIQMSS-2gAT7rvA2kgdhXfhHlySxKtssINvcFc,7808
|
71
|
+
2015-07-13,69,x1_SLENL6-M1y0n5qmfBF1-GCslEHpVM4Fo1Rdz9Ofg,3617
|
72
|
+
2015-07-13,70,E2Uj3TGAwd_B3FOS6KQ1Gjyql2YpoNtbdzWBTUOWmxY,8401
|
73
|
+
2015-07-13,71,WkpwSIP4fA42gYd1H3ohw7EmtqdQSqh4ooA7aX8v_7o,1309
|
74
|
+
2015-07-13,72,xDdMCHpSKFSZWQBJJgNzNh1R4hXouCsUfKFZpio5cgY,7867
|
75
|
+
2015-07-13,73,l0QVMlih2NmGSajDXytku9Em9p61erNKe1LEyk1VZ-Q,7964
|
76
|
+
2015-07-13,74,R8G5juHaD9sit1oujjp4FoXzXJT7hdIjEY3Lhu-ep6o,5680
|
77
|
+
2015-07-13,75,Ckpy3y166odB33VVWb27XNG_Wi65_qyikeL7dGHceSE,8603
|
78
|
+
2015-07-13,76,elFu5tPgUNzhuyswgr3QS7TXR2fInI4PWVZIEffxq6c,4972
|
79
|
+
2015-07-13,77,kz663CgkMh9VfcJrfMZb735vJJWYUPAuaskNeg7xRDk,8396
|
80
|
+
2015-07-13,78,evuBVl0RR1XQfJHN4jxSBpLcKxjZ7RtpDGYrU2ONYZA,6433
|
81
|
+
2015-07-13,79,ZbIJwmWRWscOurtrCam-iLB2mIqREwQwGFRfVYzGxwk,2917
|
82
|
+
2015-07-13,80,mzCWiiJFzo1R_anxGFALosK0eKvGfv_RT7iRGZnL790,3162
|
83
|
+
2015-07-13,81,JyrXoXLq5RpRwwXNpiW1NFK6ZkVmS55hJsNBGsuY7xY,2385
|
84
|
+
2015-07-13,82,fO7A_MQGh3Zojp6HlVZayvJHLu_RQ082ix3Y6BlRCu0,5965
|
85
|
+
2015-07-13,83,ib-pOMBLU1sN5fyyJbAElIdWEJgkoqRcBuwo6CVVYsk,3265
|
86
|
+
2015-07-13,84,X_6Ren6P7TpqyiWViO72kEwIulMqbTU_v8eAGfEo8k0,8049
|
87
|
+
2015-07-13,85,hNI30i9IYx7EreMyG7rI56Y-ZtrRe4sBYjzKMnSrL5I,9222
|
88
|
+
2015-07-13,86,kzokOacUOXELAeIHfPbnl-Er8rnHYq2JnksqN1roOSQ,2972
|
89
|
+
2015-07-13,87,qKIfkhQObWMadIi5vshcDRv95je4TYcAPSYITfwVTRk,5390
|
90
|
+
2015-07-13,88,9xKf3bfWj8Gr1NNocYHZuL0kIkAVD750LCMYDZ-R1tA,4759
|
91
|
+
2015-07-13,89,ohbmpvNy7aaaIVZ74SlHSfm0ffdwV-AqJP1bfDSjNUU,2279
|
92
|
+
2015-07-13,90,l6lTsvxdlcTfcqx2c0lQSd9HejVQg40W25f0wGNQViY,9034
|
93
|
+
2015-07-13,91,XoALSEQg9ycuGqrEWHOb8vdrLbheZSgFO53Wr3mciXY,3945
|
94
|
+
2015-07-13,92,0hgDRI_mijs5w7rkiLIe__LEayOOLxL0qVT1IHa5QBw,8109
|
95
|
+
2015-07-13,93,KjCRAc-AVcS-R13toBUR6pK_7d9Y8Gl4TRdYYMaSirc,4774
|
96
|
+
2015-07-13,94,fyQVGlT8Bqmu_LiajPlgfbmavoNyAqXaBsBP_e4OnN8,7253
|
97
|
+
2015-07-13,95,FpBYRPWKu6DmLpx5tsB25URWfj3sNCbcydNAXULaiD8,3166
|
98
|
+
2015-07-13,96,9ikvnUqp1Rf2yVwLvs5bBvxQP-KyqxGi4gZRSZ8c1d4,3695
|
99
|
+
2015-07-13,97,RRNYDAzKaq4Trtt96Bxgk3N0fXLIV8hXoK0qQ7uw_Wc,5065
|
100
|
+
,,,9170
|
data/example/master.json
ADDED
@@ -0,0 +1,765 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": 0,
|
4
|
+
"name": "Adalberto Weissnat",
|
5
|
+
"created_at": "2015-10-08 18:47:27 +0900",
|
6
|
+
"point": -2460.6454113556847,
|
7
|
+
"time_zone": "Asia/Magadan",
|
8
|
+
"city": "South Albinaville"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"id": 1,
|
12
|
+
"name": "Miss Marquise Wintheiser",
|
13
|
+
"created_at": "2015-10-09 16:59:46 +0900",
|
14
|
+
"point": 2698.4807891610594,
|
15
|
+
"time_zone": "Asia/Colombo",
|
16
|
+
"city": "Carletonberg"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"id": 6
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"id": 7,
|
23
|
+
"name": "Reva Thiel",
|
24
|
+
"created_at": "2015-10-08 03:02:33 +0900",
|
25
|
+
"point": 1479.202790669076,
|
26
|
+
"time_zone": "Asia/Tokyo",
|
27
|
+
"city": "West Stephanie"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"id": 8,
|
31
|
+
"name": "Rylan Goldner",
|
32
|
+
"created_at": "2015-10-09 13:52:06 +0900",
|
33
|
+
"point": -541.9767311062151,
|
34
|
+
"time_zone": "Pacific/Auckland",
|
35
|
+
"city": "Priceborough"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"id": 9,
|
39
|
+
"name": "Tremaine Lehner",
|
40
|
+
"created_at": "2015-10-08 03:47:26 +0900",
|
41
|
+
"point": 4336.286264566733,
|
42
|
+
"time_zone": "Europe/Warsaw",
|
43
|
+
"city": "West Bernhard"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"id": 10,
|
47
|
+
"name": "Sally Wiza",
|
48
|
+
"created_at": "2015-10-08 12:19:19 +0900",
|
49
|
+
"point": -225.2425727454647,
|
50
|
+
"time_zone": "Asia/Jerusalem",
|
51
|
+
"city": "Wardmouth"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"id": 11,
|
55
|
+
"name": "Chaim Franecki",
|
56
|
+
"created_at": "2015-10-09 06:14:49 +0900",
|
57
|
+
"point": 2401.942737139377,
|
58
|
+
"time_zone": "Europe/Vilnius",
|
59
|
+
"city": "Weissnatfort"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"id": 12,
|
63
|
+
"name": "Lisa Green",
|
64
|
+
"created_at": "2015-10-09 23:49:20 +0900",
|
65
|
+
"point": -1675.3809391283949,
|
66
|
+
"time_zone": "Asia/Yakutsk",
|
67
|
+
"city": "North Antonioland"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"id": 13,
|
71
|
+
"name": "Marcel Ernser",
|
72
|
+
"created_at": "2015-10-09 16:32:15 +0900",
|
73
|
+
"point": 1695.3208686870025,
|
74
|
+
"time_zone": "Europe/Skopje",
|
75
|
+
"city": "Port Coy"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"id": 14,
|
79
|
+
"name": "Annette Muller",
|
80
|
+
"created_at": "2015-10-08 05:17:00 +0900",
|
81
|
+
"point": -990.8910754415592,
|
82
|
+
"time_zone": "Australia/Hobart",
|
83
|
+
"city": "New Mikel"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"id": 15,
|
87
|
+
"name": "Myah Cole",
|
88
|
+
"created_at": "2015-10-08 05:03:56 +0900",
|
89
|
+
"point": 4626.179940981122,
|
90
|
+
"time_zone": "Europe/Rome",
|
91
|
+
"city": "South Mckaylashire"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"id": 16,
|
95
|
+
"name": "Kelley Robel",
|
96
|
+
"created_at": "2015-10-09 19:02:33 +0900",
|
97
|
+
"point": -1881.692326327915,
|
98
|
+
"time_zone": "Asia/Shanghai",
|
99
|
+
"city": "Arielport"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"id": 17,
|
103
|
+
"name": "Raquel Adams",
|
104
|
+
"created_at": "2015-10-08 11:55:23 +0900",
|
105
|
+
"point": 2514.5057504782803,
|
106
|
+
"time_zone": "Europe/Bucharest",
|
107
|
+
"city": "New Lulu"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"id": 18,
|
111
|
+
"name": "Melyna Reilly",
|
112
|
+
"created_at": "2015-10-08 23:44:13 +0900",
|
113
|
+
"point": -2570.899389632992,
|
114
|
+
"time_zone": "Asia/Karachi",
|
115
|
+
"city": "New Josiahton"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"id": 19,
|
119
|
+
"name": "Mr. Billie Lubowitz",
|
120
|
+
"created_at": "2015-10-09 02:00:00 +0900",
|
121
|
+
"point": 2419.5844123041393,
|
122
|
+
"time_zone": "Asia/Colombo",
|
123
|
+
"city": "West Travonland"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"id": 20,
|
127
|
+
"name": "Marshall Kerluke",
|
128
|
+
"created_at": "2015-10-08 21:08:53 +0900",
|
129
|
+
"point": -4045.5054151779077,
|
130
|
+
"time_zone": "Europe/Sofia",
|
131
|
+
"city": "Lake Curtisshire"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"id": 21,
|
135
|
+
"name": "Makayla Jacobi II",
|
136
|
+
"created_at": "2015-10-09 21:11:24 +0900",
|
137
|
+
"point": 503.85291972875353,
|
138
|
+
"time_zone": "Asia/Kathmandu",
|
139
|
+
"city": "Jacobifurt"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"id": 22,
|
143
|
+
"name": "Bill Murphy",
|
144
|
+
"created_at": "2015-10-09 15:10:11 +0900",
|
145
|
+
"point": -1247.8313567020887,
|
146
|
+
"time_zone": "Pacific/Guam",
|
147
|
+
"city": "West Danikashire"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"id": 23,
|
151
|
+
"name": "Miss Toni Terry",
|
152
|
+
"created_at": "2015-10-09 17:53:37 +0900",
|
153
|
+
"point": 2708.3542081284036,
|
154
|
+
"time_zone": "Pacific/Pago_Pago",
|
155
|
+
"city": "Schuylerville"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"id": 24,
|
159
|
+
"name": "Jalyn Deckow",
|
160
|
+
"created_at": "2015-10-08 00:40:00 +0900",
|
161
|
+
"point": -781.4827603105687,
|
162
|
+
"time_zone": "Asia/Baku",
|
163
|
+
"city": "Klockoton"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"id": 25,
|
167
|
+
"name": "Rhianna Bernier",
|
168
|
+
"created_at": "2015-10-08 16:01:34 +0900",
|
169
|
+
"point": 4244.636335555426,
|
170
|
+
"time_zone": "Asia/Shanghai",
|
171
|
+
"city": "Danefort"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"id": 26,
|
175
|
+
"name": "Mrs. Frederick Schaden",
|
176
|
+
"created_at": "2015-10-09 20:46:04 +0900",
|
177
|
+
"point": -1026.970278151488,
|
178
|
+
"time_zone": "Asia/Shanghai",
|
179
|
+
"city": "Lake Demetrisville"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"id": 27,
|
183
|
+
"name": "Austin Beier",
|
184
|
+
"created_at": "2015-10-08 15:54:27 +0900",
|
185
|
+
"point": 3722.7299357002057,
|
186
|
+
"time_zone": "Asia/Bangkok",
|
187
|
+
"city": "North Aidan"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"id": 28,
|
191
|
+
"name": "Rosalee Swaniawski",
|
192
|
+
"created_at": "2015-10-09 03:49:58 +0900",
|
193
|
+
"point": -3588.0124881640468,
|
194
|
+
"time_zone": "Asia/Karachi",
|
195
|
+
"city": "Isabellefurt"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"id": 29,
|
199
|
+
"name": "Marisa Dickens",
|
200
|
+
"created_at": "2015-10-08 13:54:20 +0900",
|
201
|
+
"point": 1198.3769316691016,
|
202
|
+
"time_zone": "Europe/Stockholm",
|
203
|
+
"city": "Hilpertshire"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"id": 30,
|
207
|
+
"name": "Axel Dickinson DVM",
|
208
|
+
"created_at": "2015-10-08 16:30:08 +0900",
|
209
|
+
"point": -3839.953287802141,
|
210
|
+
"time_zone": "Africa/Harare",
|
211
|
+
"city": "Cletushaven"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"id": 31,
|
215
|
+
"name": "Ms. Enrique Steuber",
|
216
|
+
"created_at": "2015-10-08 05:29:16 +0900",
|
217
|
+
"point": 1830.3561192847399,
|
218
|
+
"time_zone": "Asia/Riyadh",
|
219
|
+
"city": "East Jeromemouth"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"id": 32,
|
223
|
+
"name": "Lora Glover DVM",
|
224
|
+
"created_at": "2015-10-08 03:44:28 +0900",
|
225
|
+
"point": -1546.3742614370017,
|
226
|
+
"time_zone": "Europe/Zagreb",
|
227
|
+
"city": "Ratkeside"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"id": 33,
|
231
|
+
"name": "Armani Purdy",
|
232
|
+
"created_at": "2015-10-08 22:00:24 +0900",
|
233
|
+
"point": 3738.297674880903,
|
234
|
+
"time_zone": "Asia/Novosibirsk",
|
235
|
+
"city": "Lynchborough"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"id": 34,
|
239
|
+
"name": "Dr. Jeanne Greenholt",
|
240
|
+
"created_at": "2015-10-08 23:56:42 +0900",
|
241
|
+
"point": -4989.403881940254,
|
242
|
+
"time_zone": "Australia/Melbourne",
|
243
|
+
"city": "Port Enochside"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"id": 35,
|
247
|
+
"name": "Miracle Kohler",
|
248
|
+
"created_at": "2015-10-09 18:45:32 +0900",
|
249
|
+
"point": 3190.242284349484,
|
250
|
+
"time_zone": "Europe/Bratislava",
|
251
|
+
"city": "Willmsland"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"id": 36,
|
255
|
+
"name": "Marcelle Braun",
|
256
|
+
"created_at": "2015-10-08 18:17:10 +0900",
|
257
|
+
"point": -4687.6929921110905,
|
258
|
+
"time_zone": "America/Monterrey",
|
259
|
+
"city": "Port Skyetown"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"id": 37,
|
263
|
+
"name": "Carlotta Kirlin",
|
264
|
+
"created_at": "2015-10-08 04:00:45 +0900",
|
265
|
+
"point": 3876.361992427176,
|
266
|
+
"time_zone": "Asia/Vladivostok",
|
267
|
+
"city": "New Jensen"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"id": 38,
|
271
|
+
"name": "Mr. Herta Leffler",
|
272
|
+
"created_at": "2015-10-09 12:07:57 +0900",
|
273
|
+
"point": -1290.8848665718574,
|
274
|
+
"time_zone": "Europe/Madrid",
|
275
|
+
"city": "Vonview"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"id": 39,
|
279
|
+
"name": "Mr. Kirk Herman",
|
280
|
+
"created_at": "2015-10-09 10:51:29 +0900",
|
281
|
+
"point": 2034.782000164976,
|
282
|
+
"time_zone": "Asia/Yakutsk",
|
283
|
+
"city": "Framishire"
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"id": 40,
|
287
|
+
"name": "David Heathcote",
|
288
|
+
"created_at": "2015-10-08 00:49:25 +0900",
|
289
|
+
"point": -181.80512805361195,
|
290
|
+
"time_zone": "Europe/Dublin",
|
291
|
+
"city": "West Damian"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"id": 41,
|
295
|
+
"name": "Miss Karianne Boyer",
|
296
|
+
"created_at": "2015-10-09 18:16:16 +0900",
|
297
|
+
"point": 2782.2185673287845,
|
298
|
+
"time_zone": "Asia/Bangkok",
|
299
|
+
"city": "Schowalterborough"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"id": 42,
|
303
|
+
"name": "Horace Okuneva",
|
304
|
+
"created_at": "2015-10-09 01:58:23 +0900",
|
305
|
+
"point": -407.6422898340006,
|
306
|
+
"time_zone": "Pacific/Honolulu",
|
307
|
+
"city": "Haleyton"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"id": 43,
|
311
|
+
"name": "Charlotte Watsica",
|
312
|
+
"created_at": "2015-10-08 18:51:07 +0900",
|
313
|
+
"point": 4986.728136603842,
|
314
|
+
"time_zone": "Asia/Dhaka",
|
315
|
+
"city": "Port Colbyview"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"id": 44,
|
319
|
+
"name": "Cydney Wilkinson",
|
320
|
+
"created_at": "2015-10-09 03:05:00 +0900",
|
321
|
+
"point": -3309.0643871672482,
|
322
|
+
"time_zone": "Asia/Magadan",
|
323
|
+
"city": "Wardport"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"id": 45,
|
327
|
+
"name": "Ona Gerhold",
|
328
|
+
"created_at": "2015-10-08 03:39:32 +0900",
|
329
|
+
"point": 2314.8305221103906,
|
330
|
+
"time_zone": "America/Sao_Paulo",
|
331
|
+
"city": "Donnellymouth"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"id": 46,
|
335
|
+
"name": "Clark Bogan",
|
336
|
+
"created_at": "2015-10-09 14:17:48 +0900",
|
337
|
+
"point": -2497.3001465433367,
|
338
|
+
"time_zone": "Asia/Novosibirsk",
|
339
|
+
"city": "Mayertberg"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"id": 47,
|
343
|
+
"name": "Miss Boyd Murphy",
|
344
|
+
"created_at": "2015-10-08 07:16:27 +0900",
|
345
|
+
"point": 1403.873993878982,
|
346
|
+
"time_zone": "America/Monterrey",
|
347
|
+
"city": "New Dominiquemouth"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"id": 48,
|
351
|
+
"name": "Neva Schoen I",
|
352
|
+
"created_at": "2015-10-08 12:26:52 +0900",
|
353
|
+
"point": -1890.4195253224461,
|
354
|
+
"time_zone": "America/Godthab",
|
355
|
+
"city": "Shanahanville"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"id": 49,
|
359
|
+
"name": "Junius Ziemann",
|
360
|
+
"created_at": "2015-10-08 08:43:37 +0900",
|
361
|
+
"point": 4854.305137713357,
|
362
|
+
"time_zone": "Europe/Copenhagen",
|
363
|
+
"city": "Port Nedra"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"id": 50,
|
367
|
+
"name": "Kathlyn Olson DDS",
|
368
|
+
"created_at": "2015-10-08 07:49:02 +0900",
|
369
|
+
"point": -2918.253163962578,
|
370
|
+
"time_zone": "Europe/Minsk",
|
371
|
+
"city": "Gutkowskiburgh"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"id": 51,
|
375
|
+
"name": "Mr. Kiel Welch",
|
376
|
+
"created_at": "2015-10-08 13:55:18 +0900",
|
377
|
+
"point": 1522.8163959917383,
|
378
|
+
"time_zone": "Europe/Ljubljana",
|
379
|
+
"city": "Kyleighbury"
|
380
|
+
},
|
381
|
+
{
|
382
|
+
"id": 52,
|
383
|
+
"name": "Sandra Von",
|
384
|
+
"created_at": "2015-10-09 16:51:58 +0900",
|
385
|
+
"point": -3155.2462624764376,
|
386
|
+
"time_zone": "America/Mexico_City",
|
387
|
+
"city": "Lake Alessandroside"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"id": 53,
|
391
|
+
"name": "Meta Hammes III",
|
392
|
+
"created_at": "2015-10-08 04:03:56 +0900",
|
393
|
+
"point": 4668.741752040007,
|
394
|
+
"time_zone": "Asia/Magadan",
|
395
|
+
"city": "Mozellefurt"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"id": 54,
|
399
|
+
"name": "Mrs. Duane Smith",
|
400
|
+
"created_at": "2015-10-08 08:59:09 +0900",
|
401
|
+
"point": -3436.209096345507,
|
402
|
+
"time_zone": "Pacific/Fakaofo",
|
403
|
+
"city": "West Noeville"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"id": 55,
|
407
|
+
"name": "Shirley Macejkovic DVM",
|
408
|
+
"created_at": "2015-10-08 02:26:33 +0900",
|
409
|
+
"point": 3851.247934710875,
|
410
|
+
"time_zone": "Asia/Magadan",
|
411
|
+
"city": "Bonitaville"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"id": 56,
|
415
|
+
"name": "Viola Hickle",
|
416
|
+
"created_at": "2015-10-08 07:47:16 +0900",
|
417
|
+
"point": -3300.195384060832,
|
418
|
+
"time_zone": "Asia/Magadan",
|
419
|
+
"city": "Jodiehaven"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"id": 57,
|
423
|
+
"name": "Myrl Kuhlman",
|
424
|
+
"created_at": "2015-10-09 13:18:48 +0900",
|
425
|
+
"point": 4381.735642531398,
|
426
|
+
"time_zone": "Pacific/Port_Moresby",
|
427
|
+
"city": "North Dianafort"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"id": 58,
|
431
|
+
"name": "Ms. Jan Dietrich",
|
432
|
+
"created_at": "2015-10-08 10:54:31 +0900",
|
433
|
+
"point": -4471.3905053455655,
|
434
|
+
"time_zone": "Asia/Muscat",
|
435
|
+
"city": "Hilllfort"
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"id": 59,
|
439
|
+
"name": "Daisy Ankunding",
|
440
|
+
"created_at": "2015-10-09 19:28:12 +0900",
|
441
|
+
"point": 4173.015712821216,
|
442
|
+
"time_zone": "Asia/Kolkata",
|
443
|
+
"city": "Darianaport"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"id": 60,
|
447
|
+
"name": "Petra Reynolds",
|
448
|
+
"created_at": "2015-10-08 13:53:00 +0900",
|
449
|
+
"point": -4416.836688149504,
|
450
|
+
"time_zone": "Asia/Bangkok",
|
451
|
+
"city": "East Aricview"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"id": 61,
|
455
|
+
"name": "Roel Pouros PhD",
|
456
|
+
"created_at": "2015-10-09 07:14:08 +0900",
|
457
|
+
"point": 4726.57138609314,
|
458
|
+
"time_zone": "America/Halifax",
|
459
|
+
"city": "North Linaberg"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"id": 62,
|
463
|
+
"name": "Mavis Blanda",
|
464
|
+
"created_at": "2015-10-09 05:00:56 +0900",
|
465
|
+
"point": -1055.8681106567933,
|
466
|
+
"time_zone": "Asia/Kuwait",
|
467
|
+
"city": "East Jeremy"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"id": 63,
|
471
|
+
"name": "Noe Grant",
|
472
|
+
"created_at": "2015-10-08 20:56:18 +0900",
|
473
|
+
"point": 2229.7699353153303,
|
474
|
+
"time_zone": "America/Guyana",
|
475
|
+
"city": "Beattymouth"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"id": 64,
|
479
|
+
"name": "Mr. Anastasia Mitchell",
|
480
|
+
"created_at": "2015-10-09 06:11:02 +0900",
|
481
|
+
"point": -1039.756094094991,
|
482
|
+
"time_zone": "Asia/Bangkok",
|
483
|
+
"city": "South Brooklynburgh"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"id": 65,
|
487
|
+
"name": "Violette Spencer I",
|
488
|
+
"created_at": "2015-10-09 15:59:36 +0900",
|
489
|
+
"point": 2358.3637832250274,
|
490
|
+
"time_zone": "Atlantic/Azores",
|
491
|
+
"city": "Judsonfurt"
|
492
|
+
},
|
493
|
+
{
|
494
|
+
"id": 66,
|
495
|
+
"name": "Juvenal Ebert DVM",
|
496
|
+
"created_at": "2015-10-08 19:11:07 +0900",
|
497
|
+
"point": -1260.3303287246836,
|
498
|
+
"time_zone": "Asia/Bangkok",
|
499
|
+
"city": "West Kevinside"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"id": 67,
|
503
|
+
"name": "Colton Schiller",
|
504
|
+
"created_at": "2015-10-08 01:00:45 +0900",
|
505
|
+
"point": 11.506969994260869,
|
506
|
+
"time_zone": "Asia/Yakutsk",
|
507
|
+
"city": "West Jalen"
|
508
|
+
},
|
509
|
+
{
|
510
|
+
"id": 68,
|
511
|
+
"name": "Eleanora Erdman",
|
512
|
+
"created_at": "2015-10-09 21:10:28 +0900",
|
513
|
+
"point": -2459.4029364271955,
|
514
|
+
"time_zone": "Europe/Amsterdam",
|
515
|
+
"city": "Doyleville"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"id": 69,
|
519
|
+
"name": "Rocky Leffler",
|
520
|
+
"created_at": "2015-10-08 10:54:52 +0900",
|
521
|
+
"point": 1280.2051272411245,
|
522
|
+
"time_zone": "Pacific/Fiji",
|
523
|
+
"city": "West Caroleland"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"id": 70,
|
527
|
+
"name": "Darrin Muller",
|
528
|
+
"created_at": "2015-10-08 10:14:03 +0900",
|
529
|
+
"point": -381.34169736430795,
|
530
|
+
"time_zone": "America/Lima",
|
531
|
+
"city": "New Harmony"
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"id": 71,
|
535
|
+
"name": "Tabitha Moen",
|
536
|
+
"created_at": "2015-10-09 05:12:22 +0900",
|
537
|
+
"point": 2910.8199919959493,
|
538
|
+
"time_zone": "Asia/Kolkata",
|
539
|
+
"city": "Weberhaven"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"id": 72,
|
543
|
+
"name": "Asha Von MD",
|
544
|
+
"created_at": "2015-10-08 01:56:38 +0900",
|
545
|
+
"point": -316.4225529770374,
|
546
|
+
"time_zone": "America/Juneau",
|
547
|
+
"city": "East Julian"
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"id": 73,
|
551
|
+
"name": "Miss Gabriel Bayer",
|
552
|
+
"created_at": "2015-10-08 03:11:54 +0900",
|
553
|
+
"point": 1576.7888077057319,
|
554
|
+
"time_zone": "Europe/Berlin",
|
555
|
+
"city": "Sawaynbury"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"id": 74,
|
559
|
+
"name": "Audrey DuBuque DVM",
|
560
|
+
"created_at": "2015-10-09 07:25:50 +0900",
|
561
|
+
"point": -2305.629050789605,
|
562
|
+
"time_zone": "Atlantic/Cape_Verde",
|
563
|
+
"city": "Ferrymouth"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"id": 75,
|
567
|
+
"name": "Benny Rogahn",
|
568
|
+
"created_at": "2015-10-08 05:16:06 +0900",
|
569
|
+
"point": 2237.846106006479,
|
570
|
+
"time_zone": "America/La_Paz",
|
571
|
+
"city": "Thielview"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"id": 76,
|
575
|
+
"name": "Tomasa Haley",
|
576
|
+
"created_at": "2015-10-08 06:56:00 +0900",
|
577
|
+
"point": -980.1216754796583,
|
578
|
+
"time_zone": "Africa/Monrovia",
|
579
|
+
"city": "Port Tiara"
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"id": 77,
|
583
|
+
"name": "Ms. Taylor Gaylord",
|
584
|
+
"created_at": "2015-10-08 01:21:25 +0900",
|
585
|
+
"point": 1615.1952178961872,
|
586
|
+
"time_zone": "Europe/Dublin",
|
587
|
+
"city": "West Andrestown"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"id": 78,
|
591
|
+
"name": "Mrs. Dena Johns",
|
592
|
+
"created_at": "2015-10-08 19:01:19 +0900",
|
593
|
+
"point": -2557.417108660311,
|
594
|
+
"time_zone": "Asia/Tashkent",
|
595
|
+
"city": "South Duncan"
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"id": 79,
|
599
|
+
"name": "Landen Considine",
|
600
|
+
"created_at": "2015-10-09 09:15:02 +0900",
|
601
|
+
"point": 1302.6488186237543,
|
602
|
+
"time_zone": "America/Chihuahua",
|
603
|
+
"city": "East Jaysonburgh"
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"id": 80,
|
607
|
+
"name": "Marlin Satterfield",
|
608
|
+
"created_at": "2015-10-08 08:01:11 +0900",
|
609
|
+
"point": -4870.252988755076,
|
610
|
+
"time_zone": "America/La_Paz",
|
611
|
+
"city": "Thompsonview"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"id": 81,
|
615
|
+
"name": "Dylan Hettinger DVM",
|
616
|
+
"created_at": "2015-10-08 10:34:03 +0900",
|
617
|
+
"point": 4949.271879508786,
|
618
|
+
"time_zone": "Asia/Tokyo",
|
619
|
+
"city": "Casperport"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"id": 82,
|
623
|
+
"name": "Willis Littel",
|
624
|
+
"created_at": "2015-10-09 08:15:31 +0900",
|
625
|
+
"point": -112.5553034876857,
|
626
|
+
"time_zone": "Pacific/Fakaofo",
|
627
|
+
"city": "Wolfland"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"id": 83,
|
631
|
+
"name": "Mrs. Murray Grady",
|
632
|
+
"created_at": "2015-10-09 12:25:23 +0900",
|
633
|
+
"point": 607.804021615434,
|
634
|
+
"time_zone": "Europe/Bratislava",
|
635
|
+
"city": "Deanton"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"id": 84,
|
639
|
+
"name": "Dr. Haven Schneider",
|
640
|
+
"created_at": "2015-10-09 05:02:19 +0900",
|
641
|
+
"point": -2888.309499708397,
|
642
|
+
"time_zone": "Europe/Riga",
|
643
|
+
"city": "Ilashire"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"id": 85,
|
647
|
+
"name": "Athena Orn I",
|
648
|
+
"created_at": "2015-10-09 03:24:16 +0900",
|
649
|
+
"point": 3359.0697846305143,
|
650
|
+
"time_zone": "Pacific/Auckland",
|
651
|
+
"city": "South Chelsea"
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"id": 86,
|
655
|
+
"name": "Eugene Bergstrom",
|
656
|
+
"created_at": "2015-10-09 01:50:45 +0900",
|
657
|
+
"point": -1698.2172261897067,
|
658
|
+
"time_zone": "Asia/Baku",
|
659
|
+
"city": "New Rasheedberg"
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"id": 87,
|
663
|
+
"name": "Janis Bogisich",
|
664
|
+
"created_at": "2015-10-09 22:40:16 +0900",
|
665
|
+
"point": 3789.6256952961126,
|
666
|
+
"time_zone": "Australia/Perth",
|
667
|
+
"city": "Gorczanychester"
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"id": 88,
|
671
|
+
"name": "Rex Wehner IV",
|
672
|
+
"created_at": "2015-10-09 17:26:47 +0900",
|
673
|
+
"point": -4105.437590705595,
|
674
|
+
"time_zone": "Africa/Cairo",
|
675
|
+
"city": "Jolieport"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"id": 89,
|
679
|
+
"name": "Dr. Jennie Stamm",
|
680
|
+
"created_at": "2015-10-09 06:00:09 +0900",
|
681
|
+
"point": 2725.954007282888,
|
682
|
+
"time_zone": "Europe/Belgrade",
|
683
|
+
"city": "Victoriaborough"
|
684
|
+
},
|
685
|
+
{
|
686
|
+
"id": 90,
|
687
|
+
"name": "Elena Cremin",
|
688
|
+
"created_at": "2015-10-08 07:16:03 +0900",
|
689
|
+
"point": -2574.0362894364553,
|
690
|
+
"time_zone": "Asia/Kabul",
|
691
|
+
"city": "Esperanzahaven"
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"id": 91,
|
695
|
+
"name": "Alf McClure",
|
696
|
+
"created_at": "2015-10-08 15:02:30 +0900",
|
697
|
+
"point": 3952.5961266154736,
|
698
|
+
"time_zone": "America/New_York",
|
699
|
+
"city": "New Andrew"
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"id": 92,
|
703
|
+
"name": "Brittany Senger",
|
704
|
+
"created_at": "2015-10-09 17:36:09 +0900",
|
705
|
+
"point": -3464.7458471562086,
|
706
|
+
"time_zone": "Pacific/Tongatapu",
|
707
|
+
"city": "Lake Tanya"
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"id": 93,
|
711
|
+
"name": "Eloise Armstrong II",
|
712
|
+
"created_at": "2015-10-08 18:33:34 +0900",
|
713
|
+
"point": 1722.190030337266,
|
714
|
+
"time_zone": "Europe/Belgrade",
|
715
|
+
"city": "East Eloyhaven"
|
716
|
+
},
|
717
|
+
{
|
718
|
+
"id": 94,
|
719
|
+
"name": "Alvena Fritsch",
|
720
|
+
"created_at": "2015-10-08 05:37:54 +0900",
|
721
|
+
"point": -2815.122499864975,
|
722
|
+
"time_zone": "Europe/Vienna",
|
723
|
+
"city": "Isidroshire"
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"id": 95,
|
727
|
+
"name": "Dakota Auer V",
|
728
|
+
"created_at": "2015-10-09 16:12:02 +0900",
|
729
|
+
"point": 809.1742182763854,
|
730
|
+
"time_zone": "Africa/Cairo",
|
731
|
+
"city": "Josiemouth"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"id": 96,
|
735
|
+
"name": "Hassie Schneider",
|
736
|
+
"created_at": "2015-10-08 00:42:19 +0900",
|
737
|
+
"point": -2708.5565989412726,
|
738
|
+
"time_zone": "Asia/Tokyo",
|
739
|
+
"city": "North Kelsie"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"id": 97,
|
743
|
+
"name": "Princess Fritsch",
|
744
|
+
"created_at": "2015-10-08 08:09:39 +0900",
|
745
|
+
"point": 4055.2600143046343,
|
746
|
+
"time_zone": "Europe/Rome",
|
747
|
+
"city": "East Adrienne"
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"id": 98,
|
751
|
+
"name": "Clifton Beier",
|
752
|
+
"created_at": "2015-10-09 17:01:51 +0900",
|
753
|
+
"point": -3262.5307114622906,
|
754
|
+
"time_zone": "Europe/Istanbul",
|
755
|
+
"city": "North Monica"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"id": 99,
|
759
|
+
"name": "Mr. Madonna Turcotte",
|
760
|
+
"created_at": "2015-10-09 11:53:25 +0900",
|
761
|
+
"point": 2920.258750914629,
|
762
|
+
"time_zone": "Pacific/Auckland",
|
763
|
+
"city": "Jaronchester"
|
764
|
+
}
|
765
|
+
]
|