diff --git a/README.md b/README.md index d7a45b50..c03b2b86 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,7 @@ First time use with Docker on a server using a service account: * Create a .env file in `/opt/auv-python` with the following contents: `M3_VOL=` `AUVCTD_VOL=` + `LRAUV_VOL=` `CALIBRATION_VOL=` `WORK_VOL=/data` `HOST_NAME=` diff --git a/docker-compose.yml b/docker-compose.yml index ba03b37d..b6be567e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,4 +19,5 @@ services: - ${WORK_VOL}:/data - ${M3_VOL}:/Volumes/M3:z - ${AUVCTD_VOL}:/Volumes/AUVCTD:z + - ${LRAUV_VOL}:/Volumes/LRAUV:z - ${CALIBRATION_VOL}:/Volumes/DMO:z diff --git a/src/data/calibrate.py b/src/data/calibrate.py index 36c472b1..85b6a16d 100755 --- a/src/data/calibrate.py +++ b/src/data/calibrate.py @@ -1724,7 +1724,7 @@ def _nudge_pos(self, max_sec_diff_at_end=10): lon_fix = self.combined_nc["gps_longitude"] lat_fix = self.combined_nc["gps_latitude"] - # Use the shared function from AUV module + # Use the shared function from utils lon_nudged, lat_nudged, segment_count, segment_minsum = nudge_positions( nav_longitude=lon, nav_latitude=lat,