Skip to content
Snippets Groups Projects
Commit 62028399 authored by tomrink's avatar tomrink
Browse files

user specified flight level...bug fix

parent a1294ee5
No related branches found
No related tags found
No related merge requests found
...@@ -372,7 +372,7 @@ class IcingIntensityNN: ...@@ -372,7 +372,7 @@ class IcingIntensityNN:
# TODO: altitude data will be specified by user at run-time # TODO: altitude data will be specified by user at run-time
nda = np.zeros([nd_idxs.size]) nda = np.zeros([nd_idxs.size])
nda = self.flight_level nda[:] = self.flight_level
nda = tf.one_hot(nda, 5).numpy() nda = tf.one_hot(nda, 5).numpy()
return data, nda return data, nda
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment