mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
Bug fix to Group localiser in offline mode
The group localiser was not loading hydrophone data
This commit is contained in:
parent
ea0be6ae9c
commit
e8777ed6db
@ -4,7 +4,7 @@
|
||||
<groupId>org.pamguard</groupId>
|
||||
<artifactId>Pamguard</artifactId>
|
||||
<name>Pamguard</name>
|
||||
<version>2.02.11a</version>
|
||||
<version>2.02.11b</version>
|
||||
<description>Pamguard using Maven to control dependencies</description>
|
||||
<url>www.pamguard.org</url>
|
||||
<organization>
|
||||
|
12
pom.xml
12
pom.xml
@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.pamguard</groupId>
|
||||
<artifactId>Pamguard</artifactId>
|
||||
<version>2.02.11a</version>
|
||||
<version>2.02.11b</version>
|
||||
<name>Pamguard</name>
|
||||
<description>Pamguard using Maven to control dependencies</description>
|
||||
<url>www.pamguard.org</url>
|
||||
@ -22,7 +22,6 @@
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
|
||||
<!-- Define where the source and test directories are -->
|
||||
<sourceDirectory>${basedir}/src</sourceDirectory>
|
||||
<testSourceDirectory>${basedir}/src/test</testSourceDirectory> <!-- where the Unit tets are located -->
|
||||
@ -772,9 +771,12 @@
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
<!-- not in Maven repository
|
||||
you may need to copy files from your downloaded PAMGuard source code, e.g. C:\Users\*yourreposfolder*\source\repos\PAMGuardPAMGuard\repo\pamguard\org\x3\2.2.2 to
|
||||
C:\Users\*yourusername*\.m2\repository\pamguard\org\x3\2.2.2-->
|
||||
<!--
|
||||
X3 library for decompressing sud files. Not in Maven repository
|
||||
you may need to copy files from your downloaded PAMGuard source code,
|
||||
e.g. C:\Users\*yourreposfolder*\source\repos\PAMGuardPAMGuard\repo\pamguard\org\x3\2.2.2 to
|
||||
C:\Users\*yourusername*\.m2\repository\pamguard\org\x3\2.2.2
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>pamguard.org</groupId>
|
||||
<artifactId>x3</artifactId>
|
||||
|
@ -31,7 +31,7 @@ public class PamguardVersionInfo {
|
||||
* Version number, major version.minorversion.sub-release.
|
||||
* Note: can't go higher than sub-release 'f'
|
||||
*/
|
||||
static public final String version = "2.02.11";
|
||||
static public final String version = "2.02.11b";
|
||||
|
||||
/**
|
||||
* Release date
|
||||
|
@ -2,6 +2,7 @@ package group3dlocaliser.offline;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import Array.ArrayManager;
|
||||
import PamController.PamController;
|
||||
import PamguardMVC.PamDataBlock;
|
||||
import PamguardMVC.PamDataUnit;
|
||||
@ -30,6 +31,7 @@ public class Group3DOfflineTask extends OfflineTask<PamDataUnit>{
|
||||
if (parentData != null) {
|
||||
this.addRequiredDataBlock(parentData);
|
||||
}
|
||||
this.addRequiredDataBlock(ArrayManager.getArrayManager().getHydrophoneDataBlock());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user