Skip to content
Permalink
master
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
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...')