feat(fun/amsterdump): Add distance matrix lookup for fundu results
This contains a little tool that can make requests to the Google Maps API for distance matrix lookups from Fundu results to Schiphol Airport and Amsterdam Centraal. <3 edef!
This commit is contained in:
parent
b8ca70539b
commit
7b77e9986c
4 changed files with 2472 additions and 0 deletions
13
fun/amsterdump/default.nix
Normal file
13
fun/amsterdump/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
pkgs.buildGo.program {
|
||||||
|
name = "amsterdump";
|
||||||
|
srcs = [
|
||||||
|
./main.go
|
||||||
|
];
|
||||||
|
|
||||||
|
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||||
|
# gopkgs."golang.org".x.oauth2.google
|
||||||
|
gopkgs."googlemaps.github.io".maps
|
||||||
|
];
|
||||||
|
}
|
2326
fun/amsterdump/listings-20200105.json
Normal file
2326
fun/amsterdump/listings-20200105.json
Normal file
File diff suppressed because it is too large
Load diff
108
fun/amsterdump/main.go
Normal file
108
fun/amsterdump/main.go
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
// Amsterdump is a small program that populates a BigQuery table with
|
||||||
|
// a matrix of origin points scattered around Amsterdam and each
|
||||||
|
// respective points travel time to a given destination.
|
||||||
|
//
|
||||||
|
// The two destinations used here are the Schiphol Airport and
|
||||||
|
// Amsterdam Central station.
|
||||||
|
//
|
||||||
|
// To accomplish this the Google Maps Distance Matrix API [1] is
|
||||||
|
// queried with the points. A visualisation is later done using
|
||||||
|
// BigQuery GeoViz[2].
|
||||||
|
//
|
||||||
|
// [1]: https://developers.google.com/maps/documentation/distance-matrix/start#quotas
|
||||||
|
// [2]: https://bigquerygeoviz.appspot.com/
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"googlemaps.github.io/maps"
|
||||||
|
)
|
||||||
|
|
||||||
|
func failOn(err error, msg string) {
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln(msg, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type LocationResult struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
Schiphol *maps.DistanceMatrixElement `json:"schiphol"`
|
||||||
|
Centraal *maps.DistanceMatrixElement `json:"centraal"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Listing struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func requestMatrix(ctx context.Context, client *maps.Client, listings []Listing) {
|
||||||
|
origins := make([]string, len(listings))
|
||||||
|
for i, l := range listings {
|
||||||
|
origins[i] = l.Address
|
||||||
|
}
|
||||||
|
|
||||||
|
request := &maps.DistanceMatrixRequest{
|
||||||
|
Mode: maps.TravelModeTransit,
|
||||||
|
Units: maps.UnitsMetric,
|
||||||
|
Origins: origins,
|
||||||
|
|
||||||
|
Destinations: []string{
|
||||||
|
"Schiphol Airport",
|
||||||
|
"Amsterdam Centraal",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
response, err := client.DistanceMatrix(ctx, request)
|
||||||
|
failOn(err, "could not retrieve distance matrix:")
|
||||||
|
|
||||||
|
for idx, addr := range response.OriginAddresses {
|
||||||
|
result := LocationResult{
|
||||||
|
Address: addr,
|
||||||
|
URL: listings[idx].URL,
|
||||||
|
Schiphol: response.Rows[idx].Elements[0],
|
||||||
|
Centraal: response.Rows[idx].Elements[1],
|
||||||
|
}
|
||||||
|
|
||||||
|
j, _ := json.Marshal(result)
|
||||||
|
fmt.Println(string(j))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
var listings []Listing
|
||||||
|
input, err := ioutil.ReadFile("fun/amsterdump/input.json")
|
||||||
|
failOn(err, "could not read input file:")
|
||||||
|
|
||||||
|
err = json.Unmarshal(input, &listings)
|
||||||
|
failOn(err, "could not deserialise listings:")
|
||||||
|
|
||||||
|
ctx := context.Background()
|
||||||
|
apiKey = os.Getenv("MAPS_API_KEY", "")
|
||||||
|
if apiKey == "" {
|
||||||
|
log.Fatalln("API key must be supplied via MAPS_API_KEY")
|
||||||
|
}
|
||||||
|
|
||||||
|
client, err := maps.NewClient(maps.WithAPIKey(apiKey))
|
||||||
|
failOn(err, "could not create Google Maps API client:")
|
||||||
|
|
||||||
|
var chunk []Listing
|
||||||
|
for _, l := range listings {
|
||||||
|
if len(chunk) == 25 {
|
||||||
|
requestMatrix(ctx, client, chunk)
|
||||||
|
chunk = []Listing{}
|
||||||
|
} else {
|
||||||
|
chunk = append(chunk, l)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(chunk) > 1 {
|
||||||
|
requestMatrix(ctx, client, chunk)
|
||||||
|
}
|
||||||
|
}
|
25
fun/amsterdump/scrape.el
Normal file
25
fun/amsterdump/scrape.el
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
;; Scraping funda.nl (this file is just notes and snippets, not full code)
|
||||||
|
;;
|
||||||
|
;; Begin by copying whole page into buffer (out of inspect element
|
||||||
|
;; because encoding is difficult)
|
||||||
|
|
||||||
|
(beginning-of-buffer)
|
||||||
|
|
||||||
|
;; zap everything that isn't a relevant result
|
||||||
|
(keep-lines "data-object-url-tracking\\|img alt")
|
||||||
|
|
||||||
|
;; mark all spans, move them to the end of the buffer
|
||||||
|
(cl-letf (((symbol-function 'read-regexp)
|
||||||
|
(lambda (&rest _) "</span>")))
|
||||||
|
(mc/mark-all-in-region-regexp (point-min) (point-max)))
|
||||||
|
|
||||||
|
;; mark all images lines (these contain street addresses for things
|
||||||
|
;; with images), clear up and join with previous
|
||||||
|
;;
|
||||||
|
;; mark all: data-image-error-fallback
|
||||||
|
|
||||||
|
;; delete all lines that don't either contain a span or an img tag
|
||||||
|
;; (there are duplicates)
|
||||||
|
(keep-lines "span class\\|img alt")
|
||||||
|
|
||||||
|
;; do some manual cleanup from the hrefs and done
|
Loading…
Add table
Reference in a new issue