Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/cows/trunk/cows/model/wfs.py@4278
Revision 4278,
754 bytes
checked in by domlowe, 12 years ago
(diff) |
More integration of WFS into cows. Layers now represent feature types, not instances.
|
Line | |
---|
1 | # Copyright (C) 2008 STFC & NERC (Science and Technology Facilities Council). |
---|
2 | # This software may be distributed under the terms of the |
---|
3 | # Q Public License, version 1.0 or later. |
---|
4 | # http://ndg.nerc.ac.uk/public_docs/QPublic_license.txt |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | from cows.model.contents import DatasetSummary |
---|
9 | |
---|
10 | class WfsFeatureSummary(DatasetSummary): |
---|
11 | """ One WfsFeatureSummary corresponds to one data 'layer' e.g. Temperature PointSeries. |
---|
12 | """ |
---|
13 | def __init__(self, **kw): |
---|
14 | super(WfsFeatureSummary, self).__init__(**kw) |
---|
15 | #TODO: flesh out feature summary |
---|
16 | #Name |
---|
17 | #Abstract |
---|
18 | #Title |
---|
19 | #ows:Keywords, Keyword |
---|
20 | #DefaultSRS |
---|
21 | #OutputFormats, Format |
---|
22 | #ows:WGS84BoundingBox |
---|
23 | |
---|
24 | |
---|
25 | |
---|
26 | |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.