Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Oct 30, 2022
1 parent 4ff3645 commit 131063f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xarray_sentinel/sentinel1.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,11 @@ def open_orbit_dataset(
if reference_system is not None:
attrs.update({"reference_system": reference_system})

azimuth_time: List[Any] = []
azimuth_times: List[Any] = []
positions: List[List[Any]] = [[], [], []]
velocities: List[List[Any]] = [[], [], []]
for orbit in orbits:
azimuth_time.append(orbit["time"])
azimuth_times.append(orbit["time"])
positions[0].append(orbit["position"]["x"])
positions[1].append(orbit["position"]["y"])
positions[2].append(orbit["position"]["z"])
Expand All @@ -401,7 +401,7 @@ def open_orbit_dataset(
)
reference_system = None

return make_orbit(azimuth_time, positions, velocities, attrs)
return make_orbit(azimuth_times, positions, velocities, attrs)


def open_dc_estimate_dataset(
Expand Down

0 comments on commit 131063f

Please sign in to comment.