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
By mistake, all attributes were created as numeric. QGIS allows to insert strings into numeric attributes, which remain valid and usable until you save them, then they are silently converted into numbers. As a consequence, when you consolidate the project, you lose the original strings.
We need to create attributes with proper types. Types might be read from the extracted data, checking the corresponding dtype.
The text was updated successfully, but these errors were encountered:
Although in many cases it is true that all fields are numeric, it is risky also in those cases to force the conversion of all values to float. I have to review all cases and read values considering the actual input data types.
By mistake, all attributes were created as numeric. QGIS allows to insert strings into numeric attributes, which remain valid and usable until you save them, then they are silently converted into numbers. As a consequence, when you consolidate the project, you lose the original strings.
We need to create attributes with proper types. Types might be read from the extracted data, checking the corresponding dtype.
The text was updated successfully, but these errors were encountered: