Optimize NVSPL file reading#93
Open
arpitjain099 wants to merge 1 commit into
Open
Conversation
…columns Signed-off-by: arpitjain099 <arpitjain099@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses the TODO at models.py line 185 about speed and memory improvements for NVSPL parsing.
Three changes in Nvspl._read():
The float32 coercion on line 172 was silently discarded. The pandas astype() method returns a new DataFrame but the result was never assigned back, so the conversion never took effect. Fixed by assigning the result.
Added a dtype dict so numeric columns are read as float32 from the start instead of the default float64. For a typical multi-month deployment reading thousands of hourly NVSPL files (each 3600 rows x 54 columns), this cuts memory usage on numeric data roughly in half.
Drops columns that are consistently empty in standard NVSPL output (INVID, INSID, GChar2, AdjustmentsApplied, CalibrationAdjustment, GPSTimeAdjustment). Downstream code only accesses the octave bands, broadband levels, and the datetime index, so these empty columns just waste memory.