Skip to content

Commit

Permalink
Change deprecated function call
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Oct 27, 2022
1 parent a3e68ba commit e042d94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/1.0/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ R_band = mean_march.rename_labels(dimension="bands", target=["R"])
G_band = mean_april.rename_labels(dimension="bands", target=["G"])
B_band = mean_may.rename_labels(dimension="bands", target=["B"])

RG = R_band.merge(G_band)
RGB = RG.merge(B_band)
RG = R_band.merge_cubes(G_band)
RGB = RG.merge_cubes(B_band)


# Last but not least, we add the process to save the result of the processing. There we define that
Expand Down

0 comments on commit e042d94

Please sign in to comment.