Load and plot data from Nevada Geodetic Laboratory

knitr::opts_chunk$set(
  fig.width = 10, # Set default plot width (adjust as needed)
  fig.height = 8, # Set default plot height (adjust as needed)
  fig.align = "center" # Center align all plots
)


# knitr::opts_chunk$set(eval = FALSE)

Let us first load the gmwmx2 package.

library(gmwmx2)

Download all available stations from NGL

all_stations <- download_all_stations_ngl()
head(all_stations)

Download one station

data_1LSU <- download_station_ngl("1LSU")

Extract GNSS position time series of station

attributes(data_1LSU)
head(data_1LSU$df_position)

Extract equipment or software changes steps

head(data_1LSU$df_equipment_software_changes)

Extract earthquakes steps

head(data_1LSU$df_earthquakes)

Plot GNSS position time series

plot(data_1LSU)
plot(data_1LSU, component = "N")
plot(data_1LSU, component = "E")
plot(data_1LSU, component = "V")


Try the gmwmx2 package in your browser

Any scripts or data that you put into this service are public.

gmwmx2 documentation built on Aug. 21, 2025, 5:56 p.m.