Skip to content
Permalink
1fa166dfb7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (9 sloc) 487 Bytes
import src.data as data_class
import time
def main():
data = data_class.Data('files/combined-data.nc') # Instantiates data class passing dataset as attribute
data.create_data_arrays() # Creates necessary data arrays
data.parallel_process() # Runs the bootstrap method that performs all calculations
if __name__ == '__main__':
main() # Runs main function created above
print('Exiting successfully...')