de-francophones commited on
Commit
4cec618
·
verified ·
1 Parent(s): 9390e90

Upload 2378 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +8 -0
  2. tsammalex-data/.gitattributes +1 -0
  3. tsammalex-data/.gitignore +37 -0
  4. tsammalex-data/.travis.yml +14 -0
  5. tsammalex-data/CONTRIBUTING.md +56 -0
  6. tsammalex-data/MANIFEST.in +1 -0
  7. tsammalex-data/README.md +71 -0
  8. tsammalex-data/RELEASE.md +9 -0
  9. tsammalex-data/setup.py +37 -0
  10. tsammalex-data/species.json +0 -0
  11. tsammalex-data/tsammalexdata/README.md +27 -0
  12. tsammalex-data/tsammalexdata/__init__.py +2 -0
  13. tsammalex-data/tsammalexdata/add_source_url.py +37 -0
  14. tsammalex-data/tsammalexdata/add_synonym_col.py +12 -0
  15. tsammalex-data/tsammalexdata/catalogueoflife.py +78 -0
  16. tsammalex-data/tsammalexdata/commands.py +42 -0
  17. tsammalex-data/tsammalexdata/data/Edmond.xml +3 -0
  18. tsammalex-data/tsammalexdata/data/audios.csv +1 -0
  19. tsammalex-data/tsammalexdata/data/categories.csv +77 -0
  20. tsammalex-data/tsammalexdata/data/contributors.csv +7 -0
  21. tsammalex-data/tsammalexdata/data/distribution.csv +0 -0
  22. tsammalex-data/tsammalexdata/data/ecoregions.json +3 -0
  23. tsammalex-data/tsammalexdata/data/external/catalogueoflife.json +0 -0
  24. tsammalex-data/tsammalexdata/data/external/eol.json +3 -0
  25. tsammalex-data/tsammalexdata/data/external/gbif/Oxygonumdelagoense.json +1 -0
  26. tsammalex-data/tsammalexdata/data/external/gbif/abelmoschusesculentus.json +1 -0
  27. tsammalex-data/tsammalexdata/data/external/gbif/abildgaardiawallichianalye.json +0 -0
  28. tsammalex-data/tsammalexdata/data/external/gbif/abrusprecatorius.json +1 -0
  29. tsammalex-data/tsammalexdata/data/external/gbif/abutilonangulatum.json +1 -0
  30. tsammalex-data/tsammalexdata/data/external/gbif/abutilonfruticosum.json +1 -0
  31. tsammalex-data/tsammalexdata/data/external/gbif/abutilonglaucum.json +1 -0
  32. tsammalex-data/tsammalexdata/data/external/gbif/acaciaataxacantha.json +1 -0
  33. tsammalex-data/tsammalexdata/data/external/gbif/acaciacaffra.json +1 -0
  34. tsammalex-data/tsammalexdata/data/external/gbif/acaciaerioloba.json +1 -0
  35. tsammalex-data/tsammalexdata/data/external/gbif/acaciaerubescens.json +1 -0
  36. tsammalex-data/tsammalexdata/data/external/gbif/acaciafleckiischinz.json +1 -0
  37. tsammalex-data/tsammalexdata/data/external/gbif/acaciahaematoxylon.json +1 -0
  38. tsammalex-data/tsammalexdata/data/external/gbif/acaciahebecladahebeclada.json +1 -0
  39. tsammalex-data/tsammalexdata/data/external/gbif/acaciahereroensis.json +1 -0
  40. tsammalex-data/tsammalexdata/data/external/gbif/acaciakarroo.json +1 -0
  41. tsammalex-data/tsammalexdata/data/external/gbif/acacialuederitzii.json +1 -0
  42. tsammalex-data/tsammalexdata/data/external/gbif/acaciamellifera.json +1 -0
  43. tsammalex-data/tsammalexdata/data/external/gbif/acacianebrownii.json +1 -0
  44. tsammalex-data/tsammalexdata/data/external/gbif/acacianigrescens.json +1 -0
  45. tsammalex-data/tsammalexdata/data/external/gbif/acacianiloticasubspkraussiana.json +1 -0
  46. tsammalex-data/tsammalexdata/data/external/gbif/acaciarobusta.json +1 -0
  47. tsammalex-data/tsammalexdata/data/external/gbif/acaciasenegal.json +1 -0
  48. tsammalex-data/tsammalexdata/data/external/gbif/acaciaseyal.json +1 -0
  49. tsammalex-data/tsammalexdata/data/external/gbif/acaciatortilis.json +0 -0
  50. tsammalex-data/tsammalexdata/data/external/gbif/acaciatortilissubspheteracantha.json +0 -0
.gitattributes CHANGED
@@ -57,3 +57,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ tsammalex-data/tsammalexdata/data/ecoregions.json filter=lfs diff=lfs merge=lfs -text
61
+ tsammalex-data/tsammalexdata/data/Edmond.xml filter=lfs diff=lfs merge=lfs -text
62
+ tsammalex-data/tsammalexdata/data/external/eol.json filter=lfs diff=lfs merge=lfs -text
63
+ tsammalex-data/tsammalexdata/data/external/tdwg/level1.json filter=lfs diff=lfs merge=lfs -text
64
+ tsammalex-data/tsammalexdata/data/external/tdwg/level2.json filter=lfs diff=lfs merge=lfs -text
65
+ tsammalex-data/tsammalexdata/data/external/tdwg/level3.json filter=lfs diff=lfs merge=lfs -text
66
+ tsammalex-data/tsammalexdata/data/external/tdwg/level4.json filter=lfs diff=lfs merge=lfs -text
67
+ tsammalex-data/tsammalexdata/data/external/theplantlist.json filter=lfs diff=lfs merge=lfs -text
tsammalex-data/.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.csv text eol=crlf
tsammalex-data/.gitignore ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.py[cod]
2
+
3
+ # C extensions
4
+ *.so
5
+
6
+ # Packages
7
+ *.egg
8
+ *.egg-info
9
+ dist
10
+ build
11
+ eggs
12
+ parts
13
+ bin
14
+ var
15
+ sdist
16
+ develop-eggs
17
+ .installed.cfg
18
+ lib
19
+ lib64
20
+ __pycache__
21
+
22
+ # Installer logs
23
+ pip-log.txt
24
+
25
+ # Unit test / coverage reports
26
+ .coverage
27
+ .tox
28
+ nosetests.xml
29
+
30
+ # Translations
31
+ *.mo
32
+
33
+ # Mr Developer
34
+ .mr.developer.cfg
35
+ .project
36
+ .pydevproject
37
+ .idea
tsammalex-data/.travis.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language: python
2
+ python:
3
+ - "3.4"
4
+ install:
5
+ - pip install nose
6
+ script:
7
+ - python setup.py install
8
+ - nosetests
9
+ notifications:
10
+ email:
11
12
13
14
tsammalex-data/CONTRIBUTING.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Contributing
2
+
3
+ <p>
4
+ The expansion of the Tsammalex database strongly depends on researchers and communities willing
5
+ to share their knowledge or collected data. If you are interested in a contribution and have
6
+ questions, don't hesitate to
7
+ <a href="http://tsammalex.clld.org/contact">contact</a> one of the editors
8
+ (Christfried Naumann, Steven Moran or Robert Forkel).
9
+ </p>
10
+ <p>
11
+ The structure of the database is based on
12
+ <a href="http://en.wikipedia.org/wiki/Comma-separated_values" title="csv tables"><i class="icon-share"></i> csv tables</a>
13
+ ("...csv"), i.e., a simple file format that can
14
+ be opened and edited in editors such as Notepad, or calculation programs such as LibreOffice Calc or
15
+ Microsoft Excel.
16
+ <a href="https://github.com/clld/tsammalex-data/tree/master/tsammalexdata/data" title="These csv files"><i class="icon-share"></i> These csv files</a>
17
+ contain all data on biological species and related linguistic or
18
+ lexical data, as well as metadata of audio and image files, etc.
19
+ There is
20
+ <a href="https://github.com/clld/tsammalex-data/blob/master/tsammalexdata/data/sources.bib" title="a BibTeX"><i class="icon-share"></i> a BibTeX</a>
21
+ file containing all
22
+ references cited. Images of species (licensed as Creative Commons or in Public domain) might be
23
+ uploaded to websites such as Flickr or Wikimedia Commons and linked, or sent to the editors.
24
+ For more information on the structure of the data and on planned improvements refer to
25
+ <a href="http://tsammalex.clld.org/static/Tsammalex-Manual.pdf">the manual [PDF]</a>.
26
+ </p>
27
+ <p>
28
+ Contributions of data must be committed in the form of csv files. In a Windows environment, we recommend
29
+ using LibreOffice Calc. Open the csv table templates, set the character encoding to UTF-8 (Unicode) and
30
+ select comma separated table. Have a look into the sketch manual about obligatory vs. optional
31
+ information, and start entering data. Send these files to the editors.
32
+ </p>
33
+ <p>
34
+ Alternatively, if you feel comfortable with the
35
+ <a href="https://help.github.com/articles/using-pull-requests/" title="GitHub collaboration model"><i class="icon-share"></i> GitHub collaboration model</a>
36
+ you may fork the
37
+ <a href="https://github.com/clld/tsammalex-data" title="tsammalex-data repository"><i class="icon-share"></i> tsammalex-data repository</a>,
38
+ add your data and submit a pull request.
39
+ </p>
40
+ <p>
41
+ Notes:
42
+ </p>
43
+ <ul>
44
+ <li>Lexical data in "names.csv" must be associated with one species (or another biological taxon, such as a genus).</li>
45
+ <li>Any species (or other taxon) referred to under "names.csv" must be included previously under "species.csv".</li>
46
+ <li>
47
+ The consistency of the data in the tsammalex-data repository is checked by
48
+ <a href="https://travis-ci.org/clld/tsammalex-data" title="Travis-CI"><i class="icon-share"></i> Travis-CI</a>,
49
+ so if you choose to add data using pull request, you get the added benefit of having your additions
50
+ cross-checked while you are working on them.
51
+ </li>
52
+ <li>
53
+ Further information on the rationale behind curating the data in this way are available
54
+ in <a href="http://clld.org/2015/02/03/open-source-research-data.html" title="this post"><i class="icon-share"></i> this post</a>.
55
+ </li>
56
+ </ul>
tsammalex-data/MANIFEST.in ADDED
@@ -0,0 +1 @@
 
 
1
+ recursive-include tsammalexdata *.csv *.bib *.json *.xml
tsammalex-data/README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Tsammalex Data
2
+ ==============
3
+
4
+ [![Build Status](https://travis-ci.org/clld/tsammalex-data.svg?branch=master)](https://travis-ci.org/clld/tsammalex-data)
5
+
6
+ This repository holds the data served by http://tsammalex.clld.org/
7
+ The data is licensed under a Creative Commons Attribution 4.0 International License.
8
+
9
+ The data is stored as collection of csv files, suitable for editing with LibreOffice.
10
+
11
+
12
+ Adding images
13
+ -------------
14
+
15
+ Adding an image is done in two steps:
16
+
17
+ 1. Adding a row to ``images.csv``, specifying a publicly available URL to access the image in the ``source_url`` column (this may be a temporary GitHub repository, wikimedia commons or other publicly available webspace).
18
+ 2. Providing the image at the specified URL for download.
19
+
20
+ Notes:
21
+
22
+ - Use the [md5 hash](http://en.wikipedia.org/wiki/MD5) of the image file as `id` for the row in `images.csv`.
23
+ Computing this hash can be done using [FCIV on Windows](http://support.microsoft.com/kb/889768), with the
24
+ [md5sum command](http://en.wikipedia.org/wiki/Md5sum) on Linux or
25
+ with the [md5 command](http://osxdaily.com/2009/10/13/check-md5-hash-on-your-mac/) on mac.
26
+ - When a data release is created, new images will be fetched from the sources and uploaded to [Edmond](http://edmond.mpdl.mpg.de/imeji/collection/d2JGQRxO19XTOEXG) - the MPS' media repository.
27
+
28
+
29
+ Referential Integrity
30
+ ---------------------
31
+
32
+ Currently, insuring referential integrity of the data is the responsibility of the editor. In particular editors have
33
+ to make sure
34
+
35
+ - ``id`` columns hold unique values,
36
+ - ``<name>__id`` columns hold values which exist as ``id`` in the referenced table,
37
+ - ``<name>__ids`` columns hold comma-separated lists of values which exist as ``id`` in the referenced table.
38
+
39
+ Upon push, referential integrity will be checked by travis-ci.
40
+
41
+
42
+ Changing the scientific name of a species
43
+ -----------------------------------------
44
+
45
+ Since the ``id`` of a species is created from its scientifc name, changing this name involves the following steps:
46
+
47
+ 1. Add a new species with the updated name and ``id`` to ``species.csv``.
48
+ 2. Update all references to the ``id`` in ``images.csv`` and ``words.csv``.
49
+ 3. **TODO** redirect the old species to the new one by ...
50
+
51
+
52
+ Supplemental Data
53
+ -----------------
54
+
55
+ In addition to the data managed in this repository, we fetch data from other sources to enhance the usability of the site.
56
+
57
+ - Given a proper scientific name for a species we can fetch a corresponding identifier from [EOL](http://eol.org).
58
+ - Given an EOL identifier, we can information about the biological classification of a species and a common english name.
59
+ - We also use information on terrestrial ecoregions from WWF, which can be referenced using ecoregion identifiers in the format ``AT0101``.
60
+ - WWF ecoregions and countries in which a species occurs can be computed by matching [occurrence information](http://www.gbif.org/occurrence) from [GBIF](http://www.gbif.org) against region borders.
61
+
62
+
63
+ Notes
64
+ -----
65
+
66
+ Notes to self:
67
+
68
+ - To diff sorted lines, you may run:
69
+
70
+ diff -b <(sort words.csv) <(sort words_CN.csv)
71
+
tsammalex-data/RELEASE.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ## Creating a release of Tsammalex Data
2
+
3
+ 1. Make sure the integrity checks for the data pass.
4
+ 2. Enrich the taxon data from external sources running the `updatetaxa` command.
5
+ 3. Git add, commit and push the updated taxon data.
6
+ 4. Upload images to the MPG imeji repository.
7
+ 5. Git commit and push the updated image data.
8
+ 6. [Create a release](https://help.github.com/articles/creating-releases/) of the repository.
9
+ 7. [Import the release](https://github.com/clld/tsammalex/blob/master/RELEASE.md) in http://tsammalex.clld.org
tsammalex-data/setup.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+
4
+ requires = [
5
+ 'requests',
6
+ 'purl',
7
+ 'pycountry',
8
+ 'flickrapi',
9
+ 'python-dateutil',
10
+ 'BeautifulSoup4',
11
+ 'shapely',
12
+ ]
13
+
14
+ setup(
15
+ name='tsammalexdata',
16
+ version='0.0',
17
+ description='data for the tsammalex site',
18
+ long_description='',
19
+ classifiers=[
20
+ "Programming Language :: Python",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.4",
23
+ ],
24
+ author='',
25
+ author_email='',
26
+ url='',
27
+ keywords='data linguistics',
28
+ packages=find_packages(),
29
+ include_package_data=True,
30
+ zip_safe=False,
31
+ install_requires=requires,
32
+ entry_points={
33
+ 'console_scripts': [
34
+ 'updatetaxa = tsammalexdata.commands:update_taxa']
35
+ },
36
+ tests_require=[],
37
+ test_suite="tsammalexdata")
tsammalex-data/species.json ADDED
The diff for this file is too large to render. See raw diff
 
tsammalex-data/tsammalexdata/README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The tsammalexdata package
2
+ -------------------------
3
+
4
+ The ``tsammalexdata`` package provides the following functionality:
5
+
6
+ - A test suite which can be invoked by travis-ci (or locally) to check integrity of the data.
7
+ - Scripts to enrich the core data with supplemental data from external sources (like EOL of GBIF).
8
+
9
+
10
+ Making a release of the data:
11
+
12
+ 1. Make sure the tests pass:
13
+ ```
14
+ $ nosetests
15
+ ----------------------------------------
16
+ Ran ...
17
+
18
+ OK
19
+ ```
20
+ 2. Harvest additional data and compute distribution data:
21
+ ```bash
22
+ updatetaxa
23
+ git add tsammalexdata/data/external/gbif/*.json
24
+ git commit -a -m"updated taxa info from external sources"
25
+ git push origin
26
+ ```
27
+ 3. Upload images.
tsammalex-data/tsammalexdata/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ #
2
+
tsammalex-data/tsammalexdata/add_source_url.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import unicode_literals, print_function
2
+ import json
3
+
4
+ from purl import URL
5
+
6
+ from tsammalexdata.util import visit, data_file
7
+
8
+
9
+ class Visitor(object):
10
+ def __init__(self):
11
+ self.cols = {}
12
+ with open(data_file('images_md.json'), 'rb') as fp:
13
+ self.md = json.load(fp)
14
+ self.count = 0
15
+
16
+ def __call__(self, index, row):
17
+ if index == 0:
18
+ self.cols = {col: i for i, col in enumerate(row)}
19
+ return row
20
+
21
+ url = URL(row[self.cols['src']])
22
+ try:
23
+ for filename in url.path_segments():
24
+ if filename in self.md:
25
+ if self.md[filename].get('source_url'):
26
+ row[self.cols['source']] = self.md[filename]['source_url']
27
+ self.count += 1
28
+ break
29
+ except IndexError:
30
+ pass
31
+ return row
32
+
33
+
34
+ if __name__ == '__main__':
35
+ v = Visitor()
36
+ visit('images.csv', v)
37
+ print(v.count)
tsammalex-data/tsammalexdata/add_synonym_col.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import unicode_literals, print_function
2
+
3
+ from tsammalexdata.util import visit
4
+
5
+
6
+ class Visitor(object):
7
+ def __call__(self, index, row):
8
+ return row[:2] + ['synonyms' if index == 0 else ''] + row[2:]
9
+
10
+
11
+ if __name__ == '__main__':
12
+ visit('taxa.csv', Visitor())
tsammalex-data/tsammalexdata/catalogueoflife.py ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Functionality to retrieve information from the Catalogue of Life Web Service
3
+
4
+ .. seealso:: http://webservice.catalogueoflife.org/col/webservice
5
+ """
6
+ from __future__ import print_function, unicode_literals, absolute_import, division
7
+ import sys
8
+ import os
9
+
10
+ from tsammalexdata.util import data_file, jsonload, jsondump, csv_items, DataProvider, unique
11
+
12
+
13
+ def text(e, ee):
14
+ ee = e.find(ee)
15
+ return (ee.text if ee is not None else '') or ''
16
+
17
+
18
+ class CatalogueOfLife(DataProvider):
19
+ host = 'www.catalogueoflife.org'
20
+
21
+ def _get(self, **kw):
22
+ try:
23
+ return self.get('col/webservice', type='xml', **kw).find('result')
24
+ except:
25
+ return None
26
+
27
+ def get_id(self, name):
28
+ result = self._get(name=name)
29
+ if result:
30
+ if text(result, 'name_status') == 'accepted name':
31
+ return text(result, 'id')
32
+ if result.find('accepted_name'):
33
+ return text(result.find('accepted_name'), 'id')
34
+
35
+ def get_info(self, id_):
36
+ result = self._get(id=id_, response='full')
37
+ if result:
38
+ # classification: taxon.id name rank url
39
+ # synonyms: synonym.name
40
+ res = {k: text(result, k) for k in 'genus species author url'.split()}
41
+ res['distribution'] = unique(
42
+ region.split()[0] for region in
43
+ text(result, 'distribution').split('; ') if region)
44
+ if result.find('classification'):
45
+ res['classification'] = {
46
+ t.rank.lower(): t.as_dict() for t in
47
+ [Taxon(e) for e in result.find('classification').findall('taxon')]}
48
+ if result.find('synonyms'):
49
+ res['synonyms'] = filter(
50
+ None,
51
+ [text(e, 'name') for e in result.find('synonyms').findall('synonym')])
52
+ return {k: v for k, v in res.items() if v}
53
+
54
+ def update(self, taxon, data):
55
+ if 'distribution' in data:
56
+ taxon['tdwgregions'] = unique(data['distribution'])
57
+ classification = data.get('classification', {})
58
+ for key in 'kingdom phylum class order genus family'.split():
59
+ if classification.get(key):
60
+ taxon[key] = classification[key]['name']
61
+ taxon[self.name + '_url'] = data['url']
62
+ if 'author' in data:
63
+ taxon['description'] = data['author']
64
+
65
+
66
+ class Taxon(object):
67
+ def __init__(self, e):
68
+ for attr in 'id name rank url'.split():
69
+ setattr(self, attr, text(e, attr))
70
+
71
+ def as_dict(self):
72
+ return dict(id=self.id, name=self.name, url=self.url)
73
+
74
+
75
+ if __name__ == '__main__':
76
+ api = CatalogueOfLife()
77
+ if sys.argv[1:]:
78
+ print(api.cli(sys.argv[1]))
tsammalex-data/tsammalexdata/commands.py ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import print_function, unicode_literals, absolute_import, division
2
+ from collections import OrderedDict
3
+ import argparse
4
+
5
+ from tsammalexdata.util import data_file, jsonload, jsondump, csv_items
6
+ from tsammalexdata.gbif import GBIF
7
+ from tsammalexdata.catalogueoflife import CatalogueOfLife
8
+ from tsammalexdata.eol import EOL
9
+ from tsammalexdata.taxa import item2spec
10
+ from tsammalexdata.distribution import main
11
+
12
+
13
+ def update_taxa():
14
+ parser = argparse.ArgumentParser(
15
+ description="""\
16
+ Update the supplemental data for taxa from external sources.
17
+
18
+ We go through the taxa listed in taxa.csv and look for additional information at
19
+ GBIF, EOL and Catalogue Of Life.""")
20
+ parser.add_argument("--distribution-only", action="store_true")
21
+ args = parser.parse_args()
22
+
23
+ if not args.distribution_only:
24
+ fname = data_file('taxa.json')
25
+ taxa = jsonload(fname, default=[], object_pairs_hook=OrderedDict)
26
+ ids = set(spec['id'] for spec in taxa)
27
+
28
+ # add stubs for new entries in taxa.csv:
29
+ for i, item in enumerate(csv_items('taxa.csv')):
30
+ if item['id'] not in ids:
31
+ taxa.insert(i, item2spec(item))
32
+
33
+ for cls in [CatalogueOfLife, GBIF, EOL]:
34
+ with cls() as provider:
35
+ for i, spec in enumerate(taxa):
36
+ if i % 500 == 0:
37
+ print(i)
38
+ provider.update_taxon(spec)
39
+
40
+ jsondump(taxa, fname, indent=4)
41
+
42
+ main()
tsammalex-data/tsammalexdata/data/Edmond.xml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb7f60b1d6bbffde09e5411b2c19c563b461ab61005a9694076f13031e8a00ad
3
+ size 19873817
tsammalex-data/tsammalexdata/data/audios.csv ADDED
@@ -0,0 +1 @@
 
 
1
+ id,names__id,tags,mime_type,src,creator,date,place,permission,source,source_url,comments
tsammalex-data/tsammalexdata/data/categories.csv ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,name,meaning,languages__id,notes
2
+ afr-amfibiee,amfibieë,amphibians,afr,
3
+ afr-bome,bome,trees,afr,
4
+ afr-diere,diere,animals,afr,
5
+ afr-grasse,grasse,grasses,afr,
6
+ afr-insekte,insekte,insects,afr,
7
+ afr-ongewerweldes,ongewerweldes,invertebrates,afr,
8
+ afr-plante,plante,plants,afr,
9
+ afr-reptiele,reptiele,reptiles,afr,
10
+ afr-soogdiere,soogdiere,mammals,afr,
11
+ afr-swamme,swamme,fungi,afr,
12
+ afr-visse,visse,fish,afr,
13
+ afr-voels,voëls,birds,afr,
14
+ deu-amphibien,Amphibien,amphibians,deu,
15
+ deu-baume,Bäume,trees,deu,
16
+ deu-fische,Fische,fish,deu,
17
+ deu-graser,Gräser,grasses,deu,
18
+ deu-insekten,Insekten,insects,deu,
19
+ deu-kletterpflanzen,Kletterpflanzen,climbers,deu,
20
+ deu-pflanzen,Pflanzen,plants,deu,
21
+ deu-pilze,Pilze,fungi,deu,
22
+ deu-reptilien,Reptilien,reptiles,deu,
23
+ deu-saugetiere,Säugetiere,mammals,deu,
24
+ deu-spinnentiere,Spinnentiere,arachnids,deu,
25
+ deu-straucher,Sträucher,shrubs,deu,
26
+ deu-tiere,Tiere,animals,deu,
27
+ deu-vogel,Vögel,birds,deu,
28
+ deu-wirbellose,Wirbellose,invertebrates,deu,
29
+ eng-amphibians,amphibians,,eng,
30
+ eng-animals,animals,,eng,
31
+ eng-arachnids,arachnids,,eng,
32
+ eng-birds,birds,,eng,
33
+ eng-bulbsherbs,bulbs & herbs,,eng,
34
+ eng-creepersclimbers,creepers & climbers,,eng,
35
+ eng-dwarfshrubs,dwarf shrubs,,eng,
36
+ eng-ferns,ferns,,eng,
37
+ eng-fungi,fungi,,eng,
38
+ eng-grassessedges,grasses & sedges,,eng,
39
+ eng-insects,insects,,eng,
40
+ eng-invertebrates,invertebrates,,eng,
41
+ eng-mammals,mammals,,eng,
42
+ eng-molluscs,molluscs,,eng,
43
+ eng-plants,plants,,eng,
44
+ eng-reptiles,reptiles,,eng,
45
+ eng-shrubs,shrubs,,eng,
46
+ eng-succulents,succulents,,eng,
47
+ eng-trees,trees,,eng,
48
+ gwj-ana,ǃánà,vine (life form),gwj,Nakagawa 2013: 1; Tanaka/Sugawara 2010: 121
49
+ gwj-au,ǁʼāū,fish,gwj,Nakagawa 2013: 53; check if really general term
50
+ gwj-dzera,dzérá,bird (life form),gwj,Nakagawa 2013: 167; in Tanaka&Sugawara 2010: 8 = zera
51
+ gwj-gaa,ɡǀa᷇ã,grass (life form),gwj,"Tanaka/Sugawara 2010: 49, 121"
52
+ gwj-guuwahaa,gúũ-wà-háã,"useless/harmless; non-edible, non-medicinal and non-dangerous plants and animals",gwj,"a category opposed to the others, Tanaka/Sugawara 2010: 121"
53
+ gwj-hau,ǁʰàù,animals caught with snare,gwj,"part of the ǀχáa-category (edible vertebrates); Nakagawa 2013: 41; Tanaka/Sugawara 2010: 3, 121"
54
+ gwj-ii,ìī,tree (life form),gwj,Nakagawa 2013: 140; Tanaka/Sugawara 2010: 121; also meaning 'stick'
55
+ gwj-kxooxo,kχʼóo-χo,"larger ungulates that are hunted, “eat-thing”",gwj,"part of the ǀχáa-category (edible vertebrates); Tanaka/Sugawara 2010: 3, 121"
56
+ gwj-kxooxoobi,kχʼôo-χo ǀʔóbi,game with plenty of/fatty meat,gwj,Tanaka/Sugawara 2010: 1
57
+ gwj-paaxo,paa-χò,"dangerous animals, “bite-thing”; synonym: ŋǂīī-ǀùà, ŋǂǐi-ǀoã (carnivores, possible man-killers)",gwj,"Nakagawa 2013: 81; Tanaka/Sugawara 2010: 16, 121; ŋǂīī-ǀùa: “beast-DIM”, mainly felines and canines, maybe a loan from Naro"
58
+ gwj-qxao,ǀqχʼáo,snake (life form),gwj,Tanaka/Sugawara 2010: 120
59
+ gwj-tsoo,tsôo,medicine,gwj,Tanaka/Sugawara 2010: 121
60
+ gwj-tsum,tsṵ̀m̄,plants eaten raw,gwj,Nakagawa 2013: 171
61
+ gwj-uuxo,ǂʔuũ-χò,"edible plants and insects, “eat-thing”",gwj,Tanaka/Sugawara 2010: 121
62
+ gwj-xaa,ǀχáa,"edible vertebrate animals, “meat”",gwj,Tanaka/Sugawara 2010: 121
63
+ gwj-xaaoa,ǀχáa-ǀoa,"small game animals, “small meat”",gwj,Tanaka/Sugawara 2010
64
+ nhr-cgari,cgárí,"tree, thornbush",nhr,Visser 2001: 237
65
+ nhr-chootcgau,chõó tcg'au,"vegetable eaten by whites (eg. lettuce, cabbage, spinach)",nhr,Visser 2001: 234
66
+ nhr-dere,dère,kind of nice food,nhr,Visser 2001: 234
67
+ nhr-ghorokgoose,ghòrò kg'oose,"birds of prey (kite, buzzard, falcon, hawk, eagle, harrier, kestrel)",nhr,Visser 2001: 226
68
+ nhr-hii,hìi,trees,nhr,Visser 2001: 237
69
+ nhr-kgae,kg'ãe,vultures,nhr,Visser 2001: 226
70
+ nhr-khuuga,khúúga,Khoesan medicine (makes you fat),nhr,Visser 2001: 234
71
+ nhr-qgui,qg'ui,thistle,nhr,Visser 2001: 235
72
+ nhr-tcgaberere,tcg'aberere,"vegetable, merogo",nhr,Visser 2001: 236
73
+ nhr-tchaadikgoocoa,tchàa di kg'oo-coa,animals of the field,nhr,Visser 2001: 225
74
+ nhr-tshaatsara,tshàa tsa̠ra,water birds,nhr,Visser 2001: 227
75
+ nhr-tsom,tso̠m,"greens, vegetables",nhr,Visser 2001: 236
76
+ nhr-xaedikgoocoa,x'áé di kg'oo-coa,home animals,nhr,Visser 2001: 225
77
+ nhr-xau,x'aù,fish,nhr,Visser 2001: 225
tsammalex-data/tsammalexdata/data/contributors.csv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ id,name,sections,editor_ord,editor_sections,affiliation,research_project,homepage,notes
2
+ jn,"Jaulgey, Noémie",,,,"Max Planck Institute for Evolutionary Anthropology, Department of Linguistics, Leipzig, Germany",Tsammalex,,
3
+ nc,"Naumann, Christfried",,1,,"Max Planck Institute for Evolutionary Anthropology, Department of Linguistics, Leipzig, Germany",Tsammalex,http://www.eva.mpg.de/linguistics/staff/christfried-naumann/home.html,
4
+ sl,"Sell, Lena",,,,"Max Planck Institute for Evolutionary Anthropology, Department of Linguistics, Leipzig, Germany",Tsammalex,,
5
+ ms,"Moran, Steven",,2,,"","Dogon Languages",,
6
+ sg,"Segerer, Guillaume",,3,,"LLACAN - Langage, langues et cultures d'Afrique noire","RefLex",,
7
+ fr,"Forkel, Robert",,4,,"Max Planck Institute for Evolutionary Anthropology, Department of Linguistics, Leipzig, Germany",CLLD,,
tsammalex-data/tsammalexdata/data/distribution.csv ADDED
The diff for this file is too large to render. See raw diff
 
tsammalex-data/tsammalexdata/data/ecoregions.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7602da9617907f3daa8a505f462cb4edd4e733e24d0e060f201d1a3dbb7fcb3
3
+ size 10625843
tsammalex-data/tsammalexdata/data/external/catalogueoflife.json ADDED
The diff for this file is too large to render. See raw diff
 
tsammalex-data/tsammalexdata/data/external/eol.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfe2cc19f73232076272a1113cd6ede672c9a6a7b86aebd7971b7cc90c220ac7
3
+ size 14805212
tsammalex-data/tsammalexdata/data/external/gbif/Oxygonumdelagoense.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/abelmoschusesculentus.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 6, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 3152707, "family": "Malvaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:09:04.922+0000", "speciesKey": 3152707, "month": 11, "lastParsed": "2014-11-14T15:09:03.814+0000", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2011, "facts": [], "species": "Abelmoschus esculentus", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920162926", "countryCode": "TR", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=-629212911", "format": "text/html"}], "relations": [], "eventDate": "2011-10-31T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1143022163", "scientificName": "Abelmoschus esculentus (L.) Moench", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 37.52083, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152705, "locality": "Milet, Landwirtschaftsfl\u00e4chen zwischen Balat und Milet", "key": 920162926, "phylumKey": 49, "genericName": "Abelmoschus", "day": 1, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:13:35.260+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": 27.27372, "extensions": {}, "country": "Turkey", "recordedBy": "881932368", "genus": "Abelmoschus", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 3152707, "family": "Malvaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:33:46.289+0000", "speciesKey": 3152707, "month": 5, "identifiedBy": "Pablo Gazon", "lastParsed": "2014-08-28T07:33:44.539+0000", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2007, "facts": [], "species": "Abelmoschus esculentus", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695202", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2007-05-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1345697", "scientificName": "Abelmoschus esculentus (L.) Moench", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 12.23265, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152705, "key": 998695202, "phylumKey": 49, "genericName": "Abelmoschus", "day": 5, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:24.027+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": -2.35107, "extensions": {}, "dateIdentified": "2007-05-04T22:00:00.000+0000", "country": "France", "recordedBy": "Pablo Gazon", "genus": "Abelmoschus", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 3152707, "family": "Malvaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2015-01-08T14:37:09.510+0000", "speciesKey": 3152707, "month": 8, "county": "Talais [INSEE:33521]", "lastParsed": "2015-01-08T14:37:09.430+0000", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2005, "facts": [], "species": "Abelmoschus esculentus", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "1051529738", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-08-14T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1621981", "scientificName": "Abelmoschus esculentus (L.) Moench", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 45.47237, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152705, "key": 1051529738, "phylumKey": 49, "genericName": "Abelmoschus", "day": 15, "identifiedBy": "Yves PENIT", "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:24.041+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": -1.05736, "extensions": {}, "dateIdentified": "2005-08-14T22:00:00.000+0000", "country": "France", "recordedBy": "Yves PENIT", "genus": "Abelmoschus", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 3152708, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T01:01:01.760+0000", "speciesKey": 3152707, "month": 11, "genericName": "Hibiscus", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2003, "facts": [], "species": "Abelmoschus esculentus", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "197126967", "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-11-16T23:00:00.000+0000", "classKey": 220, "catalogNumber": "28414", "scientificName": "Hibiscus esculentus L.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 7.604, "elevation": 440.0, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "12", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152705, "locality": "Foret Classee de Dere", "key": 197126967, "phylumKey": 49, "day": 17, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:28.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": -8.212, "extensions": {}, "country": "Guinea", "recordedBy": "Jean-Louis Holie", "genus": "Abelmoschus", "order": "Malvales"}, {"protocol": "BIOCASE", "taxonKey": 3152707, "family": "Malvaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:09:04.502+0000", "speciesKey": 3152707, "month": 1, "lastParsed": "2014-11-14T15:09:03.778+0000", "phylum": "Magnoliophyta", "orderKey": 941, "year": 1994, "facts": [], "species": "Abelmoschus esculentus", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920162923", "countryCode": "LK", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "1994-01-27T23:00:00.000+0000", "classKey": 220, "catalogNumber": "-1685783492", "scientificName": "Abelmoschus esculentus (L.) Moench", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 7.27257, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152705, "locality": "Negombo", "key": 920162923, "phylumKey": 49, "genericName": "Abelmoschus", "day": 28, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:13:35.656+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": 79.84726, "extensions": {}, "country": "Sri Lanka", "recordedBy": "794562383", "genus": "Abelmoschus", "order": "Malvales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 3152708, "family": "Malvaceae", "institutionCode": "SSMN", "lastInterpreted": "2014-06-05T06:52:41.138+0000", "speciesKey": 3152707, "habitat": "For\u00eat", "gbifID": "373139618", "identifiedBy": "Paquil\u00e9 Ch\u00e9rif", "lastParsed": "2014-05-29T11:40:14.632+0000", "phylum": "Magnoliophyta", "orderKey": 941, "type": "Event", "facts": [], "species": "Abelmoschus esculentus", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Lola", "relations": [], "continent": "AFRICA", "classKey": 220, "catalogNumber": "PCBMN_238", "scientificName": "Hibiscus esculentus L.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 7.65233, "datasetName": "Phan\u00e9rogames des Monts Nimba", "publishingOrgKey": "1c905e09-830d-43d6-bea7-32b9275364bf", "geodeticDatum": "WGS84", "collectionCode": "PCBMN", "kingdomKey": 6, "genusKey": 3152705, "locality": "Bossou", "key": 373139618, "phylumKey": 49, "genericName": "Hibiscus", "class": "Magnoliopsida", "publishingCountry": "GN", "identifier": "238", "lastCrawled": "2014-09-04T22:19:44.121+0000", "language": "fr", "datasetKey": "d7cf2c48-3d3a-4981-bfce-dbef6fe6eef3", "institutionID": "SSMN", "specificEpithet": "esculentus", "identifiers": [], "decimalLongitude": -8.50068, "extensions": {}, "dateIdentified": "2006-12-31T23:00:00.000+0000", "country": "Guinea", "recordedBy": "S\u00e9dibinet SIDIBE", "genus": "Abelmoschus", "order": "Malvales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/abildgaardiawallichianalye.json ADDED
The diff for this file is too large to render. See raw diff
 
tsammalex-data/tsammalexdata/data/external/gbif/abrusprecatorius.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 18, "endOfRecords": true, "limit": 100, "results": [{"protocol": "DWC_ARCHIVE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "iNaturalist", "lastInterpreted": "2014-11-11T11:15:01.909+0000", "speciesKey": 5348711, "month": 2, "lastParsed": "2014-11-11T11:05:47.613+0000", "phylum": "Magnoliophyta", "references": "http://www.inaturalist.org/observations/551402", "orderKey": 1370, "year": 2014, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "identificationID": "970245", "gbifID": "891054750", "rights": "Copyright Fluff Berger, licensed under a Creative Commons cc_by_nc_name license: http://creativecommons.org/licenses/by-nc/3.0/", "occurrenceID": "http://www.inaturalist.org/observations/551402", "countryCode": "US", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://static.inaturalist.org/photos/703540/medium.JPG?1393899003", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/703540"}, {"identifier": "http://static.inaturalist.org/photos/703541/medium.JPG?1393899047", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/703541"}], "relations": [], "eventDate": "2014-02-13T23:00:00.000+0000", "classKey": 220, "catalogNumber": "551402", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "verbatimLocality": "Sanibel Captiva Conservation Foundation, FL, USA", "kingdom": "Plantae", "decimalLatitude": 26.4395, "rightsHolder": "Fluff Berger", "http://unknown.org/occurrenceDetails": "http://www.inaturalist.org/observations/551402", "datasetName": "iNaturalist research-grade observations", "publishingOrgKey": "28eb1a3f-1c15-4a95-931a-4af90ecb574d", "geodeticDatum": "WGS84", "verbatimEventDate": "2014-02-14", "collectionCode": "Observations", "kingdomKey": 6, "taxonID": "122099", "class": "Magnoliopsida", "genusKey": 2943776, "key": 891054750, "phylumKey": 49, "genericName": "Abrus", "day": 14, "publishingCountry": "US", "identifier": "551402", "lastCrawled": "2015-01-14T09:17:36.653+0000", "occurrenceRemarks": "Red berries with black bases, clustered in brown pods, on thin branches.", "datasetKey": "50c9509d-22c7-4a22-a47d-8c48425ef4a7", "specificEpithet": "precatorius", "identifiers": [], "modified": "2014-10-20T13:33:50.000+0000", "decimalLongitude": -82.09795, "extensions": {}, "dateIdentified": "2014-03-04T11:49:55.000+0000", "country": "United States", "recordedBy": "Fluff Berger", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "iNaturalist", "lastInterpreted": "2014-11-25T14:13:14.462+0000", "speciesKey": 5348711, "month": 7, "lastParsed": "2014-11-25T14:13:13.261+0000", "phylum": "Magnoliophyta", "references": "http://www.inaturalist.org/observations/103148", "orderKey": 1370, "year": 2012, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "identificationID": "152222", "gbifID": "1042811774", "rights": "Copyright sea-kangaroo, licensed under a Creative Commons cc_by_name license: http://creativecommons.org/licenses/by/3.0/", "occurrenceID": "http://www.inaturalist.org/observations/103148", "countryCode": "NL", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://static.inaturalist.org/photos/148893/medium.JPG", "type": "StillImage", "format": "image/jpeg"}], "relations": [], "eventDate": "2012-07-10T22:00:00.000+0000", "classKey": 220, "catalogNumber": "103148", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "verbatimLocality": "Quill National Park, Sint Eustatius, Netherlands", "kingdom": "Plantae", "decimalLatitude": 17.47529, "rightsHolder": "sea-kangaroo", "http://unknown.org/occurrenceDetails": "http://www.inaturalist.org/observations/103148", "datasetName": "iNaturalist research-grade observations", "publishingOrgKey": "28eb1a3f-1c15-4a95-931a-4af90ecb574d", "geodeticDatum": "WGS84", "verbatimEventDate": "2012-07-11", "collectionCode": "Observations", "kingdomKey": 6, "taxonID": "122099", "class": "Magnoliopsida", "genusKey": 2943776, "key": 1042811774, "phylumKey": 49, "genericName": "Abrus", "day": 11, "publishingCountry": "US", "identifier": "103148", "lastCrawled": "2015-01-14T09:15:20.385+0000", "occurrenceRemarks": "Trail to the rim of the Quill.", "datasetKey": "50c9509d-22c7-4a22-a47d-8c48425ef4a7", "specificEpithet": "precatorius", "identifiers": [], "modified": "2014-11-16T01:25:28.000+0000", "decimalLongitude": -62.97109, "extensions": {}, "dateIdentified": "2012-07-18T19:22:46.000+0000", "country": "Netherlands", "recordedBy": "sea-kangaroo", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:09:04.922+0000", "speciesKey": 5348711, "month": 8, "lastParsed": "2014-11-14T15:09:03.808+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920162899", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=-1153112797", "format": "text/html"}], "relations": [], "eventDate": "2011-08-21T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1596948951", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.12053, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2943776, "locality": "Popa Falls", "key": 920162899, "phylumKey": 49, "genericName": "Abrus", "day": 22, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:13:35.686+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 21.57811, "extensions": {}, "country": "Namibia", "recordedBy": "33304576", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 5928725, "family": "Fabaceae", "institutionCode": "OEH Atlas of NSW Wildlife", "lastInterpreted": "2014-06-18T15:23:38.156+0000", "speciesKey": 5348711, "month": 8, "lastParsed": "2014-06-18T15:22:44.508+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2003, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "COORDINATE_REPROJECTED", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "915300145", "countryCode": "AU", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-07-31T22:00:00.000+0000", "classKey": 220, "catalogNumber": "SDMPI0064459", "scientificName": "Abrus precatorius subsp. precatorius L.", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.253700023440544, "publishingOrgKey": "25fe2ec4-4405-4b37-9386-8cc80e337abb", "geodeticDatum": "WGS84", "occurrenceRemarks": "Flora record", "infraspecificEpithet": "precatorius", "kingdomKey": 6, "collectionCode": "OEH Atlas of NSW Wildlife", "class": "Magnoliopsida", "genusKey": 2943776, "key": 915300145, "phylumKey": 49, "genericName": "Abrus", "day": 1, "publishingCountry": "AU", "identifier": "169e280d-a38b-4ac1-a956-9164edce3f17", "lastCrawled": "2014-06-18T15:22:44.388+0000", "datasetKey": "0645ccdb-e001-4ab0-9729-51f1755e007e", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 153.57196000000002, "extensions": {}, "country": "Australia", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 5928725, "family": "Fabaceae", "institutionCode": "OEH Atlas of NSW Wildlife", "lastInterpreted": "2014-06-18T15:23:36.740+0000", "speciesKey": 5348711, "month": 8, "lastParsed": "2014-06-18T15:22:41.819+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2003, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "COORDINATE_REPROJECTED", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "915298393", "countryCode": "AU", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-07-31T22:00:00.000+0000", "classKey": 220, "catalogNumber": "SDMPI0062759", "scientificName": "Abrus precatorius subsp. precatorius L.", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.253700023440544, "publishingOrgKey": "25fe2ec4-4405-4b37-9386-8cc80e337abb", "geodeticDatum": "WGS84", "occurrenceRemarks": "Flora record", "infraspecificEpithet": "precatorius", "kingdomKey": 6, "collectionCode": "OEH Atlas of NSW Wildlife", "class": "Magnoliopsida", "genusKey": 2943776, "key": 915298393, "phylumKey": 49, "genericName": "Abrus", "day": 1, "publishingCountry": "AU", "identifier": "eb4fbf90-1bd1-48dc-8fc1-95dc5b7f42f4", "lastCrawled": "2014-06-18T15:22:41.770+0000", "datasetKey": "0645ccdb-e001-4ab0-9729-51f1755e007e", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 153.57196000000002, "extensions": {}, "country": "Australia", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 5928725, "family": "Fabaceae", "institutionCode": "OEH Atlas of NSW Wildlife", "lastInterpreted": "2014-06-18T15:23:36.264+0000", "speciesKey": 5348711, "month": 8, "lastParsed": "2014-06-18T15:22:40.867+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2003, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "COORDINATE_REPROJECTED", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "915297747", "countryCode": "AU", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-07-31T22:00:00.000+0000", "classKey": 220, "catalogNumber": "SDMPI0062059", "scientificName": "Abrus precatorius subsp. precatorius L.", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.253700023440544, "publishingOrgKey": "25fe2ec4-4405-4b37-9386-8cc80e337abb", "geodeticDatum": "WGS84", "occurrenceRemarks": "Flora record", "infraspecificEpithet": "precatorius", "kingdomKey": 6, "collectionCode": "OEH Atlas of NSW Wildlife", "class": "Magnoliopsida", "genusKey": 2943776, "key": 915297747, "phylumKey": 49, "genericName": "Abrus", "day": 1, "publishingCountry": "AU", "identifier": "85631e83-69ec-48d2-a3f2-3c01c55fe149", "lastCrawled": "2014-06-18T15:22:40.841+0000", "datasetKey": "0645ccdb-e001-4ab0-9729-51f1755e007e", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 153.57196000000002, "extensions": {}, "country": "Australia", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.479+0000", "speciesKey": 5348711, "gbifID": "698864963", "lastParsed": "2014-06-17T08:31:01.415+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "293344", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864963, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.391+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.521+0000", "speciesKey": 5348711, "gbifID": "698864971", "lastParsed": "2014-06-17T08:31:01.438+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "295175", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864971, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.418+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 5928725, "family": "Fabaceae", "institutionCode": "OEH Atlas of NSW Wildlife", "lastInterpreted": "2014-06-18T16:02:42.611+0000", "speciesKey": 5348711, "gbifID": "916384689", "lastParsed": "2014-06-18T16:02:42.571+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "COORDINATE_REPROJECTED", "COUNTRY_DERIVED_FROM_COORDINATES"], "countryCode": "AU", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "SJJSI0071600", "scientificName": "Abrus precatorius subsp. precatorius L.", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.298830023515627, "publishingOrgKey": "25fe2ec4-4405-4b37-9386-8cc80e337abb", "geodeticDatum": "WGS84", "occurrenceRemarks": "Flora record", "infraspecificEpithet": "precatorius", "kingdomKey": 6, "collectionCode": "OEH Atlas of NSW Wildlife", "genusKey": 2943776, "key": 916384689, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "AU", "identifier": "208c194b-c6b3-405a-995a-c64f1058bcd4", "lastCrawled": "2014-06-18T16:02:42.514+0000", "datasetKey": "0645ccdb-e001-4ab0-9729-51f1755e007e", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 153.50243, "extensions": {}, "country": "Australia", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.519+0000", "speciesKey": 5348711, "gbifID": "698864969", "lastParsed": "2014-06-17T08:31:01.424+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "294785", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864969, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.392+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.533+0000", "speciesKey": 5348711, "gbifID": "767069911", "lastParsed": "2014-06-17T08:31:01.438+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BJ", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "253121", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 10.07243, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "key": 767069911, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.392+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 1.49385, "extensions": {}, "country": "Benin", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DIGIR", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FUND. BIODIVERSIDAD", "lastInterpreted": "2014-06-05T02:52:29.408+0000", "speciesKey": 5348711, "gbifID": "217694403", "genericName": "Abrus", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ES", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Te", "relations": [], "classKey": 220, "catalogNumber": "976433", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 40.1, "publishingOrgKey": "c8176fa4-1e11-4c74-8bdf-9f3aa87343de", "geodeticDatum": "WGS84", "collectionCode": "ANTHOS", "kingdomKey": 6, "genusKey": 2943776, "locality": "Torrecilla de Alca\u00f1iz", "key": 217694403, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "ES", "lastCrawled": "2013-09-07T07:07:32.000+0000", "datasetKey": "4cf3eec1-b902-40c9-b15b-05c5fe5928b6", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 0.9, "extensions": {}, "country": "Spain", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T11:14:38.137+0000", "speciesKey": 5348711, "gbifID": "620984916", "genericName": "Abrus", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "CI", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "9741", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 8.76947, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2943776, "locality": "Como\u00e9 National Park", "key": 620984916, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:19:38.000+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -3.78951, "extensions": {}, "country": "C\u00f4te d'Ivoire", "genus": "Abrus", "order": "Fabales"}, {"protocol": "DIGIR", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FUND. BIODIVERSIDAD", "lastInterpreted": "2014-06-05T02:52:29.768+0000", "speciesKey": 5348711, "gbifID": "217694412", "genericName": "Abrus", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ES", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Te", "relations": [], "classKey": 220, "catalogNumber": "979100", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 40.1, "publishingOrgKey": "c8176fa4-1e11-4c74-8bdf-9f3aa87343de", "geodeticDatum": "WGS84", "collectionCode": "ANTHOS", "kingdomKey": 6, "genusKey": 2943776, "locality": "Valdealgorfa", "key": 217694412, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "ES", "lastCrawled": "2013-09-07T07:07:32.000+0000", "datasetKey": "4cf3eec1-b902-40c9-b15b-05c5fe5928b6", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": 0.9, "extensions": {}, "country": "Spain", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.479+0000", "speciesKey": 5348711, "gbifID": "698864966", "lastParsed": "2014-06-17T08:31:01.434+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "293372", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864966, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.391+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.524+0000", "speciesKey": 5348711, "gbifID": "698864965", "lastParsed": "2014-06-17T08:31:01.438+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "293360", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864965, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.419+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.480+0000", "speciesKey": 5348711, "gbifID": "698864970", "lastParsed": "2014-06-17T08:31:01.438+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "294830", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864970, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.419+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 5348711, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:31:01.480+0000", "speciesKey": 5348711, "gbifID": "698864964", "lastParsed": "2014-06-17T08:31:01.437+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Abrus precatorius", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "SN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "293352", "scientificName": "Abrus precatorius L.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.65, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2943776, "locality": "Fathala Forest, Saloum National Park", "key": 698864964, "phylumKey": 49, "genericName": "Abrus", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:31:01.418+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "precatorius", "identifiers": [], "decimalLongitude": -16.46667, "extensions": {}, "country": "Senegal", "genus": "Abrus", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/abutilonangulatum.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 10, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.279+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997222", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "2128", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -19.204, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Xakanaxa, Moremi", "key": 196997222, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 23.46, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.704+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998410", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "58627", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -19.162, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Xakanaxa, Moremi", "key": 196998410, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 23.242, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.270+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997292", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "22877", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -18.424, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Upper Panhandle", "key": 196997292, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 21.939, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.467+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998412", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "58721", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -18.414, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Upper Panhandle", "key": 196998412, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 21.886, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.669+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997239", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "4277", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Xakanaxa, Moremi", "key": 196997239, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.917+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997263", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "11594", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -19.53, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Chief?s Island", "key": 196997263, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 23.09, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.446+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997296", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "23647", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -18.951, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Guma Lagoon/ Upper Delta", "key": 196997296, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 22.373, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.851+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997273", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "17704", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -18.956, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Guma Lagoon/ Upper Delta", "key": 196997273, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 22.374, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.296+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997303", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "24646", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -18.954, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Guma Lagoon/ Upper Delta", "key": 196997303, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 22.373, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "TAPIR", "taxonKey": 7279613, "family": "Malvaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.292+0000", "speciesKey": 7279613, "month": 6, "genericName": "Abutilon", "phylum": "Magnoliophyta", "orderKey": 941, "year": 2000, "facts": [], "species": "Abutilon angulatum", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998425", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "59609", "scientificName": "Abutilon angulatum Mast.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": -19.53, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 3152599, "locality": "Chief?s Island", "key": 196998425, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "angulatum", "identifiers": [], "decimalLongitude": 23.09, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Abutilon", "order": "Malvales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/abutilonfruticosum.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 2, "endOfRecords": true, "limit": 100, "results": [{"protocol": "DWC_ARCHIVE", "taxonKey": 3152629, "family": "Malvaceae", "institutionCode": "iNaturalist", "lastInterpreted": "2014-11-11T11:39:43.246+0000", "speciesKey": 3152629, "month": 9, "lastParsed": "2014-11-11T11:07:03.052+0000", "phylum": "Magnoliophyta", "references": "http://www.inaturalist.org/observations/878334", "orderKey": 941, "year": 2014, "facts": [], "species": "Abutilon fruticosum", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "identificationID": "1563677", "gbifID": "1024329234", "rights": "Copyright Sam Kieschnick, licensed under a Creative Commons cc_by_nc_name license: http://creativecommons.org/licenses/by-nc/3.0/", "occurrenceID": "http://www.inaturalist.org/observations/878334", "countryCode": "US", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://static.inaturalist.org/photos/1115014/medium.JPG?1410812692", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/1115014"}, {"identifier": "http://static.inaturalist.org/photos/1115015/medium.JPG?1410812691", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/1115015"}, {"identifier": "http://static.inaturalist.org/photos/1115016/medium.JPG?1410812695", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/1115016"}, {"identifier": "http://static.inaturalist.org/photos/1115017/medium.JPG?1410812704", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/1115017"}], "relations": [], "eventDate": "2014-09-13T22:00:00.000+0000", "classKey": 220, "catalogNumber": "878334", "scientificName": "Abutilon fruticosum Guill. & Perr.", "taxonRank": "SPECIES", "familyKey": 6685, "kingdom": "Plantae", "decimalLatitude": 32.73478, "rightsHolder": "Sam Kieschnick", "http://unknown.org/occurrenceDetails": "http://www.inaturalist.org/observations/878334", "datasetName": "iNaturalist research-grade observations", "publishingOrgKey": "28eb1a3f-1c15-4a95-931a-4af90ecb574d", "geodeticDatum": "WGS84", "verbatimEventDate": "2014-09-14", "collectionCode": "Observations", "kingdomKey": 6, "taxonID": "157838", "class": "Magnoliopsida", "genusKey": 3152599, "key": 1024329234, "phylumKey": 49, "genericName": "Abutilon", "day": 14, "publishingCountry": "US", "identifier": "878334", "lastCrawled": "2015-01-14T09:19:01.290+0000", "datasetKey": "50c9509d-22c7-4a22-a47d-8c48425ef4a7", "specificEpithet": "fruticosum", "identifiers": [], "modified": "2014-10-17T21:55:37.000+0000", "decimalLongitude": -97.63641, "extensions": {}, "dateIdentified": "2014-09-15T18:24:41.000+0000", "country": "United States", "recordedBy": "Sam Kieschnick", "genus": "Abutilon", "order": "Malvales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 3152629, "family": "Malvaceae", "institutionCode": "iNaturalist", "lastInterpreted": "2014-11-11T11:14:32.186+0000", "speciesKey": 3152629, "month": 8, "lastParsed": "2014-11-11T11:05:42.073+0000", "phylum": "Magnoliophyta", "references": "http://www.inaturalist.org/observations/530312", "orderKey": 941, "year": 2010, "facts": [], "species": "Abutilon fruticosum", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "identificationID": "928379", "gbifID": "891045915", "rights": "Copyright Richard Reynolds, licensed under a Creative Commons cc_by_nc_name license: http://creativecommons.org/licenses/by-nc/3.0/", "occurrenceID": "http://www.inaturalist.org/observations/530312", "countryCode": "US", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://static.inaturalist.org/photos/674921/medium.jpg?1392384002", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/674921"}], "relations": [], "eventDate": "2010-07-31T22:00:00.000+0000", "classKey": 220, "catalogNumber": "530312", "scientificName": "Abutilon fruticosum Guill. & Perr.", "taxonRank": "SPECIES", "familyKey": 6685, "verbatimLocality": "Big Bend National Park, TX", "kingdom": "Plantae", "decimalLatitude": 29.14601, "rightsHolder": "Richard Reynolds", "http://unknown.org/occurrenceDetails": "http://www.inaturalist.org/observations/530312", "datasetName": "iNaturalist research-grade observations", "publishingOrgKey": "28eb1a3f-1c15-4a95-931a-4af90ecb574d", "geodeticDatum": "WGS84", "verbatimEventDate": "2010-08-01", "collectionCode": "Observations", "kingdomKey": 6, "taxonID": "157838", "class": "Magnoliopsida", "genusKey": 3152599, "key": 891045915, "phylumKey": 49, "genericName": "Abutilon", "day": 1, "publishingCountry": "US", "identifier": "530312", "lastCrawled": "2015-01-14T09:17:29.401+0000", "datasetKey": "50c9509d-22c7-4a22-a47d-8c48425ef4a7", "specificEpithet": "fruticosum", "identifiers": [], "modified": "2014-10-20T14:16:47.000+0000", "decimalLongitude": -103.53547, "extensions": {}, "dateIdentified": "2014-02-14T12:19:55.000+0000", "country": "United States", "recordedBy": "Richard Reynolds", "genus": "Abutilon", "order": "Malvales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/abutilonglaucum.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciaataxacantha.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 26, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.366+0000", "speciesKey": 2979338, "month": 11, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2003, "facts": [], "species": "Acacia ataxacantha", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997373", "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-11-29T23:00:00.000+0000", "classKey": 220, "catalogNumber": "29161", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 8.139, "elevation": 620.0, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "12", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Foret Classee du Mont Bero", "key": 196997373, "phylumKey": 49, "day": 30, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -8.573, "extensions": {}, "country": "Guinea", "recordedBy": "Jean-Louis Holie", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.161+0000", "speciesKey": 2979338, "month": 11, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2003, "facts": [], "species": "Acacia ataxacantha", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997359", "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2003-11-16T23:00:00.000+0000", "classKey": 220, "catalogNumber": "28433", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.604, "elevation": 440.0, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "12", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Foret Classee de Dere", "key": 196997359, "phylumKey": 49, "day": 17, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -8.212, "extensions": {}, "country": "Guinea", "recordedBy": "Jean-Louis Holie", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.521+0000", "speciesKey": 2979338, "gbifID": "767070005", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250687", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.16102, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070005, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.14935, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.009+0000", "speciesKey": 2979338, "gbifID": "767069993", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "249684", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.87713, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069993, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.63315, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.153+0000", "speciesKey": 2979338, "gbifID": "767069961", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245159", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.834, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069961, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.55793, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.283+0000", "speciesKey": 2979338, "gbifID": "812007434", "lastParsed": "2014-06-17T08:39:38.129+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11325", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.57612, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Chutes Billy ;Falaga", "key": 812007434, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.072+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -10.03289, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.893+0000", "speciesKey": 2979338, "gbifID": "767070004", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250682", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.16102, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070004, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.14935, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.483+0000", "speciesKey": 2979338, "gbifID": "767069994", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "249782", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.87523, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069994, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.62565, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.342+0000", "speciesKey": 2979338, "gbifID": "812007435", "lastParsed": "2014-06-17T08:39:38.312+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11326", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.57612, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Chutes Billy ;Falaga", "key": 812007435, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.107+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -10.03289, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.757+0000", "speciesKey": 2979338, "gbifID": "767069995", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "249972", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.88297, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069995, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.62695, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.998+0000", "speciesKey": 2979338, "gbifID": "767069999", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250206", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.88207, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069999, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.65638, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.136+0000", "speciesKey": 2979338, "gbifID": "767070011", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251824", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92585, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070011, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.42315, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.003+0000", "speciesKey": 2979338, "gbifID": "767069955", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245008", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83243, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069955, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.53698, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.947+0000", "speciesKey": 2979338, "gbifID": "767070000", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250364", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92253, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070000, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.41272, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.834+0000", "speciesKey": 2979338, "gbifID": "767069962", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245222", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83412, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069962, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.55813, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.004+0000", "speciesKey": 2979338, "gbifID": "767069997", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250157", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.88607, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069997, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.65892, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.731+0000", "speciesKey": 2979338, "gbifID": "767069998", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250181", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.88207, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069998, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.65638, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.972+0000", "speciesKey": 2979338, "gbifID": "767069960", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245093", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83468, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069960, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.56232, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.100+0000", "speciesKey": 2979338, "gbifID": "767070012", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251923", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92618, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070012, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.42092, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.200+0000", "speciesKey": 2979338, "gbifID": "767069956", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245037", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83362, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069956, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.54387, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.795+0000", "speciesKey": 2979338, "gbifID": "767069996", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250146", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.88805, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069996, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.66113, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.308+0000", "speciesKey": 2979338, "gbifID": "767070001", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "250474", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.1037, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070001, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": 0.21183, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.275+0000", "speciesKey": 2979338, "gbifID": "767069964", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245545", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.8451, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069964, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.63318, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "SSMN", "lastInterpreted": "2014-06-05T06:52:39.871+0000", "speciesKey": 2979338, "habitat": "For\u00eat", "gbifID": "373138331", "identifiedBy": "Paquil\u00e9 Ch\u00e9rif", "lastParsed": "2014-05-29T11:40:14.299+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "type": "Event", "facts": [], "species": "Acacia ataxacantha", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Lola", "relations": [], "continent": "AFRICA", "classKey": 220, "catalogNumber": "PCBMN_1", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.65233, "datasetName": "Phan\u00e9rogames des Monts Nimba", "publishingOrgKey": "1c905e09-830d-43d6-bea7-32b9275364bf", "geodeticDatum": "WGS84", "collectionCode": "PCBMN", "kingdomKey": 6, "genusKey": 2978223, "locality": "Bossou, Nimba", "key": 373138331, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "GN", "identifier": "1", "lastCrawled": "2014-09-04T22:19:43.966+0000", "language": "fr", "datasetKey": "d7cf2c48-3d3a-4981-bfce-dbef6fe6eef3", "institutionID": "SSMN", "specificEpithet": "ataxacantha", "identifiers": [], "modified": "2009-01-01T23:00:00.000+0000", "decimalLongitude": -8.50068, "extensions": {}, "dateIdentified": "1905-06-28T23:00:00.000+0000", "country": "Guinea", "recordedBy": "S\u00e9dibinet SIDIBE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.961+0000", "speciesKey": 2979338, "gbifID": "767069963", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245428", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83498, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069963, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.57223, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979338, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.892+0000", "speciesKey": 2979338, "gbifID": "767069958", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia ataxacantha", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245079", "scientificName": "Acacia ataxacantha DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.83402, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767069958, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "ataxacantha", "identifiers": [], "decimalLongitude": -0.55465, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciacaffra.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciaerioloba.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 8, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:14:44.603+0000", "speciesKey": 2980134, "month": 9, "lastParsed": "2014-11-14T15:14:44.423+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia erioloba", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920182471", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-24T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1920798038", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -20.42299, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Waterberg", "key": 920182471, "phylumKey": 49, "genericName": "Acacia", "day": 25, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:19:23.113+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 17.33196, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.302+0000", "speciesKey": 2980134, "month": 10, "lastParsed": "2014-11-14T15:19:26.109+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia erioloba", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199482", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "621523198", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199482, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.533+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.835+0000", "speciesKey": 2980134, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia erioloba", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998407", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "51114", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.222, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196998407, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 23.415, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.910+0000", "speciesKey": 2980134, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia erioloba", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997259", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "14015", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196997259, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:21.735+0000", "speciesKey": 2980134, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia erioloba", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998431", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "60806", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196998431, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.271+0000", "speciesKey": 2980134, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia erioloba", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997371", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "26091", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.53, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Chief?s Island", "key": 196997371, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 23.09, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:21.048+0000", "speciesKey": 2980134, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia erioloba", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998423", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "59094", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196998423, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2980134, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.870+0000", "speciesKey": 2980134, "gbifID": "911910711", "lastParsed": "2014-06-17T08:44:16.720+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia erioloba", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25189", "scientificName": "Acacia erioloba E.Mey.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -27.66317, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Karas;Kanebis", "key": 911910711, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.674+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "erioloba", "identifiers": [], "decimalLongitude": 17.78122, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciaerubescens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 6, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:13:30.803+0000", "speciesKey": 2978976, "month": 10, "lastParsed": "2014-11-14T15:13:30.128+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920179376", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-30T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1171921620", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.57111, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Windhoek, National Botanic Garden", "key": 920179376, "phylumKey": 49, "genericName": "Acacia", "day": 1, "publishingCountry": "DE", "lastCrawled": "2015-03-19T08:31:20.066+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 17.09502, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:16:32.164+0000", "speciesKey": 2978976, "month": 8, "lastParsed": "2014-11-14T15:16:31.988+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920188652", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=1588192762", "format": "text/html"}], "relations": [], "eventDate": "2011-08-15T22:00:00.000+0000", "classKey": 220, "catalogNumber": "39912946", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.38419, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Living Museum der Ju/\u00b4Hoansi San (Buschm\u00e4nner)", "key": 920188652, "phylumKey": 49, "genericName": "Acacia", "day": 16, "publishingCountry": "DE", "lastCrawled": "2015-03-19T08:31:26.869+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 20.57284, "extensions": {}, "country": "Namibia", "recordedBy": "33304576", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.373+0000", "speciesKey": 2978976, "month": 10, "lastParsed": "2014-11-14T15:19:26.149+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199481", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1428472398", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199481, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-03-19T08:31:28.956+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.811+0000", "speciesKey": 2978976, "gbifID": "911910703", "lastParsed": "2014-06-17T08:44:16.701+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25180", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -21.60708, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Otjozondjupa;Veddersdal", "key": 911910703, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.673+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 16.89966, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.867+0000", "speciesKey": 2978976, "gbifID": "911910720", "lastParsed": "2014-06-17T08:44:16.766+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25181", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -21.60708, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Otjozondjupa;Veddersdal", "key": 911910720, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.700+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 16.89966, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978976, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.811+0000", "speciesKey": 2978976, "gbifID": "911910695", "lastParsed": "2014-06-17T08:44:16.690+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia erubescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25182", "scientificName": "Acacia erubescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -21.60708, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Otjozondjupa;Veddersdal", "key": 911910695, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.645+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "erubescens", "identifiers": [], "decimalLongitude": 16.89966, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciafleckiischinz.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciahaematoxylon.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciahebecladahebeclada.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 5, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2978752, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.324+0000", "speciesKey": 2978752, "month": 10, "lastParsed": "2014-11-14T15:19:26.111+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia hebeclada", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199477", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-755111100", "scientificName": "Acacia hebeclada DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199477, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.626+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "hebeclada", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978752, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.484+0000", "speciesKey": 2978752, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia hebeclada", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997293", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "23111", "scientificName": "Acacia hebeclada DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.341, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Upper Panhandle", "key": 196997293, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "hebeclada", "identifiers": [], "decimalLongitude": 21.836, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978752, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.784+0000", "speciesKey": 2978752, "gbifID": "911910693", "lastParsed": "2014-06-17T08:44:16.682+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia hebeclada", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25183", "scientificName": "Acacia hebeclada DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -23.12948, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Hardap;Kwakwas", "key": 911910693, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.642+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "hebeclada", "identifiers": [], "decimalLongitude": 16.89641, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978752, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.817+0000", "speciesKey": 2978752, "gbifID": "911910701", "lastParsed": "2014-06-17T08:44:16.700+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia hebeclada", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25184", "scientificName": "Acacia hebeclada DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -23.12948, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Hardap;Kwakwas", "key": 911910701, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.647+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "hebeclada", "identifiers": [], "decimalLongitude": 16.89641, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978752, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.784+0000", "speciesKey": 2978752, "gbifID": "911910688", "lastParsed": "2014-06-17T08:44:16.678+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia hebeclada", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25185", "scientificName": "Acacia hebeclada DC.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -23.12948, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Hardap;Kwakwas", "key": 911910688, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.639+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "hebeclada", "identifiers": [], "decimalLongitude": 16.89641, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciahereroensis.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 2, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2978291, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:13:30.768+0000", "speciesKey": 2978291, "month": 10, "lastParsed": "2014-11-14T15:13:30.111+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia hereroensis", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920179383", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-30T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-791731", "scientificName": "Acacia hereroensis Engl.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.57111, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Windhoek, National Botanic Garden", "key": 920179383, "phylumKey": 49, "genericName": "Acacia", "day": 1, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:18:09.430+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "hereroensis", "identifiers": [], "decimalLongitude": 17.09502, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978291, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.414+0000", "speciesKey": 2978291, "month": 10, "lastParsed": "2014-11-14T15:19:26.191+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia hereroensis", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199485", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-35368231", "scientificName": "Acacia hereroensis Engl.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199485, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.613+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "hereroensis", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciakarroo.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 15, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 2979128, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2015-01-08T14:37:15.453+0000", "speciesKey": 2979128, "month": 5, "county": "Saintes-Maries-de-la-Mer [INSEE:13096]", "lastParsed": "2015-01-08T14:37:15.394+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia karroo", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "1051529740", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-17T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1613510", "scientificName": "Acacia karroo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 43.45324, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 1051529740, "phylumKey": 49, "genericName": "Acacia", "day": 18, "identifiedBy": "Marie-France PETIBON", "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.735+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "karroo", "identifiers": [], "decimalLongitude": 4.42907, "extensions": {}, "dateIdentified": "2014-05-17T22:00:00.000+0000", "country": "France", "recordedBy": "Marie-France PETIBON", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 2979128, "family": "Fabaceae", "collectionID": "e4b00ec9-6c79-46c6-a6ed-818742707395", "institutionCode": "CFE", "lastInterpreted": "2014-12-17T11:12:10.734+0000", "municipality": "Loul\u00e9", "speciesKey": 2979128, "month": 7, "identifiedBy": "Maria Correia (531)", "lastParsed": "2014-12-17T11:11:55.507+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "georeferenceSources": "google maps", "reproductiveCondition": "flowering", "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_INVALID", "GEODETIC_DATUM_ASSUMED_WGS84", "MODIFIED_DATE_UNLIKELY"], "gbifID": "1050230239", "rights": "http://creativecommons.org/licenses/by-nc/3.0/", "type": "Occurrence", "countryCode": "PT", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://app.invasoras.uc.pt/system/sighting_photos/5037/original/20140708_Ludo_2_Acacia_Karroo_(Medium).JPG?1404912372", "type": "StillImage", "format": "image/jpeg"}], "stateProvince": "Faro", "relations": [], "continent": "EUROPE", "verbatimSRS": "WGS84", "classKey": 220, "catalogNumber": "4540", "scientificName": "Acacia karroo Hayne", "eventDate": "2014-07-07T22:00:00.000+0000", "taxonRank": "SPECIES", "familyKey": 5386, "nomenclaturalCode": "ICBN", "locality": "Almansil", "kingdom": "Plantae", "decimalLatitude": 37.01647, "rightsHolder": "CFE \u2013 Centro de Ecologia Funcional", "datasetName": "Mapa de Avistamentos de Plantas Invasoras em Portugal", "publishingOrgKey": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "geodeticDatum": "WGS84", "occurrenceRemarks": "Poucas", "collectionCode": "Invasoras", "kingdomKey": 6, "establishmentMeans": "INVASIVE", "class": "Magnoliopsida", "genusKey": 2978223, "higherGeography": "Europe, Portugal, Faro, Loul\u00e9", "key": 1050230239, "occurrenceID": "36ddf595-8393-4733-a94e-008bd91e929b", "phylumKey": 49, "genericName": "Acacia", "day": 8, "higherClassification": "Plantae; Spermatophyta; Magnoliopsida; Fabales; Fabaceae; Acacia", "publishingCountry": "PT", "identifier": "36ddf595-8393-4733-a94e-008bd91e929b", "lastCrawled": "2014-12-17T11:11:55.494+0000", "language": "pt", "datasetKey": "feb41318-374b-4ed6-b61e-0369993abedc", "institutionID": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "specificEpithet": "karroo", "identifiers": [], "verbatimCoordinateSystem": "graus decimais", "modified": "2025-02-06T23:00:00.000+0000", "occurrenceStatus": "present", "decimalLongitude": -7.99133, "extensions": {}, "country": "Portugal", "startDayOfYear": "189", "recordedBy": "Maria Correia (531)", "ownerInstitutionCode": "CFE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 2979128, "family": "Fabaceae", "collectionID": "e4b00ec9-6c79-46c6-a6ed-818742707395", "institutionCode": "CFE", "lastInterpreted": "2014-12-17T11:11:56.452+0000", "municipality": "Lisboa", "speciesKey": 2979128, "habitat": "Berma de estrada/caminho-de-ferro", "month": 7, "identifiedBy": "H\u00e9lia Marchante (9)", "lastParsed": "2014-12-17T11:11:53.389+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2013, "facts": [], "georeferenceSources": "google maps", "reproductiveCondition": "flowering", "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_INVALID", "GEODETIC_DATUM_ASSUMED_WGS84", "MODIFIED_DATE_UNLIKELY"], "gbifID": "1050227359", "rights": "http://creativecommons.org/licenses/by-nc/3.0/", "type": "Occurrence", "countryCode": "PT", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://app.invasoras.uc.pt/system/sighting_photos/1536/original/Acacia_karroo_%E2%80%93_folhas___flor_%E2%80%93_3_%E2%80%93_Elizabete_Marchante.jpg.JPG?1372763507", "type": "StillImage", "format": "image/jpeg"}], "stateProvince": "Lisboa", "relations": [], "continent": "EUROPE", "verbatimSRS": "WGS84", "classKey": 220, "catalogNumber": "1435", "scientificName": "Acacia karroo Hayne", "eventDate": "2013-06-30T22:00:00.000+0000", "taxonRank": "SPECIES", "familyKey": 5386, "nomenclaturalCode": "ICBN", "locality": "Alc\u00e2ntara", "kingdom": "Plantae", "decimalLatitude": 38.70718, "rightsHolder": "CFE \u2013 Centro de Ecologia Funcional", "datasetName": "Mapa de Avistamentos de Plantas Invasoras em Portugal", "publishingOrgKey": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "geodeticDatum": "WGS84", "occurrenceRemarks": "Mancha pequena (at\u00e9 100m2)", "collectionCode": "Invasoras", "kingdomKey": 6, "establishmentMeans": "INVASIVE", "class": "Magnoliopsida", "genusKey": 2978223, "higherGeography": "Europe, Portugal, Lisboa, Lisboa", "key": 1050227359, "occurrenceID": "3c5c2a45-8f24-4a06-97a7-cd632f7be576", "phylumKey": 49, "genericName": "Acacia", "day": 1, "higherClassification": "Plantae; Spermatophyta; Magnoliopsida; Fabales; Fabaceae; Acacia", "publishingCountry": "PT", "identifier": "3c5c2a45-8f24-4a06-97a7-cd632f7be576", "lastCrawled": "2014-12-17T11:11:53.368+0000", "language": "pt", "datasetKey": "feb41318-374b-4ed6-b61e-0369993abedc", "institutionID": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "specificEpithet": "karroo", "identifiers": [], "verbatimCoordinateSystem": "graus decimais", "lifeStage": "ADULT", "modified": "2017-03-16T23:00:00.000+0000", "occurrenceStatus": "present", "decimalLongitude": -9.17881, "extensions": {}, "country": "Portugal", "startDayOfYear": "182", "recordedBy": "H\u00e9lia Marchante (9)", "ownerInstitutionCode": "CFE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 2979128, "family": "Fabaceae", "collectionID": "e4b00ec9-6c79-46c6-a6ed-818742707395", "institutionCode": "CFE", "lastInterpreted": "2014-12-17T11:12:00.128+0000", "municipality": "Odemira", "speciesKey": 2979128, "habitat": "\u00c1rea agr\u00edcola", "month": 7, "identifiedBy": "Sabrina Carvalho (62)", "lastParsed": "2014-12-17T11:11:54.058+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2013, "facts": [], "georeferenceSources": "google maps", "reproductiveCondition": "flowering", "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_INVALID", "GEODETIC_DATUM_ASSUMED_WGS84", "MODIFIED_DATE_UNLIKELY"], "gbifID": "1050228117", "rights": "http://creativecommons.org/licenses/by-nc/3.0/", "type": "Occurrence", "countryCode": "PT", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://app.invasoras.uc.pt/system/sighting_photos/2418/original/P7220402.JPG?1375904360", "type": "StillImage", "format": "image/jpeg"}], "stateProvince": "Beja", "relations": [], "continent": "EUROPE", "verbatimSRS": "WGS84", "classKey": 220, "catalogNumber": "2226", "scientificName": "Acacia karroo Hayne", "eventDate": "2013-07-21T22:00:00.000+0000", "taxonRank": "SPECIES", "familyKey": 5386, "nomenclaturalCode": "ICBN", "locality": "Zambujeira do Mar", "kingdom": "Plantae", "decimalLatitude": 37.53122, "rightsHolder": "CFE \u2013 Centro de Ecologia Funcional", "datasetName": "Mapa de Avistamentos de Plantas Invasoras em Portugal", "publishingOrgKey": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "geodeticDatum": "WGS84", "occurrenceRemarks": "Poucas", "collectionCode": "Invasoras", "kingdomKey": 6, "establishmentMeans": "INVASIVE", "class": "Magnoliopsida", "genusKey": 2978223, "higherGeography": "Europe, Portugal, Beja, Odemira", "key": 1050228117, "occurrenceID": "53808304-5f8e-4dd5-97fd-a63f424edeee", "phylumKey": 49, "genericName": "Acacia", "day": 22, "higherClassification": "Plantae; Spermatophyta; Magnoliopsida; Fabales; Fabaceae; Acacia", "publishingCountry": "PT", "identifier": "53808304-5f8e-4dd5-97fd-a63f424edeee", "lastCrawled": "2014-12-17T11:11:54.041+0000", "language": "pt", "datasetKey": "feb41318-374b-4ed6-b61e-0369993abedc", "institutionID": "16e26fb0-7f13-4ae2-b57c-2543f451f5b3", "specificEpithet": "karroo", "identifiers": [], "verbatimCoordinateSystem": "graus decimais", "modified": "2019-04-05T22:00:00.000+0000", "occurrenceStatus": "present", "decimalLongitude": -8.75721, "extensions": {}, "country": "Portugal", "startDayOfYear": "203", "recordedBy": "Sabrina Carvalho (62)", "ownerInstitutionCode": "CFE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979128, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:17:46.498+0000", "speciesKey": 2979128, "month": 9, "lastParsed": "2014-11-14T15:17:46.181+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920193748", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-16T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1420872372", "scientificName": "Acacia karroo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.39441, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Kavita Lion Lodge", "key": 920193748, "phylumKey": 49, "genericName": "Acacia", "day": 17, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:24:43.288+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "karroo", "identifiers": [], "decimalLongitude": 14.6363, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:12:46.646+0000", "speciesKey": 2979128, "month": 12, "lastParsed": "2014-11-14T15:12:46.230+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920176264", "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-12-14T23:00:00.000+0000", "classKey": 220, "catalogNumber": "-2068171015", "scientificName": "Acacia karoo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -33.91168, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Umgebung Barrydale", "key": 920176264, "phylumKey": 49, "genericName": "Acacia", "day": 15, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:17:24.805+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": 20.6983, "extensions": {}, "country": "South Africa", "recordedBy": "794562383", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:11:16.863+0000", "speciesKey": 2979128, "month": 12, "lastParsed": "2014-11-14T15:11:16.564+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920170675", "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=1124623895", "format": "text/html"}, {"references": "http://www.enjoynature.net/?bild=-2138849126", "format": "text/html"}], "relations": [], "eventDate": "2011-12-08T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1428261631", "scientificName": "Acacia karoo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.14466, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Hluhluwe Game Reserve", "key": 920170675, "phylumKey": 49, "genericName": "Acacia", "day": 9, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:15:55.416+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": 32.04712, "extensions": {}, "country": "South Africa", "recordedBy": "794562383", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.470+0000", "speciesKey": 2979128, "month": 10, "lastParsed": "2014-11-14T15:19:26.218+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199492", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1899392437", "scientificName": "Acacia karoo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199492, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.591+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:34.399+0000", "speciesKey": 2979128, "month": 2, "county": "Sari Solenzara [INSEE:20269]", "lastParsed": "2014-08-28T07:34:34.134+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2002, "facts": [], "species": "Acacia karroo", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "998696030", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Corse", "relations": [], "continent": "EUROPE", "classKey": 220, "catalogNumber": "17276", "scientificName": "Acacia karoo Hayne", "eventDate": "2002-02-09T23:00:00.000+0000", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 41.81809, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "legumino", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998696030, "phylumKey": 49, "genericName": "Acacia", "day": 10, "publishingCountry": "FR", "lastCrawled": "2015-01-08T15:28:02.463+0000", "datasetKey": "cbd241aa-a115-4856-af66-fac5cb90f2cc", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": 9.33946, "extensions": {}, "country": "France", "recordedBy": "Benoit BOCK", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DIGIR", "taxonKey": 2979128, "family": "Fabaceae", "institutionCode": "FUND. BIODIVERSIDAD", "lastInterpreted": "2014-06-05T02:52:28.048+0000", "speciesKey": 2979128, "month": 1, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "217692483", "countryCode": "ES", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "A", "relations": [], "eventDate": "2000-01-20T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1471430", "scientificName": "Acacia karroo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 37.1, "elevation": 5.0, "publishingOrgKey": "c8176fa4-1e11-4c74-8bdf-9f3aa87343de", "geodeticDatum": "WGS84", "elevationAccuracy": 0.0, "collectionCode": "ANTHOS", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Guardamar del Segura", "key": 217692483, "phylumKey": 49, "day": 21, "publishingCountry": "ES", "lastCrawled": "2013-09-07T07:07:32.000+0000", "datasetKey": "4cf3eec1-b902-40c9-b15b-05c5fe5928b6", "specificEpithet": "karroo", "identifiers": [], "decimalLongitude": -0.1, "extensions": {}, "country": "Spain", "recordedBy": "Lled\u00f3,M.J.", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:34.895+0000", "speciesKey": 2979128, "month": 4, "county": "Sari Solenzara [INSEE:20269]", "lastParsed": "2014-08-28T07:34:34.690+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 1992, "facts": [], "species": "Acacia karroo", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "998696099", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Corse", "relations": [], "continent": "EUROPE", "classKey": 220, "catalogNumber": "34349", "scientificName": "Acacia karoo Hayne", "eventDate": "1992-04-07T22:00:00.000+0000", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 41.81809, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "legumino", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998696099, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "FR", "lastCrawled": "2015-01-08T15:28:02.701+0000", "datasetKey": "cbd241aa-a115-4856-af66-fac5cb90f2cc", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": 9.33946, "extensions": {}, "country": "France", "recordedBy": "Philippe RABAUTE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979128, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:18.714+0000", "speciesKey": 2979128, "gbifID": "911910685", "lastParsed": "2014-06-17T08:44:16.679+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25078", "scientificName": "Acacia karroo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -32.30112, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Eastern Cape;Stutterheim;Neil Potter's Farm", "key": 911910685, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.632+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "karroo", "identifiers": [], "decimalLongitude": 27.53332, "extensions": {}, "country": "South Africa", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2979128, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.862+0000", "speciesKey": 2979128, "gbifID": "911910708", "lastParsed": "2014-06-17T08:44:16.705+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25077", "scientificName": "Acacia karroo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -32.33412, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Eastern Cape;Stutterheim;Neil Potter's Farm", "key": 911910708, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.674+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "karroo", "identifiers": [], "decimalLongitude": 27.52274, "extensions": {}, "country": "South Africa", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DIGIR", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "FUND. BIODIVERSIDAD", "lastInterpreted": "2014-06-05T02:52:28.795+0000", "speciesKey": 2979128, "gbifID": "217693281", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "countryCode": "ES", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Me", "relations": [], "classKey": 220, "catalogNumber": "1834157", "scientificName": "Acacia karoo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 35.1, "publishingOrgKey": "c8176fa4-1e11-4c74-8bdf-9f3aa87343de", "geodeticDatum": "WGS84", "collectionCode": "ANTHOS", "kingdomKey": 6, "genusKey": 2978223, "locality": "Melilla, arroyo Mezquita", "key": 217693281, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "ES", "lastCrawled": "2013-09-07T07:07:32.000+0000", "datasetKey": "4cf3eec1-b902-40c9-b15b-05c5fe5928b6", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": -2.1, "extensions": {}, "country": "Spain", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DIGIR", "taxonKey": 2979130, "family": "Fabaceae", "institutionCode": "FUND. BIODIVERSIDAD", "lastInterpreted": "2014-06-05T02:52:28.740+0000", "speciesKey": 2979128, "gbifID": "217693282", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia karroo", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "countryCode": "ES", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Me", "relations": [], "classKey": 220, "catalogNumber": "1834158", "scientificName": "Acacia karoo Hayne", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 35.1, "publishingOrgKey": "c8176fa4-1e11-4c74-8bdf-9f3aa87343de", "geodeticDatum": "WGS84", "collectionCode": "ANTHOS", "kingdomKey": 6, "genusKey": 2978223, "locality": "Melilla, riberas del rio Nano", "key": 217693282, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "ES", "lastCrawled": "2013-09-07T07:07:32.000+0000", "datasetKey": "4cf3eec1-b902-40c9-b15b-05c5fe5928b6", "specificEpithet": "karoo", "identifiers": [], "decimalLongitude": -2.1, "extensions": {}, "country": "Spain", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acacialuederitzii.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciamellifera.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 15, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:30.815+0000", "speciesKey": 2978254, "month": 5, "lastParsed": "2014-08-28T07:34:06.818+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia mellifera", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695286", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-14T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1339930", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.59858, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998695286, "phylumKey": 49, "genericName": "Acacia", "day": 15, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.738+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": -17.12749, "extensions": {}, "dateIdentified": "2014-05-14T22:00:00.000+0000", "country": "France", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:23:06.440+0000", "speciesKey": 2978254, "month": 9, "lastParsed": "2014-11-14T15:23:06.353+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920212648", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-21T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-631888803", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.03551, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Etosha NP, Restcamp Halali", "key": 920212648, "phylumKey": 49, "genericName": "Acacia", "day": 22, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:41:36.077+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 16.47101, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:17:46.477+0000", "speciesKey": 2978254, "month": 9, "lastParsed": "2014-11-14T15:17:46.136+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920193737", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-16T22:00:00.000+0000", "classKey": 220, "catalogNumber": "123603094", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.39441, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Kavita Lion Lodge", "key": 920193737, "phylumKey": 49, "genericName": "Acacia", "day": 17, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:24:43.215+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 14.6363, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.642+0000", "speciesKey": 2978254, "month": 9, "lastParsed": "2014-11-14T15:19:26.369+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199638", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-17T22:00:00.000+0000", "classKey": 220, "catalogNumber": "566140897", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.39441, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Kavita Lion Lodge", "key": 920199638, "phylumKey": 49, "genericName": "Acacia", "day": 18, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.735+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 14.6363, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:20:40.591+0000", "speciesKey": 2978254, "month": 9, "lastParsed": "2014-11-14T15:20:40.368+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920204007", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-21T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-355977117", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.02772, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Halali- Etoscha Nationalpark", "key": 920204007, "phylumKey": 49, "genericName": "Acacia", "day": 22, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:39:07.756+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 16.32912, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:22:53.398+0000", "speciesKey": 2978254, "month": 8, "lastParsed": "2014-11-14T15:22:53.063+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "920212441", "countryCode": "TZ", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-08-19T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1425264839", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -3.31533, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Lake Chala und Umgebung", "key": 920212441, "phylumKey": 49, "genericName": "Acacia", "day": 20, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:41:39.509+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 37.69512, "extensions": {}, "country": "Tanzania, United Republic of", "recordedBy": "1482295182", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:09:46.685+0000", "speciesKey": 2978254, "month": 8, "lastParsed": "2014-11-14T15:09:46.273+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "920165392", "countryCode": "TZ", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-08-19T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-940017664", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -3.31533, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Lake Chala und Umgebung", "key": 920165392, "phylumKey": 49, "genericName": "Acacia", "day": 20, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:14:20.764+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 37.69512, "extensions": {}, "country": "Tanzania, United Republic of", "recordedBy": "-1906442728", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.318+0000", "speciesKey": 2978254, "month": 10, "lastParsed": "2014-11-14T15:19:26.117+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199495", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-454852436", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199495, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.548+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.848+0000", "speciesKey": 2978254, "gbifID": "911910712", "lastParsed": "2014-06-17T08:44:16.708+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25186", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -26.40308, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Karas;Snyfontein", "key": 911910712, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.674+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 17.99546, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:40.442+0000", "speciesKey": 2978254, "gbifID": "812007561", "lastParsed": "2014-06-17T08:39:38.372+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11367", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.62815, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Route de Toukoto ;Bafoulab\u00e9", "key": 812007561, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.124+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": -10.26718, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.427+0000", "speciesKey": 2978254, "gbifID": "812007558", "lastParsed": "2014-06-17T08:39:38.356+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11364", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 15.15481, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Falaise de la Gandamia, GPS;Kikara", "key": 812007558, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.117+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": -2.86015, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.849+0000", "speciesKey": 2978254, "gbifID": "911910705", "lastParsed": "2014-06-17T08:44:16.702+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25188", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -26.40308, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Karas;Snyfontein", "key": 911910705, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.675+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 17.99546, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.392+0000", "speciesKey": 2978254, "gbifID": "812007559", "lastParsed": "2014-06-17T08:39:38.333+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11365", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 15.15481, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Falaise de la Gandamia, GPS;Kikara", "key": 812007559, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.110+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": -2.86015, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:44:16.849+0000", "speciesKey": 2978254, "gbifID": "911910714", "lastParsed": "2014-06-17T08:44:16.720+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "25187", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -26.40308, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Karas;Snyfontein", "key": 911910714, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:44:16.675+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": 17.99546, "extensions": {}, "country": "Namibia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978254, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.392+0000", "speciesKey": 2978254, "gbifID": "812007560", "lastParsed": "2014-06-17T08:39:38.366+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia mellifera", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11366", "scientificName": "Acacia mellifera (M.Vahl) Benth.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 15.15481, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Falaise de la Gandamia, GPS;Kikara", "key": 812007560, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.115+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "mellifera", "identifiers": [], "decimalLongitude": -2.86015, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acacianebrownii.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 2, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2978537, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:23:22.650+0000", "speciesKey": 2978537, "month": 9, "lastParsed": "2014-11-14T15:23:22.168+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia nebrownii", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920214252", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=335613218", "format": "text/html"}], "relations": [], "eventDate": "2012-09-20T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1054860353", "scientificName": "Acacia nebrownii Burtt Davy", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.0392, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Etosha NP, Salvadora- + Sueda-Waterholes", "key": 920214252, "phylumKey": 49, "genericName": "Acacia", "day": 21, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:41:38.080+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nebrownii", "identifiers": [], "decimalLongitude": 16.26165, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978537, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:14:59.461+0000", "speciesKey": 2978537, "month": 9, "lastParsed": "2014-11-14T15:14:59.199+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2012, "facts": [], "species": "Acacia nebrownii", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920184301", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2012-09-19T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1359872308", "scientificName": "Acacia nebrownii Burtt Davy", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.16302, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Etosha NP, Nebrownii-Waterhole", "key": 920184301, "phylumKey": 49, "genericName": "Acacia", "day": 20, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:19:38.692+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nebrownii", "identifiers": [], "decimalLongitude": 15.99559, "extensions": {}, "country": "Namibia", "recordedBy": "881932368", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acacianigrescens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 13, "endOfRecords": true, "limit": 100, "results": [{"protocol": "BIOCASE", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:21:11.120+0000", "speciesKey": 2979282, "month": 12, "lastParsed": "2014-11-14T15:21:10.720+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia nigrescens", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920205876", "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-12-11T23:00:00.000+0000", "classKey": 220, "catalogNumber": "312886081", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -25.0856, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "UTM50_36J_0350_7200", "key": 920205876, "phylumKey": 49, "genericName": "Acacia", "day": 12, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:40:06.742+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 31.76047, "extensions": {}, "country": "South Africa", "recordedBy": "794562383", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.090+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997262", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "15480", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.424, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Upper Panhandle", "key": 196997262, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 21.939, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.910+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998440", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "61716", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.162, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196998440, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.242, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.224+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997265", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "11758", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.954, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Guma Lagoon/ Upper Delta", "key": 196997265, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 22.373, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:21.374+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998421", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "59054", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.53, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Chief?s Island", "key": 196998421, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.09, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.997+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998393", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "28046", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.414, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Upper Panhandle", "key": 196998393, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 21.886, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.861+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997221", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "2346", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.956, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Guma Lagoon/ Upper Delta", "key": 196997221, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 22.374, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.798+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998400", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "51606", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196998400, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.590+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997248", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "10160", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.184, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Xakanaxa, Moremi", "key": 196997248, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.417, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:20.312+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196998432", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "54369", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.544, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Chief?s Island", "key": 196998432, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.064, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.926+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997290", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "22061", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.954, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Guma Lagoon/ Upper Delta", "key": 196997290, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 22.373, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:19.453+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997260", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "11431", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -18.414, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Upper Panhandle", "key": 196997260, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 21.886, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2979282, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:18.366+0000", "speciesKey": 2979282, "month": 6, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2000, "facts": [], "species": "Acacia nigrescens", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "196997223", "countryCode": "BW", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2000-06-04T22:00:00.000+0000", "classKey": 220, "catalogNumber": "2284", "scientificName": "Acacia nigrescens Oliv.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.53, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "22", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Chief?s Island", "key": 196997223, "phylumKey": 49, "day": 5, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "nigrescens", "identifiers": [], "decimalLongitude": 23.09, "extensions": {}, "country": "Botswana", "recordedBy": "W.N. (Fred) Ellery", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acacianiloticasubspkraussiana.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 34, "endOfRecords": true, "limit": 100, "results": [{"protocol": "DWC_ARCHIVE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "iNaturalist", "lastInterpreted": "2014-11-11T11:15:19.274+0000", "speciesKey": 2978421, "month": 2, "lastParsed": "2014-11-11T11:05:51.298+0000", "phylum": "Magnoliophyta", "references": "http://www.inaturalist.org/observations/566052", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "identificationID": "994589", "gbifID": "899946892", "rights": "Copyright Graeme White, licensed under a Creative Commons cc_by_nc_name license: http://creativecommons.org/licenses/by-nc/3.0/", "occurrenceID": "http://www.inaturalist.org/observations/566052", "countryCode": "MZ", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"identifier": "http://static.inaturalist.org/photos/719674/medium.jpg?1394712066", "type": "StillImage", "format": "image/jpeg"}, {"references": "http://www.inaturalist.org/photos/719674"}], "relations": [], "eventDate": "2014-01-31T23:00:00.000+0000", "classKey": 220, "catalogNumber": "566052", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "verbatimLocality": "TCT Dalmann Catapu", "kingdom": "Plantae", "decimalLatitude": -18.045, "rightsHolder": "Graeme White", "http://unknown.org/occurrenceDetails": "http://www.inaturalist.org/observations/566052", "datasetName": "iNaturalist research-grade observations", "publishingOrgKey": "28eb1a3f-1c15-4a95-931a-4af90ecb574d", "geodeticDatum": "WGS84", "verbatimEventDate": "2014-02-01", "collectionCode": "Observations", "kingdomKey": 6, "taxonID": "122107", "class": "Magnoliopsida", "genusKey": 2978223, "key": 899946892, "phylumKey": 49, "genericName": "Acacia", "day": 1, "publishingCountry": "US", "identifier": "566052", "lastCrawled": "2015-01-14T09:17:41.155+0000", "datasetKey": "50c9509d-22c7-4a22-a47d-8c48425ef4a7", "specificEpithet": "nilotica", "identifiers": [], "modified": "2014-10-20T14:08:00.000+0000", "decimalLongitude": 35.206, "extensions": {}, "dateIdentified": "2014-03-13T11:01:03.000+0000", "country": "Mozambique", "recordedBy": "Graeme White", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:07.643+0000", "speciesKey": 2978421, "month": 5, "lastParsed": "2014-08-28T07:34:06.831+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695294", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-05T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1329407", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.60093, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998695294, "phylumKey": 49, "genericName": "Acacia", "day": 6, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.738+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -17.12468, "extensions": {}, "dateIdentified": "2014-05-05T22:00:00.000+0000", "country": "France", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:11:02.467+0000", "speciesKey": 2978421, "month": 8, "lastParsed": "2014-11-14T15:11:02.138+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2013, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920169889", "countryCode": "BR", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=-1334458372", "format": "text/html"}, {"references": "http://www.enjoynature.net/?bild=-774072143", "format": "text/html"}], "relations": [], "eventDate": "2013-08-13T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-49428050", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -20.55244, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Hotel Fazenda do Betione, Bodoquena", "key": 920169889, "phylumKey": 49, "genericName": "Acacia", "day": 14, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:15:39.884+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -56.64104, "extensions": {}, "country": "Brazil", "recordedBy": "794562383", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:23:21.536+0000", "speciesKey": 2978421, "month": 10, "lastParsed": "2014-11-14T15:23:21.495+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2013, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920213599", "countryCode": "OM", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2013-10-11T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1597960168", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 17.09761, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Ayn Hamran", "key": 920213599, "phylumKey": 49, "genericName": "Acacia", "day": 12, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:41:35.666+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 54.28113, "extensions": {}, "country": "Oman", "recordedBy": "531632058", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:22:53.414+0000", "speciesKey": 2978421, "month": 8, "lastParsed": "2014-11-14T15:22:53.070+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "920212443", "countryCode": "TZ", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-08-19T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1322753543", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -3.31533, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Lake Chala und Umgebung", "key": 920212443, "phylumKey": 49, "genericName": "Acacia", "day": 20, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:41:39.553+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 37.69512, "extensions": {}, "country": "Tanzania, United Republic of", "recordedBy": "1482295182", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:09:46.592+0000", "speciesKey": 2978421, "month": 8, "lastParsed": "2014-11-14T15:09:46.264+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_DERIVED_FROM_COORDINATES"], "gbifID": "920165407", "countryCode": "TZ", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-08-19T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-1358631790", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -3.31533, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Lake Chala und Umgebung", "key": 920165407, "phylumKey": 49, "genericName": "Acacia", "day": 20, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:14:20.998+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 37.69512, "extensions": {}, "country": "Tanzania, United Republic of", "recordedBy": "-1906442728", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:11:16.868+0000", "speciesKey": 2978421, "month": 12, "lastParsed": "2014-11-14T15:11:16.587+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920170688", "countryCode": "ZA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-12-08T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1622477641", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -28.14466, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Hluhluwe Game Reserve", "key": 920170688, "phylumKey": 49, "genericName": "Acacia", "day": 9, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:15:55.436+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 32.04712, "extensions": {}, "country": "South Africa", "recordedBy": "794562383", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T10:58:53.133+0000", "speciesKey": 2978421, "gbifID": "614558595", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "267338", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.85467, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 614558595, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:11:12.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -0.52197, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.093+0000", "speciesKey": 2978421, "gbifID": "812007500", "lastParsed": "2014-06-17T08:39:38.026+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10497", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007500, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.965+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.042+0000", "speciesKey": 2978421, "gbifID": "812007489", "lastParsed": "2014-06-17T08:39:37.998+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10486", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007489, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.965+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:43.009+0000", "speciesKey": 2978421, "gbifID": "620985036", "lastParsed": "2014-06-17T08:39:38.728+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6129", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.37157, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Namentenga;Tougouri;between Tougouri and Taparko", "key": 620985036, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.219+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -0.47071, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.375+0000", "speciesKey": 2978421, "gbifID": "812007562", "lastParsed": "2014-06-17T08:39:38.327+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11370", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007562, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.110+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.444+0000", "speciesKey": 2978421, "gbifID": "812007571", "lastParsed": "2014-06-17T08:39:38.413+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11379", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007571, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.131+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:42.496+0000", "speciesKey": 2978421, "gbifID": "812007572", "lastParsed": "2014-06-17T08:39:38.433+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11380", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 19.02814, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Jardins de Tanezrouf ;Kidal", "key": 812007572, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.139+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 1.23694, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.439+0000", "speciesKey": 2978421, "gbifID": "812007563", "lastParsed": "2014-06-17T08:39:38.405+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11371", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007563, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.127+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.928+0000", "speciesKey": 2978421, "gbifID": "620985035", "lastParsed": "2014-06-17T08:39:38.722+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6128", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.3715, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Namentenga;Tougouri;between Tougouri and Taparko", "key": 620985035, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.217+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -0.47065, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 7225038, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.051+0000", "speciesKey": 2978421, "gbifID": "812007501", "lastParsed": "2014-06-17T08:39:38.020+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10498", "scientificName": "Acacia nilotica subsp. nilotica", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.2, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "infraspecificEpithet": "nilotica", "kingdomKey": 6, "collectionCode": "West-, Central- and East African Plants Databases", "genusKey": 2978223, "locality": "Ende;Bankass", "key": 812007501, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.966+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.5333, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 7225038, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.129+0000", "speciesKey": 2978421, "gbifID": "812007509", "lastParsed": "2014-06-17T08:39:38.046+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10506", "scientificName": "Acacia nilotica subsp. nilotica", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.2, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "infraspecificEpithet": "nilotica", "kingdomKey": 6, "collectionCode": "West-, Central- and East African Plants Databases", "genusKey": 2978223, "locality": "Ende;Bankass", "key": 812007509, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.019+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.5333, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.217+0000", "speciesKey": 2978421, "gbifID": "767070193", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251699", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0736, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070193, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": 0.32317, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.076+0000", "speciesKey": 2978421, "gbifID": "812007490", "lastParsed": "2014-06-17T08:39:38.025+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10487", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007490, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.966+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.076+0000", "speciesKey": 2978421, "gbifID": "812007491", "lastParsed": "2014-06-17T08:39:38.022+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10488", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007491, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.966+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.464+0000", "speciesKey": 2978421, "gbifID": "812007568", "lastParsed": "2014-06-17T08:39:38.431+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11376", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007568, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.138+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:12.833+0000", "speciesKey": 2978421, "gbifID": "698865072", "lastParsed": "2014-06-17T08:38:12.756+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "413068", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.85467, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 698865072, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.738+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -0.52197, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.927+0000", "speciesKey": 2978421, "gbifID": "620985034", "lastParsed": "2014-06-17T08:39:38.720+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6127", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.3715, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Namentenga;Tougouri;between Tougouri and Taparko", "key": 620985034, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.207+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -0.47065, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.044+0000", "speciesKey": 2978421, "gbifID": "812007492", "lastParsed": "2014-06-17T08:39:38.021+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10489", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007492, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.965+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 7225038, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.139+0000", "speciesKey": 2978421, "gbifID": "812007508", "lastParsed": "2014-06-17T08:39:38.040+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10505", "scientificName": "Acacia nilotica subsp. nilotica", "taxonRank": "SUBSPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.2, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "infraspecificEpithet": "nilotica", "kingdomKey": 6, "collectionCode": "West-, Central- and East African Plants Databases", "genusKey": 2978223, "locality": "Ende;Bankass", "key": 812007508, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.016+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.5333, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:42.506+0000", "speciesKey": 2978421, "gbifID": "812007569", "lastParsed": "2014-06-17T08:39:38.486+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11377", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007569, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.148+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:42.486+0000", "speciesKey": 2978421, "gbifID": "812007570", "lastParsed": "2014-06-17T08:39:38.400+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11378", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007570, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.130+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.043+0000", "speciesKey": 2978421, "gbifID": "812007493", "lastParsed": "2014-06-17T08:39:38.019+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10490", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007493, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.965+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.442+0000", "speciesKey": 2978421, "gbifID": "812007564", "lastParsed": "2014-06-17T08:39:38.396+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11372", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007564, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.129+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.042+0000", "speciesKey": 2978421, "gbifID": "812007499", "lastParsed": "2014-06-17T08:39:37.998+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "10496", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.73083, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Ibi;Bandiagara", "key": 812007499, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:37.964+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -3.02306, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:40.513+0000", "speciesKey": 2978421, "gbifID": "812007565", "lastParsed": "2014-06-17T08:39:38.431+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11373", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007565, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.127+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.375+0000", "speciesKey": 2978421, "gbifID": "812007567", "lastParsed": "2014-06-17T08:39:38.350+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11375", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007567, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.115+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978421, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.427+0000", "speciesKey": 2978421, "gbifID": "812007566", "lastParsed": "2014-06-17T08:39:38.374+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia nilotica", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11374", "scientificName": "Acacia nilotica (L.) Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007566, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.123+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "nilotica", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciarobusta.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 0, "endOfRecords": true, "limit": 100, "results": [], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciasenegal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 10, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:08.000+0000", "speciesKey": 2978697, "month": 5, "lastParsed": "2014-08-28T07:34:06.825+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia senegal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695292", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1330953", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.55343, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998695292, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.739+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -17.09952, "extensions": {}, "dateIdentified": "2014-05-07T22:00:00.000+0000", "country": "France", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-11-28T10:09:25.443+0000", "speciesKey": 2978697, "month": 10, "identifiedBy": "S. Paulin KOURA", "lastParsed": "2014-11-28T10:09:25.386+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia senegal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "1044058812", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-10-27T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1613370", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.38085, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 1044058812, "phylumKey": 49, "genericName": "Acacia", "day": 28, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.743+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -1.50418, "extensions": {}, "dateIdentified": "2014-10-27T23:00:00.000+0000", "country": "France", "recordedBy": "S. Paulin KOURA", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.976+0000", "speciesKey": 2978697, "month": 1, "lastParsed": "2014-11-14T15:19:26.628+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2009, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199774", "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "media": [{"references": "http://www.enjoynature.net/?bild=-1287712343", "format": "text/html"}], "relations": [], "eventDate": "2008-12-31T23:00:00.000+0000", "classKey": 220, "catalogNumber": "734219785", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.67211, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Mare de Oursi", "key": 920199774, "phylumKey": 49, "genericName": "Acacia", "day": 1, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.782+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -0.46881, "extensions": {}, "country": "Burkina Faso", "recordedBy": "1315648783", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "naturgucker", "lastInterpreted": "2014-11-14T15:19:26.414+0000", "speciesKey": 2978697, "month": 10, "lastParsed": "2014-11-14T15:19:26.118+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2005, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "gbifID": "920199498", "countryCode": "NA", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2005-10-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "-218106246", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -22.2695, "publishingOrgKey": "bb646dff-a905-4403-a49b-6d378c2cf0d9", "geodeticDatum": "WGS84", "collectionCode": "naturgucker", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "G\u00e4stefarm D\u00fcsternbrook", "key": 920199498, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "DE", "lastCrawled": "2015-01-19T08:35:41.591+0000", "datasetKey": "6ac3f774-d9fb-4796-b3e9-92bf6c81c084", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": 16.90081, "extensions": {}, "country": "Namibia", "recordedBy": "812096107", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.458+0000", "speciesKey": 2978697, "gbifID": "812007610", "lastParsed": "2014-06-17T08:39:38.432+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11381", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007610, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.135+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:42.837+0000", "speciesKey": 2978697, "gbifID": "620985044", "lastParsed": "2014-06-17T08:39:38.706+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6137", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.74998, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Soum / Bam;between Djibo and Kongoussi", "key": 620985044, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.210+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -1.57327, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.965+0000", "speciesKey": 2978697, "gbifID": "620985043", "lastParsed": "2014-06-17T08:39:38.761+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6136", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.74998, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Soum / Bam;between Djibo and Kongoussi", "key": 620985043, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.234+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -1.57327, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.466+0000", "speciesKey": 2978697, "gbifID": "812007611", "lastParsed": "2014-06-17T08:39:38.433+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11382", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007611, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.139+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:42.877+0000", "speciesKey": 2978697, "gbifID": "620985045", "lastParsed": "2014-06-17T08:39:38.709+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6138", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 13.74998, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Soum / Bam;between Djibo and Kongoussi", "key": 620985045, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.212+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -1.57326, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978697, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:38.450+0000", "speciesKey": 2978697, "gbifID": "812007612", "lastParsed": "2014-06-17T08:39:38.411+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia senegal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ML", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "11383", "scientificName": "Acacia senegal (L.) Willd.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.89203, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Camp IRD;Batamani", "key": 812007612, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.133+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "senegal", "identifiers": [], "decimalLongitude": -4.0233, "extensions": {}, "country": "Mali", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciaseyal.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"count": 79, "endOfRecords": true, "limit": 100, "results": [{"protocol": "TAPIR", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:07.446+0000", "speciesKey": 2978866, "month": 5, "lastParsed": "2014-08-28T07:34:06.824+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695293", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-05T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1330336", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.5993, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998695293, "phylumKey": 49, "genericName": "Acacia", "day": 6, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.737+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -17.12813, "extensions": {}, "dateIdentified": "2014-05-05T22:00:00.000+0000", "country": "France", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:07.729+0000", "speciesKey": 2978866, "month": 5, "lastParsed": "2014-08-28T07:34:06.837+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695296", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-05-07T22:00:00.000+0000", "classKey": 220, "catalogNumber": "1330939", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 14.55347, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 998695296, "phylumKey": 49, "genericName": "Acacia", "day": 8, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.738+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -17.09687, "extensions": {}, "dateIdentified": "2014-05-07T22:00:00.000+0000", "country": "France", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-11-28T10:09:25.452+0000", "speciesKey": 2978866, "month": 10, "identifiedBy": "S. Paulin KOURA", "lastParsed": "2014-11-28T10:09:25.404+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "1044058815", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-10-27T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1613371", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.38085, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 1044058815, "phylumKey": 49, "genericName": "Acacia", "day": 28, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.741+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -1.50418, "extensions": {}, "dateIdentified": "2014-10-27T23:00:00.000+0000", "country": "France", "recordedBy": "S. Paulin KOURA", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-11-28T10:09:25.482+0000", "speciesKey": 2978866, "month": 10, "identifiedBy": "S. Paulin KOURA", "lastParsed": "2014-11-28T10:09:25.398+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2014, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "1044058814", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2014-10-27T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1613369", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 15.38085, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "key": 1044058814, "phylumKey": 49, "genericName": "Acacia", "day": 28, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.735+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -1.50418, "extensions": {}, "dateIdentified": "2014-10-27T23:00:00.000+0000", "country": "France", "recordedBy": "S. Paulin KOURA", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "http://www.tela-botanica.org", "lastInterpreted": "2014-08-28T07:34:07.670+0000", "speciesKey": 2978866, "month": 1, "identifiedBy": "Florian FRAIX-BAVUZ", "lastParsed": "2014-08-28T07:34:06.834+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 2011, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "COUNTRY_COORDINATE_MISMATCH"], "gbifID": "998695295", "countryCode": "FR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "2011-01-11T23:00:00.000+0000", "classKey": 220, "catalogNumber": "1277115", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.52509, "publishingOrgKey": "b2dbd210-90c2-11df-86a3-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "cel", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "soukouta", "key": 998695295, "phylumKey": 49, "genericName": "Acacia", "day": 12, "publishingCountry": "FR", "lastCrawled": "2015-01-15T15:22:29.742+0000", "datasetKey": "baa86fb2-7346-4507-a34f-44e4c1bd0d57", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -16.19412, "extensions": {}, "dateIdentified": "2011-01-11T23:00:00.000+0000", "country": "France", "recordedBy": "Florian FRAIX-BAVUZ", "genus": "Acacia", "order": "Fabales"}, {"protocol": "TAPIR", "taxonKey": 2978869, "family": "Fabaceae", "institutionCode": "Conservation International", "lastInterpreted": "2014-06-05T00:58:21.257+0000", "speciesKey": 2978866, "month": 8, "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "year": 1998, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84", "TAXON_MATCH_FUZZY"], "gbifID": "196998460", "countryCode": "BR", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "eventDate": "1998-08-23T22:00:00.000+0000", "classKey": 220, "catalogNumber": "63627", "scientificName": "Acacia fistula Schweinf.", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": -19.388, "publishingOrgKey": "335880a0-e2e1-11dd-8102-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "26", "kingdomKey": 6, "class": "Magnoliopsida", "genusKey": 2978223, "locality": "Upper Negro Region", "key": 196998460, "phylumKey": 49, "day": 24, "publishingCountry": "US", "lastCrawled": "2013-09-07T07:08:15.000+0000", "datasetKey": "4d749d70-e2e1-11dd-8102-b8a03c50a862", "specificEpithet": "fistula", "identifiers": [], "decimalLongitude": -54.979, "extensions": {}, "country": "Brazil", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.832+0000", "speciesKey": 2978866, "gbifID": "767070149", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "246667", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.81402, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070149, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.2063, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.164+0000", "speciesKey": 2978866, "gbifID": "911909681", "lastParsed": "2014-06-17T08:38:12.995+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421895", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909681, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.936+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.518+0000", "speciesKey": 2978866, "gbifID": "767070136", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245971", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.79657, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070136, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.20375, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.651+0000", "speciesKey": 2978866, "gbifID": "767070037", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233797", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070037, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.189+0000", "speciesKey": 2978866, "gbifID": "767070135", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "245970", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.79657, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070135, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.20375, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.142+0000", "speciesKey": 2978866, "gbifID": "911909638", "lastParsed": "2014-06-17T08:38:12.947+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421571", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909638, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.862+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.592+0000", "speciesKey": 2978866, "gbifID": "767070045", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233904", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070045, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:43.020+0000", "speciesKey": 2978866, "gbifID": "620985058", "lastParsed": "2014-06-17T08:39:38.749+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6955", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.37883, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kadiogo;Ouagadougou;University Campus", "key": 620985058, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.228+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -1.49828, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.036+0000", "speciesKey": 2978866, "gbifID": "767070191", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251623", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.88748, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070191, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.39253, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "DWC_ARCHIVE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "SSMN", "lastInterpreted": "2014-06-05T06:52:41.598+0000", "speciesKey": 2978866, "habitat": "For\u00eat", "gbifID": "373138351", "identifiedBy": "Paquil\u00e9 Ch\u00e9rif", "lastParsed": "2014-05-29T11:40:14.299+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "type": "Event", "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "GN", "basisOfRecord": "HUMAN_OBSERVATION", "stateProvince": "Lola", "relations": [], "continent": "AFRICA", "classKey": 220, "catalogNumber": "PCBMN_4", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.71645, "datasetName": "Phan\u00e9rogames des Monts Nimba", "publishingOrgKey": "1c905e09-830d-43d6-bea7-32b9275364bf", "geodeticDatum": "WGS84", "collectionCode": "PCBMN", "kingdomKey": 6, "genusKey": 2978223, "locality": "Nimba centre", "key": 373138351, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "GN", "identifier": "4", "lastCrawled": "2014-09-04T22:19:43.940+0000", "language": "fr", "datasetKey": "d7cf2c48-3d3a-4981-bfce-dbef6fe6eef3", "institutionID": "SSMN", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -8.3606, "extensions": {}, "dateIdentified": "2006-12-31T23:00:00.000+0000", "country": "Guinea", "recordedBy": "S\u00e9dibinet SIDIBE", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.018+0000", "speciesKey": 2978866, "gbifID": "767070046", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233905", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070046, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:12.869+0000", "speciesKey": 2978866, "gbifID": "698865074", "lastParsed": "2014-06-17T08:38:12.757+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "413326", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.87126, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 698865074, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.739+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -0.13224, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.598+0000", "speciesKey": 2978866, "gbifID": "767070075", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "241098", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070075, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.993+0000", "speciesKey": 2978866, "gbifID": "620985076", "lastParsed": "2014-06-17T08:39:38.780+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ET", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "8424", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.52387, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Oromiya;Rift Valley;Langano", "key": 620985076, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.245+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 38.67179, "extensions": {}, "country": "Ethiopia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.122+0000", "speciesKey": 2978866, "gbifID": "911909605", "lastParsed": "2014-06-17T08:38:12.914+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421298", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909605, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.803+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:22.743+0000", "speciesKey": 2978866, "gbifID": "911909648", "lastParsed": "2014-06-17T08:38:12.954+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421405", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909648, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.877+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:22.739+0000", "speciesKey": 2978866, "gbifID": "911909649", "lastParsed": "2014-06-17T08:38:12.951+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421793", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909649, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.877+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.153+0000", "speciesKey": 2978866, "gbifID": "911909641", "lastParsed": "2014-06-17T08:38:12.943+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421553", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909641, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.862+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.021+0000", "speciesKey": 2978866, "gbifID": "767070078", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "241135", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070078, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:43.035+0000", "speciesKey": 2978866, "gbifID": "620985079", "lastParsed": "2014-06-17T08:39:38.770+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ET", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "8427", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.52387, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Oromiya;Rift Valley;Langano", "key": 620985079, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.241+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 38.67179, "extensions": {}, "country": "Ethiopia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.340+0000", "speciesKey": 2978866, "gbifID": "767070043", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233867", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070043, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.872+0000", "speciesKey": 2978866, "gbifID": "767070150", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "246921", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92685, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070150, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.40612, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.151+0000", "speciesKey": 2978866, "gbifID": "911909655", "lastParsed": "2014-06-17T08:38:12.952+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421873", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909655, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.920+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.864+0000", "speciesKey": 2978866, "gbifID": "767070054", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "234056", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 767070054, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.189+0000", "speciesKey": 2978866, "gbifID": "911909679", "lastParsed": "2014-06-17T08:38:13.044+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421572", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909679, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.936+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.755+0000", "speciesKey": 2978866, "gbifID": "767070185", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251163", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.88433, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070185, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.39507, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.194+0000", "speciesKey": 2978866, "gbifID": "911909668", "lastParsed": "2014-06-17T08:38:12.958+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421404", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909668, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.922+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:39.728+0000", "speciesKey": 2978866, "gbifID": "767070053", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233951", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070053, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.163+0000", "speciesKey": 2978866, "gbifID": "911909622", "lastParsed": "2014-06-17T08:38:12.941+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421523", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.11389, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Diapangou", "key": 911909622, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.856+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.18083, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.119+0000", "speciesKey": 2978866, "gbifID": "911909597", "lastParsed": "2014-06-17T08:38:12.893+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421297", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909597, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.792+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.924+0000", "speciesKey": 2978866, "gbifID": "767070151", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "247273", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87478, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070151, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.40405, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:39.684+0000", "speciesKey": 2978866, "gbifID": "767070074", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "241050", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 767070074, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.138+0000", "speciesKey": 2978866, "gbifID": "911909643", "lastParsed": "2014-06-17T08:38:12.946+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421054", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 911909643, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.862+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.494+0000", "speciesKey": 2978866, "gbifID": "767070063", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "240892", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.11389, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Diapangou", "key": 767070063, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.18083, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.133+0000", "speciesKey": 2978866, "gbifID": "911909632", "lastParsed": "2014-06-17T08:38:12.949+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421368", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909632, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.861+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.445+0000", "speciesKey": 2978866, "gbifID": "767070052", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233950", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070052, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T10:58:52.848+0000", "speciesKey": 2978866, "gbifID": "614558605", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "267771", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.87126, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 614558605, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:11:12.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -0.13224, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.671+0000", "speciesKey": 2978866, "gbifID": "767070184", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251147", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.88427, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070184, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.39495, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.409+0000", "speciesKey": 2978866, "gbifID": "767070195", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251825", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92585, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070195, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.42315, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.527+0000", "speciesKey": 2978866, "gbifID": "767070064", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "240921", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070064, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:36.972+0000", "speciesKey": 2978866, "gbifID": "767070065", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "240922", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070065, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.132+0000", "speciesKey": 2978866, "gbifID": "911909634", "lastParsed": "2014-06-17T08:38:12.940+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421343", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909634, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.861+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.645+0000", "speciesKey": 2978866, "gbifID": "767070119", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "244864", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070119, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.253+0000", "speciesKey": 2978866, "gbifID": "767070067", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "240941", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070067, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.627+0000", "speciesKey": 2978866, "gbifID": "767070033", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233757", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070033, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:40.727+0000", "speciesKey": 2978866, "gbifID": "620985077", "lastParsed": "2014-06-17T08:39:38.732+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ET", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "8425", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.52387, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Oromiya;Rift Valley;Langano", "key": 620985077, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.227+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 38.67179, "extensions": {}, "country": "Ethiopia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.315+0000", "speciesKey": 2978866, "gbifID": "767070194", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251789", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.92208, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070194, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.42487, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.937+0000", "speciesKey": 2978866, "gbifID": "620985057", "lastParsed": "2014-06-17T08:39:38.727+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6954", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.37883, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kadiogo;Ouagadougou;University Campus", "key": 620985057, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.219+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -1.49828, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.151+0000", "speciesKey": 2978866, "gbifID": "911909678", "lastParsed": "2014-06-17T08:38:12.995+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421367", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909678, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.935+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:44.993+0000", "speciesKey": 2978866, "gbifID": "620985078", "lastParsed": "2014-06-17T08:39:38.774+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "ET", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "8426", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 7.52387, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Oromiya;Rift Valley;Langano", "key": 620985078, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.249+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 38.67179, "extensions": {}, "country": "Ethiopia", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.997+0000", "speciesKey": 2978866, "gbifID": "767070077", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "241122", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070077, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.138+0000", "speciesKey": 2978866, "gbifID": "911909646", "lastParsed": "2014-06-17T08:38:12.952+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421681", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 911909646, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.866+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.179+0000", "speciesKey": 2978866, "gbifID": "767070066", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "240940", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070066, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.261+0000", "speciesKey": 2978866, "gbifID": "767070044", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233868", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070044, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.829+0000", "speciesKey": 2978866, "gbifID": "767070187", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251255", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.8828, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070187, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.39392, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.091+0000", "speciesKey": 2978866, "gbifID": "767070038", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233798", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070038, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.825+0000", "speciesKey": 2978866, "gbifID": "767070138", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "246057", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.72763, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070138, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.16318, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.146+0000", "speciesKey": 2978866, "gbifID": "911909629", "lastParsed": "2014-06-17T08:38:12.939+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421451", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909629, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.858+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.998+0000", "speciesKey": 2978866, "gbifID": "767070118", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "244842", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070118, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.145+0000", "speciesKey": 2978866, "gbifID": "911909660", "lastParsed": "2014-06-17T08:38:12.953+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421756", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909660, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.920+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.903+0000", "speciesKey": 2978866, "gbifID": "767070040", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "233843", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070040, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.199+0000", "speciesKey": 2978866, "gbifID": "911909674", "lastParsed": "2014-06-17T08:38:12.992+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421780", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909674, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.931+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:38.250+0000", "speciesKey": 2978866, "gbifID": "767070055", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "234057", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 767070055, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.782+0000", "speciesKey": 2978866, "gbifID": "767070186", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "251199", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.88297, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070186, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.39593, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.099+0000", "speciesKey": 2978866, "gbifID": "911909590", "lastParsed": "2014-06-17T08:38:12.850+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421257", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909590, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.778+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:39:43.020+0000", "speciesKey": 2978866, "gbifID": "620985059", "lastParsed": "2014-06-17T08:39:38.751+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "6956", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.37883, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West-, Central- and East African Plants Databases", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kadiogo;Ouagadougou;University Campus", "key": 620985059, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:39:38.228+0000", "datasetKey": "82bc920a-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": -1.49828, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.766+0000", "speciesKey": 2978866, "gbifID": "767070058", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "234171", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 767070058, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.159+0000", "speciesKey": 2978866, "gbifID": "911909627", "lastParsed": "2014-06-17T08:38:12.944+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421053", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.87341, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Kikideni", "key": 911909627, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.858+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.37442, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.793+0000", "speciesKey": 2978866, "gbifID": "767070148", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "246650", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.81402, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070148, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.2063, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.157+0000", "speciesKey": 2978866, "gbifID": "911909690", "lastParsed": "2014-06-17T08:38:13.046+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421552", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909690, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.942+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.087+0000", "speciesKey": 2978866, "gbifID": "911909593", "lastParsed": "2014-06-17T08:38:12.852+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421168", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909593, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.790+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-05T14:25:37.627+0000", "speciesKey": 2978866, "gbifID": "767070137", "genericName": "Acacia", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["COORDINATE_ROUNDED", "GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "246039", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 11.7277, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "key": 767070137, "phylumKey": 49, "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2013-09-07T07:14:57.000+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.16268, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}, {"protocol": "BIOCASE", "taxonKey": 2978866, "family": "Fabaceae", "institutionCode": "FR", "lastInterpreted": "2014-06-17T08:38:13.156+0000", "speciesKey": 2978866, "gbifID": "911909659", "lastParsed": "2014-06-17T08:38:12.955+0000", "phylum": "Magnoliophyta", "orderKey": 1370, "facts": [], "species": "Acacia seyal", "issues": ["GEODETIC_DATUM_ASSUMED_WGS84"], "countryCode": "BF", "basisOfRecord": "HUMAN_OBSERVATION", "relations": [], "classKey": 220, "catalogNumber": "421450", "scientificName": "Acacia seyal Delile", "taxonRank": "SPECIES", "familyKey": 5386, "kingdom": "Plantae", "decimalLatitude": 12.0667, "publishingOrgKey": "c76cf030-2a95-11da-9cc1-b8a03c50a862", "geodeticDatum": "WGS84", "collectionCode": "West African Vegetation Database", "kingdomKey": 6, "genusKey": 2978223, "locality": "Fada N'Gourma", "key": 911909659, "phylumKey": 49, "genericName": "Acacia", "class": "Magnoliopsida", "publishingCountry": "DE", "lastCrawled": "2014-06-17T08:38:12.920+0000", "datasetKey": "82a8ae70-f762-11e1-a439-00145eb45e9a", "specificEpithet": "seyal", "identifiers": [], "decimalLongitude": 0.35, "extensions": {}, "country": "Burkina Faso", "genus": "Acacia", "order": "Fabales"}], "offset": 0}
tsammalex-data/tsammalexdata/data/external/gbif/acaciatortilis.json ADDED
The diff for this file is too large to render. See raw diff
 
tsammalex-data/tsammalexdata/data/external/gbif/acaciatortilissubspheteracantha.json ADDED
The diff for this file is too large to render. See raw diff