Changeset 1403
- Timestamp:
- 16/08/06 10:18:27 (14 years ago)
- Location:
- TI02-CSML/trunk/Scanner/csmllibs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TI02-CSML/trunk/Scanner/csmllibs/csmlbuilder.py
r1401 r1403 107 107 if not hasattr(self, 'extractDictionary'): 108 108 self.extractDictionary=None 109 thefeatures = csmllibs.csmlfeaturetypes.featureBuilder( self.ds,self.gml_FeatureCollection, self.extractType,self.ffmap, self.extractDictionary,self.timedimension, self.timestorage, self.spatialstorage,self.valuestorage)109 thefeatures = csmllibs.csmlfeaturetypes.featureBuilder( self.ds,self.gml_FeatureCollection, self.ffmap, self.extractDictionary,self.timedimension, self.timestorage, self.spatialstorage,self.valuestorage) 110 110 #self.csml = thefeatures.csml 111 111 self.ds=thefeatures.ds_element -
TI02-CSML/trunk/Scanner/csmllibs/csmlfeaturetypes.py
r1402 r1403 11 11 12 12 class featureBuilder: 13 def __init__(self, dataset_element, gml_FeatureCollection_element, extractType,ffmap,fileExtractDictionary, timedim, timestorage,spatialstorage,valuestorage):13 def __init__(self, dataset_element, gml_FeatureCollection_element, ffmap,fileExtractDictionary, timedim, timestorage,spatialstorage,valuestorage): 14 14 self.ds_element=dataset_element 15 15 self.gml_FeatureCollection_element = gml_FeatureCollection_element 16 self.extractType = extractType17 16 self.ffmap = ffmap 18 17 self.fileExtractDictionary = fileExtractDictionary … … 207 206 DI.closeFile() 208 207 209 #this is now done outside this function210 #self.gml_FeatureCollection_element.members=self.fms211 208 212 209 #########################################################################
Note: See TracChangeset
for help on using the changeset viewer.