stvds_views.sql 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --#############################################################################
  2. -- This SQL script generates the space time vector dataset view.
  3. --
  4. -- Author: Soeren Gebbert soerengebbert <at> googlemail <dot> com
  5. --#############################################################################
  6. -- Create the views to access all columns for absolute or relative time
  7. CREATE VIEW stvds_view_abs_time AS SELECT
  8. A1.id, A1.name, A1.mapset, A1.temporal_type,
  9. A1.semantic_type,
  10. A1.creation_time, A1.modification_time,
  11. A1.creator,
  12. A2.start_time, A2.end_time,
  13. A2.granularity,
  14. A3.north, A3.south, A3.east, A3.west, A3.bottom, A3.top, A3.proj,
  15. A4.vector_register,
  16. A4.number_of_maps,
  17. A4.title, A4.description, A4.command, A4.points, A4.lines,
  18. A4.boundaries, A4.centroids, A4.faces, A4.kernels,
  19. A4.primitives, A4.nodes, A4.areas, A4.islands,
  20. A4.holes, A4.volumes
  21. FROM stvds_base A1, stvds_absolute_time A2,
  22. stvds_spatial_extent A3, stvds_metadata A4 WHERE A1.id = A2.id AND
  23. A1.id = A3.id AND A1.id = A4.id;
  24. CREATE VIEW stvds_view_rel_time AS SELECT
  25. A1.id, A1.name, A1.mapset, A1.temporal_type,
  26. A1.semantic_type,
  27. A1.creation_time, A1.modification_time,
  28. A1.creator,
  29. A2.start_time, A2.end_time, A2.unit, A2.granularity,
  30. A3.north, A3.south, A3.east, A3.west, A3.bottom, A3.top, A3.proj,
  31. A4.vector_register,
  32. A4.number_of_maps,
  33. A4.title, A4.description, A4.command, A4.points, A4.lines,
  34. A4.boundaries, A4.centroids, A4.faces, A4.kernels,
  35. A4.primitives, A4.nodes, A4.areas, A4.islands,
  36. A4.holes, A4.volumes
  37. FROM stvds_base A1, stvds_relative_time A2,
  38. stvds_spatial_extent A3, stvds_metadata A4 WHERE A1.id = A2.id AND
  39. A1.id = A3.id AND A1.id = A4.id;