We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceaead2 commit f67ffabCopy full SHA for f67ffab
src/nsidc/iceflow/itrf/converter.py
@@ -2,6 +2,7 @@
2
3
import calendar
4
import datetime as dt
5
+from typing import cast
6
7
import pandas as pd
8
import pandera as pa
@@ -91,6 +92,7 @@ def transform_itrf(
91
92
transformed_chunks = []
93
for source_itrf, chunk in data.groupby(by="ITRF"):
94
# If the source ITRF is the same as the target for this chunk, skip transformation.
95
+ source_itrf = cast(str, source_itrf)
96
if source_itrf == target_itrf and target_epoch is None:
97
transformed_chunks.append(chunk)
98
continue
0 commit comments