Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pydda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from . import constraints
from . import io

__version__ = "2.4.0"
__version__ = "2.4.1"

print("Welcome to PyDDA %s" % __version__)
print("If you are using PyDDA in your publications, please cite:")
Expand Down
14 changes: 10 additions & 4 deletions pydda/retrieval/wind_retrieve.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,17 +748,20 @@ def loss_and_gradient(x):

u_field = {}
u_field["standard_name"] = "u_wind"
u_field["long_name"] = "meridional component of wind velocity"
u_field["long_name"] = "zonal component of wind velocity"
u_field["units"] = "m/s"
u_field["min_bca"] = min_bca
u_field["max_bca"] = max_bca
v_field = {}
v_field["standard_name"] = "v_wind"
v_field["long_name"] = "zonal component of wind velocity"
v_field["long_name"] = "meridional component of wind velocity"
v_field["units"] = "m/s"
v_field["min_bca"] = min_bca
v_field["max_bca"] = max_bca
w_field = {}
w_field["standard_name"] = "w_wind"
w_field["long_name"] = "vertical component of wind velocity"
w_field["units"] = "m/s"
w_field["min_bca"] = min_bca
w_field["max_bca"] = max_bca

Expand Down Expand Up @@ -1270,17 +1273,20 @@ def _get_dd_wind_field_tensorflow(

u_field = {}
u_field["standard_name"] = "u_wind"
u_field["long_name"] = "meridional component of wind velocity"
u_field["long_name"] = "zonal component of wind velocity"
u_field["units"] = "m/s"
u_field["min_bca"] = min_bca
u_field["max_bca"] = max_bca
v_field = {}
v_field["standard_name"] = "v_wind"
v_field["long_name"] = "zonal component of wind velocity"
v_field["long_name"] = "meridional component of wind velocity"
v_field["units"] = "m/s"
v_field["min_bca"] = min_bca
v_field["max_bca"] = max_bca
w_field = {}
w_field["standard_name"] = "w_wind"
w_field["long_name"] = "vertical component of wind velocity"
w_field["units"] = "m/s"
w_field["min_bca"] = min_bca
w_field["max_bca"] = max_bca

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
PLATFORMS = "Linux, Windows, OSX"
MAJOR = 2
MINOR = 4
MICRO = 0
MICRO = 1

# SCRIPTS = glob.glob('scripts/*')
# TEST_SUITE = 'nose.collector'
Expand Down
Loading