Skip to content

Commit

Permalink
Merge pull request #154 from pysat/bug/gold
Browse files Browse the repository at this point in the history
BUG: GOLD
  • Loading branch information
jklenzing committed Apr 3, 2023
2 parents 210a2fa + 6f38c61 commit cd01061
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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

0 comments on commit cd01061

Please sign in to comment.