Diff
checker
文本
文本
图像
文档
Excel
文件夹
Legal
Enterprise
桌面版
定价
登录
下载 Diffchecker 桌面版
比较文本
查找两个文本文件之间的差异
工具
历史
实时编辑器
折叠未更改行
关闭换行
视图
拆分
统一
比对精度
智能
单词
字符
语法高亮
选择语法
忽略
文本转换
转到第一个差异
编辑输入
Diffchecker Desktop
运行Diffchecker最安全的方式。获取Diffchecker桌面应用:您的差异永远不会离开您的电脑!
获取桌面版
Untitled diff
创建于
11年前
差异永不过期
清除
导出
分享
解释
0 删除
行
总计
删除
字符
总计
删除
要继续使用此功能,请升级到
Diff
checker
Pro
查看价格
168 行
全部复制
19 添加
行
总计
添加
字符
总计
添加
要继续使用此功能,请升级到
Diff
checker
Pro
查看价格
186 行
全部复制
# This file is part of the MapProxy project.
# This file is part of the MapProxy project.
# Copyright (C) 2010 Omniscale <http://omniscale.de>
# Copyright (C) 2010 Omniscale <http://omniscale.de>
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing, software
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
复制
已复制
复制
已复制
import math
from mapproxy.client.http import retrieve_image
from mapproxy.client.http import retrieve_image
class TMSClient(object):
class TMSClient(object):
def __init__(self, url, format='png', http_client=None):
def __init__(self, url, format='png', http_client=None):
self.url = url
self.url = url
self.http_client = http_client
self.http_client = http_client
self.format = format
self.format = format
def get_tile(self, tile_coord, format=None):
def get_tile(self, tile_coord, format=None):
x, y, z = tile_coord
x, y, z = tile_coord
url = '%s/%d/%d/%d.%s' % (self.url, z, x, y, format or self.format)
url = '%s/%d/%d/%d.%s' % (self.url, z, x, y, format or self.format)
if self.http_client:
if self.http_client:
return self.http_client.open_image(url)
return self.http_client.open_image(url)
else:
else:
return retrieve_image(url)
return retrieve_image(url)
def __repr__(self):
def __repr__(self):
return '%s(%r, %r)' % (self.__class__.__name__, self.url, self.format)
return '%s(%r, %r)' % (self.__class__.__name__, self.url, self.format)
class TileClient(object):
class TileClient(object):
def __init__(self, url_template, http_client=None, grid=None):
def __init__(self, url_template, http_client=None, grid=None):
self.url_template = url_template
self.url_template = url_template
self.http_client = http_client
self.http_client = http_client
self.grid = grid
self.grid = grid
def get_tile(self, tile_coord, format=None):
def get_tile(self, tile_coord, format=None):
url = self.url_template.substitute(tile_coord, format, self.grid)
url = self.url_template.substitute(tile_coord, format, self.grid)
if self.http_client:
if self.http_client:
return self.http_client.open_image(url)
return self.http_client.open_image(url)
else:
else:
return retrieve_image(url)
return retrieve_image(url)
def __repr__(self):
def __repr__(self):
return '%s(%r)' % (self.__class__.__name__, self.url_template)
return '%s(%r)' % (self.__class__.__name__, self.url_template)
class TileURLTemplate(object):
class TileURLTemplate(object):
"""
"""
>>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png')
>>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png')
>>> t.substitute((7, 4, 3))
>>> t.substitute((7, 4, 3))
'http://foo/tiles/3/7/4.png'
'http://foo/tiles/3/7/4.png'
>>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png')
>>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png')
>>> t.substitute((7, 4, 3))
>>> t.substitute((7, 4, 3))
'http://foo/tiles/3/7/4.png'
'http://foo/tiles/3/7/4.png'
>>> t = TileURLTemplate('http://foo/tiles/%(tc_path)s.png')
>>> t = TileURLTemplate('http://foo/tiles/%(tc_path)s.png')
>>> t.substitute((7, 4, 3))
>>> t.substitute((7, 4, 3))
'http://foo/tiles/03/000/000/007/000/000/004.png'
'http://foo/tiles/03/000/000/007/000/000/004.png'
>>> t = TileURLTemplate('http://foo/tms/1.0.0/%(tms_path)s.%(format)s')
>>> t = TileURLTemplate('http://foo/tms/1.0.0/%(tms_path)s.%(format)s')
>>> t.substitute((7, 4, 3))
>>> t.substitute((7, 4, 3))
'http://foo/tms/1.0.0/3/7/4.png'
'http://foo/tms/1.0.0/3/7/4.png'
>>> t = TileURLTemplate('http://foo/tms/1.0.0/lyr/%(tms_path)s.%(format)s')
>>> t = TileURLTemplate('http://foo/tms/1.0.0/lyr/%(tms_path)s.%(format)s')
>>> t.substitute((7, 4, 3), 'jpeg')
>>> t.substitute((7, 4, 3), 'jpeg')
'http://foo/tms/1.0.0/lyr/3/7/4.jpeg'
'http://foo/tms/1.0.0/lyr/3/7/4.jpeg'
"""
"""
def __init__(self, template, format='png'):
def __init__(self, template, format='png'):
self.template= template
self.template= template
self.format = format
self.format = format
self.with_quadkey = True if '%(quadkey)' in template else False
self.with_quadkey = True if '%(quadkey)' in template else False
self.with_tc_path = True if '%(tc_path)' in template else False
self.with_tc_path = True if '%(tc_path)' in template else False
self.with_tms_path = True if '%(tms_path)' in template else False
self.with_tms_path = True if '%(tms_path)' in template else False
self.with_arcgiscache_path = True if '%(arcgiscache_path)' in template else False
self.with_arcgiscache_path = True if '%(arcgiscache_path)' in template else False
复制
已复制
复制
已复制
self.with_google_static = True if '%(google_static_params)' in template else False
self.with_bbox = True if '%(bbox)' in template else False
self.with_bbox = True if '%(bbox)' in template else False
def substitute(self, tile_coord, format=None, grid=None):
def substitute(self, tile_coord, format=None, grid=None):
x, y, z = tile_coord
x, y, z = tile_coord
data = dict(x=x, y=y, z=z)
data = dict(x=x, y=y, z=z)
data['format'] = format or self.format
data['format'] = format or self.format
if self.with_quadkey:
if self.with_quadkey:
data['quadkey'] = quadkey(tile_coord)
data['quadkey'] = quadkey(tile_coord)
if self.with_tc_path:
if self.with_tc_path:
data['tc_path'] = tilecache_path(tile_coord)
data['tc_path'] = tilecache_path(tile_coord)
if self.with_tms_path:
if self.with_tms_path:
data['tms_path'] = tms_path(tile_coord)
data['tms_path'] = tms_path(tile_coord)
if self.with_arcgiscache_path:
if self.with_arcgiscache_path:
data['arcgiscache_path'] = arcgiscache_path(tile_coord)
data['arcgiscache_path'] = arcgiscache_path(tile_coord)
复制
已复制
复制
已复制
if self.with_google_static:
data['google_static_params'] = google_static(tile_coord,grid)
if self.with_bbox:
if self.with_bbox:
data['bbox'] = bbox(tile_coord, grid)
data['bbox'] = bbox(tile_coord, grid)
return self.template % data
return self.template % data
def __repr__(self):
def __repr__(self):
return '%s(%r, format=%r)' % (
return '%s(%r, format=%r)' % (
self.__class__.__name__, self.template, self.format)
self.__class__.__name__, self.template, self.format)
复制
已复制
复制
已复制
def google_static(tile_coord,grid):
x, y, z = tile_coord
center_x = (x+0.5)/math.pow(2,z)*360-180
if grid.origin in ('nw','ll'):
y_add = 1
else:
y_add = -1
n1 = math.pi-2*math.pi*y/math.pow(2,z)
n2 = math.pi-2*math.pi*(y+y_add)/math.pow(2,z)
center_y1 = 180/math.pi*math.atan(0.5*(math.exp(n1)-math.exp(-n1)))
center_y2 = 180/math.pi*math.atan(0.5*(math.exp(n2)-math.exp(-n2)))
center_y = center_y1+y_add*abs(center_y1-center_y2)/2
return 'center=%s,%s&zoom=%s&size=%sx%s' % (center_y,center_x,z,grid.tile_size[0],grid.tile_size[1])
def tilecache_path(tile_coord):
def tilecache_path(tile_coord):
"""
"""
>>> tilecache_path((1234567, 87654321, 9))
>>> tilecache_path((1234567, 87654321, 9))
'09/001/234/567/087/654/321'
'09/001/234/567/087/654/321'
"""
"""
x, y, z = tile_coord
x, y, z = tile_coord
parts = ("%02d" % z,
parts = ("%02d" % z,
"%03d" % int(x / 1000000),
"%03d" % int(x / 1000000),
"%03d" % (int(x / 1000) % 1000),
"%03d" % (int(x / 1000) % 1000),
"%03d" % (int(x) % 1000),
"%03d" % (int(x) % 1000),
"%03d" % int(y / 1000000),
"%03d" % int(y / 1000000),
"%03d" % (int(y / 1000) % 1000),
"%03d" % (int(y / 1000) % 1000),
"%03d" % (int(y) % 1000))
"%03d" % (int(y) % 1000))
return '/'.join(parts)
return '/'.join(parts)
def quadkey(tile_coord):
def quadkey(tile_coord):
"""
"""
>>> quadkey((0, 0, 1))
>>> quadkey((0, 0, 1))
'0'
'0'
>>> quadkey((1, 0, 1))
>>> quadkey((1, 0, 1))
'1'
'1'
>>> quadkey((1, 2, 2))
>>> quadkey((1, 2, 2))
'21'
'21'
"""
"""
x, y, z = tile_coord
x, y, z = tile_coord
quadKey = ""
quadKey = ""
for i in range(z,0,-1):
for i in range(z,0,-1):
digit = 0
digit = 0
mask = 1 << (i-1)
mask = 1 << (i-1)
if (x & mask) != 0:
if (x & mask) != 0:
digit += 1
digit += 1
if (y & mask) != 0:
if (y & mask) != 0:
digit += 2
digit += 2
quadKey += str(digit)
quadKey += str(digit)
return quadKey
return quadKey
def tms_path(tile_coord):
def tms_path(tile_coord):
"""
"""
>>> tms_path((1234567, 87654321, 9))
>>> tms_path((1234567, 87654321, 9))
'9/1234567/87654321'
'9/1234567/87654321'
"""
"""
return '%d/%d/%d' % (tile_coord[2], tile_coord[0], tile_coord[1])
return '%d/%d/%d' % (tile_coord[2], tile_coord[0], tile_coord[1])
def arcgiscache_path(tile_coord):
def arcgiscache_path(tile_coord):
"""
"""
>>> arcgiscache_path((1234567, 87654321, 9))
>>> arcgiscache_path((1234567, 87654321, 9))
'L09/R05397fb1/C0012d687'
'L09/R05397fb1/C0012d687'
"""
"""
return 'L%02d/R%08x/C%08x' % (tile_coord[2], tile_coord[1], tile_coord[0])
return 'L%02d/R%08x/C%08x' % (tile_coord[2], tile_coord[1], tile_coord[0])
def bbox(tile_coord, grid):
def bbox(tile_coord, grid):
"""
"""
>>> from mapproxy.grid import tile_grid
>>> from mapproxy.grid import tile_grid
>>> grid = tile_grid(4326, bbox=(0, -15, 10, -5))
>>> grid = tile_grid(4326, bbox=(0, -15, 10, -5))
>>> bbox((0, 0, 0), grid)
>>> bbox((0, 0, 0), grid)
'0.00000000,-15.00000000,10.00000000,-5.00000000'
'0.00000000,-15.00000000,10.00000000,-5.00000000'
>>> bbox((0, 0, 1), grid)
>>> bbox((0, 0, 1), grid)
'0.00000000,-15.00000000,5.00000000,-10.00000000'
'0.00000000,-15.00000000,5.00000000,-10.00000000'
>>> grid = tile_grid(4326, bbox=(0, -15, 10, -5), origin='nw')
>>> grid = tile_grid(4326, bbox=(0, -15, 10, -5), origin='nw')
>>> bbox((0, 0, 1), grid)
>>> bbox((0, 0, 1), grid)
'0.00000000,-10.00000000,5.00000000,-5.00000000'
'0.00000000,-10.00000000,5.00000000,-5.00000000'
"""
"""
return '%.8f,%.8f,%.8f,%.8f' % grid.tile_bbox(tile_coord)
return '%.8f,%.8f,%.8f,%.8f' % grid.tile_bbox(tile_coord)
已保存差异
原始文本
打开文件
# This file is part of the MapProxy project. # Copyright (C) 2010 Omniscale <http://omniscale.de> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from mapproxy.client.http import retrieve_image class TMSClient(object): def __init__(self, url, format='png', http_client=None): self.url = url self.http_client = http_client self.format = format def get_tile(self, tile_coord, format=None): x, y, z = tile_coord url = '%s/%d/%d/%d.%s' % (self.url, z, x, y, format or self.format) if self.http_client: return self.http_client.open_image(url) else: return retrieve_image(url) def __repr__(self): return '%s(%r, %r)' % (self.__class__.__name__, self.url, self.format) class TileClient(object): def __init__(self, url_template, http_client=None, grid=None): self.url_template = url_template self.http_client = http_client self.grid = grid def get_tile(self, tile_coord, format=None): url = self.url_template.substitute(tile_coord, format, self.grid) if self.http_client: return self.http_client.open_image(url) else: return retrieve_image(url) def __repr__(self): return '%s(%r)' % (self.__class__.__name__, self.url_template) class TileURLTemplate(object): """ >>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/3/7/4.png' >>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/3/7/4.png' >>> t = TileURLTemplate('http://foo/tiles/%(tc_path)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/03/000/000/007/000/000/004.png' >>> t = TileURLTemplate('http://foo/tms/1.0.0/%(tms_path)s.%(format)s') >>> t.substitute((7, 4, 3)) 'http://foo/tms/1.0.0/3/7/4.png' >>> t = TileURLTemplate('http://foo/tms/1.0.0/lyr/%(tms_path)s.%(format)s') >>> t.substitute((7, 4, 3), 'jpeg') 'http://foo/tms/1.0.0/lyr/3/7/4.jpeg' """ def __init__(self, template, format='png'): self.template= template self.format = format self.with_quadkey = True if '%(quadkey)' in template else False self.with_tc_path = True if '%(tc_path)' in template else False self.with_tms_path = True if '%(tms_path)' in template else False self.with_arcgiscache_path = True if '%(arcgiscache_path)' in template else False self.with_bbox = True if '%(bbox)' in template else False def substitute(self, tile_coord, format=None, grid=None): x, y, z = tile_coord data = dict(x=x, y=y, z=z) data['format'] = format or self.format if self.with_quadkey: data['quadkey'] = quadkey(tile_coord) if self.with_tc_path: data['tc_path'] = tilecache_path(tile_coord) if self.with_tms_path: data['tms_path'] = tms_path(tile_coord) if self.with_arcgiscache_path: data['arcgiscache_path'] = arcgiscache_path(tile_coord) if self.with_bbox: data['bbox'] = bbox(tile_coord, grid) return self.template % data def __repr__(self): return '%s(%r, format=%r)' % ( self.__class__.__name__, self.template, self.format) def tilecache_path(tile_coord): """ >>> tilecache_path((1234567, 87654321, 9)) '09/001/234/567/087/654/321' """ x, y, z = tile_coord parts = ("%02d" % z, "%03d" % int(x / 1000000), "%03d" % (int(x / 1000) % 1000), "%03d" % (int(x) % 1000), "%03d" % int(y / 1000000), "%03d" % (int(y / 1000) % 1000), "%03d" % (int(y) % 1000)) return '/'.join(parts) def quadkey(tile_coord): """ >>> quadkey((0, 0, 1)) '0' >>> quadkey((1, 0, 1)) '1' >>> quadkey((1, 2, 2)) '21' """ x, y, z = tile_coord quadKey = "" for i in range(z,0,-1): digit = 0 mask = 1 << (i-1) if (x & mask) != 0: digit += 1 if (y & mask) != 0: digit += 2 quadKey += str(digit) return quadKey def tms_path(tile_coord): """ >>> tms_path((1234567, 87654321, 9)) '9/1234567/87654321' """ return '%d/%d/%d' % (tile_coord[2], tile_coord[0], tile_coord[1]) def arcgiscache_path(tile_coord): """ >>> arcgiscache_path((1234567, 87654321, 9)) 'L09/R05397fb1/C0012d687' """ return 'L%02d/R%08x/C%08x' % (tile_coord[2], tile_coord[1], tile_coord[0]) def bbox(tile_coord, grid): """ >>> from mapproxy.grid import tile_grid >>> grid = tile_grid(4326, bbox=(0, -15, 10, -5)) >>> bbox((0, 0, 0), grid) '0.00000000,-15.00000000,10.00000000,-5.00000000' >>> bbox((0, 0, 1), grid) '0.00000000,-15.00000000,5.00000000,-10.00000000' >>> grid = tile_grid(4326, bbox=(0, -15, 10, -5), origin='nw') >>> bbox((0, 0, 1), grid) '0.00000000,-10.00000000,5.00000000,-5.00000000' """ return '%.8f,%.8f,%.8f,%.8f' % grid.tile_bbox(tile_coord)
更改后文本
打开文件
# This file is part of the MapProxy project. # Copyright (C) 2010 Omniscale <http://omniscale.de> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import math from mapproxy.client.http import retrieve_image class TMSClient(object): def __init__(self, url, format='png', http_client=None): self.url = url self.http_client = http_client self.format = format def get_tile(self, tile_coord, format=None): x, y, z = tile_coord url = '%s/%d/%d/%d.%s' % (self.url, z, x, y, format or self.format) if self.http_client: return self.http_client.open_image(url) else: return retrieve_image(url) def __repr__(self): return '%s(%r, %r)' % (self.__class__.__name__, self.url, self.format) class TileClient(object): def __init__(self, url_template, http_client=None, grid=None): self.url_template = url_template self.http_client = http_client self.grid = grid def get_tile(self, tile_coord, format=None): url = self.url_template.substitute(tile_coord, format, self.grid) if self.http_client: return self.http_client.open_image(url) else: return retrieve_image(url) def __repr__(self): return '%s(%r)' % (self.__class__.__name__, self.url_template) class TileURLTemplate(object): """ >>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/3/7/4.png' >>> t = TileURLTemplate('http://foo/tiles/%(z)s/%(x)d/%(y)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/3/7/4.png' >>> t = TileURLTemplate('http://foo/tiles/%(tc_path)s.png') >>> t.substitute((7, 4, 3)) 'http://foo/tiles/03/000/000/007/000/000/004.png' >>> t = TileURLTemplate('http://foo/tms/1.0.0/%(tms_path)s.%(format)s') >>> t.substitute((7, 4, 3)) 'http://foo/tms/1.0.0/3/7/4.png' >>> t = TileURLTemplate('http://foo/tms/1.0.0/lyr/%(tms_path)s.%(format)s') >>> t.substitute((7, 4, 3), 'jpeg') 'http://foo/tms/1.0.0/lyr/3/7/4.jpeg' """ def __init__(self, template, format='png'): self.template= template self.format = format self.with_quadkey = True if '%(quadkey)' in template else False self.with_tc_path = True if '%(tc_path)' in template else False self.with_tms_path = True if '%(tms_path)' in template else False self.with_arcgiscache_path = True if '%(arcgiscache_path)' in template else False self.with_google_static = True if '%(google_static_params)' in template else False self.with_bbox = True if '%(bbox)' in template else False def substitute(self, tile_coord, format=None, grid=None): x, y, z = tile_coord data = dict(x=x, y=y, z=z) data['format'] = format or self.format if self.with_quadkey: data['quadkey'] = quadkey(tile_coord) if self.with_tc_path: data['tc_path'] = tilecache_path(tile_coord) if self.with_tms_path: data['tms_path'] = tms_path(tile_coord) if self.with_arcgiscache_path: data['arcgiscache_path'] = arcgiscache_path(tile_coord) if self.with_google_static: data['google_static_params'] = google_static(tile_coord,grid) if self.with_bbox: data['bbox'] = bbox(tile_coord, grid) return self.template % data def __repr__(self): return '%s(%r, format=%r)' % ( self.__class__.__name__, self.template, self.format) def google_static(tile_coord,grid): x, y, z = tile_coord center_x = (x+0.5)/math.pow(2,z)*360-180 if grid.origin in ('nw','ll'): y_add = 1 else: y_add = -1 n1 = math.pi-2*math.pi*y/math.pow(2,z) n2 = math.pi-2*math.pi*(y+y_add)/math.pow(2,z) center_y1 = 180/math.pi*math.atan(0.5*(math.exp(n1)-math.exp(-n1))) center_y2 = 180/math.pi*math.atan(0.5*(math.exp(n2)-math.exp(-n2))) center_y = center_y1+y_add*abs(center_y1-center_y2)/2 return 'center=%s,%s&zoom=%s&size=%sx%s' % (center_y,center_x,z,grid.tile_size[0],grid.tile_size[1]) def tilecache_path(tile_coord): """ >>> tilecache_path((1234567, 87654321, 9)) '09/001/234/567/087/654/321' """ x, y, z = tile_coord parts = ("%02d" % z, "%03d" % int(x / 1000000), "%03d" % (int(x / 1000) % 1000), "%03d" % (int(x) % 1000), "%03d" % int(y / 1000000), "%03d" % (int(y / 1000) % 1000), "%03d" % (int(y) % 1000)) return '/'.join(parts) def quadkey(tile_coord): """ >>> quadkey((0, 0, 1)) '0' >>> quadkey((1, 0, 1)) '1' >>> quadkey((1, 2, 2)) '21' """ x, y, z = tile_coord quadKey = "" for i in range(z,0,-1): digit = 0 mask = 1 << (i-1) if (x & mask) != 0: digit += 1 if (y & mask) != 0: digit += 2 quadKey += str(digit) return quadKey def tms_path(tile_coord): """ >>> tms_path((1234567, 87654321, 9)) '9/1234567/87654321' """ return '%d/%d/%d' % (tile_coord[2], tile_coord[0], tile_coord[1]) def arcgiscache_path(tile_coord): """ >>> arcgiscache_path((1234567, 87654321, 9)) 'L09/R05397fb1/C0012d687' """ return 'L%02d/R%08x/C%08x' % (tile_coord[2], tile_coord[1], tile_coord[0]) def bbox(tile_coord, grid): """ >>> from mapproxy.grid import tile_grid >>> grid = tile_grid(4326, bbox=(0, -15, 10, -5)) >>> bbox((0, 0, 0), grid) '0.00000000,-15.00000000,10.00000000,-5.00000000' >>> bbox((0, 0, 1), grid) '0.00000000,-15.00000000,5.00000000,-10.00000000' >>> grid = tile_grid(4326, bbox=(0, -15, 10, -5), origin='nw') >>> bbox((0, 0, 1), grid) '0.00000000,-10.00000000,5.00000000,-5.00000000' """ return '%.8f,%.8f,%.8f,%.8f' % grid.tile_bbox(tile_coord)
查找差异