-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently read_bufr does not offer control over missing values during the extraction and we have to filter the resulting Pandas dataframe to remove them.
Option 1
Add option missing_value_policy with the following values: "include", ignore" (default="include")
df = pdbufr.read_bufr(...., missing_value_policy="ignore")Option 2
Add option skip_missing as a bool (default=False)
df = pdbufr.read_bufr(...., skip_missing=True)Option 3
Add option skip_na_values as a bool (default=False)
df = pdbufr.read_bufr(...., skip_na_values=True)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request