-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from UNDP-Data/auto-release
added docs about realeasing
- Loading branch information
Showing
2 changed files
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,47 @@ | ||
# geo-cogserver | ||
# Geohub's COGserver | ||
GeoHub COG server is powering UNDP GeoHub visualization of raster datasets | ||
|
||
COG server builds on [titiler](https://github.com/developmentseed/titiler) a customisable dynamic raster tiling. | ||
It contains following components: | ||
|
||
- [x] COG tiler - render tiles from COG's | ||
- [x] create STAC item from COG | ||
- [x] MosaicJSON tiler - create/render MosaicJSON docs | ||
- [x] STAC tiler - render STAC items | ||
- [ ] Multiband tiler - render heterogenous COGs | ||
|
||
Additionally, **COG server** aims to hold generic and specific [titiler algos](https://devseed.com/titiler/advanced/Algorithms/) | ||
intended to provide a geospatial analytics toolbox | ||
|
||
# versioning & realeases | ||
|
||
As per [titiler's](https://github.com/developmentseed/titiler) recommendation | ||
COGserver employs the titiler's API to build a customised server and keeps its own versioning | ||
system. | ||
|
||
Releases ca be created by: | ||
|
||
a) pushing tags | ||
1. commit your changes in a branch | ||
```bash | ||
git checkout -b branch_name | ||
git add . | ||
git commit -m "a message" | ||
|
||
``` | ||
2. make and merge the branch through a PR | ||
3. create a local tag and push it to remote | ||
```bash | ||
git tag -a v0.0.1 -m "v0.0.1" | ||
git push --tag | ||
``` | ||
4. potentially delete/overwrite | ||
```bash | ||
git push --delete origin v0.0.1 #remote | ||
git tag -d v0.0.1 #local | ||
``` | ||
b) creating a release manually using Github | ||
|
||
|
||
|
||
|