Skip to content

Commit

Permalink
Discard zero lat lon after normalization to ensure the lat lon fields…
Browse files Browse the repository at this point in the history
… are present
  • Loading branch information
rdgfuentes committed Aug 5, 2024
1 parent 307872f commit 97c639a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def __init__(self, options):
date_range=(self.start_date, self.end_date),
labels=self.labels,
)
| "Discard Zero Lat and Lon" >> DiscardZeroLatLon()
| "Normalize" >> FeedNormalizationFactory.get_normalization(feed=self.feed)
| "Discard Zero Lat and Lon" >> DiscardZeroLatLon()
| "Deduplicate" >> DeduplicateMsgs()
| PickOutputFields(fields=[f"{field}" for field in self.output_fields])
| "Write Sink"
Expand Down

0 comments on commit 97c639a

Please sign in to comment.