glam-datasets
20 rows where publisher = "History Trust of South Australia"
This data as json, CSV (advanced)
Suggested facets: dataset_title, dataset_modified, dataset_description, info_url, start_date, end_date, file_modified, dataset_issued (date), dataset_modified (date), start_date (date), end_date (date), file_created (date), file_modified (date)
file_description ✖
- #SA History Hub GEOJSON Endpoint http://data.history.sa.gov.au/sahistoryhub/{type} Replace {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): * place * thing * organisation * event 4
- - 1
- #Passengers in History API Documentation# The 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. <br /> An example of a basic implementation can be viewed at https://data.history.sa.gov.au/gallery_pih.php?type=vessel&startindex=0 <br /> Replace 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 <br /> The example code can be downloaded from https://data.history.sa.gov.au/gallery_pih.php.txt <br /> The open_data index contains 7 different types of content: <br /> * voyage * passenger * vessel * master * port * source * organisation <br/> Additionally, the photo index (photo_index) can be used to retrieve photos (specify the index using the index_id query parameter). <br/> A 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). The is_nid field is the unique identifier. <br/> The 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. <br/> There 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. ##Examples## A typical workflow might be: <br/> Get the voyage/s that arrived in 1836: <br/> [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) <br/><br/> Use a join to get the passengers for one of the voyages (use the voyage is_nid field) <br/> [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) <br/><br/> Use a join to find the origin and destination of a particular voyage: <br/> [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) <br/> [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) <br/><br/> Use a join to find the vessel for the voyage: <br/> [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) <br/><br/> Use a join to find photos of the vessel (using the vessel is_nid): <br/> [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) <br/><br/> Use a join to find out where a vessel was built (using the vessel is_nid): <br/> [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) <br/><br/> Use a join to find the built by organisation for a particular vessel: <br/> [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) <br/><br/> Get organisation details (using the organisation is_nid): <br/> [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) <br/><br/> Or find all vessels built by the organisation (using the organisation is_nid): <br/> [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) <br/><br/> ##Other Useful Queries Find all photos that are attached to a passenger: <br/> data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_nid to=im_file_usage_list}ss_type:(passenger OR image) <br/><br/> Or find all passengers that have a photo attached (the reverse): <br/> data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=im_file_usage_list to=is_nid}ss_type:(passenger OR image) <br/><br/> All 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 ‘Adelaide’ in their tm_title field but not the word ‘port’: <br/> data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND ss_type:vessel AND tm_title:(adelaide -port) <br/> In this case ss_type is specifically set to be ‘vessel’. The – represents negation of the term. There are many more options – refer to a good blog here [https://yonik.com/solr/query-syntax/](https://yonik.com/solr/query-syntax/) <br/><br/> Facet search on the voyage destination for a date range between 1834 and 1836: <br/> https://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 <br/> In this case use a port search by node to get the titles of the ports eg.(using the first facet): <br/> https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20is_nid:887339 <br/> The answer is most likely to be Sydney! <br/><br/> ##Content Type Fields## ###Passenger <br/> * is_nid * ss_type * tm_field_occupation * tm_field_surname * tm_field_firstname * is_field_age * is_arrival_year <br/> ###Voyage <br/> * is_nid * ss_type * ds_field_depart_date * is_field_destination * tm_field_master * is_field_origin * is_field_vessel * is_field_voyage_year * tm_title <br/> ###Vessel <br/> * is_nid * ss_type * tm_title * tm_field_services * im_field_sources * is_field_year_end * is_field_year_start * is_field_built_by * is_field_built_where * is_field_built_year * tm_field_demise * tm_field_rig * tm_field_dimensions * tm_field_tonnage <br/> ###Source <br/> * is_nid * ss_type * tm_title * tm_field_location * tm_field_reference <br/> ###Port <br/> * is_nid * ss_type * tm_title <br/> ###Organisation <br/> * is_nid * ss_type * tm_title <br/> ###Photos <br/> * is_fid: Unique ID for a file * tm_field_citation: Includes copyright information * tm_field_file_image_title_text: Image title * tm_field_location: Location of the image * tm_field_source: Source of the image * is_file_usage_count: Number of times this file is used in passengersinhistory.sa.gov.au * im_file_usage_list: List of content that uses this file * ss_url: Url to the file 1
- **Community History Endpoints** **Organisations** http://data.history.sa.gov.au/communityhistory/organisations **News** http://data.history.sa.gov.au/communityhistory/news **Events** http://data.history.sa.gov.au/communityhistory/events **Blogs** http://data.history.sa.gov.au/communityhistory/blogs **Article Detail** The 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: http://data.history.sa.gov.au/communityhistory/{nid} Replace {nid} with the nid obtained from one of the above endpoints. **Files** The 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: http://data.history.sa.gov.au/communityhistory/{nid}/files Replace {nid} with the nid obtained from one of the above endpoints. **Taxonomy** http://data.history.sa.gov.au/communityhistory/taxonomy/{id} Replace {id} with the taxonomy term id (represented by target_id throughout content) 1
- **History Festival Endpoints** **Events** http://data.history.sa.gov.au/abouttime/events/{year} Replace {year} with 2013, 2014 or 2015 **Event Detail** The nid field on each of the events (listed using the 'Events' endpoint) can be used to get event specific detail using the following endpoint: http://data.history.sa.gov.au/abouttime/event/{year}/{nid} Replace {year} with 2013, 2014, 2015 or 2016 Replace {nid} with the nid obtained from one of the events listing. **Event Images** The 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: http://data.history.sa.gov.au/abouttime/event/{year}/{nid}/files Replace {year} with 2013, 2014, 2015 or 2016 Replace {nid} with the nid obtained from one of the events listing. 1
- Developer Portal. 1
- Executive employment at the History Trust of South Australia for the period 2011-12 to 2020-21 for annual reporting purposes. 1
- Fraud detection at History Trust of South Australia for annual reporting processes covers period 2011 - 2021 1
- Information surrounding internees sourced from http://www.wakefieldpress.com.au/product.php?productid=1201 and National Australian Archives 1
- Instructions are provided in the primary URL An example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=bondstudio&startindex=0 The example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt 1
- Instructions are provided in the primary URL An example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=collection&startindex=0 The example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt 1
- Public complaints received by History Trust of South Australia for the period 2011-12 to 2020-21 for annual reporting purposes. 1
- Refer to main page for information surrounding the end points. Meta data and images can be accessed through the API. An example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=sagpc&startindex=0 The example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt 1
- Whistleblower disclosure at the History Trust of South Australia for the periods 2011-12 to 2017-21. 1
- Workplace Injury Claims received by History Trust of South Australia for period 2019-20 for annual reporting purposes. 1
- number if consultants engaged by the History Trust of SA for annual reporting purposes 1
- number of contractors engaged by the History Trust of SA 2019-20 1
source
publisher
- History Trust of South Australia · 20 ✖
Link | rowid ▼ | dataset_title | publisher | author | dataset_issued | dataset_modified | dataset_description | source | info_url | start_date | end_date | file_title | download_url | format | file_description | file_created | file_modified | file_size | licence |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
826 | 826 | Executive Employment at the History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2017-09-28T03:04:15.192438 | 2021-12-14T00:05:31.975545 | Executive employment at the History Trust of South Australia for the period 2011-12 to 2019-20 for a… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/f751c9b2-ceb4-4c25-8dfa-06116a76e3df | 2011-07-01 | 2020-06-30 | Executive Employment at the History Trust of South Australia 2011-2020 | 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 | CSV | Executive employment at the History Trust of South Australia for the period 2011-12 to 2020-21 for a… | 2018-09-03T04:51:56.073524 | 2021-12-14T00:05:25.121777 | 209.0 | Creative Commons Attribution |
827 | 827 | Consultants engaged by the History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2017-09-28T02:45:01.007581 | 2021-12-14T00:04:16.335642 | A report of external consultants engaged by the History Trust of South Australia for the period 2011… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/e1d89da7-8ec7-4041-ab0a-818d8925d122 | 2011-07-01 | 2020-06-30 | Consultants engaged by the History Trust of South Australia | https://data.sa.gov.au/data/dataset/e1d89da7-8ec7-4041-ab0a-818d8925d122/resource/b0f9c2d3-3f45-4207-bda6-724bc3ad56ed/download/consultantsengagedhtsaperiod2011-12to2020-21.csv | CSV | number if consultants engaged by the History Trust of SA for annual reporting purposes | 2019-11-08T00:52:08.054619 | 2021-12-14T00:04:09.561528 | 119.0 | Creative Commons Attribution |
828 | 828 | Public Complaints History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2017-09-28T02:59:21.279583 | 2021-12-14T00:03:11.366438 | Public Complaints received by History Trust of South Australia for the period 2011-12 to 2018-20 for… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/e0286abe-d1ba-4cbd-a48b-628b854f3cf9 | 2011-07-01 | 2020-06-30 | Public complaints received by History Trust of South Australia | 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 | CSV | Public complaints received by History Trust of South Australia for the period 2011-12 to 2020-21 for… | 2018-09-03T04:47:28.935571 | 2021-12-14T00:03:04.113282 | 229.0 | Creative Commons Attribution |
829 | 829 | Fraud detection at History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2017-09-28T02:56:50.547552 | 2021-12-14T00:01:53.940313 | Fraud detected at History Trust of South Australia for the period 2011-12 to 2018-20 for annual repo… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/7b7f379c-d4a9-4b60-8c3e-92a42a2fc346 | 2011-07-01 | 2020-06-30 | Fraud detection at History Trust of South Australia 2011-2021 | 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 | CSV | Fraud detection at History Trust of South Australia for annual reporting processes covers period 201… | 2018-09-03T05:02:56.430669 | 2021-12-14T00:01:47.107979 | 122.0 | Creative Commons Attribution |
830 | 830 | Whistleblowers Disclosure for History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2017-09-28T02:53:45.094443 | 2021-12-14T00:01:24.874833 | Whistleblower disclosure at the History Trust of South Australia for the period 2011-12 to 2019-20 f… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/9a9aea08-dc9a-4ad0-9ce6-0127349cecb3 | 2011-07-01 | 2020-06-30 | Whistleblowers Disclosure for History Trust of South Australia 2011-2021 | 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 | CSV | Whistleblower disclosure at the History Trust of South Australia for the periods 2011-12 to 2017-21. | 2018-09-03T04:55:39.086918 | 2021-12-14T00:01:17.948309 | 127.0 | Creative Commons Attribution |
831 | 831 | Contractors engaged by the History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2018-09-04T02:43:20.388353 | 2021-12-14T00:00:41.728886 | Contractors by History Trust of South Australia for the period 2019-20 for annual reporting purposes… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/acf3e43e-823b-4238-a620-3e4efaf61a28 | 2017-07-01 | 2020-06-30 | Contractors engaged by the History Trust of South Australia | 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 | CSV | number of contractors engaged by the History Trust of SA 2019-20 | 2019-11-08T01:40:32.149049 | 2021-12-14T00:00:34.775471 | 1025.0 | Creative Commons Attribution |
832 | 832 | Passengers in History | History Trust of South Australia | History Trust of South Australia | 2016-06-28T00:52:30.371967 | 2021-09-08T23:20:52.626089 | _Passengers in History_ brings together two wonderful resources: <br /><br /> A passengers data base… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/ffa75eb8-475a-460b-91d1-714f269016d5 | 1836-01-01 | 1961-01-01 | Passengers in History Search Index | https://data.history.sa.gov.au:8983/solr/passengers/select | API | #Passengers in History API Documentation# The Passengers in History data endpoint has been provided … | 2016-06-28T10:54:22.341773 | Creative Commons Attribution | ||
833 | 833 | Workplace Injury Claims History Trust of South Australia | History Trust of South Australia | History Trust of South Australia | 2018-09-03T05:13:04.265874 | 2020-12-15T06:34:11.021220 | Incidents of workplace injury claims received by History Trust of South Australia for the period 201… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/acb979d9-d04d-4a83-a8e8-f0c3d5149dcb | 2017-07-01 | 2020-06-30 | Workplace Injury Claims received by History Trust of South Australia 2019-20 | https://data.sa.gov.au/data/dataset/acb979d9-d04d-4a83-a8e8-f0c3d5149dcb/resource/526183df-592f-487f-9f3a-1277fb24d272/download/workplaceinjuryhtsaperiod2019-20.csv | CSV | Workplace Injury Claims received by History Trust of South Australia for period 2019-20 for annual r… | 2018-09-03T05:14:12.730644 | 2020-12-15T06:30:21.532526 | 187.0 | Creative Commons Attribution |
834 | 834 | Women’s Suffrage Petition 1894 (South Australia) | History Trust of South Australia | History Trust of South Australia | 2019-04-04T01:50:27.805462 | 2019-04-10T07:44:25.748567 | On 23 August 1894 George Hawker, member for North Adelaide, presented to the South Australian House … | data.sa.gov.au | https://data.sa.gov.au/data/dataset/3f6fab54-8cc8-4732-9c1e-fb3f73df53b0 | 1894-01-01 | Suffrage125 Petition | https://data.sa.gov.au/data/dataset/3f6fab54-8cc8-4732-9c1e-fb3f73df53b0/resource/68036d75-1ea2-4bb7-9efe-71ea7115227c/download/suffrage125_petition.json | JSON | 2019-04-04T02:17:13.619366 | 2019-04-04T02:17:13.572653 | Other (Open) | |||
835 | 835 | Bond Studios Glass Negative Collection | History Trust of South Australia | History Trust of South Australia | 2017-06-27T01:57:42.716364 | 2017-07-28T07:37:33.822683 | The collection comprises 2,558 glass negatives from Bond Studios in Port Adelaide. AE Bond was list… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/94fb167a-65a2-491b-ab3e-c40f96351882 | 1867-01-01 | 1930-01-01 | Bond Studios Glass Negative Collection | https://data.history.sa.gov.au/bondstudio | API | Instructions are provided in the primary URL An example of a basic implementation can be viewed at … | 2017-06-27T11:59:58.825973 | Other (Open) | ||
836 | 836 | South Australian Government Photographic Collection | History Trust of South Australia | History Trust of South Australia | 2017-06-23T06:53:25.398879 | 2017-07-28T07:36:38.007416 | The collection broadly documents sixty-seven years of government activities, state celebrations, and… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/c5a3374b-bc28-41a5-9f7b-14d9b92e7350 | South Australian Government Photographic Collection API | https://data.history.sa.gov.au/sagpc | API | Refer to main page for information surrounding the end points. Meta data and images can be accessed … | 2017-06-23T16:55:54.382324 | Other (Open) | ||||
837 | 837 | South Australian Government Photographic Collection | History Trust of South Australia | History Trust of South Australia | 2017-06-23T06:53:25.398879 | 2017-07-28T07:36:38.007416 | The collection broadly documents sixty-seven years of government activities, state celebrations, and… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/c5a3374b-bc28-41a5-9f7b-14d9b92e7350 | SA Government Photographic Collection | https://developers.sa.gov.au/docs/services/597822927515ee1398090666/operations/597a82807515ee0f204443b5 | API | Developer Portal. | 2017-07-28T17:36:38.052331 | Other (Open) | ||||
838 | 838 | State History Collection (features) | History Trust of South Australia | History Trust of South Australia | 2017-06-27T02:05:38.344832 | 2017-07-27T23:54:53.357526 | The History Trust of South Australia is responsible for the State History Collection, a collection o… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/a6457e37-6d36-4277-9318-dfe63ff28358 | 1836-01-01 | 1970-01-01 | State History Collection | https://data.history.sa.gov.au/collection | API | Instructions are provided in the primary URL An example of a basic implementation can be viewed at … | 2017-06-27T12:06:29.400254 | Creative Commons Attribution-NonCommercial | ||
839 | 839 | Community History Live Stream | History Trust of South Australia | History Trust of South Australia | 2015-05-15T01:26:37.366511 | 2017-06-27T02:08:43.727429 | The community history website is a place for community organisations, historical groups and individu… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/2ce2ab30-d17f-4902-b344-314e4b34538a | 2011-04-01 | 2015-05-31 | Community History Live Stream | https://data.history.sa.gov.au/communityhistory/ | API | **Community History Endpoints** **Organisations** http://data.history.sa.gov.au/communityhistory/o… | 2015-05-15T11:33:00.199640 | Creative Commons Attribution | ||
840 | 840 | SA History Hub | History Trust of South Australia | History Trust of South Australia | 2015-07-02T05:59:59.012059 | 2017-06-27T02:08:18.983918 | The SA History Hub website is an interactive way of engaging with the history of our state. This sit… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e | 1836-01-01 | Current | Historical Places | https://data.history.sa.gov.au/sahistoryhub/place | GeoJSON | #SA History Hub GEOJSON Endpoint http://data.history.sa.gov.au/sahistoryhub/{type} Replace {ty… | 2015-07-02T16:03:37.435850 | Creative Commons Attribution | ||
841 | 841 | SA History Hub | History Trust of South Australia | History Trust of South Australia | 2015-07-02T05:59:59.012059 | 2017-06-27T02:08:18.983918 | The SA History Hub website is an interactive way of engaging with the history of our state. This sit… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e | 1836-01-01 | Current | Historical Things | https://data.history.sa.gov.au/sahistoryhub/thing | GeoJSON | #SA History Hub GEOJSON Endpoint http://data.history.sa.gov.au/sahistoryhub/{type} Replace {ty… | 2015-07-02T16:06:51.936296 | Creative Commons Attribution | ||
842 | 842 | SA History Hub | History Trust of South Australia | History Trust of South Australia | 2015-07-02T05:59:59.012059 | 2017-06-27T02:08:18.983918 | The SA History Hub website is an interactive way of engaging with the history of our state. This sit… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e | 1836-01-01 | Current | Historical Organisations | https://data.history.sa.gov.au/sahistoryhub/organisation | GeoJSON | #SA History Hub GEOJSON Endpoint http://data.history.sa.gov.au/sahistoryhub/{type} Replace {ty… | 2015-07-02T16:08:28.752458 | Creative Commons Attribution | ||
843 | 843 | SA History Hub | History Trust of South Australia | History Trust of South Australia | 2015-07-02T05:59:59.012059 | 2017-06-27T02:08:18.983918 | The SA History Hub website is an interactive way of engaging with the history of our state. This sit… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e | 1836-01-01 | Current | Historical Events | https://data.history.sa.gov.au/sahistoryhub/event | GeoJSON | #SA History Hub GEOJSON Endpoint http://data.history.sa.gov.au/sahistoryhub/{type} Replace {ty… | 2015-07-02T16:09:11.644509 | Creative Commons Attribution | ||
844 | 844 | Interned: Torrens Island, 1914-1915 | History Trust of South Australia | History Trust of South Australia | 2015-05-29T06:26:23.281710 | 2017-06-27T02:07:59.361209 | ##Interned: Torrens Island, 1914-1915 In August 1914 war broke out across Europe. Within days ‘enem… | data.sa.gov.au | https://data.sa.gov.au/data/dataset/eb04171a-1a75-4549-820d-fd20a1d434be | 1939-01-01 | 1946-01-01 | Internee Data | https://interned.historysa.com.au/js/data.js | JS | Information surrounding internees sourced from http://www.wakefieldpress.com.au/product.php?producti… | 2015-05-29T16:29:30.924997 | 2015-01-28T00:45:42 | Creative Commons Attribution | |
845 | 845 | History Festival Archive | History Trust of South Australia | History Trust of South Australia | 2015-05-14T07:15:48.169739 | 2017-06-27T02:07:34.579520 | The History Festival is held every year in May. This dataset contains an archive of festival events … | data.sa.gov.au | https://data.sa.gov.au/data/dataset/8606923a-8c21-4a2a-b31b-925f6fee4616 | 2013-05-01 | 2015-05-31 | History Festival Events | https://data.history.sa.gov.au/abouttime/ | API | **History Festival Endpoints** **Events** http://data.history.sa.gov.au/abouttime/events/{year} R… | 2015-05-14T17:18:33.373635 | Creative Commons Attribution |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE [glam-datasets] ( [dataset_title] TEXT, [publisher] TEXT, [author] TEXT, [dataset_issued] TEXT, [dataset_modified] TEXT, [dataset_description] TEXT, [source] TEXT, [info_url] TEXT, [start_date] TEXT, [end_date] TEXT, [file_title] TEXT, [download_url] TEXT, [format] TEXT, [file_description] TEXT, [file_created] TEXT, [file_modified] TEXT, [file_size] TEXT, [licence] TEXT ); CREATE INDEX [idx_glam-datasets_source_publisher_format_licence] ON [glam-datasets] ([source], [publisher], [format], [licence]);