Looking to create a database for QGIS where each point represents a tree (with name attribute) and another table of observations about each tree over time. Ideally I can update tree location in QGIS without breaking the relationship (sometimes they are inaccurate).
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
A simple way to go at this would be to add a time column to your observations. That way, a tree can have many rows of observations ( so long as the time and tree combinations are unique ). |
|||
|
|
|
Additionally, you might consider using a foreign key constraint on your observations table so that each observation correctly references an existing tree. For example in spatialite:
With a structure like this,
|
|||
|
|

