@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.
Files changed (2) hide show
  1. package/README.md +19 -24
  2. 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
- - [Why should I use it?](#why-should-i-use-it-)
11
- - [Data sources](#data-sources)
12
- - [Usage](#usage)
13
- - [Launching](#launching)
14
- - [Working with API](#working-with-api)
15
- - [Available scripts](#available-scripts)
16
- - [Health notifications](#health-notifications)
17
- - [Other](#other)
18
- - [Development](#development)
19
- - [Inside container](#inside-container)
20
- - [On host machine](#on-host-machine)
21
- - [Building and running](#building-and-running)
22
- - [Writing scripts](#writing-scripts)
23
- - [TODO](#todo)
24
- - [License](#license)
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/) shared library, to convert coordinate systems. Currently version 6.3.1 is required. (to match version from ubuntu 20.04, which is used by github actions). On MacOS this can be installed via brew:
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whitewater-guide/gorge",
3
- "version": "3.4.1",
3
+ "version": "3.5.0-beta.2",
4
4
  "description": "Hydrological data harvester",
5
5
  "main": "",
6
6
  "types": "index",