@whitewater-guide/gorge 3.4.1 → 3.5.0-beta.2
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.
- package/README.md +19 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,21 +7,24 @@ Harvested data is stored in database and can be queried later.
|
|
|
7
7
|
|
|
8
8
|
## Table of contents
|
|
9
9
|
|
|
10
|
-
- [
|
|
11
|
-
- [
|
|
12
|
-
- [
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
- [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- [
|
|
22
|
-
|
|
23
|
-
- [
|
|
24
|
-
- [
|
|
10
|
+
- [Gorge](#gorge)
|
|
11
|
+
- [Table of contents](#table-of-contents)
|
|
12
|
+
- [Why should I use it?](#why-should-i-use-it)
|
|
13
|
+
- [Data sources](#data-sources)
|
|
14
|
+
- [Usage](#usage)
|
|
15
|
+
- [Setting up database](#setting-up-database)
|
|
16
|
+
- [Launching](#launching)
|
|
17
|
+
- [Working with API](#working-with-api)
|
|
18
|
+
- [Available scripts](#available-scripts)
|
|
19
|
+
- [Health notifications](#health-notifications)
|
|
20
|
+
- [Other](#other)
|
|
21
|
+
- [Development](#development)
|
|
22
|
+
- [Inside container](#inside-container)
|
|
23
|
+
- [On host machine](#on-host-machine)
|
|
24
|
+
- [Building and running](#building-and-running)
|
|
25
|
+
- [Writing scripts](#writing-scripts)
|
|
26
|
+
- [TODO](#todo)
|
|
27
|
+
- [License](#license)
|
|
25
28
|
|
|
26
29
|
## Why should I use it?
|
|
27
30
|
|
|
@@ -417,15 +420,7 @@ Docker-compose stack comes with [mitmproxy](https://mitmproxy.org/). You can mon
|
|
|
417
420
|
|
|
418
421
|
If you want to develop on host machine, you'll need following libraries installed on it (they're installed in docker image, see Dockerfile for more info):
|
|
419
422
|
|
|
420
|
-
- [libproj](https://proj.org/)
|
|
421
|
-
|
|
422
|
-
```
|
|
423
|
-
brew tap-new $USER/local-tap
|
|
424
|
-
brew extract --version='6.3.1' proj $USER/local-tap
|
|
425
|
-
brew install proj@6.3.1
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
It's also possible to build it using version 7.2.1 (see Dockerfile.bullseye). It's just more complicated since proj has optional libtiff and libcurl dependencies since 7.0.
|
|
423
|
+
- [libproj](https://proj.org/) library, to convert coordinate systems. Currently version 8.2.1 is required. It's built manually using `./build-proj.sh` script, because we want to build it without curl and tiff dependencies, which are problematic for static linking and are not needed anyway
|
|
429
424
|
|
|
430
425
|
Also you'll need following go tools:
|
|
431
426
|
|