@@ -101,14 +101,15 @@ from nsidc.iceflow import make_iceflow_parquet
101101parquet_path = make_iceflow_parquet(
102102 data_dir=Path("/path/to/data/dir/"),
103103 target_itrf="ITRF2014",
104+ ilvis2_coordinate_set="low_mode",
104105)
105106df = dd.read_parquet(parquet_path)
106107```
107108
108109Note that ` make_iceflow_parquet ` creates a parquet datastore for the data in the
109110provided ` data_dir ` with the data transformed into a common
110- [ ITRF] ( https://itrf.ign.fr/ ) to facilitate analysis. Only datetime, lat, lon ,
111- and elevation fields are preserved in the parquet datastore.
111+ [ ITRF] ( https://itrf.ign.fr/ ) to facilitate analysis. Only datetime, latitude ,
112+ longitude, elevation, and dataset fields are preserved in the parquet datastore.
112113
113114To access and analyze the full data record in the source files, use
114115[ ` read_iceflow_datafiles ` ] ( nsidc.iceflow.read_iceflow_datafiles ) :
@@ -117,7 +118,10 @@ To access and analyze the full data record in the source files, use
117118from nsidc.iceflow import read_iceflow_datafiles
118119
119120# Read all of the data in the source files - not just lat/lon/elev.
120- df = read_iceflow_datafiles(downloaded_files)
121+ df = read_iceflow_datafiles(
122+ downloaded_files,
123+ ilvis2_coordinate_set="low_mode",
124+ )
121125
122126# Optional: transform lat/lon/elev to common ITRF:
123127from nsidc.iceflow import transform_itrf
@@ -130,3 +134,12 @@ df = transform_itrf(
130134Note that ` read_iceflow_datafiles ` reads all of the data from the given
131135filepaths. This could be a large amount of data, and could cause your program to
132136crash if physical memory limits are exceeded.
137+
138+ #### Special considerations for ILVIS2 data
139+
140+ Users of ILVIS2 data should be aware that ILVIS2 data contains multiple sets of
141+ lat/lon/elev that may be of interest. By default, the ` low_mode ` set is used as
142+ the primary set of latitude/longitude/elevation used by ` iceflow ` .
143+
144+ See [ ILVIS2 data] ( ./altimetry-data-overview.md#ilvis2-data ) for more
145+ information.
0 commit comments