-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin-stations-normals.js
71 lines (64 loc) · 2.08 KB
/
join-stations-normals.js
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
'use strict'
// Read stations and averages file. Output geojson files.
const fs = require('fs')
const normalsFile = 'json/temperature-normals.json'
const stationsFile = 'json/stations.json'
const joinedFile = 'json/normals-stations.json'
// Structure of normals file:
// max: {
// <station-id>: { <values>: [...], <flags>: [...] }
// },
// min: {
// <station-id>: { <values>: [...], <flags>: [...] }
// },
// avg: {
// <station-id>: { <values>: [...], <flags>: [...] }
// }
let normals = fs.readFileSync(normalsFile)
// Structure of stations file:
// {
// <station-id>: {
// ...several properties, including id again
// location: {
// ...geojson point
// }
// }
// }
let stations = fs.readFileSync(stationsFile)
normals = JSON.parse(normals)
stations = JSON.parse(stations)
let features = []
let clone = (obj) => JSON.parse(JSON.stringify(obj))
// Object to keep track of feature index in features.
let lookup = {}
Object.keys(normals).forEach(stat => {
Object.keys(normals[stat]).forEach(station => {
// Normals JSON includes a couple of non-stationID properties. Ignore those.
if ( stations.hasOwnProperty(station) ) {
let current = normals[stat][station]
let feature
if ( lookup.hasOwnProperty(station) ) {
// Already created a feature for this station, grab it.
feature = features[lookup[station]]
} else {
feature = {}
lookup[station] = features.length
features.push(feature)
// Save the station's geojson point.
feature.geometry = clone(stations[station].location)
// Copy the station attributes to the new feature.
feature.properties = clone(stations[station])
delete feature.properties.location
}
// Bring in the average temps and the flags for this data.
feature.properties[`${stat}-values`] = current.values
feature.properties[`${stat}-flags`] = current.flags
}
})
})
fs.writeFile(joinedFile, JSON.stringify(features), err => {
if ( err ) {
console.log('err writing file', err)
}
console.log(`Finished joining, wrote ${joinedFile}`)
})