Xavier Fischer
Xavier Fischer
> Hello, yeh we use a lot of Spatial data with SQL server (yes, we know we are a unicorn.) And part of us developer love to use Azure data...
Hi projectgoav, why not in a first step generate a token via https://developers.deezer.com/api/explorer, and prepare all the APIs to pass the access_token in the query string ? The token generation...
Hi ! The data is in Esri Ascii Grid format, well documented. (see [here](https://resources.arcgis.com/en/help/main/10.1/index.html#/Esri_ASCII_raster_format/009t0000000z000000/)) I have coded a reader here if you are interested : https://github.com/dem-net/DEM.Net/blob/46c8546117d51b3485912e9f1568587760dfa2c4/DEM.Net.Core/IO/Raster/AsciiGridFile.cs
Hi ! Yes I have removed netstandard and this is an issue. Will fix. Meanwhile you can try to edit the csproj and add "netstandard2.0" to the TargetFrameworks tag.
Didn't notice it was WinForms project. This project and any other are not viewers, only generators. Models can be generated as GlTF, STL. And can be viewed using online viewers...
I realized there might be a catch in the case above : sql operation cannot succeed if it is run before the other operations, as it uses column names the...
Had an idea around that: pg_query could be used to parse the raw_sql statements, such that we can detect whether schema has been changed by the operations or not (No...
FYI: there's a nice workaround. 1) create the table schema migration ```yaml # file table_migration.yaml operations: - add_column: table: users column: name: firstname type: VARCHAR(255) nullable: false unique: false pk:...
Thanks for the heads up @touste
Done, thanks for the heads up!