You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a data ingestion routine that could operate via a post request on the API. Only authenticated users should post data, so this would require the addition of a user authentication method.
The program could look like this:
Check that a netcdf was uploaded with the request.
Get band interpretations, source, and variable from the api post data json
Use NetCDF4 python bindings and gdal python bindings to extract the netcdf to a numpy array and then to a gdal raster
Use gdal_merge to combine bands
Execute standard ingest procedures to add database table and records in the database.
The text was updated successfully, but these errors were encountered:
All data ingestion is currently done manually.
Add a data ingestion routine that could operate via a post request on the API. Only authenticated users should post data, so this would require the addition of a user authentication method.
The program could look like this:
The text was updated successfully, but these errors were encountered: