We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in
cogeo-mosaic/cogeo_mosaic/backends/base.py
Line 87 in 0e0a122
# Existing mosaic mosaic_1 = {"tile": {"0": ["cog1.tif"]}} # New list of COG dataset = ["2.tif", "3.tif"] # Add First with MosaicBackend(None, mosaic_def = mosaic_1) as mosaic: feats = get_footprints(dataset) mosaic.update(feats, add_first=True) > mosaic_1 = {"tile": {"0": ["2.tif", "3.tif", "cog1.tif"]}} # Add Last with MosaicBackend(None, mosaic_def = mosaic_1) as mosaic: feats = get_footprints(dataset) mosaic.update(feats, add_first=False) > mosaic_1 = {"tile": {"0": ["cog1.tif", "2.tif", "3.tif"]}}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
cogeo-mosaic/cogeo_mosaic/backends/base.py
Line 87 in 0e0a122
we either append the new dataset before or after the existing dataset. This behaviour could be confusing for some users
The text was updated successfully, but these errors were encountered: