Ziroli Plutschow RSA MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbztY8l4lWqVF8L/djJ1knoc7Nm5kVHT9NqSe0fXO9Hel3DRO2IyxJYVEvThhllBuHNtZK32ww23AlglArokhxPCSBPKvVgQS6r46khF2D85tnd5htaBq+bfjMqL+LDlQh3LdBpAqrLmsmfsPkU65CCxSGufBs2v39p41z5FkRXE1JKJ/UZe+1OUq+CibjOfo1g1Nz6HO0fZML7GnQBj5X9lvU0llmDk/sqdNMxAJDSQh2/Zh0kz7+Dm7vJOx3mNEXU4FuzVzKBYwTotvEcJod7Vot1fPOJXPGoNDVNKMQffCala9o4pqT739LS7R7ZFVMjzPkLUxYCjnEgOZI5t6wIDAQAB RSA MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvsAJkaWPEoV2AfCEcz4YKiPYnz7hIKWaU64/JLJ4IyzvCnL3JEbW3Q2TzZM7fSR4GeWhs+u/2rpsxurjhDN8rF2NbKU5zkf8+//9lCqX1goC+F+EH7gx+vv14lB5XCYtVMUhHiviARnvAI2qK3YoKLaw27uBfrwQ08St2BQ4bbu3qW4uq2Af6ENu0tcMRXykoioP9eii+Cog2eMBJzjHRgObZm0AuHQ9VEl7HWMZIVyB15vjVjbQTfqg8HPYsArCzXOzjY97kj0diMzp6/1U6ZZAxQ7D+2jwVWGC/mQUzARzIPNeZ5299+/+xHMY7vufj5B2PAvO18BUz0Pw4NX9CQIDAQAB RSA MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCRxqE9AJd10geyZVSAzaTl5ly3X0EBV59zn6ot8ZdcB77wkUqI44Mw5IYeG/isXoAZqq5yXWZjMOk0Uv94jqu31KnXlv2cazidBqJeO9GD0UAfX6hU3mpbC6Hj3MFNDYEDMX/yAC55oOr78B93NqhdiTieTMKzNe/kHyVhCIPjgQIDAQAB This query returns all RO-Crate nanopubs. Including the old and new type. Get all RO-Crate nanopubs prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix dct: <http://purl.org/dc/terms/> prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> prefix kpxl: <https://w3id.org/kpxl/gen/terms/> # find all ro-crates, with old and new nanopub type select distinct ?rocrate ?date ?np where { graph npa:graph { {?np npx:hasNanopubType kpxl:RoCrateNanopub .} union {?np npx:hasNanopubType npx:RoCrateNanopub .} ?np npa:hasValidSignatureForPublicKeyHash ?pubkeyhash . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?pubkeyhash . } ?np dct:created ?date . ?np npx:introduces ?rocrate . ?np npx:signedBy ?agent_iri . } } order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs (new type) prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix dct: <http://purl.org/dc/terms/> prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> prefix kpxl: <https://w3id.org/kpxl/gen/terms/> select distinct ?rocrate ?date (?__agent_iri as ?agent) ?np (?__pubkeyhash as ?pubkey) where { graph npa:graph { ?np npx:hasNanopubType kpxl:RoCrateNanopub . ?np npa:hasValidSignatureForPublicKeyHash ?__pubkeyhash . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?__pubkeyhash . } ?np dct:created ?date . ?np npx:introduces ?rocrate . ?np npx:signedBy ?__agent_iri . } } order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs (new type) prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix dct: <http://purl.org/dc/terms/> prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> prefix kpxl: <https://w3id.org/kpxl/gen/terms/> select distinct ?rocrate ?date (?__agent_iri as ?agent) ?np (?__pubkeyhash as ?pubkey) where { graph npa:graph { ?np npx:hasNanopubType kpxl:RoCrateNanopub . ?np npa:hasValidSignatureForPublicKeyHash ?__pubkeyhash . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?__pubkeyhash . } ?np dct:created ?date . ?np npx:introduces ?rocrate . ?np npx:signedBy ?__agent_iri . } } order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs (old type) prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>prefix dct: <http://purl.org/dc/terms/>prefix np: <http://www.nanopub.org/nschema#>prefix npa: <http://purl.org/nanopub/admin/>prefix npx: <http://purl.org/nanopub/x/>select distinct ?rocrate ?date ?np where { graph npa:graph { ?np npx:hasNanopubType npx:RoCrateNanopub . filter not exists { ?npx npx:invalidates ?np } ?np dct:created ?date . ?np npx:introduces ?rocrate . }}order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs (old type) prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>prefix dct: <http://purl.org/dc/terms/>prefix np: <http://www.nanopub.org/nschema#>prefix npa: <http://purl.org/nanopub/admin/>prefix npx: <http://purl.org/nanopub/x/>select distinct ?rocrate ?date ?np where { graph npa:graph { ?np npx:hasNanopubType npx:RoCrateNanopub . filter not exists { ?npx npx:invalidates ?np } ?np dct:created ?date . ?np npx:introduces ?rocrate . }}order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs (old type) prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>prefix dct: <http://purl.org/dc/terms/>prefix np: <http://www.nanopub.org/nschema#>prefix npa: <http://purl.org/nanopub/admin/>prefix npx: <http://purl.org/nanopub/x/>select distinct ?rocrate ?date ?np where { graph npa:graph { ?np npx:hasNanopubType npx:RoCrateNanopub . filter not exists { ?npx npx:invalidates ?np } ?np dct:created ?date . ?np npx:introduces ?rocrate . }}order by desc(?date) And the text got updated again This is just a playground text. This query returns all RO-Crate nanopubs. Get all RO-Crate Nanopubs prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix dct: <http://purl.org/dc/terms/> prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> select distinct ?rocrate ?date ?np where { graph npa:graph { ?np npx:hasNanopubType npx:RoCrateNanopub . filter not exists { ?npx npx:invalidates ?np } ?np dct:created ?date . ?np npx:introduces ?rocrate . } } order by desc(?date) This query returns all RO-Crate nanopubs. Get all RO-Crate nanopubs again prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix dct: <http://purl.org/dc/terms/> prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> select distinct ?rocrate ?date ?np where { graph npa:graph { ?np npx:hasNanopubType npx:RoCrateNanopub . filter not exists { ?npx npx:invalidates ?np } ?np dct:created ?date . ?np npx:introduces ?rocrate . } } order by desc(?date) RO-Crate Bot RSA MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxszSDYX5tuCSkP7UiCtftYPFNQVTjgNu0I5fwdML2DLRDlp0xzmsQXRk8oHuvwGvG1aMjj6cpUqO+0rz2Sg/wvHOgUpkRH8VJXvmlkhafMLCMtUtk5JIx7e+fkzCby+fnmD7kMkGLrT+OaExWwEDmNlCAt0TPKcHSdwsjso2isXjtAsGevyCMke8ufnFYpjs746JES1eNzVnHnn2Kp/lqcm60GM+J8dLgRZp7fX0anW098xhKym6+xXFzqeju0vYRIHBPerv+r7skWxwk+a7Sd8msqVeYEv6NTqnyWvyWb6Yh8cvj04N6qm/T6C5FUPLQhzSaQgMVMU6yLqjPuu9DwIDAQAB RSA MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4pPaESKwmC6l37P86K6TNLq6yeQtc7m9CvcqauLs/1FC0viHvQnFBgxj0a+loPDv/Egwe6OqFpa0iW9Ypnyz9YPoh+pxbRXonbuMOb+8Ry9hXZ+TEKfWjhjVDGEaClwfRwglh2HI/xfV4CD9AgvDOEoZQiyta8a90PYwJ3G6e70oCHTn61+OWTkI9KRYHOYgg3btdy2Z7q/30PTFawb2ZT5aIfIJYobUYv2a7yhtcqWCHZeKv0bxGnRjTFNx1rscBMlLJSzvRtpQc1cCRVEPFZHo1adaXCI9tGvn4cxeNQ96y8dxkN1XhpaJairde+23MDzf42Oe97KG2HYzKiyVnQIDAQAB Applied sciences Biology 0 https://api.rohub.org/api/ros/ad39ad6e-a644-46fa-a189-4dc66389314a/crate/download/ 2024-11-07 08:17:22.466300+00:00 2025-10-16 12:17:23.001159+00:00 2024-11-07 08:17:22.466300+00:00 As anyone who has spent time with cats knows, our feline companions are mysterious—much more so than those other furry family members. Here John Bradshaw, author of Cat Sense (Basic Books, 2013), fields a selection of questions submitted by Scientific American editors and Twitter followers about the cat’s many quirks. Bradshaw is a visiting fellow at the University of Bristol School of Veterinary Sciences in England, where he studies the behavior and welfare of cats and dogs, as well as their interactions with people. application/ld+json https://w3id.org/ro-id/ad39ad6e-a644-46fa-a189-4dc66389314a Cats Pets The Inner Life of Cats MANUAL Gniewek, Aleks. "The Inner Life of Cats." ROHub. Nov 07 ,2024. https://w3id.org/ro-id/ad39ad6e-a644-46fa-a189-4dc66389314a. life sciences 100.0 0.9659337401390076 author of Cat sense 13.114754098360656 7.2 University Education/School/Higher education/University disciple 9.354413702239789 7.1 Bradshaw is a visiting fellow at the University of Bristol School of Veterinary Sciences in England, where he studies the behavior and welfare of cats and dogs, as well as their interactions with people. 30.717488789237674 27.4 England Çat dog 9.565217391304348 5.5 environmental science and management 100.0 0.993445634841919 Twitter 10.803689064558627 8.2 veterinary medicine 8.95915678524374 6.8 cat 21.217391304347824 12.2 Twitter follower 18.0327868852459 9.9 choose 5.928853754940711 4.5 editor 5.665349143610013 4.3 life sciences (general) 100.0 0.9659337401390076 follower 10.782608695652174 6.2 relative 4.743083003952568 3.6 zoology 100.0 6.2 As anyone who has spent time with cats knows, our feline companions are mysterious—much more so than those other furry family members. 37.44394618834081 33.4 Twitter 12.695652173913043 7.3 veterinary science 10.26086956521739 5.9 dog 8.300395256916996 6.3 behavior 4.743083003952568 3.6 welfare of cat 33.697632058287795 18.5 University of Bristol School of veterinary sciences 18.214936247723134 10.0 welfare 5.270092226613965 4.0 Science and technology Science and technology Twitter selection of question 16.939890710382517 9.3 Veterinarian science Science and technology/Biomedical science/Veterinarian science John Bradshaw 26.782608695652176 15.4 environmental sciences 100.0 0.993445634841919 quirk 5.006587615283267 3.8 Çat 5.533596837944664 4.2 cat 18.577075098814227 14.1 England 7.1146245059288535 5.4 University of Bristol School 8.695652173913043 5.0 Animal Human interest/Animal Here John Bradshaw, author of Cat Sense (Basic Books, 2013), fields a selection of questions submitted by Scientific American editors and Twitter followers about the cat’s many quirks. 31.83856502242153 28.4 Aleks Gniewek Applied sciences Social sciences xyz 0 https://api.rohub.org/api/ros/5930c9e6-8f23-4c8c-9b1b-84d55deaaf00/crate/download/ 2024-11-14 08:02:26.064775+00:00 2025-10-16 12:17:13.898108+00:00 2024-11-14 08:02:26.064775+00:00 Metadata-enriched Polish Novel Corpus from the 19th and 20th centuries The corpus consists of 1,000 novels originally written in Polish and initially published as books between 1864 and 1939, with the plot timeframe set after 1815. The current version is v1.0.1. Following Linked Open Data (LOD) standards, we do not publish the corpus texts in .txt format. Instead, the entire corpus is accessible through a knowledge graph in Turtle (.ttl) format, with each text being linked separately. The repository contains code to download all corpus texts independently. An explanation of the code can be found in the Data section. application/ld+json https://w3id.org/ro-id/5930c9e6-8f23-4c8c-9b1b-84d55deaaf00 Corpora LinkedOpenData LiteraryStudies Ontology Annotation Collection Korpus 19-20MetaPNC MANUAL Hubar-Kołodziejczyk, Patryk. "Korpus 19-20MetaPNC." ROHub. Nov 14 ,2024. https://w3id.org/ro-id/5930c9e6-8f23-4c8c-9b1b-84d55deaaf00. raw data metadata data biblio 86599 https://api.rohub.org/api/resources/86143851-8706-4b88-b70e-41c184211080/download/ 2024-11-14 08:15:28.902820+00:00 2024-11-14 08:15:29.775352+00:00 image/jpeg TCO_ontology.jpg 2024-11-14 08:15:28.902820+00:00 43938 https://api.rohub.org/api/resources/961c69a7-79d1-49ac-8ad2-d5a2e7801d65/download/ 2024-11-14 08:15:39.635599+00:00 2024-11-14 08:15:40.563302+00:00 image/png Meta_tree.png 2024-11-14 08:15:39.635599+00:00 text 11.520737327188941 7.5 corpus consist 20.66905615292712 17.3 model 3.4285714285714284 3.0 consist 4.457142857142857 3.9 geophysics 100.0 0.3627100884914398 text 9.6 8.4 computer code 5.371428571428571 4.7 literature 100.0 10.3 computer operations and hardware 100.0 0.9055352807044983 Linked Open Datum 9.216589861751153 6.0 Book industry Economy, business and finance/Economic sector/Media/Book industry after 1815 corpus 35.63748079877112 23.2 mathematical and computer sciences 100.0 0.9055352807044983 metadata 9.37019969278034 6.1 v1.0.1 8.141321044546851 5.3 corpus 27.2 23.8 novel 4.0 3.5 Polish 3.7714285714285714 3.3 Fiction Arts, culture and entertainment/Arts and entertainment/Literature/Fiction graph 4.457142857142857 3.9 code 6.912442396313365 4.5 earth sciences 100.0 0.3627100884914398 The repository contains code to download all corpus texts independently. 27.053140096618357 16.8 Instead, the entire corpus is accessible through a knowledge graph in Turtle (.ttl) format, with each text being linked separately. 30.756843800322063 19.1 between 1864 and 1939 time frame 4.228571428571429 3.7 Following Linked Open Data (LOD) standards, we do not publish the corpus texts in .txt format. 42.19001610305958 26.2 Literature Arts, culture and entertainment/Arts and entertainment/Literature format 19.201228878648234 12.5 corpus texts in.txt format 44.32497013142174 37.1 format 22.285714285714285 19.5 plot timeframe 5.017921146953404 4.2 metadata 7.085714285714285 6.2 repository 4.114285714285714 3.6 novel corpus 24.731182795698924 20.7 knowledge graph 5.256869772998805 4.4 Patryk Hubar-Kołodziejczyk Environmental research https://doi.org/10.5281/zenodo.14279111 2024-12-04 23:00:28.915134+00:00 2024-12-04 23:00:30.048350+00:00 Contains outputs, (results), generated in the Jupyter notebook of Livestock detection using DeepForest Outputs 2024-12-04 23:00:28.915134+00:00 https://doi.org/10.7910/DVN/N7GJYU 2024-12-04 23:00:24.659570+00:00 2024-12-04 23:00:25.667439+00:00 Contains input Input dataset for the fine-tuned model used in the Jupyter notebook of Livestock detection using DeepForest Input Input dataset for the fine-tuned model 2024-12-04 23:00:24.659570+00:00 https://doi.org/https://doi.org/10.1111/2041-210X.13472 2024-12-04 23:00:33.471709+00:00 2024-12-04 23:00:34.525430+00:00 Related publication of the modelling presented in the Jupyter notebook Deepforest: a python package for rgb deep learning tree crown delineation 2024-12-04 23:00:33.471709+00:00 https://edsbook.org/notebooks/gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/notebook.html 2024-12-04 23:00:46.367365+00:00 2024-12-04 23:00:47.573187+00:00 Rendered version of the Jupyter Notebook hosted by the Environmental Data Science Book text/html Online rendered version of the Jupyter notebook 2024-12-04 23:00:46.367365+00:00 https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/blob/main/notebook.ipynb 2024-12-04 23:00:20.603543+00:00 2024-12-04 23:00:21.556504+00:00 Jupyter Notebook hosted by the Environmental Data Science Book Jupyter notebook 2024-12-04 23:00:20.603543+00:00 https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/tree/main/.binder/environment.yml 2024-12-04 23:00:41.963542+00:00 2024-12-04 23:00:43.056070+00:00 Conda environment when user want to have the same libraries installed without concerns of package versions Conda environment 2024-12-04 23:00:41.963542+00:00 https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/tree/main/.lock/conda-lock.yml 2024-12-04 23:00:37.727861+00:00 2024-12-04 23:00:38.784747+00:00 Lock conda file of the Jupyter notebook hosted by the Environmental Data Science Book Lock conda file 2024-12-04 23:00:37.727861+00:00 University of Florida ethanwhite@ufl.edu Ethan P. White 0000-0001-6728-7745 The Alan Turing Institute lvanzeeland@turing.ac.uk Louisa Van Zeeland 0009-0005-0392-4377 2025-05-27 16:35:09.245985+00:00 0 https://api.rohub.org/api/ros/7ad44bec-6784-437f-b5f3-2199b43a5303/crate/download/ 2024-12-04 22:59:05.987316+00:00 2025-10-16 12:17:04.846237+00:00 2024-12-04 22:59:05.987316+00:00 The research object refers to the Livestock detection using DeepForest notebook published in the Environmental Data Science book. application/ld+json https://w3id.org/ro-id/7ad44bec-6784-437f-b5f3-2199b43a5303 Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book MANUAL Cameron Appel, Ethan P. White, and Louisa Van Zeeland. "Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book." ROHub. Dec 04 ,2024. https://w3id.org/ro-id/7ad44bec-6784-437f-b5f3-2199b43a5303. output tool input biblio 457238 https://api.rohub.org/api/resources/832ec27f-3faf-4051-9a42-dfa6d421a6ed/download/ 2024-12-04 23:00:16.094540+00:00 2024-12-04 23:00:17.222084+00:00 image/png Image showing an example of the finetuned model predictions to detect livestock 2024-12-04 23:00:16.094540+00:00 aim 21.489001692047378 12.7 DeepForest notebook 34.64249748237664 34.4 research 13.348164627363737 12.0 Language Arts, culture and entertainment/Culture/Language Book industry Economy, business and finance/Economic sector/Media/Book industry notebook 13.125695216907674 11.8 object 14.571746384872078 13.1 Environmental Data Science book 15.609264853977846 15.5 research object 34.038267875125875 33.8 DeepForest 17.797552836484982 16.0 publishing 100.0 6.9 Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book. 39.23923923923924 39.2 Livestock detection 15.105740181268883 15.0 research 19.4585448392555 11.5 book 22.84263959390863 13.5 geosciences 100.0 0.4561961591243744 geophysics 100.0 0.4561961591243744 use DeepForest notebook 0.6042296072507553 0.6 geology 100.0 0.7395366430282593 notebook 19.120135363790187 11.3 earth sciences 100.0 0.7395366430282593 The research object refers to the Livestock detection using DeepForest notebook published in the Environmental Data Science book. 60.76076076076076 60.7 Literature Arts, culture and entertainment/Arts and entertainment/Literature detection 17.089678510998308 10.1 detection 11.345939933259174 10.2 book 12.235817575083425 11.0 Environmental Data Science 17.575083426028918 15.8 Queen Mary University London c.appel@qmul.ac.uk Cameron Appel Environmental Data Science Book Community Applied sciences https://fair2adapt.github.io/NRDA-example/ 2025-05-19 06:55:45.523201+00:00 2025-10-14 08:33:04.563688+00:00 Rendered version of the Jupyter notebooks showcasing the usage of the NRDA. https://fair2adapt.github.io/NRDA-example/ 2025-05-19 06:55:45.523201+00:00 https://github.com/FAIR2Adapt/NRDA-example 2025-05-19 06:54:52.480118+00:00 2025-10-14 08:33:04.333200+00:00 Github repository with an example showing how to access data from the NRDA via RO-Crate https://github.com/FAIR2Adapt/NRDA-example 2025-05-19 06:54:52.480118+00:00 https://github.com/annefou/ckanext-signposting 2024-12-11 12:20:51.016321+00:00 2025-05-19 06:45:18.786943+00:00 Github repository containing the CKAN extension code for implementing signposting in CKAN. CKAN extension for Signposting 2024-12-11 12:20:51.016321+00:00 https://github.com/annefou/nird-ckan2ro 2024-12-11 12:22:22.949411+00:00 2025-05-19 06:45:25.228363+00:00 Source code repository (github) showing how to create a Research Object from the Test Norwegian Research Data Archive. It uses the CKAN API. CKAN to Research Object 2024-12-11 12:22:22.949411+00:00 Anne Fouilloux Sigma2, Norway adilhasan2@gmail.com Adil Hasan 0000-0003-2373-7112 https://raw.githubusercontent.com/FAIR2Adapt/NRDA-example/refs/heads/main/notebooks/NRDA-RO-crate-explore.ipynb 2025-05-19 07:25:51.954071+00:00 2025-10-14 08:33:04.777760+00:00 Jupyter notebook to showcase the use of the NRDA. NRDA-RO-crate-explore.ipynb (Jupyter notebook) 2025-05-19 07:25:51.954071+00:00 post@simula.no 00vn06n10 Simula Research Laboratory 0 https://api.rohub.org/api/ros/7733ebf0-b1be-4522-a909-8089251749c4/crate/download/ 2024-12-11 12:17:40.090186+00:00 2025-10-16 12:17:00.022006+00:00 2024-12-11 12:17:40.090186+00:00 The increasing volume and complexity of research data necessitate robust data management practices to ensure data is Findable, Accessible, Interoperable, and Reusable (FAIR). The Norwegian Research Data Archive (NRDA) is at the forefront of this effort in Norway, providing a comprehensive platform for researchers to store, share, and archive their data. This paper discusses NRDA's ongoing initiatives to enhance its infrastructure in alignment with FAIR principles, emphasizing the integration of Research Objects (ROs) and RO-Crate technologies. These improvements aim to facilitate better data discoverability, accessibility, and interoperability, thereby fostering a more integrated and sustainable data ecosystem. The paper also highlights NRDA's collaborative efforts with other platforms via the use of Research Objects to support data sharing and reuse across repositories. By focusing on standardized metadata, persistent identifiers, and interoperability, NRDA is advancing Open Science practices, ultimately contributing to a more transparent, efficient, and collaborative research environment. The challenges and future directions of these initiatives are also explored, providing insights into the ongoing efforts to create a more open and interconnected scientific landscape. application/ld+json https://w3id.org/ro-id/7733ebf0-b1be-4522-a909-8089251749c4 fair Enhancing FAIR Data Practices in the Norwegian Research Data Archive: Towards Research Objects and Improved interoperability MANUAL Fouilloux, Anne, and Adil Hasan. "Enhancing FAIR Data Practices in the Norwegian Research Data Archive: Towards Research Objects and Improved interoperability." ROHub. Dec 11 ,2024. https://w3id.org/ro-id/7733ebf0-b1be-4522-a909-8089251749c4. Folder containing tools or link to tools related to the Research Object. tool 961641 https://api.rohub.org/api/resources/02b43109-5847-44fa-9b7c-a2747c15279b/download/ 2025-05-19 06:50:18.905599+00:00 2025-10-14 08:33:04.114639+00:00 Presentation given at the FDO Forum on May 19th 2025. application/pdf NIRD-Archive_May2025.pdf 2025-05-19 06:50:18.905599+00:00 43137799 https://api.rohub.org/api/resources/03530455-5a74-4165-a85d-08cf04a39dd6/download/ 2025-05-19 06:47:25.736944+00:00 2025-10-14 08:33:03.675762+00:00 Demonstration of the Norwegian Research Data Archive: - Create a new dataset and upload files in the data collection - Explore a published dataset and reuse it in a Jupyter notebook. video/mp4 NRDA-CKAN.mp4 (demo) 2025-05-19 06:47:25.736944+00:00 data management practice 33.07086614173228 12.6 Norway Library and museum Arts, culture and entertainment/Culture/Library and museum complexity 6.0529634300126105 4.8 social and information sciences 100.0 0.7921985387802124 Science and technology Science and technology collaborative effort 14.698162729658792 5.6 data library 5.926860025220681 4.7 NRDA 19.120458891013385 10.0 Ro-crate technology 19.42257217847769 7.4 data 12.045889101338433 6.3 documentation and information science 100.0 0.7921985387802124 interoperability 13.997477931904163 11.1 The increasing volume and complexity of research data necessitate robust data management practices to ensure data is Findable, Accessible, Interoperable, and Reusable (FAIR). The Norwegian Research Data Archive (NRDA) is at the forefront of this effort in Norway, providing a comprehensive platform for researchers to store, share, and archive their data. 34.883720930232556 21.0 data management 12.48423707440101 9.9 computer science 29.646017699115042 6.7 practice 14.880201765447667 11.8 data sharing 4.918032786885246 3.9 By focusing on standardized metadata, persistent identifiers, and interoperability, NRDA is advancing Open Science practices, ultimately contributing to a more transparent, efficient, and collaborative research environment. 22.591362126245848 13.6 Enhancing FAIR Data Practices in the Norwegian Research Data Archive: Towards Research Objects and Improved interoperability. 42.524916943521596 25.6 database 70.35398230088495 15.9 datum 9.36902485659656 4.9 environmental science and management 100.0 0.9605517387390137 Customs and tradition Arts, culture and entertainment/Culture/Customs and tradition research datum 17.060367454068242 6.5 environmental sciences 100.0 0.9605517387390137 data 16.64564943253468 13.2 data ecosystem 15.74803149606299 6.0 practice 12.237093690248567 6.4 information 5.926860025220681 4.7 interoperability 19.88527724665392 10.4 data management 18.164435946462717 9.5 datum 6.557377049180328 5.2 initiative 5.296343001261034 4.2 Research Object 9.177820267686425 4.8 research 7.313997477931904 5.8 Applied sciences http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/0ad11a2d-9625-420b-9746-e7afdc473ac6 2024-12-20 15:12:15.310174+00:00 2025-05-26 15:46:27.371052+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2023) carried out in the mussel farm site to detect the macro-litter on the seafloor after the cleaning activities performed by the Seabed Robotic Cleaning Platform.m. Macrolitter detection on the seafloor - Mussel Farm 2023 2024-12-20 15:12:15.310174+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/1988bdeb-d639-41f7-a825-5b2ba641ebfa 2024-12-20 15:20:31.518510+00:00 2025-05-26 15:41:11.981201+00:00 Bathymetry collected in the Sacca Fisola site on May 2022 before the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Sacca Fisola 2022 May Bathymetry 2024-12-20 15:20:31.518510+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/236ed88f-a25f-48c8-9701-1fe4fdd61a84 2024-12-20 14:39:04.973619+00:00 2025-05-26 15:56:33.879435+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in fishes after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Fish, Mussel Farm 2023-2024 (Post-cleaning Survey) 2024-12-20 14:39:04.973619+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/34f2c1f1-a864-46fd-ba4b-2e62a4b1c860 2024-12-20 15:07:27.466315+00:00 2025-05-26 15:55:28.108642+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in Sacca Fisola to assess the microplastic in surface water before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Surface Water, Sacca Fisola 2022 (Pre-cleaning Survey) 2024-12-20 15:07:27.466315+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/4307497e-6702-42c7-98b4-0a7aee345750 2024-12-20 14:49:56.705295+00:00 2025-05-26 15:55:19.870615+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in Sacca Fisola to assess the microplastic in bivalves before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Bivalves, Sacca Fisola 2022 (Pre-cleaning Survey) 2024-12-20 14:49:56.705295+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/47d7b107-31f7-44c2-8eb2-fbe8a65d68cd 2024-12-20 14:39:32.211885+00:00 2025-05-26 15:56:42.998388+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in bivalves after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Bivalves, Mussel Farm 2023-2024 (Post-cleaning Survey) 2024-12-20 14:39:32.211885+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/48529609-9704-42e5-b15b-dbe43f3308f0 2024-12-20 14:35:52.811399+00:00 2025-05-26 15:56:25.182921+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in fishes before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Fish, Mussel Farm 2022 (Pre-cleaning Survey) 2024-12-20 14:35:52.811399+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/5ef4e275-f53e-498b-8717-05da17b5bfa2 2024-12-20 14:38:32.430464+00:00 2025-05-26 15:55:01.389222+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in Sacca Fisola to assess the microplastic in surface water after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Surface Water, Sacca Fisola 2023-2024 (Post-cleaning Survey) 2024-12-20 14:38:32.430464+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/71b1f56c-efe0-440f-8e15-f3db60134a33 2024-12-20 14:40:37.183586+00:00 2025-05-26 15:56:57.760910+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in surface water after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Surface Water, Mussel Farm 2023-2024 (Post-cleaning Survey) 2024-12-20 14:40:37.183586+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/784e7e2c-3b4c-44c6-9023-64dbc740f5d8 2024-12-20 15:07:50.929964+00:00 2025-05-26 15:55:43.608256+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in Sacca Fisola to assess the microplastic in fishes before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Fish, Sacca Fisola 2022 (Pre-cleaning Survey) 2024-12-20 15:07:50.929964+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/839f5610-43a3-4e96-bb61-a2b069ca01e7 2024-12-20 15:16:29.189661+00:00 2025-05-23 13:44:40.159266+00:00 Bathymetry collected in the mussel farm site on December 2022 before the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Mussel Farm 2023 December Bathymetry 2024-12-20 15:16:29.189661+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/aa52596d-586b-4c2e-bb5c-48022ab6c04a 2024-12-20 14:34:38.008000+00:00 2025-05-26 15:56:17.514990+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in surface water before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Surface Water, Mussel Farm 2022 (Pre-cleaning Survey) 2024-12-20 14:34:38.008000+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/bbbd2fc8-77cd-4095-b1ff-0cf3f9c789e4 2024-12-20 15:17:41.000199+00:00 2025-05-26 15:42:21.445118+00:00 Bathymetry collected in the Sacca Fisola site on December 2023 after the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Sacca Fisola 2023 December Bathymetry 2024-12-20 15:17:41.000199+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/c9b7e1ee-cdbf-4ffb-9610-98df251d844f 2024-12-20 14:41:38.664513+00:00 2025-05-26 15:55:10.681343+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in Sacca Fisola to assess the microplastic in sediments before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Sediment, Sacca Fisola 2022 (Pre-cleaning Survey) 2024-12-20 14:41:38.664513+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/cfe5ea83-0679-4186-b006-40c3747f322d 2024-12-20 14:36:33.492754+00:00 2025-05-26 15:54:31.591424+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in Sacca Fisola to assess the microplastic in fishes after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Fish, Sacca Fisola 2023-2024 (Post-cleaning Survey) 2024-12-20 14:36:33.492754+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/d130e73e-cd9e-4e0b-8b85-e0b440d2dbfc 2024-12-20 14:40:05.680064+00:00 2025-05-26 15:56:50.424085+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in sediments after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Sediment, Mussel Farm 2023-2024 (Post-cleaning Survey) 2024-12-20 14:40:05.680064+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/d4704eba-e738-4b2c-a042-3704bbef473b 2024-12-20 15:13:46.791576+00:00 2025-05-26 15:46:37.512834+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in the mussel farm site to assess the microplastic in sediments before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Macrolitter detection on the seafloor - Mussel Farm 2022 2024-12-20 15:13:46.791576+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/d6c4c669-a416-4ac3-839e-2515d8428477 2024-12-20 15:19:45.739840+00:00 2025-05-23 13:45:01.652966+00:00 Bathymetry collected in the in the mussel farm site on february 2022 before the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Mussel Farm 2022 Bathymetry 2024-12-20 15:19:45.739840+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/ef25728b-a87f-4a9d-a29d-51f5e5fcbc59 2024-12-20 14:37:11.222446+00:00 2025-05-26 15:54:41.415165+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in Sacca Fisola to assess the microplastic in sediments after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Sediment, Sacca Fisola 2023-2024 (Post-cleaning Survey) 2024-12-20 14:37:11.222446+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/ef445f1d-addc-4f9f-b831-6339d8bc3b04 2024-12-20 15:10:25.406876+00:00 2025-06-10 10:55:23.959284+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in Sacca Fisola to detect the macro-litter on the seafloor before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Macrolitter detection on the seafloor - Sacca Fisola 2022 (pre-cleaning) 2024-12-20 15:10:25.406876+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/f4bfe20e-8b91-4de4-974c-b18faa95e79d 2024-12-20 14:50:50.887677+00:00 2025-05-26 15:57:04.726679+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in sediments before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Sediment, Mussel Farm 2022 (Pre-cleaning Survey) 2024-12-20 14:50:50.887677+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/f544dadb-1ee8-47cb-ad37-86bf034cf50d 2024-12-20 15:18:08.708289+00:00 2025-05-26 15:40:39.220185+00:00 Bathymetry collected in the Sacca Fisola site on May 2023 after the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Sacca Fisola 2023 May Bathymetry 2024-12-20 15:18:08.708289+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/f5b2f2c6-91cc-4815-9ee0-70a048d3b329 2024-12-20 15:06:39.315950+00:00 2025-05-26 15:57:11.943203+00:00 Tables, protocols and shapefiles related to the pre-cleaning survey (2022) carried out in a mussel farm near Cavallino-Jesolo to assess the microplastic in bivalves before the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Bivalves, Mussel Farm 2022 (Pre-cleaning Survey) 2024-12-20 15:06:39.315950+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/f72ceecd-9a62-4354-aac7-b08b3e3f29a1 2024-12-20 14:37:37.024253+00:00 2025-05-26 15:54:53.683679+00:00 Tables, protocols and shapefiles related to the post-cleaning surveys (2023, 2024) carried out in Sacca Fisola to assess the microplastic in bivalbes after the cleaning activities performed by the Seabed Robotic Cleaning Platform. Microplastics Assessment in Bivalves, Sacca Fisola 2023-2024 (Post-cleaning Survey) 2024-12-20 14:37:37.024253+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/f8092cbe-bcd1-4b19-a571-516489c9cedd 2025-06-10 15:05:54.994211+00:00 2025-10-14 08:33:53.823824+00:00 Canal Grande 2023 April marine litter distribution 2025-06-10 15:05:54.994211+00:00 http://libeccio.bo.ismar.cnr.it:8080/geonetwork/srv/eng/catalog.search#/metadata/fe49ceb8-59ca-43aa-8456-7b7ef7f8a55a 2024-12-20 15:17:04.196501+00:00 2025-05-23 13:44:53.397619+00:00 Bathymetry collected in the mussel farm site on May 2023 after the the cleaning activities performed by the Seabed Robotic Cleaning Platform. Mussel Farm 2023 May Bathymetry 2024-12-20 15:17:04.196501+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/eng/catalog.search#/metadata/ef796898-5baf-465f-9eef-4aebb4e7e3c9 2025-06-10 15:05:26.439415+00:00 2025-10-14 08:33:53.380074+00:00 Canal Grande 2013 marine litter distribution 2025-06-10 15:05:26.439415+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/38a82b77-26c6-44cb-bd3e-972daf295b74 2025-06-11 09:30:44.441430+00:00 2025-10-14 08:33:56.016359+00:00 As part of the European MAELSTROM project, a combined approach using bathymetric analysis and underwater video inspections was applied to investigate marine litter (ML) accumulation on the seafloor in the urban area of Sacca Fisola (SF). The integration of multibeam echosounder (MBES) data with diver-operated video transects allowed not only the visual validation of acoustic results but also a more detailed mapping of litter items. During a 100-metre transect conducted by professional divers on 12 July 2022, 34 marine litter objects were identified and classified. This multiparametric strategy enabled the spatial georeferencing of debris and an estimate of their percentage coverage on the seafloor. Video Inspections - Sacca Fisola 2022 2025-06-11 09:30:44.441430+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/457123f4-edad-47f2-9462-455cae51f913 2025-05-27 09:01:43.184503+00:00 2025-10-14 08:33:57.414475+00:00 As part of the European MAELSTROM project, passive acoustic monitoring (PAM) was conducted using a hydrophone deployed before and after the cleaning campaign carried out with a robotic platform at the Mussel Farm site. The primary aim of this acoustic monitoring was to analyze underwater soundscapes to detect the presence of soniferous organisms, with particular attention to fish and potentially invertebrate components Passive Acoustic Monitoring (PAM) - Mussel Farm 2022/2024 2025-05-27 09:01:43.184503+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/60aa5a5d-33bf-4610-9384-7493dc6168de 2025-06-06 08:49:32.624739+00:00 2025-10-14 08:33:49.369364+00:00 The ecological assessment of the Ave Estuary has been conducted since the beginning of the MAELSTROM project, covering the Spring and Autumn periods each year (seasons with the highest biological activity for this type of water body). After the installation of the Bubble Barrier, ecological assessments were carried out seasonally to monitor the ecosystem's progression following the implementation of the waste collection technology. MAELSTROM: Ecological assessment campaigns in the Ave River estuary in Portugal (pre and post cleaning) 2025-06-06 08:49:32.624739+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/7436a689-b929-4ed0-a06e-0fc8b9df36e5 2025-06-11 09:29:17.874825+00:00 2025-10-14 08:33:55.639252+00:00 As part of the MAELSTROM project, a video survey was conducted on 23 September 2022 at the abandoned mussel farm (MF) site in the coastal area outside the Venetian lagoon. The purpose of the survey was to visually document and classify marine debris items on the seabed and to support the validation of previous bathymetric analyses. The inspection revealed several types of debris, including mooring structures, ropes, and derelict fishing gear, elements that are often challenging to detect through remote sensing techniques alone. Video Inspections - Mussel Farm 2022 2025-06-11 09:29:17.874825+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/83b154e3-a8a5-4cc4-9666-4a3ae447a27b 2025-06-06 12:33:37.643035+00:00 2025-10-14 08:33:51.347699+00:00 Soft bottom macrozoobenthic communities were characterized in Sacca Fisola. In the lagoon site, three stations were defined: LV1 (on the planned cleaning area), LV2 (control) and LV3 (additional, in case more information would have been required). The protocol includes sampling by Van Veen grab (surface area of 0.1 m2, volume of approx. 17 L), taxonomic determination and quantitative analysis of the community matrix. MAELSTROM: Soft bottom macrozoobenthos - Sacca Fisola 2022 (pre-cleaning) 2025-06-06 12:33:37.643035+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/880ae033-6c52-406d-b10f-b44d05d65a4e 2025-06-06 12:07:02.510715+00:00 2025-10-14 08:33:50.578510+00:00 Soft bottom macrozoobenthic communities were characterized in Mussel Farm. In the coastal site, three stations were defined: CS1 (planned cleaning area and discontinued in September 2023), CS2 (control) and CS4 (cleaning area since september 2023). The protocol includes sampling by Van Veen grab (surface area of 0.1 m2, volume of approx. 17 L), taxonomic determination and quantitative analysis of the community matrix. Soft bottom macrozoobenthos - Mussel Farm 2023 (pre-cleaning) 2025-06-06 12:07:02.510715+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/8cc5e139-1ec0-4c75-acc2-60fa103ca79d 2025-06-10 07:31:35.283951+00:00 2025-10-14 08:33:52.621591+00:00 The bathymetry was acquired in 2013 in the Grand Canal (Venice) as part of the RITMARE (La Ricerca ITaliana per il MARE) research project. The data were collected using a Kongsberg EM-2040 dual-head multibeam system operating at 360 kHz, mounted on the CNR Litus vessel, and subsequently processed with Kongsberg SIS software. The information acquired was integrated with sound velocity profiles and georeferenced using the Seapath 300 positioning system. This survey will serve as a basis for comparison with data collected ten years later, in 2023, in order to assess any morphological and sedimentological changes in the bottom of the Grand Canal. Canal Grande 2013 Bathymetry 2025-06-10 07:31:35.283951+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/a48d47e6-6bda-4cae-a5bb-c71c3a5f6cf0 2025-06-06 08:51:27.045277+00:00 2025-10-14 08:33:49.718170+00:00 In the Ave River estuary, monitoring of Floating Macro-Litter (FML) was undertaken before (June 2021 - December 2023) and after the installation of the Bubble Barrier remediation technology in order to assess its effectiveness. Evaluation of FML followed standard European guidelines (Hanke et al., 2013, 2023) and was conducted through visual monitoring to assess the diversity and relative abundance of debris in the area. Monitoring campaigns were carried out monthly from June 2021 to December 2024. FML observations were performed using binoculars (during ebb tide at three designated locations in the estuary—downstream, midstream, and upstream. All three observation points were positioned at the same elevation along the estuary margin, approximately 2 meters above the water surface (mean sea level), ensuring a consistent viewing angle for reliable comparisons between locations. Although some FML objects may have been partially obscured by wind-generated ripples or small waves from passing boats, this impact was minimized as observations were conducted on calm days with high visibility. More details on the methodology can be found in D5.4 More details on the results can be found in D2.4. Monitoring of Floating Macro-Litter in the Ave River estuary in Portugal (pre and post the cleaning) 2025-06-06 08:51:27.045277+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/a600e3a4-9b02-40a8-ab01-590dd238015c 2025-06-06 12:37:11.630649+00:00 2025-10-14 08:33:52.203234+00:00 During the marine litter cleanup activities at the lagoon site, fouling organisms were sampled from a subset of the collected litter items. From each item, a 0.1 m² area was scraped from the surface exposed to epifaunal colonization. For the lagoon site, 5 items (4 tires and a metal frame) were subject to scraping on 26-27/09/2022. MAELSTROM: Marine litter fouling communities - Sacca Fisola 2022 2025-06-06 12:37:11.630649+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/af2484fc-7929-4034-bca8-7895894cbb8b 2025-06-06 12:36:29.777018+00:00 2025-10-14 08:33:51.732843+00:00 Soft bottom macrozoobenthic communities were characterized in Sacca Fisola. In the lagoon site, three stations were defined: LV1 (on the planned cleaning area), LV2 (control) and LV3 (additional, in case more information would have been required). The protocol includes sampling by Van Veen grab (surface area of 0.1 m2, volume of approx. 17 L), taxonomic determination and quantitative analysis of the community matrix. MAELSTROM: Soft bottom macrozoobenthos - Sacca Fisola 2023/2024 (post-cleaning) 2025-06-06 12:36:29.777018+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/c12f5031-7449-40e1-b41e-068075f0f0f8 2025-05-28 15:02:28.709570+00:00 2025-10-14 08:33:48.563190+00:00 MAELSTROM: Assessment of fish community in lagoon area, Sacca Fisola (Post-cleaning Survey) 2025-05-28 15:02:28.709570+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/c6779901-f2a5-4740-9791-0e712fa9e810 2024-12-20 15:11:07.324123+00:00 2025-06-10 10:57:06.842589+00:00 For this project, two study areas were selected and both are characterized by the presence of marine litter that has accumulated over time: a lagoon area (Sacca Fisola) and a coastal area, the latter located on an abandoned mussel farm.The lagoon site of Sacca Fisola is situated in an area where waste accumulates in substantial quantities. Consequently, the channel's seabed is marked by a significant presence of waste. Some of these waste items are buried beneath layers of sediment, while many others remain visible on the surface and can be identified using the bathymetric map generated from MultiBeam EchoSounder (MBES) data. Macrolitter detection on the seafloor - Sacca Fisola 2022 (post-cleaning) 2024-12-20 15:11:07.324123+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/ca2f4c3d-f4b3-4562-bf27-e955159f9cf9 2025-05-28 15:00:33.879751+00:00 2025-10-14 08:33:47.830443+00:00 Assessment of fish community in coastal area, Mussel Farm (Pre-cleaning Survey) 2025-05-28 15:00:33.879751+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/d033a6cb-4761-4e7c-b5fd-e4c9e59d9c1b 2025-05-28 15:03:50.259639+00:00 2025-10-14 08:33:48.970815+00:00 Assessment of fish community in coastal area, Mussel Farm (Post-cleaning Survey) 2025-05-28 15:03:50.259639+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/d92f8bc0-c8bf-422b-b2cf-2fa910de8196 2025-06-10 07:35:23.396790+00:00 2025-10-14 08:33:52.952429+00:00 Data collected in April 2023 by CNR- ISMAR VE within the MAELSTROM project with the aim to map marine litter on the seafloor Canal Grande 2023 April Bathymetry 2025-06-10 07:35:23.396790+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/dfc27d84-0dd0-4e59-98b8-3e02890866de 2025-05-28 15:01:45.265724+00:00 2025-10-14 08:33:48.209584+00:00 MAELSTROM: Assessment of fish community in lagoon area, Sacca Fisola (Pre-cleaning Survey) 2025-05-28 15:01:45.265724+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/e4c8d7e7-46b8-44cb-b236-038071c6698d 2025-06-06 12:08:38.478285+00:00 2025-10-14 08:33:51.003216+00:00 During the marine litter cleanup activities at the Mussel Farm site, fouling organisms were sampled from a subset of the collected litter items. From each item, a 0.1 m² area was scraped from the surface exposed to epifaunal colonization. In the coastal site, samples of sufficient quality could be acquired during May-June 2023 cleaning operations, 2 plastic buoys retained near the seabed and a section of synthetic rope, all of them leftover aquaculture equipment. Marine litter fouling communities - Mussel Farm 2023 2025-06-06 12:08:38.478285+00:00 http://seamap-catalog.data.ismar.cnr.it:8080/geonetwork/maelstrom/ita/catalog.search#/metadata/ec3ab102-f183-4f02-84fd-d64106c283ad 2025-06-06 12:05:09.250864+00:00 2025-10-14 08:33:50.129830+00:00 Soft bottom macrozoobenthic communities were characterized in Mussel Farm. In the marine site, three stations were defined: CS1 (planned cleaning area and discontinued in September 2023), CS2 (control) and CS4 (cleaning area since september 2023). The protocol includes sampling by Van Veen grab (surface area of 0.1 m2, volume of approx. 17 L), taxonomic determination and quantitative analysis of the community matrix. Soft bottom macrozoobenthos - Mussel Farm 2023/2024 (post-cleaning) 2025-06-06 12:05:09.250864+00:00 CNR-ISMAR valentina.grande@bo.ismar.cnr.it Valentina Grande 0000-0002-3489-268X 12.311973568866962 45.42473574369795 POINT (12.311973568866962 45.42473574369795) 12.316703791148031 45.42485120298669 POINT (12.316703791148031 45.42485120298669) b4abd3bf-6600-4e3d-9397-57d4493a50c4 POINT (12.311973568866962 45.42473574369795) b60d685d-9c0d-4359-8d99-3d80d0952542 POINT (-8.745117208454758 41.34139020920495) d4c8a9c2-15c1-48ed-ac59-699688dd3784 POINT (12.316703791148031 45.42485120298669) -8.745117208454758 41.34139020920495 POINT (-8.745117208454758 41.34139020920495) 10.24424/n4zj-z687 2025-06-16 11:45:39.717843+00:00 True 695223 https://api.rohub.org/api/ros/9d238d26-7ebd-4517-974f-f9f91b7055fc/crate/download/ 2024-12-20 14:13:22.405250+00:00 2025-10-16 12:11:19.378628+00:00 2024-12-20 14:13:22.405250+00:00 The first objective of the H2020 MAELSTROM Project is in support of the Marine Strategy Framework Directive (MSFD) and it aims at defining and implementing an Integrated Assessment Approach (IAA) to evaluate the effectiveness of ML remediation actions and their positive and/or negative impacts on marine coastal ecosystems and local economies. The IAA will consider both macro litter and microplastics, and it will include seafloor ML, as well as surface and water column ML. The IAA will integrate and operationalize knowledge and data related to ML sources, ML dispersion and fate, ML accumulation in hot spots, negative impacts on coastal ecosystems’ food chains, biodiversity and functioning, Marine Protected Areas, wildlife and the coastal and maritime sectors relevant for local economies. The IAA will also help improving marine and coastal spatial planning, conservation and restoration of coastal ecosystems in support of the EU Integrated Maritime Policy, delivering concrete benefits for maritime growth and sustainability in Europe. application/ld+json https://w3id.org/ro-id/9d238d26-7ebd-4517-974f-f9f91b7055fc ave estuary horizon europe maelstrom marine litter pollution assessment venice lagoon Result MAELSTROM Objective 1: Integrated assessment of the cleaning operations effectiveness and their impacts - archive MAELSTROM Objective 1: Integrated assessment of the cleaning operations effectiveness and their impacts MANUAL © MAELSTROM - Smart technology for MArinE Litter SusTainable RemOval and Management funded by the European Union, Programme H2020-EU.3.2.5.1. Grant agreement No 101000832. https://doi.org/10.3030/101000832. Fantina Madricardo, Vanessa Moschino, Susanna Mesghez, ANTONIO PETRIZZO, Taha Lahami, and Valentina Grande. "MAELSTROM Objective 1: Integrated assessment of the cleaning operations effectiveness and their impacts - archive." ROHub. Dec 20 ,2024. https://doi.org/10.24424/n4zj-z687. POINT (12.316703791148031 45.42485120298669) POINT (12.311973568866962 45.42473574369795) POINT (-8.745117208454758 41.34139020920495) VENICE_COASTAL_AREA mussel_farm_site macrolitter sacca_fisola_site microplastics mussel_farm_site bathymetry mussel_farm_site mussel_farm_site sacca_fisola_site fish_assessment mussel_farm_site sacca_fisola_site canal_grande_site macrozoobenthos Video_inspection bioacoustic ecological_assessment mussel_farm_site canal_grande_site sacca_fisola_site sacca_fisola_site AVE_ESTUARY 437549 https://api.rohub.org/api/resources/48e016b5-f151-466e-91a6-06bd66b39f18/download/ 2025-06-10 15:18:53.699972+00:00 2025-10-14 08:33:55.334566+00:00 image/png Integrated assessment framework 2025-06-10 15:18:53.699972+00:00 seafloor ML 25.925925925925924 12.6 European Union 9.812409812409813 6.8 Synthetic and plastic chemicals Economy, business and finance/Economic sector/Chemicals/Synthetic and plastic chemicals economy 10.183299389002036 5.0 The first objective of the H2020 MAELSTROM Project is in support of the Marine Strategy Framework Directive (MSFD) and it aims at defining and implementing an Integrated Assessment Approach (IAA) to evaluate the effectiveness of ML remediation actions and their positive and/or negative impacts on marine coastal ecosystems and local economies. 64.08977556109726 51.4 aim 5.916305916305916 4.1 ML accumulation 17.28395061728395 8.4 ecology 26.923076923076923 2.1 biology 15.384615384615385 1.2 ML 19.551934826883908 9.6 seabed 9.37950937950938 6.5 ML dispersion 19.95884773662551 9.7 planning 4.473304473304474 3.1 environmental sciences 100.0 0.9837613701820374 Oceans Environment/Natural resources/Water/Oceans The IAA will consider both macro litter and microplastics, and it will include seafloor ML, as well as surface and water column ML. 21.321695760598505 17.1 environmental science and management 100.0 0.9837613701820374 effectiveness 13.034623217922606 6.4 European Union 11.20162932790224 5.5 politics 12.820512820512821 1.0 ecosystem 13.275613275613274 9.2 remediation action 18.51851851851852 9.0 Integrated Assessment Approach 20.570264765784113 10.1 effectiveness 11.255411255411255 7.8 renovation 8.802308802308803 6.1 litter 4.761904761904762 3.3 geosciences 100.0 0.3251190781593323 The IAA will integrate and operationalize knowledge and data related to ML sources, ML dispersion and fate, ML accumulation in hot spots, negative impacts on coastal ecosystems’ 14.58852867830424 11.7 ecosystem 14.867617107942973 7.3 seafloor 10.590631364562118 5.2 conservation 8.225108225108226 5.7 information 6.204906204906205 4.3 Marine Strategy Framework Directive 18.31275720164609 8.9 geophysics 100.0 0.3251190781593323 policy 8.658008658008658 6.0 Renovation Economy, business and finance/Economic sector/Construction and property/Renovation economy 9.235209235209236 6.4 the economy 44.871794871794876 3.5 European Union https://zenodo.org/records/14930115 2025-03-13 14:40:54.914041+00:00 2025-10-14 08:33:57.027156+00:00 Antunes, S., Vieira, L., Iglesias, I., Sousa Pinto, I., Tomás Correia, A. M., Moreira, R., Padilha, D., Nesto, N., Sigovini, M., Guarneri, I., Tagliapietra, D., Madricardo, F., McKiver, W., Petrizzo, A., Marceta, T., Galvez, D., Bocci, M., Cecchi, T., & MOSCHINO, V. (2022). D2.3 Ecosystem state and ML pollution assessment in the two demo sites (Lagoon of Venice and the Porto region). MAELSTROM Project. https://doi.org/10.5281/zenodo.14930115 D2.3 Ecosystem state and ML pollution assessment in the two demo sites (Lagoon of Venice and the Porto region) 2025-03-13 14:40:54.914041+00:00 https://zenodo.org/records/15544591 2025-06-10 15:07:23.397206+00:00 2025-10-14 08:33:54.252675+00:00 MOSCHINO, V., Nesto, N., Sigovini, M., Guarneri, I., Madricardo, F., Mc Kiver, W., Ghezzo, M., Petrizzo, A., Marčeta, T., Mesghez, S., Lahami, T., Picciulin, M., Manfè, G., Bocci, M., Antunes, S., Vieira, L., Iglesias, I., Nogueira, S., del Oro Alcalde, D., … Sousa-Pinto, I. (2025). D2.4 Impact assessment report in the two demo sites (Lagoon of Venice and the Porto region). MAELSTROM Project. https://doi.org/10.5281/zenodo.15544591 D2.4 Impact assessment report in the two demo sites (Lagoon of Venice and the Porto region) 2025-06-10 15:07:23.397206+00:00 https://zenodo.org/records/15545862 2025-06-10 15:08:03.521215+00:00 2025-10-14 08:33:54.712060+00:00 Bocci, M., Poletto, D., MOSCHINO, V., Nesto, N., Madricardo, F., Sigovini, M., Marčeta, T., Mesghez, S., Petrizzo, A., Lahami, T., Vieira, L. R., Antunes, S. C., Iglesias, I., Kett, G., Nogueira, S., del Oro Alcalde, D., Bio, A., Pezzilli, C., de Casto, G., … Buschman, F. A. (2025). D2.5 Integrated assessment of the cleaning operations effectiveness and their impacts. MAELSTROM Project. https://doi.org/10.5281/zenodo.15545862 D2.5 Integrated assessment of the cleaning operations effectiveness and their impacts 2025-06-10 15:08:03.521215+00:00 Università Ca' Foscari 956784@stud.unive.it Susanna Mesghez antonio.petrizzo@cnr.it ANTONIO PETRIZZO direttore@ismar.cnr.it CNR-ISMAR CNR ISMAR fantina.madricardo@ve.ismar.cnr.it Fantina Madricardo CNR ISMAR taha.lahami@ve.ismar.cnr.it Taha Lahami CNR ISMAR Venice vanessa.moschino@ve.ismar.cnr.it Vanessa Moschino Environmental research https://doi.org/10.5281/zenodo.17171136 2025-09-22 10:50:40.131872+00:00 2025-09-22 10:50:40.766967+00:00 Contains outputs, (results), generated in the Jupyter notebook of Vehicle-based observation data processing and simple simulation experiments Outputs 2025-09-22 10:50:40.131872+00:00 https://doi.org/10.5281/zenodo.17175792 2025-09-22 10:50:38.422172+00:00 2025-09-22 10:50:39.116427+00:00 Contains input Input datasets used in the Jupyter notebook of Vehicle-based observation data processing and simple simulation experiments Input Input datasets 2025-09-22 10:50:38.422172+00:00 https://github.com/eds-book/dea59792-5a6d-4633-a74c-eb73edce61b8/blob/main/notebook.ipynb 2025-09-22 10:50:36.343361+00:00 2025-09-22 10:50:37.222607+00:00 Jupyter Notebook hosted by the Environmental Data Science Book Jupyter notebook 2025-09-22 10:50:36.343361+00:00 Rio de Janeiro State University rpedruzzi@eng.uerj.br Rizzieri Pedruzzi 0000-0003-0852-0396 Hangzhou Dianzi University Zehao Liu 0009-0000-3855-6352 0 https://api.rohub.org/api/ros/368f9594-6513-4f49-a510-275c07b1c3b6/crate/download/ 2025-09-22 10:50:14.653665+00:00 2025-10-16 11:11:03.381864+00:00 2025-09-22 10:50:14.653665+00:00 The research object refers to the Vehicle-based observation data processing and simple simulation experiments notebook published in the Environmental Data Science book. application/ld+json https://w3id.org/ro-id/368f9594-6513-4f49-a510-275c07b1c3b6 Vehicle-based observation data processing and simple simulation experiments (Jupyter Notebook) published in the Environmental Data Science book MANUAL Lucky J. Yang, Rizzieri Pedruzzi, and Zehao Liu. "Vehicle-based observation data processing and simple simulation experiments (Jupyter Notebook) published in the Environmental Data Science book." ROHub. Sep 22 ,2025. https://w3id.org/ro-id/368f9594-6513-4f49-a510-275c07b1c3b6. output tool input biblio 100693 https://api.rohub.org/api/resources/59322158-c890-4018-9316-71e09c41c47f/download/ 2025-09-22 10:50:34.313127+00:00 2025-09-22 10:50:35.343626+00:00 image/png Image showing an example of the vehicle-based observation emissions data 2025-09-22 10:50:34.313127+00:00 Literature Arts, culture and entertainment/Arts and entertainment/Literature Language Arts, culture and entertainment/Culture/Language publishing 100.0 4.4 simulation 10.946408209806156 9.6 data processing 28.164196123147093 24.7 experiment 17.44583808437856 15.3 aim 7.2727272727272725 6.0 experiment 18.78787878787879 15.5 observation data processing 33.04812834224599 30.9 research object 22.352941176470587 20.9 research 9.007981755986316 7.9 research 9.454545454545455 7.8 notebook 11.516533637400228 10.1 simulation experiments notebook 2.5668449197860963 2.4 Environmental Data Science book 12.727272727272727 11.9 atmospheric sciences 100.0 0.7707348465919495 Environmental Data Science 12.542759407069555 11.0 mathematical and computer sciences 100.0 0.24472567439079285 data processing 28.96969696969697 23.9 Vehicle-based observation data processing and simple simulation experiments (Jupyter Notebook) published in the Environmental Data Science book. 46.046046046046044 46.0 simulation experiment 29.3048128342246 27.4 earth sciences 100.0 0.7707348465919495 computer operations and hardware 100.0 0.24472567439079285 book 11.515151515151516 9.5 The research object refers to the Vehicle-based observation data processing and simple simulation experiments notebook published in the Environmental Data Science book. 53.95395395395395 53.9 book 10.376282782212087 9.1 notebook 12.0 9.9 simulation 12.0 9.9 Book industry Economy, business and finance/Economic sector/Media/Book industry Environmental Data Science Book Community Westlake University yangjianqi@westlake.edu.cn Lucky J. Yang Earth sciences 0 https://api.rohub.org/api/ros/ce69f062-5218-46b5-8d8a-2437af6355a2/crate/download/ 2025-10-07 17:18:31.472234+00:00 2025-11-10 11:52:39.550603+00:00 2025-10-07 17:18:31.472234+00:00 This Research Object aggregates some relevant resources for the demo application/ld+json https://w3id.org/ro-id/ce69f062-5218-46b5-8d8a-2437af6355a2 RO-Crate workshop for earth scientists MANUAL Palma, Raul. "RO-Crate workshop for earth scientists." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/ce69f062-5218-46b5-8d8a-2437af6355a2. 21822682 https://api.rohub.org/api/resources/ad4b6c36-5b90-44e1-be83-817abd445362/download/ 2025-11-06 09:46:10.933493+00:00 2025-11-06 09:46:13.577204+00:00 image/gif CityOfHamburg.gif 2025-11-06 09:46:10.933493+00:00 13338612 https://api.rohub.org/api/resources/f7d355b2-953d-448b-8d7a-9e6707be1519/download/ 2025-11-06 09:43:34.390228+00:00 2025-11-06 09:43:35.910807+00:00 image/png cagrilabs.png 2025-11-06 09:43:34.390228+00:00 7863106 https://api.rohub.org/api/resources/fba8a89f-2f31-4565-a2c0-1a02be8abb8c/download/ 2025-11-06 09:44:59.782479+00:00 2025-11-06 09:45:01.504640+00:00 application/zip CGFP.zip 2025-11-06 09:44:59.782479+00:00 space sciences (general) 100.0 0.34137117862701416 geology 100.0 0.9927062392234802 space sciences 100.0 0.34137117862701416 resources for the demo 11.534603811434303 11.5 demo 9.73360655737705 9.5 resource 19.15983606557377 18.7 RO-Crate 15.57377049180328 15.2 Education Education This Research Object aggregates some relevant resources for the demo 67.36736736736736 67.3 scientist 21.016949152542374 12.4 earth 7.78688524590164 7.6 demo version 15.932203389830509 9.4 earth sciences 100.0 0.9927062392234802 relevant resources for the demo 0.10030090270812438 0.1 workshop 10.963114754098362 10.7 scientist 12.807377049180328 12.5 earth scientist 47.7432296890672 47.6 relevant resource 4.212637913741224 4.2 earth 13.728813559322035 8.1 RO-Crate workshop 36.40922768304914 36.3 workshop 18.305084745762713 10.8 RO-Crate workshop for earth scientists. 32.63263263263263 32.6 Science and technology Science and technology resource 31.016949152542374 18.3 Research Object 23.975409836065577 23.4 Raul Palma Environmental research 10.3030/101188256 European Commission 10.3030/101188256 European Commission Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-10-07 20:09:09.230244+00:00 2025-10-07 20:14:08.069536+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-07 20:09:09.230244+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-07 20:09:06.171136+00:00 2025-10-07 20:14:05.823700+00:00 This resource has this description image/png Image - updated 2025-10-07 20:09:06.171136+00:00 04jcwf484 Nordic e-Infrastructure Collaboration 101188256 FAIR2Adapt FAIR to Adapt to Climate Change POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 ecfa79a4-8abe-44e8-bcb0-5e23880030e0 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/55a1b422-f279-4765-9ba7-d27268059844/crate/download/ 2025-10-07 20:07:57.245814+00:00 2025-10-16 11:10:27.079384+00:00 2025-10-07 20:07:57.245814+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio output input tool 907 https://api.rohub.org/api/resources/814cf173-b4c3-4f46-a7e8-d6edae4cf14f/download/ 2025-10-07 20:08:57.775768+00:00 2025-10-07 20:08:59.321734+00:00 image/png Image to illustrate my case study 2025-10-07 20:08:57.775768+00:00 case study 13.456090651558075 9.5 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 object 15.59536354056902 14.8 research 17.91359325605901 17.0 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 geosciences 100.0 0.8493164777755737 Language Arts, culture and entertainment/Culture/Language Food and drink Lifestyle and leisure/Lifestyle/Food and drink crate 20.538243626062325 14.5 Ro 10.326659641728135 9.8 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 FAIR2Adapt 21.390937829293993 20.3 Food Economy, business and finance/Economic sector/Consumer goods/Food research object 73.44689378757515 73.3 crate 15.700737618545837 14.9 case study 2 0.30060120240480964 0.3 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 example 7.36543909348442 5.2 Ro 13.597733711048159 9.6 earth sciences 100.0 0.9335481524467468 case study 10.010537407797681 9.5 aim 20.67988668555241 14.6 Jupyter notebook 9.062170706006322 8.6 Instytut Chemii Bioorganicznej PAN, Poznanskie Centrum Superkomputerowo-Sieciowe PSNC Environmental research Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Flood_protection_line_Saarland.ipynb 2025-10-08 08:47:29.592762+00:00 2025-10-08 08:47:30.239969+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-08 08:47:29.592762+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-08 08:46:18.994606+00:00 2025-10-08 08:46:19.636455+00:00 Example for FAIR2Adapt training on RO-Crate and ROHub image/png flood in saarland with JupyterGIS 2025-10-08 08:46:18.994606+00:00 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 c6af7a2e-b3d6-4374-81af-d4b3fd482459 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/8a351029-86a8-4e90-a9d1-a67d45d63656/crate/download/ 2025-10-08 08:39:21.885634+00:00 2025-10-16 11:10:21.642786+00:00 2025-10-08 08:39:21.885634+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 08 ,2025. https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio tool input output 907 https://api.rohub.org/api/resources/4d1eee3a-9631-4d76-a15a-ab1de329fde1/download/ 2025-10-08 08:44:48.739835+00:00 2025-10-08 08:44:50.121842+00:00 image/png Image to illustrate my case study 2025-10-08 08:44:48.739835+00:00 earth sciences 100.0 0.9335481524467468 geosciences 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 case study 13.456090651558075 9.5 crate 15.700737618545837 14.9 research 17.91359325605901 17.0 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 object 15.59536354056902 14.8 FAIR2Adapt 21.390937829293993 20.3 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 Ro 10.326659641728135 9.8 crate 20.538243626062325 14.5 case study 2 0.30060120240480964 0.3 Ro 13.597733711048159 9.6 research object 73.44689378757515 73.3 Jupyter notebook 9.062170706006322 8.6 case study 10.010537407797681 9.5 example 7.36543909348442 5.2 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 aim 20.67988668555241 14.6 Food and drink Lifestyle and leisure/Lifestyle/Food and drink Language Arts, culture and entertainment/Culture/Language Food Economy, business and finance/Economic sector/Consumer goods/Food Applied sciences Biology Climatology Geographical information system Earth observation Centre for Ecology, Evolution and Environmental Changes, University of Lisbon igmarques@fc.ul.pt Ines Gomes Marques 0000-0002-2104-3187 ClimRisk, CE3C, Faculty of Sciences, U Lisbon tcapela@fc.ul.pt Tiago Capela Lourenço 0000-0002-8796-5993 0 https://api.rohub.org/api/ros/302b4ebf-db38-49d5-8ab4-4561181f4e94/crate/download/ 2025-10-13 11:12:49.327063+00:00 2025-10-20 13:33:34.491167+00:00 2025-10-13 11:12:49.327063+00:00 Presentation at the CE3C Annual Meeting, Azores - Portugal *10-12 October 2025* The first Portuguese National Strategy for Adaptation to Climate Change was adopted in 2010, aiming to adjust climate and other sectoral policies, and to increase the countries’ resilience to observed and projected climate change impacts. Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. The application of FAIR (findability, accessibility, interoperability and reusability) principles to these resources has the potential to improve their discoverability, accessibility, and usability and ultimately promote a more effective climate adaptation planning in Portugal. This study explores the state of the art of scientific research on climate change adaptation in Portugal since 2010, to assess strengths and limitations of knowledge, identifying key priority areas for future research and the “FAIRification” of these resources. As the frequency and intensity of extreme heat events in Portugal increases, this study focused on heat-related hazards, and associated impacts. A systematic search was performed across Scopus and ISI Web of Science to identify relevant peer-reviewed articles between January 2010 and May 2025. The resulting publications were analysed by geographical scope, adaptation sectorial focus, knowledge sector, climate hazard and CCA needs. Alignment of the current scientific outputs with FAIR principles was also analysed. A total of 217 articles were reviewed. Research was mostly performed at the city or national level (37% each) and the majority of adaptation actions were done under the agricultural or urban sectors (19% and 26%, respectively). Research was multidisciplinary, covering different knowledge sectors, from health impacts to biodiversity, buildings and construction, and often included several knowledge sectors in the same article. All articles presented accessible metadata but only one made its scripts and data available for further replication. Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. Further work will include policy FAIR assessment of policy documents and datasets. This work was developed under the Horizon Europe project FAIR2ADAPT. application/ld+json https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94 FAIR adaptation climate change heat Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal MANUAL Simões, Francisca, Ines Gomes Marques, and Tiago Capela Lourenço. "Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal." ROHub. Oct 13 ,2025. https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94. 10.24424/xq9z-p873 1057305 https://api.rohub.org/api/resources/a6c04f4c-0a9f-4b8d-8492-96a06dba7808/download/ 2025-10-13 11:48:29.771773+00:00 2025-10-14 08:33:10.492170+00:00 application/pdf Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal 2025-10-13 11:48:29.771773+00:00 203263 https://api.rohub.org/api/resources/b1a0d3cc-179c-4077-9d29-f14b8bada1d7/download/ 2025-10-13 11:20:07.788069+00:00 2025-10-13 11:20:08.689183+00:00 image/png Captura de ecrã 2025-10-13 121949.png 2025-10-13 11:20:07.788069+00:00 398943 https://api.rohub.org/api/resources/ebc84d30-9700-471e-ae2f-d04486f18c8d/download/ 2025-10-13 11:18:02.624724+00:00 2025-10-13 11:18:03.764253+00:00 image/png NatAdaptHub.png 2025-10-13 11:18:02.624724+00:00 metadata 11.924119241192415 4.4 availability 10.569105691056912 3.9 IT-computer sciences Science and technology/Technology and engineering/IT-computer sciences Portugal 20.05420054200542 7.4 data 16.260162601626018 6.0 meteorology 20.979020979020977 3.0 Climate change Environment/Climate change stakeholder 5.228758169934641 4.0 Portugal heat event 12.602739726027396 4.6 Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. 31.362467866323907 12.2 Weather Weather Portugal 14.640522875816993 11.2 from 15 years scientific research 11.924119241192415 4.4 between Jan-2010 and May-2025 Information Sciences Institute earth sciences 100.0 0.9895771741867065 article 13.279132791327916 4.9 sector 7.0588235294117645 5.4 application of fair 14.794520547945206 5.4 10-Oct-12-2025 meteorology and climatology 100.0 0.8513408899307251 computer science 20.27972027972028 2.9 Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. 30.07712082262211 11.7 assessment 4.967320261437909 3.8 climate 8.235294117647058 6.3 knowledge sector 21.643835616438356 7.9 availability 12.026143790849671 9.2 in 2010 data 11.895424836601308 9.1 heat 4.836601307189542 3.7 Science and technology Science and technology climate change adaptation in Portugal 11.780821917808218 4.3 geosciences 100.0 0.8513408899307251 metadata 8.758169934640524 6.7 climate adaptation community 22.739726027397264 8.3 scientific research 8.627450980392156 6.6 ecology 31.468531468531467 4.5 dataset 13.72549019607843 10.5 since 2010 dataset 15.989159891598916 5.9 heat extreme 16.438356164383563 6.0 database 27.27272727272727 3.9 atmospheric sciences 100.0 0.9895771741867065 Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal. 38.56041131105398 15.0 ce3c@ciencias.ulisboa.pt CE3C - Centre for Ecology, Evolution and Environmental Changes francisca.simoes@edu.ulisboa.pt Francisca Simões Environmental research 10.3030/101188256 European Commission 10.3030/101188256 European Commission Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-10-07 20:09:09.230244+00:00 2025-10-07 20:14:08.069536+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-07 20:09:09.230244+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-07 20:09:06.171136+00:00 2025-10-07 20:14:05.823700+00:00 This resource has this description image/png Image - updated 2025-10-07 20:09:06.171136+00:00 04jcwf484 Nordic e-Infrastructure Collaboration 101188256 FAIR2Adapt FAIR to Adapt to Climate Change POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 daf5e7a5-2cc7-4899-8d2b-3fac4779a419 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/55a1b422-f279-4765-9ba7-d27268059844/crate/download/ 2025-10-07 20:07:57.245814+00:00 2025-10-16 11:10:27.079384+00:00 2025-10-07 20:07:57.245814+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio output input tool 907 https://api.rohub.org/api/resources/814cf173-b4c3-4f46-a7e8-d6edae4cf14f/download/ 2025-10-07 20:08:57.775768+00:00 2025-10-07 20:08:59.321734+00:00 image/png Image to illustrate my case study 2025-10-07 20:08:57.775768+00:00 case study 13.456090651558075 9.5 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 object 15.59536354056902 14.8 research 17.91359325605901 17.0 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 geosciences 100.0 0.8493164777755737 Language Arts, culture and entertainment/Culture/Language Food and drink Lifestyle and leisure/Lifestyle/Food and drink crate 20.538243626062325 14.5 Ro 10.326659641728135 9.8 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 FAIR2Adapt 21.390937829293993 20.3 Food Economy, business and finance/Economic sector/Consumer goods/Food research object 73.44689378757515 73.3 crate 15.700737618545837 14.9 case study 2 0.30060120240480964 0.3 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 example 7.36543909348442 5.2 Ro 13.597733711048159 9.6 earth sciences 100.0 0.9335481524467468 case study 10.010537407797681 9.5 aim 20.67988668555241 14.6 Jupyter notebook 9.062170706006322 8.6 Instytut Chemii Bioorganicznej PAN, Poznanskie Centrum Superkomputerowo-Sieciowe PSNC Environmental research 10.3030/101188256 European Commission 10.3030/101188256 European Commission Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-10-07 20:09:09.230244+00:00 2025-10-07 20:14:08.069536+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-07 20:09:09.230244+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-07 20:09:06.171136+00:00 2025-10-07 20:14:05.823700+00:00 This resource has this description image/png Image - updated 2025-10-07 20:09:06.171136+00:00 04jcwf484 Nordic e-Infrastructure Collaboration 101188256 FAIR2Adapt FAIR to Adapt to Climate Change POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 9ff513c5-c403-42bf-95dc-aadc8a73c36d POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/55a1b422-f279-4765-9ba7-d27268059844/crate/download/ 2025-10-07 20:07:57.245814+00:00 2025-10-16 11:10:27.079384+00:00 2025-10-07 20:07:57.245814+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio output input tool 907 https://api.rohub.org/api/resources/814cf173-b4c3-4f46-a7e8-d6edae4cf14f/download/ 2025-10-07 20:08:57.775768+00:00 2025-10-07 20:08:59.321734+00:00 image/png Image to illustrate my case study 2025-10-07 20:08:57.775768+00:00 case study 13.456090651558075 9.5 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 object 15.59536354056902 14.8 research 17.91359325605901 17.0 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 geosciences 100.0 0.8493164777755737 Language Arts, culture and entertainment/Culture/Language Food and drink Lifestyle and leisure/Lifestyle/Food and drink crate 20.538243626062325 14.5 Ro 10.326659641728135 9.8 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 FAIR2Adapt 21.390937829293993 20.3 Food Economy, business and finance/Economic sector/Consumer goods/Food research object 73.44689378757515 73.3 crate 15.700737618545837 14.9 case study 2 0.30060120240480964 0.3 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 example 7.36543909348442 5.2 Ro 13.597733711048159 9.6 earth sciences 100.0 0.9335481524467468 case study 10.010537407797681 9.5 aim 20.67988668555241 14.6 Jupyter notebook 9.062170706006322 8.6 Instytut Chemii Bioorganicznej PAN, Poznanskie Centrum Superkomputerowo-Sieciowe PSNC Environmental research 10.3030/101188256 European Commission 10.3030/101188256 European Commission Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-10-07 20:09:09.230244+00:00 2025-10-07 20:14:08.069536+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-07 20:09:09.230244+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-07 20:09:06.171136+00:00 2025-10-07 20:14:05.823700+00:00 This resource has this description image/png Image - updated 2025-10-07 20:09:06.171136+00:00 04jcwf484 Nordic e-Infrastructure Collaboration 101188256 FAIR2Adapt FAIR to Adapt to Climate Change POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 3b1616f2-fc35-4333-b3e8-bbfcd86cf0a7 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/55a1b422-f279-4765-9ba7-d27268059844/crate/download/ 2025-10-07 20:07:57.245814+00:00 2025-10-16 11:10:27.079384+00:00 2025-10-07 20:07:57.245814+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio output input tool 907 https://api.rohub.org/api/resources/814cf173-b4c3-4f46-a7e8-d6edae4cf14f/download/ 2025-10-07 20:08:57.775768+00:00 2025-10-07 20:08:59.321734+00:00 image/png Image to illustrate my case study 2025-10-07 20:08:57.775768+00:00 case study 13.456090651558075 9.5 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 object 15.59536354056902 14.8 research 17.91359325605901 17.0 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 geosciences 100.0 0.8493164777755737 Language Arts, culture and entertainment/Culture/Language Food and drink Lifestyle and leisure/Lifestyle/Food and drink crate 20.538243626062325 14.5 Ro 10.326659641728135 9.8 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 FAIR2Adapt 21.390937829293993 20.3 Food Economy, business and finance/Economic sector/Consumer goods/Food research object 73.44689378757515 73.3 crate 15.700737618545837 14.9 case study 2 0.30060120240480964 0.3 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 example 7.36543909348442 5.2 Ro 13.597733711048159 9.6 earth sciences 100.0 0.9335481524467468 case study 10.010537407797681 9.5 aim 20.67988668555241 14.6 Jupyter notebook 9.062170706006322 8.6 Instytut Chemii Bioorganicznej PAN, Poznanskie Centrum Superkomputerowo-Sieciowe PSNC Environmental research 10.3030/101188256 European Commission 10.3030/101188256 European Commission Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-10-07 20:09:09.230244+00:00 2025-10-07 20:14:08.069536+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-07 20:09:09.230244+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-07 20:09:06.171136+00:00 2025-10-07 20:14:05.823700+00:00 This resource has this description image/png Image - updated 2025-10-07 20:09:06.171136+00:00 04jcwf484 Nordic e-Infrastructure Collaboration 101188256 FAIR2Adapt FAIR to Adapt to Climate Change POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 b9dc9ee5-9e9f-4a3e-a0a5-5f29660998c6 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/55a1b422-f279-4765-9ba7-d27268059844/crate/download/ 2025-10-07 20:07:57.245814+00:00 2025-10-16 11:10:27.079384+00:00 2025-10-07 20:07:57.245814+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 07 ,2025. https://w3id.org/ro-id/55a1b422-f279-4765-9ba7-d27268059844. POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio output input tool 907 https://api.rohub.org/api/resources/814cf173-b4c3-4f46-a7e8-d6edae4cf14f/download/ 2025-10-07 20:08:57.775768+00:00 2025-10-07 20:08:59.321734+00:00 image/png Image to illustrate my case study 2025-10-07 20:08:57.775768+00:00 case study 13.456090651558075 9.5 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 object 15.59536354056902 14.8 research 17.91359325605901 17.0 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 geosciences 100.0 0.8493164777755737 Language Arts, culture and entertainment/Culture/Language Food and drink Lifestyle and leisure/Lifestyle/Food and drink crate 20.538243626062325 14.5 Ro 10.326659641728135 9.8 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 FAIR2Adapt 21.390937829293993 20.3 Food Economy, business and finance/Economic sector/Consumer goods/Food research object 73.44689378757515 73.3 crate 15.700737618545837 14.9 case study 2 0.30060120240480964 0.3 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 example 7.36543909348442 5.2 Ro 13.597733711048159 9.6 earth sciences 100.0 0.9335481524467468 case study 10.010537407797681 9.5 aim 20.67988668555241 14.6 Jupyter notebook 9.062170706006322 8.6 Instytut Chemii Bioorganicznej PAN, Poznanskie Centrum Superkomputerowo-Sieciowe PSNC Environmental research 0d2805a5-008a-41aa-9c5d-53fed3395b45 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 0 https://api.rohub.org/api/ros/8a351029-86a8-4e90-a9d1-a67d45d63656/crate/download/ 2025-10-08 08:39:21.885634+00:00 2025-10-16 11:10:21.642786+00:00 2025-10-08 08:39:21.885634+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 08 ,2025. https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656. Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Flood_protection_line_Saarland.ipynb 2025-10-08 08:47:29.592762+00:00 2025-10-08 08:47:30.239969+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-08 08:47:29.592762+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-08 08:46:18.994606+00:00 2025-10-08 08:46:19.636455+00:00 Example for FAIR2Adapt training on RO-Crate and ROHub image/png flood in saarland with JupyterGIS 2025-10-08 08:46:18.994606+00:00 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio tool input output 907 https://api.rohub.org/api/resources/4d1eee3a-9631-4d76-a15a-ab1de329fde1/download/ 2025-10-08 08:44:48.739835+00:00 2025-10-08 08:44:50.121842+00:00 image/png Image to illustrate my case study 2025-10-08 08:44:48.739835+00:00 earth sciences 100.0 0.9335481524467468 geosciences 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 case study 13.456090651558075 9.5 crate 15.700737618545837 14.9 research 17.91359325605901 17.0 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 object 15.59536354056902 14.8 FAIR2Adapt 21.390937829293993 20.3 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 Ro 10.326659641728135 9.8 crate 20.538243626062325 14.5 case study 2 0.30060120240480964 0.3 Ro 13.597733711048159 9.6 research object 73.44689378757515 73.3 Jupyter notebook 9.062170706006322 8.6 case study 10.010537407797681 9.5 example 7.36543909348442 5.2 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 aim 20.67988668555241 14.6 Food and drink Lifestyle and leisure/Lifestyle/Food and drink Language Arts, culture and entertainment/Culture/Language Food Economy, business and finance/Economic sector/Consumer goods/Food Environmental research POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 801ae61a-b7ce-4de8-8fbe-58fbe5517256 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/8a351029-86a8-4e90-a9d1-a67d45d63656/crate/download/ 2025-10-08 08:39:21.885634+00:00 2025-10-16 11:10:21.642786+00:00 2025-10-08 08:39:21.885634+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 08 ,2025. https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656. Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Flood_protection_line_Saarland.ipynb 2025-10-08 08:47:29.592762+00:00 2025-10-08 08:47:30.239969+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-08 08:47:29.592762+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-08 08:46:18.994606+00:00 2025-10-08 08:46:19.636455+00:00 Example for FAIR2Adapt training on RO-Crate and ROHub image/png flood in saarland with JupyterGIS 2025-10-08 08:46:18.994606+00:00 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio tool input output 907 https://api.rohub.org/api/resources/4d1eee3a-9631-4d76-a15a-ab1de329fde1/download/ 2025-10-08 08:44:48.739835+00:00 2025-10-08 08:44:50.121842+00:00 image/png Image to illustrate my case study 2025-10-08 08:44:48.739835+00:00 earth sciences 100.0 0.9335481524467468 geosciences 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 case study 13.456090651558075 9.5 crate 15.700737618545837 14.9 research 17.91359325605901 17.0 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 object 15.59536354056902 14.8 FAIR2Adapt 21.390937829293993 20.3 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 Ro 10.326659641728135 9.8 crate 20.538243626062325 14.5 case study 2 0.30060120240480964 0.3 Ro 13.597733711048159 9.6 research object 73.44689378757515 73.3 Jupyter notebook 9.062170706006322 8.6 case study 10.010537407797681 9.5 example 7.36543909348442 5.2 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 aim 20.67988668555241 14.6 Food and drink Lifestyle and leisure/Lifestyle/Food and drink Language Arts, culture and entertainment/Culture/Language Food Economy, business and finance/Economic sector/Consumer goods/Food Environmental research POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1 66e5b4a5-7a20-4ca9-b3e4-68a761b785ec POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) 0 https://api.rohub.org/api/ros/8a351029-86a8-4e90-a9d1-a67d45d63656/crate/download/ 2025-10-08 08:39:21.885634+00:00 2025-10-16 11:10:21.642786+00:00 2025-10-08 08:39:21.885634+00:00 This Research Object is an example for FAIR2Adapt Case Study 2 application/ld+json https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656 FAIR2Adapt RO-Crate with Jupyter Notebook MANUAL Fouilloux, Anne. "FAIR2Adapt RO-Crate with Jupyter Notebook." ROHub. Oct 08 ,2025. https://w3id.org/ro-id/8a351029-86a8-4e90-a9d1-a67d45d63656. Anne Fouilloux https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Flood_protection_line_Saarland.ipynb 2025-10-08 08:47:29.592762+00:00 2025-10-08 08:47:30.239969+00:00 Visualizing Generalized Flood Areas for HQ100 Event and relate to an existing flooding event. Flood analysis with JupterGIS 2025-10-08 08:47:29.592762+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/flood_in_saarland_with_jqgis.png 2025-10-08 08:46:18.994606+00:00 2025-10-08 08:46:19.636455+00:00 Example for FAIR2Adapt training on RO-Crate and ROHub image/png flood in saarland with JupyterGIS 2025-10-08 08:46:18.994606+00:00 POLYGON ((6.31 49.1, 6.31 49.64, 7.41 49.64, 7.41 49.1, 6.31 49.1)) biblio tool input output 907 https://api.rohub.org/api/resources/4d1eee3a-9631-4d76-a15a-ab1de329fde1/download/ 2025-10-08 08:44:48.739835+00:00 2025-10-08 08:44:50.121842+00:00 image/png Image to illustrate my case study 2025-10-08 08:44:48.739835+00:00 earth sciences 100.0 0.9335481524467468 geosciences 100.0 0.8493164777755737 This Research Object is an example for FAIR2Adapt Case Study 2 65.76576576576576 65.7 case study 13.456090651558075 9.5 crate 15.700737618545837 14.9 research 17.91359325605901 17.0 FAIR2Adapt RO-Crate with Jupyter Notebook. 34.234234234234236 34.2 Ro-crate with Jupyter Notebook 17.935871743486974 17.9 object 15.59536354056902 14.8 FAIR2Adapt 21.390937829293993 20.3 example for FAIR2Adapt case study 2 8.316633266533067 8.3 earth resources and remote sensing 100.0 0.8493164777755737 Ro 10.326659641728135 9.8 crate 20.538243626062325 14.5 case study 2 0.30060120240480964 0.3 Ro 13.597733711048159 9.6 research object 73.44689378757515 73.3 Jupyter notebook 9.062170706006322 8.6 case study 10.010537407797681 9.5 example 7.36543909348442 5.2 research 24.36260623229462 17.2 atmospheric sciences 100.0 0.9335481524467468 aim 20.67988668555241 14.6 Food and drink Lifestyle and leisure/Lifestyle/Food and drink Language Arts, culture and entertainment/Culture/Language Food Economy, business and finance/Economic sector/Consumer goods/Food Applied sciences Biology Climatology Geographical information system Earth observation 0 https://api.rohub.org/api/ros/302b4ebf-db38-49d5-8ab4-4561181f4e94/crate/download/ 2025-10-13 11:12:49.327063+00:00 2025-10-20 13:33:34.491167+00:00 2025-10-13 11:12:49.327063+00:00 Presentation at the CE3C Annual Meeting, Azores - Portugal *10-12 October 2025* The first Portuguese National Strategy for Adaptation to Climate Change was adopted in 2010, aiming to adjust climate and other sectoral policies, and to increase the countries’ resilience to observed and projected climate change impacts. Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. The application of FAIR (findability, accessibility, interoperability and reusability) principles to these resources has the potential to improve their discoverability, accessibility, and usability and ultimately promote a more effective climate adaptation planning in Portugal. This study explores the state of the art of scientific research on climate change adaptation in Portugal since 2010, to assess strengths and limitations of knowledge, identifying key priority areas for future research and the “FAIRification” of these resources. As the frequency and intensity of extreme heat events in Portugal increases, this study focused on heat-related hazards, and associated impacts. A systematic search was performed across Scopus and ISI Web of Science to identify relevant peer-reviewed articles between January 2010 and May 2025. The resulting publications were analysed by geographical scope, adaptation sectorial focus, knowledge sector, climate hazard and CCA needs. Alignment of the current scientific outputs with FAIR principles was also analysed. A total of 217 articles were reviewed. Research was mostly performed at the city or national level (37% each) and the majority of adaptation actions were done under the agricultural or urban sectors (19% and 26%, respectively). Research was multidisciplinary, covering different knowledge sectors, from health impacts to biodiversity, buildings and construction, and often included several knowledge sectors in the same article. All articles presented accessible metadata but only one made its scripts and data available for further replication. Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. Further work will include policy FAIR assessment of policy documents and datasets. This work was developed under the Horizon Europe project FAIR2ADAPT. application/ld+json https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94 FAIR adaptation climate change heat Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal MANUAL Simões, Francisca, Ines Gomes Marques, and Tiago Capela Lourenço. "Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal." ROHub. Oct 13 ,2025. https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94. Centre for Ecology, Evolution and Environmental Changes, University of Lisbon igmarques@fc.ul.pt Ines Gomes Marques 0000-0002-2104-3187 ClimRisk, CE3C, Faculty of Sciences, U Lisbon tcapela@fc.ul.pt Tiago Capela Lourenço 0000-0002-8796-5993 10.24424/xq9z-p873 1057305 https://api.rohub.org/api/resources/a6c04f4c-0a9f-4b8d-8492-96a06dba7808/download/ 2025-10-13 11:48:29.771773+00:00 2025-10-14 08:33:10.492170+00:00 application/pdf Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal 2025-10-13 11:48:29.771773+00:00 203263 https://api.rohub.org/api/resources/b1a0d3cc-179c-4077-9d29-f14b8bada1d7/download/ 2025-10-13 11:20:07.788069+00:00 2025-10-13 11:20:08.689183+00:00 image/png Captura de ecrã 2025-10-13 121949.png 2025-10-13 11:20:07.788069+00:00 398943 https://api.rohub.org/api/resources/ebc84d30-9700-471e-ae2f-d04486f18c8d/download/ 2025-10-13 11:18:02.624724+00:00 2025-10-13 11:18:03.764253+00:00 image/png NatAdaptHub.png 2025-10-13 11:18:02.624724+00:00 metadata 11.924119241192415 4.4 availability 10.569105691056912 3.9 IT-computer sciences Science and technology/Technology and engineering/IT-computer sciences Portugal 20.05420054200542 7.4 data 16.260162601626018 6.0 meteorology 20.979020979020977 3.0 Climate change Environment/Climate change stakeholder 5.228758169934641 4.0 Portugal heat event 12.602739726027396 4.6 Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. 31.362467866323907 12.2 Weather Weather Portugal 14.640522875816993 11.2 from 15 years scientific research 11.924119241192415 4.4 between Jan-2010 and May-2025 Information Sciences Institute earth sciences 100.0 0.9895771741867065 article 13.279132791327916 4.9 sector 7.0588235294117645 5.4 application of fair 14.794520547945206 5.4 10-Oct-12-2025 meteorology and climatology 100.0 0.8513408899307251 computer science 20.27972027972028 2.9 Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. 30.07712082262211 11.7 assessment 4.967320261437909 3.8 climate 8.235294117647058 6.3 knowledge sector 21.643835616438356 7.9 availability 12.026143790849671 9.2 in 2010 data 11.895424836601308 9.1 heat 4.836601307189542 3.7 Science and technology Science and technology climate change adaptation in Portugal 11.780821917808218 4.3 geosciences 100.0 0.8513408899307251 metadata 8.758169934640524 6.7 climate adaptation community 22.739726027397264 8.3 scientific research 8.627450980392156 6.6 ecology 31.468531468531467 4.5 dataset 13.72549019607843 10.5 since 2010 dataset 15.989159891598916 5.9 heat extreme 16.438356164383563 6.0 database 27.27272727272727 3.9 atmospheric sciences 100.0 0.9895771741867065 Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal. 38.56041131105398 15.0 ce3c@ciencias.ulisboa.pt CE3C - Centre for Ecology, Evolution and Environmental Changes francisca.simoes@edu.ulisboa.pt Francisca Simões Applied sciences Biology Climatology Geographical information system Earth observation 0 https://api.rohub.org/api/ros/302b4ebf-db38-49d5-8ab4-4561181f4e94/crate/download/ 2025-10-13 11:12:49.327063+00:00 2025-10-20 13:33:34.491167+00:00 2025-10-13 11:12:49.327063+00:00 Presentation at the CE3C Annual Meeting, Azores - Portugal *10-12 October 2025* The first Portuguese National Strategy for Adaptation to Climate Change was adopted in 2010, aiming to adjust climate and other sectoral policies, and to increase the countries’ resilience to observed and projected climate change impacts. Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. The application of FAIR (findability, accessibility, interoperability and reusability) principles to these resources has the potential to improve their discoverability, accessibility, and usability and ultimately promote a more effective climate adaptation planning in Portugal. This study explores the state of the art of scientific research on climate change adaptation in Portugal since 2010, to assess strengths and limitations of knowledge, identifying key priority areas for future research and the “FAIRification” of these resources. As the frequency and intensity of extreme heat events in Portugal increases, this study focused on heat-related hazards, and associated impacts. A systematic search was performed across Scopus and ISI Web of Science to identify relevant peer-reviewed articles between January 2010 and May 2025. The resulting publications were analysed by geographical scope, adaptation sectorial focus, knowledge sector, climate hazard and CCA needs. Alignment of the current scientific outputs with FAIR principles was also analysed. A total of 217 articles were reviewed. Research was mostly performed at the city or national level (37% each) and the majority of adaptation actions were done under the agricultural or urban sectors (19% and 26%, respectively). Research was multidisciplinary, covering different knowledge sectors, from health impacts to biodiversity, buildings and construction, and often included several knowledge sectors in the same article. All articles presented accessible metadata but only one made its scripts and data available for further replication. Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. Further work will include policy FAIR assessment of policy documents and datasets. This work was developed under the Horizon Europe project FAIR2ADAPT. application/ld+json https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94 FAIR adaptation climate change heat Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal MANUAL Simões, Francisca, Ines Gomes Marques, and Tiago Capela Lourenço. "Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal." ROHub. Oct 13 ,2025. https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94. Centre for Ecology, Evolution and Environmental Changes, University of Lisbon igmarques@fc.ul.pt Ines Gomes Marques 0000-0002-2104-3187 ClimRisk, CE3C, Faculty of Sciences, U Lisbon tcapela@fc.ul.pt Tiago Capela Lourenço 0000-0002-8796-5993 10.24424/xq9z-p873 1057305 https://api.rohub.org/api/resources/a6c04f4c-0a9f-4b8d-8492-96a06dba7808/download/ 2025-10-13 11:48:29.771773+00:00 2025-10-14 08:33:10.492170+00:00 application/pdf Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal 2025-10-13 11:48:29.771773+00:00 203263 https://api.rohub.org/api/resources/b1a0d3cc-179c-4077-9d29-f14b8bada1d7/download/ 2025-10-13 11:20:07.788069+00:00 2025-10-13 11:20:08.689183+00:00 image/png Captura de ecrã 2025-10-13 121949.png 2025-10-13 11:20:07.788069+00:00 398943 https://api.rohub.org/api/resources/ebc84d30-9700-471e-ae2f-d04486f18c8d/download/ 2025-10-13 11:18:02.624724+00:00 2025-10-13 11:18:03.764253+00:00 image/png NatAdaptHub.png 2025-10-13 11:18:02.624724+00:00 metadata 11.924119241192415 4.4 availability 10.569105691056912 3.9 IT-computer sciences Science and technology/Technology and engineering/IT-computer sciences Portugal 20.05420054200542 7.4 data 16.260162601626018 6.0 meteorology 20.979020979020977 3.0 Climate change Environment/Climate change stakeholder 5.228758169934641 4.0 Portugal heat event 12.602739726027396 4.6 Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. 31.362467866323907 12.2 Weather Weather Portugal 14.640522875816993 11.2 from 15 years scientific research 11.924119241192415 4.4 between Jan-2010 and May-2025 Information Sciences Institute earth sciences 100.0 0.9895771741867065 article 13.279132791327916 4.9 sector 7.0588235294117645 5.4 application of fair 14.794520547945206 5.4 10-Oct-12-2025 meteorology and climatology 100.0 0.8513408899307251 computer science 20.27972027972028 2.9 Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. 30.07712082262211 11.7 assessment 4.967320261437909 3.8 climate 8.235294117647058 6.3 knowledge sector 21.643835616438356 7.9 availability 12.026143790849671 9.2 in 2010 data 11.895424836601308 9.1 heat 4.836601307189542 3.7 Science and technology Science and technology climate change adaptation in Portugal 11.780821917808218 4.3 geosciences 100.0 0.8513408899307251 metadata 8.758169934640524 6.7 climate adaptation community 22.739726027397264 8.3 scientific research 8.627450980392156 6.6 ecology 31.468531468531467 4.5 dataset 13.72549019607843 10.5 since 2010 dataset 15.989159891598916 5.9 heat extreme 16.438356164383563 6.0 database 27.27272727272727 3.9 atmospheric sciences 100.0 0.9895771741867065 Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal. 38.56041131105398 15.0 ce3c@ciencias.ulisboa.pt CE3C - Centre for Ecology, Evolution and Environmental Changes francisca.simoes@edu.ulisboa.pt Francisca Simões Applied sciences Biology Climatology Geographical information system Earth observation 0 https://api.rohub.org/api/ros/302b4ebf-db38-49d5-8ab4-4561181f4e94/crate/download/ 2025-10-13 11:12:49.327063+00:00 2025-10-20 13:33:34.491167+00:00 2025-10-13 11:12:49.327063+00:00 Presentation at the CE3C Annual Meeting, Azores - Portugal *10-12 October 2025* The first Portuguese National Strategy for Adaptation to Climate Change was adopted in 2010, aiming to adjust climate and other sectoral policies, and to increase the countries’ resilience to observed and projected climate change impacts. Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. The application of FAIR (findability, accessibility, interoperability and reusability) principles to these resources has the potential to improve their discoverability, accessibility, and usability and ultimately promote a more effective climate adaptation planning in Portugal. This study explores the state of the art of scientific research on climate change adaptation in Portugal since 2010, to assess strengths and limitations of knowledge, identifying key priority areas for future research and the “FAIRification” of these resources. As the frequency and intensity of extreme heat events in Portugal increases, this study focused on heat-related hazards, and associated impacts. A systematic search was performed across Scopus and ISI Web of Science to identify relevant peer-reviewed articles between January 2010 and May 2025. The resulting publications were analysed by geographical scope, adaptation sectorial focus, knowledge sector, climate hazard and CCA needs. Alignment of the current scientific outputs with FAIR principles was also analysed. A total of 217 articles were reviewed. Research was mostly performed at the city or national level (37% each) and the majority of adaptation actions were done under the agricultural or urban sectors (19% and 26%, respectively). Research was multidisciplinary, covering different knowledge sectors, from health impacts to biodiversity, buildings and construction, and often included several knowledge sectors in the same article. All articles presented accessible metadata but only one made its scripts and data available for further replication. Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. Further work will include policy FAIR assessment of policy documents and datasets. This work was developed under the Horizon Europe project FAIR2ADAPT. application/ld+json https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94 FAIR adaptation climate change heat Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal MANUAL Simões, Francisca, Ines Gomes Marques, and Tiago Capela Lourenço. "Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal." ROHub. Oct 13 ,2025. https://w3id.org/ro-id/302b4ebf-db38-49d5-8ab4-4561181f4e94. Centre for Ecology, Evolution and Environmental Changes, University of Lisbon igmarques@fc.ul.pt Ines Gomes Marques 0000-0002-2104-3187 ClimRisk, CE3C, Faculty of Sciences, U Lisbon tcapela@fc.ul.pt Tiago Capela Lourenço 0000-0002-8796-5993 10.24424/xq9z-p873 1057305 https://api.rohub.org/api/resources/a6c04f4c-0a9f-4b8d-8492-96a06dba7808/download/ 2025-10-13 11:48:29.771773+00:00 2025-10-14 08:33:10.492170+00:00 application/pdf Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal 2025-10-13 11:48:29.771773+00:00 203263 https://api.rohub.org/api/resources/b1a0d3cc-179c-4077-9d29-f14b8bada1d7/download/ 2025-10-13 11:20:07.788069+00:00 2025-10-13 11:20:08.689183+00:00 image/png Captura de ecrã 2025-10-13 121949.png 2025-10-13 11:20:07.788069+00:00 398943 https://api.rohub.org/api/resources/ebc84d30-9700-471e-ae2f-d04486f18c8d/download/ 2025-10-13 11:18:02.624724+00:00 2025-10-13 11:18:03.764253+00:00 image/png NatAdaptHub.png 2025-10-13 11:18:02.624724+00:00 metadata 11.924119241192415 4.4 availability 10.569105691056912 3.9 IT-computer sciences Science and technology/Technology and engineering/IT-computer sciences Portugal 20.05420054200542 7.4 data 16.260162601626018 6.0 meteorology 20.979020979020977 3.0 Climate change Environment/Climate change stakeholder 5.228758169934641 4.0 Portugal heat event 12.602739726027396 4.6 Since then, many resources (e.g. policy documents, scientific articles, data sets) relevant for national adaptation have been published, yet often remain unknown to, or inaccessible, for the multiple stakeholders that comprise the climate adaptation community (CCA) in Portugal. 31.362467866323907 12.2 Weather Weather Portugal 14.640522875816993 11.2 from 15 years scientific research 11.924119241192415 4.4 between Jan-2010 and May-2025 Information Sciences Institute earth sciences 100.0 0.9895771741867065 article 13.279132791327916 4.9 sector 7.0588235294117645 5.4 application of fair 14.794520547945206 5.4 10-Oct-12-2025 meteorology and climatology 100.0 0.8513408899307251 computer science 20.27972027972028 2.9 Results show that scientific research on heat-related climate change adaptation in Portugal is diverse and covers many knowledge areas, but the availability of its data needs improvement. 30.07712082262211 11.7 assessment 4.967320261437909 3.8 climate 8.235294117647058 6.3 knowledge sector 21.643835616438356 7.9 availability 12.026143790849671 9.2 in 2010 data 11.895424836601308 9.1 heat 4.836601307189542 3.7 Science and technology Science and technology climate change adaptation in Portugal 11.780821917808218 4.3 geosciences 100.0 0.8513408899307251 metadata 8.758169934640524 6.7 climate adaptation community 22.739726027397264 8.3 scientific research 8.627450980392156 6.6 ecology 31.468531468531467 4.5 dataset 13.72549019607843 10.5 since 2010 dataset 15.989159891598916 5.9 heat extreme 16.438356164383563 6.0 database 27.27272727272727 3.9 atmospheric sciences 100.0 0.9895771741867065 Facing heat extremes: lessons learned from 15 years of climate change adaptation in Portugal. 38.56041131105398 15.0 ce3c@ciencias.ulisboa.pt CE3C - Centre for Ecology, Evolution and Environmental Changes francisca.simoes@edu.ulisboa.pt Francisca Simões Applied sciences 00k4n6c32 European Commission Simula Research Laboratory annef@simula.no Anne Fouilloux 0000-0002-1784-2920 00k4n6c32::101188256 FAIR to Adapt to Climate Change FAIR to Adapt to Climate Change post@simula.no 00vn06n10 Simula Research Laboratory Germany 4.342273307790549 3.4 edit 7.407407407407407 5.8 publishing 100.0 0.8 drug addict 4.597701149425288 3.6 http 20.777027027027025 12.3 notebook 8.045977011494253 6.3 earth resources and remote sensing 100.0 0.9689354300498962 tutorial 12.132822477650064 9.5 map 8.277027027027028 4.9 zones in Saarland 12.794612794612794 7.6 zone 5.874840357598978 4.6 editing 8.783783783783784 5.2 real-time editing 23.737373737373737 14.1 JupyterGIS in Galaxy Europe 25.084175084175083 14.9 We showcase the usage of JupyterGIS for creating geographical maps showing the HQ 100 flooding zones in Saarland along with images from Wikimedia Commons. 29.9618320610687 15.7 We use JupyterGIS on the UseGalaxy.eu. The tool can be launched from [JupyterGIS in Galaxy Europe](https://usegalaxy.eu/root?tool_id=interactive_tool_jupytergis_notebook). Please prior to use it, register to [usegalaxy.eu](https://usegalaxy.eu/login/start) and authenticate yourself before starting it. 36.83206106870229 19.3 usage of JupyterGIS 21.043771043771045 12.5 4a9c340c-3f55-4473-8ebc-9798b38b791a POINT (7.0017099363030875 49.229107487031975) 7.0017099363030875 49.229107487031975 POINT (7.0017099363030875 49.229107487031975) 2025-05-28 12:08:14.740275+00:00 https://orcid.org/0000-0002-1784-2920 0 https://api.rohub.org/api/ros/588ada8d-a185-402e-8b60-3c17435110ee/crate/download/ 2025-05-17 17:15:18.830605+00:00 2025-05-28 12:41:54.042079+00:00 2025-05-17 17:15:18.830605+00:00 ## Flooding in Saarland We showcase the usage of JupyterGIS for creating geographical maps showing the HQ 100 flooding zones in Saarland along with images from Wikimedia Commons. These notebooks showcase how to use JupyterGIS. We use JupyterGIS on the UseGalaxy.eu. The tool can be launched from [JupyterGIS in Galaxy Europe](https://usegalaxy.eu/root?tool_id=interactive_tool_jupytergis_notebook). Please prior to use it, register to [usegalaxy.eu](https://usegalaxy.eu/login/start) and authenticate yourself before starting it. To help new users get started, there are two tutorials available: - [Intro to JupyterGIS](https://jupytergis.readthedocs.io/en/latest/user_guide/tutorials/01-intro/index.html) a step-by-step guide for new users. - [Collaborative Features Tutorial](https://training.galaxyproject.org/training-material/topics/climate/tutorials/jupytergis_collaboration/tutorial.html) — a guide for exploring real-time editing and shared annotations. ![Hamburg Urban Data Poral for flood analysis](https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/static/saarland_map_output.png) application/ld+json https://w3id.org/ro-id/588ada8d-a185-402e-8b60-3c17435110ee flooding saarland Flooding in Saarland (Germany) with JupyterGIS - fork Flooding in Saarland (Germany) with JupyterGIS MANUAL https://w3id.org/ro-id/588ada8d-a185-402e-8b60-3c17435110ee/24ad51f6-d7b4-4695-b93c-6de4f9a7aabe https://w3id.org/ro-id/15e54fde-611f-49cc-8951-e15c650f0cb2 https://w3id.org/ro-id/12fea67b-4679-4543-9d57-44440a7620c6 https://w3id.org/ro-id/d26768e8-b368-4ad2-9d32-dca81dce9e2b https://w3id.org/ro-id/f1474448-73d6-4d7e-919e-0134246ed966 https://w3id.org/ro-id/0540cebe-9b10-45af-9db4-604e7a64ed60 https://w3id.org/ro-id/0567f806-00e3-4120-9e01-229e58a87f26 https://w3id.org/ro-id/1d1be42a-f453-4705-82e3-e10d610807d5 https://w3id.org/ro-id/246eb18d-bf7f-4521-b47f-b88e24ece2d7 https://w3id.org/ro-id/2e473be3-ac4f-4804-a05f-395a06f0c30f https://w3id.org/ro-id/3d07f69d-a2cb-4a97-8b2f-24c1f5946691 https://w3id.org/ro-id/67a0f1a1-ee4c-4c41-b064-6fa4355a9792 https://w3id.org/ro-id/7ec7d31a-cfc7-412e-9e5a-1e6145094ab3 https://w3id.org/ro-id/a5af6ff5-a513-4ceb-9c10-942d1c6b6b38 https://w3id.org/ro-id/b172b4b1-fafb-4774-82bd-06d1b46dc290 https://w3id.org/ro-id/b8426843-c9aa-40de-bf19-934feb77f475 https://w3id.org/ro-id/c84eae9f-3b68-453e-8301-a561c19ae1c9 https://w3id.org/ro-id/fbd83c19-edd6-4933-a434-2c5bf9aaea6d https://w3id.org/ro-id/c32fb828-0fb1-4761-a71e-b79058f885d1 https://w3id.org/ro-id/e80f74dd-9268-4215-85d5-210bf3b4eaad https://w3id.org/ro-id/1d39b6ad-25f6-4b03-8aca-fc77c1ed5330 https://w3id.org/ro-id/35deaca0-ec97-468c-8c2c-4dab85ee0fd8 https://w3id.org/ro-id/4186caba-311c-4fe7-b9a5-7bedfaa9333d https://w3id.org/ro-id/637a6d26-e7ec-4001-90f6-aa42a4f6a943 https://w3id.org/ro-id/76ca8190-4c71-4c02-b5d9-51aabcfcf912 https://w3id.org/ro-id/941022ff-01b0-4e3a-83d0-054f39ad6bc2 https://w3id.org/ro-id/a246196d-8e26-4342-b638-15f1663bfb07 https://w3id.org/ro-id/2dc852b1-ee72-4e32-8770-baeddd6ee513 https://w3id.org/ro-id/8c2959e5-d5d3-4ffa-954f-db48cc009558 https://w3id.org/ro-id/3b2b42dd-d686-49fa-bd25-a3e8ec0bbd82 https://w3id.org/ro-id/47e46601-34db-4ed2-a16c-c7e63e3ff817 https://w3id.org/ro-id/4baa42ad-b336-483a-bc75-9c2cf6ed7640 https://w3id.org/ro-id/572c411e-83d9-4fd8-b581-9724b2674243 https://w3id.org/ro-id/d825b7f9-7b4c-4086-9946-a9230dbb2155 https://w3id.org/ro-id/500e0dba-c679-42fe-8afe-b8f8e1349831 https://w3id.org/ro-id/51f2e644-1083-4bc8-8184-ee7a7fe0a1e6 https://w3id.org/ro-id/de2ddebf-664e-4694-bd50-106d0429f112 Fouilloux, Anne, and ELİFSU FİLİZ. "Flooding in Saarland (Germany) with JupyterGIS." ROHub. May 17 ,2025. https://w3id.org/ro-id/588ada8d-a185-402e-8b60-3c17435110ee. POINT (7.0017099363030875 49.229107487031975) https://fair2adapt.github.io/saarland-flooding/ 2025-05-17 17:25:04.424197+00:00 2025-05-28 12:08:08.625385+00:00 Jupyter Book (HTML rendered version) to showcase JupyterGiS in action using flooding event data from Saarland, Germany, available via the Urban Data Portal. Saarland flooding Jupyter Book (rendered HTML) 2025-05-17 17:25:04.424197+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/environment.yml 2025-05-28 06:22:48.754139+00:00 2025-05-28 12:08:06.376487+00:00 environment.yml (Conda environment for Python JupyterGIS) environment.yml (JupyterGIS environment) 2025-05-28 06:22:48.754139+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/environment.lock.yml 2025-05-28 06:07:06.113808+00:00 2025-05-28 12:08:09.102494+00:00 Python environment for executing the associated Jupyter notebook. environment.lock.yml (conda environment) 2025-05-28 06:07:06.113808+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Flood_protection_line_Saarland.ipynb 2025-05-28 06:08:36.012998+00:00 2025-05-28 12:08:06.812992+00:00 Flood_protection_line_Saarland.ipynb is a Jupyter Notebook . Flood_protection_line_Saarland.ipynb (Jupyter Notebook) 2025-05-28 06:08:36.012998+00:00 https://w3id.org/ro-id/588ada8d-a185-402e-8b60-3c17435110ee/resources/85ba47e2-3608-40f7-ade8-bfd40a8fc19d https://github.com/FAIR2Adapt/saarland-flooding.git 2025-05-17 17:23:09.941511+00:00 2025-05-28 12:08:09.818748+00:00 This Github repository contains the latest version of the jupyter notebooks showcasing JupyterGIS. Saarland-flooding (Github repository) 2025-05-17 17:23:09.941511+00:00 2788165 https://api.rohub.org/api/resources/67c0cbcb-4067-4ad1-ad2c-06e98aff714b/download/ 2025-05-17 17:20:36.705228+00:00 2025-05-28 12:08:08.186162+00:00 Flood in Saarland with JupyterGIS. image/png flood_in_saarland_with_jqgis.png 2025-05-17 17:20:36.705228+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/get_typename_from_WFS.ipynb 2025-05-28 06:10:42.644758+00:00 2025-05-28 12:08:04.665895+00:00 ## Get data layer names from WFS service URL **Learn how to get the typename (e.g. data layers) which are requested for querying WFS services** get_typename_from_WFS.ipynb (Jupyter Notebook) 2025-05-28 06:10:42.644758+00:00 https://raw.githubusercontent.com/FAIR2Adapt/saarland-flooding/refs/heads/main/notebooks/Hamburg_urban_data_portal_WFS.ipynb 2025-05-28 06:12:02.439269+00:00 2025-05-28 12:08:14.693939+00:00 ## Get data from the Hamburg Urban Data Portal using WFS **Learn how to access vector data from the Hamburg Urban Data Portal with WFS** Hamburg_urban_data_portal_WFS.ipynb (Jupyter Notebook) 2025-05-28 06:12:02.439269+00:00 https://doi.org/10.5281/zenodo.15470110 2025-05-20 08:44:57.687928+00:00 2025-05-28 12:08:07.043396+00:00 Saarland flooding (Galaxy History) with outputs and executed notebooks. Saarland flooding (Galaxy History) 2025-05-20 08:44:57.687928+00:00 tutorial 14.020270270270272 8.3 annotation 5.874840357598978 4.6 notebook 9.628378378378377 5.7 real time 4.725415070242657 3.7 geosciences 100.0 0.9689354300498962 JupyterGIS 24.155405405405403 14.3 Saarland 14.358108108108107 8.5 headquarters 4.725415070242657 3.7 usage 6.257982120051087 4.9 map 7.0242656449553005 5.5 atmospheric sciences 100.0 0.571331262588501 http 17.11366538952746 13.4 Germany https://www.wikidata.org/wiki/Q183 features tutorial 17.34006734006734 10.3 Flooding in Saarland (Germany) with JupyterGIS. 33.20610687022901 17.4 earth sciences 100.0 0.571331262588501 Saarland https://www.wikidata.org/wiki/Q1201 Saarland 11.877394636015328 9.3 elifsu@simula.no ELİFSU FİLİZ Environmental research University of Florida ethanwhite@ufl.edu Ethan P. White 0000-0001-6728-7745 The Alan Turing Institute lvanzeeland@turing.ac.uk Louisa Van Zeeland 0009-0005-0392-4377 DeepForest notebook 34.64249748237664 34.4 earth sciences 100.0 0.7395366430282593 Environmental Data Science book 15.609264853977846 15.5 detection 11.345939933259174 10.2 geophysics 100.0 0.4561961591243744 notebook 19.120135363790187 11.3 research 19.4585448392555 11.5 object 14.571746384872078 13.1 geosciences 100.0 0.4561961591243744 Environmental Data Science 17.575083426028918 15.8 2025-05-27 16:35:09.245985+00:00 https://w3id.org/ro-id/users/annef%40simula.no https://w3id.org/ro-id/7ad44bec-6784-437f-b5f3-2199b43a5303 research 13.348164627363737 12.0 aim 21.489001692047378 12.7 Livestock detection 15.105740181268883 15.0 geology 100.0 0.7395366430282593 Book industry Economy, business and finance/Economic sector/Media/Book industry https://w3id.org/ro-id/5784402a-b47e-4560-b6ef-c9fecfef2115 0 https://api.rohub.org/api/ros/7ad44bec-6784-437f-b5f3-2199b43a5303/crate/download/ 2024-12-04 22:59:05.987316+00:00 2025-05-27 17:13:45.833609+00:00 2024-12-04 22:59:05.987316+00:00 The research object refers to the Livestock detection using DeepForest notebook published in the Environmental Data Science book. application/ld+json https://w3id.org/ro-id/7ad44bec-6784-437f-b5f3-2199b43a5303 Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book MANUAL https://w3id.org/ro-id/f48250c4-c494-456a-9b6e-f4e6357a38c3 https://w3id.org/ro-id/18f88f96-891f-4283-bca6-96e5b5790a9f https://w3id.org/ro-id/25b882de-d196-406b-bb10-3e3d9144e703 https://w3id.org/ro-id/6f7d2e05-5259-4e8e-b0e1-f32803318c16 https://w3id.org/ro-id/fc4c7bbf-fd88-4614-b0a2-ee4d42cdb14f https://w3id.org/ro-id/fd30f53e-5736-4cfe-8f87-c830284b2eb0 https://w3id.org/ro-id/0524d334-9343-4da9-97e1-3bf548ec43a4 https://w3id.org/ro-id/763687ae-23cf-4cdd-9cd2-5abdc64a0292 https://w3id.org/ro-id/79e08be3-7b6f-4e45-8b22-c7601981149f https://w3id.org/ro-id/8729e151-1755-45c5-bc96-984df50473fd https://w3id.org/ro-id/8d0c7987-45ed-4898-a75c-99b4bdc79a95 https://w3id.org/ro-id/122efe44-26a9-4b91-a5d3-eb01213346bb https://w3id.org/ro-id/39837817-242b-44c5-96d7-14c471898391 https://w3id.org/ro-id/4db6da95-285e-42db-932c-1fd23e6fcdd2 https://w3id.org/ro-id/5ab77465-cf90-426c-ae7f-ffbb76d7a775 https://w3id.org/ro-id/83560376-2acb-4676-8468-48db185146f6 https://w3id.org/ro-id/a0692c42-42b4-4787-8e33-d8efbb6d7ad1 https://w3id.org/ro-id/e23cfbb6-9d20-440a-8cba-3c2cec67c0e0 https://w3id.org/ro-id/13e7bc1d-6788-4671-a6b0-6775f1b35c66 https://w3id.org/ro-id/45e6be16-1a7d-4b5d-9df8-110c40627fc6 https://w3id.org/ro-id/0368b491-8ec4-486a-ac1c-05f586f55612 https://w3id.org/ro-id/111854d7-7863-4e42-84cd-92fadc504e8c https://w3id.org/ro-id/72028dbc-cc0c-4df0-a402-1fbfdc212361 https://w3id.org/ro-id/a6a10782-a94e-4c0d-8b1a-f55dd52f35c9 https://w3id.org/ro-id/c1f82fab-b31e-4415-a94d-264d91ae82de https://w3id.org/ro-id/cbf391bc-8a89-4faa-80a3-45105c7864b2 https://w3id.org/ro-id/de5f84e2-2c7a-4242-9750-a9913493a6ca Cameron Appel, Ethan P. White, and Louisa Van Zeeland. "Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book." ROHub. Dec 04 ,2024. https://w3id.org/ro-id/7ad44bec-6784-437f-b5f3-2199b43a5303. output tool input biblio https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/blob/main/notebook.ipynb 2024-12-04 23:00:20.603543+00:00 2024-12-04 23:00:21.556504+00:00 Jupyter Notebook hosted by the Environmental Data Science Book Jupyter notebook 2024-12-04 23:00:20.603543+00:00 https://doi.org/https://doi.org/10.1111/2041-210X.13472 2024-12-04 23:00:33.471709+00:00 2024-12-04 23:00:34.525430+00:00 Related publication of the modelling presented in the Jupyter notebook Deepforest: a python package for rgb deep learning tree crown delineation 2024-12-04 23:00:33.471709+00:00 https://doi.org/10.7910/DVN/N7GJYU 2024-12-04 23:00:24.659570+00:00 2024-12-04 23:00:25.667439+00:00 Contains input Input dataset for the fine-tuned model used in the Jupyter notebook of Livestock detection using DeepForest Input Input dataset for the fine-tuned model 2024-12-04 23:00:24.659570+00:00 https://edsbook.org/notebooks/gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/notebook.html 2024-12-04 23:00:46.367365+00:00 2024-12-04 23:00:47.573187+00:00 Rendered version of the Jupyter Notebook hosted by the Environmental Data Science Book text/html Online rendered version of the Jupyter notebook 2024-12-04 23:00:46.367365+00:00 457238 https://api.rohub.org/api/resources/832ec27f-3faf-4051-9a42-dfa6d421a6ed/download/ 2024-12-04 23:00:16.094540+00:00 2024-12-04 23:00:17.222084+00:00 image/png Image showing an example of the finetuned model predictions to detect livestock 2024-12-04 23:00:16.094540+00:00 https://doi.org/10.5281/zenodo.14279111 2024-12-04 23:00:28.915134+00:00 2024-12-04 23:00:30.048350+00:00 Contains outputs, (results), generated in the Jupyter notebook of Livestock detection using DeepForest Outputs 2024-12-04 23:00:28.915134+00:00 https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/tree/main/.lock/conda-lock.yml 2024-12-04 23:00:37.727861+00:00 2024-12-04 23:00:38.784747+00:00 Lock conda file of the Jupyter notebook hosted by the Environmental Data Science Book Lock conda file 2024-12-04 23:00:37.727861+00:00 https://github.com/eds-book-gallery/95199651-9e81-4cae-a3a7-66398a9a5f62/tree/main/.binder/environment.yml 2024-12-04 23:00:41.963542+00:00 2024-12-04 23:00:43.056070+00:00 Conda environment when user want to have the same libraries installed without concerns of package versions Conda environment 2024-12-04 23:00:41.963542+00:00 book 12.235817575083425 11.0 Literature Arts, culture and entertainment/Arts and entertainment/Literature Language Arts, culture and entertainment/Culture/Language notebook 13.125695216907674 11.8 use DeepForest notebook 0.6042296072507553 0.6 research object 34.038267875125875 33.8 The research object refers to the Livestock detection using DeepForest notebook published in the Environmental Data Science book. 60.76076076076076 60.7 Livestock detection using DeepForest (Jupyter Notebook) published in the Environmental Data Science book. 39.23923923923924 39.2 DeepForest 17.797552836484982 16.0 publishing 100.0 6.9 detection 17.089678510998308 10.1 book 22.84263959390863 13.5 Queen Mary University London c.appel@qmul.ac.uk Cameron Appel Environmental Data Science Book Community ./ 2020-10-29T02:56:21.632Z 2020-10-29T02:56:21.632Z To study the flow field around a circular bridge pier with an upstream flow diversion structure (FDS), Particle Image Velocimetry (PIV) technique was employed. Velocity components at a vicinity of a pier with an upstream FDS under different submergence ratio were measured. The measurements were made with a single pier case, and a single pier with the FDS at the upstream with H/y = 0.25, 0.5, 0.75, and >1. The streamwise (u) and vertical (w) velocity components were determined from analysis of the PIV images collected during the individual experiments. Further analyses were carried out by a developed code in MATLAB and the results were stored in txt files. The outcomes include: Normalised Streamwise Velocity Component (u/V) Normalised Vertical Velocity Component (w/V) Normalised Turbulence Intensity Components (TIu/V and TIw/V) Normalised Turbulent Kinetic Energy (TKE/V2) Normalised Reynolds Shear Stress (u^' w^' ) / V^2 79d6e45f218b99f5dfe4e432e05abb0b Circular pier Flow Diversion Structure Flow field Flow field around a circular bridge pier with an upstream triangular prism using Particle Image Velocimetry 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Fiona.Tweedie@uts.edu.au Hadi.Khabbaz@uts.edu.au Khabbaz Mohammad Hadi.Khabbaz@uts.edu.au Mohammad Khabbaz James.Ball@uts.edu.au Ball James James.Ball@uts.edu.au James Ball _:contact/Mohsen.Ranjbarzahedani@student.uts.edu.au Mohsen.Ranjbarzahedani@student.uts.edu.au Ranjbarzahedani Mohsen Mohsen.Ranjbarzahedani@student.uts.edu.au Mohsen Ranjbarzahedani application/pdf Description.pdf Data record created 2020-10-29T02:56:21.632Z Create 2020-10-29T02:56:21.632Z Publish text/plain CL FDS 25.txt CL FDS 50.txt CL FDS 75.txt CL FDS unsubmerged.txt CL pier only.txt Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/bf5n-0n94 DOI _:FOR/09 09 - ENGINEERING _:FOR/09 _:FOR/0905 0905 - CIVIL ENGINEERING _:FOR/0905 Data Manager Mohsen.Ranjbarzahedani@student.uts.edu.au _:contact/Mohsen.Ranjbarzahedani@student.uts.edu.au public_ocfl 79d6e45f218b99f5dfe4e432e05abb0b repository arcp://name,uts_public_data_repo/79d6e45f218b99f5dfe4e432e05abb0b http://creativecommons.org/licenses/by-nc/4.0 http://creativecommons.org/licenses/by-nc/4.0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2024-09-12T00:58:40.219Z 2024-09-12T00:58:40.219Z raw dataset from laboratory analysis of tapelifts from garments collected immediately following transfer simulation 9a7f0f8060ff11efac2c9517142205fd evaluation fibre length fibre transfer forensic science interpretation microtrace textile fibres trace evidence transfer study Fibre Transfer Dataset for publication 2024 2024 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git application/vnd.openxmlformats-officedocument.spreadsheetml.sheet transfer_raw.xlsx Claude.Roux@uts.edu.au Roux Claude Claude.Roux@uts.edu.au Claude Roux _:contact/Victoria.Lau@uts.edu.au Victoria.Lau@uts.edu.au Lau Victoria Victoria.Lau@uts.edu.au Victoria Lau Xanthe.Spindler@uts.edu.au Spindler Xanthe Xanthe.Spindler@uts.edu.au Xanthe Spindler Data record created 2024-09-12T00:58:40.219Z Create 2024-09-12T00:58:40.219Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld victoria.lau@uts.edu.au weisi.chen@uts.edu.au https://doi.org/10.1016/j.forsciint.2023.111746 The transfer of fibres between garments in a choreographed assault scenario _:FOR/039902 039902 - Forensic Chemistry _:FOR/039902 _:FOR/0399 0399 - OTHER CHEMICAL SCIENCES _:FOR/0399 _:FOR/03 03 - CHEMICAL SCIENCES _:FOR/03 Data Manager Victoria.Lau@uts.edu.au _:contact/Victoria.Lau@uts.edu.au public_ocfl 9a7f0f8060ff11efac2c9517142205fd repository arcp://name,uts_public_data_repo/9a7f0f8060ff11efac2c9517142205fd http://creativecommons.org/licenses/by-nc/3.0/au http://creativecommons.org/licenses/by-nc/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2021-07-28T05:47:12.015Z 2021-07-28T05:47:12.015Z This record contains all data collected for the Expert Nation project which was an ARC funded Discovery Project (DP160101109) led by Assoc. Prof. Tamson Pietsch (UTS), Assoc. Prof Julia Horne (USyd), Prof. Stephen Garton (USyd), Prof. Kate Darian Smith (UTas) and Dr James Waghorne (UMelb). The project, conducted between 2016 and 2020, traced the professional lives of nearly 6000 Australian men and women who served in the First World War and who had a university education. Through examining the professional lives of the members of this cohort in the 1920s and 1930s, the project explored the relationship between war service, expertise and nation building. A key part of the project was amassing biographical, educational and career data from 1919-1939 for the returned service people in a Heurist database. Data was collected from a variety of sources including state gazettes, war service records, university archives, TROVE, the Australian Dictionary of Biography, the Encyclopedia of Australian Science as well as the state archives and libraries of Australia. Career data was located for approximately 80 per cent of the individuals in the database. All of the individuals have basic information attached to their profile. The data available on this site was collected from Heurist September 2020 by UTS eResearch at the close of the project. 32b454f0ef6011ebb235ad322b843cb4 1920s 1930s Australia Expertise Interwar University Expert Nation - Data Collection 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/Gabrielle.Kemmis@uts.edu.au Gabrielle.Kemmis@uts.edu.au Kemmis Gabrielle Gabrielle.Kemmis@uts.edu.au Gabrielle Kemmis Tamson.Pietsch@uts.edu.au Pietsch Tamson Tamson.Pietsch@uts.edu.au Tamson Pietsch Data record created 2021-07-28T05:47:12.015Z Create 2021-07-28T05:47:12.015Z Publish julia.horne@sydney.edu.au Horne Julia julia.horne@sydney.edu.au Julia Horne jwag@unimelb.edu.au Waghorne James jwag@unimelb.edu.au James Waghorne kate.dariansmith@utas.edu.au Darian-Smith Kate kate.dariansmith@utas.edu.au Kate Darian-Smith Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld simon.kruik@uts.edu.au stephen.garton@sydney.edu.au Garton Stephen stephen.garton@sydney.edu.au Stephen Garton _:FOR/21 21 - HISTORY AND ARCHAEOLOGY _:FOR/21 Data Manager Gabrielle.Kemmis@uts.edu.au _:contact/Gabrielle.Kemmis@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl 32b454f0ef6011ebb235ad322b843cb4 repository arcp://name,uts_public_data_repo/32b454f0ef6011ebb235ad322b843cb4 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2023-07-09T23:42:33.612Z 2023-07-09T23:42:33.612Z Supplementary files for the PhD thesis of Inah Camaya, relating to the analysis of (1) the differential abundance of proteins in the pancreas of NOD mice treated with FhHDM-1, (2) the differential expression of mRNA in beta cells treated with FhHDM-1 under basal and apoptotic conditions and, (3) the differential expression of miRNA:mRNA in beta cells treated with FhHDM-1 under basal and apoptotic conditions. Supplementary Figure 2.1. Interlinked contiguous quartet of interacting proteins (Cdh1, Agt, Rps6kb1, and Bmi1) Supplementary Table 2.1. LC-MS/MS identification of proteins in NOD mouse pancreas Supplementary Table 2.2. Proteins identified in the pancreas of mice Supplementary Table 2.3. Interrogation of the protein network using specific search terms Supplementary Table 2.4. Differentially expressed genes with a logarithmic fold change of >1 or <1, and a false discovery rate <0.05 in NIT-1 β-cells treated with FhHDM-1 as compared to untreated cells Supplementary Table 3.1. Proteins with significantly different abundance in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.1. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls Supplementary Table 4.2. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.3A. List of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 2). Supplementary Table 4.3B. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.4. List of matched gene targets from miRNA downregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 4.5). Supplementary Table 4.5. Differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.6. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone Supplementary Table 4.7. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.8. KEGG pathway analysis of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.9. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cyokines alone Supplementary Table 4.10. Differentially expressed genes in the transcriptome of FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.11. Matched gene targets common between transcriptome and predicted gene targets of differentially expressed miRNA in FhHDM-1 treated β-cells under inflammatory conditions compared to pro-inflammatory cytokine only (CM) controls. Supplementary Table 4.12. KEGG pathway analysis of matched genes downregulated in the transcriptome with their corresponding regulatory miRNA upregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.13. KEGG pathway analysis of matched genes upregulated in the transcriptome with their corresponding regulatory miRNA downregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone c8025bb01eac11ee83d1a16b16f71664 Fasciola FhHDM IGF PI3K apoptosis beta cell helminth miRNA type 1 diabetes Inah Camaya PhD - Supplementary Data 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Bronwyn.Obrien@uts.edu.au O'Brien Bronwyn Bronwyn.Obrien@uts.edu.au Bronwyn O'Brien Inah.Camaya@uts.edu.au Camaya Inah Inah.Camaya@uts.edu.au Inah Camaya _:contact/Sheila.Donnelly@uts.edu.au Sheila.Donnelly@uts.edu.au Donnelly Sheila Sheila.Donnelly@uts.edu.au Sheila Donnelly crystal.yip@uts.edu.au Data record created 2023-07-09T23:42:33.612Z Create 2023-07-09T23:42:33.612Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/yy89-dk26. DOI Camaya I, Mok TY, Lund M, To J, Braidy N, Robinson MW, Santos J, O'Brien B, Donnelly S. The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells. J Mol Med (Berl). 2021 Nov;99(11):1605-1621. doi: 10.1007/s00109-021-02122-x. https://link.springer.com/article/10.1007/s00109-021-02122-x The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells Camaya I, Donnelly S, O'Brien B. Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes. J Diabetes. 2022 Apr;14(4):247-260. doi: 10.1111/1753-0407.13252. https://onlinelibrary.wiley.com/doi/10.1111/1753-0407.13252 Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes Data Manager Sheila.Donnelly@uts.edu.au _:contact/Sheila.Donnelly@uts.edu.au public_ocfl c8025bb01eac11ee83d1a16b16f71664 repository arcp://name,uts_public_data_repo/c8025bb01eac11ee83d1a16b16f71664 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-10-07T05:50:07.281Z 2020-10-07T05:50:07.281Z This report presents a literature review of the acoustic emission from additive manufacturing (AM) processes. The fundamental concepts of additive manufacturing and the characteristics of different categories were briefly introduced first. Then the existing studies in literature on the acoustic emission from additive manufacturing are presented in the second chapter. The data processing techniques vary from simple time and frequency domain parameters to complicated signal processing methods. However, no practical industrial applications based on the acoustic emission have been found in the literature. Table 1 summarises the sensor, frequency range, signal conditioning and signal processing methods used in the reviewed studies. 333a892f7dc2109b0444215c3fc31eca Welding acoustics signal processing Acoustic emissions from additive manufacturing 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/5f06c11cbcc23 DOI Fiona.Tweedie@uts.edu.au Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett _:contact/Sipei.Zhao@uts.edu.au Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao Xiaojun.Qiu@uts.edu.au Qiu Xiaojun Xiaojun.Qiu@uts.edu.au Xiaojun Qiu anthony.lele@automationacoustics.com Lele Anthony anthony.lele@automationacoustics.com Anthony Lele Data record created 2020-10-07T05:50:07.281Z Create 2020-10-07T05:50:07.281Z Publish malcolm@icaruslearning.com Rigby Malcolm malcolm@icaruslearning.com Malcolm Rigby Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/09 09 - ENGINEERING _:FOR/09 _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 _:FOR/0913 0913 - MECHANICAL ENGINEERING _:FOR/0913 Data Manager Sipei.Zhao@uts.edu.au _:contact/Sipei.Zhao@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl 333a892f7dc2109b0444215c3fc31eca repository arcp://name,uts_public_data_repo/333a892f7dc2109b0444215c3fc31eca You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney http://dx.doi.org/10.1016/j.jhydrol.2016.11.001 2018-03-29 The data set includes assessment marks of undergraduate international students from a private tertiary education provider in Australia. Two first year units Business Economics and Business Statistics were included over a two-year period (2012-2013). There were three main assessments that students had to complete in each semester: (a) two short multiple choice tests (Test 1 and Test 2); (b) mid-semester test (MST) and; (c) final exam (FE). The two short multiple choice tests included an individual test and a group test. T-tests, paired t-tests and regression analysis were used to ascertain if group work improves student outcomes. In particular, the marks for the individual tests are compared to the marks for the group tests. ./ https://dx.doi.org/10.4225/59/5b03bb8889b66 International Students' Assessment Marks for First Year Economics and Statistics Units Collected over Four Semesters (2012-2013) 2018 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Australia License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/au/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. https://creativecommons.org/licenses/by-nc-sa/3.0/au/ Attribution-NonCommercial-ShareAlike 3.0 Australia (CC BY-NC-SA 3.0 AU) 2019-12-23T04:27:50.474Z Migrate to RO-Crate 38303 Microsoft Excel for Windows http://www.nationalarchives.gov.uk/PRONOM/fmt/214 Combined Assessment Data for Economics and Statistics Units 2012-2013.xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://orcid.org/0000-0003-0732-9207 Luz Stenberg https://ror.org/0384j8v12 University of Technology Sydney public_ocfl 35be6a4043ea91ce2ce97c8366f9c52f repository arcp://name,uts_public_data_repo/35be6a4043ea91ce2ce97c8366f9c52f You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) customer service Luz.Stenberg@uts.edu.au mailto:Luz.Stenberg@uts.edu.au Contact Luz Stenberg ./ 2023-11-17T00:30:39.516Z 2023-11-17T00:30:39.516Z Dataset accompanying AJET paper of the same name. The launch of new tools in late 2022 heralded significant growth in attention to the impacts of generative AI (genAI) in education. Claims of the potential impact on education are contested, but there are clear risks of inappropriate use particularly where genAI aligns poorly with learning aims. In response, in mid-2023 the Australian Federal Government held an inquiry, calling for public submissions. This inquiry offers a lens onto the policy framing of genAI in education and provides the object of investigation for this paper. We use the inquiry submissions, extracting structured claims from each. This extraction is provided as an open data set for further research. b304625084da11ee97111d55566bcc08 AI ethics AI in education artificial intelligence in education content analysis edtech educational technology open data participatory policy analysis r Generative AI in the Australian Education System: An Open Dataset of Stakeholder Recommendations and Emerging Analysis from a Public Inquiry 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Bhuva.Narayan@uts.edu.au Narayan Bhuva Bhuva.Narayan@uts.edu.au Bhuva Narayan Camille.Dickson-Deane@uts.edu.au Dickson-Deane Camille Camille.Dickson-Deane@uts.edu.au Camille Dickson-Deane Damian.Maher@uts.edu.au Maher Damian Damian.Maher@uts.edu.au Damian Maher Dilek.CetindamarKozanoglu@uts.edu.au Cetindamar Kozanoglu Dilek Dilek.CetindamarKozanoglu@uts.edu.au Dilek Cetindamar Kozanoglu Foroogh.BaradaranZarrabi@student.uts.edu.au Zarrabi Forooq Foroogh.BaradaranZarrabi@student.uts.edu.au Forooq Zarrabi Keith.Heggart@uts.edu.au Heggart Keith Keith.Heggart@uts.edu.au Keith Heggart Simon.Knight@uts.edu.au Knight Simon Simon.Knight@uts.edu.au Simon Knight crystal.yip@uts.edu.au Data record created 2023-11-17T00:30:39.516Z Create 2023-11-17T00:30:39.516Z Publish Kitto Kirsty Kirsty Kitto Kirsty Kitto Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:contact/simon.knight@uts.edu.au simon.knight@uts.edu.au Knight Simon simon.knight@uts.edu.au Simon Knight Data Manager simon.knight@uts.edu.au _:contact/simon.knight@uts.edu.au public_ocfl b304625084da11ee97111d55566bcc08 repository arcp://name,uts_public_data_repo/b304625084da11ee97111d55566bcc08 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://github.com/sjgknight/genAIinquiry https://github.com/sjgknight/genAIinquiry https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-10-07T05:46:46.460Z 2020-10-07T05:46:46.460Z The measurement system 2.0 is an upgrade from the 1.0 version, which includes an USB3.0 high speed camera in addition to the microphone and current/voltage sensors. The software is used to control the measurement progress and the measured signals are displayed on the computer with a graphical user interface. The software is developed in LabView. eca66347644e8f2443a3d8512c3415c9 Welding acoustics signal processing Measurement system 2.0 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/5f06ab367329b DOI Fiona.Tweedie@uts.edu.au Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett _:contact/Sipei.Zhao@uts.edu.au Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao Xiaojun.Qiu@uts.edu.au Qiu Xiaojun Xiaojun.Qiu@uts.edu.au Xiaojun Qiu anthony.lele@automationacoustics.com Lele Anthony anthony.lele@automationacoustics.com Anthony Lele Data record created 2020-10-07T05:46:46.460Z Create 2020-10-07T05:46:46.460Z Publish malcolm@icaruslearning.com Rigby Malcolm malcolm@icaruslearning.com Malcolm Rigby Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 Data Manager Sipei.Zhao@uts.edu.au _:contact/Sipei.Zhao@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl eca66347644e8f2443a3d8512c3415c9 repository arcp://name,uts_public_data_repo/eca66347644e8f2443a3d8512c3415c9 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2019-12-04T04:43:45.039Z 2019-12-04T04:43:45.039Z First year postgraduate students' academic outcomes studying Economics for Management c01957115a61a3118b93a9036fce2914 First year postgraduate students cultural diversity international students postgraduate learning Postgraduate Students' Assessment Marks in Economics for Management Unit Collected over Two Semesters in 2016. 2016-03-07/2016-12-30 2019 2019 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Harry.Tse@uts.edu.au Tse Harry Harry.Tse@uts.edu.au Harry Tse _:contact/Luz.Stenberg@uts.edu.au Luz.Stenberg@uts.edu.au Stenberg Luz Luz.Stenberg@uts.edu.au Luz Stenberg admin@redboxresearchdata.com.au Data record created 2019-12-04T04:43:45.039Z Create 2019-12-04T04:43:45.039Z Publish 2019-12-23T04:30:11.875Z Migrate to RO-Crate application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Postgraduate learning for Economics Semesters 1 and 2 2016 (1).xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/13 13 - EDUCATION _:FOR/13 _:FOR/14 14 - ECONOMICS _:FOR/14 Data Manager Luz.Stenberg@uts.edu.au _:contact/Luz.Stenberg@uts.edu.au public_ocfl c01957115a61a3118b93a9036fce2914 repository arcp://name,uts_public_data_repo/c01957115a61a3118b93a9036fce2914 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2024-10-28T04:00:52.956Z 2024-10-28T04:00:52.956Z We extract data from two databases (web of science and Academic Analytics). For the web of science database we identify the outputs of each author. For example, an author might be listed as K Walsh, K D Walsh, Kathleen Walsh or Kathy Walsh. We investigate (using web searches of university websites and linkedIn) whether the publications of each author should be grouped under one author ID or several. The web of science file doesn’t include gender, so this needed to be categorised manually. We augment standard gender methods such as those used in Faccio, Marchica and Murab (2016) and Adams et al (2018) and accessed databases of first names classified by gender. Authors were coded male or female if their names were unambiguously one gender (e.g John or Mary). For the approximately 7000 ambiguous names (e.g. unusual or foreign names or names such as Michelle which can be either male or female) we searched for the specific author using either names or paper titles and determine gender using photos or pronouns in their webpage, university profile, LinkedIn profile, ratemyprofessor.com or other online reference to the author or paper. 5a380da085c111ef88e8710d43870003 author networks gender The gendered nature of academic networks in finance 2024 2024 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Kathleen.Walsh@uts.edu.au Walsh Kathleen Kathleen.Walsh@uts.edu.au Kathleen Walsh Data record created 2024-10-28T04:00:52.956Z Create 2024-10-28T04:00:52.956Z Publish _:contact/kathleen.walsh@uts.edu.au kathleen.walsh@uts.edu.au Walsh Kathy kathleen.walsh@uts.edu.au Kathy Walsh Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld weisi.chen@uts.edu.au Data Manager kathleen.walsh@uts.edu.au _:contact/kathleen.walsh@uts.edu.au public_ocfl 5a380da085c111ef88e8710d43870003 repository arcp://name,uts_public_data_repo/5a380da085c111ef88e8710d43870003 http://creativecommons.org/licenses/by-sa/3.0/au http://creativecommons.org/licenses/by-sa/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney 2017 2018-10-09 This dataset contains de-identified transcripts of interviews collected at the University of Technology Sydney between December 2016 and March 2017. Interviewees are rideshare drivers working in Australian cities. ./ https://dx.doi.org/10.26195/5bbed3090abea Working in the disrupted economy (transcripts) 2018 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Australia License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/au/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. https://creativecommons.org/licenses/by-nc-sa/3.0/au/ Attribution-NonCommercial-ShareAlike 3.0 Australia (CC BY-NC-SA 3.0 AU) 2019-12-23T04:28:45.118Z Migrate to RO-Crate Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld  Damian.Oliver@uts.edu.au https://orcid.org/0000-0002-0045-3013 Dr Damian Oliver Emmanuel.Josserand@uts.edu.au https://orcid.org/0000-0002-6724-2405 Professor of Management and Organisation Studies Emmanuel Josserand Michael.Walker@uts.edu.au https://orcid.org/0000-0002-7389-9518 Mr Michael Walker mailto:Contact data-librarian@uts.edu.au https://ror.org/0384j8v12 University of Technology Sydney public_ocfl 5a8e1d7af0b1baa76ac7db98dd138796 repository arcp://name,uts_public_data_repo/5a8e1d7af0b1baa76ac7db98dd138796 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) customer service Sarah.Kaine@uts.edu.au mailto:Sarah.Kaine@uts.edu.au Contact researcher to negotiate access via Sarah.Kaine@uts.edu.au ./ 2022-07-04T03:41:25.805Z 2022-07-04T03:41:25.805Z This document contains the information used by Prostate Cancer Specialist Nurses running the Telenursing service of the Prostate Cancer Foundation of Australia. The PDF is a version of a dynamic electronic manual containing comprehensive information about prostate cancer, including diagnosis and testing, treatment, side effects, health and community services and information for partners and family members. The information is current at June 2022. 60145760e2d511ec87d63dd96ff2e9f4 telenursing resource PCFA Telenursing eResource 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Samantha.Jakimowicz@uts.edu.au Jakimowicz Samantha Samantha.Jakimowicz@uts.edu.au Samantha Jakimowicz bernie.riley@pcfa.org.au Riley Bernard bernie.riley@pcfa.org.au Bernard Riley _:contact/christine.rossiter@uts.edu.au christine.rossiter@uts.edu.au Rossiter Chris christine.rossiter@uts.edu.au Chris Rossiter Data record created 2022-07-04T03:41:25.805Z Create 2022-07-04T03:41:25.805Z Publish application/pdf PCFA-TelenursingResource with Referencing FINAL with DOI.pdf Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld russell.briggs@pcfa.org.au Briggs Russell russell.briggs@pcfa.org.au Russell Briggs sally.sara@pcfa.org.au Sara Sally sally.sara@pcfa.org.au Sally Sara simon.kruik@uts.edu.au _:FOR/11 11 - MEDICAL AND HEALTH SCIENCES _:FOR/11 Data Manager christine.rossiter@uts.edu.au _:contact/christine.rossiter@uts.edu.au public_ocfl 60145760e2d511ec87d63dd96ff2e9f4 repository arcp://name,uts_public_data_repo/60145760e2d511ec87d63dd96ff2e9f4 http://creativecommons.org/licenses/by-nc-nd/4.0 http://creativecommons.org/licenses/by-nc-nd/4.0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-10-07T05:51:43.597Z 2020-10-07T05:51:43.597Z This database contains the synchronized sound, current, voltage and video signals measured at different benchmark transfer modes in gas metal arc welding. The benchmark metal transfer modes include three groups, i.e., contact, free flight and controlled. In each group, there are four modes. In Group 1 (contact transfer), the four modes are pure liquid bridge (1b2), forced contact (1c3), repel globular (1g4) and gasless explosive (1e10). In Group 2 (free flight transfer), the four modes are repel globular (2g4), forces spray (2s2), pure stream (2t2) and gasless explosive (2e10). In Group 3 (controlled transfer), the four modes are pure contact (3c2), forced pulse (3p3), projected spray (3s7) and gasless explosive (3e10). Four samples were welded at each mode, hence there are a total of 3 (group) × 4 (modes in each group) = 12 samples in the database. de2bf91b3c4127acf81917d9adfa8fcb Welding acoustics signal processing Multi-modal database for benchmark metal transfer modes in gas metal arc welding 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/5f06bb68bcc21 DOI Fiona.Tweedie@uts.edu.au Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett _:contact/Sipei.Zhao@uts.edu.au Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao Xiaojun.Qiu@uts.edu.au Qiu Xiaojun Xiaojun.Qiu@uts.edu.au Xiaojun Qiu anthony.lele@automationacoustics.com Lele Anthony anthony.lele@automationacoustics.com Anthony Lele Data record created 2020-10-07T05:51:43.597Z Create 2020-10-07T05:51:43.597Z Publish malcolm@icaruslearning.com Rigby Malcolm malcolm@icaruslearning.com Malcolm Rigby Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 Data Manager Sipei.Zhao@uts.edu.au _:contact/Sipei.Zhao@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl de2bf91b3c4127acf81917d9adfa8fcb repository arcp://name,uts_public_data_repo/de2bf91b3c4127acf81917d9adfa8fcb You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney 2017-07-12 Palliative care planning for nursing home residents with advanced dementia is often suboptimal. This study compared effects of facilitated case conferencing (FCC) with usual care (UC) on end-of-life care ./ https://dx.doi.org/10.4225/59/59672c09f4a4b Data files associated with the manuscript:Effects of facilitated family case conferencing for advanced dementia: A cluster randomised clinical trial 2017 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git The IDEAL Study was funded by the Australian Department of Health (previously Department of Health and Ageing). The funder played no role in the research dx.doi.org/10.13039/501100003921 http://dx.doi.org/10.13039/501100003921 Australian Department of Health 2017 http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0181020 Effects of facilitated family case conferencing for advanced dementia: A cluster randomised clinical trial
Newcastle NSW Australia
http://newcastle.edu.au The University of Newcastle
Davidson Patricia M http://nla.gov.au/nla.party-1509834 Patricia M Davidson Luckett Tim http://orcid.org/0000-0001-6121-5409 Tim Luckett Pond Dimity http://orcid.org/0000-0001-6520-4213 Dimity Pond Goodall Stephen http://orcid.org/0000-0001-6611-6565 Stephen Goodall Mitchell Geoffrey http://orcid.org/0000-0001-7817-6821 Geoffrey Mitchell Chenoweth Lynnette http://orcid.org/0000-0002-1783-9289 Lynnette Chenoweth Phillips Jane http://orcid.org/0000-0002-3691-8230 Jane Phillips Luscombe Georgina http://orcid.org/0000-0002-4767-5131 Georgina Luscombe Agar Meera http://orcid.org/0000-0002-6756-6119 Meera Agar Beattie Elizabeth http://orcid.org/0000-0002-9779-0605 Elizabeth Beattie Brooks Deborah http://orcid.org/0000-0003-4902-0654 Deborah Brooks
Brisbane QLD Australia
http://qut.edu.au Queensland University of Technology
Camerdown NSW Australia
http://sydney.edu.au The University of Sydney
Randwick NSW Australia
http://unsw.edu.au University of New South Wales
Ultimo NSW Australia
http://uts.edu.au University of Technology Sydney
Baltimore Maryland USA
http://www.jhu.edu Johns Hopkins University
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Australia License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/au/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. https://creativecommons.org/licenses/by-nc-sa/3.0/au/ Attribution-NonCommercial-ShareAlike 3.0 Australia (CC BY-NC-SA 3.0 AU)
Ultimo NSW Australia
1 Faculty of Health, University of Technology Sydney
Haymarket NSW Australia
10 Centre for Health Research and Evaluation (CHERE), Faculty of Business, University of Technology Sydney
Randwick NSW Australia
11 Centre for Healthy Brain Ageing, University of New South Wales
Houltram Jennifer Jennifer Houltram
Liverpool
2 South Western Sydney Clinical School, University of New South Wales
Liverpool NSW Austraila
3 Ingham Institute for Applied Medical Research
Liverpool NSW Austraila
4 Improving Palliative Care through Clinical Trials (ImPaCCT)
Camperdown NSW Australia
5 Sydney Medical School, The University of Sydney
Herston Queensland Australia
6 School of Nursing, Queensland University of Technology
Newcastle NSW Australia
7 School of Medicine and Public Health, The University of Newcastle
St Lucia QLD Australia
8 The University of Queensland Faculty of Medicine, The University of Queensland
Baltimore Maryland USA
9 School of Nursing, Johns Hopkins University
1932-6203 PLOS ONE Cook Janet Janet Cook 2019-12-23T04:28:34.013Z Migrate to RO-Crate Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld customer service tim.luckett@uts.edu.au tim.luckett@uts.edu.au Contact Tim Luckett public_ocfl 452a898e45fc4d31f0d1cd328792528b repository arcp://name,uts_public_data_repo/452a898e45fc4d31f0d1cd328792528b You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) Please contact the data manager for this publication for access ./ 2021-03-16T04:38:54.946Z 2021-03-16T04:38:54.946Z Data on international students from a private tertiary provider between 2012 and 2015 were collected and includes country of origin, gender, age, course and number of advance standing credited to predict student outcomes. fcf5703c2306ae16b7eb1075e81e3bcc expected utility immigration international students student outcomes International Student Data 2012-2015: A private tertiary provider case study 2012-01-01/2015-12-31 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Fiona.Tweedie@uts.edu.au _:contact/Luz.Stenberg@uts.edu.au Luz.Stenberg@uts.edu.au Stenberg Luz Luz.Stenberg@uts.edu.au Luz Stenberg Data record created 2021-03-16T04:38:54.946Z Create 2021-03-16T04:38:54.946Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/QVH7-0K59 DOI _:FOR/14 14 - ECONOMICS _:FOR/14 _:FOR/13 13 - EDUCATION _:FOR/13 Data Manager Luz.Stenberg@uts.edu.au _:contact/Luz.Stenberg@uts.edu.au public_ocfl fcf5703c2306ae16b7eb1075e81e3bcc repository arcp://name,uts_public_data_repo/fcf5703c2306ae16b7eb1075e81e3bcc http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au _:spatial/1 Australia -2.52744E1 1.337751E2 Australia You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney https://doi.org/10.26195/0wx8-v473 Please contact the data manager for this publication for access ./ 2022-04-20T00:08:17.641Z 2022-04-20T00:08:17.641Z This database consists of Room Impulse Responses (RIRs) measured in seven different rooms for multizone sound field reproduction research in various acoustic environments. The RIRs were measured in seven different rooms at UTS Tech Lab, including an anechoic environment (a hemi-anechoic chamber with 50 mm Martini Absorb XHD50 sound absorbing materials on the ground), a hemi-anechoic chamber, a small meeting room, a medium meeting room, a large meeting room, a shoe-box room, and an open-plan office. A circular array of 60 loudspeakers was installed in each room, with two microphone arrays placed sequentially in five different zones inside the loudspeaker array. <br/><br/> In the experiments, four Yamaha RIO1608-D2 and four Yamaha RIO8-D audio interfaces were daisy chained to form a 64-input-64-output audio system that communicates with a computer through a Dante virtual sound card. Both the loudspeaker (Genelec 8010A) and microphone (DPA 4060) arrays were connected to the audio interfaces for simultaneous sound generation and acquisition. During the measurements, a 3 s long logarithmic sine sweep signal from 20 Hz to 22 kHz was generated in MATLAB with a sampling rate of 48 kHz and reproduced through each loudspeaker, and the sound pressure in each zone was captured by either the square or double-layer circular microphone array. <br/><br/>The database consists of 260,400 RIRs, among which 134,400 were measured by a square microphone array and 126,000 were measured by a double-layer circular microphone array. Each impulse response is stored as a 24-bit single-channel WAV file at a sampling rate of 48 kHz, with the naming convention of “Room_Zone_MicrophoneArrayType_LoudspeakerIndex_MicrophoneIndex.wav”. For example, “AnechoicRoom_ZoneA_CircularMicrophoneArray_L1_M2.wav” is the impulse response from the first loudspeaker to the second microphone of the double-layer circular microphone array that is placed at Zone A in the anechoic room. <br/><br/>Detailed descriptions of the rooms, equipment, experimental setup, and measurement procedure are provided in the companion paper submitted in the Journal of the Acoustical Society of America, which is available at: <a href='https://asa.scitation.org/doi/abs/10.1121/10.0014958'>https://asa.scitation.org/doi/abs/10.1121/10.0014958</a> fad2f4b0c03d11ec91ce05dbccc55a63 multizone sound field personal audio systems personal sound zones room impulse response A room impulse response database for multizone sound field reproduction ./Thumbnail_Image.png 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Eva.Cheng@uts.edu.au Cheng Eva Eva.Cheng@uts.edu.au Eva Cheng 1026070 2022-08-29T15:09:40+10:00 image/png Figure1_Sipei_RIR.png Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett Qiaoxi.Zhu@uts.edu.au Zhu Qiaoxi Qiaoxi.Zhu@uts.edu.au Qiaoxi Zhu 1933095 2022-08-17T18:46:43+10:00 application/pdf Related_Figures.pdf Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao 1026070 2023-02-02T09:42:03+11:00 image/png Thumbnail_Image.png Data record created 2022-04-20T00:08:17.641Z Create 2022-04-20T00:08:17.641Z Publish 19626005452 2222411655 2229678881 2789194487 2940700523 3006310125 3076053714 3361654325 2022-08-19T01:16:38+10:00 2022-08-19T01:20:00+10:00 2022-08-19T01:24:58+10:00 2022-08-19T01:29:30+10:00 2022-08-19T01:33:44+10:00 2022-08-19T01:38:12+10:00 2022-08-19T01:42:28+10:00 2022-08-19T11:42:46+10:00 application/zip Anechoic Room.zip Hemi-anechoic Room.zip Large Meeting Room.zip Medium Meeting Room.zip Open-plan Office.zip Shoe-box Room.zip Small Meeting Room.zip UTS RIR Database UTS RIR Database.zip Created RO-Crate using oni-ocfl false readRIRintoMatlab.m ro-crate-metadata.json ro-crate-metadata.jsonld _:contact/sipei.zhao@uts.edu.au sipei.zhao@uts.edu.au Zhao Sipei sipei.zhao@uts.edu.au Sipei Zhao _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 _:FOR/090609 090609 - Signal Processing _:FOR/090609 Data Manager sipei.zhao@uts.edu.au _:contact/sipei.zhao@uts.edu.au public_ocfl fad2f4b0c03d11ec91ce05dbccc55a63 repository arcp://name,uts_public_data_repo/fad2f4b0c03d11ec91ce05dbccc55a63 http://creativecommons.org/licenses/by-nc/3.0/au http://creativecommons.org/licenses/by-nc/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) Portable Network Graphics Acrobat PDF 1.6 - Portable Document Format Plain Text File ZIP Format https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager David.Carter@uts.edu.au for access ./ 2019-09-26T04:23:10.859Z 2019-09-26T04:23:10.859Z The powers available to the state in the name of advancing or protecting the public’s health or human biosecurity include disease surveillance; the power to compel provision of information; the monitoring, prohibiting or compelling of particular behaviours; involuntary social distancing measures including detention, isolation and quarantine; and, finally involuntary medical testing and treatment. Public health orders are the mechanism used to activate the most coercive aspects of public health and human biosecurity powers in Australia. They exist in some form in each Australian jurisdiction; however, the nomenclature, their availability and associated processes, and the specific ambit of their power differ, at times quite markedly. This dataset relates to a multi-year project that utilised methods of public information audit, administrative engagement and freedom of information processes to collect data on the use of public health and biosecurity powers in Australia. This dataset contains tabular data recording summaries of each reported exercise of a coercive public health power during the period 2004-2017 that were disclosed by each jurisdiction. Each order or action is recorded with textual summary or description of each order or action. This includes date of order, nature and requirements, public health risk addressed, duration of the order, actions/enforcement taken, comments by the researcher on orders and general notes on the data. The data reported here are largely forms of public health order, although warrants for arrest or detention of individuals, alongside other ‘enforcement measures’, are also included as instances of the use of coercive public health powers. The dataset also includes copies of original documents (often redacted) and correspondence provided by jurisdictions as a result of administrative action or in response to open government/freedom of information processes. 0e6bdd709ee8cd301921106a7e5475b4 HIV Law biosecurity executive power health law public health tuberculosis Australian Public Health Orders Issued by Australian State and Territory Governments: Dataset 2004-2017 2004-01-01/2017-12-31 2019 2019 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/David.Carter@uts.edu.au David.Carter@uts.edu.au Carter David David.Carter@uts.edu.au David Carter admin@redboxresearchdata.com.au Data record created 2019-09-26T04:23:10.859Z Create 2019-09-26T04:23:10.859Z Publish 2019-12-23T04:26:45.155Z Migrate to RO-Crate Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/1117 1117 - PUBLIC HEALTH AND HEALTH SERVICES _:FOR/1117 _:spatial/2 GEOMETRYCOLLECTION(POLYGON ((147.832031 -44.840291, 113.34182 -40.913513, 111.445313 -27.215556, 113.34182 -11.523088, 135.878906 -11.350797, 152.402344 -10.833306, 158.334212 -40.913513, 147.832031 -44.840291)),POLYGON ((107.023191 -44.465151, 107.023191 -9.968851, 159.955956 -9.968851, 159.955956 -44.465151, 107.023191 -44.465151))) _:FOR/1801 1801 - LAW _:FOR/1801 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) Data Manager David.Carter@uts.edu.au _:contact/David.Carter@uts.edu.au public_ocfl 0e6bdd709ee8cd301921106a7e5475b4 repository arcp://name,uts_public_data_repo/0e6bdd709ee8cd301921106a7e5475b4 http://creativecommons.org/licenses/by-nc-sa/4.0 http://creativecommons.org/licenses/by-nc-sa/4.0 _:spatial/1 Australia -2.52744E1 1.337751E2 Australia https://www.uts.edu.au/ University of Technology Sydney ./ 2019-12-04T03:26:26.203Z 2019-12-04T03:26:26.203Z First year postgraduate students' academic outcomes studying Economics for Management 224c3a739a3a48811c4fd83aeedd96dc First year postgraduate students cultural diversity international students postgraduate learning Postgraduate Learning for Economics 2016-03-07/2016-12-30 2019 2019 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Harry.Tse@uts.edu.au Tse Harry Harry.Tse@uts.edu.au Harry Tse _:contact/Luz.Stenberg@uts.edu.au Luz.Stenberg@uts.edu.au Stenberg Luz Luz.Stenberg@uts.edu.au Luz Stenberg admin@redboxresearchdata.com.au Data record created 2019-12-04T03:26:26.203Z Create 2019-12-04T03:26:26.203Z Publish 2019-12-23T04:26:55.946Z Migrate to RO-Crate application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Postgraduate learning for Economics Semesters 1 and 2 2016 (1).xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/13 13 - EDUCATION _:FOR/13 _:FOR/14 14 - ECONOMICS _:FOR/14 Data Manager Luz.Stenberg@uts.edu.au _:contact/Luz.Stenberg@uts.edu.au public_ocfl 224c3a739a3a48811c4fd83aeedd96dc repository arcp://name,uts_public_data_repo/224c3a739a3a48811c4fd83aeedd96dc http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au _:spatial/1 Australia -2.52744E1 1.337751E2 Australia You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2021-03-16T04:59:35.663Z 2021-03-16T04:59:35.663Z Twenty visual effects practitioner interview transcripts with grounded theory analysis (coding and memoing). The interview data set explores records and archiving practices in the film and television visual effects industry. The data set is accompanied by the interview questionnaire and background information about the interview approach. This data set has a 'Confidential' security classification as it contains commercial-in-confidence/commercially sensitive data. 6a86ec7f6a1f6f0d46593d331d86f4c9 archiving records management visual effects Visual Effects Industry Interview Data 2018-03-06/2020-08-23 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/Evanthia.Samaras@student.uts.edu.au Evanthia.Samaras@student.uts.edu.au Samaras Evanthia Evanthia.Samaras@student.uts.edu.au Evanthia Samaras Fiona.Tweedie@uts.edu.au Data record created 2021-03-16T04:59:35.663Z Create 2021-03-16T04:59:35.663Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/gr8b-gx87 DOI _:FOR/080708 080708 - Records and Information Management (excl. Business Records and Information Management) _:FOR/080708 Data Manager Evanthia.Samaras@student.uts.edu.au _:contact/Evanthia.Samaras@student.uts.edu.au public_ocfl 6a86ec7f6a1f6f0d46593d331d86f4c9 repository arcp://name,uts_public_data_repo/6a86ec7f6a1f6f0d46593d331d86f4c9 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2021-03-16T04:59:35.663Z 2021-03-16T04:59:35.663Z Twenty visual effects practitioner interview transcripts with grounded theory analysis (coding and memoing). The interview data set explores records and archiving practices in the film and television visual effects industry. The data set is accompanied by the interview questionnaire and background information about the interview approach. This data set has a 'Confidential' security classification as it contains commercial-in-confidence/commercially sensitive data. 6a86ec7f6a1f6f0d46593d331d86f4c9 archiving records management visual effects Visual Effects Industry Interview Data 2018-03-06/2020-08-23 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/Evanthia.Samaras@student.uts.edu.au Evanthia.Samaras@student.uts.edu.au Samaras Evanthia Evanthia.Samaras@student.uts.edu.au Evanthia Samaras Fiona.Tweedie@uts.edu.au Data record created 2021-03-16T04:59:35.663Z Create 2021-03-16T04:59:35.663Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/gr8b-gx87 DOI _:FOR/080708 080708 - Records and Information Management (excl. Business Records and Information Management) _:FOR/080708 Data Manager Evanthia.Samaras@student.uts.edu.au _:contact/Evanthia.Samaras@student.uts.edu.au public_ocfl 6a86ec7f6a1f6f0d46593d331d86f4c9 repository arcp://name,uts_public_data_repo/6a86ec7f6a1f6f0d46593d331d86f4c9 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2022-03-10T05:09:04.227Z 2022-03-10T05:09:04.227Z Supplementary data for PhD thesis Chapters 4-7 f09b31509f2d11eca9a84993133e6628 HPV Head and Neck cancer lncRNA miRNA Mason PhD thesis - supplemental, appendix data 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Nham.Tran@uts.edu.au Tran Nham Nham.Tran@uts.edu.au Nham Tran andreas.mertin@uts.edu.au _:contact/dayna.g.mason@student.uts.edu.au dayna.g.mason@student.uts.edu.au Mason Dayna dayna.g.mason@student.uts.edu.au Dayna Mason Data record created 2022-03-10T05:09:04.227Z Create 2022-03-10T05:09:04.227Z Publish application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Supplementary Table 4.1.xlsx Supplementary Table 7.1.xlsx Supplementary Table 7.2.xlsx Supplementary Table 7.3.xlsx Supplementary Table 7.4.xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld Mason, D., Zhang, X., Marques, T.M., Rose, B., Khoury, S., Hill, M., Deutsch, F., Lyons, J.G., Gama-Carvalho, M. and Tran, N., 2018. Human papillomavirus 16 E6 modulates the expression of miR-496 in oropharyngeal cancer. Virology, 521, pp.149-157. https://doi.org/10.1016/j.virol.2018.05.022 Human papillomavirus 16 E6 modulates the expression of miR-496 in oropharyngeal cancer Data Manager dayna.g.mason@student.uts.edu.au _:contact/dayna.g.mason@student.uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl f09b31509f2d11eca9a84993133e6628 repository arcp://name,uts_public_data_repo/f09b31509f2d11eca9a84993133e6628 https://creativecommons.org/licenses/by/4.0/ You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2020-08-12T04:56:23.646Z 2020-08-12T04:56:23.646Z Are you being rhetorical? An open dataset of machine annotated rhetorical moves. The dataset takes corpora of open papers (the British Academic Written English corpus, the Elsevier OA-STM corpus http://elsevierlabs.github.io/OA-STM-Corpus/, and the PMC Open Access Subset). The corpus is split into article section, and sentence. To each sentence (or, a subset from the total corpus), a set of tools designed to detect rhetorical moves is applied. Rhetorical moves use discourse markers in a text to communicate some purpose to the reader, for example, to give background information, to highlight contrast between ideas, or to summarise the intended contribution of the current work. These moves are recorded on a sentence level. f26dc0972d22186e6309e0c5ac5b16fd STEM academic english argumentation mining argumentation corpus linguistics corpus educatoinal data mining english for specific purpose learning analytics linguistics open access rhetorical moves technology enhanced learning Are you being rhetorical? An open dataset of machine annotated rhetorical moves 2018-10-30/2018-10-30 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Knight, Simon, Sophie Abel, Antonette Shibani, Goh Yoong Kuan, Rianne Conijn, Andrew Gibson, Sowmya Vajjala, Elena Cotos, Ágnes Sándor, and Simon Buckingham Shum. 2020. “Are You Being Rhetorical? A Description of Rhetorical Move Annotation Tools and Open Corpus of Sample Machine Annotated Rhetorical Moves.” Journal of Learning Analytics. http://learning-analytics.info/ Are You Being Rhetorical? A Description of Rhetorical Move Annotation Tools and Open Corpus of Sample Machine Annotated Rhetorical Moves. application/x-sql SQLDump20200520.sql Andrew.Gibson@uts.edu.au Gibson Andrew Andrew.Gibson@uts.edu.au Andrew Gibson Antonette.Shibani@uts.edu.au Shibani Antonette Antonette.Shibani@uts.edu.au Antonette Shibani Fiona.Tweedie@uts.edu.au _:contact/Simon.Knight@uts.edu.au Simon.Knight@uts.edu.au Knight Simon Simon.Knight@uts.edu.au Simon Knight Sophie.Abel@uts.edu.au Abel Sophie Sophie.Abel@uts.edu.au Sophie Abel agnesandor@gmail.com Sandor Agnes agnesandor@gmail.com Agnes Sandor ecotos@iastate.edu Cotos Elena ecotos@iastate.edu Elena Cotos -33.81927 151.00752 Data record created 2020-08-12T04:56:23.646Z Create 2020-08-12T04:56:23.646Z Publish m.a.conijn@tue.nl Conijn Maria Anna m.a.conijn@tue.nl Maria Anna Conijn Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld sowmya.vajjala@nrc-cnrc.gc.ca Vajjala-Balakrishna Sowmya sowmya.vajjala@nrc-cnrc.gc.ca Sowmya Vajjala-Balakrishna yoongkuan.goh@alumni.uts.edu.au Goh Yoong yoongkuan.goh@alumni.uts.edu.au Yoong Goh _:FOR/200401 200401 - Applied Linguistics and Educational Linguistics _:FOR/200401 _:FOR/13 13 - EDUCATION _:FOR/13 Data Manager Simon.Knight@uts.edu.au _:contact/Simon.Knight@uts.edu.au public_ocfl f26dc0972d22186e6309e0c5ac5b16fd repository arcp://name,uts_public_data_repo/f26dc0972d22186e6309e0c5ac5b16fd The annotations in the dataset are under a CC-By license. The annotated documents are under other Creative Commons licenses, as detailed in the database _:FOR/200402 200402 - Computational Linguistics _:FOR/200402 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au _:spatial/1 Global Reach https://github.com/uts-cic/corpus-analysis https://github.com/uts-cic/corpus-analysis You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) _:FOR/130103 130103 - Higher Education _:FOR/130103 _:FOR/139999 139999 - Education not elsewhere classified _:FOR/139999 _:FOR/089999 089999 - Information and Computing Sciences not elsewhere classified _:FOR/089999 https://www.uts.edu.au/ University of Technology Sydney ./ 2020-07-02T05:48:16.801Z 2020-07-02T05:48:16.801Z The various included datasets were accumulated during a project to experimentally validate the theoretical basis for the correction of SLDV measurements when subjected to base motion or instrument sensor head vibration. They complement the paper submitted to Mechanical Systems and Signal Processing on Jan 21, 2020 provisionally entitled "Establishing correction solutions for scanning laser Doppler vibrometer measurements affected by sensor head vibration". There are a total of four Excel files, with content as follows: UTSScanningBaseMotionCal_200918_new_Stash.xlsx - contains the accelerometer sensitivity check and time delay compensation processing set. This is the stage completed prior to the measurement campaign where the correction (and target if used) accelerometer performances are compared with the reference LDV for broadband (white noise) vibration. UTSBenchtopScanningLDVBaseMotion_140918_new_v20Sept_Stash.xlsx - contains measured data for the scenario where the SLDV is used to measure the target vibration without any scan angles introduced. Vibration of both the target and the LDV are on axis. Various vibration levels of target and LDV are included (Off-L, L-Off, Off-H, H-Off, L-L, L-H, H-L, & H-H) with five averages for each result performed to minimise sources of experimental noise. UTSBenchtopScanningLDVBaseMotion_140918_x_scan_v20Sept_Stash.xlsx - contains similar data to that of the previous file but only for H-L (LDV-Target) scenario but for LDV scan angles to result in laser beam steering in the x axis from -4 to +12 optical degrees in 2 deg. increments; 0 deg clearly duplicates the corresponding dataset for the no scan scenario and the processed results are identical as expected. The target vibration direction is aligned with the laser beam for all scan angles, i.e. the vibration is always on axis. UTSBenchtopScanningLDVBaseMotion_140918_y_scan_v20Sept_Stash.xlsx - contains the same data as above but for laser beam deflection in the y direction. c01af79fed712f8206b44485b84487a0 Instrument vibration Measurement error correction Scanning laser Doppler vibrometer Vibration measurement Datasets collected during experimental measurement campaign to correct Scanning Laser Doppler Vibrometer (SLDV) measurements when subjected to sensor head vibration 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git application/vnd.openxmlformats-officedocument.spreadsheetml.sheet UTSBenchtopScanningLDVBaseMotion_140918_new_v20Sept_Stash.xlsx _:contact/Benjamin.Halkon@uts.edu.au Benjamin.Halkon@uts.edu.au Halkon Benjamin Benjamin.Halkon@uts.edu.au Benjamin Halkon Fiona.Tweedie@uts.edu.au S.J.Rothberg@lboro.ac.uk Rothberg Steve S.J.Rothberg@lboro.ac.uk Steve Rothberg application/vnd.openxmlformats-officedocument.spreadsheetml.sheet UTSBenchtopScanningLDVBaseMotion_140918_y_scan_v20Sept_Stash.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet UTSBenchtopScanningLDVBaseMotion_140918_x_scan_v20Sept_Stash.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet UTSScanningBaseMotionCal_200918_new_Stash.xlsx Data record created 2020-07-02T05:48:16.801Z Create 2020-07-02T05:48:16.801Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/09 09 - ENGINEERING _:FOR/09 _:FOR/0913 0913 - MECHANICAL ENGINEERING _:FOR/0913 _:FOR/091304 091304 - Dynamics, Vibration and Vibration Control _:FOR/091304 Data Manager Benjamin.Halkon@uts.edu.au _:contact/Benjamin.Halkon@uts.edu.au public_ocfl c01af79fed712f8206b44485b84487a0 repository arcp://name,uts_public_data_repo/c01af79fed712f8206b44485b84487a0 http://creativecommons.org/licenses/by-nc/3.0/au http://creativecommons.org/licenses/by-nc/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2019-09-30T01:45:14.340Z 2019-09-30T01:45:14.340Z Data from project "Pornography's effects on its audiences: synthesising an innovative interdisciplinary approach". This protocol is referenced by publications from the project. a06c922d3267c40e6c17627632733431 Pornography methodology Search and Analysis Protocol - ARC DP170100808 - Pornography's effects on its audiences: synthesising an innovative interdisciplinary approach 2000-01-01/2017-12-31 2019 2019 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/Alan.McKee@uts.edu.au Alan.McKee@uts.edu.au McKee Alan Alan.McKee@uts.edu.au Alan McKee Paul.Byron@uts.edu.au Byron Paul Paul.Byron@uts.edu.au Roger.Ingham@soton.ac.uk Ingham Roger Roger.Ingham@soton.ac.uk Roger Ingham a-m.litsou@soton.ac.uk Litsou Katerina a-m.litsou@soton.ac.uk admin@redboxresearchdata.com.au Data record created 2019-09-30T01:45:14.340Z Create 2019-09-30T01:45:14.340Z Publish 2019-12-23T04:29:39.265Z Migrate to RO-Crate application/pdf Search and analysis protocol 140918.pdf Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/200104 200104 - Media Studies _:FOR/200104 _:FOR/200105 200105 - Organisational, Interpersonal and Intercultural Communication _:FOR/200105 Data Manager Alan.McKee@uts.edu.au _:contact/Alan.McKee@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl a06c922d3267c40e6c17627632733431 repository arcp://name,uts_public_data_repo/a06c922d3267c40e6c17627632733431 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2022-10-13T21:30:18.488Z 2022-10-13T21:30:18.488Z UTS developed an Institutional Research Data Management (RDM) Planning Maturity Assessment Tool (MAT) as part of the ARDC Institutional Underpinnings (IU) program. The RDM Planning MAT is presented as a single Excel workbook, with 7 sheets that can be viewed as three sections: Section 1: Front matter and supporting material, comprising - How to use this document (sheet 1) - IU RDMP Recommendations (sheet 2) - Glossary (sheet 7). Section 2: Assessment sheets, divided into three sections - Governance (sheet 3) - Culture and Support (sheet 4) - Infrastructure (sheet 5). Section 3: Assessment Summary (sheet 6). The MAT is presented in this self-contained manner to aid and simplify use, however, the process by which the MAT will be utilised will require additional documentation and planning by an institution. This is outlined in the “How to use this document” sheet to aid an institution in planning its maturity assessment. It is envisaged that this MAT would be of benefit to institutions of varying maturity, and can be utilised in future whenever there may be changes in regulation, legislation, or even internal policy revisions that cut across research, and specifically RDM Planning. c7862fc04aa611ed9c29cd31fbe7228b Maturity Assessment RDM Research Data Management Planning Research Data Management Institutional Research Data Management (RDM) Planning Maturity Assessment Tool (MAT) 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/xv24-cr59 DOI application/vnd.openxmlformats-officedocument.spreadsheetml.sheet RDMPlanningAssessmentTool.xlsx Andreas.Mertin@uts.edu.au Mertin Andreas Andreas.Mertin@uts.edu.au Andreas Mertin David.Litting@uts.edu.au Litting David David.Litting@uts.edu.au David Litting Deborah.Naray@uts.edu.au Naray Deborah Deborah.Naray@uts.edu.au Deborah Naray Duncan.Loxton@uts.edu.au Loxton Duncan Duncan.Loxton@uts.edu.au Duncan Loxton Helen.Chan@uts.edu.au Chan Helen Helen.Chan@uts.edu.au Helen Chan Hossain.Salahuddin@uts.edu.au Salahuddin Hossain Hossain.Salahuddin@uts.edu.au Hossain Salahuddin Pascal.Tampubolon@uts.edu.au Tampubolon Pascal Pascal.Tampubolon@uts.edu.au Pascal Tampubolon Ria.Hamblett@uts.edu.au Hamblett Ria Ria.Hamblett@uts.edu.au Ria Hamblett Sarah.Su@uts.edu.au Su Sarah Sarah.Su@uts.edu.au Sarah Su Wendy.Liu@uts.edu.au Liu Liangwen Wendy.Liu@uts.edu.au Liangwen Liu _:contact/andreas.mertin@uts.edu.au andreas.mertin@uts.edu.au Mertin Andreas andreas.mertin@uts.edu.au Andreas Mertin Data record created 2022-10-13T21:30:18.488Z Create 2022-10-13T21:30:18.488Z Publish louise.wheeler@uts.edu.au Wheeler Louise louise.wheeler@uts.edu.au Louise Wheeler Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.5281/zenodo.6392340 ARDC Institutional Underpinnings Framework draft release Data Manager andreas.mertin@uts.edu.au _:contact/andreas.mertin@uts.edu.au public_ocfl c7862fc04aa611ed9c29cd31fbe7228b repository arcp://name,uts_public_data_repo/c7862fc04aa611ed9c29cd31fbe7228b http://creativecommons.org/licenses/by-nc-sa/4.0 http://creativecommons.org/licenses/by-nc-sa/4.0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-10-07T05:54:41.635Z 2020-10-07T05:54:41.635Z Benchmark data for gas metal arc welding sounds at different modes. 317e949fe171f934c70d12f79de4d070 Welding acoustics signal processing Welding sound benchmark data 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/5f06c11cbcc23 DOI Fiona.Tweedie@uts.edu.au Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett _:contact/Sipei.Zhao@uts.edu.au Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao Xiaojun.Qiu@uts.edu.au Qiu Xiaojun Xiaojun.Qiu@uts.edu.au Xiaojun Qiu anthony.lele@automationacoustics.com Lele Anthony anthony.lele@automationacoustics.com Anthony Lele Data record created 2020-10-07T05:54:41.635Z Create 2020-10-07T05:54:41.635Z Publish malcolm@icaruslearning.com Rigby Malcolm malcolm@icaruslearning.com Malcolm Rigby Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 Data Manager Sipei.Zhao@uts.edu.au _:contact/Sipei.Zhao@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl 317e949fe171f934c70d12f79de4d070 repository arcp://name,uts_public_data_repo/317e949fe171f934c70d12f79de4d070 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2023-04-02T23:45:45.058Z 2023-04-02T23:45:45.058Z This record contains de-identified data from an international survey of naturopathic practitioners' approach to knowledge mobilisation and translation bbfac300cdc811ed9b2997e85d16be04 knowledge mobilisation knowledge translation naturopathy Naturopathic practitioners’ approach to knowledge mobilisation and translation 2020-09-12/2020-11-20; 2.5 months 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Amie.Steel@uts.edu.au Steel Amie Amie.Steel@uts.edu.au Amie Steel _:contact/amie.steel@uts.edu.au amie.steel@uts.edu.au Steel Amie amie.steel@uts.edu.au Amie Steel caragh.brosnan@newcastle.edu.au Brosnan Caragh caragh.brosnan@newcastle.edu.au Data record created 2023-04-02T23:45:45.058Z Create 2023-04-02T23:45:45.058Z Publish matthew.leach@scu.edu.au Leach Matthew matthew.leach@scu.edu.au application/vnd.openxmlformats-officedocument.wordprocessingml.document false text/csv WNF KMB Survey Instrument_English_Revised.docx WNF KMB clean data_29.03.2023.csv WNF KMB clean data_29.03.2023.dta Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld simon.kruik@uts.edu.au vlw4@st-andrews.ac.uk Ward Vicky vlw4@st-andrews.ac.uk Data Manager amie.steel@uts.edu.au _:contact/amie.steel@uts.edu.au public_ocfl bbfac300cdc811ed9b2997e85d16be04 repository arcp://name,uts_public_data_repo/bbfac300cdc811ed9b2997e85d16be04 This data can be accessed for verification of analyses arising from this study, but not for independent analysis. Any researchers interested in analysing this data to answer their own research question must contact the data manager. http://creativecommons.org/licenses/by-nc-nd/4.0 http://creativecommons.org/licenses/by-nc-nd/4.0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-10-07T05:51:00.116Z 2020-10-07T05:51:00.116Z This database contains the synchronized sound, current and voltage signals measured at different benchmark transfer modes in gas metal arc welding. The benchmark metal transfer modes include three groups, i.e., contact, free flight and controlled. In each group, there are four modes. In Group 1 (contact transfer), the four modes are pure liquid bridge (1b2), forced contact (1c3), repel globular (1g4) and gasless explosive (1e10). In Group 2 (free flight transfer), the four modes are repel globular (2g4), forces spray (2s2), pure stream (2t2) and gasless explosive (2e10). In Group 3 (controlled transfer), the four modes are pure contact (3c2), forced pulse (3p3), projected spray (3s7) and gasless explosive (3e10). Four samples were welded at each mode, hence there are a total of 3 (group) × 4 (modes in each group) × 4 (sample for each mode) = 48 samples in the database. In the experiments, a Lincoln Electric PowerWave C300 welder was used with the torch being positive and the negative cable being connected to the workbench. During welding, the torch was fixed and the workbench was moving at a travel speed that was controlled by a servo motor. A GRAS 40PH free field microphone was hanged 0.6 m above the weld pool to record the welding sound. The microphone was connected to an NI 9234 Sound and Vibration module. An LEM HTA 300-S current sensor was installed around the torch cable to measure the welding current through the torch. The current sensor was connected to an NI 9215 Analogue Voltage Input module. Both the NI 9234 and NI 9215 modules were installed in an NI cDAQ 9185 chassis, which was connected to a desktop computer. The computer and the data acquisition system was in the black cabinet on the right of the photo in Fig. 6 and therefore is not shown here. A software with a user interface was developed with LabWindows/CVI 2017 to acquire, display and store the signals in synchronisation. The sampling rate for the sound and current/voltage signals are 51.2 kHz and 3.2 kHz, respectively. In the experiments, the pure argon was used as the shielding gas and the diameter of the feeding wire was 0.9 mm. The workpiece metal was carbon steel. 32b4622bb5b77b9523bf97b8af09c133 Welding acoustics signal processing Welding sound database for benchmark metal transfer modes in gas metal arc welding 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 10.26195/5f06b9abbcc20 DOI Fiona.Tweedie@uts.edu.au Ian.Burnett@uts.edu.au Burnett Ian Ian.Burnett@uts.edu.au Ian Burnett _:contact/Sipei.Zhao@uts.edu.au Sipei.Zhao@uts.edu.au Zhao Sipei Sipei.Zhao@uts.edu.au Sipei Zhao Xiaojun.Qiu@uts.edu.au Qiu Xiaojun Xiaojun.Qiu@uts.edu.au Xiaojun Qiu anthony.lele@automationacoustics.com Lele Anthony anthony.lele@automationacoustics.com Anthony Lele Data record created 2020-10-07T05:51:00.116Z Create 2020-10-07T05:51:00.116Z Publish malcolm@icaruslearning.com Rigby Malcolm malcolm@icaruslearning.com Malcolm Rigby Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/091301 091301 - Acoustics and Noise Control (excl. Architectural Acoustics) _:FOR/091301 Data Manager Sipei.Zhao@uts.edu.au _:contact/Sipei.Zhao@uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/Australian Research Council Australian Research Council public_ocfl 32b4622bb5b77b9523bf97b8af09c133 repository arcp://name,uts_public_data_repo/32b4622bb5b77b9523bf97b8af09c133 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2022-08-05T01:51:49.692Z 2022-08-05T01:51:49.692Z Rhometa includes various models to perform population recombination rate estimation on metagenomic datasets. It is primarily built using nextflow, a workflow management tool and the python programming language. Here a repository of all the results generated for Rhometa and the scripts used is provided. In some cases, different pipelines were used during the course of developing rhometa such as our nextflow LDhat pipeline. LDHat is a population recombination rate estimation program for aligned sequences and simulation pipelines etc, all relevant scripts and nextflow works are included where applicable. The github repositories for all pipelines are provided in the accompanying manuscript. File names starting with “figure” are all related to the evaluation of different forms of simulated data. The simulated files are not included to save space, but the scripts used to generate the files are and final results are included. The file Lookup_tables.zip is related to all the lookup tables used during the analysis. Lookup tables themselves are very large and as such are not included, but all relevant scripts used to generate them are. The file s_pneumoniae.zip is related to the analysis of a real dataset involving an S. pneumoniae transformation experiment. Experiment accession codes are included but not bam files and the reference. The details of how the BAM was generated and the reference file used are described in the manuscript. All results and scripts used are included. ce2f83c013a711edb084ed90e8a0b9fc analysed data and scripts used Rhometa manuscript supporting data 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Aaron.Darling@uts.edu.au Darling Aaron Aaron.Darling@uts.edu.au Aaron Darling Dominik.Beck@uts.edu.au Beck Dominik Dominik.Beck@uts.edu.au Dominik Beck Justin.Seymour@uts.edu.au Seymour Justin Justin.Seymour@uts.edu.au Justin Seymour application/zip Lookup_tables.zip Martin.Ostrowski@uts.edu.au Ostrowski Martin Martin.Ostrowski@uts.edu.au Martin Ostrowski Matthew.DeMaere@uts.edu.au DeMaere Matthew Matthew.DeMaere@uts.edu.au Matthew DeMaere application/zip figure_1.zip application/zip figure_2and3.zip application/zip figure_S1.zip application/zip figure_S2.zip application/zip figure_S3.zip application/zip figure_S4.zip Data record created 2022-08-05T01:51:49.692Z Create 2022-08-05T01:51:49.692Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld application/zip s_pnemoniae.zip _:contact/sidaswar.krishnan-1@student.uts.edu.au sidaswar.krishnan-1@student.uts.edu.au Krishnan Sidaswar sidaswar.krishnan-1@student.uts.edu.au Sidaswar Krishnan simon.kruik@uts.edu.au https://doi.org/10.26195/0w2e-tt98 10.26195/0w2e-tt98 _:FOR/08 08 - INFORMATION AND COMPUTING SCIENCES _:FOR/08 _:FOR/06 06 - BIOLOGICAL SCIENCES _:FOR/06 Data Manager sidaswar.krishnan-1@student.uts.edu.au _:contact/sidaswar.krishnan-1@student.uts.edu.au public_ocfl ce2f83c013a711edb084ed90e8a0b9fc repository arcp://name,uts_public_data_repo/ce2f83c013a711edb084ed90e8a0b9fc http://creativecommons.org/licenses/by-sa/4.0 http://creativecommons.org/licenses/by-sa/4.0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.biorxiv.org/content/10.1101/2022.08.04.502887v1 Rhometa: Population recombination rate estimation from metagenomic read datasets ZIP Format https://www.uts.edu.au/ University of Technology Sydney ./ 2021-11-04T22:03:52.292Z 2021-11-04T22:03:52.292Z This is the dataset used in the Journal of Sound and Vibration paper titled "A comparison of time and frequency domain-based approaches to laser Doppler vibrometer instrument vibration correction". e4bedf603b6611eca5986d0cb282210b mobile laser Doppler vibrometry non-stationary instrument vibration correction time domain signalprocessing transient vibration vibration measurement A comparison of time and frequency domain-based approaches to laser Doppler vibrometer instrumentvibration correction - Dataset 2021-11-02/2260-12-29 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git text/plain readme.txt _:contact/Abdel.Darwish@student.uts.edu.au Abdel.Darwish@student.uts.edu.au Darwish Abdel-Raheam Abdel.Darwish@student.uts.edu.au Abdel-Raheam Darwish Benjamin.Halkon@uts.edu.au Halkon Benjamin Benjamin.Halkon@uts.edu.au Benjamin Halkon Robert.Fitch@uts.edu.au Fitch Robert Robert.Fitch@uts.edu.au Robert Fitch Sebastian.Oberst@uts.edu.au Oberst Sebastian Sebastian.Oberst@uts.edu.au Sebastian Oberst abdel.darwish@student.uts.edu.au Data record created 2021-11-04T22:03:52.292Z Create 2021-11-04T22:03:52.292Z Publish false A comparison of time and frequency domain-based approaches to laser Doppler vibrometer instrument vibration correction - Dataset.mat Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld simon.kruik@uts.edu.au _:FOR/09 09 - ENGINEERING _:FOR/09 _:FOR/02 02 - PHYSICAL SCIENCES _:FOR/02 _:FOR/10 10 - TECHNOLOGY _:FOR/10 Data Manager Abdel.Darwish@student.uts.edu.au _:contact/Abdel.Darwish@student.uts.edu.au public_ocfl e4bedf603b6611eca5986d0cb282210b repository arcp://name,uts_public_data_repo/e4bedf603b6611eca5986d0cb282210b http://opendatacommons.org/licenses/odbl/1.0/ http://opendatacommons.org/licenses/odbl/1.0/ You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2021-06-28T01:27:45.706Z 2021-06-28T01:27:45.706Z A set of sample data provided by Alana Piper - will be used by the UTS eResearch team to generate an Oni Data Portal. 9ad7becf1dbfd4d66387b48656451ddf crime history offenders prisoners Criminal Characters - Sample Dataset 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git 5743f6e98b9c02ebf6757a8b4dde36b5/VictoriaFemalePrisonersSample.xlsx application/zip VictoriaFemalePrisonersSample.xlsx _:contact/Alana.Piper@uts.edu.au Alana.Piper@uts.edu.au Piper Alana Alana.Piper@uts.edu.au Alana Piper application/vnd.openxmlformats-officedocument.spreadsheetml.sheet CourtsCoordinates.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet VictoriaFemalePrisonersSample.xlsx Data record created 2021-06-28T01:27:45.706Z Create 2021-06-28T01:27:45.706Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json 3303 2021-07-27T15:29:56+10:00 ro-crate-metadata.jsonld simon.kruik@uts.edu.au application/zip support_data.zip Data Manager Alana.Piper@uts.edu.au _:contact/Alana.Piper@uts.edu.au public_ocfl 9ad7becf1dbfd4d66387b48656451ddf repository arcp://name,uts_public_data_repo/9ad7becf1dbfd4d66387b48656451ddf You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) Microsoft Excel for Windows JSON-LD ZIP Format https://www.uts.edu.au/ University of Technology Sydney ./ 2023-04-05T22:05:23.117Z 2023-04-05T22:05:23.117Z Survey data relating to psychologist engagement with complementary medicine (CM) as part of their clinical practice. Psychologists were asked to rate their agreement with statements relating to the relevance of CM as part of psychology practice in Australia. Psychologists were also asked questions related to risks associated with incorporating CM into their practice. An additional section of the survey asked psychologists to self rate their knowledge of a range of CM approaches that may be relevant to mental health care. 053bca70c94e11edabc939f6a1911bf3 complementary medicine integration psychology Survey data from psychologists relating to engagement with complementary medicine 2021-01-01/2022-12-31 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git https://bmccomplementmedtherapies.biomedcentral.com/articles/10.1186/s12906-022-03620-2/metrics Complementary medicine in psychology practice: an analysis of Australian psychology guidelines and a comparison with other psychology associations from English speaking countries _:contact/Carrie.S.Thomson-Casey@student.uts.edu.au Carrie.S.Thomson-Casey@student.uts.edu.au Thomson-Casey Carrie Carrie.S.Thomson-Casey@student.uts.edu.au Carrie Thomson-Casey Jon.Adams@uts.edu.au Adams Jon Jon.Adams@uts.edu.au Jon Adams carrie.s.thomson-casey@student.uts.edu.au Data record created 2023-04-05T22:05:23.117Z Create 2023-04-05T22:05:23.117Z Publish application/vnd.openxmlformats-officedocument.spreadsheetml.sheet text/csv McIntyre Erica Erica McIntyre Erica McIntyre The role of complementary medicine in psychology Survey DATA SET exp from SPSS 28.03.2023 ANONYMISED.csv The role of complementary medicine in psychology Survey DATA SET exp from SPSS 28.03.2023 ANONYMISED.xlsx The role of complementary medicine in psychology Survey DATA in EXCEL RAW - ANONYMISED 28.03.23.xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/17 17 - PSYCHOLOGY AND COGNITIVE SCIENCES _:FOR/17 _:FOR/11 11 - MEDICAL AND HEALTH SCIENCES _:FOR/11 Data Manager Carrie.S.Thomson-Casey@student.uts.edu.au _:contact/Carrie.S.Thomson-Casey@student.uts.edu.au public_ocfl 053bca70c94e11edabc939f6a1911bf3 repository arcp://name,uts_public_data_repo/053bca70c94e11edabc939f6a1911bf3 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2022-06-03T13:36:35.225Z 2022-06-03T13:36:35.225Z Datasets provide the supplementary data for the publication in WRR journal: Microbial contamination of groundwater self-supply in urban Indonesia: Assessment of Sanitary and Socio-economic risk factors Abstract: In urban Indonesia, more than 40 million people rely on groundwater self-supply, but the extent to which self-supply delivers safe water and the associated risk factors for faecal contamination remain unclear. This study quantified Escherichia coli (E.coli) for 511 self-supply sources and at point-of-use for 173 households in the cities of Bekasi and Metro. A structured questionnaire collected information about the household, water sources and potential on-site contamination sources. Univariate and multivariate logistic regression analysis examined risk factors for faecal contamination. E.coli was detected in 66% of sources, including 55% of boreholes, 64% of protected dug wells and 82% of unprotected dug wells. Widespread boiling of water meant microbial quality improved significantly between source and point-of-use, with E.coli detected in 30% of self-supply samples at point-of-use. Unprotected dug wells were significantly more likely to be contaminated than boreholes. In Bekasi, the analysis found a significant association between presence of E.coli and sanitation systems located within 10m of the groundwater source. In Metro, poorer households had significantly higher odds of contamination than wealthier households. Other significant factors included shallower borehole depths in Bekasi, use of a rope and bucket in Metro and absence of a concrete platform in Metro. In Bekasi, E.coli concentration at the source was significantly associated with water quality at point-of-use. Risk of faecal contamination could be reduced by supporting households to invest in improved protection, and by facilitating promotion for safe household water treatment. Support for self-supply improvements should be weighed against the expansion and improvement of piped water services. ds01: Data Bekasi, data collection February-March 2020 ds02: Data Metro, data collection October-November 2020 ds03: Wealth index calculation Bekasi, data collection February-March 2020 ds04: Wealth index calculation Metro, data collection October-November 2020 930fc790e19e11ec87d63dd96ff2e9f4 groundwater self-supply urban Indonesia Microbial contamination of groundwater self-supply in urban Indonesia 2020-02-01/2020-11-30; February to November 2020 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ds03.xlsx Tim.Foster@uts.edu.au Foster Timothy Tim.Foster@uts.edu.au Timothy Foster adhiraga@eng.ui.ac.id Pratama Adhiraga adhiraga@eng.ui.ac.id application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ds02_revised.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ds01_revised.xlsx cindy.priadi@eng.ui.ac.id Priadi Cindy cindy.priadi@eng.ui.ac.id application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ds04.xlsx 14.19178 121.16844 _:contact/franziska.g.genter@student.uts.edu.au franziska.g.genter@student.uts.edu.au Genter Franziska franziska.g.genter@student.uts.edu.au Franziska Genter gitalestariputri@gmail.com Putri Gita gitalestariputri@gmail.com Data record created 2022-06-03T13:36:35.225Z Create 2022-06-03T13:36:35.225Z Publish juliet.willetts@uts.edu.au Willetts Juliet juliet.willetts@uts.edu.au Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.1016/j.watres.2021.117350 Faecal contamination of groundwater self-supply in low- and middle income countries: Systematic review and meta-analysis _:FOR/0599 0599 - OTHER ENVIRONMENTAL SCIENCES _:FOR/0599 Data Manager franziska.g.genter@student.uts.edu.au _:contact/franziska.g.genter@student.uts.edu.au public_ocfl 930fc790e19e11ec87d63dd96ff2e9f4 repository arcp://name,uts_public_data_repo/930fc790e19e11ec87d63dd96ff2e9f4 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) _:spatial/1 Indonesia https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2023-07-05T23:56:09.003Z 2023-07-05T23:56:09.003Z Supplementary files relating the the analysis of the differential abundance of proteins and the differential expression of miRNA:mRNA in beta cells treated with FhHDM-1 under basal and apoptotic conditions. Supplementary Table 3.1. Proteins with significantly different abundance in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.1. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls Supplementary Table 4.2. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.3A. List of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 2). Supplementary Table 4.3B. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.4. List of matched gene targets from miRNA downregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 4.5). Supplementary Table 4.5. Differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.6. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone Supplementary Table 4.7. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.8. KEGG pathway analysis of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.9. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cyokines alone Supplementary Table 4.10. Differentially expressed genes in the transcriptome of FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.11. Matched gene targets common between transcriptome and predicted gene targets of differentially expressed miRNA in FhHDM-1 treated β-cells under inflammatory conditions compared to pro-inflammatory cytokine only (CM) controls. Supplementary Table 4.12. KEGG pathway analysis of matched genes downregulated in the transcriptome with their corresponding regulatory miRNA upregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.13. KEGG pathway analysis of matched genes upregulated in the transcriptome with their corresponding regulatory miRNA downregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone 29ff7e9014ff11eeacf4b15b8fae1d4e Fasciola FhHDM IGF PI3K apoptosis beta cell helminth miRNA type 1 diabetes Inah Camaya PhD - Supplementary Data 2023-06-30/2029-12-31; N/A 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Bronwyn.Obrien@uts.edu.au O'Brien Bronwyn Bronwyn.Obrien@uts.edu.au Bronwyn O'Brien Inah.Camaya@uts.edu.au Camaya Inah Inah.Camaya@uts.edu.au Inah Camaya _:contact/Sheila.Donnelly@uts.edu.au Sheila.Donnelly@uts.edu.au Donnelly Sheila Sheila.Donnelly@uts.edu.au Sheila Donnelly crystal.yip@uts.edu.au Data record created 2023-07-05T23:56:09.003Z Create 2023-07-05T23:56:09.003Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld sheila.donnelly@uts.edu.au https://doi.org/10.26195/yy89-dk26 DOI Camaya I, Mok TY, Lund M, To J, Braidy N, Robinson MW, Santos J, O'Brien B, Donnelly S. The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells. J Mol Med (Berl). 2021 Nov;99(11):1605-1621. doi: 10.1007/s00109-021-02122-x. https://link.springer.com/article/10.1007/s00109-021-02122-x The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells Camaya I, Donnelly S, O'Brien B. Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes. J Diabetes. 2022 Apr;14(4):247-260. doi: 10.1111/1753-0407.13252. https://onlinelibrary.wiley.com/doi/10.1111/1753-0407.13252 Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes Data Manager Sheila.Donnelly@uts.edu.au _:contact/Sheila.Donnelly@uts.edu.au public_ocfl 29ff7e9014ff11eeacf4b15b8fae1d4e repository arcp://name,uts_public_data_repo/29ff7e9014ff11eeacf4b15b8fae1d4e http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au _:spatial/1 N/A You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2021-03-23T04:09:00.689Z 2021-03-23T04:09:00.689Z Data gathered from Genius.com on 15/12/20 using the API searching the terms "mother", "father", "son" and "daughter". aa66e0fab951144640de636789fc6c22 popular music; parenting; relationships; distribution; genius database; lyrics Popular Music and Parenting 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Fiona.Tweedie@uts.edu.au Tweedie Fiona Fiona.Tweedie@uts.edu.au Fiona Tweedie Liz.Giuffre@uts.edu.au Data record created 2021-03-23T04:09:00.689Z Create 2021-03-23T04:09:00.689Z Publish _:contact/liz.giuffre@uts.edu.au liz.giuffre@uts.edu.au Giuffre Elizabeth liz.giuffre@uts.edu.au Elizabeth Giuffre Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/tbh3-ma90 DOI _:FOR/20 20 - LANGUAGE, COMMUNICATION AND CULTURE _:FOR/20 _:FOR/19 19 - STUDIES IN CREATIVE ARTS AND WRITING _:FOR/19 Data Manager liz.giuffre@uts.edu.au _:contact/liz.giuffre@uts.edu.au public_ocfl aa66e0fab951144640de636789fc6c22 repository arcp://name,uts_public_data_repo/aa66e0fab951144640de636789fc6c22 http://creativecommons.org/licenses/by-sa/3.0/au http://creativecommons.org/licenses/by-sa/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2023-07-05T23:09:32.895Z 2023-07-05T23:09:32.895Z Supplementary data related to the analysis of differential abundance of proteins and the differential expression of miRNA:mRNA in beta cells treated with FhHDM-1 under basal and apoptotic/inflammatory conditions Supplementary Table 3.1. Proteins with significantly different abundance in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.1. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls Supplementary Table 4.2. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells compared to untreated (Un) controls, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.3A. List of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 2). Supplementary Table 4.3B. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells compared to untreated controls Supplementary Table 4.4. List of matched gene targets from miRNA downregulated in FhHDM-1 treated β-cells within each PANTHER DB category of molecular function and biological process (from Figure 4.5). Supplementary Table 4.5. Differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.6. Predicted gene targets for differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone Supplementary Table 4.7. Predicted gene targets of differentially expressed miRNAs in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines (CM) alone, common across all online miRNA gene target prediction tools mIRDB, DIANA and Target Scan Supplementary Table 4.8. KEGG pathway analysis of predicted gene targets from miRNA upregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.9. KEGG pathway analysis of predicted gene targets from miRNA downregulated in FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines compared to cyokines alone Supplementary Table 4.10. Differentially expressed genes in the transcriptome of FhHDM-1 treated β-cells exposed to pro-inflammatory cytokines, compared to cytokines alone Supplementary Table 4.11. Matched gene targets common between transcriptome and predicted gene targets of differentially expressed miRNA in FhHDM-1 treated β-cells under inflammatory conditions compared to pro-inflammatory cytokine only (CM) controls. Supplementary Table 4.12. KEGG pathway analysis of matched genes downregulated in the transcriptome with their corresponding regulatory miRNA upregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone Supplementary Table 4.13. KEGG pathway analysis of matched genes upregulated in the transcriptome with their corresponding regulatory miRNA downregulated in FhHDM-1 β-cells exposed to pro-inflammatory cytokines compared to cytokines alone 2cd6cc6014fd11eeacf4b15b8fae1d4e Fasciola FhHDM IGF PI3K apoptosis beta cell helminth miRNA type 1 diabetes Inah Camaya PhD Thesis - Supplementary Data 2023-06-30/2029-12-31; N/A 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Bronwyn.Obrien@uts.edu.au O'Brien Bronwyn Bronwyn.Obrien@uts.edu.au Bronwyn O'Brien Inah.Camaya@uts.edu.au Camaya Inah Inah.Camaya@uts.edu.au Inah Camaya _:contact/Sheila.Donnelly@uts.edu.au Sheila.Donnelly@uts.edu.au Donnelly Sheila Sheila.Donnelly@uts.edu.au Sheila Donnelly crystal.yip@uts.edu.au Data record created 2023-07-05T23:09:32.895Z Create 2023-07-05T23:09:32.895Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld sheila.donnelly@uts.edu.au https://doi.org/10.26195/yy89-dk26 DOI Camaya I, Mok TY, Lund M, To J, Braidy N, Robinson MW, Santos J, O'Brien B, Donnelly S. The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells. J Mol Med (Berl). 2021 Nov;99(11):1605-1621. doi: 10.1007/s00109-021-02122-x https://link.springer.com/article/10.1007/s00109-021-02122-x The parasite-derived peptide FhHDM-1 activates the PI3K/Akt pathway to prevent cytokine-induced apoptosis of β-cells Camaya I, Donnelly S, O'Brien B. Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes. J Diabetes. 2022 Apr;14(4):247-260. doi: 10.1111/1753-0407.13252. https://onlinelibrary.wiley.com/doi/10.1111/1753-0407.13252 Targeting the PI3K/Akt signaling pathway in pancreatic β-cells to enhance their survival and function: An emerging therapeutic strategy for type 1 diabetes Data Manager Sheila.Donnelly@uts.edu.au _:contact/Sheila.Donnelly@uts.edu.au public_ocfl 2cd6cc6014fd11eeacf4b15b8fae1d4e repository arcp://name,uts_public_data_repo/2cd6cc6014fd11eeacf4b15b8fae1d4e You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) _:spatial/1 N/A https://www.uts.edu.au/ University of Technology Sydney ./ 2024-10-02T02:27:22.607Z 2024-10-02T02:27:22.607Z This dataset comprises the complete anonymised Delphi panel responses from both rounds of the Delphi survey undertaken to develop the Contemporary Implementation of Traditional knowledge and Evidence in health (CITE) Framework. The dataset outlines participant consensus ratings and other responses used to determine and refine the items included in the CITE Framework, which was initially drafted following a literature review and stakeholder discussion forum. The CITE Framework is designed to support appropriate and rigorous use of traditional knowledge by healthcare practitioners, educators, researchers, and policymakers by providing guidance on how to select, evaluate and apply evidence from traditional written knowledge sources within the contemporary context. The intention of the CITE Framework is to ensure the use of traditional knowledge in health contexts be undertaken and evaluated in a rigorous way, without undue bias toward or against traditional knowledge or traditional medicine systems. It aims to facilitate the appropriate use and integration of traditional knowledge with current evidence-based approaches to health care practice, education, research and policy. ae19230043d611ef8052156dedb18645 complementary medicine critical appraisal evidence-based medicine implementation science traditional medicine translational science CITE Framework - Delphi Participant Responses 2024 2024 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git _:contact/Amie.Steel@uts.edu.au Amie.Steel@uts.edu.au Steel Amie Amie.Steel@uts.edu.au Amie Steel Hope.Foley@uts.edu.au Foley Hope Hope.Foley@uts.edu.au Hope Foley Jon.Adams@uts.edu.au Adams Jon Jon.Adams@uts.edu.au Jon Adams Matthew.Leach@scu.edu.au Leach Matthew Matthew.Leach@scu.edu.au Matthew Leach amie.steel@uts.edu.au andrea.bugarcic@scu.edu.au Bugarcic Andrea andrea.bugarcic@scu.edu.au Andrea Bugarcic Data record created 2024-10-02T02:27:22.607Z Create 2024-10-02T02:27:22.607Z Publish jon.wardle@scu.edu.au Wardle Jon jon.wardle@scu.edu.au Jon Wardle application/vnd.openxmlformats-officedocument.spreadsheetml.sheet CITE Delphi Data_De-identified_R1-R2_to share.xlsx Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld weisi.chen@uts.edu.au Data Manager Amie.Steel@uts.edu.au _:contact/Amie.Steel@uts.edu.au public_ocfl ae19230043d611ef8052156dedb18645 repository arcp://name,uts_public_data_repo/ae19230043d611ef8052156dedb18645 http://opendatacommons.org/licenses/odbl/1.0/ http://opendatacommons.org/licenses/odbl/1.0/ You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney Please contact the data manager for this publication for access ./ 2020-11-05T04:30:37.491Z 2020-11-05T04:30:37.491Z Both unprocessed and processed data (time domain and spectrum) is included. The capability of dealing with complicated data is proved through the comparison between unprocessed data and processed data. The performance facing signal reflected from moving human could better. 6ad9771e866a3a6d95c30ad23771b06d Heartbeat detection convolutional sparse coding fmcw radar gaussian mixture model Time domain signal and spectrum for human heartbeat 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git yida xu richard 0000-0003-2080-4762 richard yida xu Andrew.Zhang@uts.edu.au Zhang Jian Andrew.Zhang@uts.edu.au Jian Zhang Fiona.Tweedie@uts.edu.au _:contact/Jingwei.Liu-1@student.uts.edu.au Jingwei.Liu-1@student.uts.edu.au Liu Jingwei Jingwei.Liu-1@student.uts.edu.au Jingwei Liu Data record created 2020-11-05T04:30:37.491Z Create 2020-11-05T04:30:37.491Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/q5q6-zr84 DOI _:FOR/09 09 - ENGINEERING _:FOR/09 Data Manager Jingwei.Liu-1@student.uts.edu.au _:contact/Jingwei.Liu-1@student.uts.edu.au _:funder/redbox-mint.googlecode.com/funding_bodies/CSIRO - Commonwealth Scientific and Industrial Research Organisation CSIRO - Commonwealth Scientific and Industrial Research Organisation _:funder/2011000878 Consultancy in the area of biomedical data acquisition and signal processing public_ocfl 6ad9771e866a3a6d95c30ad23771b06d repository arcp://name,uts_public_data_repo/6ad9771e866a3a6d95c30ad23771b06d You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2020-10-21T00:42:12.602Z 2020-10-21T00:42:12.602Z Participants included adults (18+ years of age) living in Australia who self-identified as a cancer survivor, operationally defined as having been diagnosed and living with, through or beyond any type of cancer completed an online survey. Email registries from a number of cancer related organisations, foundations, and networks throughout Australia were used to broadly advertise and recruit survivors to participate. Some examples of these included the Breast Cancer Network of Australia, Lung Foundation Australia, Prostate Cancer Foundation of Australia, and Ovarian Cancer Australia. In addition, professional societies (e.g., Translational Cancer Research Network, Clinical Oncology Society of Australia) that had capacity to assist with forwarding the survey onto relevant organizations, cancer support groups etc., were utilised. Lastly, the survey was also distributed via the researchers’ established relationships with organizations and cancer related networks throughout Australia (e.g., local cancer support groups, oncology units within public hospitals, private/public cancer care clinics, and professional affiliations). Snowball sampling was used. A total of 418 participants accessed the survey, 381 partially completed the survey and 282 participants completing the entire survey. 92e1fffd0713b780f2c1342dc20f521f Cancer Physical Activity Survivorship Cancer survivors' exercise beliefs, knowledge and behaviours: An Australian national survey. 2019-07-12/2019-09-09 2020 2020 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git text/csv CodeBook.csv Cristina.Caperchione@uts.edu.au Caperchione Cristina Cristina.Caperchione@uts.edu.au Cristina Caperchione Fiona.Tweedie@uts.edu.au _:contact/Sean.Stolp@uts.edu.au Sean.Stolp@uts.edu.au Stolp Sean Sean.Stolp@uts.edu.au Sean Stolp text/csv UnderstandingCancerW_DATA_2019-10-20_1626-1.csv Data record created 2020-10-21T00:42:12.602Z Create 2020-10-21T00:42:12.602Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld https://doi.org/10.26195/2frc-c659 DOI _:FOR/111712 111712 - Health Promotion _:FOR/111712 _:FOR/111204 111204 - Cancer Therapy (excl. Chemotherapy and Radiation Therapy) _:FOR/111204 Data Manager Sean.Stolp@uts.edu.au _:contact/Sean.Stolp@uts.edu.au public_ocfl 92e1fffd0713b780f2c1342dc20f521f repository arcp://name,uts_public_data_repo/92e1fffd0713b780f2c1342dc20f521f http://creativecommons.org/licenses/by-nc/4.0 http://creativecommons.org/licenses/by-nc/4.0 _:spatial/1 Australia -2.52744E1 1.337751E2 Australia You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2024-04-19T00:31:37.366Z 2024-04-19T00:31:37.366Z The topic of modal analysis is mature and has been extensively addressed over the past sev-eral decades. A survey, however, suggests a lack of documentation simply explaining modal analysis, from a practical point-of-view, for example for a simple, multi-degree-of-freedom (MDoF) system, using a range of common, different analytical, numerical and experimental methods. This tutorial paper therefore aims to discuss the topic of modal analysis in the con-text of a simple eight-storey tower structure utilising a range of such commonly deployed, industrially relevant approaches. The datasets, as well as the associated coding and simula-tion files, are made readily available to help non-specialist readers, for example junior re-searchers or early career stage industrial practitioners, develop their understanding and to replicate specific or all elements of the study should they wish to do so. A vertically orientated, mild steel rectangular hollow cross-section cantilever beam was en-gineered in a laboratory to have eight rigid lumped masses mounted at evenly distributed in-tervals along its length. Structural excitation was performed in two different measurement regimes using an impact hammer (“roving hammer”) and an electrodynamic shaker (“roving response”). An accelerometer, a laser Doppler vibrometer, and a laser triangulation sensor were used to measure the acceleration, velocity, and displacement response of the structure, respectively. The complete procedure for sensitivity determination of the response transducers is presented and the extraction of modal features using the different transducers is discussed in detail. A corresponding simplified finite element model of the system is presented, considering the beam as a continuous system with eight finite mass elements. An analytical model using Eu-ler-Bernoulli beam theory was also prepared with correction factors compensating for the effect of the added masses. In addition, a lumped parameter model of the structure was cre-ated considering the masses as point masses and the beam as massless springs. Finally, com-putational simulation of the problem was conducted in SolidWorks, with a convergence study utilised to find the most appropriate mesh densities. The experimental datasets, the MATLAB scripts for the numerical and analytical methods, as well as the SolidWorks simu-lations are made freely available in a data repository . 1512aba0fde411eebc4dd58f108bcb6b Dynamic Characterisation; Finite Element Modelling; Lumped Parameter Model Influence Coefficients; Continuous Beam Model; Euler-Bernoulli Beam Model; Accelerometer; Laser Doppler Vibrometer; Laser Triangulation Sensor A Tutorial on Modal Analysis of a Multi-Degree-of-Freedom System: Analytical, Numerical, and Experimental Methods 2024 2024 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Benjamin.Halkon@uts.edu.au Halkon Benjamin Benjamin.Halkon@uts.edu.au Benjamin Halkon Hamed.Kalhori@uts.edu.au Kalhori Hamed Hamed.Kalhori@uts.edu.au Hamed Kalhori Terry.Brown@uts.edu.au Brown Terry Terry.Brown@uts.edu.au Terry Brown crystal.yip@uts.edu.au _:contact/hamed.kalhori@uts.edu.au hamed.kalhori@uts.edu.au Kalhori Hamed hamed.kalhori@uts.edu.au Hamed Kalhori Data record created 2024-04-19T00:31:37.366Z Create 2024-04-19T00:31:37.366Z Publish application/zip Datasets_Matlab Scripts_SolidWorks (1).zip Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld Data Manager hamed.kalhori@uts.edu.au _:contact/hamed.kalhori@uts.edu.au public_ocfl 1512aba0fde411eebc4dd58f108bcb6b repository arcp://name,uts_public_data_repo/1512aba0fde411eebc4dd58f108bcb6b You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney ./ 2021-01-27T23:25:23.206Z 2021-01-27T23:25:23.206Z Supplementary Table 1: Quality of studies determined using the JBI quality of assessment tool for analytical cross-sectional studies Supplementary Table 2: Quality of studies determined using the JBI quality of assessment tool for case control studies Supplementary Table 3: Quality of studies determined using the JBI quality of assessment tool for cohort studies 72db7954dab79fd3d076eb20ff9f83ee Endocrinology Quality Assessment Quality Assessment for cohort, case control and cross-sectional studies in Endocrinology 2021 2021 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git application/vnd.openxmlformats-officedocument.wordprocessingml.document Supplementary.docx Claire.Rennie@student.uts.edu.au Rennie Claire Claire.Rennie@student.uts.edu.au Claire Rennie _:contact/Kristine.McGrath@uts.edu.au Kristine.McGrath@uts.edu.au McGrath Kristine Kristine.McGrath@uts.edu.au Kristine McGrath Moises.Sacal@uts.edu.au Sheila.Donnelly@uts.edu.au Donnelly Sheila Sheila.Donnelly@uts.edu.au Sheila Donnelly Data record created 2021-01-27T23:25:23.206Z Create 2021-01-27T23:25:23.206Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld _:FOR/11 11 - MEDICAL AND HEALTH SCIENCES _:FOR/11 Data Manager Kristine.McGrath@uts.edu.au _:contact/Kristine.McGrath@uts.edu.au public_ocfl 72db7954dab79fd3d076eb20ff9f83ee repository arcp://name,uts_public_data_repo/72db7954dab79fd3d076eb20ff9f83ee http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.uts.edu.au/ University of Technology Sydney 2017-10-01 This data is part of a project by Michael Lake and supported by the Australian Speleological Federation. Data was acquired at Wombeyan Caves by Robert Zlot in January 2014 using the Zebedee 3D Mapping System developed by CSIRO. ./ http://dx.doi.org/10.4225/59/5a4d9b76d79f4 Survey of Victoria Arch, Wombeyan Caves NSW University of Technology Sydney 2017 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Zlot Robert http://orcid.org/0000-0002-1672-552X Robert Zlot Lake Mike http://orcid.org/0000-0003-4953-0830 Mike Lake customer service mike.lake@uts.edu.au email:mike.lake@uts.edu.au Contact Mike Lake The UTS Data Arena is a 360-degree interactive data visualisation facility http://www.uts.edu.au/partners-and-community/initiatives/data-arena/overview Data Arena The CSIRO bentwing is an unmanned aerial vehicle (UAV, commonly known as a drone) with a LIDAR mounted underneath to capture 3D information on the surroundings. https://confluence.csiro.au/display/ASL/Hovermap bentwing -34.31733 149.96454 Latitude:-34.31733, Longitude: 149.96454 Conversion_wcc02 Conversion_wcc02_traj Conversion_wcc03 Conversion_wcc04 Conversion_wcc04_traj wcc04_arch_traj.txt Conversion_wcc06 Conversion_wcc06_traj Conversion_wcc08 Conversion_wcc08_traj /wcc08_archencentre2_traj2.ply Conversion_wcr03_traj DataCapture_wcc02 DataCapture_wcc04 /Users/124411/working/Victoria_Arch_pub/wcc04_archentrance_traj.txt DataCapture_wcc06 DataCapture_wcc08 DataCapture_wcr03 The data included in this data collection is copyright 2014 CSIRO and available for research and academic purposes. Please contact Robert Zlot / CSIRO to request usage for other purposes. Please credit CSIRO when using any of this data in publications or external communications (and where possible/appropriate please inform or coordinate such communications with CSIRO). The minimum requirement for acknowledgment is to state the date, location, equipment used, and technology developers (CSIRO), as in: "Data was acquired at Wombeyan Caves in January 2014 using the Zebedee 3D Mapping System and the bentwing Aerial Scanning System developed by CSIRO Australia." License Copyright CSIRO 2014: Available for research and academic purposes 304 Hypertext Markup Language http://www.nationalarchives.gov.uk/PRONOM/fmt/96 README.html 2019-12-23T04:26:34.211Z Migrate to RO-Crate Kaul Larkins Welch Bruce Lukas Rowena Bruce Welch Lukas Kaul Rowena Larkins Bruce Welch Lukas Kaul Rowena Larkins Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld
Wombeyan Caves, NSW 2580
This is the GDA94 datum, which is for most situations is close to WGS84 victoria_arch Victoria Arch
public_ocfl 04d022263e59a67ffdafae7b38de3fd0 repository arcp://name,uts_public_data_repo/04d022263e59a67ffdafae7b38de3fd0 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) "_:FOR/020603" "_:FOR/080110" "_:contact/elija.t.perrier@student.uts.edu.au" ./ 2022-03-28T04:39:03.553Z 2022-03-28T04:39:03.553Z The QDataSet comprises 52 datasets based on simulations of one- and two-qubit systems evolving in the presence and/or absence of noise subject to a variety of controls. It has been developed to provide a large-scale set of datasets for the training, benchmarking and competitive development of classical and quantum algorithms for common tasks in quantum sciences, including quantum control, quantum tomography and noise spectroscopy. It has been generated using customised code drawing upon base-level Python packages in order to facilitate interoperability and portability across common machine learning and quantum programming platforms. Each dataset consists of 10,000 samples which in turn comprise a range of data relevant to the training of machine learning algorithms for solving optimisation problems. The data includes a range of information (stored in list, matrix or tensor format) regarding quantum systems and their evolution, such as: quantum state vectors, drift and control Hamiltonians and unitaries, Pauli measurement distributions, time series data, pulse sequence data for square and Gaussian pulses and noise and distortion data. The total compressed size of the QDataSet (using Pickle and zip formats) is around 14TB (uncompressed, around 100TB). Researchers can use the QDataSet in a variety of ways to design algorithms for solving problems in quantum control, quantum tomography and quantum circuit synthesis, together with algorithms focused on classifying or simulating such data. We also provide working examples of how to use the QDataSet in practice and its use in benchmarking certain algorithms. The associated paper provides in-depth detail on the QDataSet for researchers who may be unfamiliar with quantum computing, together with specifications for domain experts within quantum engineering, quantum computation and quantum machine learning. The dataset details are set out in the link to raw files. [70967290a59911eca9a84993133e6628, {"@id":"_:local-id:public_ocfl:70967290a59911eca9a84993133e6628","@type":"PropertyValue","value":"70967290a59911eca9a84993133e6628","name":"public_ocfl"}] machine learning quantum "_:license/http://creativecommons.org/licenses/by/3.0/au" QDataSet: Quantum Datasets for Machine Learning 2021-01-01/2021-01-01 2022 2022 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git https://arxiv.org/abs/2108.06661 QDataset: Quantum Datasets for Machine Learning 0a5ced406a603943296693967f241226 application/pdf 2108.06661.pdf Christopher.Ferrie@uts.edu.au Ferrie Christopher Christopher.Ferrie@uts.edu.au Christopher Ferrie The data is publicly available via the URL: https://cloudstor.aarnet.edu.au/plus/s/rxYKXBS7Tq0kB8o, If this is no longer accessible, please contact elija.t.perrier@student.uts.edu.au. The data is described below: G 1q X : (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: none; (iv) No distortion. G 1q X D : (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: none; (iv) Distortion. G 1q XY: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: none; (iv) No distortion. G 1q XY D : (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: none; (iv) Distortion. G 1q XY XZ N1N5: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N5 on z-axis; (iv) No distortion. G 1q XY XZ N1N5 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N5 on z-axis; (iv) No distortion. G 1q XY XZ N1N6: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) Distortion. G 1q XY XZ N1N6 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) No distortion. G 1q XY XZ N3N6: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) Distortion. G 1q XY XZ N3N6 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) No distortion. G 1q X Z N1 : (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N1 on z-axis; (iv) No distortion. G 1q X Z N1 D: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N1 on z-axis; (iv) Distortion. G 1q X Z N2: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N2 on z-axis; (iv) No distortion. G 1q X Z N2 D: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N2 on z-axis; (iv) Distortion. G 1q X Z N3: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N3 on z-axis; (iv) No distortion. G 1q X Z N3 D: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N3 on z-axis; (iv) Distortion. G 1q X Z N4: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N4 on z-axis; (iv) No distortion. G 1q X Z N4 D: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N4 on z-axis; (iv) Distortion. G 2q IX-XI IZ-ZI N1-N6: (i) Qubits: two; (ii) Control: x-axis on both qubits, Gaussian; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) No distortion. G 2q IX-XI IZ-ZI N1-N6 D: (i) Qubits: two; (ii) Control: x-axis on both qubits, Gaussian; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) Distortion. G 2q IX-XI-XX: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, Gaussian; (iii) Noise: none; (iv) No distortion. G 2q IX-XI-XX D: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, Gaussian; (iii) Noise: none; (iv) Distortion. G 2q IX-XI-XX IZZI N1-N5: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, Gaussian; (iii) Noise: N1 and N5 on z-axis noise on each qubit; (iv) No distortion. G 2q IX-XI-XX IZZI N1-N5: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, Gaussian; (iii) Noise: N1 and N5 on z-axis noise on each qubit; (iv) Distortion. S 1q X: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: none; (iv) No distortion. S 1q X D: (i) Qubits: one; (ii) Control: x-axis, Gaussquaresian; (iii) Noise: none; (iv) Distortion. S 1q XY: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: none; (iv) No distortion. S 1q XY D: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussquaresian; (iii) Noise: none; (iv) Distortion. S 1q XY XZ N1N5: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: N1 on x-axis, N5 on z-axis; (iv) No distortion. S 1q XY XZ N1N5 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, Gaussian; (iii) Noise: N1 on x-axis, N5 on z-axis; (iv) No distortion. S 1q XY XZ N1N6: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) Distortion. S 1q XY XZ N1N6 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) No distortion. S 1q XY XZ N3N6: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) Distortion. S 1q XY XZ N3N6 D: (i) Qubits: one; (ii) Control: x-axis and y-axis, square; (iii) Noise: N1 on x-axis, N6 on z-axis; (iv) No distortion. S 1q X Z N1: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N1 on z-axis; (iv) No distortion. S 1q X Z N1 D: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N1 on z-axis; (iv) Distortion. S 1q X Z N2 : (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N2 on z-axis; (iv) No distortion. S 1q X Z N2 D: (i) Qubits: one; (ii) Control: x-axis, Gaussian; (iii) Noise: N2 on z-axis; (iv) Distortion. S 1q X Z N3: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N3 on z-axis; (iv) No distortion. S 1q X Z N3 D: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N3 on z-axis; (iv) Distortion. S 1q X Z N4: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N4 on z-axis; (iv) No distortion. S 1q X Z N4 D: (i) Qubits: one; (ii) Control: x-axis, square; (iii) Noise: N4 on z-axis; (iv) Distortion. S 2q IX-XI IZ-ZI N1-N6: (i) Qubits: two; (ii) Control: x-axis on both qubits, square; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) No distortion. S 2q IX-XI IZ-ZI N1-N6 D: (i) Qubits: two; (ii) Control: x-axis on both qubits, square; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) Distortion. S 2q IX-XI-XX: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, square; (iii) Noise: none; (iv) No distortion. S 2q IX-XI-XX D: (i) Qubits: two; (ii) Control: single x-axis control on both qubits and x-axis interacting control, square; (iii) Noise: none; (iv) Distortion. S 2q IX-XI-XX IZZI N1-N5: (i) Qubits: two; (ii) Control: x-axis on both qubits and xaxis interacting control, square; (iii) Noise: N1 and N5 z-axis on each qubit; (iv) No distortion. S 2q IX-XI-XX IZZI N1-N5 D: (i) Qubits: two; (ii) Control: x-axis on both qubits and xaxis interacting control, square; (iii) Noise: N1 and N5 z-axis on each qubit; (iv) Distortion. S 2q IX-XI-XX IZZI N1-N6: (i) Qubits: two; (ii) Control: x-axis on both qubits and xaxis interacting control, square; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) No distortion. S 2q IX-XI-XX IZZI N1-N6 D: (i) Qubits: two; (ii) Control: x-axis on both qubits and xaxis interacting control, square; (iii) Noise: N1 and N6 z-axis on each qubit; (iv) Distortion. Link to Raw Files akram.youssry@eng.asu.edu.eg Youssry Akram akram.youssry@eng.asu.edu.eg Akram Youssry dacheng.tao@sydney.edu.au Tao Dacheng dacheng.tao@sydney.edu.au Dacheng Tao _:contact/elija.t.perrier@student.uts.edu.au elija.t.perrier@student.uts.edu.au Perrier Elija elija.t.perrier@student.uts.edu.au Elija Perrier Data record created 2022-03-28T04:39:03.553Z Create 2022-03-28T04:39:03.553Z Publish Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld simon.kruik@uts.edu.au repository arcp://name,uts_public_data_repo/70967290a59911eca9a84993133e6628 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) Data Manager elija.t.perrier@student.uts.edu.au _:contact/elija.t.perrier@student.uts.edu.au _:FOR/020603 020603 - Quantum Information, Computation and Communication _:FOR/020603 _:FOR/080110 080110 - Simulation and Modelling _:FOR/080110 http://creativecommons.org/licenses/by/3.0/au http://creativecommons.org/licenses/by/3.0/au https://www.uts.edu.au/ University of Technology Sydney ./ 2023-12-08T04:03:29.319Z 2023-12-08T04:03:29.319Z The full program and abstracts for the Transformations Conference 2023, held in Sydney, Prague and online from 12th - 14th July 2023. As the online platform used for the conference is no longer publicly accessible, this is an important record of the content of the conference. 01d00a508d9c11ee97111d55566bcc08 partnerships sustainability transformations Transformations Conference 2023 Program 2023-07-11/2023-07-14 2023 2023 This is the UTS Research Data Portal. For any questions, please get in touch with us at eResearch-it@uts.edu.au UTS Research Data Portal Oni ocfl tools git+https://github.com/Arkisto-Platform/oni-ocfl.git Christopher.Riedy@uts.edu.au Transformations Community Christopher.Riedy@uts.edu.au Christopher Riedy _:contact/christopher.riedy@uts.edu.au christopher.riedy@uts.edu.au Riedy Christopher christopher.riedy@uts.edu.au Christopher Riedy Data record created 2023-12-08T04:03:29.319Z Create 2023-12-08T04:03:29.319Z Publish application/pdf Transformations Conference 2023 Program and Abstracts.pdf Created RO-Crate using oni-ocfl ro-crate-metadata.json ro-crate-metadata.jsonld weisi.chen@uts.edu.au Data Manager christopher.riedy@uts.edu.au _:contact/christopher.riedy@uts.edu.au public_ocfl 01d00a508d9c11ee97111d55566bcc08 repository arcp://name,uts_public_data_repo/01d00a508d9c11ee97111d55566bcc08 You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform and build upon the material for any purpose, even commercially). Attribution 4.0 International (CC BY 4.0) https://www.transformationscommunity.org/transformations-conference-2023 Transformations Conference 2023 https://www.uts.edu.au/ University of Technology Sydney thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 null,null null,null collectionIdentifier NT7 doi 10.4225/72/56F95040C3C70 domain paradisec.org.au hashId 25331dafb4e491919df555ffeb648b14519471d6ae2871a31f55aa28fa732a591acbded399f04971af03d4654775f5b22d833f159193ad6d336d2ada1509f363 id /paradisec.org.au/NT7/0873 itemIdentifier 0873 erk Efate, South item 2012-09-27T10:08:20.000Z 2016-03-28T15:39:49.000Z Erakor schoolroom with computer Erakor schoolroom with computer 0 Wed Jul 23 2008 14:00:00 GMT+0000 (Coordinated Universal Time) 0 Nafsan 1 2008-07-15 0 0 1658921 2012-09-27T10:08:20.000Z 2016-06-12T02:22:22.000Z image/jpeg NT7-0873-PIC.jpg 10.4225/72/575CC75965B07 1011933 collector depositor researcher Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94D8EA2852 domain paradisec.org.au hashId a3c495fb4d2c59db0087e97e491f3f74c1fa35976ae4c66eabb48d612d805f411436472b90c40d632b2e00c7644f39fdc2a2d7fecee9f9dfc62770572fc6605f id /paradisec.org.au/NT4/3_08 itemIdentifier 3_08 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:28:19.000Z plantname, 7? Photographs of plants: kauri 0 0 1 2000-04-08 8/4/00 0 0 623584 2004-11-22T13:00:00.000Z 2016-06-12T00:40:24.000Z image/jpeg NT4-3_08-PIC.jpg 10.4225/72/575CAF73A9301 1011628 5230290 2004-11-22T13:00:00.000Z 2016-06-12T00:40:30.000Z image/tiff NT4-3_08-PIC.tif 10.4225/72/575CAF793325E 1011629 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 null,null null,null collectionIdentifier NT7 doi 10.4225/72/56F950AE10A30 domain paradisec.org.au hashId 85abbcf5362f458eeeac59db62289afc31f79d1bc7e9f90756dd9fa77d346a1b2b4ea6d6bed35faecc42c85ccee81b50c449f22eb4deee47d568879ed45e9453 id /paradisec.org.au/NT7/0919 itemIdentifier 0919 erk Efate, South item 2012-09-27T10:08:21.000Z 2016-03-28T15:41:38.000Z Endis using ITunes on the Erakor School computer Endis using ITunes on the Erakor School computer 0 Wed Jul 23 2008 14:00:00 GMT+0000 (Coordinated Universal Time) 0 Nafsan 1 2008-07-20 0 0 1457592 2012-09-27T10:08:21.000Z 2016-06-12T02:24:14.000Z image/jpeg NT7-0919-PIC.jpg 10.4225/72/575CC7C9099CD 1011953 collector depositor researcher Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Australia VU Vanuatu 168.162,-17.606 168.221,-17.547 168.195,-17.616 168.226,-17.579 collectionIdentifier NT6 doi 10.4225/72/56F94FDF58A3F domain paradisec.org.au hashId be2ed90c1b99737be56bdd5777806ba078a7311dc4ce15c460afd4801ee94d32e125e16555678dd426c21410bf944703fdcd3559765e02c0194d97e189e340e0 id /paradisec.org.au/NT6/200505 itemIdentifier 200505 lpa Lelepa item 2006-02-04T13:00:00.000Z 2016-03-28T15:38:12.000Z Story of the hermit crab and the sawfish Kalsau Npar Npar Kalsau Story of the hermit crab and the sawfish 0 Sun Feb 05 2006 13:00:00 GMT+0000 (Coordinated Universal Time) 0 Edirol R-4 digital recorder, Rode NT-4 stereo condenser microphone. A) Some digital clipping and extreme low frequency rumble due to wind noise.B) Some digital clipping and extreme low frequency rumble due to wind noise. Lelepa 1 Edirol R-4 dig recorder, Rode NT-4 microphone 2005-10-20 0 0 128030 1750566 2006-02-04T13:00:00.000Z 2016-06-12T02:19:13.000Z 1.09384E2 audio/mpeg NT6-200505-A.mp3 2 10.4225/72/575CC69BBB57E 1011899 44100 4626974 63384868 2006-02-04T13:00:00.000Z 2016-06-12T02:19:18.000Z 1.09592E2 audio/x-wav NT6-200505-A.wav 2 10.4225/72/575CC6A17A4D6 1011900 96000 128021 2452377 2006-02-04T13:00:00.000Z 2016-06-12T02:19:24.000Z 1.53248E2 audio/mpeg NT6-200505-B.mp3 2 10.4225/72/575CC6A700037 1011901 44100 4621543 88696804 2006-02-04T13:00:00.000Z 2016-06-12T02:19:29.000Z 1.53536E2 audio/x-wav NT6-200505-B.wav 2 10.4225/72/575CC6AC69AED 1011902 96000 collector depositor speaker Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Australia VU Vanuatu 166.427,-22.283 166.467,-22.241 168.188,-17.6249 168.238,-17.5657 168.195,-17.616 168.226,-17.579 collectionIdentifier NT1 doi 10.4225/72/56F94AAA6BBAD domain paradisec.org.au hashId dbf666629b75dfd991bcea1bf1c511f9ae332c2b5825acb84148fa339a45c10fb50b1ae9d1c4b8a02327ff7688883b1c565f4e0507db04176e5bed5aa1eabc95 id /paradisec.org.au/NT1/98020 itemIdentifier 98020 bis Bislama lpa Lelepa item 2012-09-27T10:08:01.000Z 2016-03-28T15:15:59.000Z Lelepa; Kalsaf Malesu; Ruben Taftuel; B: Douglas Meto reading Tryon list words Malesu Meto Taftuel Douglas Kalsaf Ruben Douglas Meto Kalsaf Malesu Lelepa Island Recordings in Lelepa Ruben Taftuel 0 Sun Dec 31 2000 13:00:00 GMT+0000 (Coordinated Universal Time) 0 Nafsan 1 audiocassette 1998-11-10 0 0 128005 41891968 2012-09-27T10:08:01.000Z 2019-11-29T10:05:18.000Z 2.61813E3 audio/mpeg NT1-98020-98020A.mp3 2 10.4225/72/575CA6627467C 1011209 44100 4608000 1508023574 2012-09-27T10:08:01.000Z 2019-11-29T10:08:50.000Z 2.6181E3 audio/x-wav NT1-98020-98020A.wav 2 10.4225/72/575CA66806F9D 1011210 96000 128007 28815488 2012-09-27T10:08:01.000Z 2019-11-29T10:13:14.000Z 1.80086E3 audio/mpeg NT1-98020-98020B.mp3 2 10.4225/72/575CA66D8E02E 1011211 44100 4608000 1037278652 2012-09-27T10:08:01.000Z 2019-11-29T10:12:54.000Z 1.80083E3 audio/x-wav NT1-98020-98020B.wav 2 10.4225/72/575CA67324EE5 1011212 96000 collector depositor recorder speaker Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Australia VU Vanuatu 168.027,-17.872 168.508,-17.461 169.746,-20.249 169.905,-20.133 collectionIdentifier NT9 doi 10.4225/72/56FA0D3060A9C domain paradisec.org.au hashId 842958613ac189a26ad06c47b3e930c4bd5a2ae32a77e296b32f51bc21f1c099479a2699bd8b64fe3ae55e7877286d637828af10590daf701e70c41696f9c98b id /paradisec.org.au/NT9/1873 itemIdentifier 1873 aty Aneityum item 2012-09-27T10:08:29.000Z 2016-03-29T05:05:57.000Z Philip Tepahae at conference, Vila, 6/11/06 Philip Tepahae at conference, Vila, 6/11/06 0 0 1 2006-11-10 0 0 1725642 2012-09-27T10:08:29.000Z 2016-06-12T02:37:27.000Z image/jpeg NT9-1873-PIC.jpg 10.4225/72/575CCAE1C2895 1012096 collector depositor researcher Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Australia VU Vanuatu 168.102,-17.882 168.619,-17.492 168.159,-17.83 168.594,-17.585 collectionIdentifier NT7 doi 10.4225/72/56F951323EDAC domain paradisec.org.au hashId daae8062a27f1b419e5e5ddbd5a2330f2208b45ca983cdebb38633d08a5414490849d246ebcc3161e2582eee6f81937c775d5bf152ec0bcc367b6de7aa144f0e id /paradisec.org.au/NT7/0946 itemIdentifier 0946 erk Efate, South item 2006-10-04T14:00:00.000Z 2016-03-28T15:43:51.000Z nap_ nap_ 0 Tue Jun 19 2007 14:00:00 GMT+0000 (Coordinated Universal Time) 0 1 2005-10-29 0 0 989174 2006-10-04T14:00:00.000Z 2016-06-12T02:26:26.000Z image/jpeg NT7-0946-PIC.jpg 10.4225/72/575CC84DA2E22 1011977 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94CB5B39BF domain paradisec.org.au hashId 2591820a90746c47510c7e7a4fdb4cd10f09ebb0d9ad2580a0a9eb3769a2766bdc8d7118677d96528311eed184a28a7173f2e199dca50510d405c0099f8297f9 id /paradisec.org.au/NT4/2_09 itemIdentifier 2_09 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:24:42.000Z William's family William's family 0 0 1 0 0 660299 2004-11-22T13:00:00.000Z 2016-06-12T00:33:21.000Z image/jpeg NT4-2_09-PIC.jpg 10.4225/72/575CADCB99715 1011552 5224070 2004-11-22T13:00:00.000Z 2016-06-12T00:33:27.000Z image/tiff NT4-2_09-PIC.tif 10.4225/72/575CADD142FE5 1011553 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94E9D5AD69 domain paradisec.org.au hashId a2c6a0d88f1a434e63f06f387f4350f9d5444883f87194ffcbd01210c1d9d0778825ae7055a5e58529e6c719247d653b77ce1c1b9a7c5fca104fc6beae92a29e id /paradisec.org.au/NT4/4_18 itemIdentifier 4_18 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:32:50.000Z placename, picture of location Ekasufat 0 0 1 2000-04-04 4/4/00 0 0 669333 2004-11-22T13:00:00.000Z 2016-06-12T02:02:52.000Z image/jpeg NT4-4_18-PIC.jpg 10.4225/72/575CC2C7A8B83 1011722 5337830 2004-11-22T13:00:00.000Z 2016-06-12T02:02:58.000Z image/tiff NT4-4_18-PIC.tif 10.4225/72/575CC2CD2A416 1011723 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94CD83D92E domain paradisec.org.au hashId 63c6adcff4e199bad25981f69b8367cd0a91ddcddcfba451da69237f5cf9c948c3384a431971070c4885338ce72aba6432a9b49892a8a2c37d43613f8c81654e id /paradisec.org.au/NT4/2_15 itemIdentifier 2_15 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:25:17.000Z plantname type of taro, 13 ntal nafum̃kas 0 0 1 2000-03-25 25/3/00 0 0 462778 2004-11-22T13:00:00.000Z 2016-06-12T00:34:28.000Z image/jpeg NT4-2_15-PIC.jpg 10.4225/72/575CAE0ECCAC6 1011564 5224110 2004-11-22T13:00:00.000Z 2016-06-12T00:34:33.000Z image/tiff NT4-2_15-PIC.tif 10.4225/72/575CAE144E18D 1011565 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 null,null null,null collectionIdentifier NT7 doi 10.4225/72/56F950362A74D domain paradisec.org.au hashId 47d86fffa4403d453d132537eb1ab846fb7f57c7d984b87e81c7fd7c4ed196e53eba9b4a4a5064b1c3c0b33aea73a3110acc5fe778e142d945c14cbc03d66ab1 id /paradisec.org.au/NT7/0871 itemIdentifier 0871 erk Efate, South item 2012-09-27T10:08:20.000Z 2016-03-28T15:39:39.000Z Computer with ITunes and tracks at Erakor School Computer with ITunes and tracks at Erakor School 0 Wed Jul 23 2008 14:00:00 GMT+0000 (Coordinated Universal Time) 0 Nafsan 1 2008-07-15 0 0 1255994 2012-09-27T10:08:20.000Z 2016-06-12T02:22:11.000Z image/jpeg NT7-0871-PIC.jpg 10.4225/72/575CC74E52A75 1011931 collector depositor researcher Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94DA55FC34 domain paradisec.org.au hashId fc0e482bdd31cafb8ea43eb612ad77343923906f4f406384089ff9a4b4febcb56794ef788b22a572df7bc3c89bf00c30606193d14af590f0a1e5333c2e67ce74 id /paradisec.org.au/NT4/3_12 itemIdentifier 3_12 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:28:42.000Z plantname, 11?, pc pic 16 11 or 13 8/4/00 JM Photographs of plants: naplip 0 0 1 2000-04-08 8/4/00 0 0 787784 2004-11-22T13:00:00.000Z 2016-06-12T00:41:09.000Z image/jpeg NT4-3_12-PIC.jpg 10.4225/72/575CAF9FCA556 1011636 5230290 2004-11-22T13:00:00.000Z 2016-06-12T00:41:14.000Z image/tiff NT4-3_12-PIC.tif 10.4225/72/575CAFA548FED 1011637 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94DA55FC34 domain paradisec.org.au hashId fc0e482bdd31cafb8ea43eb612ad77343923906f4f406384089ff9a4b4febcb56794ef788b22a572df7bc3c89bf00c30606193d14af590f0a1e5333c2e67ce74 id /paradisec.org.au/NT4/3_12 itemIdentifier 3_12 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:28:42.000Z plantname, 11?, pc pic 16 11 or 13 8/4/00 JM Photographs of plants: naplip 0 0 1 2000-04-08 8/4/00 0 0 787784 2004-11-22T13:00:00.000Z 2016-06-12T00:41:09.000Z image/jpeg NT4-3_12-PIC.jpg 10.4225/72/575CAF9FCA556 1011636 5230290 2004-11-22T13:00:00.000Z 2016-06-12T00:41:14.000Z image/tiff NT4-3_12-PIC.tif 10.4225/72/575CAFA548FED 1011637 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Erakor Australia VU Vanuatu 168.159,-17.83 168.594,-17.585 168.217,-17.8235 168.317,-17.7235 collectionIdentifier NT4 doi 10.4225/72/56F94D05E4A92 domain paradisec.org.au hashId 01c41677d8e29ce71171eddb210e7676f288b3e6a6951ac94ff981b06de23186e947fa20ac0d322eb041405814d4a73fa9ed665b1d5e7584a9537cdd0cc1d397 id /paradisec.org.au/NT4/2_23 itemIdentifier 2_23 erk Efate, South item 2004-11-22T13:00:00.000Z 2016-03-28T15:26:02.000Z plantname, pc 21 film 2 8/4/00 id JM ntalitas 0 0 1 2000-04-08 8/4/00 0 0 646024 2004-11-22T13:00:00.000Z 2016-06-12T00:35:57.000Z image/jpeg NT4-2_23-PIC.jpg 10.4225/72/575CAE67109F5 1011580 5230290 2004-11-22T13:00:00.000Z 2016-06-12T00:36:02.000Z image/tiff NT4-2_23-PIC.tif 10.4225/72/575CAE6D8DE6F 1011581 collector depositor photographer Open (subject to agreeing to PDSC access conditions) thien@unimelb.edu.au Thieberger Nick Nick Thieberger University of Melbourne Australia VU Vanuatu 168.102,-17.882 168.619,-17.492 168.159,-17.83 168.594,-17.585 collectionIdentifier NT7 doi 10.4225/72/56F950FB14CA6 domain paradisec.org.au hashId bdaad43ca34df0eaede297ee50dc860341649476e82aa28821aa7a82388cf20237338d26d96d73d39f85d77bfe5904a22509b321e109064e99f17550b4d5a4bf id /paradisec.org.au/NT7/0936 itemIdentifier 0936 erk Efate, South item 2006-10-04T14:00:00.000Z 2016-03-28T15:42:55.000Z Apu Kalsarap's grave Apu Kalsarap's grave 0 Tue Jun 19 2007 14:00:00 GMT+0000 (Coordinated Universal Time) 0 1 2005-10-29 0 0 1826173 2006-10-04T14:00:00.000Z 2016-06-12T02:25:31.000Z image/jpeg NT7-0936-PIC.jpg 10.4225/72/575CC816B0AA0 1011967 collector depositor photographer Open (subject to agreeing to PDSC access conditions)