You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the DRs (mainly from bioCollect) are missing imageID/imageIDs/multimedia field in the occurrence while there are records with multimedia in the index.avro for that DR in the new index:
The problem was identified as the change that returns an older requirement that the DwCA multimedia.csv have a valid and populated format field. e.g. image/jpeg.
The inferred requirements are
biocollect DwCA export to populate this field.
pipelines change that will assign media without a format value to images. See pipelines IndexRecordTransform.java
if (image.getFormat() != null) {
if (image.getFormat().startsWith("image")) {
multimedia.add(IMAGE);
images.add(image.getIdentifier());
}
if (image.getFormat().startsWith("audio")) {
multimedia.add(SOUND);
sounds.add(image.getIdentifier());
}
if (image.getFormat().startsWith("video")) {
multimedia.add(VIDEO);
videos.add(image.getIdentifier());
}
}
There is a partially related issue where the images export will be somehow merged and/or joined with the DwCA media file.
Some of the DRs (mainly from bioCollect) are missing
imageID/imageIDs/multimedia
field in the occurrence while there are records with multimedia in theindex.avro
for that DR in the new index:While same DR in the current index has
11,907
occurrences with images: https://biocache.ala.org.au/occurrences/search?q=dataResourceUid%3Adr17465&qualityProfile=ALA&qc=-_nest_parent_%3A*&fq=multimedia%3A%22Image%22The text was updated successfully, but these errors were encountered: