Skip to content

Commit d6fba4b

Browse files
Merge pull request #417 from StoXProject/develop
Develop
2 parents 3bcf11e + 95dd727 commit d6fba4b

File tree

6 files changed

+77
-7
lines changed

6 files changed

+77
-7
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RstoxData
2-
Version: 2.1.2
3-
Date: 2025-01-20
2+
Version: 2.1.3-9001
3+
Date: 2025-03-17
44
Title: Tools to Read and Manipulate Fisheries Data
55
Authors@R: c(
66
person(given = "Edvin",

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* Temporarily hiding Prey tables in StoxBiotic().
4040

4141
# RstoxData v2.0.1-9004 (2024-10-08)
42-
* Fixed a bug where certain values of BiologyLengthCode were shifted one integer value down in ICESBiotic(). The bug is related to floating point precision which causes some values to be slightly lower than the corresponding integer after calculations. In R one example is format(29 / 100 * 100, digits = 20) = "28.999999999999996447", which results in 28 when converted to integer. The following values are affected:
42+
* Fixed a bug where certain values of BiologyLengthClass were shifted one integer value down in ICESBiotic(). The bug is related to floating point precision which causes some values to be slightly lower than the corresponding integer after calculations. In R one example is format(29 / 100 * 100, digits = 20) = "28.999999999999996447", which results in 28 when converted to integer. The following values are affected:
4343
* 29, 57, 58, 113, 114, 115, 116 when BiologyLengthCode is "cm" (lengthresolution "3")
4444
* 1001, 1003, 1005, 1007, 1009, 1011, 1013, 1015, 1017, 1019, 1021 and 1023 when BiologyLengthCode is "mm" (lengthresolution "1")
4545
* 1005 and 1015 (a subset of the values for "mm") when BiologyLengthCode is "halfcm" (lengthresolution "2")

R/readXmlFile.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ readXmlFile <- function(xmlFilePath, stream = TRUE, useXsd = NULL, usePrefix = N
9393
# close(fileConn)
9494
# xmlFilePath <- tempXml
9595
#}
96-
96+
9797
# Apply preprocess for ICES XSDs. This must happen on the xsdObjects, and not e.g. on a copy, as the zip reading fails in that case:
9898
if(!is.null(useXsd) && useXsd == "icesAcoustic") {
9999
xsdObjects$icesAcoustic.xsd <- icesAcousticPreprocess(xsdObjects$icesAcoustic.xsd)

R/writeXmlFile.R

+61-1
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,67 @@ MergeNMDEchosounderOne <- function(NMDEchosounderOne) {
11421142
}
11431143

11441144
MergeICESAcousticOne <- function(ICESAcousticOne) {
1145-
stop("Not yet implemented.")
1145+
1146+
stop("Not finished!")
1147+
1148+
# The following code is an attempt to merge ICESAcoustic data. The problem that remains unsolved is that when reading the ICESAcoustic XML there is a table named "Survey" and a column named Survey in the Cruise table. The reader misinterprets this so that the Survey column of the Cruise table is appended as an additional row in the Survey table:
1149+
1150+
# Make a copy, as we are translating by reference:
1151+
ICESAcousticOne <- data.table::copy(ICESAcousticOne)
1152+
1153+
1154+
tablesToMerge <- c("Cruise", "Log", "Sample", "Data")
1155+
1156+
# Apply translations defined in the table 'vocabulary':
1157+
if(length(ICESAcousticOne$vocabulary)) {
1158+
vocabulary <- findVariablesMathcinigVocabulary(
1159+
vocabulary = ICESAcousticOne$vocabulary,
1160+
data = ICESAcousticOne[tablesToMerge]
1161+
)
1162+
# Uniqueify since some columns (keys) are present in several tables:
1163+
vocabulary <- unique(vocabulary)
1164+
1165+
translateVariables(
1166+
data = ICESAcousticOne[tablesToMerge],
1167+
TranslationDefinition = "FunctionInput",
1168+
Translation = vocabulary,
1169+
translate.keys = TRUE
1170+
)
1171+
}
1172+
1173+
1174+
1175+
merged <- RstoxData::mergeDataTables(ICESAcousticOne[tablesToMerge], output.only.last = TRUE, all = TRUE)
1176+
1177+
# Add the echosounder_dataset:
1178+
merged <- cbind(
1179+
ICESAcousticOne$Survey,
1180+
merged,
1181+
ICESAcousticOne$Instrument,
1182+
ICESAcousticOne$Calibration,
1183+
ICESAcousticOne$DataAcquisition,
1184+
ICESAcousticOne$DataProcessing
1185+
)
1186+
1187+
1188+
# # Apply translations defined in the table 'vocabulary':
1189+
# if(length(ICESAcousticOne$vocabulary)) {
1190+
# vocabulary <- findVariablesMathcinigVocabulary(
1191+
# vocabulary = ICESAcousticOne$vocabulary,
1192+
# data = merged
1193+
# )
1194+
# # Uniqueify since some columns (keys) are present in several tables:
1195+
# vocabulary <- unique(vocabulary)
1196+
#
1197+
# translateVariables(
1198+
# data = merged,
1199+
# TranslationDefinition = "FunctionInput",
1200+
# Translation = vocabulary,
1201+
# translate.keys = TRUE
1202+
# )
1203+
# }
1204+
1205+
return(merged)
11461206
}
11471207

11481208

R/xsdUtils.R

+11-2
Original file line numberDiff line numberDiff line change
@@ -363,17 +363,26 @@ autodetectXml <- function(xmlFile, xsdObjects, verbose) {
363363
}
364364

365365
readCharZip <- function(x, ...) {
366+
366367
if(tolower(tools::file_ext(x)) == "zip") {
367368
file <- utils::unzip(zipfile = x, list = TRUE)[, "Name"]
368369
file <- file[!grepl("__MACOSX", file)]
369370
if(length(file) > 1) {
370371
stop("Input data can be zipped, but then each file must be zipped individually, so that each zipfile contains only one file (and this file must have the same name as the zip, excluding file extension).")
371372
}
372-
readChar(unz(x, file), ...)
373+
output <- readChar(unz(x, file), ...)
373374
}
374375
else {
375-
readChar(x, ...)
376+
output <- readChar(x, ...)
377+
}
378+
379+
# Make sure the output is a complete xml (ending with ">"):
380+
last <- utils::tail(gregexpr(">", output)[[1]], 1)
381+
if(is.finite(last)) {
382+
output <- substr(output, 1, last)
376383
}
384+
385+
return(output)
377386
}
378387

379388
checkFileNameInZip <- function(x) {

data-raw/prepUnits.R

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ StoxUnits <- rbind(StoxUnits, list("cardinality-TN", "cardinality", "TN", "10^12
4444
StoxUnits <- rbind(StoxUnits, list("area_number_density-N/nmi^2", "area_number_density", "N/nmi^2", "individuals/nmi^2", "individuals per square nautical mile", 1))
4545
StoxUnits <- rbind(StoxUnits, list("area_number_density-kN/nmi^2", "area_number_density", "kN/nmi^2", "10^3 individuals/nmi^2", "thousand individuals per square nautical mile", 1e3))
4646
StoxUnits <- rbind(StoxUnits, list("area_number_density-MN/nmi^2", "area_number_density", "MN/nmi^2", "10^6 individuals/nmi^2", "million individuals per square nautical mile", 1e6))
47+
StoxUnits <- rbind(StoxUnits, list("area_number_density-GN/nmi^2", "area_number_density", "GN/nmi^2", "10^9 individuals/nmi^2", "billion individuals per square nautical mile", 1e9))
4748

4849
StoxUnits <- rbind(StoxUnits, list("NASC-m^2/nmi^2", "NASC", "m^2/nmi^2", "m^2/nmi^2", "square meter backscattering cross-section per square nautical mile surveyed area", 1))
4950

0 commit comments

Comments
 (0)