@hangtime/climbing-boards 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,95 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "features": [
4
+ {
5
+ "type": "Feature",
6
+ "id": 50,
7
+ "properties": {
8
+ "id": 50,
9
+ "username": "pacificpipe",
10
+ "name": "Pacific Pipe Climbing",
11
+ "latitude": 37.81644,
12
+ "longitude": -122.28852
13
+ },
14
+ "geometry": {
15
+ "type": "Point",
16
+ "coordinates": [
17
+ -122.28852,
18
+ 37.81644
19
+ ]
20
+ }
21
+ },
22
+ {
23
+ "type": "Feature",
24
+ "id": 51,
25
+ "properties": {
26
+ "id": 51,
27
+ "username": "thepostclimbing",
28
+ "name": "The Post Climbing",
29
+ "latitude": 34.16505,
30
+ "longitude": -118.15031
31
+ },
32
+ "geometry": {
33
+ "type": "Point",
34
+ "coordinates": [
35
+ -118.15031,
36
+ 34.16505
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "type": "Feature",
42
+ "id": 52,
43
+ "properties": {
44
+ "id": 52,
45
+ "username": "teamtouchstone",
46
+ "name": "Team Touchstone Training Center",
47
+ "latitude": 37.85118,
48
+ "longitude": -122.29303
49
+ },
50
+ "geometry": {
51
+ "type": "Point",
52
+ "coordinates": [
53
+ -122.29303,
54
+ 37.85118
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "type": "Feature",
60
+ "id": 2792,
61
+ "properties": {
62
+ "id": 2792,
63
+ "username": "class5gym",
64
+ "name": "Class 5 Climbing",
65
+ "latitude": 33.84918,
66
+ "longitude": -118.35146
67
+ },
68
+ "geometry": {
69
+ "type": "Point",
70
+ "coordinates": [
71
+ -118.35146,
72
+ 33.84918
73
+ ]
74
+ }
75
+ },
76
+ {
77
+ "type": "Feature",
78
+ "id": 5454,
79
+ "properties": {
80
+ "id": 5454,
81
+ "username": "hyperionclimbing",
82
+ "name": "Hyperion Climbing",
83
+ "latitude": 37.48421,
84
+ "longitude": -122.21474
85
+ },
86
+ "geometry": {
87
+ "type": "Point",
88
+ "coordinates": [
89
+ -122.21474,
90
+ 37.48421
91
+ ]
92
+ }
93
+ }
94
+ ]
95
+ }
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@hangtime/climbing-boards",
3
+ "version": "1.0.0",
4
+ "description": "Auto-updating GeoJSON dataset of Aurora Climbing board locations: Kilter, Tension, Grasshopper, Decoy, So iLL, Touchstone and Aurora.",
5
+ "type": "module",
6
+ "main": "geojson/combined.geojson",
7
+ "exports": {
8
+ ".": "./geojson/combined.geojson",
9
+ "./*.geojson": "./geojson/*.geojson"
10
+ },
11
+ "files": [
12
+ "geojson",
13
+ "LICENSE",
14
+ "README.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "keywords": [
20
+ "climbing",
21
+ "geojson",
22
+ "moonboard",
23
+ "kilter-board",
24
+ "tension-board",
25
+ "grasshopper-board",
26
+ "decoy-board",
27
+ "so-ill",
28
+ "touchstone",
29
+ "aurora",
30
+ "12climb",
31
+ "training-board",
32
+ "system-board",
33
+ "bouldering",
34
+ "climbing-gyms",
35
+ "locations"
36
+ ],
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/Stevie-Ray/hangtime-climbing-boards.git"
40
+ },
41
+ "engines": {
42
+ "node": ">=22.18"
43
+ },
44
+ "scripts": {
45
+ "scrape": "node scrape-locations.ts",
46
+ "convert": "node convert-geojson.ts",
47
+ "combine": "node combine-geojson.ts",
48
+ "build": "npm run scrape && npm run convert && npm run combine",
49
+ "dev": "tsc --watch"
50
+ },
51
+ "author": "Stevie-Ray Hartog <mail@stevie-ray.nl>",
52
+ "license": "Unlicense",
53
+ "dependencies": {
54
+ "@powersync/node": "^0.18.2",
55
+ "@turf/turf": "^7.3.4",
56
+ "axios": "^1.13.6",
57
+ "dotenv": "^17.3.1",
58
+ "user-agents": "^2.1.12"
59
+ },
60
+ "devDependencies": {
61
+ "@types/geojson": "^7946.0.16",
62
+ "@types/node": "^22.19.15",
63
+ "@types/user-agents": "^1.0.4",
64
+ "typescript": "^6.0.2"
65
+ }
66
+ }