Erlend Hårstad

Results 19 comments of Erlend Hårstad

Closing due to inactivity, feel free to reopen

Hi, The reason for your error is that `da.from_array` expects a numpy ndarray, while you supply it a [segyio.RawTrace](https://segyio.readthedocs.io/en/latest/segyio.html#segyio.trace.RawTrace). Trace and RawTrace doesn't read any traces from disk until you...

I'm gonna close this one now. Feel free to reopen if you still have troubles

Hi, Segyio requires a regular cube in order to infer geometry. You can tell `segyio.open` to ignore any geometry. Have a look here: https://segyio.readthedocs.io/en/latest/segyio.html#segyio.open https://github.com/equinor/segyio#runtimeerror-unable-to-find-sorting

Closing due to inactivity, feel tree to reopen

Hi, By default segyio tries to infer cube geometry from the trace headers. In your case it's not regular (the dimensions doesn't add up). You would have to explicitly set...

Hi, The root cause lies in adlfs, this patch addresses it https://github.com/fsspec/adlfs/pull/350

It seams like [this](https://github.com/Azure/azure-sdk-for-go/blob/aeb29e7e803cb6ccd4d40145577813689a376545/sdk/storage/azblob/sas/service.go#L186) stringToSign doesn't correspond with the user delegation signing defined [here](https://learn.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas). The link in the comment also refers to[ Create a service SAS](https://learn.microsoft.com/en-us/rest/api/storageservices/create-service-sas?redirectedfrom=MSDN) not to [Create user...

It's also worth noting that [SignWithUserDelegation()](https://github.com/Azure/azure-sdk-for-go/blob/aeb29e7e803cb6ccd4d40145577813689a376545/sdk/storage/azblob/sas/service.go#L138), doesn't take the sas version into account. This is also a problem when signing with a shared key ([SignWithSharedKey()](https://github.com/Azure/azure-sdk-for-go/blob/aeb29e7e803cb6ccd4d40145577813689a376545/sdk/storage/azblob/sas/service.go#L51)), but that is already pointed...

I can get it to work if explicitly add the version like so: ``` values, err := sas.BlobSignatureValues{ Version: "2021-06-08", // Using the default, or any other value than "2021-06-08"...