-
Notifications
You must be signed in to change notification settings - Fork 5
TileQuery
John Hoffer edited this page Mar 17, 2017
·
2 revisions
from QueryLayer import *
query = TileQuery(*args)
The args
are of a simple list
with at least:
args = [
__query__,
__xy_index__,
__start__,
__end__
]
'''
Where:
isinstance(__query__, DataQuery)
in_bounds = lambda bounds,arg: all(0 <= arg) and all(arg <= bounds)
in_bounds(__query__.tiled_bounds, np.array(__xy_index__))
in_bounds(__query__.blocksize, np.array(__start__))
in_bounds(__query__.blocksize, np.array(__end__))
'''
- For a list of all query properties see the DataQuery page
-
Home
- API
- OCP
- Data Formats
- Developers
- Harvard RC Cluster
- Keywords
- Testing
- VM
- AccessLayer
- API
- OCP
- QueryLayer
- ImageLayer
- HDF5
- New Formats
- DatabaseLayer
- Mongo
- CoreLayer
- Core
- CacheSource
- CacheTile