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.
dataset
1 parent 702868d commit 68044bfCopy full SHA for 68044bf
src/nsidc/iceflow/data/models.py
@@ -17,7 +17,10 @@ class CommonDataColumnsSchema(pa.DataFrameModel):
17
latitude: Series[float] = pa.Field(coerce=True)
18
longitude: Series[float] = pa.Field(coerce=True)
19
elevation: Series[float] = pa.Field(coerce=True)
20
- dataset: str
+ # In practice, "dataset" is always available to provide provenance on where
21
+ # each point comes from, but we mark it as optional here because it is not
22
+ # strictly necessary for e.g., ITRF transformations.
23
+ dataset: str | None
24
25
26
class ATM1BSchema(CommonDataColumnsSchema):
0 commit comments