Skip to content

Instantly share code, notes, and snippets.

@bartaelterman
Last active August 29, 2015 13:57
Show Gist options
  • Save bartaelterman/9762609 to your computer and use it in GitHub Desktop.
Save bartaelterman/9762609 to your computer and use it in GitHub Desktop.
iPython notebook that demonstrates fetching the number of downloaded records for GBIF datasets
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "gbif_stats"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": "Get download statistics for published datasets on GBIF"
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Import packages"
},
{
"cell_type": "code",
"collapsed": false,
"input": "import requests\nimport json\nimport dateutil\nfrom pytz import timezone\nimport datetime\nimport pandas as pd",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Define function to fetch one page from GBIF API"
},
{
"cell_type": "code",
"collapsed": false,
"input": "def fetch_dataset_datapage(key, offset, limit):\n params = {'limit': limit, 'offset': offset}\n r = requests.get('http://api.gbif.org/v0.9/occurrence/download/dataset/' + key, params=params)\n data = r.json()['results']\n return data",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Define function to fetch all pages for one dataset"
},
{
"cell_type": "code",
"collapsed": false,
"input": "def fetch_dataset_data(key):\n more_results_to_find = True\n offset = 0\n limit = 20\n download_stats = []\n while more_results_to_find:\n page = fetch_dataset_datapage(key, offset, limit)\n download_stats += page\n offset += 20\n if len(page) == 0:\n more_results_to_find = False\n return download_stats",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Function to compare dates"
},
{
"cell_type": "code",
"collapsed": false,
"input": "def is_in_year(datetime_string, year):\n dt = dateutil.parser.parse(datetime_string)\n tz = timezone('UTC')\n beginning_of_year = datetime.datetime(year, 1, 1, 0, 0, 0, 0, tzinfo=tz)\n start_of_next_year = datetime.datetime(year + 1, 1, 1, 0, 0, 0, 0, tzinfo=tz)\n return beginning_of_year <= dt < start_of_next_year",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Function to fetch all dataset download statistics"
},
{
"cell_type": "code",
"collapsed": false,
"input": "def get_downloaded_records(key):\n raw_data = fetch_dataset_data(key)\n records = [x['numberRecords'] for x in raw_data]\n mod_dates = [x['download']['modified'] for x in raw_data]\n status_list = [x['download']['status'] for x in raw_data]\n in_2013 = [is_in_year(x, 2013) for x in mod_dates]\n in_2014 = [is_in_year(x, 2014) for x in mod_dates]\n data = pd.DataFrame({'numberRecords': records, 'mod_dates': mod_dates, 'in_2013': in_2013, 'in_2014': in_2014, 'status': status_list})\n total_nr_downloaded_records = data['numberRecords'].sum()\n total_nr_downloads = len(data)\n if total_nr_downloads > 0:\n data_in_2013 = data[data['in_2013'] == True]\n data_in_2014 = data[data['in_2014'] == True]\n # total succeeded\n tot_data_succeeded = data[data['status'] == 'SUCCEEDED']\n downloaded_records_succeeded = tot_data_succeeded ['numberRecords'].sum()\n nr_downloads_succeeded = len(tot_data_succeeded)\n # succeeded in 2013\n data_succeeded_in_2013 = data_in_2013[data_in_2013['status'] == 'SUCCEEDED']\n downloaded_records_succeeded_in_2013 = data_succeeded_in_2013['numberRecords'].sum()\n nr_downloads_succeeded_in_2013 = len(data_succeeded_in_2013)\n # succeeded in 2014\n data_succeeded_in_2014 = data_in_2014[data_in_2014['status'] == 'SUCCEEDED']\n downloaded_records_succeeded_in_2014 = data_succeeded_in_2014['numberRecords'].sum()\n nr_downloads_succeeded_in_2014 = len(data_succeeded_in_2014)\n else:\n downloaded_records_succeeded = 0\n nr_downloads_succeeded = 0\n downloaded_records_succeeded_in_2013 = 0\n nr_downloads_succeeded_in_2013 = 0\n downloaded_records_succeeded_in_2014 = 0\n nr_downloads_succeeded_in_2014 = 0\n return {'total_downloads': nr_downloads_succeeded,\n 'total_records_downloaded': downloaded_records_succeeded,\n 'downloads_succeeded_in_2013': nr_downloads_succeeded_in_2013,\n 'records_succeeded_in_2013': downloaded_records_succeeded_in_2013,\n 'downloads_succeeded_in_2014': nr_downloads_succeeded_in_2014,\n 'records_succeeded_in_2014': downloaded_records_succeeded_in_2014}",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": "Download statistics from all data publishers in one country"
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": "set country"
},
{
"cell_type": "code",
"collapsed": false,
"input": "country = 'germany'",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Fetch all datasets for this country"
},
{
"cell_type": "code",
"collapsed": false,
"input": "more_results_to_find = True\noffset = 0\nlimit = 20\nall_datasets = []\nwhile more_results_to_find:\n params = {'publishing_country': country, 'offset': offset, 'limit': limit, 'type': 'occurrence'}\n r = requests.get('http://api.gbif.org/v0.9/dataset/search', params=params)\n datasets = r.json()['results']\n all_datasets += datasets\n offset += 20\n if len(datasets) == 0:\n more_results_to_find = False\n",
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": "Fetch all dataset stats per dataset"
},
{
"cell_type": "code",
"collapsed": false,
"input": "print 'publisher\\tdataset_key\\tdataset_title\\ttotal_nr_downloads\\ttotal_nr_downloaded_records\\tsucceeded_downloads_2013\\tsucceeded_records_2013\\tsucceeded_downloads_2014\\tsucceeded_records_2014'\nIGNORE_PUBLISHERS = ['PANGAEA - Publishing Network for Geoscientific and Environmental Data', 'GEO-Tag der Artenvielfalt']\nfor ds in all_datasets:\n publisher = ds['owningOrganizationTitle']\n if publisher not in IGNORE_PUBLISHERS:\n try:\n download_data = get_downloaded_records(ds['key'])\n printable_data = [\n publisher, ds['key'], \n ds['title'], \n str(download_data['total_downloads']), \n str(download_data['total_records_downloaded']), \n str(download_data['downloads_succeeded_in_2013']), \n str(download_data['records_succeeded_in_2013']), \n str(download_data['downloads_succeeded_in_2014']), \n str(download_data['records_succeeded_in_2014'])\n ] \n print '\\t'.join(printable_data)\n except Exception as e:\n print 'Problem with dataset {0}'.format(ds)\n\n",
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": "publisher\tdataset_key\tdataset_title\ttotal_nr_downloads\ttotal_nr_downloaded_records\tsucceeded_downloads_2013\tsucceeded_records_2013\tsucceeded_downloads_2014\tsucceeded_records_2014\nBundesamt f\u00fcr Naturschutz / Netzwerk Phytodiversit\u00e4t Deutschland\tad0d1a24-e952-11e2-961f-00145eb45e9a\tVegetWeb - Repositorium von Vegetationsaufnahmen a\t1517\t124099314\t334\t74729839\t1183\t49369475"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t44cc2996-3a0c-11e2-b0ce-00145eb45e9a\tPorifera ZMK\t136\t136\t86\t86\t50\t50"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Plathelminthes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Plathelminthes - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7f8aab44-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Sipuncula of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Sipuncula - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7e9a4f64-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7df09334-1387-11e2-bb2e-00145eb45e9a\tPhoronida - SMF\t136\t1072\t87\t680\t49\t392"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'R\\xf6ntgenarchiv Wilhelm St\\xfcrmer', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'R\\xf6ntgenarchiv Wilhelm St\\xfcrmer - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8293a994-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t442dd8cc-3a0c-11e2-b0ce-00145eb45e9a\tTunicata ZMK\t134\t134\t85\t85\t49\t49"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t445dc244-3a0c-11e2-b0ce-00145eb45e9a\tPantopoda SMF\t140\t277\t90\t178\t50\t99"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Vermes', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Vermes ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'431441d8-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Reptilia', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Reptilia ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'436ca51c-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aves', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Ornithologie ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'42749746-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t42b08620-3a0c-11e2-b0ce-00145eb45e9a\tProtozoa ZMK\t115\t115\t74\t74\t41\t41"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The mycological collection of the POLLICHIA at the Pfalzmuseum f\\xfcr Naturkunde in Bad D\\xfcrkheim (Germany) comprises about 3500 specimens, originating from all systematic groups. All taxa so far identified from the Palatinate (southern Rhineland-Palatinate, SW Germany) are represented in the collection with individual vouchers. These vouchers have been collected since 1810 and document a period of about 200 years of regional mycological research.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Pollichia Pilzherbar', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'857e1bda-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Algal observations, specimens, and strain information, provided by the AlgaTerra Information System.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'AlgaTerra', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'7a22e1e4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Nomenclatural types and original material of algal names. Data from B, BHUPM, BRM and other resources (literature, original data).', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Algaterra Types', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85685a84-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t42f1ad6c-3a0c-11e2-b0ce-00145eb45e9a\tAmphibia ZMK\t148\t282\t89\t174\t59\t108"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Arachnida of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Arachnologie - SMNG', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'a5458d08-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t439ae544-3a0c-11e2-b0ce-00145eb45e9a\tArachnologie ZMK\t195\t4191\t122\t2660\t73\t1531"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Animal Sound Archive at the Museum fuer Naturkunde Berlin (German: Tierstimmenarchiv) is one of the oldest and largest worldwide. Founded in 1951 by Professor Guenter Tembrock the collection consists now of around 130 000 records of animal voices.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Animal Sound Archive', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'b7ec1bf8-819b-11e2-bad2-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aschelminthes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Aschelminthes - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7cf5c968-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t43c03dee-3a0c-11e2-b0ce-00145eb45e9a\tBryozoa ZMK\t137\t137\t86\t86\t51\t51"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Chaetognatha of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Chaetognatha - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7dc103e4-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Clitellata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Clitellata - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7f4020e2-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t44a8361c-3a0c-11e2-b0ce-00145eb45e9a\tCnidaria ZMK\t134\t134\t84\t84\t50\t50"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u\"The Phytoplankton Collections at B comprise water samples of mixed phytoplankton, fixed with lugol, ethanol or other fixing agents. In the original database at B, samples are partly linked to sampling data, countings, and literature data. The collections include samples of Willi Ripl's research group (TU Berlin), Barbara Meyer (MPI Pl\\xf6n), and Ursula Geissler's research group (FU Berlin).\", u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Collections of Phytoplankton at BGBM', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'ee9c2798-1637-11e3-b987-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t21448e32-117a-11e3-a753-00145eb45e9a\tSphaeroceridae Collection\t152\t6554474\t103\t4227140\t49\t2327334"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t80edd150-f762-11e1-a439-00145eb45e9a\tCollection Trilobita SMF\t144\t96879\t93\t62278\t51\t34601"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Trichoptera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Trichoptera - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'82833b9a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'amber samples of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Bernstein - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'828210a8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Arachnida of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Arachnida - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'827fc19a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t827c66e4-f762-11e1-a439-00145eb45e9a\tCollection Plecoptera - SMF\t166\t163406\t105\t103905\t61\t59501"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'a Database System for Systematics and Taxonomy', u'hostingOrganizationTitle': u'SysTax', u'title': u'SysTax - Zoological Collections', u'owningOrganizationTitle': u'SysTax', u'hostingOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862', u'key': u'2ccb717e-6150-11e2-897a-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Soil Animals', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Soil Aninmals', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'829aa406-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'birds of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ornithologie - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'829026f2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Polychaeta of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Polychaeta - ZSRO', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8ccc66-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aves of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ornithologie - ZSRO', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8bae4e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Arachnida of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Arachnida - ZSRO', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8a8faa-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Vermes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Vermes - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8964ea-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Porifera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Porifera - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b882de6-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Cnidaria of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Cnidaria - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b83940c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Bryozoa of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Bryozoa - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b826f3c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t7a5e38c0-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Siegmar-Walter Breckle\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t7a5d2282-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Walter Wucherer\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Siphonaptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'86300b88-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Phthiraptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'862cab0a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Orthopteroidea collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'86292b1a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85cf474e-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Rainer Bussmann\t299\t66580\t145\t40172\t154\t26408"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Coleoptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'969d2d7a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Xiphosura of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Xiphosura SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9681f186-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Strepsiptera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Strepsiptera SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'967d2f7a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t9679759c-f762-11e1-a439-00145eb45e9a\tCollection Pentastomida SMF\t165\t6260\t108\t4026\t57\t2234"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Tardigrada of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Tardigrada SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9678447e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Pantopoda of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Pantopoda SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96771fb8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Tunicata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Tunicata SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9674e612-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Thysanoptera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Thysanoptera SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96703220-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Ostracoda of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ostracoda SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966ef9aa-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Bryozoa of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Bryozoa SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966c9070-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Paleobotany', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Pal\\xe4obotanik SMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966b5af2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Coleoptera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Coleoptera SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9669ebc2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aves of the world, bird skins', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Aves (bird skins) SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96678e90-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aves of the world, bird skeletons', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Aves (bird skeletons) SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96653d3e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Aves of the world, preserved in alcohol', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Aves (spirit preserved) SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'965f73a4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Cnidaria of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Cnidaria SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966092f2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Polychaetes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Polychaeta SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'965e401a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'One of the most important Aranea and Opiliones collection of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Arachnology SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96596036-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Porifera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Porifera SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'965a9618-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fishes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Pisces SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96582dc4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Plant specimens gathered in the Toroslar mountain range of southern Turkey and the Pontic mountain range in north eastern torkey in 1999. The collection mainly covers grass vegetation plots of the subalpine level. It was collected together with many more observation records for vegetational studies applying phytosociological analysis. The resulting thesis was released in the public domain and is available at <a href=\"http://www.archive.org/details/VegetationskundlicheUntersuchungenInDerHochgebirgsregionDerBolkar\">http://www.archive.org/details/VegetationskundlicheUntersuchungenInDerHochgebirgsregionDerBolkar</a>. Specimens have been deposited at the Berlin Botanical Garden Herbarium (B) with duplicates send to the Istanbul herbarium and the private collection of Gerald Parolly who supervised this work.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'PonTaurus collection', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'8575f23e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t828467f4-f762-11e1-a439-00145eb45e9a\tCollection Collembola - SMNG\t193\t933281\t116\t599444\t77\t333837"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Copepods of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Copepoda - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'828b6946-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t3ff06696-819a-11e2-bad2-00145eb45e9a\tCollection Crustacea - ZSRO\t137\t137\t88\t88\t49\t49"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Crustacea of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8295f33e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Crustacea', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Crustacea ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'43e4b44e-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Crustacea, mainly Amphipoda and Isopoda', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b84c0a2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Decapoda and Isopoda, mainly from the Philippines and Indonesia', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea ZMG', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7a63ca74-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Decapoda and Isopoda, mainly North Sea, Mediterranean, Japan. -- Largest collection of japanese crabs outside of Japan. -- One of the largest freshwatercrab-collection of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9668b676-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t434383f8-3a0c-11e2-b0ce-00145eb45e9a\tCtenophora ZMK\t139\t139\t87\t87\t52\t52"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Ctenophora of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ctenophora SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'967be548-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Culture Collection of Cryophilic Algae (CCCryo) is hosted at the Fraunhofer Institute for Biomedical Engineering IBMT in Potsdam-Golm near Berlin. The CCCryo is specialised on cryophilic freshwater and permafrost microalgae from polar and alpine environments, the so-called snow algae. First strains were collected on an expedition to Spitsbergen in 1999 and since then research on the phylogeny, ecology, and adaptations of this group of extremophiles is being performed at the IBMT.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Culture Collection of Cryophilic Algae', u'owningOrganizationTitle': u'Fraunhofer-Institute for Biomedical Engineering IBMT - Group Extremophile Research and Biobank CCCryo', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'2e69f69c-703f-11e2-ad8f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c809a470-090e-498b-abc9-cfd65e90b698'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Anymals+plants - Citizen Science Data', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'e6c97f6e-e952-11e2-961f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Vascular plant observations from inventories and relev\\xe9s.', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'West African Vegetation Database', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'82a8ae70-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nBotanic Garden and Botanical Museum Berlin-Dahlem\t857846ba-f762-11e1-a439-00145eb45e9a\tDesmidiaceae Rostock\t156\t936\t97\t582\t59\t354"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'This database contains all published records of robberflies in Germany.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Atlas der Raubfliegen Deutschlands - database', u'owningOrganizationTitle': u'Asilweb - Atlas der Raubfliegen Deutschlands', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'd5312bc2-819b-11e2-bad2-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'399f50f1-05cd-4f8f-aa42-4b27f9d8a047'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\tdbc2d368-b09f-11e2-a01d-00145eb45e9a\tCollection Diptera - SMF\t186\t64363\t115\t41020\t71\t23343"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Diptera collection contains some 300,000 specimens of more than 6000 species. The majority of specimens are pinned, but also includes of large alcohol collection of Tipulidae s.lat. In addition to 327 primary types (excluding the Phoridae), 32 are represented by syntypes and 295 species represented by secondary types. The holdings include the following important specialist collections: Phoridae (H. Schmitz, E. Beyer, E. Baumann), Tipuloidea (B. Mannheims, H. Mendl), Blephariceridae (B. Mannheims, S. Kitakami), and Sciaridae [F. Lengersdorf - on long term loan to F. Menzel (Deutsches Entomologisches Institut, M\\xc3\\xbcncheberg)]. The collections are focused primarily on the western Palaearctic Region, but important parts of the collections originate also from the Oriental and Afrotropical Regions. The collection of the Cologne Zoo is also housed here (permanent loan).', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Diptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'862dcbc0-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The DSMZ plant virus collection is internationally oriented and serves the scientific community involved in virus research, furthermore public and private organisations working in the areas of production of virus-free plants, screening for virus resistance, and diagnosis of plant viruses in general. In order to pursue its tasks, the division undertakes continuous research efforts in virus identification and characterisation, in the development of serological reagents for plant virus diagnosis, and in the molecular taxonomy and diagnosis of plant viruses.', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'DSMZ Collection of Plant Viruses', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'86403148-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The catalogue contains all strains (of the Bacteria and Archaea collection)', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'DSMZ Prokarya Collection Catalogue', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'863efcc4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The main functions of the DSMZ plant cell culture collection are to collect and deliver plant cell cultures with relevance to biotechnology, fundamental and applied research. Research activities are focused on the development of methods for cryopreservation and characterisation of cell cultures for the monitoring of genetic and epigenetic stability.', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'DSMZ Collection on Plant Cell Cultures', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'859d978a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Photographic records of tropical African plants', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'West-, Central- and East African Plants Databases', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'82bc920a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t44ed3d7a-3a0c-11e2-b0ce-00145eb45e9a\tEchinodermata ZMK\t136\t675\t85\t424\t51\t251"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Echinodermata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Echinodermata - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b85cff6-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Echinodermata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Echinodermata SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'967aaef8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Echiurida of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Echiura - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7d4ff6ae-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Edaphobase is a GBIF-D project collecting information from literature and museum collections about distribution and ecology of soil animals (earthworms, small earthworms, threadworms, springtails, moss/ beetle mites, gamasina mites, centipedes, and millipedes)', u'hostingOrganizationTitle': u'Senckenberg Museum f\\xfcr Naturkunde G\\xf6rlitz', u'title': u'Edaphobase', u'owningOrganizationTitle': u'Senckenberg Museum f\\xfcr Naturkunde G\\xf6rlitz', u'hostingOrganizationKey': u'98dbab03-09e5-4ceb-988e-04f3e803decb', u'key': u'82a421d4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'98dbab03-09e5-4ceb-988e-04f3e803decb'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'ECatSym: Electronic World Catalog of Symphyta', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'bd63a93c-8283-11e2-b873-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'A record of reference material of the Desmidiaceae of Germany was compiled. Data of dried and otherwise preserved specimens stored in the German herbaria as well as of the living strains, cultured in culture collections is provided. Many of the references are completed by figures of the labels or by scanned micrographs from preparations for the light- or scanning microscopes.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Desmidiaceae Engels', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'856bc8c2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\tdbd1a21c-b09f-11e2-a01d-00145eb45e9a\tCollection Ephemeroptera - SMF\t170\t17888\t106\t11407\t64\t6481"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Chrysomelidae of Central Europe', u'owningOrganizationTitle': u'Ernst-Moritz-Arndt-Universitaet', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'82b7d2ec-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'7ac19c7e-3e49-4672-ac94-76126d676f40'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Friedrich-Alexander University of Erlangen-N\\xfcrnberg', u'title': u'Palaeobiology collection, FAU Erlangen', u'owningOrganizationTitle': u'Friedrich-Alexander University of Erlangen-N\\xfcrnberg', u'hostingOrganizationKey': u'833f0d81-717d-4f11-95b0-0f738545adad', u'key': u'11a9393f-2fe9-4404-ad1d-3f2f6c1a6376', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'833f0d81-717d-4f11-95b0-0f738545adad'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t8635ed00-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Eberhard Fischer\t202\t31589\t113\t19275\t89\t12314"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nBotanic Garden and Botanical Museum Berlin-Dahlem\t856f13d8-f762-11e1-a439-00145eb45e9a\tFlora exsiccata Bavarica\t1244\t357217\t287\t211518\t957\t145699"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d9bfe4-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Florian Werner\t170\t2088\t102\t1258\t68\t830"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Foraminifera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Foraminifera SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9676072c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Arachnologie fossil of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Arachnologie fossil - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8285900c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t9680c748-f762-11e1-a439-00145eb45e9a\tCollection Tentakulita fossil SMF\t156\t3744\t95\t2284\t61\t1460"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t967f9d46-f762-11e1-a439-00145eb45e9a\tCollection Aves fossil SMF\t143\t405\t89\t255\t54\t150"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossil Reptilia of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Reptilia fossil SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'967e6160-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t9673bdaa-f762-11e1-a439-00145eb45e9a\tCollection Agnatha fossil SMF\t148\t121600\t90\t76222\t58\t45378"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossil Brachiopoda of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Brachiopoda fossil SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'96729998-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossil Cnidarians of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Cnidaria fossil SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966dbf18-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossil Echinoderms of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Echinodermata fossil SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'965cfbe2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'This database covers some (but not all) of the collection used for teaching and independent studying of students at the division of paleontology in the Freie Universitaet Berlin. It is constantly extended and updated by by a student assistent.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Palaeontologische Sammlung der Freien Universitaet Berlin', u'owningOrganizationTitle': u'Freie Universit\\xe4t Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'e210c320-819b-11e2-bad2-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'be1a8b33-d07a-4190-a219-2daf4985ecfc'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t863dd268-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Costa Rica; Annette Wolter\t173\t673\t101\t399\t72\t274"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85e437d0-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Daniel Piechowski\t188\t1579\t103\t897\t85\t682"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d61e48-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Ulf Soltau\t213\t22234\t117\t12827\t96\t9407"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d1878e-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Florian Werner\t196\t7300\t107\t4180\t89\t3120"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Filamentous fungi: 429 genera, 1161 species with 2244 strains, Yeasts: 57 genera, 146 species with 412 strains', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'DSMZ Collection of Filamentous Fungi and Yeasts', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'82757db6-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'a Database System for Systematics and Taxonomy', u'hostingOrganizationTitle': u'SysTax', u'title': u'SysTax - Botanical Gardens', u'owningOrganizationTitle': u'SysTax', u'hostingOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862', u'key': u'dfcb0ee8-614f-11e2-897a-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Accession database of the Berlin Botanic Garden.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'BoGART', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85697f04-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The data provided have been collected under the scope of the European Distributed Institute of Taxonomy (EDIT), a network of more than 20 European, North American and Russian taxonomic institutions with support from the European Commission (Project no. 018340). As part of EDIT\\'s activities to strengthen the input of taxonomy for biodiversity conservation, the Museum fuer Naturkunde Berlin (MfN) and the State Museum of Natural History Stuttgart (SMNS), Germany, coordinates and supports the participation of taxonomic experts in \"All Taxa and Biodiversity Inventory and Monitoring\" (ATBI+M) projects at designated areas of conservation value. ATBI+M efforts are large-scale, longer-term field surveys to record, identify, and document the entire biodiversity of specific (conservation) areas, which will form the basis for subsequent monitoring biodiversity changes over time. All data presented here originate either directly from field surveys undertaken by many individual EDIT researchers and participants at designated ATBI+M sites or from published literature and other records referring to the same areas.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'EDIT - ATBI in Gemer area (Slovakia)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'95d7ab9a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Database compiled in the course of the GEO Biodiversity Day on June 10/11 2005 containing observations made within a 24 hour period in the Tiergarten, Berlin. The aim is to register all existing species in this area.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'GEO Biodiversity Day', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85703434-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.snsb.info/DatabaseClients/BSPGcoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Paleontological Collections at the Bayerische Staatssammlung f\\xfcr Pal\\xe4ontologie und Geologie', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9fcff0-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'a Database System for Systematics and Taxonomy', u'hostingOrganizationTitle': u'SysTax', u'title': u'DORSA - German Orthoptera Collections', u'owningOrganizationTitle': u'SysTax', u'hostingOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862', u'key': u'8ea44a78-c6af-11e2-9b88-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The data provided have been collected under the scope of the European Distributed Institute of Taxonomy (EDIT), a network of more than 20 European, North American and Russian taxonomic institutions with support from the European Commission (Project no. 018340). As part of EDIT\\'s activities to strengthen the input of taxonomy for biodiversity conservation, the Museum fuer Naturkunde Berlin (MfN) and the State Museum of Natural History Stuttgart (SMNS), Germany, coordinates and supports the participation of taxonomic experts in \"All Taxa and Biodiversity Inventory and Monitoring\" (ATBI+M) projects at designated areas of conservation value. ATBI+M efforts are large-scale, longer-term field surveys to record, identify, and document the entire biodiversity of specific (conservation) areas, which will form the basis for subsequent monitoring biodiversity changes over time. All data presented here originate either directly from field surveys undertaken by many individual EDIT researchers and participants at designated ATBI+M sites or from published literature and other records referring to the same areas.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'EDIT - ATBI in Spreewald (Germany)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'7d4f1a7c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'This database is a demonstrating database containing a data sample from the more comprehensive GART/GloBIS database', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'ENBI-Dataset of GART-GloBIS', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'fa775828-b7e9-11e2-9aa5-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u\"The collection of fungi, mainly members of the Glomeromycota, consists of voucher specimens and records relating to some three decades of research into the taxonomy and systematics of arbuscular mycorrhizal fungi . Most of the specimens are held in the herbarium at the Royal Botanic Garden Edinburgh (E), though more recent ones may still be retained personally by Chris Walker pending their deposit in the herbarium. The vouchers mainly consist of spores mounted in polyvinyl-alcohol lactophenol (PVL) or polyvinyl-alcohol lacto glycerol (PVLG), with or without the addition of reagents (principally Melzer's reagent) and dyes (e.g., trypan blue, ink). The organisms have been collected by many different people too numerous to mention, and their contributionis acknowledged with thanks. Some are of importance because they are type specimens, and some are voucher records for published work. Some records of types are virtual, being merely pointers to the specimens held in other herbaria.\", u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Christopher Walker collection of Glomeromycotan fungi', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'892b4a50-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossils of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Paleontology - GPIT', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'f6a07b42-1d2c-11e2-8fd4-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t96830f08-f762-11e1-a439-00145eb45e9a\tCollection Graptolithina fossil SMF\t151\t121681\t96\t76979\t55\t44702"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Except for a small number of saprophytes, the collection consists of phytopathogenic bacteria - at present about 3000 strains. The strains belong to 166 different species, subspecies or pathovars of all currently known phytopathogenic bacterial genera.', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'GSPB Prokarya Catalogue', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'7a5bf4e8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.gbif-mycology.de/DatabaseClients/HALcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Erysiphales Collection at the University Halle-Wittenberg', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'858e7462-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7b7f1300-f762-11e1-a439-00145eb45e9a\tCollection Tunicata - ZIM Hamburg\t161\t831\t100\t525\t61\t306"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Polychaeta of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Polychaeta - ZIM Hamburg', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b7dea7a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Cnidaria of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Cnidaria - ZIM Hamburg', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b7a91a4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Crustacea, mainly Isopoda and Decapoda', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea - ZIM Hamburg', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b7bb606-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Bryozoa of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Bryozoa - ZIM Hamburg', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b796aa4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The database lists 448 specimens belonging to 16 species of genus Harpactus Shuckard, 1837 having their depository at the entomological collections of the Nationaal Natuurhistorisch Museum in Leiden (The Netherlands) and the Museo Nacional de Ciencias Naturales in Madrid (Spain). Harpactus, predominantly Holarctic genus with 73 recently valid species displays both great diversity and abundance in arid regions and includes many \\u201cproblem\\u201c species which are ill defined as a separate species and/or have never been recognized after appearing of their first descriptions. Those circumstances bring the attention the researchers to put whole members of the genus under revision. Such as revision, formally started in 2005 with the exploration over the Harpactus materials in the Zoologisches Museum an der Humboldt-Universitat in Berlin (Germany) already results in some particular outputs one of which is the present database. Included species in the data base are these which are morphologically recognized as a valid species without any doubt.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Harpactus Shuckard', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'892a1d74-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85e1e64c-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Frank Haubrich\t171\t684\t98\t392\t73\t292"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d4fb26-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Ben Hell\t196\t12778\t108\t7262\t88\t5516"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t86372972-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Costa Rica; Helmut Dalitz\t222\t39363\t117\t23329\t105\t16034"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85e0d400-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Helmut Dalitz\t181\t3416\t98\t2020\t83\t1396"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85dc2086-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Helmut Dalitz\t195\t6634\t104\t3773\t91\t2861"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Hemichordata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Hemichordata - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7d27e70e-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Hemiptera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Hemiptera - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'827d886c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The herbarium of the Botanic Garden and Botanical Museum Berlin-Dahlem (B) contains as one of its historical collections the moss herbarium of Bridel. Fortunately, this collection was separated from the main herbarium during the Second World War, and therefore escaped the destruction of the Berlin Botanic Museum in 1943. The Bridel herbarium comprises 1006 folders with more than 3000 moss specimens including many types collected by Bridel, Bruch, Funck, Hornschuch, Humboldt, Pylaie, Schwaegrichen and other bryologists of the early 19th century.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Bridel Herbar', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'856aa56e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'a Database System for Systematics and Taxonomy', u'hostingOrganizationTitle': u'SysTax', u'title': u'SysTax - Herbaria', u'owningOrganizationTitle': u'SysTax', u'hostingOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862', u'key': u'f4419c70-614f-11e2-897a-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'021121c0-f040-11d8-b22f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Bryophyte database contains more than 35000 records of the Bryophyte Herbarium at G\\xf6ttingen (GOET). Mainly neotropical specimens are presented. Photographs or plates of species located at G\\xf6ttingen (GOET) are presented if available.', u'hostingOrganizationTitle': u'Georg-August-Universit\\xe4t G\\xf6ttingen, Albrecht-von-Haller-Institut f\\xfcr Pflanzenwissenschaften, Abteilung Systematische Botanik', u'title': u'Bryophyte herbarium, G\\xf6ttingen (GOET)', u'owningOrganizationTitle': u'Georg-August-Universit\\xe4t G\\xf6ttingen, Albrecht-von-Haller-Institut f\\xfcr Pflanzenwissenschaften, Abteilung Systematische Botanik', u'hostingOrganizationKey': u'59c81290-df0e-11d8-b22e-b8a03c50a862', u'key': u'cce04086-6c7c-11e2-90ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'59c81290-df0e-11d8-b22e-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The type database of the Herbarium G\\xf6ttingen (GOET) includes type specimens of vascular plants, bryophytes, and lichens (about 11.600 specimens) located in Herbarium G\\xf6ttingen (GOET). Interactive photographs including plant details and labels are available.', u'hostingOrganizationTitle': u'Georg-August-Universit\\xe4t G\\xf6ttingen, Albrecht-von-Haller-Institut f\\xfcr Pflanzenwissenschaften, Abteilung Systematische Botanik', u'title': u'Type herbarium, G\\xf6ttingen (GOET)', u'owningOrganizationTitle': u'Georg-August-Universit\\xe4t G\\xf6ttingen, Albrecht-von-Haller-Institut f\\xfcr Pflanzenwissenschaften, Abteilung Systematische Botanik', u'hostingOrganizationKey': u'59c81290-df0e-11d8-b22e-b8a03c50a862', u'key': u'c40738de-6c7c-11e2-90ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'59c81290-df0e-11d8-b22e-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nGeorg-August-Universit\u00e4t G\u00f6ttingen, Albrecht-von-Haller-Institut f\u00fcr Pflanzenwissenschaften, Abteilung Systematische Botanik\tc18ebb72-6c7c-11e2-90ce-00145eb45e9a\tForster herbarium, G\u00f6ttingen (GOET)\t294\t53014\t139\t31693\t155\t21321"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Herbarium Senckenbergianum (FR) - Fungi', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Herbarium Senckenbergianum (FR) - Fungi', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'828a3d8c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t863ba0d8-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Herbarium specimen from \"BIEL\", Germany\t229\t23109\t120\t13703\t109\t9406"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t863a8ee6-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Herbarium specimen from \"USJ\", Costa Rica\t208\t86321\t123\t51567\t85\t34754"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85cdfbfa-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Herbarium specimen from the Estacion Scientifica San Francisco, Southern Ecuador\t297\t438679\t148\t254449\t149\t184230"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Herbarium Hamburgense', u'title': u'HBGSpermatophyta - Herbarium Hamburgense', u'owningOrganizationTitle': u'Herbarium Hamburgense', u'hostingOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862', u'key': u'85c79c92-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Herbarium Hamburgense', u'title': u'HBGBryophyta - Herbarium Hamburgense', u'owningOrganizationTitle': u'Herbarium Hamburgense', u'hostingOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862', u'key': u'85c667c8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Herbarium Senckenbergianum', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Herbarium Senckenbergianum (FR)', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'966426ce-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The \"Herbarium Lusaticum\" represents the flora of Upper Lusatia with 47,000 specimens of vascular plants collected over a period of 200 years. About 45,000 specimens of the \"Herbarium Lusaticum\" are digitised in the collection database.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Herbarium Senckenbergianum G\\xf6rlitz (GLM)', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'857cea12-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The herbarium of the Botanic Garden and Botanical Museum Berlin-Dahlem (herbarium acronym: B) is the largest in Germany and holds a collection of more than 3.5 million preserved specimens. All plant groups \\u2013 flowering plants, ferns, mosses, liverworts, and algae, as well as fungi and lichens \\u2013 are represented in the collections which are worldwide in scope. Associated with the general herbarium are special collections of dried fruits and seeds, wood samples, and specimens preserved in alcohol. The collections of the herbarium are growing constantly through field research conducted by staff, and through gifts, acquisitions, and exchanges of specimens from other herbaria', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Herbarium Berolinense', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85714c48-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The \\u201cHerbarium Willing\\u201d is a private Phanerogam collection of Eckhard Willing. The collection is focussed on Greece and central Europe and consists of more then 150.000 specimens which are successively inserted and barcoded at the BGBM (Herbarium B).', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Herbarium Willing', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85727f1e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Reptiles and Amphibians of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Herpetology SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9661bc40-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u\"The herpetological collection at the SMNS comprises about 20,000 specimens from all over the world. Some of the material is historically valuable. After Baron Carl Ferdinand von Ludwig (1784-1847) and Duke Paul Wilhelm von W\\xfcrttemberg (1797-1860) had added their specimens, the herpetological collection grew further through material collected by Baron F. von M\\xfcller (collected between 1836-1896) and August Kappler (collected between 1832-1872). More detailed information is published in the type catalogue, that can be obtained from the curator. Important parts of the collection are tortoise, crocodiles and neotropical amphibians.</br></br>\\n\\nThrough destruction of parts of the collection during the Second World War important information has been lost. It was necessary to reorganise and record the entire collection. In addition to collection-based research, studies on the ecology of South American frogs, toads and reptiles are conducted. Our knowledge of species composition and ecology of rainforests contrasts sharply with the speed that these habitats vanish from our planet. The analysis of such complex ecosystems can only be achieved step by step by looking at smaller systems within larger ones. In cooperation with the Natural History Museum at Lima (Museo de Historia Natural de la Universidad San Marcos), species composition and ecology of amphibians and reptiles in small pools within the Peruvian rainforest have been under investigation since 1977. These pools and streams are such 'smaller systems' that at least, on a temporary basis, offer ideal conditions to many species. A massive undertaking is to find out more about the food chains in these habitats. Most amphibians and reptiles are very sensitive to environmental change and are often at the centre of the food chain which makes them perfect indicators of an ecosystem. The identification of frogs and toads is often done by recording their call and subsequent analysis of the tapes which result in sonograms. On the other hand, to identify snakes, lizards and crocodiles it is often necessary to count rows of scales and for some species you have to look at their teeth with magnifying glass. This is of course difficult with wriggly, living and often poisonous animals and it is often easier to identify those as part of a scientific collection. Some of the specimens preserved in alcohol are over 200 years old and are used for taxonomic research as well as being available for the international research community. The entire collection is inventoried on a computer database.\", u'hostingOrganizationTitle': u'VertNet', u'title': u'SMNS Herpetologie', u'owningOrganizationTitle': u'Staatliches Museum f\\xfcr Naturkunde Stuttgart', u'hostingOrganizationKey': u'2053a639-84c3-4be5-b8bc-96b6d88a976c', u'key': u'9cd0014c-b7b1-4ed1-bef7-0225acfa4ef2', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'99ea0c90-61e5-11dc-a64c-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Herpetologie of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Herpetologie - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8286cf26-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Heteroptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'862ef23e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Anatomy', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Anatomie Histologie - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'829bd402-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t86397e70-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Botanical garden, University of Hohenheim, Germany\t277\t135639\t113\t80384\t164\t55255"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Homoptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'862b870c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t828dc178-f762-11e1-a439-00145eb45e9a\tCollection Hunsr\u00fcckschiefer - SMF\t165\t112004\t104\t70185\t61\t41819"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Hydrozoa of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Hydrozoa - ZMB', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8708c6-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7f537a16-f762-11e1-a439-00145eb45e9a\tCollection Hymenoptera SMF\t181\t179323\t122\t115233\t59\t64090"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'title': u'ZFMK Hymenoptera collection', u'owningOrganizationTitle': u'Zoologisches Forschungsinstitut und Museum Alexander Koenig', u'hostingOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862', u'key': u'862a5300-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'6e1cad80-bdf5-11d8-84ea-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fishes of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ichthyologie - ZSRO', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'3fc1b936-819a-11e2-bad2-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Pisces of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Ichthyologie - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'829277c2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Pisces', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Ichthyologie ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'4228b5a6-3a0c-11e2-b0ce-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Herbarium Hamburgense', u'title': u'Impetus - Herbarium Hamburgense', u'owningOrganizationTitle': u'Herbarium Hamburgense', u'hostingOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862', u'key': u'85c8e444-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'f739aef0-8a5b-11d9-bc8d-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Global Butterfly Information System (GloBIS)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'65339e28-add7-11e2-8fbc-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'fossil insects of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Insecta fossil - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8280ea98-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Insecta', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Insecta ZMK', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7a64f444-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Insekten Sachsen (Insects of Saxony, Germany)', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Insekten Sachsen', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'77ecd330-b09e-11e2-a01d-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d88d4a-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Vindas Jorge, Costa Rica\t180\t2844\t103\t1687\t77\t1157"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85daead6-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Juergen Homeier\t215\t13682\t117\t8167\t98\t5515"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85cb5094-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Costa Rica; Juergen Homeier\t243\t44956\t125\t26661\t118\t18295"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85cca098-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Juergen Homeier\t255\t72915\t128\t41729\t127\t31186"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u\"Verbreitung der Farn- und Bluetenpflanzen in Deutschland, Vorkommensnachweise aggregiert auf Rasterfelder der Topographischen Karte im Massstab 1 : 25000 (TK25 = MTB), Blattschnitt 6 x 10 Minuten, sowie in Zeitperioden 'vor 1950', '1950 - 1980', '1980 - 2000'\", u'hostingOrganizationTitle': u'Bundesamt f\\xfcr Naturschutz / Netzwerk Phytodiversit\\xe4t Deutschland', u'title': u'FlorKart - FlorenKartierung Gefaesspflanzen', u'owningOrganizationTitle': u'Bundesamt f\\xfcr Naturschutz / Netzwerk Phytodiversit\\xe4t Deutschland', u'hostingOrganizationKey': u'43cab2b0-0653-11d9-acb2-b8a03c50a862', u'key': u'36c6ba38-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'43cab2b0-0653-11d9-acb2-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t7a5f59c6-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from the Kakamega Forest, Kenya; Robert Gliniars\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t863844d8-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Herbarium specimen from \"EA\", Kenya\t248\t204719\t136\t124309\t112\t80410"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85e549a4-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from the Kakamega Forest, Kenya; Frederike Proewe\t163\t489\t98\t294\t65\t195"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d3cfda-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from the Kakamega Forest, Kenya; Baerbel Bleher\t185\t4627\t106\t2808\t79\t1819"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d06214-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from the Kakamega Forest, Kenya; Dana Uster\t194\t17273\t108\t10420\t86\t6853"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85ca1a94-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from the Kakamega Forest, Kenya; Helmut Dalitz\t200\t7196\t108\t4372\t92\t2824"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The data provided have been collected under the scope of the European Distributed Institute of Taxonomy (EDIT), a network of more than 20 European, North American and Russian taxonomic institutions with support from the European Commission (Project no. 018340). As part of EDIT\\'s activities to strengthen the input of taxonomy for biodiversity conservation, the Museum fuer Naturkunde Berlin (MfN) and the State Museum of Natural History Stuttgart (SMNS), Germany, coordinates and supports the participation of taxonomic experts in \"All Taxa and Biodiversity Inventory and Monitoring\" (ATBI+M) projects at designated areas of conservation value. ATBI+M efforts are large-scale, longer-term field surveys to record, identify, and document the entire biodiversity of specific (conservation) areas, which will form the basis for subsequent monitoring biodiversity changes over time. All data presented here originate either directly from field surveys undertaken by many individual EDIT researchers and participants at designated ATBI+M sites or from published literature and other records referring to the same areas.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'EDIT - ATBI in Borjomi/Kharagauli (Georgia)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'95d8d7c2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t7a607af4-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Ute Knoerr\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85de82d6-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Thorsten Kroemer\t166\t10956\t98\t6468\t68\t4488"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85df9d6a-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Barbara Kueppers\t169\t504\t100\t300\t69\t204"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Leiner Herbarium was founded by the pharmacist Ludwig Leiner (1830 - 1901) in Constance. It contains about 16.000 specimens of flowering plants and ferns, most of them from southern Germany.', u'hostingOrganizationTitle': u'Bodensee-Naturmuseum Konstanz', u'title': u'Leiner-Herbar Konstanz', u'owningOrganizationTitle': u'Bodensee-Naturmuseum Konstanz', u'hostingOrganizationKey': u'bfb257e0-b415-11da-967e-b8a03c50a862', u'key': u'81332e30-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'bfb257e0-b415-11da-967e-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Geologisch-Pal\\xe4ontologische Sammlung Universit\\xe4t Leipzig', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'dc70aa06-ada2-11e2-8fbc-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t82bffa94-f762-11e1-a439-00145eb45e9a\tCollection Lepidoptera SMF\t174\t39579\t112\t24954\t62\t14625"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7d8a6ba4-1387-11e2-bb2e-00145eb45e9a\tLepidoptera - SNSD\t144\t576\t95\t380\t49\t196"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t7a618ade-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Costa Rica; Tonia Lerche & Sven Kretschmer\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Herbarium Senckenbergianum (GLM) - Lichenes', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Herbarium Senckenbergianum (GLM) - Lichenes', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'828eee7c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'This database contains label information for about 102,000 specimens (anno 2013) of lichens preserved in the herbarium of the Botanic Garden & Botanical Museum Berlin-Dahlem, Freie Universit\\xe4t Berlin, Germany, acronym B. It represents about one third of the lichen holdings and contains mainly recent acquisitions, in particular such resulting from own fieldwork. Added are about 13.000 specimens of fungi. It is designed to allow search for specimens for DNA research and to trace specimens renamed after publication.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Lichen Herbarium Berlin', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85739778-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d73d50-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Costa Rica, illustrations by Teresa Barantes Lobo\t204\t6434\t114\t3801\t90\t2633"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t863cbacc-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Herbarium specimens from \"LOJA\" Ecuador\t185\t1906\t109\t1098\t76\t808"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Loricifera of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Loricifera - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7e6618c0-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Molluscs of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Malakologie - SNSD', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8291593c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Molluscs of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Malakologie - SMNG', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'82891ac4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t4483cba6-3a0c-11e2-b0ce-00145eb45e9a\tMalakologie ZMK\t146\t1388\t90\t871\t56\t517"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t96843e1e-f762-11e1-a439-00145eb45e9a\tCollection Quaternary Small Mammals IQW\t150\t150\t92\t92\t58\t58"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Mammals of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Mammalia fossil Kleins\\xe4uger - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7eae7e08-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t96855ace-f762-11e1-a439-00145eb45e9a\tCollection Mammalia fossil SMF\t145\t145\t89\t89\t56\t56"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Mammals of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Mammalia SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'9666593a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t82c64584-f762-11e1-a439-00145eb45e9a\tCollection Mammalogie - SNSD\t199\t34861\t111\t21392\t88\t13469"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t440be348-3a0c-11e2-b0ce-00145eb45e9a\tMammalogie ZMK\t245\t14916\t144\t9303\t101\t5613"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\tf440262c-1d2c-11e2-8fd4-00145eb45e9a\tCollection Mammalogie - ZSRO\t403\t23545\t200\t14614\t203\t8931"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85d2ae8e-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Manfred Kueppers\t187\t5044\t103\t2982\t84\t2062"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'SMNK Mantid Collection', u'owningOrganizationTitle': u'Staatliches Museum f\\xfcr Naturkunde Karlsruhe', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'7c7422be-01a3-11e2-ad0f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'b3fbef09-563b-4ee2-96c1-4a449def8992'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Mantodea of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Mantodea - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'827eaa30-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.gbif-mycology.de/DatabaseClients/MBcoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Fungal and Lichen Collections at the Herbarium Marburgense', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7ba5ac18-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Biologische Anstalt Helgoland in the Foundation Alfred-Wegener Institute for Polar and Marine Research', u'title': u'AWI-Herbarium Marine Macroalgae', u'owningOrganizationTitle': u'Biologische Anstalt Helgoland in the Foundation Alfred-Wegener Institute for Polar and Marine Research', u'hostingOrganizationKey': u'497688a0-59d6-11db-893e-b8a03c50a862', u'key': u'85ad6c96-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'497688a0-59d6-11db-893e-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85dd63ba-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Plants from Southern Ecuador; Steffen Matezki\t186\t10338\t102\t5907\t84\t4431"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Based on the floristic survey of Eastern Germany (Benkert et al. 1996) a distribution database of higher plants in Mecklenburg-Vorpommern has been managed in the Botanical Institute of Botany and Landscape Ecology at the University of Greifswald. On the occasion of the New critical Flora of Mecklenburg-Vorpommern (Henker & Berg 2005) a comprehensive edit has been done. User input is possible at the website http://www.flora-mv.de.', u'hostingOrganizationTitle': u'Ernst-Moritz-Arndt-Universitaet', u'title': u'Floristic Databases of Mecklenburg-Pomerania - Higher Plants', u'owningOrganizationTitle': u'Ernst-Moritz-Arndt-Universitaet', u'hostingOrganizationKey': u'7ac19c7e-3e49-4672-ac94-76126d676f40', u'key': u'dee8edc4-b19a-11e2-886d-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'7ac19c7e-3e49-4672-ac94-76126d676f40'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The data provided have been collected under the scope of the European Distributed Institute of Taxonomy (EDIT), a network of more than 20 European, North American and Russian taxonomic institutions with support from the European Commission (Project no. 018340). As part of EDIT\\'s activities to strengthen the input of taxonomy for biodiversity conservation, the Museum fuer Naturkunde Berlin (MfN) and the State Museum of Natural History Stuttgart (SMNS), Germany, coordinates and supports the participation of taxonomic experts in \"All Taxa and Biodiversity Inventory and Monitoring\" (ATBI+M) projects at designated areas of conservation value. ATBI+M efforts are large-scale, longer-term field surveys to record, identify, and document the entire biodiversity of specific (conservation) areas, which will form the basis for subsequent monitoring biodiversity changes over time. All data presented here originate either directly from field surveys undertaken by many individual EDIT researchers and participants at designated ATBI+M sites or from published literature and other records referring to the same areas.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'EDIT - ATBI in Mercantour/Alpi Marittime (France/Italy)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'95d672e8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7cc36c84-1387-11e2-bb2e-00145eb45e9a\tMesozoa - SMF\t135\t135\t85\t85\t50\t50"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t9671680c-f762-11e1-a439-00145eb45e9a\tCollection Messelpal\u00e4obotanik SMB\t197\t127778\t109\t76925\t88\t50853"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/arnoldia/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Exsiccatal Series \"Triebel, Microfungi exsiccati\"', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7ba35058-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t9662f7f4-f762-11e1-a439-00145eb45e9a\tCollection Mikropal\u00e4obotanik SMB\t216\t10370\t107\t6208\t109\t4162"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'A new record of reference material of the Desmidiaceae of Germany was compiled, using the databank \\u201cSpecify\\u201d. Aim of the project was to summarize and digitalize the data of the dried and otherwise preserved specimens stored in the German herbaria as well as of the living strains, cultured in culture collections. Many of the references are completed by figures of the labels or by scanned micrographs from preparations for the light- or scanning microscopes.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Desmidiaceae Mollenhauer', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'856cdf96-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Molluscs of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Mollusca SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'965bbbd8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversitymobile.net/wiki/IBForthopteracoll_About', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'IBF Monitoring of Orthoptera', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'6454fdd4-b62f-11e2-afcb-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversitymobile.net/wiki/IBFgallscoll_About', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'IBF Monitoring of Plant Galls', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'63035610-b62f-11e2-afcb-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversitymobile.net/wiki/IBFfungicoll_About', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'IBF Monitoring of Fungi', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7ba0e7fa-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversitymobile.net/wiki/IBFlichenscoll_About', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'IBF Monitoring of Lichens', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9d7214-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversitymobile.net/wiki/IBFplantscoll_About', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'IBF Monitoring of Vascular Plants', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9b21da-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Movies of living freshwater micro algae, produced for the AlgaTerra Information System for Micro Algal Biodiversity', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'AlgaTerraMovies', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'856734ce-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Zoologische Staatssammlung Muenchen - International Barcode of Life (iBOL) - Barcode of Life Project Specimen Data', u'owningOrganizationTitle': u'Zoologische Staatssammlung M\\xfcnchen/Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'f29ab192-5964-40ae-a397-fa48ffdf0661', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0e2ae538-4332-4f41-bfee-8aa2c693d2a9'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.snsb.info/DatabaseClients/ZSMavstudiescoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Environmental Sample Collection of the Arthropoda Varia Section at the Zoologische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'0bbc5ba0-d7f8-11e2-95e7-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.snsb.info/Disclaimer.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Diatom Collection of Franz Josef Weinzierl at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'5e6ae014-b62f-11e2-afcb-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMgrossebrcoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Fungal Collection of Helga Gro\\xdfe-Brauckmann at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'8278e7bc-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BIOTAlichencoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'BIOTA Southern Africa - The Collection of Lichens at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7ba47d0c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMlichenscoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Lichen Collection at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7ba21c92-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.snsb.info/DatabaseClients/SAPMmammaliacoll/about.jsp', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Mammalia Collection at the Staatssammlung f\\xfcr Anthropologie und Pal\\xe4oanatomie M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9e97de-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.snsb.info/DatabaseClients/MSBvplantscoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Vascular Plant Collection at the Herbarium MSB, Universit\\xe4t M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9c52da-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMvplantscoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Vascular Plant Collection at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b9a08ea-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMfungicoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Fungal Collection at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7b91859e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Hydrozoa of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Hydrozoa - ZSM M\\xfcnchen', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b8145ee-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Cnidaria of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Cnidaria - ZSM M\\xfcnchen', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b803320-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMschiefcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Water Colours of Fungi by Konrad Schieferdecker at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'859445c2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMwohlfcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Water Colours of Fungi by Fritz Wohlfarth at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'85930e96-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMeryscoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Erysiphales Collection at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'858d51e0-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMlichfungicoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Collection of Lichenicolous Fungi at the Botanische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'858c1c6c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.gbif-mycology.de/DatabaseClients/Blettaucoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Epiphytic Lichens of G. Lettau at the Botanical Museum Berlin-Dahlem', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'8589cc8c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.zsm.mwn.de/art/collection.htm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Myriapoda Collection at the Zoologische Staatssammlung M\\xfcnchen', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'82768f9e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t1c35c0a2-819a-11e2-bad2-00145eb45e9a\tCollection Myriapoda - SNSD\t147\t558\t93\t357\t54\t201"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Myriapoda of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Myriapoda - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7ef15372-1387-11e2-bb2e-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Myxobacteria Collection Hans Reichenbach together with the working group \"Natural Products\" in the GBF, German Research Center for Biotechnology, now HZI, Helmholtz Centre for Infection Research, in Braunschweig, built up a unique collection of myxobacteria (order Myxococcales) comprising about 7000 strains.', u'hostingOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'title': u'HZI (GBF) Reichenbach Collection of Myxobacteria', u'owningOrganizationTitle': u'Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures', u'hostingOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862', u'key': u'6d837ace-1934-492b-bbfa-b3ef4a01f007', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'463555b0-d081-11da-ae8f-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.gbif-mycology.de/DatabaseClients/LEmyxcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Myxomycetes Collection at the V. L. Komarov Botanical Institute, St. Petersburg', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'85f38230-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMmyxcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Myxomycetes Collections at the Botanische Staatssammlung M\\xfcnchen - Main Collection', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'8591ecaa-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMmyxcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Myxomycetes Collections at the Botanische Staatssammlung M\\xfcnchen - Collection of Martin Schnittler', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'8590c99c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Culture Collection of Microalgae and Zygnematophyceae Collection Hamburg (MZCH-SVCK) contains over 550 living strains. Focus of the collection are Zygnematophyceae, especially Desmidiaceae, with multiple isolates collected from different continents. The Zygnematophyceae collection, formerly SVCK (Engels & Mix 1980, Mix 1973) serves as reference strain collection for studies on evolution of streptophytes, ecophysiological adaptations in microalgae and the influence of climate change.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Culture Collection of Microalgae and Zygnematophyceae Collection Hamburg (MZCH-SVCK)', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'd44f84b0-e947-11e2-961f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t82ba2fce-f762-11e1-a439-00145eb45e9a\tMfN - Mallophaga Collection\t198\t1855993\t118\t1214611\t80\t641382"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t82b9101c-f762-11e1-a439-00145eb45e9a\tMfN - Auchenorrhyncha Collection\t204\t2352726\t123\t1542042\t81\t810684"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t82b6ab38-f762-11e1-a439-00145eb45e9a\tMfN - Heteroptera Collection\t241\t14157804\t144\t9133936\t97\t5023868"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t82b46a9e-f762-11e1-a439-00145eb45e9a\tMfN - Phasmid Collection\t136\t576829\t89\t350020\t47\t226809"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t82b34c9a-f762-11e1-a439-00145eb45e9a\tMfN - Isoptera Collection\t139\t61990\t90\t40508\t49\t21482"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\td8ea9662-ada2-11e2-8fbc-00145eb45e9a\tMfN - Fossil Fish Collection\t269\t1660822\t144\t1065229\t125\t595593"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\tcdaf4a2c-ada2-11e2-8fbc-00145eb45e9a\tMfN - Diptera Collection\t146\t245479\t90\t149062\t56\t96417"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Micropaleontology ( Ehrenberg Collection)', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Micropaleontology', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'391565fc-a3bd-11e2-95b8-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t86417f58-f762-11e1-a439-00145eb45e9a\tMfN Fish Collection, Zoology\t311\t220462\t170\t140913\t141\t79549"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Plants', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil plants II', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71fcba9e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t71fb998e-f762-11e1-a439-00145eb45e9a\tMfN - Fossil vertebrates II\t189\t584\t113\t366\t76\t218"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Glacial erratics (invertebrates and trace fossils)', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Glacial erratics', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71fa736a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fossil Anapsida and Diapsida (mostly Dinosaurs, Crocodiles and Birds)', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil vertebrates V', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f95d0e-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fossil wood, leaves and plant remains of the Paleophytic', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil plants (Paleophytic)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f84ac2-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fossil wood, leaves and plant remains of the Mesophytic', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil plants (Mesophytic)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f725b6-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fossil wood, leaves and plant remains of the Cenophytic', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil plants (Cenophytic)', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f5f308-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Fossil mammals (bones and teeth)', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil vertebrates IV', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f4c974-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t71f3aac6-f762-11e1-a439-00145eb45e9a\tMfN - Fossil vertebrates I\t193\t19014\t115\t12070\t78\t6944"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Arthropods (excluding trilobites), echinoderms, graptolites', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil invertebrates III', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f27d90-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Archaeocyaths, Corals, Trilobites, Cephalopods, Tentaculites, Devonian Collection', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil invertebrates IIb', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f159ce-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Main Collection Invertebrates', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil invertebrates Ib', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71ef190c-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Trace fossils', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Trace fossils', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71f03224-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Gastropods, bivalves, brachiopods, sponges', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil invertebrates Ia', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71eba376-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Corals, cephalopods and trilobites', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil invertebrates IIa', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71ecc5da-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Amphibians, Histology', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'MfN - Fossil vertebrates III', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'71edea50-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nInstitute of Botany, University of Hohenheim\t85e3194a-f762-11e1-a439-00145eb45e9a\tVisual Plants (144.41.33.158) - Private collection of Asta Napp-Zinn\t226\t8540\t117\t5019\t109\t3521"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.hki-jena.de/index.php', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Jena Microbial Resource Collection (JMRC) at Leibniz Institute for Natural Product Research and Infection Biology e.V. Hans-Kn\\xf6ll-Institute (HKI) and Friedrich Schiller University Jena', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'97bd086a-cf43-11e2-a9b3-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'This dataset represents botanical observation data from all over Germany, particularly Rhineland-Palatinate. Almost all plants were observed since 1990. The data has been integrated into the most recent mapping project concerning the \\u201cFlora of Germany\\u201d.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Naturhistorisches Museum Mainz, Feldbeobachtungsdaten Pflanzen', u'owningOrganizationTitle': u'Naturhistorisches Museum Mainz', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'6a122346-08b9-11e3-ab1f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'33aecde5-7e13-4272-9cb7-f4f3b0eb820c'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nMuseum f\u00fcr Naturkunde Berlin\t4c266400-b0a3-11e2-a01d-00145eb45e9a\tStaatliches Naturhistorisches Museum Braunschweig - Coleoptera Collection\t197\t931370\t119\t604358\t78\t327012"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nNaturhistorisches Museum Mainz\t82b5869a-f762-11e1-a439-00145eb45e9a\tNaturhistorisches Museum Mainz, Paleontological Collection\t230\t1266924\t127\t793129\t103\t473795"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The zoological collection of the Mainz Natural History Museum / State Collection of Natural History of Rhineland-Palatinate is the largest in Rhineland-Palatinate and holds approx. 750.000 preserved specimens. The most comprehensive inventory exists for the insects (entomological collections) including the butterflies (Lepidoptera) with the collections of Erich Bettag, Heinz Falkner, August Jung, J\\xfcrgen Lay, Otfried Legler, Helga Luckenbach, Manfred Persohn, Klaus Rose as well as Dieter and Paul Schulz. The true bugs (Heteroptera) are represented by the collections of Hannes G\\xfcnther and Viktor Zebe. The beetles (Coleoptera) were collected by Erich Bettag, Frank K\\xf6hler and Viktor Zebe (in this case exclusively weevils). Concerning flies (Diptera) the museum has the largest individual collection based on the hoverflies (Syrphidae) of Franz Malec. The Hymenoptera are documented based on collections of Klaus C\\xf6lln, Andrea Jakubzik and Franz Malec (Vespidae). Vertebrates - mainly mammals and birds - are represented by 10.000 preserved specimens. The collection includes mounted specimens, specimens skins, bones, eggs, and bird nests. The most relevant collection is the one of Carlo Freiherr von Erlanger which is conserved on behalf of the Ingelheimer Museum bei der Kaiserpfalz. The Invertebrate collection contains 40.000 specimens including collections in the frame of the regular survey of the river Rhine, the mollusc collection (material from Rhineland-Palatinate collected Peter Subai as well as Birgit, Waltrauf & Paul Schnell, freshwater mussels collected by J\\xfcrgen H. Jungbluth). Some marine molluscs were provided by Ragnar Kinzelbach, who also deposited his collection of scorpiones at the museum.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Naturhistorisches Museum Mainz, Zoological Collection', u'owningOrganizationTitle': u'Naturhistorisches Museum Mainz', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'7e2989f0-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'33aecde5-7e13-4272-9cb7-f4f3b0eb820c'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The herbarium MNHM contains about 27.000 specimens. Special collections of 5.000 each are the herbarium of Herbert Frankenh\\xe4user from Rwanda (c. 5000 specimens), the Herbarium of Albert Oesau from Rhineland-Palatinate(c. 5000 specimens), and the collection of mosses and liverworts from Ruprecht D\\xfcll (c. 10.000 specimens). Meinhard Grubert gathered Podostemaceae (preserved in alcohol) from waterfalls in Venezuela. A worldwide seed and fruit collection with 16.500 specimens came from Ulrich Hecker. In 2009 the remaining parts of the Herbarium of the University of Cologne (KOELN) were transfered to Mainz. This herbarium contains vouchers from the Rhineland which were collected at the beginning of the 20th century by Paul Thyssen, Ludwig Laven and August Schlickum. Another important historical collection is (the part of) the Herbarium Ludwig Geisenheyner which came to Mainz in 1990. This collection contains approx. 3.500 specimens of Pteridophyta, Poaceae and Caryophyllaceae.', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Naturhistorisches Museum Mainz, Botanical Collection', u'owningOrganizationTitle': u'Naturhistorisches Museum Mainz', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'7e285238-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'33aecde5-7e13-4272-9cb7-f4f3b0eb820c'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversityworkbench.de/DatabaseClients/SMNKfungicoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Fungus Collections at Staatliches Museum f\\xfcr Naturkunde Karlsruhe (Herbarium KR)', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'61a9ca38-b62f-11e2-afcb-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.diversityworkbench.de/DatabaseClients/SMNKspidercoll/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Spider Collection at the Staatliches Museum f\\xfcr Naturkunde Karlsruhe', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'8277b324-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Entomological specimens of Museum fuer Naturkunde und Vorgeschichte Dessau', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'd0884974-ada2-11e2-8fbc-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.gbif-mycology.de/DatabaseClients/GLMcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Fungal Collection at the Senckenberg Museum f\\xfcr Naturkunde G\\xf6rlitz', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'7a2660bc-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Staatliches Museum f\\xfcr Naturkunde Stuttgart, Herbarium', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'85771146-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Naturkundemuseum im Ottoneum Kassel', u'title': u'Naturkundemuseum im Ottoneum Kassel, Entomological Collection', u'owningOrganizationTitle': u'Naturkundemuseum im Ottoneum Kassel', u'hostingOrganizationKey': u'fe9d23a5-5514-4d6e-b05b-d115425cd159', u'key': u'816e9038-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'fe9d23a5-5514-4d6e-b05b-d115425cd159'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nSenckenberg\t7d1133ce-1387-11e2-bb2e-00145eb45e9a\tNemertini - SMF\t137\t6697\t87\t4331\t50\t2366"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nBundesamt f\u00fcr Naturschutz / Netzwerk Phytodiversit\u00e4t Deutschland\t8574c6a2-f762-11e1-a439-00145eb45e9a\tBundesamt fuer Naturschutz / Netzwerk Phytodiversitaet Deutschland\t0\t0\t0\t0\t0\t0"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://www.botanischestaatssammlung.de/DatabaseClients/BSMmyxcoll/About.cfm', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'The Myxomycetes Collections at the Botanische Staatssammlung M\\xfcnchen - Collection of Hermann Neubert', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'858fa2ec-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Crustacea NHCY', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Crustacea NHCY', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7a62b3b4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'BoBO - Botanic Garden Berlin BDI Observations', u'owningOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'88b04a08-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'http://bsm4.snsb.info/BSM-Mycology/Collections/Observations/Doppelbaur/About.html', u'hostingOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'title': u'Phytopathogenic Fungi Observed by Hans and Hanna Doppelbaur', u'owningOrganizationTitle': u'Staatliche Naturwissenschaftliche Sammlungen Bayerns', u'hostingOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862', u'key': u'858af49a-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'0674aea0-a7e1-11d8-9534-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Micropaleontologic study of deep-sea sediments cored over several decades by the DSDP, ODP and IODP drilling programs has yielded a vast body of information on the occurrences of individual fossil marine plankton species over time. This information also has been combined with other types of geochronologic information by interdisciplinary teams of scientists to construct detailed age estimates - age models - for hundreds of deep-sea drilling sections. Together, this information provides a uniquely detailed history of of biologic evolution in the oceans, as well as an important source of geochronologic information for geologic studies of ocean and climate change. The Neptune database provides integrated access to this global data-set. It contains over 500,000 records for the occurrences of species in individual, numerically age-dated samples, age models for hundreds of deep-sea sections, and extensive, annotated, quality-controlled taxonomic lists for thousands of fossil marine plankton species. Neptune, or analyses from it, have been used in over 30 research papers (median ISI 3.5), including 8 in Science, Nature or PNAS. Neptune was originally created by a team led by me in the early 1990s at the ETH in Z\\xfcrich, and re-cast in internet form, with the addition of more data, by the Chronos project of NSF in the early 2000s. In response to the lapse of Chronos and support for Neptune, I teamed up with Patrick Diver, the main Chronos database programmer, to create a new version of Neptune (Neptune Sandbox Berlin, or NSB) that is hosted at the Museum f\\xfcr Naturkunde. Extensive reprogramming has streamlined the system so that it is easier to maintain, and includes support for direct programmable access over the internet for advanced research purposes. This project was supported by CEES, Oslo. NSB currently does not have a web-interface but one is planned to be added by early 2013. NSB has already been used in published research within my own group, and to provide data on request to external scientists. Broader collaborations and renewed general public access via the web interface are planned for the future.', u'hostingOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'title': u'Neptune Deep-Sea Microfossil Occurrence Database', u'owningOrganizationTitle': u'Museum f\\xfcr Naturkunde Berlin', u'hostingOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862', u'key': u'e1e16cf0-ada2-11e2-8fbc-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'10980920-6dad-11da-ad13-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Odonata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Odonata - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'8287e6a4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'The Herbarium of Albert Oesau was donated to the Naturhistorisches Museum Mainz (MNHM) in 2000. It contains approx. 5000 vouchers, mainly collected in Rhineland-Palatinate (Germany), particularly Rheinhessen, but also specimens from California (USA).', u'hostingOrganizationTitle': u'Botanic Garden and Botanical Museum Berlin-Dahlem', u'title': u'Naturhistorisches Museum Mainz, Herbarium Oesau', u'owningOrganizationTitle': u'Naturhistorisches Museum Mainz', u'hostingOrganizationKey': u'57254bd0-8256-11d8-b7ed-b8a03c50a862', u'key': u'69f0f5c2-08b9-11e3-ab1f-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'33aecde5-7e13-4272-9cb7-f4f3b0eb820c'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Oligocheata of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Oligochaeta - ZIM Hamburg', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'7b7cd8c4-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'Onychophora of the world', u'hostingOrganizationTitle': u'Senckenberg', u'title': u'Collection Onychophora - SMF', u'owningOrganizationTitle': u'Senckenberg', u'hostingOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862', u'key': u'828ca1f8-f762-11e1-a439-00145eb45e9a', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'c76cf030-2a95-11da-9cc1-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\nProblem with dataset {u'publishingCountry': u'DE', u'description': u'__Tell more about Plazi.org describing the contents being served.__', u'hostingOrganizationTitle': u'Plazi.org taxonomic treatments database', u'title': u'Plazi.org taxonomic treatments database', u'owningOrganizationTitle': u'Plazi.org taxonomic treatments database', u'hostingOrganizationKey': u'7ce8aef0-9e92-11dc-8738-b8a03c50a862', u'key': u'5cc70440-9e93-11dc-8738-b8a03c50a862', u'type': u'OCCURRENCE', u'owningOrganizationKey': u'7ce8aef0-9e92-11dc-8738-b8a03c50a862'}"
},
{
"output_type": "stream",
"stream": "stdout",
"text": "\n"
}
],
"prompt_number": 13
},
{
"cell_type": "code",
"collapsed": false,
"input": "",
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment