-
Notifications
You must be signed in to change notification settings - Fork 0
/
topojson_map.view.lkml
129 lines (104 loc) · 2.37 KB
/
topojson_map.view.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# view: topojson_map {
# sql_table_name: giants.topojson_map ;;
# dimension: id {
# primary_key: yes
# type: number
# sql: ${TABLE}.id ;;
# }
# dimension: {
# type: string
# sql: ${TABLE}.`||` ;;
# }
# dimension: {
# type: string
# sql: ${TABLE}.`|` ;;
# }
# dimension: 1 {
# type: string
# sql: ${TABLE}.`|001` ;;
# }
# dimension: 1 {
# type: string
# sql: ${TABLE}.`||001` ;;
# }
# dimension: 2 {
# type: string
# sql: ${TABLE}.`|002` ;;
# }
# dimension: 2 {
# type: string
# sql: ${TABLE}.`||002` ;;
# }
# dimension: __giants__ {
# type: string
# sql: ${TABLE}.`|__giants__|` ;;
# }
# dimension: __giants____arcs {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs-` ;;
# }
# dimension: __giants____arcs001 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs001` ;;
# }
# dimension: __giants____arcs002 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs002` ;;
# }
# dimension: __giants____arcs003 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs003` ;;
# }
# dimension: __giants____arcs004 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs004` ;;
# }
# dimension: __giants____arcs005 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs005` ;;
# }
# dimension: __giants____arcs006 {
# type: string
# sql: ${TABLE}.`|__giants__|__arcs006` ;;
# }
# dimension: __giants____properties__centroid001 {
# type: string
# sql: ${TABLE}.`|__giants__|__properties__centroid001` ;;
# }
# dimension: __giants____properties__centroid002 {
# type: string
# sql: ${TABLE}.`|__giants__|__properties__centroid002` ;;
# }
# dimension: __giants____type {
# type: string
# sql: ${TABLE}.`|__giants__|__type` ;;
# }
# dimension: __giants__type {
# type: string
# sql: ${TABLE}.`|__giants__type` ;;
# }
# dimension: label {
# type: string
# sql: ${TABLE}.label ;;
# }
# dimension: name {
# type: string
# sql: ${TABLE}.name ;;
# }
# dimension: section_id {
# type: string
# sql: ${TABLE}.section_id ;;
# }
# dimension: topo {
# type: string
# sql: ${TABLE}.topo ;;
# }
# dimension: type {
# type: string
# sql: ${TABLE}.type ;;
# }
# measure: count {
# type: count
# drill_fields: [id, name]
# }
# }