mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
Random Mystecete
Added a random Mystecete type call (random tonals < 1kHz) to the simulator, which are vaguely humpback like sounds.
This commit is contained in:
parent
0d48118487
commit
407e9d9d08
23
src/simulatedAcquisition/sounds/RandomMystecete.java
Normal file
23
src/simulatedAcquisition/sounds/RandomMystecete.java
Normal file
@ -0,0 +1,23 @@
|
||||
package simulatedAcquisition.sounds;
|
||||
|
||||
public class RandomMystecete extends RandomQuadratics {
|
||||
|
||||
public RandomMystecete() {
|
||||
super();
|
||||
double slope[] = {-150, 150};
|
||||
double length[] = {.4, 1};
|
||||
double meanF[] = {200, 800};
|
||||
double meanCurve[] = {-300, 300};
|
||||
setCurveR(meanCurve);
|
||||
setLengthR(length);
|
||||
setMeanR(meanF);
|
||||
setSlopeR(slope);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Random baleen whale (humpbackish)";
|
||||
}
|
||||
|
||||
}
|
@ -35,6 +35,7 @@ public class SimSignals {
|
||||
simSignalList.add(new RandomWhistles());
|
||||
simSignalList.add(new BranchedChirp(5000, 12000, 8000, 3000, .6));
|
||||
simSignalList.add(new RightWhales());
|
||||
simSignalList.add(new RandomMystecete());
|
||||
simSignalList.add(new BlueWhaleD());
|
||||
simSignalList.add(new WhiteNoise());
|
||||
simSignalList.add(new PinkNoise());
|
||||
|
Loading…
Reference in New Issue
Block a user