Coder Social home page Coder Social logo

Comments (4)

giswqs avatar giswqs commented on July 4, 2024

This is likely an issue with the GeoTIFF you are using. Try it with the test dataset below. If it work but not your own data, that means your GeoTIFF is not supported by whitebox. Try using a GeoTIFF without compression

https://github.com/opengeos/whitebox-python/tree/master/examples/testdata

from whitebox-python.

jblindsay avatar jblindsay commented on July 4, 2024

I don't think that it can be an unsupported GeoTIFF format issue Qiusheng. Whitebox is issuing an 'No such file or directory (os error 2)' error, so it's more likely a matter of the file is not where it's looking for it. Are you quite certain that filldepression.tif is located in /home/username/interim_dir/tests?

from whitebox-python.

giswqs avatar giswqs commented on July 4, 2024

@jblindsay You are right. It seems a filepath issue. @forestbat Try using the absolute filepath as the input.

from whitebox-python.

forestbat avatar forestbat commented on July 4, 2024

@jblindsay @giswqs

I downloaded testdata(DEM.tif) and run my code, it's correct. And it looks like my tiff file is wrong.

My dem file is merged by rasterio:

file_paths = glob.glob('/ftproot/dems/*.hgt', recursive=True)
datasets = [rasterio.open(file_path) for file_path in file_paths]
out_img, out_transform = merge(datasets)
with rasterio.open('merged_hjlm.tif', 'w', width=out_img.shape[2], height=out_img.shape[1],
                           count=1, crs='EPSG:4326', transform=out_transform, dtype='int16', nodata=-32768, compress='lzw') as dest:
        dest.write(out_img)

No I will try wbt.mosaic to merge them.

from whitebox-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.