forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·555 lines (458 loc) · 20.6 KB
/
Makefile
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
## vim: foldmarker={{{,}}} foldlevel=0 foldmethod=marker spell:
## Variables {{{
SHELL := /bin/bash -o nounset -o pipefail -o errexit
NODEJS ?= node
SEARCH ?= opening_hours
VERBOSE ?= 1
RELEASE_OPENPGP_FINGERPRINT ?= C505B5C93B0DB3D338A1B6005FE92C12EE88E1F0
## Data source variables {{{
OH_RELATED_TAGS ?= related_tags.txt
STATS_FOR_BOUNDARIES ?= stats_for_boundaries.txt
API_URL_TAGINFO ?= https://taginfo.openstreetmap.org/api
API_URL_OVERPASS ?= https://overpass-api.de/api
# GnuTLS: A TLS warning alert has been received.
# GnuTLS: received alert [112]: The server name sent was not recognized
TMP_QUERY ?= ./tmp_query.op
OVERPASS_QUERY_KEY_FILTER_CMD ?= cat
OVERPASS_QUERY_TIMEOUT ?= 4000
# OVERPASS_QUERY_TIMEOUT ?= 1000
OVERPASS_QUERY_STOP_AFTER_TIME_HOUR ?= 11
# OVERPASS_QUERY_STOP_AFTER_TIME_HOUR ?= -1
## Stop the make process gracefully after 14:00. Intended for cron which start at night.
OVERPASS_QUERY_USE_REGEX ?= 0
# Using regular expressions for querying areas is still slow
# https://github.com/drolbr/Overpass-API/issues/59#issuecomment-54013988
# Benchmarks:
# 7:54.68: make WGET_OPTIONS='' export♡ISO3166-2♡DE-SL♡2015-04-09T00:00:00.json -B OVERPASS_QUERY_USE_REGEX=1
# 0:35.04: make WGET_OPTIONS='' export♡ISO3166-2♡DE-SL♡2015-04-09T00:00:00.json -B OVERPASS_QUERY_USE_REGEX=0
# The query without regular expressions also returns more results …
# Use the log feature of real_test.js for this.
REMOVE_DATA_AFTER_STATS_GEN ?= 1
# REMOVE_DATA_AFTER_STATS_GEN ?= 0
START_DATE ?= now
# START_DATE ?= now - 1 day
DAYS_INCREMENT ?= 1
HOURS_INCREMENT ?= 1
## }}}
WGET_OPTIONS ?= --no-verbose
MAKE_OPTIONS ?= --no-print-directory
CHECK_LANG ?= 'en'
## }}}
REPO_FILES ?= git ls-files -z | xargs --null -I '{}' find '{}' -type f -print0 | egrep -zZv '^(submodules|holidays/nominatim_cache).*$$'
REPO_SOURCE_FILES ?= $(REPO_FILES) | egrep -zZv '(\.png)$$'
.PHONY: default
default: list
## help {{{
.PHONY: list
# https://stackoverflow.com/a/26339924/2239985
list:
@echo "This Makefile has the following targets:"
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | sed 's/^/ /'
## }}}
## defaults {{{
.PHONY: build
build: opening_hours.min.js
.PHONY: check
check: qa-quick check-diff check-package.json
.PHONY: check-full
check-full: clean check-diff-all check-package.json check-yaml check-html check-holidays
.PHONY: benchmark
benchmark: benchmark-opening_hours.min.js
.PHONY: clean
clean: osm-tag-data-rm
rm -f *+deps.js *.min.js
rm -f README.html
rm -f taginfo_sources.json
.PHONY: osm-tag-data-rm
osm-tag-data-rm: osm-tag-data-taginfo-rm osm-tag-data-overpass-rm
## }}}
## dependencies {{{
.PHONY: dependencies-get
dependencies-get: package.json dependencies-patch-legacy
git submodule update --init --recursive
npm install
if [[ "$${TRAVIS_NODE_VERSION:-probably_newer}" =~ ^0.12 ]]; then \
jq -r '.peerDependencies | to_entries[] | .key + "@" + .value' package.json | xargs npm install --no-save; \
else \
npm-install-peers; \
fi
pip install --user yamllint
.PHONY: dependencies-patch-legacy
dependencies-patch-legacy: package.json
if [[ "$${TRAVIS_NODE_VERSION:-probably_newer}" =~ ^0.12 ]]; then \
echo "Support on best effort base!"; \
jq '.devDependencies.rollup = "^0.42.0" | .devDependencies["sprintf-js"] = "1.0.3"' package.json > package-patched.json && mv package-patched.json package.json; \
fi
# colors above v0.6.1 broke the 'bold' option. For what we need this package, v0.6.1 is more than sufficient.
.PHONY: update-dependency-versions
update-dependency-versions: package.json
npm-check-updates --reject colors --upgrade --packageFile "$<"
.PHONY: list-dependency-versions
list-dependency-versions: package.json
npm list | egrep '^.─'
.PHONY: dependencies-user-wide-get
dependencies-user-wide-get:
npm install --global doctoc npm-check-updates npm-install-peers
## }}}
taginfo.json: related_tags.txt gen_taginfo_json.js taginfo_template.json
gen_taginfo_json.js --key-file "$<" --template-file taginfo_template.json > "$@"
## Haxe implementation produces a different sorted JSON.
# haxe -main Gen_taginfo_json -lib mcli -neko Gen_taginfo_json.n && neko Gen_taginfo_json --key_file "$<" --template_file taginfo_template.json > "$@"
## docs {{{
README.html: README.md
.PHONY: doctoc
doctoc:
doctoc README.md --title '**Table of Contents**'
## }}}
## Build files which are needed to host the evaluation tool on a webserver.
.PHONY: ready-for-hosting
ready-for-hosting: dependencies-get opening_hours+deps.min.js
## command line programs {{{
.PHONY: run-regex_search
run-regex_search: export.$(SEARCH).json interactive_testing.js regex_search.py
$(NODEJS) ./regex_search.py "$<"
.PHONY: run-interactive_testing
run-interactive_testing: interactive_testing.js opening_hours.js
$(NODEJS) "$<" --locale "$(CHECK_LANG)"
## }}}
## Source code QA {{{
.PHONY: qa-quick
qa-quick: qa-phrases-to-avoid
.PHONY: qa-phrases-to-avoid
qa-phrases-to-avoid:
! git grep --ignore-case 'input[ ]tolerance'
.PHONY: qa-source-code
qa-source-code:
$(REPO_FILES) | egrep -zZ '\.js$$' | xargs --null sed -i 's/\([^=!]\)==\([^=]\)/\1===\2/g;s/\([^=!]\)!=\([^=]\)/\1!==\2/g;'
.PHONY: qa-https-everywhere
qa-https-everywhere:
$(REPO_SOURCE_FILES) | xargs --null sed --regexp-extended --in-place 's#http(:\\?/\\?/)((:?www\.)?momentjs\.com|overpass-turbo\.eu|gnu\.org|stackoverflow\.com|openstreetmap\.(org|de)|nominatim\.openstreetmap\.org|taginfo\.openstreetmap\.org|wiki\.openstreetmap\.org|josm\.openstreetmap\.de|www\.openstreetmap\.org\\/copyright|github\.com|xkcd\.com|heise\.de|readthedocs\.org|askubuntu\.com|xpra\.org|docker\.com|linuxcontainers\.org|ecma-international\.org|w3\.org|example\.com|fsf\.org|jquery\.com|openingh\.openstreetmap\.de)#https\1\2#g;'
$(REPO_SOURCE_FILES) | xargs --null sed -i 's#http://overpass-api\.de#https://overpass-api.de#g;'
$(REPO_SOURCE_FILES) | xargs --null sed --regexp-extended --in-place 's#http://(\w+\.wikipedia\.org)#https://\1#g;'
test -f index.html && git checkout index.html
# ack 'http://'
## }}}
## software testing {{{
.PHONY: check-all
check-all: check-package.json check-test check-diff-all osm-tag-data-update-check
.PHONY: check-fast
check-fast: check-diff-en-opening_hours.js
.PHONY: check-diff-all
check-diff-all: check-diff check-diff-opening_hours.min.js
.PHONY: check-diff
check-diff: check-diff-all-opening_hours.js
.PHONY: check-diff-uglifyjs-log
check-diff-uglifyjs-log: uglifyjs.log
git --no-pager diff -- "$<"
git diff --quiet --exit-code HEAD -- "$<" || read fnord; \
if [ "$${fnord:-}" == "b" ]; then \
exit 1; \
fi
.PHONY: check-test
check-test: check-opening_hours.js
.PHONY: check-test
check-test: check-opening_hours.js
# .PHONY: check-opening_hours.js check-opening_hours.min.js
## Does not work
check-opening_hours.js:
check-opening_hours.min.js:
check-%.js: %.js test.js
$(NODEJS) test.js "./$<"
check-diff-all-opening_hours.js:
check-diff-all-opening_hours.min.js:
check-diff-all-%.js: %.js test.js
@echo -n "en de" | xargs --delimiter ' ' --max-args=1 -I '{}' $(MAKE) $(MAKE_OPTIONS) "CHECK_LANG={}" check-diff-opening_hours.js
.SILENT: check-diff-opening_hours.js check-diff-opening_hours.min.js
check-diff-en-opening_hours.js: check-diff-opening_hours.js
check-diff-de-opening_hours.js:
$(MAKE) $(MAKE_OPTIONS) CHECK_LANG=de check-diff-opening_hours.js
check-diff-%.js: %.js test.js
rm -rf "test.$(CHECK_LANG).log"
$(NODEJS) test.js --library-file "$<" --locale $(CHECK_LANG) 1> test.$(CHECK_LANG).log 2>&1 || true; \
if git diff --quiet --exit-code HEAD -- "test.$(CHECK_LANG).log"; then \
echo "Test results for $< ($(CHECK_LANG)) are exactly the same as on developemt system. So far, so good ;)"; \
else \
echo "Test results for $< ($(CHECK_LANG)) produced a different output then the output of the current HEAD. Checkout the following diff."; \
fi
sh -c 'git --no-pager diff --exit-code -- "test.$(CHECK_LANG).log"'
.PHONY: osm-tag-data-taginfo-check
osm-tag-data-taginfo-check: real_test.js opening_hours.js osm-tag-data-get-taginfo
$(NODEJS) ./check_for_new_taginfo_data.js --exit-code-not-new 0
@grep -v '^#' $(OH_RELATED_TAGS) | while read key; do \
$(NODEJS) "$<" $(REAL_TEST_OPTIONS) --map-bad-oh-values --ignore-manual-values "export.$$key.json"; \
done
.PHONY: osm-tag-data-update-check
.SILENT : osm-tag-data-update-check
osm-tag-data-update-check: osm-tag-data-update-taginfo osm-tag-data-taginfo-check
benchmark-opening_hours.js:
benchmark-opening_hours.min.js:
# .PHONY: benchmark
benchmark-%.js: %.js benchmark.js
$(NODEJS) ./benchmark.js "./$<"
.PHONY: check-package.json
check-package.json: package.json
pjv --warnings --recommendations --filename "$<"
.PHONY: check-holidays
check-holidays:
@for def_file in ./holidays/*.yaml; do \
country=$${def_file#./holidays/}; \
country=$${country%.yaml}; \
for region in $$(cat "$$def_file" | yq '. | values | .[]._state_code? | select(. != null)' --raw-output); do \
echo "$$country - $$region: "; \
./PH_SH_exporter.js --from 2017 --to 2017 /tmp/out -c "$$country" -p -v -r "$$region"; \
done \
done
.PHONY: check-yaml
check-yaml:
$(REPO_FILES) | xargs --null -I '{}' find '{}' -type f -regextype posix-extended -regex '.*\.(yml|yaml)$$' -print0 | xargs --null yamllint --strict
.PHONY: check-html
check-html:
html5validator --show-warnings --root . --blacklist node_modules submodules
## }}}
## release {{{
.PHONY: release-versionbump
release-versionbump: package.json bower.json CHANGELOG.rst
editor $?
sh -c 'git commit --all --message "Release version $$(jq --raw-output '.version' '$<')"'
.PHONY: release-prepare
release-prepare: package.json taginfo.json check-holidays update-dependency-versions doctoc check-diff-uglifyjs-log check qa-source-code qa-https-everywhere
.PHONY: release-local
release-local: package.json release-versionbump check-package.json
git tag --sign --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" --message "Released version $(shell jq --raw-output '.version' $<)" "v$(shell jq --raw-output '.version' $<)"
.PHONY: release-publish
## First source file is referenced!
## Might be better: https://docs.npmjs.com/cli/version
release-publish:
git push --follow-tags
npm publish
# $(MAKE) $(MAKE_OPTIONS) publish-website-on-all-servers
.PHONY: release
release: release-prepare release-local release-publish
## }}}
## OSM data from taginfo {{{
.PHONY: osm-tag-data-taginfo-rm
osm-tag-data-taginfo-rm:
rm -f export.*.json
.PHONY: osm-tag-data-update-taginfo
osm-tag-data-update-taginfo: taginfo_sources.json osm-tag-data-taginfo-rm osm-tag-data-get-taginfo
## Always refresh
.PHONY: taginfo_sources.json
taginfo_sources.json:
$(NODEJS) ./check_for_new_taginfo_data.js
.PHONY: osm-tag-data-get-taginfo
osm-tag-data-get-taginfo: $(OH_RELATED_TAGS)
@grep -v '^#' "$<" | while read location; do \
$(MAKE) $(MAKE_OPTIONS) "export.$$location.json"; \
done
# Testing:
export.happy_hours.json:
export.opening_hours.json:
export.lit.json:
export.%.json:
wget $(WGET_OPTIONS) --output-document="$(shell echo "$@" | sed 's/\\//g' )" "$(API_URL_TAGINFO)/4/key/values?key=$(shell echo "$@" | sed 's/^export\.\(.*\)\.json/\1/;s/\\//g' )" 2>&1
## }}}
## OSM data from the overpass API {{{
# Before running large imports check the load of the overpass API:
# * https://overpass-api.de/munin/localdomain/localhost.localdomain/load.html
# * https://overpass-api.de/munin/localdomain/localhost.localdomain/osm_db_request_count.html
## The value separator is ♡ because it is not expected that this appears anywhere else in the tags and it works with GNU make.
## Unfortunately, it does not work with cut, but that problem can be solved.
# Used for testing:
export♡ISO3166-2♡DE-SL.json:
export♡name♡Erlangen.json:
export♡name♡Leutershausen.json:
## make WGET_OPTIONS='' export♡ISO3166-2♡DE-SL♡2015-04-09T00:00:00.json -B
# export♡name♡Leutershausen♡2015-04-09T00:00:00.json:
## Can be used to import data from a specific date.
# grep --quiet "^$$timestamp"
# The grep would lead to wrong results if Z is present in the timestamp because
# the stats files contain milliseconds as well.
## Generate OverpassQL and execute it.
.PRECIOUS: export♡%.json
export♡%.json: real_test.js $(OH_RELATED_TAGS)
@timestamp="$(shell echo "$@" | sed 's/♡/\x0/g;s/\.json$$//;' | cut -d '' -f 4)"; \
boundary_key="$(shell echo "$@" | sed 's/♡/\x0/g;s/\.json$$//;' | cut -d '' -f 2)"; \
boundary_value="$(shell echo "$@" | sed 's/♡/\x0/g;s/\.json$$//;' | cut -d '' -f 3)"; \
if [ -z "$$timestamp" ]; then \
timestamp="$(shell date '+%F')T00:00:00"; \
fi; \
if grep --quiet "^$$timestamp" export♡*♡$$boundary_key♡$$boundary_value♡stats.csv 2>/dev/null; then \
if [ "$(VERBOSE)" -eq "1" ]; then \
echo "Skipping. Timestamp ($$timestamp) already present in statistical data for $${boundary_key}=$${boundary_value}." 1>&2; \
fi; \
else \
( \
echo -n "[date:\"$$timestamp\"]"; \
echo "[out:json][timeout:$(OVERPASS_QUERY_TIMEOUT)];"; \
echo "area[\"type\"=\"boundary\"][\"$$boundary_key\"=\"$$boundary_value\"];"; \
echo 'foreach('; \
for type in NODEJS way; do \
if [ "$(OVERPASS_QUERY_USE_REGEX)" -eq "1" ]; then \
echo -n " $$type(area)[~\"^("; \
(grep -v '^#' $(OH_RELATED_TAGS) | while read key; do \
echo -n "$$key|"; \
done) | sed 's/|$$//;'; \
echo ")$$\"~\".\"]->.t; .t out tags;"; \
else \
grep -v '^#' $(OH_RELATED_TAGS) | $(OVERPASS_QUERY_KEY_FILTER_CMD) | while read key; do \
echo " $$type(area)[\"$$key\"]->.t; .t out tags;"; \
done; \
fi; \
done; \
echo ");" ) > "$(TMP_QUERY)"; \
if [ "$(VERBOSE)" -eq "1" ]; then \
echo "Executing query:"; \
cat "$(TMP_QUERY)" | sed 's/^/ /;'; \
fi; \
time wget $(WGET_OPTIONS) --post-file="$(TMP_QUERY)" --output-document="$(shell echo "$@" | sed 's/\\//g' )" "$(API_URL_OVERPASS)/interpreter" 2>&1; \
if [ "$$?" != "0" ]; then exit 1; fi; \
$(NODEJS) "$<" $(REAL_TEST_OPTIONS) --map-bad-oh-values "$(shell echo "$@" | sed 's/\\//g' )"; \
find . -name "export♡*♡$$boundary_key♡$$boundary_value♡stats.csv" | while read file; do \
sort --numeric-sort "$$file" > "$$file.tmp" && \
mv "$$file.tmp" "$$file"; \
done; \
if [ "$(REMOVE_DATA_AFTER_STATS_GEN)" -eq "1" ]; then \
$(MAKE) $(MAKE_OPTIONS) osm-tag-data-overpass-rm; \
fi; \
fi
.PHONY: osm-tag-data-overpass-rm
osm-tag-data-overpass-rm:
rm -f export♡*.json
.PHONY: osm-tag-data-overpass-kill-queries
osm-tag-data-overpass-kill-queries:
curl "$(API_URL_OVERPASS)/kill_my_queries"
## }}}
## OSM data via a SQL query against PostgreSQL {{{
## Thanks to walter nordmann
# select 'N'||osm_id id,
# cab.localname,
# poi.tags->'opening_hours' opening_hours
# from planet_osm_point poi,
# collected_admin_boundaries cab
# where poi.way && (select way from collected_admin_boundaries where id=51477)
# and st_contains((select way from collected_admin_boundaries where id=51477),poi.way)
# and poi.tags ? 'opening_hours'
# and cab.admin_level = '4'
# and cab.type='admin'
# and st_contains(cab.way,poi.way)
# union
# select case when osm_id > 0 then 'W'||osm_id else 'R'||osm_id end id,
# cab.localname,
# cab.tags->'opening_hours' opening_hours
# from planet_osm_polygon poi,
# collected_admin_boundaries cab
# where poi.pointonsurface && (select way from collected_admin_boundaries where id=51477)
# and st_contains((select way from collected_admin_boundaries where id=51477),poi.pointonsurface)
# and poi.tags ? 'opening_hours'
# and cab.admin_level = '4'
# and cab.type='admin'
# and st_contains(cab.way,poi.way)
# ;
## }}}
## Generate statistics {{{
## Cronjob is running on gauss: http://munin.openstreetmap.de/gauss/gauss-load.html
# m h dom mon dow command
# 12 22 * * * cd ./oh-stats/ && make osm-tag-data-gen-stats-cron-overpass > cron.22.log 2>&1
# 48 02 * * * cd ./oh-stats/ && make osm-tag-data-gen-stats-cron-taginfo > cron.02.log 2>&1
# 48 06 * * * cd ./oh-stats/ && make osm-tag-data-gen-stats-cron-taginfo > cron.06.log 2>&1
.PHONY: osm-tag-data-gen-stats-cron-taginfo
osm-tag-data-gen-stats-cron-taginfo: real_test.opening_hours.stats.csv
date
$(MAKE) $(MAKE_OPTIONS) 'REAL_TEST_OPTIONS=--punchcard' osm-tag-data-gen-stats > cron_taginfo.log 2>&1
git commit --all --message 'Generated stats.'
git push
.PHONY: osm-tag-data-gen-stats-cron-overpass
osm-tag-data-gen-stats-cron-overpass:
date
$(MAKE) $(MAKE_OPTIONS) osm-tag-data-gen-stats-overpass-n-days-back DAYS_BACK=120 >> cron_overpass.1.log 2>&1
git add export♡*♡stats.csv
date
-git commit --all --message 'Generated stats.'
$(MAKE) $(MAKE_OPTIONS) osm-tag-data-gen-stats-overpass-n-days-back DAYS_BACK=2400 DAYS_INCREMENT=30 START_DATE=2015-04-12 >> cron_overpass.2.log 2>&1
git add export♡*♡stats.csv
$(MAKE) $(MAKE_OPTIONS) osm-tag-data-gen-stats-overpass-merge
date
-git commit --all --message 'Generated stats.'
$(MAKE) $(MAKE_OPTIONS) osm-tag-data-rm
-git push
## See real_test.js
.PHONY: osm-tag-data-gen-stats
osm-tag-data-gen-stats: real_test.opening_hours.stats.csv osm-tag-data-update-check
.PHONY: osm-tag-data-gen-stats-overpass-merge
osm-tag-data-gen-stats-overpass-merge: merge_all_stats_into_country.py $(OH_RELATED_TAGS)
@grep -v '^#' $(OH_RELATED_TAGS) | while read key; do \
python3 "$<" --output-file "export♡$$key♡int_name♡Deutschland♡stats.csv" export♡$$key♡ISO3166-2♡DE-*♡stats.csv; \
done
.PHONY: osm-tag-data-gen-stats-overpass-daily
osm-tag-data-gen-stats-overpass-daily: $(STATS_FOR_BOUNDARIES)
@grep -v '^#' "$<" | while read location; do \
$(MAKE) $(MAKE_OPTIONS) export♡$$location♡$(shell date '+%F')T00:00:00.json; \
if [ "$$?" != "0" ]; then exit 1; fi; \
done
.PHONY: osm-tag-data-gen-stats-overpass-hourly
osm-tag-data-gen-stats-overpass-hourly: $(STATS_FOR_BOUNDARIES)
@grep -v '^#' "$<" | while read location; do \
$(MAKE) $(MAKE_OPTIONS) export♡$$location♡$(shell date '+%FT%H'):00:00.json; \
if [ "$$?" != "0" ]; then exit 1; fi; \
done
.PHONY: osm-tag-data-gen-stats-overpass-n-days-back
osm-tag-data-gen-stats-overpass-n-days-back: $(STATS_FOR_BOUNDARIES)
@if [ -z "$(DAYS_BACK)" ]; then \
echo "The DAYS_BACK parameter is empty!"; \
exit 1; \
fi; \
grep -v '^#' "$<" | while read location; do \
for day_back in `seq 0 $(DAYS_INCREMENT) $(DAYS_BACK)`; do \
if [ "$(OVERPASS_QUERY_STOP_AFTER_TIME_HOUR)" == "`date '+%H'`" ]; then \
echo "Stopping. The time is `date`."; \
exit; \
fi; \
if [ "$$location" == "int_name♡Deutschland" ]; then \
echo "Making multiple queries to overcome a timeout bug of the overpass API."; \
$(MAKE) $(MAKE_OPTIONS) "OVERPASS_QUERY_KEY_FILTER_CMD=grep --line-regexp \"opening_hours\"" "export♡$$location♡`date -d \"$(START_DATE) - $$day_back days\" '+%F'`T00:00:00.json"; \
if [ "$$?" != "0" ]; then exit 1; fi; \
$(MAKE) $(MAKE_OPTIONS) "OVERPASS_QUERY_KEY_FILTER_CMD=grep --line-regexp --invert-match \"opening_hours\"" "export♡$$location♡`date -d \"$(START_DATE) - $$day_back days\" '+%F'`T00:00:00.json"; \
if [ "$$?" != "0" ]; then exit 1; fi; \
else \
$(MAKE) $(MAKE_OPTIONS) "export♡$$location♡`date -d \"$(START_DATE) - $$day_back days\" '+%F'`T00:00:00.json"; \
fi; \
if [ "$$?" != "0" ]; then exit 1; fi; \
done; \
done
## To track the OSM activities of Jack Bauer :)
.PHONY: osm-tag-data-gen-stats-overpass-24-hours
osm-tag-data-gen-stats-overpass-24-hours: $(STATS_FOR_BOUNDARIES)
@grep -v '^#' "$<" | while read location; do \
for hour in `seq --equal-width 0 $(HOURS_INCREMENT) 23`; do \
if [ "$(OVERPASS_QUERY_STOP_AFTER_TIME_HOUR)" == "`date '+%H'`" ]; then \
echo "Stopping. The time is `date`."; \
exit; \
fi; \
$(MAKE) $(MAKE_OPTIONS) "export♡$$location♡`date -d \"$(START_DATE)" '+%F'`T$${hour}:00:00.json"; \
if [ "$$?" != "0" ]; then exit 1; fi; \
done; \
done
.PHONY: osm-tag-data-gen-stats-sort
osm-tag-data-gen-stats-sort:
@find . -name 'export*stats.csv' | while read file; do \
sort --numeric-sort "$$file" > "$$file.tmp" && \
mv "$$file.tmp" "$$file"; \
done
## }}}
.PHONY: opening_hours.js
opening_hours.js:
DEPS=NO ./node_modules/.bin/rollup -c
.PHONY: opening_hours+deps.js
opening_hours+deps.js:
DEPS=YES ./node_modules/.bin/rollup -c
uglifyjs.log: opening_hours.js
uglifyjs "$<" --lint 1>/dev/zero 2>uglifyjs.log
opening_hours.min.js:
opening_hours+deps.min.js: opening_hours+deps.js
@true I don’t really care for warnings in dependencies of opening_hours.js.
uglifyjs "$<" --output "$@" --comments '/github.com/' --lint 2> >(grep --invert-match '^WARN: ')
%.min.js: %.js
uglifyjs "$<" --output "$@" --comments '/github.com/' --lint
README.html:
%.html: %.md
pandoc --from markdown_github --to html --standalone "$<" --output "$@"