Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

actual_block_size not available for GDAL >= 3 #94

Closed
ChristianBeilschmidt opened this issue Sep 28, 2020 · 1 comment
Closed

actual_block_size not available for GDAL >= 3 #94

ChristianBeilschmidt opened this issue Sep 28, 2020 · 1 comment

Comments

@ChristianBeilschmidt
Copy link
Contributor

ChristianBeilschmidt commented Sep 28, 2020

At #92, there is a change to

    /// Get actual block size (at the edges) when block size
    /// does not divide band size.
    #[cfg(all(major_ge_2, minor_ge_2))]
    pub fn actual_block_size(&self, offset: (isize, isize)) -> Result<(usize, usize)> {
        let mut block_size_x = 0;
        let mut block_size_y = 0;

This means the function is gone at GDAL 3.0 or 3.1? I guess this can be fixed easily.

@jdroenner
Copy link
Member

fixed in #95

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants