hfbcast 1.0.0 → 1.0.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.
@@ -0,0 +1,28 @@
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version": "2.0.0",
5
+ "tasks": [
6
+ {
7
+ "label": "publish package",
8
+ "type": "shell",
9
+ "command": "./scripts/local/publish.sh",
10
+ "windows": {
11
+ "command": ".\\scripts\\local\\publish.bat"
12
+ },
13
+ "group": "build native",
14
+ "presentation": {
15
+ "reveal": "always",
16
+ "panel": "new"
17
+ },
18
+ "problemMatcher": []
19
+ },
20
+ {
21
+ "type": "npm",
22
+ "script": "dev",
23
+ "problemMatcher": [],
24
+ "label": "npm: dev",
25
+ "detail": "webpack serve"
26
+ }
27
+ ]
28
+ }
package/README.md CHANGED
@@ -1,31 +1,31 @@
1
- # Prepare data
2
-
3
- Ideally the data should be harvested from the original sources, but for now it is taken in a rather crude way from https://shortwavedb.org.
4
-
5
- Go to https://shortwavedb.org/schedules.html and do a search for each of EiBi, AOKI, HFCC like shown in the image (make sure to select "Display All"). Save the result HTML page for each search in the ```sources``` folder as ```shortwave_<AOKI or EIBI or HFCC>.html```
6
-
7
- ![](/assets/img.png "")
8
-
9
- # Build the database
10
-
11
- Build the database in the sqlite directory. The database file must be gzipped and moved to the assets folder to be used by other rfdf applications.
12
-
13
- ```
14
- > cd sqlite
15
- > npm install -g ts-node
16
- > npm install
17
- > npm run build
18
- > gzip database.sqlite
19
- > mv database.sqlite.gz ../assets
20
- ```
21
-
22
- # Data sources
23
-
24
- Assembled:
25
- * https://shortwavedb.org/schedules.html
26
- * https://shortwavedb.org/index.html
27
-
28
- Original:
29
- * http://www.eibispace.de/
30
- * http://www1.s2.starcat.ne.jp/ndxc/
1
+ # Prepare data
2
+
3
+ Ideally the data should be harvested from the original sources, but for now it is taken in a rather crude way from https://shortwavedb.org.
4
+
5
+ Go to https://shortwavedb.org/schedules.html and do a search for each of EiBi, AOKI, HFCC like shown in the image (make sure to select "Display All"). Save the result HTML page for each search in the ```sources``` folder as ```shortwave_<AOKI or EIBI or HFCC>.html```
6
+
7
+ ![](/assets/img.png "")
8
+
9
+ # Build the database
10
+
11
+ Build the database in the sqlite directory. The database file must be gzipped and moved to the assets folder to be used by other rfdf applications.
12
+
13
+ ```
14
+ > cd sqlite
15
+ > npm install -g ts-node
16
+ > npm install
17
+ > npm run build
18
+ > gzip database.sqlite
19
+ > mv database.sqlite.gz ../assets
20
+ ```
21
+
22
+ # Data sources
23
+
24
+ Assembled:
25
+ * https://shortwavedb.org/schedules.html
26
+ * https://shortwavedb.org/index.html
27
+
28
+ Original:
29
+ * http://www.eibispace.de/
30
+ * http://www1.s2.starcat.ne.jp/ndxc/
31
31
  * https://www.itu.int/en/ITU-R/terrestrial/broadcast/HFBC/Pages/Schedule.aspx
Binary file