Changeset 2651
- Timestamp:
- 26/06/07 15:21:05 (14 years ago)
- Location:
- TI05-delivery/ows_framework/trunk
- Files:
-
- 7 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/ows_framework/trunk/ows_common/ows_common/data_identification.py
r2529 r2651 27 27 self.keywords = keywords 28 28 29 class Identification(Description):29 class BasicIdentification(Description): 30 30 """ 31 @note: BasicIdentification is not modelled directly.32 33 31 @ivar identifier 34 32 @type identifier: None or Code … … 36 34 @type metadata: iterable of Metadata 37 35 36 """ 37 def __init__(self, identifier=None, metadata=[], **kwargs): 38 super(BasicIdentification, self).__init__(**kwargs) 39 40 self.identifier = identifier 41 self.metadata = metadata 42 43 44 class Identification(BasicIdentification): 45 """ 38 46 @ivar outputFormats 39 47 @type outputFormats: iterable of str … … 45 53 46 54 """ 47 def __init__(self, identifier=None, metadata=[],outputFormats=[],55 def __init__(self, outputFormats=[], 48 56 availableCRSs=[], boundingBoxes=[], **kwargs): 49 57 super(Identification, self).__init__(**kwargs) 50 58 51 self.identifier = identifier52 self.metadata = metadata53 59 self.outputFormats = outputFormats 54 60 self.availableCRSs = availableCRSs
Note: See TracChangeset
for help on using the changeset viewer.