mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-22 07:02:29 +00:00
R2.02.09d
Fix matched template classifier import fix azigram help file image display
This commit is contained in:
parent
acc806d375
commit
840e6c89a1
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.pamguard</groupId>
|
<groupId>org.pamguard</groupId>
|
||||||
<artifactId>Pamguard</artifactId>
|
<artifactId>Pamguard</artifactId>
|
||||||
<version>2.02.09c</version>
|
<version>2.02.09d</version>
|
||||||
<name>Pamguard Java12+</name>
|
<name>Pamguard Java12+</name>
|
||||||
<description>Pamguard for Java 12+, using Maven to control dependcies</description>
|
<description>Pamguard for Java 12+, using Maven to control dependcies</description>
|
||||||
<url>www.pamguard.org</url>
|
<url>www.pamguard.org</url>
|
||||||
|
@ -89,7 +89,8 @@ public class TxtFileUtils {
|
|||||||
//5/08/2022 - there was a bug here where there is some sort of invisible character that does not appear on the
|
//5/08/2022 - there was a bug here where there is some sort of invisible character that does not appear on the
|
||||||
//print screen - the only way you can tell is the char array is greater than the number of digits - removed all non numeric
|
//print screen - the only way you can tell is the char array is greater than the number of digits - removed all non numeric
|
||||||
//characters.
|
//characters.
|
||||||
String number = new String(recordsOnLine[i].strip().replaceAll("[^\\d.]", ""));
|
// updated again on 15/11/23 to include - signs, or you end up with the abs(of every number!)
|
||||||
|
String number = new String(recordsOnLine[i].strip().replaceAll("[^\\d.-]", ""));
|
||||||
dat = Double.valueOf(number);
|
dat = Double.valueOf(number);
|
||||||
//dat = DecimalFormat.getNumberInstance().parse(new String(recordsOnLine[i].strip().toCharArray())).doubleValue();
|
//dat = DecimalFormat.getNumberInstance().parse(new String(recordsOnLine[i].strip().toCharArray())).doubleValue();
|
||||||
}
|
}
|
||||||
|
@ -36,11 +36,11 @@ The Azigram plugin is version 0.0.1 and has been tested on Pamguard version 2.01
|
|||||||
|
|
||||||
<p>The sample rate of the Azigram output can be chosen from the Output panel of the settings. The plugin uses frequency domain downsampling in order to acheive the selected sample rate. When selecting the output sample rate, the output FFT length and FFT hop will be altered in order to maintain the same time and frequency resolution as the upstream FFT module.</p>
|
<p>The sample rate of the Azigram output can be chosen from the Output panel of the settings. The plugin uses frequency domain downsampling in order to acheive the selected sample rate. When selecting the output sample rate, the output FFT length and FFT hop will be altered in order to maintain the same time and frequency resolution as the upstream FFT module.</p>
|
||||||
|
|
||||||
<p><img src="AzigramSettings.png" /></p>
|
<p><img src="./images/AzigramSettings.png" /></p>
|
||||||
|
|
||||||
<p>The Azigram can be viewed on a Spectrogram Display. The HSV colour model is recommended for viewing Azigrams. This colour model is circular so will better illustrate the circular nature of the angular data (e.g. sounds from 359 degrees will be similar in colour to sounds from 1 degree). The limits of the Amplitude Range on the "Scales" tab of the "Spectrogram Parameters" should be manually set to Min 0 and Max 360. While this tab suggests that the Min and Max are in dB, the Azigram module will treat these values as degrees if an Azigram is being displayed.</p>
|
<p>The Azigram can be viewed on a Spectrogram Display. The HSV colour model is recommended for viewing Azigrams. This colour model is circular so will better illustrate the circular nature of the angular data (e.g. sounds from 359 degrees will be similar in colour to sounds from 1 degree). The limits of the Amplitude Range on the "Scales" tab of the "Spectrogram Parameters" should be manually set to Min 0 and Max 360. While this tab suggests that the Min and Max are in dB, the Azigram module will treat these values as degrees if an Azigram is being displayed.</p>
|
||||||
|
|
||||||
<p><img src="AzigramDisplay.png" /></p>
|
<p><img src="./images/AzigramDisplay.png" /></p>
|
||||||
|
|
||||||
<p> </p>
|
<p> </p>
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ The Azigram plugin is version 0.0.1 and has been tested on Pamguard version 2.01
|
|||||||
|
|
||||||
<p>The screenshot below shows the DIFAR Azigram Module displaying the Azigram output (top graph) and regular spectrogram ouput (middle panel) of a synthetic test signal. The test signal is a simulated DIFAR source with 8 short FM downsweeps arriving from 0-315 degrees in 45 degree increments. The bottom panel shows the PAMGuard Data Model.</p>
|
<p>The screenshot below shows the DIFAR Azigram Module displaying the Azigram output (top graph) and regular spectrogram ouput (middle panel) of a synthetic test signal. The test signal is a simulated DIFAR source with 8 short FM downsweeps arriving from 0-315 degrees in 45 degree increments. The bottom panel shows the PAMGuard Data Model.</p>
|
||||||
|
|
||||||
<p><img src="AzigramExample.png" /></p>
|
<p><img src="./images/AzigramExample.png" /></p>
|
||||||
|
|
||||||
<p> </p>
|
<p> </p>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user