Open
Conversation
- Added a ncmetadata.yaml file for automated netcdf file generation - Added dict_toxray function in netcdfio for automated conversion to xray.Dataset
- Added unstructured grid reordering routine into ugridgen tools. - Fixed problem in sunboundary for handling large datasets.
…oblems in very large grids.
…ic_fit function in timeseries
…nd debugged imports in getNOAAWeatherStation.py
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.
Matt,
I found the previous ROMSslice class was not very straightforward, so I modified it a little bit. Once you do this, everyone can make a slice time series with a function input rather than modified the tstep in object.
'object'= ROMSslice(filename,np.linspace(123.2,121.95,50),np.linspace(-15.5,-14.1,50))
temp_slice = 'object'('zeta',range(0,10)) ;
Note there is also a bug fix(could you please check whether this is right?)
data[tt,:,:] = self.F(dataslice[tt,:,:].ravel())
data[:,kk,:] = self.F(dataslice[kk,:,:].ravel())
Maybe you can merge this into your branch.
def call(self,varname,tstep=None):
# Load the data
numstep = len(self.time)
Nt = len(self.tstep)