Changeset 2693
- Timestamp:
- 03/07/07 15:42:31 (14 years ago)
- Location:
- TI05-delivery/ows_framework/trunk/ows_server
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/ows_framework/trunk/ows_server/development_dom.ini
r2625 r2693 25 25 tmp_dir = %(here)s/data/tmp 26 26 publish_dir=%(here)s/ows_server/public/filestore 27 ows_common_config = %(here)s/ eg_ows_capabilities.xml27 ows_common_config = %(here)s/wcs_ows_capabilities.xml 28 28 29 29 # If you'd like to fine-tune the individual locations of the cache data dirs -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/controllers/csml_wcs.py
r2691 r2693 151 151 # Retrieve dataset and selected feature 152 152 dataset = csmlCache[fileoruri] 153 print dataset154 153 feature = dataset.getFeature(identifier) 155 154 if feature is None: -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/controllers/csml_wms.py
r2631 r2693 108 108 109 109 """ 110 111 110 # Populate the context object with information required by the template 112 111 c.dataset = csmlCache[file] -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/templates/ows/wcs_capabilities.kid
r2653 r2693 56 56 <ows:Abstract py:if="ds.abstracts is not None" py:content="ds.abstracts"/> 57 57 <ows:Metadata></ows:Metadata> 58 <ows:WGS84BoundingBox></ows:WGS84BoundingBox> 58 <ows:WGS84BoundingBox py:for="bb in ds.boundingBoxes" 59 minx="${bb.lowerCorner[0]}" 60 miny="${bb.lowerCorner[1]}" 61 maxx="${bb.upperCorner[0]}" 62 maxy="${bb.upperCorner[1]}"/> 59 63 <CoverageSummary py:for="ds1 in ds.datasetSummaries" py:replace="coverageSummary(ds1)"/> 60 64 </CoverageSummary>
Note: See TracChangeset
for help on using the changeset viewer.