fix/workaround: Segment Out of range float values are not JSON compli… #290
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Lié à #288 Internal Server Error segments
Il existe des valeurs INF et NaN dans la table segments, notamment à aux colonnes speed_at_start et speed_at_end
Je propose ce workaround en attendant de savoir quoi en faire
Globalement côté PostgreSQL et python il existe un standard (https://www.postgresql.org/docs/8.2/datatype-numeric.html && https://fr.wikipedia.org/wiki/IEEE_754) qui définit ces valeurs spéciales
Dans Python Pandas comem dans PostgreSQL ces valeurs sont considérées comme des float aux valeurs spéciales cependant côté JSON il n'y a pas d'équivalence
Il y a un peu trois choix:
Ou encore
Si je fais le workaround le risque c'est qu'on aura plus d'erreur 500 qu'on ne détecte plus ces valeurs qui seraient en base via des erreurs 500 et qu'on stocke des valeurs non valides sans les détecter
La 3ème solution revient à déléguer le choix de quoi en faire au frontend