Skip to content

Commit

Permalink
changed document attributes - type to role
Browse files Browse the repository at this point in the history
  • Loading branch information
per305 authored and per305 committed Feb 8, 2022
1 parent aacc988 commit 98a13b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
hub_name projectId title description documentUrl type citation keywords
hub_name projectId title description documentUrl role citation keywords
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"
2 changes: 1 addition & 1 deletion scripts/RestClient/nesp/marineArtefacts/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var document =
"filepath" : "2022-02",
"thirdPartyConsentDeclarationMade" : false,
"projectActivityId" : "",
"role" : "information",
"role" : "",
"name" : "",
"type" : "application",
"status" : "active",
Expand Down
14 changes: 7 additions & 7 deletions scripts/RestClient/nesp/marineArtefacts/documentImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ var projectId = hub_name + 1;
var title = projectId + 1;
var description = title + 1;
var documentUrl = description + 1;
var type = documentUrl + 1;
var citation = type + 1;
var role = documentUrl + 1;
var citation = role + 1;
var keywords = citation + 1;

var csvData = cat(path+'NESP_MARINE_ARTEFACTS_FOR_TEST.txt');
Expand Down Expand Up @@ -73,13 +73,13 @@ for(var i = 1; i < csvRows.length; i++) {
document.contentType = contentType
}

if (fields[type]) {
if (fields[type].indexOf(',') != -1) {
var tempType = fields[type].replace(/""/g, '"');
document.type = tempType.substring(1, tempType.length - 1);
if (fields[role]) {
if (fields[role].indexOf(',') != -1) {
var tempType = fields[role].replace(/""/g, '"');
document.role = tempType.substring(1, tempType.length - 1);
}
else {
document.type = fields[type]
document.role = fields[role]
}
}

Expand Down

1 comment on commit 98a13b9

@yasima-csiro
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks ok

Please sign in to comment.