dleucas / wmmsdb (public) (License: GPLv3) (since 2018-07-08) (hash sha1)
A collection of scripts to download, transform and normalize the Watkins Marine Mammal Sound Database.

Credit:

“Watkins Marine Mammal Sound Database, Woods Hole Oceanographic Institution.”

http://cis.whoi.edu/science/B/whalesounds/index.cfm
List of commits:
Subject Hash Author Date (UTC)
use live ElasticSearch URL in example query b6df3b91ba395f62003fa89f1d6ae3f6a705ea9e dleucas 2019-05-31 23:38:40
Document geo coordinates based on the .GC field d3c9fc90773c6252209074583a00b290633f340c dleucas 2019-05-31 23:24:02
transform geo coordinates b32a76ac0917bc3c8bb85e225b19004bc56ac929 dleucas 2019-05-31 22:26:16
update index mapping with geo_point for location coordinates 510a37c03a86603425c6af347c038d69d7fa0cde dleucas 2019-05-31 22:24:42
WIP search by geo distance 61e13ff42bf7e9d283c7d18087c14bb30c2e69c8 dleucas 2019-05-31 22:16:46
about page: show task progress 9372732e21c753f99d706a474cb3a74394ced1dc dleucas 2019-05-24 01:04:07
data page: describe mapping, clean-up table a78264311f89a3b67d40fa8ba3d768c3ec9b2592 dleucas 2019-05-24 00:33:21
add site navigation, remove clutter 9e0361707284cc01d6795195df6848c1f20e88cc dleucas 2019-05-23 01:21:22
WIP initial changelog 12150e01cbb190f83d9e5f02f1431a4856c780d2 dleucas 2019-05-23 01:20:30
add source code links to about page 2fbd58dd9ee99c0568c0c8005bb7becafa8c2163 dleucas 2019-05-23 01:19:28
add download links 7cc06b24732d4167bf8d357c68098f19a66fd01d dleucas 2019-05-23 00:46:36
WIP notes on database fields 2cafc0525643f5dc0ed0a39bb1f914df4fae4f94 dleucas 2019-05-23 00:24:35
WIP notes on database fields 30cc261f4b22da6f6304b33bb57e65b2d145e931 dleucas 2019-05-22 23:43:27
more space for tables 332cdefc80e7d01046dbfe4198c16af92e85f1c4 dleucas 2019-05-22 23:42:50
spelling 48bfa46f40db11b1d120a113502d85916d166db9 dleucas 2019-05-22 23:42:22
ignore generated html files c303061b3e28314361be79b7eea01e38deb4cc52 dleucas 2019-05-22 22:39:25
add Makefile for pandoc based html5 generation 5537d1647e4b76b86bc54b9ce6383feb9618d226 dleucas 2019-05-22 22:37:48
fix spelling and use pandoc title d66f11d8c855ef270ebde81ff5a55473729633f2 dleucas 2019-05-22 22:30:08
Revert "fix spelling and use pandoc title feature" 4a5aca9355e0a2221591047e7b4b56b5e42414e6 dleucas 2019-05-22 22:23:50
fix spelling and use pandoc title feature dc3c3f6b98235fb9d7268ccd5b5c5fb62b52a93c dleucas 2019-05-22 21:54:03
Commit b6df3b91ba395f62003fa89f1d6ae3f6a705ea9e - use live ElasticSearch URL in example query
Author: dleucas
Author date (UTC): 2019-05-31 23:38
Committer name: dleucas
Committer date (UTC): 2019-05-31 23:38
Parent(s): d3c9fc90773c6252209074583a00b290633f340c
Signer:
Signing key:
Signing status: N
Tree: d85c4fed0138278a0f0683b700b2963b437ca0d4
File Lines added Lines deleted
webroot/changelog.md 2 2
File webroot/changelog.md changed (mode: 100644) (index 4d59ca6..bb76840)
... ... A typical question could be:
14 14
15 15 > "What sound clips were recorded in a 500 km radius of 23° north and 112° west?" > "What sound clips were recorded in a 500 km radius of 23° north and 112° west?"
16 16
17 Using [curl][curl] and [jq][jq] that question would be translated into the following query.
17 Using [curl][curl] and [jq][jq] that question would translate into the following ElasticSearch query.
18 18
19 19 ```bash ```bash
20 curl -s 'localhost:9200/wmmsdb/record/_search?size=1' -H 'Content-Type: application/json' -d'{
20 curl -s -XGET 'https://marine-mammal.soundwave.cl/es/_search?size=1' -H 'Content-Type: application/json' -d'{
21 21 "query": { "query": {
22 22 "filtered": { "filtered": {
23 23 "filter": { "filter": {
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/dleucas/wmmsdb

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/dleucas/wmmsdb

Clone this repository using git:
git clone git://git.rocketgit.com/user/dleucas/wmmsdb

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main