Skip to content

Commit d4551ef

Browse files
committed
Name change
1 parent ff8b4f4 commit d4551ef

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# OSM Tardis
2-
1+
# OSM Gr∆dient
32
Visualize statistics and browse OSM diffs over a map.
43

54
- [Front-end app](web-vite/README.md)

Diff for: pipeline/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Generate the past 10 minutes of OSM data starting at a sequence number (5652386 in this example)
44

55
```
6-
docker build osm-tardis .
7-
docker run osm-tardis 5652386 10
6+
docker build -t osm-gradient .
7+
docker run -t osm-gradient 5652386 10
88
docker run -it -v ./data:/tmp ghcr.io/osgeo/gdal:alpine-small-latest sh ogr2ogr -f "FlatGeobuf" /tmp/test.fgb /tmp/2023-09-01T01_00.geojsonld -skipfailures
99
```

Diff for: pipeline/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "osmtardis",
2+
"name": "osmgradient",
33
"version": "1.0.0",
44
"description": "Minutely metrics for OSM using FlatGeoBuff",
55
"main": "index.js",

Diff for: web-vite/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OSM Tardis Web
1+
# OSM Gr∆dient Web
22

33
## Installation and Usage
44

Diff for: web-vite/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
99
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,[email protected],400;9..40,700&display=swap" rel="stylesheet">
1010
<link rel='stylesheet' href='https://unpkg.com/[email protected]/dist/maplibre-gl.css' />
11-
<title>OSM Tardis</title>
11+
<title>OSM Gr∆dient</title>
1212
</head>
1313
<body>
1414
<div id="app"></div>

Diff for: web-vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "tardis-web",
2+
"name": "osm-gradient",
33
"private": true,
44
"version": "0.0.0",
55
"type": "module",

Diff for: web-vite/src/app/components/header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export function Header(){
22
return (
33
<div class="page-header">
4-
<h1 class="page-header__headline">T&delta;rdis</h1>
4+
<h1 class="page-header__headline">Gr&delta;dient</h1>
55
</div>
66
)
77
}

0 commit comments

Comments
 (0)