Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REAL datatypes from GeoPackages are implemented like INTEGERS in the attribute form #835

Open
webrian opened this issue Oct 19, 2023 · 1 comment
Labels

Comments

@webrian
Copy link
Contributor

webrian commented Oct 19, 2023

The following field definition from an INTERLIS model

Hoehe : 0.1 .. 999.9 [INTERLIS.m];

is implemented from GeoPackages in the attribute form as follows. The implementation is similar to an integer value:

  • Step: 1
  • Precision: 0

image002

whereas the implementation from a PostGIS database seems to be correct:

  • Step: 0.1
  • Precision: 1

image004

@signedav
Copy link
Member

I can reproduce that. We read the minimum maximum and store it accordingly (the precision is apparently set by them). We receive back the correct values back from the DB request, but it does not not write it correct to the settings. This needs more investigation.

@signedav signedav added the bug label Oct 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants