Skip to content

Commit

Permalink
updated processAll to work with most recent GPRPy version
Browse files Browse the repository at this point in the history
  • Loading branch information
AlainPlattner committed Jul 16, 2019
1 parent b1c048f commit bd479aa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion exampleDataCube/processAll.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Automatically generated by GPRPy
import gprpy.gprpy as gp
mygpr = gp.gprpy2d()
mygpr = gp.gprpyProfile()

# Create folders for processed data
import os
if not os.path.isdir('Grid-dir1-Processed'):
os.makedirs('Grid-dir1-Processed')
if not os.path.isdir('Grid-dir2-Processed'):
os.makedirs('Grid-dir2-Processed')

# Create processing for single profile, then redo for all
import numpy as np
Expand Down

0 comments on commit bd479aa

Please sign in to comment.