[gdal-dev] /vsimem/ Driver CPLCreateUserFaultMapping Error in Docker

2021-01-09 Thread Alex Riggs
Hello, I am using the /vsimem/ driver to create a virtual netCDF from a bytes string in Python3. The process works fine when run from my host system but when I package it up in a Docker container I'm getting errors when trying to open the in memory file. The error stems from a call to `gdal.Open(

[gdal-dev] Open Python3 bytes using gdal's Python bindings

2020-12-10 Thread Alex Riggs
Hello all, First for some background. I have a service which receives protobuf messages, each message contains a bytes-encoded netcdf file. Currently, I write the netcdf to a temporary, on-disk file, which I then open with gdal.Open() to do some stuff to. Based on what I could discern, both the Op