Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
* Added CDAWeb methods that can use cdasws to get the remote file list
* Bug Fixes
* Updated CDAWeb routines to allow for data stored by year/day-of-year
* Updated GOLD nmax to sort scans by time.
* Documentation
* Added TIMED-GUVI platform
* Added missing sub-module imports
* Enhancements
* Updated platform methods to follow a consistent style and work with the
Expand Down
1 change: 1 addition & 0 deletions pysatNASA/instruments/ses14_gold.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def load(fnames, tag='', inst_id=''):
# Add time coordinate from scan_start_time
data['time'] = [dt.datetime.strptime(str(val), "b'%Y-%m-%dT%H:%M:%SZ'")
for val in data['scan_start_time'].values]
data = data.sortby('time')

# Update coordinates with dimensional data
data = data.assign_coords({'nlats': data['nlats'],
Expand Down