{"rowid": 832, "dataset_title": "Passengers in History", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2016-06-28T00:52:30.371967", "dataset_modified": "2021-09-08T23:20:52.626089", "dataset_description": "_Passengers in History_ brings together two wonderful resources:\n

\nA passengers data base developed by the SA Maritime Museum,\nA list of ships\u2019 logs and diaries, titled Log of Logs.\n

\nThe passengers data base was produced by staff and volunteers at the South Australian Maritime Museum over 20 years. It includes entries for 328,000 passengers and 20,000 voyages to South Australia between 1836 and 1961.\n

\nThis data set is presented as a search index that can expose most open data formats.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ffa75eb8-475a-460b-91d1-714f269016d5", "start_date": "1836-01-01", "end_date": "1961-01-01", "file_title": "Passengers in History Search Index", "download_url": "https://data.history.sa.gov.au:8983/solr/passengers/select", "format": "API", "file_description": "#Passengers in History API Documentation#\nThe Passengers in History data endpoint has been provided using an Apache Solr index (see https://lucene.apache.org/solr/) that uses a Drupal Solr 4.x schema (see https://www.drupal.org/project/search_api_solr). See [https://wiki.apache.org/solr/QueryParametersIndex](https://wiki.apache.org/solr/QueryParametersIndex) for more detail surrounding the query syntax.\n
\nAn example of a basic implementation can be viewed at https://data.history.sa.gov.au/gallery_pih.php?type=vessel&startindex=0\n
\nReplace the type parameter with any of the types listed below to return associated images eg. https://data.history.sa.gov.au/gallery_pih.php?type=passenger&startindex=0\n
\nThe example code can be downloaded from https://data.history.sa.gov.au/gallery_pih.php.txt\n
\nThe open_data index contains 7 different types of content:\n
\n* voyage\n* passenger\n* vessel\n* master\n* port\n* source\n* organisation\n
\nAdditionally, the photo index (photo_index) can be used to retrieve photos (specify the index using the index_id query parameter).\n
\nA voyage is centric to most other content types contains references to passengers, vessels and ports. A join query should be used to get information about related content (see https://wiki.apache.org/solr/Join for information surrounding the query syntax for joins). \nThe is_nid field is the unique identifier.\n
\nThe number of rows per query is limited to 999 so the start and rows query parameters would need to be used to iterate over the entire result set.\n
\nThere are many response formats available (see https://cwiki.apache.org/confluence/display/solr/Response+Writers). Just add the parameter 'wt' to the query and select the response format eg. json or csv. The default is xml.\n##Examples##\nA typical workflow might be:\n
\nGet the voyage/s that arrived in 1836:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_voyage_year:1836](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_voyage_year:1836)\n

\nUse a join to get the passengers for one of the voyages (use the voyage is_nid field)\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?start=0&rows=50&q={!join from=im_field_passengers to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?start=0&rows=50&q={!join from=im_field_passengers%20to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find the origin and destination of a particular voyage:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_origin to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_origin to=is_nid}index_id:open_data AND is_nid:944632)\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_destination to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_destination to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find the vessel for the voyage:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_vessel to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_vessel to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find photos of the vessel (using the vessel is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:photo_index AND im_file_usage_list:920026](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:photo_index AND im_file_usage_list:920026)\n

\nUse a join to find out where a vessel was built (using the vessel is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_where to=is_nid}index_id:open_data AND is_nid:923958](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_where to=is_nid}index_id:open_data AND is_nid:923958)\n

\nUse a join to find the built by organisation for a particular vessel:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_by to=is_nid}index_id:open_data AND is_nid:923958](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join%20from=is_field_built_by%20to=is_nid}index_id:open_data%20AND%20is_nid:923958)\n

\nGet organisation details (using the organisation is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND ss_type:organisation AND is_nid:916199](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20ss_type:organisation%20AND%20is_nid:916199)\n

\nOr find all vessels built by the organisation (using the organisation is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_built_by:916199](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20is_field_built_by:916199)\n

\n##Other Useful Queries\nFind all photos that are attached to a passenger:\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_nid to=im_file_usage_list}ss_type:(passenger OR image)\n

\nOr find all passengers that have a photo attached (the reverse):\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q={!join from=im_file_usage_list to=is_nid}ss_type:(passenger OR image)\n

\nAll fields are searchable (see listing below). There are many search options using the Apache Solr query syntax. For instance to find all vessels that have the word \u2018Adelaide\u2019 in their tm_title field but not the word \u2018port\u2019:\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND ss_type:vessel AND tm_title:(adelaide -port)\n
\nIn this case ss_type is specifically set to be \u2018vessel\u2019. The \u2013 represents negation of the term. There are many more options \u2013 refer to a good blog here [https://yonik.com/solr/query-syntax/](https://yonik.com/solr/query-syntax/)\n

\nFacet search on the voyage destination for a date range between 1834 and 1836:\n
\nhttps://data.history.sa.gov.au:8983/solr/passengers/select?rows=0&q={!join%20from=is_nid%20to=is_field_destination}index_id:open_data&fq=ds_field_depart_date:[1834-01-01T00:00:00Z%20TO%201836-12-31T12:59:59Z]&facet=on&facet.field=is_field_destination\n
\nIn this case use a port search by node to get the titles of the ports eg.(using the first facet):\n
\nhttps://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20is_nid:887339\n
\nThe answer is most likely to be Sydney!\n

\n##Content Type Fields##\n###Passenger \n
\n* is_nid\n* ss_type\n* tm_field_occupation\n* tm_field_surname\n* tm_field_firstname\n* is_field_age\n* is_arrival_year\n
\n###Voyage\n
\n* is_nid\n* ss_type\n* ds_field_depart_date\n* is_field_destination\n* tm_field_master\n* is_field_origin\n* is_field_vessel\n* is_field_voyage_year\n* tm_title\n
\n###Vessel\n
\n* is_nid\n* ss_type\n* tm_title\n* tm_field_services\n* im_field_sources\n* is_field_year_end\n* is_field_year_start\n* is_field_built_by\n* is_field_built_where\n* is_field_built_year\n* tm_field_demise\n* tm_field_rig\n* tm_field_dimensions\n* tm_field_tonnage\n
\n###Source\n
\n* is_nid\n* ss_type\n* tm_title\n* tm_field_location\n* tm_field_reference\n
\n###Port\n
\n* is_nid\n* ss_type\n* tm_title\n
\n###Organisation\n
\n* is_nid\n* ss_type\n* tm_title\n
\n###Photos\n
\n* is_fid: Unique ID for a file\n* tm_field_citation: Includes copyright information\n* tm_field_file_image_title_text: Image title\n* tm_field_location: Location of the image\n* tm_field_source: Source of the image\n* is_file_usage_count: Number of times this file is used in passengersinhistory.sa.gov.au\n* im_file_usage_list: List of content that uses this file\n* ss_url: Url to the file\n", "file_created": "2016-06-28T10:54:22.341773", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 839, "dataset_title": "Community History Live Stream", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-15T01:26:37.366511", "dataset_modified": "2017-06-27T02:08:43.727429", "dataset_description": "The community history website is a place for community organisations, historical groups and individuals to come together to share their interests in and explore South Australia's community history.\n\nThis dataset provides access to organisations, events, news and blogs that are displayed on the website. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/2ce2ab30-d17f-4902-b344-314e4b34538a", "start_date": "2011-04-01", "end_date": "2015-05-31", "file_title": "Community History Live Stream", "download_url": "https://data.history.sa.gov.au/communityhistory/", "format": "API", "file_description": "**Community History Endpoints**\n\n**Organisations**\n\nhttp://data.history.sa.gov.au/communityhistory/organisations\n\n**News**\n\nhttp://data.history.sa.gov.au/communityhistory/news\n\n**Events**\n\nhttp://data.history.sa.gov.au/communityhistory/events\n\n**Blogs**\n\nhttp://data.history.sa.gov.au/communityhistory/blogs\n\n**Article Detail**\n\nThe nid field on each of the items (listed using any of the above endpoints) can be used to get specific detail using the following endpoint:\n\nhttp://data.history.sa.gov.au/communityhistory/{nid} \n\nReplace {nid} with the nid obtained from one of the above endpoints.\n\n**Files**\n\nThe nid field on each of the events (listed using any of the above endpoints) can be used to get associated files (including base64 values) using the following endpoint:\n\nhttp://data.history.sa.gov.au/communityhistory/{nid}/files \n\nReplace {nid} with the nid obtained from one of the above endpoints.\n\n**Taxonomy**\n\nhttp://data.history.sa.gov.au/communityhistory/taxonomy/{id}\n\nReplace {id} with the taxonomy term id (represented by target_id throughout content)", "file_created": "2015-05-15T11:33:00.199640", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 845, "dataset_title": "History Festival Archive", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-14T07:15:48.169739", "dataset_modified": "2017-06-27T02:07:34.579520", "dataset_description": "The History Festival is held every year in May. This dataset contains an archive of festival events for 2013, 2014, 2015 and 2016.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/8606923a-8c21-4a2a-b31b-925f6fee4616", "start_date": "2013-05-01", "end_date": "2015-05-31", "file_title": "History Festival Events", "download_url": "https://data.history.sa.gov.au/abouttime/", "format": "API", "file_description": "**History Festival Endpoints**\n\n**Events**\n\nhttp://data.history.sa.gov.au/abouttime/events/{year}\n\nReplace {year} with 2013, 2014 or 2015\n\n**Event Detail**\n\nThe nid field on each of the events (listed using the 'Events' endpoint) can be used to get event specific detail using the following endpoint:\n\nhttp://data.history.sa.gov.au/abouttime/event/{year}/{nid} \n\nReplace {year} with 2013, 2014, 2015 or 2016\nReplace {nid} with the nid obtained from one of the events listing.\n\n**Event Images**\n\nThe nid field on each of the events (listed using the 'Events' endpoint) can be used to get event images (including base64 values) using the following endpoint:\n\nhttp://data.history.sa.gov.au/abouttime/event/{year}/{nid}/files \n\nReplace {year} with 2013, 2014, 2015 or 2016\nReplace {nid} with the nid obtained from one of the events listing.", "file_created": "2015-05-14T17:18:33.373635", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 826, "dataset_title": "Executive Employment at the History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-09-28T03:04:15.192438", "dataset_modified": "2021-12-14T00:05:31.975545", "dataset_description": "Executive employment at the History Trust of South Australia for the period 2011-12 to 2019-20 for annual reporting purposes.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/f751c9b2-ceb4-4c25-8dfa-06116a76e3df", "start_date": "2011-07-01", "end_date": "2020-06-30", "file_title": "Executive Employment at the History Trust of South Australia 2011-2020", "download_url": "https://data.sa.gov.au/data/dataset/f751c9b2-ceb4-4c25-8dfa-06116a76e3df/resource/85bf7d2d-71d0-4a0b-b6a6-c0637ae579b4/download/executive-employment-htsa-for-period-2011-2012-to-2020-21.csv", "format": "CSV", "file_description": "Executive employment at the History Trust of South Australia for the period 2011-12 to 2020-21 for annual reporting purposes.", "file_created": "2018-09-03T04:51:56.073524", "file_modified": "2021-12-14T00:05:25.121777", "file_size": "209.0", "licence": "Creative Commons Attribution"} {"rowid": 827, "dataset_title": "Consultants engaged by the History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-09-28T02:45:01.007581", "dataset_modified": "2021-12-14T00:04:16.335642", "dataset_description": "A report of external consultants engaged by the History Trust of South Australia for the period 2011-12 to 2019-20 for annual reporting purposes.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e1d89da7-8ec7-4041-ab0a-818d8925d122", "start_date": "2011-07-01", "end_date": "2020-06-30", "file_title": "Consultants engaged by the History Trust of South Australia", "download_url": "https://data.sa.gov.au/data/dataset/e1d89da7-8ec7-4041-ab0a-818d8925d122/resource/b0f9c2d3-3f45-4207-bda6-724bc3ad56ed/download/consultantsengagedhtsaperiod2011-12to2020-21.csv", "format": "CSV", "file_description": "number if consultants engaged by the History Trust of SA for annual reporting purposes", "file_created": "2019-11-08T00:52:08.054619", "file_modified": "2021-12-14T00:04:09.561528", "file_size": "119.0", "licence": "Creative Commons Attribution"} {"rowid": 828, "dataset_title": "Public Complaints History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-09-28T02:59:21.279583", "dataset_modified": "2021-12-14T00:03:11.366438", "dataset_description": "Public Complaints received by History Trust of South Australia for the period 2011-12 to 2018-20 for annual reporting purposes.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e0286abe-d1ba-4cbd-a48b-628b854f3cf9", "start_date": "2011-07-01", "end_date": "2020-06-30", "file_title": "Public complaints received by History Trust of South Australia", "download_url": "https://data.sa.gov.au/data/dataset/e0286abe-d1ba-4cbd-a48b-628b854f3cf9/resource/eee983fd-960d-419a-97a8-4ab8379ec0a1/download/reporting-of-public-complaints-htsa-for-period-2011-12-to-2020-21.csv", "format": "CSV", "file_description": "Public complaints received by History Trust of South Australia for the period 2011-12 to 2020-21 for annual reporting purposes.", "file_created": "2018-09-03T04:47:28.935571", "file_modified": "2021-12-14T00:03:04.113282", "file_size": "229.0", "licence": "Creative Commons Attribution"} {"rowid": 829, "dataset_title": "Fraud detection at History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-09-28T02:56:50.547552", "dataset_modified": "2021-12-14T00:01:53.940313", "dataset_description": "Fraud detected at History Trust of South Australia for the period 2011-12 to 2018-20 for annual reporting purposes.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/7b7f379c-d4a9-4b60-8c3e-92a42a2fc346", "start_date": "2011-07-01", "end_date": "2020-06-30", "file_title": "Fraud detection at History Trust of South Australia 2011-2021", "download_url": "https://data.sa.gov.au/data/dataset/7b7f379c-d4a9-4b60-8c3e-92a42a2fc346/resource/375deca9-b443-40c7-ac27-0f13f3cbabdb/download/fraud-detection-htsa-for-period-2011-12-to-2020-21.csv", "format": "CSV", "file_description": "Fraud detection at History Trust of South Australia for annual reporting processes covers period 2011 - 2021", "file_created": "2018-09-03T05:02:56.430669", "file_modified": "2021-12-14T00:01:47.107979", "file_size": "122.0", "licence": "Creative Commons Attribution"} {"rowid": 830, "dataset_title": "Whistleblowers Disclosure for History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-09-28T02:53:45.094443", "dataset_modified": "2021-12-14T00:01:24.874833", "dataset_description": "Whistleblower disclosure at the History Trust of South Australia for the period 2011-12 to 2019-20 for annual report purposes.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/9a9aea08-dc9a-4ad0-9ce6-0127349cecb3", "start_date": "2011-07-01", "end_date": "2020-06-30", "file_title": "Whistleblowers Disclosure for History Trust of South Australia 2011-2021", "download_url": "https://data.sa.gov.au/data/dataset/9a9aea08-dc9a-4ad0-9ce6-0127349cecb3/resource/7265374f-41d3-4330-b1f9-c028ae348360/download/whistle-blowers-disclosure-htsa-period-2011-12-to-2020-21.csv", "format": "CSV", "file_description": "Whistleblower disclosure at the History Trust of South Australia for the periods 2011-12 to 2017-21.", "file_created": "2018-09-03T04:55:39.086918", "file_modified": "2021-12-14T00:01:17.948309", "file_size": "127.0", "licence": "Creative Commons Attribution"} {"rowid": 831, "dataset_title": "Contractors engaged by the History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2018-09-04T02:43:20.388353", "dataset_modified": "2021-12-14T00:00:41.728886", "dataset_description": "Contractors by History Trust of South Australia for the period 2019-20 for annual reporting purposes.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/acf3e43e-823b-4238-a620-3e4efaf61a28", "start_date": "2017-07-01", "end_date": "2020-06-30", "file_title": "Contractors engaged by the History Trust of South Australia", "download_url": "https://data.sa.gov.au/data/dataset/acf3e43e-823b-4238-a620-3e4efaf61a28/resource/6041e625-5d33-4bf0-9ec0-10c2f87f3c0e/download/contractors-htsa-period-2020-21.csv", "format": "CSV", "file_description": "number of contractors engaged by the History Trust of SA 2019-20", "file_created": "2019-11-08T01:40:32.149049", "file_modified": "2021-12-14T00:00:34.775471", "file_size": "1025.0", "licence": "Creative Commons Attribution"} {"rowid": 833, "dataset_title": "Workplace Injury Claims History Trust of South Australia", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2018-09-03T05:13:04.265874", "dataset_modified": "2020-12-15T06:34:11.021220", "dataset_description": "Incidents of workplace injury claims received by History Trust of South Australia for the period 2019-20 for annual reporting purposes.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/acb979d9-d04d-4a83-a8e8-f0c3d5149dcb", "start_date": "2017-07-01", "end_date": "2020-06-30", "file_title": "Workplace Injury Claims received by History Trust of South Australia 2019-20", "download_url": "https://data.sa.gov.au/data/dataset/acb979d9-d04d-4a83-a8e8-f0c3d5149dcb/resource/526183df-592f-487f-9f3a-1277fb24d272/download/workplaceinjuryhtsaperiod2019-20.csv", "format": "CSV", "file_description": "Workplace Injury Claims received by History Trust of South Australia for period 2019-20 for annual reporting purposes.\n", "file_created": "2018-09-03T05:14:12.730644", "file_modified": "2020-12-15T06:30:21.532526", "file_size": "187.0", "licence": "Creative Commons Attribution"} {"rowid": 840, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Places", "download_url": "https://data.history.sa.gov.au/sahistoryhub/place", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:03:37.435850", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 841, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Things", "download_url": "https://data.history.sa.gov.au/sahistoryhub/thing", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:06:51.936296", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 842, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Organisations", "download_url": "https://data.history.sa.gov.au/sahistoryhub/organisation", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:08:28.752458", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 843, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Events", "download_url": "https://data.history.sa.gov.au/sahistoryhub/event", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:09:11.644509", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 844, "dataset_title": "Interned: Torrens Island, 1914-1915", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-29T06:26:23.281710", "dataset_modified": "2017-06-27T02:07:59.361209", "dataset_description": "##Interned: Torrens Island, 1914-1915\n\nIn August 1914 war broke out across Europe. Within days \u2018enemy subjects\u2019 in Australia were required to register with the authorities. Most gave their \u2018parole\u2019 and went on with their lives in the community, but internment started with sailors taken off enemy ships and enemy reservists, and went on to include enemy subjects suspected of \u2018disloyal or unsatisfactory\u2019 behaviour. Later, some naturalised British subjects and even natural-born British subjects were interned. In the course of the war over 6,000 enemy subjects were interned across Australia. \n\nThis dataset contains information about individuals interned during the First World War from South Australia (Military District 4). Most of those interned between October 1914 and August 1915, some 400 men, were held on Torrens Island, in the Port River estuary, north-west of Adelaide. The data set also includes those from South Australia who were interned in New South Wales after Torrens Island internment camp closed in August 1915.\n\nThe data was compiled by History SA staff from two archival series in the National Archives of Australia: A367 C18000 Part 1, War Internees and Deportees 1914-1919 and D2286, Nominal Roll of prisoners of war interned at Torrens Island concentration camp 1915. Data fields include: Name, Also recorded as (alternative name), Date interned, Interned (at), Nationality, Date of birth/age, Remarks, and Notes. The data has been produced by identifying individuals who appear in both series and combining information from both series into this data set, using the A367 data as the primary series. This involved interpreting the data, in particular, making an assessment of whether or not entries in the two series with similar names represent the same person. Further research may reveal some of these assessments to be inaccurate.\n\nThe dataset was produced as part of research for an exhibition at the Migration Museum and the Wakefield Press publication Interned: Torrens Island, 1914-15.\nhttp://migration.historysa.com.au/events/2014/interned-torrens-island-1914-1915\nhttp://www.wakefieldpress.com.au/product.php?productid=1201\n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/eb04171a-1a75-4549-820d-fd20a1d434be", "start_date": "1939-01-01", "end_date": "1946-01-01", "file_title": "Internee Data", "download_url": "https://interned.historysa.com.au/js/data.js", "format": "JS", "file_description": "Information surrounding internees sourced from http://www.wakefieldpress.com.au/product.php?productid=1201 and National Australian Archives", "file_created": "2015-05-29T16:29:30.924997", "file_modified": "2015-01-28T00:45:42", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 795, "dataset_title": "Mount Gambier Main Street Traders", "publisher": "Mount Gambier Library", "author": "Mount Gambier Library", "dataset_issued": "2014-06-10T14:53:05.816908", "dataset_modified": "2016-06-08T07:11:39.244861", "dataset_description": "Historical information about commercial buildings and ownership in the Main Street of Mount Gambier including date information, owner and or company name, business type and newspaper article dates and references to the images held in the Les Hill Photographic Collection. Information is based on research of publicly available information.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/0e4a82b7-b1d9-47d8-8c74-3cb2ac296661", "start_date": "1847-1940", "end_date": "", "file_title": "Commercial Street Traders", "download_url": "https://data.sa.gov.au/data/storage/f/2014-06-10T14%3A54%3A17.368Z/commercial-street-traders-data-set.csv", "format": "CSV", "file_description": "Commercial Street Traders dataset", "file_created": "2014-06-10T15:02:46.951865", "file_modified": "2014-10-30T09:01:35", "file_size": "354738.0", "licence": "Creative Commons Attribution"} {"rowid": 794, "dataset_title": "Mount Gambier Destitute Register", "publisher": "Mount Gambier Library", "author": "Mount Gambier Library", "dataset_issued": "2016-07-04T01:13:31.122992", "dataset_modified": "2016-07-04T01:14:58.244849", "dataset_description": "Destitute records from Mount Gambier, including information on applicants such as ship and arrival date, infirmity, circumstances, family, means of subsistence.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/f475bf72-2aac-4893-a162-aaa5343a490d", "start_date": "1883-01-01", "end_date": "1894-01-01", "file_title": "Mount Gambier Destitute Records", "download_url": "https://data.sa.gov.au/data/dataset/f475bf72-2aac-4893-a162-aaa5343a490d/resource/ac6e4cb9-d3bd-461f-bdd0-25a92a9d2019/download/clientirecord-setsdestitute-records.xlsx", "format": "XLSX", "file_description": "", "file_created": "2016-07-04T11:14:57.627256", "file_modified": "2016-07-04T01:14:57.542684", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 917, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "Type Specimen images from the South Australian Museum Terrestrial Invertebrates collection", "download_url": "https://biocache.ala.org.au/occurrence/search?q=data_resource_uid:dr742", "format": "", "file_description": "The South Australian Museum has been photographing the Type specimens in the Terrestrial Invertebrates collection. These images, of over 3500 specimens, can be accessed on the Atlas of Living Australia.", "file_created": "2016-06-28T11:25:21.631431", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 851, "dataset_title": "South Australian Museum Ichthyology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:15:15.690837", "dataset_modified": "2020-02-18T23:51:32.608265", "dataset_description": "The South Australian Museum fish collection is comprised of over eleven thousand registered lots. The collection has a strong regional focus with freshwater fishes of southern and central Australia and Southern Ocean marine fishes, including deep-sea species, well represented.\n\nThe SA Museum manages this dataset using the EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a09d615c-79f1-4918-9cb4-8c4c636c80eb", "start_date": "1880-2014", "end_date": "", "file_title": "Field definitions", "download_url": "https://data.sa.gov.au/data/dataset/a09d615c-79f1-4918-9cb4-8c4c636c80eb/resource/75c5ae89-c3a9-42df-a320-216bf52b0ed8/download/field-definitions-ala-sourced-data.csv", "format": "CSV", "file_description": "Field Definitions - Atlas of Living Australia datasets", "file_created": "2013-05-23T20:46:11.826210", "file_modified": "2016-06-24T04:16:27.495064", "file_size": "19397.0", "licence": "Creative Commons Attribution"} {"rowid": 855, "dataset_title": "South Australian Museum Ornithology Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:59:59.088745", "dataset_modified": "2020-02-18T01:29:42.117037", "dataset_description": "This section houses over 55,000 registered and 6,000 unregistered specimens including skins, eggs, skeletons, nests and spirit collections. It has an excellent collection of South Australian species, both historical and recent, a large collection of stomach contents, which is used to determine diets, and an Australia wide collection of eggs. \n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a4fbf1a3-bb6f-4b59-860a-3283200e7a90", "start_date": "1860-2014", "end_date": "", "file_title": "Field definitions", "download_url": "https://data.sa.gov.au/data/dataset/a4fbf1a3-bb6f-4b59-860a-3283200e7a90/resource/d0a45398-a11e-446a-8368-f36c2ff44534/download/field-definitions-ala-sourced-data.csv", "format": "CSV", "file_description": "Field Definitions - Atlas of Living Australia datasets", "file_created": "2013-05-23T20:47:30.487267", "file_modified": "2016-06-24T04:15:08.432141", "file_size": "19397.0", "licence": "Creative Commons Attribution"} {"rowid": 859, "dataset_title": "South Australian Museum Mammalogy Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:53:24.949394", "dataset_modified": "2020-02-18T01:29:11.710141", "dataset_description": "There are over 24,000 specimens in this collection, including skulls, skins, skeletons, spirit specimens, photographs and frozen tissue. It includes over 1600 marine mammals and its comprehensiveness makes this collection the best of its kind in Australia. Other strengths of the collection include South Australian arid zone native mammals, many specimens of extinct species such as the thylacine and large numbers of bat species.\n\nThe collection has also historical importance as it includes many specimens from early expeditions in Australia and to the subantarctic Islands and Antarctica. Well-known people such as Sir Douglas Mawson, Edgar R. Waite and Hedley Finlayson have contributed to the collection.\n\nThe mammal collection includes sub-fossils and remains from owl pellets. This collection consists entirely of Australian material with 20000 - 25000 specimens covering 76 mammal species (including introduced species). The collection is made up of bulk bone deposits from the floor of caves, bones excavated from sinkholes, bones extracted from predator scats (eg. dingoes, foxes and Ghost Bats), pellets from birds of prey, particularly barn owls (both recent and pre-settlement material), and stick nest rat nests and middens. The sub-fossil collection is the second best of its kind in Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/35f2b0e5-a207-4114-b2c5-b2f12aa8b8ad", "start_date": "1880-2014", "end_date": "", "file_title": "Field definitions", "download_url": "https://data.sa.gov.au/data/dataset/35f2b0e5-a207-4114-b2c5-b2f12aa8b8ad/resource/42793acb-0f05-435b-bb80-475f9fd67553/download/field-definitions-ala-sourced-data.csv", "format": "CSV", "file_description": "Field Definitions - Atlas of Living Australia datasets", "file_created": "2013-05-23T20:46:54.017940", "file_modified": "2016-06-30T05:30:45.221341", "file_size": "19397.0", "licence": "Creative Commons Attribution"} {"rowid": 863, "dataset_title": "South Australian Museum Herpetology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:07:17.288715", "dataset_modified": "2020-02-18T01:28:14.693870", "dataset_description": "Over 70,000 specimens have been registered in this collection, which has a particular emphasis on South Australian and arid zone fauna. A second major regional focus is Melanesia, especially the island of New Guinea (Papua New Guinea and Papua Province, Indonesia), with some 6,000 registered specimens. Most material is formalin-fixed and stored in 70% alcohol, with tadpoles stored in formalin. There is a significant dry skeletal collection of over 1,500 specimens, mostly skulls, and this will continue to be expanded. Since 1980, the great majority of specimens acquired (approx. 40,000) have had tissue samples (mostly liver) taken for genetic and biochemical research. These are held in the S.A. Museum's Australian Biological Tissue Collection. All specimens are individually registered and the data entered on a collections management system. All specimens are stored on-site in the S.A. Museum Science Centre alcohol storage facilities.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. \n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e0cc2850-5096-44ec-9602-7b5abfaa2094", "start_date": "1880-2014", "end_date": "", "file_title": "Field definitions", "download_url": "https://data.sa.gov.au/data/dataset/e0cc2850-5096-44ec-9602-7b5abfaa2094/resource/4f82f9ee-f5d3-4e1d-b8a2-f90a278d0f45/download/field-definitions-ala-sourced-data.csv", "format": "CSV", "file_description": "Field Definitions - Atlas of Living Australia datasets", "file_created": "2013-05-23T20:45:19.534335", "file_modified": "2016-06-24T04:13:44.323858", "file_size": "19397.0", "licence": "Creative Commons Attribution"} {"rowid": 866, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/ca0e43ac-ec66-49ef-94c2-c5fd79559ae0/download/2018-19-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2018-18 Annual Report", "file_created": "2019-09-04T23:32:04.277036", "file_modified": "2019-09-04T23:32:28.358032", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 867, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/0bea76d3-4393-4652-ba31-f02ad7f912ba/download/south-australian-museum_complaints_2017-18.csv", "format": "CSV", "file_description": "Data regarding complaints for 2017-18.", "file_created": "2019-08-15T04:04:32.157485", "file_modified": "2019-08-15T04:04:32.119917", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 868, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/a0fd9bd2-5c37-4419-8ec9-975110b96179/download/2016-17-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2016-17 Annual Report", "file_created": "2019-09-04T04:18:05.816378", "file_modified": "2019-09-04T04:18:05.770575", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 869, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/10f2d0da-debc-473b-b613-5fa6e17a9eee/download/2015-16-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2015-16 Annual Report", "file_created": "2019-09-04T04:16:19.128276", "file_modified": "2019-09-04T04:16:19.031655", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 870, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/1774895d-6589-4571-88e0-b3a2dc0eea90/download/2014-15-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2014-15 Annual Report", "file_created": "2019-09-04T04:14:04.171986", "file_modified": "2019-09-04T04:14:04.108871", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 871, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/d1bf3695-13bb-440c-8749-ead505e808af/download/2018-19-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2018-19 Annual Report", "file_created": "2019-09-04T23:38:26.634663", "file_modified": "2019-09-04T23:38:26.585714", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 872, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/bd0706c6-5c53-4484-9fdf-a172fd0d1bd9/download/south-australian-museum_consultants_2017-18.csv", "format": "CSV", "file_description": "Data regarding consultants for 2017-18.", "file_created": "2019-08-15T03:57:12.167061", "file_modified": "2019-08-15T03:57:12.130205", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 873, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/4d99a8c0-19b0-4a37-a856-7514273d3240/download/2016-17-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2016-17 Annual Report", "file_created": "2019-09-04T04:29:16.674702", "file_modified": "2019-09-04T04:29:16.628739", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 874, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/99ead73b-d1e6-4c6e-a010-dbb7eb74d4a8/download/2015-16-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2015-16 Annual Report", "file_created": "2019-09-04T04:29:59.787875", "file_modified": "2019-09-04T04:29:59.743965", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 875, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/5d841545-6241-4a26-ba75-3fb2cc6e8515/download/2014-15-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2014-15 Annual Report", "file_created": "2019-09-04T04:30:52.002997", "file_modified": "2019-09-04T04:30:51.954220", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 876, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/dfa2d2a2-85e6-4dec-a1cf-66843d278c65/download/2013-14-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2013-14 Annual Report", "file_created": "2019-09-04T04:31:24.342931", "file_modified": "2019-09-04T04:31:24.294353", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 877, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/2cbf09d0-f358-485c-aaa7-e6551a596eae/download/2018-19-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2018-19 Annual Report", "file_created": "2019-09-04T23:42:35.167567", "file_modified": "2019-09-04T23:42:35.100491", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 878, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/3e548f01-f2bf-4110-b061-595b0d8545cf/download/south-australian-museum_contractors_2017-18.csv", "format": "CSV", "file_description": "Data regarding contractors for 2017-18.", "file_created": "2019-08-15T03:59:09.056241", "file_modified": "2019-08-15T03:59:09.004337", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 879, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/3cfed485-8160-4aec-9abd-905bcc2eda64/download/2016-17-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2016-17 Annual Report", "file_created": "2019-09-04T04:26:01.108966", "file_modified": "2019-09-04T04:26:01.060874", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 880, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/939306e3-4d84-432a-a9f2-2659b1bde202/download/2015-16-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2015-16 Annual Report", "file_created": "2019-09-04T04:26:43.223202", "file_modified": "2019-09-04T04:26:43.156338", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 881, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/0298a2c0-0f91-4513-aa4b-5dfe97177abb/download/2014-15-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2014-15 Annual Report", "file_created": "2019-09-04T04:27:22.235852", "file_modified": "2019-09-04T04:27:22.156934", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 882, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/ac7a1df2-e5bc-4858-ba9c-b0e6cd3cf162/download/2013-14-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2013-14 Annual Report", "file_created": "2019-09-04T04:28:01.372509", "file_modified": "2019-09-04T04:28:01.300110", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 883, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/85809f7d-3ffc-4bfd-aacc-b1ad63a2718a/download/2018-19-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2018-19 Annual Report", "file_created": "2019-09-04T23:46:00.607610", "file_modified": "2019-09-04T23:46:00.534359", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 884, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/6900330b-21b1-4f08-b370-2de303d53b8b/download/south-australian-museum_executive-employment-in-the-agency_2017-18.csv", "format": "CSV", "file_description": "Data regarding Executive Employment for 2017-18.", "file_created": "2019-08-15T03:54:34.903947", "file_modified": "2019-08-15T03:54:34.859781", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 885, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/cb59cc00-3d2a-4a64-b034-5b225effdeb2/download/2016-17-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2016-17 Annual Report", "file_created": "2019-09-04T04:32:27.127445", "file_modified": "2019-09-04T04:32:27.062435", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 886, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/c0b9c64f-f8b5-4e56-8376-1822ee396982/download/2015-16-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2015-16 Annual Report", "file_created": "2019-09-04T04:32:56.480809", "file_modified": "2019-09-04T04:32:56.429536", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 887, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/5be643b0-b40e-4bb8-aa83-595fba003615/download/2014-15-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2014-15 Annual Report", "file_created": "2019-09-04T04:33:27.848636", "file_modified": "2019-09-04T04:33:27.800232", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 888, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/c44ecc60-659d-43c6-a9fe-8120b86501e9/download/2013-14-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2013-14 Annual Report", "file_created": "2019-09-04T04:34:02.328217", "file_modified": "2019-09-04T04:34:02.255162", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 889, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/3967db76-7d60-44dc-a896-a9200184d853/download/2018-19-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2018-19 Annual Report", "file_created": "2019-09-04T23:50:44.326883", "file_modified": "2019-09-04T23:50:44.259824", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 890, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/09ede3c5-85f0-450f-831a-109dc2ae378b/download/south-australian-museum_whistle-blowers_2017-18.csv", "format": "CSV", "file_description": "Data regarding whistle blowers for 2017-18.", "file_created": "2019-08-15T04:03:02.133735", "file_modified": "2019-08-15T04:03:02.078403", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 891, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/3576e95f-c5f3-4ac7-b8a5-b517cae37c91/download/2016-17-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2016-17 Annual Report", "file_created": "2019-09-04T04:19:57.696860", "file_modified": "2019-09-04T04:19:57.630354", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 892, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/33e04ca7-3509-40de-b3c6-44dc92b2d81b/download/2015-16-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2015-16 Annual Report", "file_created": "2019-09-04T04:20:37.102007", "file_modified": "2019-09-04T04:20:37.057670", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 893, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/934f66cb-d4ad-4fa9-b345-0b2a6d698982/download/2014-15-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2014-15 Annual Report", "file_created": "2019-09-04T04:21:18.705174", "file_modified": "2019-09-04T04:21:18.630661", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 894, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/bc89f1f8-d762-45cb-b6a5-bc9861c85a31/download/2013-14-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2013-14 Annual Report", "file_created": "2019-09-04T04:22:03.593544", "file_modified": "2019-09-04T04:22:03.518510", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 895, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/63b0efba-4015-44ab-a179-7d56d0af0dc2/download/2018-19-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2018-19 Annual Report", "file_created": "2019-09-05T00:07:24.041894", "file_modified": "2019-09-05T00:07:23.987951", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 896, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Workers Compensation) - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/8509ea49-d3cd-4a1d-bb59-e12211b61836/download/2018-19-whs-workers-compensation.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Workers Compensation) data from 2018-19 Annual Report", "file_created": "2019-09-05T00:08:29.240565", "file_modified": "2019-09-05T00:08:29.188469", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 897, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/ad7475a2-515c-42e8-a913-51b9681da769/download/south-australian-museum_work-health-and-safety-and-return-to-work-performance_2017-18.csv", "format": "CSV", "file_description": "Data regarding Work Health and Safety and Return to Work Performance for 2017-18.", "file_created": "2019-08-15T03:48:19.066304", "file_modified": "2019-08-15T03:48:19.010996", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 898, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Workers Compensation) - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/1417008e-25c6-4807-ac28-707411ac6048/download/2015-16-whs-workers-comp.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Workers Compensation) data from 2015-16 Annual Report", "file_created": "2019-09-04T04:35:39.186891", "file_modified": "2019-09-04T04:35:39.119550", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 899, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Injuries) - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/173c13f1-3108-4327-828c-03cf1933d6dd/download/2015-16-whs-injuries.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Injuries) data from 2015-16 Annual Report", "file_created": "2019-09-04T04:37:34.631468", "file_modified": "2019-09-05T00:10:45.255593", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 900, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/82a59b6e-cb4e-42d7-a3e5-f74dc463f8e6/download/2014-15-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2014-15 Annual Report", "file_created": "2019-09-04T04:38:18.193067", "file_modified": "2019-09-04T04:38:18.144963", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 901, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/0395866a-a30d-47af-8f18-5093efd19844/download/2013-14-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2013-14 Annual Report", "file_created": "2019-09-04T04:39:05.788999", "file_modified": "2019-09-04T04:39:05.738395", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 902, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/13fbe0bd-6663-4d36-a54c-7c20c756a152/download/2018-19-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2018-19 Annual Report", "file_created": "2019-09-04T23:48:11.199165", "file_modified": "2019-09-04T23:48:11.146340", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 903, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/470ec3ea-9bd1-4192-b15e-993a61fea4bd/download/south-australian-museum_fraud_2017-18.csv", "format": "CSV", "file_description": "Data regarding instances of fraud for 2017-18.", "file_created": "2019-08-15T04:01:18.561705", "file_modified": "2019-08-15T04:01:18.509959", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 904, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/ce102f86-6098-42fd-afca-c7510d20bd21/download/2016-17-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2016-17 Annual Report", "file_created": "2019-09-04T04:23:11.555572", "file_modified": "2019-09-04T04:23:11.496419", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 905, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/0c566d20-b869-4a1d-9fdd-14f07067f96c/download/2015-16-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2015-16 Annual Report", "file_created": "2019-09-04T04:23:49.248313", "file_modified": "2019-09-04T04:23:49.180734", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 906, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/9411ff83-9410-48ed-97d8-dbe0a0338518/download/2014-15-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2014-15 Annual Report", "file_created": "2019-09-04T04:24:25.334175", "file_modified": "2019-09-04T04:24:25.289244", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 907, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/20fc7862-ee78-43cf-b434-2bb64ec721a5/download/2013-14-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2013-14 Annual Report", "file_created": "2019-09-04T04:25:02.864610", "file_modified": "2019-09-04T04:25:02.797084", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 915, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "Field definitions", "download_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675/resource/f4f44b17-d081-4ec4-81d4-6da8c51bb98c/download/field-definitions-ala-sourced-data.csv", "format": "CSV", "file_description": "Field Definitions - Atlas of Living Australia datasets", "file_created": "2013-05-23T20:48:07.948833", "file_modified": "2016-06-24T04:09:09.146071", "file_size": "19397.0", "licence": "Creative Commons Attribution"} {"rowid": 850, "dataset_title": "South Australian Museum Ichthyology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:15:15.690837", "dataset_modified": "2020-02-18T23:51:32.608265", "dataset_description": "The South Australian Museum fish collection is comprised of over eleven thousand registered lots. The collection has a strong regional focus with freshwater fishes of southern and central Australia and Southern Ocean marine fishes, including deep-sea species, well represented.\n\nThe SA Museum manages this dataset using the EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a09d615c-79f1-4918-9cb4-8c4c636c80eb", "start_date": "1880-2014", "end_date": "", "file_title": "Metadata tempate for Ichthyology Collection", "download_url": "https://data.sa.gov.au/data/storage/f/2013-05-15T02%3A32%3A23.338Z/metadata-tempate-ichthyology.doc", "format": "DOC", "file_description": "High Level metadata information for Ichthyology Collection", "file_created": "2013-05-14T21:36:03.682895", "file_modified": "2014-10-30T09:00:45", "file_size": "851968.0", "licence": "Creative Commons Attribution"} {"rowid": 854, "dataset_title": "South Australian Museum Ornithology Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:59:59.088745", "dataset_modified": "2020-02-18T01:29:42.117037", "dataset_description": "This section houses over 55,000 registered and 6,000 unregistered specimens including skins, eggs, skeletons, nests and spirit collections. It has an excellent collection of South Australian species, both historical and recent, a large collection of stomach contents, which is used to determine diets, and an Australia wide collection of eggs. \n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a4fbf1a3-bb6f-4b59-860a-3283200e7a90", "start_date": "1860-2014", "end_date": "", "file_title": "Metadata tempate for Ornithology Collection", "download_url": "https://data.sa.gov.au/data/storage/f/2013-05-15T02%3A36%3A42.467Z/metadata-tempate-ornithology.doc", "format": "DOC", "file_description": "High level metadata information for Ornithology Collection", "file_created": "2013-05-14T21:38:19.384418", "file_modified": "2014-10-30T09:01:26", "file_size": "851968.0", "licence": "Creative Commons Attribution"} {"rowid": 858, "dataset_title": "South Australian Museum Mammalogy Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:53:24.949394", "dataset_modified": "2020-02-18T01:29:11.710141", "dataset_description": "There are over 24,000 specimens in this collection, including skulls, skins, skeletons, spirit specimens, photographs and frozen tissue. It includes over 1600 marine mammals and its comprehensiveness makes this collection the best of its kind in Australia. Other strengths of the collection include South Australian arid zone native mammals, many specimens of extinct species such as the thylacine and large numbers of bat species.\n\nThe collection has also historical importance as it includes many specimens from early expeditions in Australia and to the subantarctic Islands and Antarctica. Well-known people such as Sir Douglas Mawson, Edgar R. Waite and Hedley Finlayson have contributed to the collection.\n\nThe mammal collection includes sub-fossils and remains from owl pellets. This collection consists entirely of Australian material with 20000 - 25000 specimens covering 76 mammal species (including introduced species). The collection is made up of bulk bone deposits from the floor of caves, bones excavated from sinkholes, bones extracted from predator scats (eg. dingoes, foxes and Ghost Bats), pellets from birds of prey, particularly barn owls (both recent and pre-settlement material), and stick nest rat nests and middens. The sub-fossil collection is the second best of its kind in Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/35f2b0e5-a207-4114-b2c5-b2f12aa8b8ad", "start_date": "1880-2014", "end_date": "", "file_title": "Metadata tempate- Mammalogy.doc", "download_url": "https://data.sa.gov.au/data/storage/f/2013-05-15T02%3A27%3A46.860Z/metadata-tempate-mammalogy.doc", "format": "DOC", "file_description": "High Level metadata for Mammalogy Collection.", "file_created": "2013-05-14T21:06:03.749733", "file_modified": "2014-10-30T09:01:19", "file_size": "854016.0", "licence": "Creative Commons Attribution"} {"rowid": 862, "dataset_title": "South Australian Museum Herpetology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:07:17.288715", "dataset_modified": "2020-02-18T01:28:14.693870", "dataset_description": "Over 70,000 specimens have been registered in this collection, which has a particular emphasis on South Australian and arid zone fauna. A second major regional focus is Melanesia, especially the island of New Guinea (Papua New Guinea and Papua Province, Indonesia), with some 6,000 registered specimens. Most material is formalin-fixed and stored in 70% alcohol, with tadpoles stored in formalin. There is a significant dry skeletal collection of over 1,500 specimens, mostly skulls, and this will continue to be expanded. Since 1980, the great majority of specimens acquired (approx. 40,000) have had tissue samples (mostly liver) taken for genetic and biochemical research. These are held in the S.A. Museum's Australian Biological Tissue Collection. All specimens are individually registered and the data entered on a collections management system. All specimens are stored on-site in the S.A. Museum Science Centre alcohol storage facilities.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. \n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e0cc2850-5096-44ec-9602-7b5abfaa2094", "start_date": "1880-2014", "end_date": "", "file_title": "Metadata Herpetology", "download_url": "https://data.sa.gov.au/data/storage/f/2013-05-15T02%3A30%3A03.534Z/metadata-tempate-herpetology.doc", "format": "DOC", "file_description": "Contains information such as \nShort Description, Update Frequency, Last Updated, Organisation,File Format, Author, Mentors, Themes, etc\n", "file_created": "2013-05-09T23:53:47.039883", "file_modified": "2014-10-30T09:00:51", "file_size": "851968.0", "licence": "Creative Commons Attribution"} {"rowid": 914, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "Metadata tempate- Terrestrial Invertebrates.doc", "download_url": "https://data.sa.gov.au/data/storage/f/2013-05-15T02%3A28%3A55.505Z/metadata-tempate-terrestrial-invertebrates.doc", "format": "DOC", "file_description": "Contains high level metadata information of the Terrestrial Invertebrates dataset.", "file_created": "2013-05-14T21:03:23.389242", "file_modified": "2014-10-30T09:01:23", "file_size": "852480.0", "licence": "Creative Commons Attribution"} {"rowid": 849, "dataset_title": "South Australian Museum Ichthyology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:15:15.690837", "dataset_modified": "2020-02-18T23:51:32.608265", "dataset_description": "The South Australian Museum fish collection is comprised of over eleven thousand registered lots. The collection has a strong regional focus with freshwater fishes of southern and central Australia and Southern Ocean marine fishes, including deep-sea species, well represented.\n\nThe SA Museum manages this dataset using the EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a09d615c-79f1-4918-9cb4-8c4c636c80eb", "start_date": "1880-2014", "end_date": "", "file_title": "SA Museum Ichthyology Collection", "download_url": "https://collections.ala.org.au/public/show/co57", "format": "HTML", "file_description": "The fish collection is comprised of over eleven thousand registered lots. The collection has a strong regional focus with freshwater fishes of southern and central Australia and Southern Ocean marine fishes, including deep-sea species, well represented.", "file_created": "2013-03-21T05:16:04.727350", "file_modified": "2013-04-10T03:52:29.999055", "file_size": "32768.0", "licence": "Creative Commons Attribution"} {"rowid": 852, "dataset_title": "South Australian Museum Ichthyology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:15:15.690837", "dataset_modified": "2020-02-18T23:51:32.608265", "dataset_description": "The South Australian Museum fish collection is comprised of over eleven thousand registered lots. The collection has a strong regional focus with freshwater fishes of southern and central Australia and Southern Ocean marine fishes, including deep-sea species, well represented.\n\nThe SA Museum manages this dataset using the EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a09d615c-79f1-4918-9cb4-8c4c636c80eb", "start_date": "1880-2014", "end_date": "", "file_title": "Information about ichthyology at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/fish", "format": "HTML", "file_description": "Information about ichthyology at the South Australian Museum", "file_created": "2014-06-04T08:35:49.718522", "file_modified": "2014-06-04T09:00:24.940416", "file_size": "9196.0", "licence": "Creative Commons Attribution"} {"rowid": 856, "dataset_title": "South Australian Museum Ornithology Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:59:59.088745", "dataset_modified": "2020-02-18T01:29:42.117037", "dataset_description": "This section houses over 55,000 registered and 6,000 unregistered specimens including skins, eggs, skeletons, nests and spirit collections. It has an excellent collection of South Australian species, both historical and recent, a large collection of stomach contents, which is used to determine diets, and an Australia wide collection of eggs. \n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a4fbf1a3-bb6f-4b59-860a-3283200e7a90", "start_date": "1860-2014", "end_date": "", "file_title": "Information about ornithology at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/birds", "format": "HTML", "file_description": "Information about ornithology at the South Australian Museum.", "file_created": "2014-06-04T08:31:28.782054", "file_modified": "2014-06-04T09:00:26.048860", "file_size": "8458.0", "licence": "Creative Commons Attribution"} {"rowid": 860, "dataset_title": "South Australian Museum Mammalogy Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:53:24.949394", "dataset_modified": "2020-02-18T01:29:11.710141", "dataset_description": "There are over 24,000 specimens in this collection, including skulls, skins, skeletons, spirit specimens, photographs and frozen tissue. It includes over 1600 marine mammals and its comprehensiveness makes this collection the best of its kind in Australia. Other strengths of the collection include South Australian arid zone native mammals, many specimens of extinct species such as the thylacine and large numbers of bat species.\n\nThe collection has also historical importance as it includes many specimens from early expeditions in Australia and to the subantarctic Islands and Antarctica. Well-known people such as Sir Douglas Mawson, Edgar R. Waite and Hedley Finlayson have contributed to the collection.\n\nThe mammal collection includes sub-fossils and remains from owl pellets. This collection consists entirely of Australian material with 20000 - 25000 specimens covering 76 mammal species (including introduced species). The collection is made up of bulk bone deposits from the floor of caves, bones excavated from sinkholes, bones extracted from predator scats (eg. dingoes, foxes and Ghost Bats), pellets from birds of prey, particularly barn owls (both recent and pre-settlement material), and stick nest rat nests and middens. The sub-fossil collection is the second best of its kind in Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/35f2b0e5-a207-4114-b2c5-b2f12aa8b8ad", "start_date": "1880-2014", "end_date": "", "file_title": "Information about mammalogy at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/mammals", "format": "HTML", "file_description": "Information about mammalogy at the South Australian Museum.", "file_created": "2014-06-04T08:40:10.088620", "file_modified": "2014-06-04T09:00:23.571729", "file_size": "9232.0", "licence": "Creative Commons Attribution"} {"rowid": 864, "dataset_title": "South Australian Museum Herpetology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:07:17.288715", "dataset_modified": "2020-02-18T01:28:14.693870", "dataset_description": "Over 70,000 specimens have been registered in this collection, which has a particular emphasis on South Australian and arid zone fauna. A second major regional focus is Melanesia, especially the island of New Guinea (Papua New Guinea and Papua Province, Indonesia), with some 6,000 registered specimens. Most material is formalin-fixed and stored in 70% alcohol, with tadpoles stored in formalin. There is a significant dry skeletal collection of over 1,500 specimens, mostly skulls, and this will continue to be expanded. Since 1980, the great majority of specimens acquired (approx. 40,000) have had tissue samples (mostly liver) taken for genetic and biochemical research. These are held in the S.A. Museum's Australian Biological Tissue Collection. All specimens are individually registered and the data entered on a collections management system. All specimens are stored on-site in the S.A. Museum Science Centre alcohol storage facilities.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. \n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e0cc2850-5096-44ec-9602-7b5abfaa2094", "start_date": "1880-2014", "end_date": "", "file_title": "Information about herpetology at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/reptiles-amphibians", "format": "HTML", "file_description": "Information about herpetology at the South Australian Museum", "file_created": "2014-06-04T08:44:13.780750", "file_modified": "2014-06-04T09:00:21.690925", "file_size": "9109.0", "licence": "Creative Commons Attribution"} {"rowid": 908, "dataset_title": "South Australian Museum Marine Invertebrates collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-07-05T03:33:27.070432", "dataset_modified": "2017-05-08T02:34:29.724267", "dataset_description": "The Marine invertebrates collection is currently represented by 23 phyla and holds more than one million specimen lots including 1,700 holotypes, 11,300 secondary types, 33,000 registered lots and 1,400 microscope slide preparations. Specimens include molluscs, crustaceans, worms, sponges, jellyfish, corals and sea anemones, sea stars and sea urchins.\n\nOf these specimens about 5,500 have been databased and are accessible through the Atlas of Living Australia, more than 1500 of them with digital images of the specimen and label.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nThe Museum has also been using the ALA's Online Volunteer Digitisation Portal, [DIGIVOL](https://volunteer.ala.org.au/) to digitise the data for Marine Invertebrate specimens. To facilitate this a large quantity of specimens have been imaged.\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c82dc4f6-85d7-4999-b5d5-6eeb97dfef85", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "South Australian Museum Marine Invertebrates Collection", "download_url": "https://biocache.ala.org.au/occurrences/search?q=collection_uid:co165", "format": "HTML", "file_description": "The South Australian Museum Marine Invertebrates Collection data available through the Atlas of Living Australia", "file_created": "2016-07-05T13:34:15.892177", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 909, "dataset_title": "South Australian Museum Marine Invertebrates collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-07-05T03:33:27.070432", "dataset_modified": "2017-05-08T02:34:29.724267", "dataset_description": "The Marine invertebrates collection is currently represented by 23 phyla and holds more than one million specimen lots including 1,700 holotypes, 11,300 secondary types, 33,000 registered lots and 1,400 microscope slide preparations. Specimens include molluscs, crustaceans, worms, sponges, jellyfish, corals and sea anemones, sea stars and sea urchins.\n\nOf these specimens about 5,500 have been databased and are accessible through the Atlas of Living Australia, more than 1500 of them with digital images of the specimen and label.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nThe Museum has also been using the ALA's Online Volunteer Digitisation Portal, [DIGIVOL](https://volunteer.ala.org.au/) to digitise the data for Marine Invertebrate specimens. To facilitate this a large quantity of specimens have been imaged.\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c82dc4f6-85d7-4999-b5d5-6eeb97dfef85", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "Specimen images from the South Australian Museum Marine Invertebrates collection", "download_url": "https://biocache.ala.org.au/occurrences/search?q=collection_uid%3Aco165&fq=multimedia%3A%22Image%22#tab_recordImages", "format": "HTML", "file_description": "The records from the South Australian Museum Marine Invertebrates collection which are accompanied by images.", "file_created": "2016-07-05T13:35:25.650675", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 913, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "South Australian Museum Terrestrial Invertebrate Collection", "download_url": "https://collections.ala.org.au/public/show/co56", "format": "HTML", "file_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \n", "file_created": "2013-03-21T05:58:09.709614", "file_modified": "2013-04-09T13:48:30.513485", "file_size": "32768.0", "licence": "Creative Commons Attribution"} {"rowid": 916, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "Information about terrestrial invertebrates at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/terrestrial-invertebrates", "format": "HTML", "file_description": "Information about terrestrial invertebrates at the South Australian Museum.", "file_created": "2014-06-04T08:21:41.870868", "file_modified": "2014-06-04T09:00:29.267363", "file_size": "9619.0", "licence": "Creative Commons Attribution"} {"rowid": 853, "dataset_title": "South Australian Museum Ornithology Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:59:59.088745", "dataset_modified": "2020-02-18T01:29:42.117037", "dataset_description": "This section houses over 55,000 registered and 6,000 unregistered specimens including skins, eggs, skeletons, nests and spirit collections. It has an excellent collection of South Australian species, both historical and recent, a large collection of stomach contents, which is used to determine diets, and an Australia wide collection of eggs. \n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \n\nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a4fbf1a3-bb6f-4b59-860a-3283200e7a90", "start_date": "1860-2014", "end_date": "", "file_title": "SA Museum Ornithology Collection", "download_url": "https://collections.ala.org.au/public/show/co127", "format": "Mixed Formats", "file_description": "This section houses over 55,000 registered and 6,000 unregistered specimens including skins, eggs, skeletons, nests and spirit collections. It has an excellent collection of South Australian species, both historical and recent, a large collection of stomach contents, which is used to determine diets, and an Australia wide collection of eggs.", "file_created": "2013-03-21T06:00:49.912951", "file_modified": "2013-04-09T13:48:29.368728", "file_size": "32768.0", "licence": "Creative Commons Attribution"} {"rowid": 857, "dataset_title": "South Australian Museum Mammalogy Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-03-21T05:53:24.949394", "dataset_modified": "2020-02-18T01:29:11.710141", "dataset_description": "There are over 24,000 specimens in this collection, including skulls, skins, skeletons, spirit specimens, photographs and frozen tissue. It includes over 1600 marine mammals and its comprehensiveness makes this collection the best of its kind in Australia. Other strengths of the collection include South Australian arid zone native mammals, many specimens of extinct species such as the thylacine and large numbers of bat species.\n\nThe collection has also historical importance as it includes many specimens from early expeditions in Australia and to the subantarctic Islands and Antarctica. Well-known people such as Sir Douglas Mawson, Edgar R. Waite and Hedley Finlayson have contributed to the collection.\n\nThe mammal collection includes sub-fossils and remains from owl pellets. This collection consists entirely of Australian material with 20000 - 25000 specimens covering 76 mammal species (including introduced species). The collection is made up of bulk bone deposits from the floor of caves, bones excavated from sinkholes, bones extracted from predator scats (eg. dingoes, foxes and Ghost Bats), pellets from birds of prey, particularly barn owls (both recent and pre-settlement material), and stick nest rat nests and middens. The sub-fossil collection is the second best of its kind in Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the Darwin Core metadata schema (DwC) and semi-regularly exported to the Atlas of Living Australia (ALA: http://www.ala.org.au/) and the Online Zoological Collections of Australian Museums (OZCAM: http://www.ozcam.org.au/). Information about Darwin Core can be found here: http://rs.tdwg.org/dwc/index.htm. Data sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. \nBoth of those sites make it possible to combine, interrogate and analyse data through web services such as the Spatial Analysis Portal (http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies. \n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes. \n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/35f2b0e5-a207-4114-b2c5-b2f12aa8b8ad", "start_date": "1880-2014", "end_date": "", "file_title": "SA Museum Mammalogy Collection", "download_url": "https://collections.ala.org.au/public/show/co126", "format": "Mixed Formats", "file_description": "There are over 24,000 specimens in this collection, including skulls, skins, skeletons, spirit specimens, photographs and frozen tissue. It includes over 1600 marine mammals and its comprehensiveness makes this collection the best of its kind in Australia.", "file_created": "2013-03-21T05:54:08.056604", "file_modified": "2013-04-09T13:48:31.293049", "file_size": "32768.0", "licence": "Creative Commons Attribution"} {"rowid": 861, "dataset_title": "South Australian Museum Herpetology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:07:17.288715", "dataset_modified": "2020-02-18T01:28:14.693870", "dataset_description": "Over 70,000 specimens have been registered in this collection, which has a particular emphasis on South Australian and arid zone fauna. A second major regional focus is Melanesia, especially the island of New Guinea (Papua New Guinea and Papua Province, Indonesia), with some 6,000 registered specimens. Most material is formalin-fixed and stored in 70% alcohol, with tadpoles stored in formalin. There is a significant dry skeletal collection of over 1,500 specimens, mostly skulls, and this will continue to be expanded. Since 1980, the great majority of specimens acquired (approx. 40,000) have had tissue samples (mostly liver) taken for genetic and biochemical research. These are held in the S.A. Museum's Australian Biological Tissue Collection. All specimens are individually registered and the data entered on a collections management system. All specimens are stored on-site in the S.A. Museum Science Centre alcohol storage facilities.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. \n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e0cc2850-5096-44ec-9602-7b5abfaa2094", "start_date": "1880-2014", "end_date": "", "file_title": "SA Museum Herpetology Collection", "download_url": "https://collections.ala.org.au/public/show/co125", "format": "Mixed Formats", "file_description": "Over 70,000 specimens have been registered in this collection, which has a particular emphasis on South Australian and arid zone fauna", "file_created": "2013-03-21T05:11:08.311453", "file_modified": "2013-04-10T03:52:30.946234", "file_size": "32768.0", "licence": "Creative Commons Attribution"} {"rowid": 865, "dataset_title": "South Australian Museum Arachnology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-06-24T05:00:45.749753", "dataset_modified": "2020-02-18T01:13:20.998657", "dataset_description": "The Arachnology Collection at the South Australian Museum contains around 300,000 arachnids as well as many centipedes and millipedes (Myriapoda). Of these around 56,000 have been databased.\n\nSpider specimens make up the largest component, with some 200,000 specimens stored in alcohol. The Sparassidae (huntsman spiders) are particularly well represented in the collection with over 2000 Australasian specimens.\n\nThe collection also houses a significant mite (Acarina) collection (about 45,000 specimens) in alcohol or on glass microscope slides, approximately 5000 scorpion (Scorpiones) specimens and a smaller number of Myriapoda specimens (about 3600).\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/6812c858-5ff1-4188-9997-befffbc42dbe", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "South Australian Museum Arachnology collection on the Atlas of Living Australia", "download_url": "https://collections.ala.org.au/public/show/co202", "format": "Mixed Formats", "file_description": "The Atlas of Living Australia page for the South Australian Museum Arachnology collection. \n\nAs an alternative to downloading the entire dataset the ALA also provides [an API](http://api.ala.org.au/)", "file_created": "2016-06-24T15:02:39.155583", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 672, "dataset_title": "South Australians of World War 1 Photographs Flickr set", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-05-21T09:06:33.212603", "dataset_modified": "2020-02-24T02:07:29.790770", "dataset_description": "A selection (542) of portraits of soldiers. This set of portraits comes from our Chamberlain Collection and includes portraits of Soldiers prior to embarkation in studios and at various military camps in South Australia including Morphettville and Jubilee Oval.\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/0384a465-903c-4b2b-93ec-826acbe2c66b", "start_date": "1914-1916", "end_date": "", "file_title": "Flickr API", "download_url": "https://www.flickr.com/services/api/", "format": "API", "file_description": "This dataset can be used in conjunction with the Flickr API.", "file_created": "2014-07-07T04:03:42.373664", "file_modified": "2014-07-07T05:05:26.071019", "file_size": "20.0", "licence": "Creative Commons Attribution"} {"rowid": 658, "dataset_title": "River Murray general plan SA, 1910", "publisher": "State Library of South Australia", "author": "Online Projects, State Library of South Australia", "dataset_issued": "2014-06-22T16:54:49.101553", "dataset_modified": "2022-01-24T04:26:16.272965", "dataset_description": "Set of navigation charts of part of the South Australian section of the River Murray from Swan Reach to the eastern boundary of the State, 153 to 405 \u00be miles from the Murray mouth. Produced and issued by the Engineer-in-Chief\u2019s Department, South Australia, published by A. Vaughan, SA Government Photo-lithographer in 1910. Scale approximately 1:9,600. Depths shown by soundings and shading.\n\nShows surrounding roads and includes brief description of terrain and the vegetation beside the river. \nThis dataset consists of 71 map files grouped as 18 plans or charts and including 1 key plan index to the set, provided in JPEG and PDF versions.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/2bf90e40-45bc-447b-8423-a122d682a9d9", "start_date": "1910", "end_date": "", "file_title": "River Murray general plan SA 1910", "download_url": "https://data.sa.gov.au/data/dataset/2bf90e40-45bc-447b-8423-a122d682a9d9/resource/64f3d218-572a-4391-bf80-94b62f252a14/download/river-murray-map835aj9600-v2.csv", "format": "CSV", "file_description": "Set of navigation charts of part of the South Australian section of the River Murray from Swan Reach to the eastern boundary of the State, 153 to 405 \u00be miles from the Murray mouth.", "file_created": "2014-06-22T16:57:09.874279", "file_modified": "2022-01-24T04:26:16.256181", "file_size": "32316.0", "licence": "Creative Commons Attribution"} {"rowid": 660, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/63aaa2e1-b689-4cc9-8835-95d76dd19e74/download/sweetphotographs.csv", "format": "CSV", "file_description": "**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T15:53:39.871109", "file_modified": "2017-07-06T05:53:39.717475", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 662, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/e442f543-24bd-48be-b0a2-1510210f73c8/download/sweetphotographs.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n", "file_created": "2016-07-01T13:47:00.730719", "file_modified": "2016-07-01T03:47:00.594638", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 664, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/11263fd8-c13d-409e-b31a-ce8366a6b675/download/sweetphotos.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T15:10:21.575727", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 665, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/24e1ae74-585b-4d6f-a7b4-ba9d0df4a44c/download/2014sweet.csv", "format": "CSV", "file_description": "Compiled 2014. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2014-06-10T13:54:26.160189", "file_modified": "2022-01-24T04:23:39.967575", "file_size": "429962.0", "licence": "Creative Commons Attribution"} {"rowid": 666, "dataset_title": "Annual Report 20-21", "publisher": "State Library of South Australia", "author": "State Library", "dataset_issued": "2021-10-24T23:51:38.636071", "dataset_modified": "2021-10-24T23:52:11.836623", "dataset_description": "Annual Report", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/63e3f460-29c1-4c83-91d6-815fd8afc32b", "start_date": "2020-06-30", "end_date": "2021-07-01", "file_title": "Libraries Board of South Australia annual-report data DATASA 2021.csv", "download_url": "https://data.sa.gov.au/data/dataset/63e3f460-29c1-4c83-91d6-815fd8afc32b/resource/29743feb-f24f-43d6-848c-6c2e9e14fc67/download/libraries-board-of-south-australia-annual-report-data-datasa-2021.csv", "format": "CSV", "file_description": "", "file_created": "2021-10-24T23:52:05.099527", "file_modified": "2021-10-24T23:52:05.057876", "file_size": "2797.0", "licence": "Creative Commons Attribution"} {"rowid": 670, "dataset_title": "Libraries Board of South Australia Annual Report data", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2017-11-08T23:22:10.102294", "dataset_modified": "2020-10-21T22:39:06.054568", "dataset_description": "Statistical data that appears in the Libraries Board of South Australia Annual Reports.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/3070a7b7-f76d-432d-8c9a-f9daf6077efa", "start_date": "2015-07-01", "end_date": "2019-06-30", "file_title": "Libraries Board of South Australia 2019-2020", "download_url": "https://data.sa.gov.au/data/dataset/3070a7b7-f76d-432d-8c9a-f9daf6077efa/resource/8a585e71-ae7c-427b-9b44-1bbcd0887c24/download/libraries-board-of-south-austr2019-annual-report-data_datasa.csv", "format": "CSV", "file_description": "Libraries Board Annual Report Data for 2019-20 also includes data for 2016-2020", "file_created": "2020-10-21T22:32:15.975530", "file_modified": "2020-10-21T22:32:15.904518", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 687, "dataset_title": "Old Colonists photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-17T04:23:32.034128", "dataset_modified": "2019-08-29T04:44:14.837878", "dataset_description": "Portrait photographs of 'Old Colonists' \u2013 settlers who arrived in the colony of South Australia before 1841. The men Old Colonists were invited to attend a banquet held by businessman Emanuel Solomon on 28 December 1871 to commemorate 35 years since European colonisation. Photographs are sourced from two composite or 'mosaic' photographs, one of men and one of women.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9", "start_date": "1856-01-01", "end_date": "1885-12-31", "file_title": "Old Colonists Men", "download_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9/resource/982e89d4-066c-467d-a078-e8cf39228d7d/download/old_colonists_men.csv", "format": "CSV", "file_description": "515 photographs\n\n**Explanation of fields**\n\n- **RECORD #(BIBLIO)** : SLSA unique identifier eg \"b31236881\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **DATES/PUBLICATION DETAILS** : Date of the photograph\n- **DESCRIPTION/QUANTITY** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES/COLLECTION** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the web image\n- **MOSAIC URL** : URL of the composite photograph of all portraits", "file_created": "2019-06-17T04:26:30.618656", "file_modified": "2019-06-17T04:26:30.557168", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 689, "dataset_title": "Old Colonists photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-17T04:23:32.034128", "dataset_modified": "2019-08-29T04:44:14.837878", "dataset_description": "Portrait photographs of 'Old Colonists' \u2013 settlers who arrived in the colony of South Australia before 1841. The men Old Colonists were invited to attend a banquet held by businessman Emanuel Solomon on 28 December 1871 to commemorate 35 years since European colonisation. Photographs are sourced from two composite or 'mosaic' photographs, one of men and one of women.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9", "start_date": "1856-01-01", "end_date": "1885-12-31", "file_title": "Old Colonists Women", "download_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9/resource/88b20768-1d58-4879-8ffd-631119c11d1c/download/old_colonists_women.csv", "format": "CSV", "file_description": "600 photographs\n\n**Explanation of fields**\n\n- **RECORD #(BIBLIO)** : SLSA unique identifier eg \"b2074769x\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **DATES/PUBLICATION DETAILS** : Date of the photograph\n- **DESCRIPTION/QUANTITY** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES/COLLECTION** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the web image\n- **MOSAIC URL** : URL of the composite photograph of all portraits", "file_created": "2019-06-17T05:19:00.981788", "file_modified": "2019-06-17T05:19:00.884090", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 691, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "Prelude to the epic flight", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/b23219af-64ca-4e26-8342-68f9ed3454e8/download/prelude_to_the_epic_flight.csv", "format": "CSV", "file_description": "23 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:48:58.462035", "file_modified": "2019-06-24T02:48:58.400413", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 693, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "The Epic Flight", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/9ee013bb-ae93-4de8-99ed-74f75aab74c5/download/the_epic_flight.csv", "format": "CSV", "file_description": "856 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:50:14.529743", "file_modified": "2019-06-24T02:50:14.463004", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 695, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "Death and Funeral", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/cd19b95a-093f-453a-b3a0-42427e231486/download/death_and_funeral.csv", "format": "CSV", "file_description": "336 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:51:27.130577", "file_modified": "2019-06-24T02:51:27.061884", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 697, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/f9c75608-0939-4439-ae4d-15e28476bb74/download/duryeaphotographs.csv", "format": "CSV", "file_description": "**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T16:15:59.980827", "file_modified": "2017-07-06T06:15:59.875068", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 699, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/0122114c-c751-49b0-b09b-1d13ed336a31/download/duryeaphotographs.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2016-07-01T14:30:03.433168", "file_modified": "2016-07-01T04:30:03.322060", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 701, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea.", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/fd8121b6-7529-4d29-b2d0-1a293154b9a6/download/duryeaphotos.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T14:33:58.129673", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 702, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea.", "download_url": "https://data.sa.gov.au/data/storage/f/2014-06-10T13%3A03%3A07.767Z/2014duryea.csv", "format": "CSV", "file_description": "Compiled 2014. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2014-06-10T13:15:35.200063", "file_modified": "2014-10-30T09:00:56", "file_size": "76937.0", "licence": "Creative Commons Attribution"}