-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.yaml
More file actions
1331 lines (1290 loc) · 42.9 KB
/
metadata.yaml
File metadata and controls
1331 lines (1290 loc) · 42.9 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: Reading Stats
description: Reading statistics from Kobo Clara and Kindle eReaders
extra_css_urls:
- /static/custom.css
databases:
KoboReader:
tables:
content:
hidden: true
Event:
hidden: true
Activity:
hidden: true
Bookmark:
hidden: true
AnalyticsEvents:
hidden: true
Achievement:
hidden: true
Authors:
hidden: true
BookAuthors:
hidden: true
DbVersion:
hidden: true
DropboxItem:
hidden: true
GDriveItem:
hidden: true
KoboPlusAssetGroup:
hidden: true
KoboPlusAssets:
hidden: true
OverDriveCards:
hidden: true
OverDriveCheckoutBook:
hidden: true
OverDriveLibrary:
hidden: true
Reviews:
hidden: true
Rules:
hidden: true
Shelf:
hidden: true
ShelfContent:
hidden: true
SubscriptionProducts:
hidden: true
SyncQueue:
hidden: true
Tab:
hidden: true
Wishlist:
hidden: true
WordList:
hidden: true
content_keys:
hidden: true
content_settings:
hidden: true
ratings:
hidden: true
shortcover_page:
hidden: true
user:
hidden: true
volume_shortcovers:
hidden: true
volume_tabs:
hidden: true
AbTest:
hidden: true
queries:
books_reading_progress:
hide_sql: true
title: Books - Reading Progress
sql: |
select
c.Title,
c.Attribution as Author,
c.___PercentRead as "% Read",
CAST(ROUND(w.total_words / 250.0) AS INTEGER) as "Pages (pb)",
CAST(ROUND(w.total_words * c.___PercentRead / 100.0 / 250.0) AS INTEGER) as "Read (pb)",
case
when c.TimeSpentReading >= 3600
then cast(c.TimeSpentReading / 3600 as text) || 'h '
|| cast((c.TimeSpentReading % 3600) / 60 as text) || 'm'
when c.TimeSpentReading >= 60
then cast(c.TimeSpentReading / 60 as text) || 'm'
when c.TimeSpentReading > 0
then cast(c.TimeSpentReading as text) || 's'
else '-'
end as "Time Spent",
case c.ReadStatus
when 0 then 'Not started'
when 1 then 'Reading'
when 2 then 'Finished'
else c.ReadStatus
end as Status,
c.DateLastRead as "Last Read"
from content c
left join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = c.Title
where c.ContentType = 6 and c.ContentID like 'file://%'
order by c.TimeSpentReading desc
reading_sessions:
hide_sql: true
title: Reading Sessions
sql: |
select
a.Timestamp,
json_extract(a.Attributes, '$.title') as Book,
json_extract(a.Metrics, '$.SecondsRead') as "Seconds Read",
json_extract(a.Metrics, '$.PagesTurned') as "Screen Pages",
CAST(ROUND(
json_extract(a.Metrics, '$.PagesTurned') * r.wpp / 250.0
) AS INTEGER) as "Paperback Pages",
CAST(ROUND(
cast(json_extract(a.Metrics, '$.SecondsRead') as float) / nullif(
json_extract(a.Metrics, '$.PagesTurned') * r.wpp / 250.0, 0)
) AS INTEGER) as "Sec/Page (pb)"
from AnalyticsEvents a
left join (
select
json_extract(a2.Attributes, '$.title') as title,
w.total_words * b.percent_read / 100.0
/ SUM(json_extract(a2.Metrics, '$.PagesTurned')) as wpp
from AnalyticsEvents a2
join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = json_extract(a2.Attributes, '$.title')
join (
select Title, ___PercentRead as percent_read
from content where ContentType = 6 and ContentID like 'file://%'
) b on b.Title = json_extract(a2.Attributes, '$.title')
where a2.Type = 'LeaveContent' and json_extract(a2.Metrics, '$.PagesTurned') > 0
group by json_extract(a2.Attributes, '$.title')
) r on r.title = json_extract(a.Attributes, '$.title')
where a.Type = 'LeaveContent'
and json_extract(a.Metrics, '$.SecondsRead') >= 60
order by a.Timestamp desc
dictionary_lookups:
hide_sql: true
title: Dictionary Lookups
sql: |
select
Timestamp,
json_extract(Attributes, '$.Word') as Word,
json_extract(Attributes, '$.Dictionary') as Language
from AnalyticsEvents
where Type = 'DictionaryLookup'
order by Timestamp desc
KindleReader:
tables:
kindle_books:
hidden: true
kindle_page_history:
hidden: true
vocab_lookups:
hidden: true
clippings:
hidden: true
koreader_books:
hidden: true
koreader_page_stats:
hidden: true
collections:
hidden: true
queries:
kindle_books_list:
hide_sql: true
title: Kindle Books - Reading Time
sql: |
select
book_name as Book,
cast(total_time / 3600 as text) || 'h '
|| cast((total_time % 3600) / 60 as text) || 'm' as "Time Spent",
total_words as "Words Read",
book_words as "Book Words",
round(total_percent, 1) || '%' as "% Read",
last_read as "Last Read"
from kindle_books
order by total_time desc
kindle_highlights:
hide_sql: true
title: Kindle Highlights & Notes
sql: |
select
book_title as Book,
book_author as Author,
clip_type as Type,
content as Content,
page as Page,
added_date as Date
from clippings
where clip_type != 'bookmark'
order by added_date desc
kindle_vocabulary:
hide_sql: true
title: Vocabulary Lookups
sql: |
select
word as Word,
stem as Stem,
language as Language,
book_title as Book,
usage_text as Context,
lookup_date as Date
from vocab_lookups
order by timestamp desc
kindle_reading_sessions:
hide_sql: true
title: KOReader Daily Sessions
sql: |
select
date(start_time, 'unixepoch', 'localtime') as day,
b.title as Book,
round(sum(duration) / 60.0) as minutes
from koreader_page_stats ps
join koreader_books b on ps.id_book = b.id
group by day, b.title
order by day desc
plugins:
datasette-dashboards:
reading-stats:
title: Kobo Reading Stats
description: ""
allow_fullscreen: true
layout:
- [total-books, books-finished, books-reading, total-time]
- [time-chart, time-chart, progress-chart, progress-chart]
- [daily-time, daily-time, daily-pages, daily-pages]
- [hourly-heatmap, hourly-heatmap, hourly-heatmap, hourly-heatmap]
- [session-speed, session-speed, dict-words, dict-words]
- [recently-read, recently-read, currently-reading, currently-reading]
charts:
total-books:
title: Total Books
db: KoboReader
query: >
select count(*) as count
from content
where ContentType = 6 and ContentID like 'file://%'
library: metric
display:
field: count
suffix: " books"
books-finished:
title: Finished
db: KoboReader
query: >
select count(*) as count
from content
where ContentType = 6 and ContentID like 'file://%' and ReadStatus = 2
library: metric
display:
field: count
suffix: " done"
books-reading:
title: In Progress
db: KoboReader
query: >
select count(*) as count
from content
where ContentType = 6 and ContentID like 'file://%' and ReadStatus = 1
library: metric
display:
field: count
suffix: " reading"
total-time:
title: Total Reading Time
db: KoboReader
query: >
select cast(round(sum(TimeSpentReading) / 3600.0) as int) as hours
from content
where ContentType = 6 and ContentID like 'file://%'
library: metric
display:
field: hours
suffix: " hours"
time-chart:
title: Reading Time by Book
db: KoboReader
query: |
select
c.Title as book,
round(c.TimeSpentReading / 3600.0, 1) as hours,
CAST(ROUND(w.total_words / 250.0) AS INTEGER) as pages
from content c
left join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = c.Title
where c.ContentType = 6 and c.ContentID like 'file://%' and c.TimeSpentReading > 0
order by c.TimeSpentReading desc
library: vega-lite
display:
params:
- name: hover
select:
type: point
"on": pointerover
clear: pointerout
mark:
type: bar
cursor: pointer
encoding:
y:
field: book
type: nominal
sort: "-x"
x:
field: hours
type: quantitative
title: Hours
tooltip:
- {field: book, type: nominal, title: Book}
- {field: hours, type: quantitative, title: Hours}
- {field: pages, type: quantitative, title: "Paperback pages"}
fillOpacity:
condition:
param: hover
value: 1
value: 0.7
progress-chart:
title: Reading Progress (paperback pages)
db: KoboReader
query: |
select
c.Title as book,
CAST(ROUND(w.total_words * c.___PercentRead / 100.0 / 250.0) AS INTEGER) as pages_read,
CAST(ROUND(w.total_words / 250.0) AS INTEGER) as pages_total,
c.___PercentRead as pct
from content c
join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = c.Title
where c.ContentType = 6 and c.ContentID like 'file://%' and c.TimeSpentReading > 0
order by pages_read desc
library: vega-lite
display:
layer:
- mark:
type: bar
color: "#e0e0e0"
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_total
type: quantitative
title: Pages
tooltip:
- {field: book, type: nominal, title: Book}
- {field: pages_total, type: quantitative, title: "Total pages"}
- {field: pages_read, type: quantitative, title: "Pages read"}
- {field: pct, type: quantitative, title: "% Read"}
- mark:
type: bar
color: "#4c78a8"
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_read
type: quantitative
tooltip:
- {field: book, type: nominal, title: Book}
- {field: pages_total, type: quantitative, title: "Total pages"}
- {field: pages_read, type: quantitative, title: "Pages read"}
- {field: pct, type: quantitative, title: "% Read"}
- mark:
type: text
align: left
dx: 3
fontSize: 11
color: "#333"
transform:
- calculate: "datum.pct + '%'"
as: label
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_read
type: quantitative
text:
field: label
type: nominal
daily-time:
title: Daily Reading Time
db: KoboReader
query: |
select
date(Timestamp) as day,
round(sum(json_extract(Metrics, '$.SecondsRead')) / 60.0) as minutes,
json_extract(Attributes, '$.title') as book
from AnalyticsEvents
where Type = 'LeaveContent'
and json_extract(Metrics, '$.SecondsRead') >= 60
group by day, book
order by day
library: vega-lite
display:
params:
- name: bookFilter
select:
type: point
fields: [book]
bind: legend
mark:
type: bar
tooltip: true
encoding:
x:
field: day
type: ordinal
title: null
y:
field: minutes
type: quantitative
title: Minutes
color:
field: book
type: nominal
title: Book
opacity:
condition:
param: bookFilter
value: 1
value: 0.15
daily-pages:
title: Daily Pages Read (paperback)
db: KoboReader
query: |
with book_ratio as (
select
json_extract(a.Attributes, '$.title') as title,
w.total_words * b.percent_read / 100.0
/ SUM(json_extract(a.Metrics, '$.PagesTurned')) as wpp
from AnalyticsEvents a
join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = json_extract(a.Attributes, '$.title')
join (
select Title, ___PercentRead as percent_read
from content where ContentType = 6 and ContentID like 'file://%'
) b on b.Title = json_extract(a.Attributes, '$.title')
where a.Type = 'LeaveContent' and json_extract(a.Metrics, '$.PagesTurned') > 0
group by json_extract(a.Attributes, '$.title')
)
select
date(a.Timestamp) as day,
json_extract(a.Attributes, '$.title') as book,
CAST(ROUND(SUM(json_extract(a.Metrics, '$.PagesTurned')) * r.wpp / 250.0) AS INTEGER) as pages
from AnalyticsEvents a
join book_ratio r on r.title = json_extract(a.Attributes, '$.title')
where a.Type = 'LeaveContent' and json_extract(a.Metrics, '$.SecondsRead') >= 60
group by day, json_extract(a.Attributes, '$.title')
order by day
library: vega-lite
display:
params:
- name: bookFilter
select:
type: point
fields: [book]
bind: legend
mark:
type: bar
tooltip: true
encoding:
x:
field: day
type: ordinal
title: null
y:
field: pages
type: quantitative
title: Pages
color:
field: book
type: nominal
title: Book
opacity:
condition:
param: bookFilter
value: 1
value: 0.15
hourly-heatmap:
title: Reading by Hour of Day
db: KoboReader
query: |
select
cast(strftime('%H', Timestamp) as integer) as hour,
date(Timestamp) as day,
round(sum(json_extract(Metrics, '$.SecondsRead')) / 60.0) as minutes
from AnalyticsEvents
where Type = 'LeaveContent'
and json_extract(Metrics, '$.SecondsRead') >= 60
group by day, hour
order by day, hour
library: vega-lite
display:
mark:
type: rect
tooltip: true
encoding:
x:
field: day
type: ordinal
title: null
y:
field: hour
type: ordinal
title: Hour
sort: "ascending"
color:
field: minutes
type: quantitative
title: Minutes
scale:
scheme: blues
session-speed:
title: Reading Speed (sec per paperback page)
db: KoboReader
query: |
with book_ratio as (
select
json_extract(a.Attributes, '$.title') as title,
w.total_words * b.percent_read / 100.0
/ SUM(json_extract(a.Metrics, '$.PagesTurned')) as wpp
from AnalyticsEvents a
join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = json_extract(a.Attributes, '$.title')
join (
select Title, ___PercentRead as percent_read
from content where ContentType = 6 and ContentID like 'file://%'
) b on b.Title = json_extract(a.Attributes, '$.title')
where a.Type = 'LeaveContent' and json_extract(a.Metrics, '$.PagesTurned') > 0
group by json_extract(a.Attributes, '$.title')
)
select
a.Timestamp as ts,
json_extract(a.Attributes, '$.title') as book,
CAST(ROUND(
cast(json_extract(a.Metrics, '$.SecondsRead') as float)
/ nullif(json_extract(a.Metrics, '$.PagesTurned') * r.wpp / 250.0, 0)
) AS INTEGER) as sec_per_page,
CAST(ROUND(json_extract(a.Metrics, '$.PagesTurned') * r.wpp / 250.0) AS INTEGER) as pages
from AnalyticsEvents a
join book_ratio r on r.title = json_extract(a.Attributes, '$.title')
where a.Type = 'LeaveContent'
and json_extract(a.Metrics, '$.SecondsRead') >= 60
and json_extract(a.Metrics, '$.PagesTurned') > 2
order by a.Timestamp
library: vega-lite
display:
params:
- name: bookFilter
select:
type: point
fields: [book]
bind: legend
- name: brush
select:
type: interval
encodings: [x]
mark:
type: point
filled: true
cursor: pointer
encoding:
x:
field: ts
type: temporal
title: null
y:
field: sec_per_page
type: quantitative
title: Sec / Page
color:
condition:
param: brush
field: book
type: nominal
title: Book
value: lightgray
size:
field: pages
type: quantitative
title: Pages
opacity:
condition:
param: bookFilter
value: 1
value: 0.15
tooltip:
- {field: book, type: nominal, title: Book}
- {field: ts, type: temporal, title: Time}
- {field: sec_per_page, type: quantitative, title: "Sec/page"}
- {field: pages, type: quantitative, title: Pages}
dict-words:
title: Dictionary Lookups
db: KoboReader
query: |
select
json_extract(Attributes, '$.Word') as word,
count(*) as lookups
from AnalyticsEvents
where Type = 'DictionaryLookup'
group by word
order by lookups desc
limit 30
library: vega-lite
display:
params:
- name: hover
select:
type: point
"on": pointerover
clear: pointerout
mark:
type: bar
cursor: pointer
encoding:
y:
field: word
type: nominal
sort: "-x"
title: null
x:
field: lookups
type: quantitative
title: Lookups
tooltip:
- {field: word, type: nominal, title: Word}
- {field: lookups, type: quantitative, title: Lookups}
fillOpacity:
condition:
param: hover
value: 1
value: 0.7
recently-read:
title: Recently Read
db: KoboReader
query: |
select
c.Title,
c.Attribution as Author,
CAST(ROUND(w.total_words * c.___PercentRead / 100.0 / 250.0) AS INTEGER)
|| ' / ' || CAST(ROUND(w.total_words / 250.0) AS INTEGER) as "Pages (pb)",
c.___PercentRead || '%' as Progress,
cast(c.TimeSpentReading / 3600 as text) || 'h '
|| cast((c.TimeSpentReading % 3600) / 60 as text) || 'm'
as "Time Spent",
case c.ReadStatus
when 0 then 'Not started'
when 1 then 'Reading'
when 2 then 'Finished'
end as Status,
c.DateLastRead as "Last Read"
from content c
left join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = c.Title
where c.ContentType = 6 and c.ContentID like 'file://%' and c.TimeSpentReading > 0
order by c.DateLastRead desc
library: table
display: {}
currently-reading:
title: Currently Reading
db: KoboReader
query: |
select
c.Title,
c.Attribution as Author,
CAST(ROUND(w.total_words * c.___PercentRead / 100.0 / 250.0) AS INTEGER)
|| ' / ' || CAST(ROUND(w.total_words / 250.0) AS INTEGER) as "Pages (pb)",
c.___PercentRead || '%' as Progress,
cast(c.TimeSpentReading / 3600 as text) || 'h '
|| cast((c.TimeSpentReading % 3600) / 60 as text) || 'm'
as "Time Spent",
c.DateLastRead as "Last Read"
from content c
left join (
select BookTitle, SUM(WordCount) as total_words
from content where ContentType IN (9, 899) and WordCount > 0 and BookTitle IS NOT NULL
group by BookTitle
) w on w.BookTitle = c.Title
where c.ContentType = 6 and c.ContentID like 'file://%' and c.ReadStatus = 1
order by c.DateLastRead desc
library: table
display: {}
kindle-stats:
title: Kindle Reading Stats
description: ""
allow_fullscreen: true
layout:
- [k-total-books, k-books-finished, k-books-reading, k-total-time]
- [k-time-chart, k-time-chart, k-progress-chart, k-progress-chart]
- [k-daily-koreader, k-daily-koreader, k-daily-pages, k-daily-pages]
- [k-hourly-heatmap, k-hourly-heatmap, k-hourly-heatmap, k-hourly-heatmap]
- [k-session-speed, k-session-speed, k-top-words, k-top-words]
- [k-recently-read, k-recently-read, k-currently-reading, k-currently-reading]
- [k-timeline, k-timeline, k-timeline, k-timeline]
- [k-vocab-by-book, k-vocab-by-book, k-clippings-timeline, k-clippings-timeline]
- [k-book-list, k-book-list, k-highlights-list, k-highlights-list]
charts:
k-total-books:
title: Total Books
db: KindleReader
query: >
select count(*) as count from kindle_books
library: metric
display:
field: count
suffix: " books"
k-total-time:
title: Total Reading Time
db: KindleReader
query: >
select cast(round(sum(total_time) / 3600.0) as int) as hours from kindle_books
library: metric
display:
field: hours
suffix: " hours"
k-books-finished:
title: Finished
db: KindleReader
query: >
select count(*) as count from kindle_books
where book_words > 0 and total_words * 100.0 / book_words >= 80
library: metric
display:
field: count
suffix: " done"
k-books-reading:
title: In Progress
db: KindleReader
query: >
select count(*) as count from kindle_books
where book_words > 0 and total_words > 0
and total_words * 100.0 / book_words < 80
library: metric
display:
field: count
suffix: " reading"
k-time-chart:
title: Reading Time by Book
db: KindleReader
query: |
select
book_name as book,
round(total_time / 3600.0, 1) as hours
from kindle_books
where total_time > 0
order by total_time desc
library: vega-lite
display:
params:
- name: hover
select:
type: point
"on": pointerover
clear: pointerout
mark:
type: bar
cursor: pointer
encoding:
y:
field: book
type: nominal
sort: "-x"
x:
field: hours
type: quantitative
title: Hours
tooltip:
- {field: book, type: nominal, title: Book}
- {field: hours, type: quantitative, title: Hours}
fillOpacity:
condition:
param: hover
value: 1
value: 0.7
k-progress-chart:
title: Reading Progress (est. paperback pages)
db: KindleReader
query: |
select
book_name as book,
cast(round(total_words / 250.0) as integer) as pages_read,
cast(round(book_words / 250.0) as integer) as pages_total,
round(total_words * 100.0 / book_words, 1) as pct
from kindle_books
where total_time > 0 and book_words > 0
order by pages_read desc
library: vega-lite
display:
layer:
- mark:
type: bar
color: "#e0e0e0"
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_total
type: quantitative
title: Pages
tooltip:
- {field: book, type: nominal, title: Book}
- {field: pages_total, type: quantitative, title: "Total pages"}
- {field: pages_read, type: quantitative, title: "Pages read"}
- {field: pct, type: quantitative, title: "% Read"}
- mark:
type: bar
color: "#4c78a8"
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_read
type: quantitative
tooltip:
- {field: book, type: nominal, title: Book}
- {field: pages_total, type: quantitative, title: "Total pages"}
- {field: pages_read, type: quantitative, title: "Pages read"}
- {field: pct, type: quantitative, title: "% Read"}
- mark:
type: text
align: left
dx: 3
fontSize: 11
color: "#333"
transform:
- calculate: "datum.pct + '%'"
as: label
encoding:
y:
field: book
type: nominal
sort:
field: pages_read
order: descending
x:
field: pages_read
type: quantitative
text:
field: label
type: nominal
k-timeline:
title: Reading Timeline
db: KindleReader
query: |
select
book_name as book,
time,
position
from kindle_page_history
order by time
library: vega-lite
display:
params:
- name: bookFilter
select:
type: point
fields: [book]
bind: legend
mark:
type: circle
size: 20
tooltip: true
encoding:
x:
field: time
type: temporal
title: null
y:
field: book
type: nominal
sort: "-x"
color:
field: book
type: nominal
title: Book
legend: null
opacity:
condition:
param: bookFilter
value: 1
value: 0.15
tooltip:
- {field: book, type: nominal, title: Book}
- {field: time, type: temporal, title: Time}
k-daily-koreader:
title: Daily Reading (KOReader)
db: KindleReader
query: |
select
date(start_time, 'unixepoch', 'localtime') as day,
b.title as book,
round(sum(duration) / 60.0) as minutes
from koreader_page_stats ps
join koreader_books b on ps.id_book = b.id
group by day, b.title
order by day
library: vega-lite
display:
params:
- name: bookFilter
select:
type: point
fields: [book]
bind: legend
mark:
type: bar
tooltip: true
encoding:
x:
field: day
type: ordinal
title: null
y:
field: minutes
type: quantitative
title: Minutes
color:
field: book
type: nominal
title: Book
opacity: