Skip to content

cryologger/glacier-velocity-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub GitHub release (latest by date) GitHub issues DOI

Cryologger - Glacier Velocity Tracker (GVT)

Note: This documentation is currently under development.

1.0 Introduction

Reliance on expensive and proprietary commercial data acquisition and telemetry systems can present a barrier to monitoring remote polar environments. The development of low-cost, open-source instrumentation can greatly reduce the cost of research in remote locations, improve the spatiotemporal resolution of collected data, and provide new ways to observe and monitor the cryosphere.

The Cryologger Glacier Velocity Tracker (GVT) is a novel Cryologger design configuration intended to collect high temporal resolution velocity measurements to assess glacier dynamics on daily timescales in the Canadian Arctic. The system is based on the Arduino electronics platform, and harnesses the u-blox ZED-F9P multi-frequency Global Navigation Satellite System (GNSS) receiver.

2.0 Methods

2.1 Design

The Cryologger GVT is based on the open-source Arduino platform (www.arduino.cc). Code is written using the Arduino Integrated Development Environment (IDE) and benefits from the availability of community-generated libraries.

The design of the Cryologger GVT takes into consideration several key principles, including cost effectiveness, power efficiency, modularity, ruggedness, and ease of use. It is comprised of off-the-shelf components that do not require specialized tools or training, making it accessible to researchers, citizen scientists, and hobbyists alike. These selected components are also resistant to harsh environmental conditions, ensuring year-round continuous cold-weather operation.

2.1.1 Bill of materials

The Cryologger GVT is built using almost exclusively using components from SparkFun, with a list of the main components shown below.

For a more detailed bill of materials, including requirements for power and mounting of a complete deployable system, please see ASSEMBLY.md.

Table 1. Components making up Cryologger GVT v2.2.1. Prices are listed in USD and are current as of December 2023. Taxes and shipping are not included. 1Denotes optional component.

Component Product Quantity Cost (USD)
PCB Custom Cryologger Printed Circuit Board 1 $5.00
Processor SparkFun MicroMod Artemis Processor 1 $14.95
Carrier Board SparkFun MicroMod Data Logging Carrier Board 1 $21.50
GNSS Receiver SparkFun GPS-RTK-SMA Breakout - ZED-F9P 1 $274.95
GNSS Antenna SparkFun GNSS Multi-Band L1/L2 Surveying Antenna (TNC) - TOP106 1 $133.95
Display SparkFun Qwiic OLED Display 1 $10.95
Qwiic Cable Flexible Qwiic Cable - 50mm 1 $1.05
GNSS Antenna Cable SparkFun Interface Cable - SMA Female to SMA Male (25cm) 1 $5.50
GNSS Antenna Cable SparkFun Interface Cable - SMA Male to TNC Male (300mm) 1 $10.95
Voltage Regulator Pololu 5V, 600mA Step-Down Voltage Regulator D36V6F5 1 $6.95
microSD Card SanDisk MAX Endurance 64 GB microSD 1 $15.99
Resistor 1 Mohms 1% MBB02070C1004FRP00 1 $0.29
Resistor 10Mohm 1% 50ppm MBB02070C1005FRP00 1 $0.32
Capacitor 0.1 uF K104K15X7RF53L2 1 $0.23
Power Connector PCB terminal block - MKDS 1,5/ 2-5,08 1715721 1 $1.46
Male Header SparkFun Break Away Headers - Straight 2 $3.10
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x2-Pin, Straight1 1 $0.39
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x4-Pin, Straight1 1 $0.53
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x6-Pin, Straight1 1 $0.66
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x9-Pin, Straight1 2 $0.85
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x10-Pin, Straight1 1 $0.46
Female Header Pololu 0.100" (2.54 mm) Female Header: 1x12-Pin, Straight1 1 $0.55
Standoff SparkFun Standoff - Nylon (4-40; 3/4"; 10 pack) 1 $4.50
Screw SparkFun Screw - Phillips Head (1/4", 4-40, 10 pack) 1 $1.60
Enclosure Hammond Manufacturing 1554Q2GYCL1 1 $27.78
Enclosure Inner Panel Hammond Manufacturing 1554QPL1 1 $9.00
Power Panel Mount Connector Bulgin1 1 $25.00
Power Cable Connector Bulgin1 1 $25.00
Total ~$600

2.1.2 Design Evolution

Carrier board In version 2.0, a carrier board was designed to simplify assembly and deployment. It provides 5.08 mm, 2-pin screw terminals for wiring the battery connection, and a resistor divider to measure battery voltage.

image

Figure 1. Open-source carrier board design.

2.1.3 Mock-up

The Cryologger GVT was originally intended to be installed in a small electronics enclosure that is mounted in a larger enclosure for deployment outdoors.

image

Figure 2. Open-source carrier board design.

2.2 Operation

When initially powered on, the Cryologger GVT will attempt to establish a GNSS fix and sychronize the real-time clock (RTC) of the MicroMod Artemis Processor for up to 5 minutes. Once the RTC is synchronized, the system will set an alarm to wake at the user-specified time and then enter a low-power deep sleep. Nominally, the system will wake daily and log data from the u-blox GNSS receiver to a microSD card for a period of 3 hours. There are three different logging modes available to the end end-user, which can be tailored to the data collection requirements and available power capacity.

Versions 2.2.1 and above of the Cryologger GVT are equipped with an OLED display. This display is used to provided detailed information to the end user about the status of the Cryologger at each stage of operation, including boot-up, initialization of components, acquisition of GNSS fix, and logging of data.

In addition to the OLED display messages, a series of LED blink patterns can also be used to indicate system operation and guide possible troubleshooting steps that should be attempted if any errors is encountered. A detailed table of the LED blink patterns can be found in the DEPLOYMENT.md documentation.

While the system is in deep sleep, a Watchdog Timer (WDT) will wake the system to check the program has not frozen every 10 seconds and perform a reset, if necessary. This helps to ensure the long-term reliability of the system.

2.3 Data Processing

Data is logged in u-blox's proprietary .ubx format. Log files can be converted to RINEX using RTKLIB or Emlid Studio and submitted to NRCan's Precise Point Positioning (PPP) tool: https://webapp.geod.nrcan.gc.ca/geod/tools-outils/ppp.php

For a more detailed guide on the processing of data, please see "PROCESSING.md.

3.0 Deployments

Between 2021 and 2023, a total of 28 Cryologger GVT deployments were made by several different academic institutions, including Carleton University, Univerity of Ottawa, and University of Waterloo (Canada), Carnegie Mellon University (United States), and University of Fribourg (Switzerland). These deployments were made on glaciers in several geographically distinct locations, including Canada, the United States and Kyrgyzstan. Two case studies of deployments made by the University of Ottawa and University of Waterloo on glaciers in the Yukon and Nunvaut, Canada are explored in more detail below.

Figure 3. Map of Cryologger GVT deployments made between 2021 and 2023.

3.1 Lowell Glacier, Yukon, Canada

Figure 4. Map of Cryologger GVT deployments made in 2021 on the Lowell Glacier, Yukon.

3.2 Belcher Glacier, Devon Island, Nunavut, Canada

Figure 5. Map of Cryologger GVT deployments made in 2021 on the Lowell Glacier, Yukon and Belcher Glacier, Devon Island, Nunavut.

  

Figure 6. Deployment of the "Belcher Lower" Cryologger GVT on the Belcher Glacier, Devon Island, Nunavut.

4.0 Results

Preliminary results from the 2021 deployments of Cryologger GVTs on Lowell Glacier, Kluane National Park, Yukon and Belcher Glacier, Devon Island, Nunavut are presented below.

4.1 Lowell Glacier, Yukon, Canada

The initial Cryologger GVTs deployments on Lowell Glacier were both successful, achieving continuous operation throughout the year.

Colleceted data that was PPP-processed revealed the GVTs deployed on Lowell Glacier were able to achieve daily position measurements with accuracies of <3 cm. Daily displacements ranged between 0.25 – 4.4 m d-1 and annual cumulative distances were between 200 – 700 m y-1. Both systems showed evidence of ongoing glacier surge cycles, and excitingly were also able to capture periods of marked glacier velocity correspondeding to local rainfall events and enhanced basal sliding.

Figure 7. Cumulative distance and daily displacement of Lowell Glacier, Yukon recorded between between 2021 and 2022.

4.2 Belcher Glacier, Devon Island, Nunavut, Canada

Cryologger GVT deployments made on Belcher Glacier were also able to achieve successful operation throughout the entire year. The data collected between 2021-2022 represents the first uninterrupted annual velocity record of the Belcher Glacier ever recorded.

PPP-processed data showed the GVTs deployed on Belcher Glacier were also able to achieve daily position measurements with accuracies of <3 cm. Daily displacements ranged between 0.18 – 0.45 m d-1 and annual cumulative distances were between 75 – 150 m y-1. These results are also in good agreement with velocities derived from synthetic-aperture radar (SAR) remote sensing data.

Figure 8. Cumulative distance and daily displacement of Belcher Glacier, Devon Island recorded between between 2021 and 2022.

5.0 Conclusions

Cryologger GVT deployments have demonstrated they are able to successfully achieve continuous year-round operation. Data processed with Precise Point Positioning techniques also reveals the systems are able to achieve daily position measurements with accuracies of <3 cm. These promising results demonstrate that open-source hardware and software can provide a reliable, and cost-effective alternative to commercially available equipment for use in glaciological monitoring.

Funding

This project is supported by:

     

Acknowledgements

This project would not have been possible without the designs, software and tutorials provided by the open-source community. A special thanks to the authors of and contributors to the SparkFun u-blox GNSS Arduino Library.

Repository Contents

  • /Documentation - Assembly, deployment and troubleshoting guides, as well as information of components used and associated costs.

  • /Hardware - KiCad PCB schematic and design files.

  • /Software - Arduino code and Python data analysis scripts.

License Information

Cryologger code, firmware, and software is licensed under the GNU General Public License v3.0 (https://www.gnu.org/licenses/gpl-3.0.en.html).

Cryologger hardware is licensed under CC BY-NC-SA 4.0

Cheers,

Adam Garbo

About

A low-cost, open-source glacier velocity measurement system intended for use with Precise Point Positioning (PPP) techniques.

Resources

License

Stars

Watchers

Forks

Packages

No packages published