Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Refactor unit test to be non-square (#6)
* 🐛 Fix array dimension order to be y (height), x (width) Classic mistake of getting the wrong order when mixing geographic xy with image yx. Corrected to use y (height), x (width) order, and updated unit test to be non-square so that this won't happen again. * ⏪ Dimensions in TIFF decoder and writer is actually width height Getting confused with the `tiff` crate using (width, height), while `ndarray` uses (height, width)... * 🍻 More height and width swapping Need to get my head straight on these ordering issues...
- Loading branch information