Results 349 comments of Maik Riechert

There is no issue accessing a countersignature (or other int-labelled parameters). The issue rather is that currently the protected header cannot be accessed as a buffer, but only decoded. The...

https://github.com/laurencelundblade/QCBOR/pull/117 wouldn't be needed for this since COSE bstr-wraps all relevant parts. I had a look at the struct t_cose_signature_sign in the dev branch. Some observations: Since countersignatures sign an...

I see. The file is 23MB which is typically too big for a web application, so depending on the use case you would have to downsample that (polygon simplification +...

Sorry, just realized this should probably go to the https://github.com/pypa/python-manylinux-demo repo, right?

I use this for my own library at the moment: ``` sh PYBINS=( "/opt/python/cp27-cp27m/bin" "/opt/python/cp27-cp27mu/bin" "/opt/python/cp33-cp33m/bin" "/opt/python/cp34-cp34m/bin" "/opt/python/cp35-cp35m/bin" ) # and later... for PYBIN in ${PYBINS[@]}; do # ... done...

http://reading-escience-centre.github.io/covjson-playground/ See the examples at the top right. This is how it currently looks like, but we can add different general visualization options on an as-need basis, so if there...

...Or first upload csv to the server, convert it there to CovJSON and transfer it back to the browser as a preview, and then have an netcdf-export button or something...

Why wouldn't you use GDAL's masks for that? They are of type byte and only specify that 0=no data and everything else is valid data. See http://trac.osgeo.org/gdal/wiki/rfc15_nodatabitmask This fits your...

Ok, I think you're right. The GDAL mask would only be usable for your purposes if there is no nodata value and instead an alpha band defined. But my concern...

@JaneSjs I'm aware of that, but it's not very useful when you want to upload 1 GB. For those cases you would implement custom uploading logic and it would be...