Skip to content

Commit a56bb77

Browse files
per305per305
per305
authored and
per305
committed
added doi link as some documents actually contains only the doi link to the document
1 parent 98a13b9 commit a56bb77

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
hub_name projectId title description documentUrl role citation keywords
1+
hub_name projectId title description documentUrl doiLink role citation keywords
22
marine 05a22be2-db9d-4c9c-9b1a-014a31e3adc6 Life history of the Criticaly Endangered largetooth sawfish: a compilation of data for population assessment and demographic modelling "The largetooth sawfish Pristis pristis is a Critically Endangered, once widespread shark-like ray. The species is now extinct or severely depleted in many former parts of its range and is protected in some other range states where populations persist. The likelihood of collecting substantial new biological information is now low. Here, we review all available life history information on size, age and growth, reproductive biology, and demography as a resource for population assessment and demographic modelling. We also revisit a subset of historical data from the 1970s to examine the maternal size?litter size relationship. All available information on life history is derived from the Indo-West Pacific (i.e. northern Australia) and the Western Atlantic (i.e. Lake Nicaragua-R�o San Juan system in Central America) subpopulations. P. pristis reaches a maximum size of at least 705 cm total length (TL), size-at-birth is 72?90 cm TL, female size-at-maturity is reached by 300 cm TL, male size-at-maturity is 280?300 cm TL, age-at-maturity is 8?10 yr, longevity is 30?36 yr, litter size range is 1?20 (mean of 7.3 in Lake Nicaragua), and reproductive periodicity is suspected to be biennial in Lake Nicaragua (Western Atlantic) but annual in Australia (Indo-West Pacific). There was a weak relationship between litter size and maternal size in Lake Nicaragua, and lifetime reproductive output for an individual female from Lake Nicaragua was estimated as 73 pups. Future demographic models should aim to capture the variability and uncertainty in life history parameters for P. pristis and we encourage a conservative approach to any application for conservation and management." https://www.nespmarine.edu.au/system/files/Kyne et al_Life history of the Critically Endangered largetooth sawfish_2021_OPEN.pdf Documents "Bi D, Dix M, Marsland S,�O'Farrell S, Sullivan A, Bodman R, Law� R, Harman I, Srbinovsky J, Rashid� H, Dobrohotoff, Mackallah C, Yan H, Hirst A, Savita A, Dias F, Woodhouse M, FiedlerR and Heerdegen A. 2020. Configuration and spin-up of ACCESS-CM2, the new generation Australian Community Climate and Earth System Simulator Coupled Model,�Journal of Southern Hemisphere Earth Systems Science, 70 (1), doi: 10.1071/ES19040 " "ACCESS-CM2, climate change, climate simulation, CMIP6, coupled climate model, evaluation, greenhouse gases, physical configuration, preindustrial spin-up, tuning and debugging"

scripts/RestClient/nesp/marineArtefacts/document.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ var document =
2121
"filesize" : "",
2222
"contentType" : "",
2323
"citation" : "",
24-
"keywords" : ""
24+
"keywords" : "",
25+
"doiLink" : ""
2526
}
2627

2728

scripts/RestClient/nesp/marineArtefacts/documentImport.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ var projectId = hub_name + 1;
1010
var title = projectId + 1;
1111
var description = title + 1;
1212
var documentUrl = description + 1;
13-
var role = documentUrl + 1;
13+
var doiLink = documentUrl + 1;
14+
var role = doiLink + 1;
1415
var citation = role + 1;
1516
var keywords = citation + 1;
1617

@@ -73,6 +74,16 @@ for(var i = 1; i < csvRows.length; i++) {
7374
document.contentType = contentType
7475
}
7576

77+
if (fields[doiLink]) {
78+
if (fields[doiLink].indexOf(',') != -1) {
79+
var tempDoi = fields[doiLink].replace(/""/g, '"');
80+
document.doiLink = tempDoi.substring(1, tempDoi.length - 1);
81+
}
82+
else {
83+
document.doiLink = fields[doiLink]
84+
}
85+
}
86+
7687
if (fields[role]) {
7788
if (fields[role].indexOf(',') != -1) {
7889
var tempType = fields[role].replace(/""/g, '"');

0 commit comments

Comments
 (0)