Skip to content

Commit

Permalink
Merge pull request #1431 from dwcaress/caress-tmp
Browse files Browse the repository at this point in the history
Mbphotomosaic
  • Loading branch information
dwcaress authored Feb 8, 2024
2 parents e71f19e + 019d8cd commit a28c4e2
Show file tree
Hide file tree
Showing 4 changed files with 287 additions and 36 deletions.
9 changes: 8 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
txt---
## MB-System ChangeLog File:

This file lists changes to the source code of the MB-System open
Expand All @@ -23,11 +23,18 @@ or beta, are equally accessible as tarballs through the Github interface.
### MB-System Version 5.8 Releases and Release Notes:
---

- Version 5.8.1beta02 February 7, 2024
- Version 5.8.1beta01 February 1, 2024
- **Version 5.8.0 January 22, 2024**

---

#### 5.8.1beta02 (February 7, 2024)

Mbphotomosaic: Added options to detect and correct dark images (for when strobe lights
partially drop out), to ignore dark images, and to allow image prioritization on
the basis of camera heading.

#### 5.8.1beta01 (February 1, 2024)

Mbpreprocess: Now checks for successive pings/scans with the same timestamp, and
Expand Down
4 changes: 2 additions & 2 deletions src/mbio/mb_define.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
#include <stdint.h>

/* Define version and date for this release */
#define MB_VERSION "5.8.1beta01"
#define MB_VERSION_DATE "1 February 2024"
#define MB_VERSION "5.8.1beta02"
#define MB_VERSION_DATE "7 February 2024"

/* CMake supports current OS's and so there is only one form of RPC and XDR and no mb_config.h file */
#ifdef CMAKE_BUILD_SYSTEM
Expand Down
6 changes: 5 additions & 1 deletion src/mbio/mb_read_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,12 @@ int mb_read_init_altnav(int verbose, char *file, int format, int pings,
beams_bath, beams_amp, pixels_ss, error);

/* if possible load the alternative navigation */
if (status == MB_SUCCESS && *error == MB_ERROR_NO_ERROR && astatus == MB_ALTNAV_USE) {
if (status == MB_SUCCESS && *error == MB_ERROR_NO_ERROR) {
mb_io_ptr = (struct mb_io_struct *) *mbio_ptr;
}

/* if possible load the alternative navigation */
if (status == MB_SUCCESS && *error == MB_ERROR_NO_ERROR && astatus == MB_ALTNAV_USE) {
//fprintf(stderr, "%s:%d:%s: Loading apath: %s\n", __FILE__, __LINE__, __FUNCTION__, apath);

mb_io_ptr->alternative_navigation = false;
Expand Down
Loading

0 comments on commit a28c4e2

Please sign in to comment.