Ethan Grahn
Ethan Grahn
@MrChuckomo this issue can be closed out. It was resolved in [this commit](https://github.com/MrChuckomo/poddycast/commit/b46de6db26c0f00580f173ee96b6a9c8ce615c56) as part of #77.
@MrChuckomo this issue can be closed out. It was resolved by #77. In the future we can remove the [old settings function](https://github.com/MrChuckomo/poddycast/blob/8c1a8b06769ed26b3f7c534306610536d55e3684/app/js/helper/helper_global.js#L294). (currently marked as deprecated)
The response of `{"type":"FeatureCollection"}` is an issue with how the API is assembling the response. I would expect it to return something like this for an empty result. ```json {...
I've updated the NLDI to output my previous example for empty results. This seems to introduce a different set of errors. It may be an issue with my tests because...
This raises another question on my end. Would it be better for the end user to receive this empty collection, or be returned a 404 instead? As a comparison, searching...
Depending on the complexity/quantity of the data you want to use. Having a [SQLite ](https://github.com/TryGhost/node-sqlite3) database file instead of JSON serializing everything could make it a lot easier to query...
I have a fork of this project that's upgraded to Godot 4. https://github.com/EthanGrahn/godot-localization-editor
This should be as easy as using [`set_http(s)_proxy`](https://docs.godotengine.org/en/stable/classes/class_httprequest.html#class-httprequest-method-set-http-proxy) in the custom HTTPClient code here. https://github.com/MakovWait/godots/blob/c1520618df7c4a5a69331925af330b3b0dc58cde/src/http_client.gd#L5 Of course options will also need to be added to the settings and they will...
There are annotations like [this](https://github.com/internetofwater/nldi-services/blob/master/src/main/java/gov/usgs/owi/nldi/controllers/LookupController.java#L51) that Swagger provides to generate the docs. I can start creating better documentation to indicate this for future developers. We should also create a list...
Taking a look at the PostGIS documentation, it doesn't seem we can set the precision at a database level. However, we have lines like [this](https://github.com/internetofwater/nldi-services/blob/master/src/main/resources/mybatis/lookup.xml#L17) in the service code that...