~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to lib/temporal/SQL/raster_views.sql

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--#############################################################################
 
2
-- This SQL script generates two views to access all map specific tables.
 
3
--
 
4
-- Author: Soeren Gebbert soerengebbert <at> googlemail <dot> com
 
5
--#############################################################################
 
6
 
 
7
 
 
8
-- Create the views to access all cols for the absolute and relative time
 
9
 
 
10
CREATE VIEW raster_view_abs_time AS SELECT 
 
11
            A1.id, A1.mapset,
 
12
            A1.name, A1.temporal_type,
 
13
            A1.creation_time, 
 
14
            A1.creator, 
 
15
            A2.start_time, A2.end_time,
 
16
            A3.north, A3.south, A3.east, A3.west, A3.bottom, A3.top, A3.proj,
 
17
            A4.datatype, A4.cols, A4.rows,
 
18
            A4.nsres, A4.ewres, A4.min, A4.max,
 
19
            A4.number_of_cells, A5.registered_stds
 
20
            FROM raster_base A1, raster_absolute_time A2, 
 
21
            raster_spatial_extent A3, raster_metadata A4,
 
22
            raster_stds_register A5
 
23
            WHERE A1.id = A2.id AND A1.id = A3.id AND 
 
24
            A1.id = A4.id AND A1.id = A5.id;
 
25
 
 
26
CREATE VIEW raster_view_rel_time AS SELECT 
 
27
            A1.id, A1.mapset,
 
28
            A1.name, A1.temporal_type,
 
29
            A1.creation_time, 
 
30
            A1.creator, 
 
31
            A2.start_time, A2.end_time, A2.unit,
 
32
            A3.north, A3.south, A3.east, A3.west, A3.bottom, A3.top, A3.proj,
 
33
            A4.datatype, A4.cols, A4.rows,
 
34
            A4.nsres, A4.ewres, A4.min, A4.max,
 
35
            A4.number_of_cells, A5.registered_stds
 
36
            FROM raster_base A1, raster_relative_time A2, 
 
37
            raster_spatial_extent A3, raster_metadata A4,
 
38
            raster_stds_register A5
 
39
            WHERE A1.id = A2.id AND A1.id = A3.id AND 
 
40
            A1.id = A4.id AND A1.id = A5.id;
 
41
 
 
42