Codebase list mapproxy / 4786e34
Merge tag 'upstream/1.10.2' Upstream version 1.10.2 Bas Couwenberg 6 years ago
4 changed file(s) with 17 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 1.10.2 2017-06-21
1 ~~~~~~~~~~~~~~~~~
2
3 Fixes:
4
5 - Fix coverage clipping for caches with a single source
6
07 1.10.1 2017-06-06
18 ~~~~~~~~~~~~~~~~~
29
5050 # The short X.Y version.
5151 version = '1.10'
5252 # The full version, including alpha/beta/rc tags.
53 release = '1.10.1'
53 release = '1.10.2'
5454
5555 # The language for content autogenerated by Sphinx. Refer to documentation
5656 # for a list of supported languages.
282282 Query all sources and return the results as a single ImageSource.
283283 Multiple sources will be merged into a single image.
284284 """
285 if len(self.sources) == 1 and not self.image_merger:
285
286 # directly return get_map without merge if ...
287 if (len(self.sources) == 1 and
288 not self.image_merger and # no special image_merger (like BandMerger)
289 not (self.sources[0].coverage and # no clipping coverage
290 self.sources[0].coverage.clip and
291 self.sources[0].coverage.intersects(query.bbox, query.srs))
292 ):
286293 try:
287294 return self.sources[0].get_map(query)
288295 except BlankImage:
5353
5454 setup(
5555 name='MapProxy',
56 version="1.10.1",
56 version="1.10.2",
5757 description='An accelerating proxy for web map services',
5858 long_description=long_description(7),
5959 author='Oliver Tonnhofer',