Fazlul Shahriar
Fazlul Shahriar
@lobre The "command string" is just the acme-lsp command line arguments. Acme-lsp should write to this file when it starts up. This will tell acme that it should save the...
Apologies for the late response. I've updated acme-lsp to use the latest auto-generated LSP protocol definitions from gopls. Can you please test csharp lsp server with acme-lsp from master branch...
What version of numpy are you using? It looks like it's looking for a .d file and then complains because it couldn't find any lines in it. Make sure you...
Seems like your python installation is broken. Are you able to build any other python packages that has a C extension? Note: you can also install pyhdf using conda, to...
I think you have the wrong file? That file indeed contains a float64 (`
[Var.ReadBytes](https://github.com/fhs/go-netcdf/blob/v1.2.1/netcdf/nc_char.go#L29) doesn't work? Maybe we need to wrap [nc_get_vara_string](https://www.unidata.ucar.edu/software/netcdf/docs/group__variables.html#ga64cd065d752a079867ba4fe93d7cc1e0)? PRs are welcome.
I think you need to create a `ReadStrings` methods that uses `C.nc_get_var_string`. ```Go func (v Var) ReadStrings(data []string) error ```
The file contains a raster image, not scientific data (SD). It doesn't look like pyhdf provides the raster image API from the C library. See https://support.hdfgroup.org/release4/examples/ug-examples.html#gr ``` $ unzip TRMM_LIS_SC.04.3_2015.001.zip...
numpy.record dtype is not yet supported. You can convert it to a normal array and save it: ``` df = pd.DataFrame({"i": [1, 2, 3],"j": [4, 5, 6],"k":[3.14, 2.72, 1.62]}) np.save("/tmp/temp.npy",...
The code above just writes the content of each file to stdout. I'm guessing you want a function that extracts all files in a directory. In that case, I'd rather...