Skip to content
New issue

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

Version7 #232

Merged
merged 5 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

- Docs/readme update

## Unreleased/Future
___

## 0.7.0 (2025-01-09)

- **NO UNWRAPPING!** there is no unwrapping in utiles!
- updated `thiserror` to v2
Expand Down Expand Up @@ -77,12 +79,12 @@

## 0.5.1 (2024-06-19)

- Fixed backpressure issue when `unpyramiding` direcotry to mbtiles; the loading
- Fixed backpressure issue when `unpyramiding` directory to mbtiles; the loading
of tiles was happening too fast and could cause memory issues on large
tile-pyramids... (this was previously not an issue b/c I would run those jobs
on my work machine which had 512gb or ram, but that machine died... RIP titus)
- Write out `metadata.json` when `pyramid-ing` mbtiles to directory if the
metadata of the mbtiles does not conatin duplicate keys (which it should not)
metadata of the mbtiles does not contain duplicate keys (which it should not)
- Limit jobs/concurrency when `pyramid-ing` mbtiles to directory to 4 (if not
specified by `--jobs`/`-j` option) to prevent nuking machines

Expand Down Expand Up @@ -157,7 +159,7 @@ Example:

## 0.2.0 (2023-11-10)

- Converted cli to rust as an excerise in learning clap
- Converted cli to rust as an exercise in learning clap
- Moved old click cli to `utiles._legacy.cli`
- Added tilejson/tj command to rust cli to write out tilejson files for mbtiles
- Added meta command to rust cli to write out json of metadata table for mbtiles
Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
]

[workspace.package]
version = "0.7.0-beta.4"
version = "0.7.0"
authors = [
"Jesse Rubin <jessekrubin@gmail.com>",
"Dan Costello <dan.costello2@gmail.com>",
Expand Down Expand Up @@ -51,7 +51,7 @@ serde_json = { version = "1.0.135", features = ["preserve_order"] }
size = { version = "=0.5.0-preview2", features = ["default"] }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.3"
thiserror = "2.0.9"
thiserror = "2.0.10"
tilejson = "0.4.1"
tokio = { version = "1.42.0", features = ["full"] }
tokio-stream = "0.1.17"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

utiles = utils + tiles

_web map tile utilities, batching, serving, python and bears (oh-my)_

## Installation

```bash
# __CLI__
# from crates
cargo install utiles
# from source
cargo install --git https://github.com/jessekrubin/utiles.git utiles # and/or utiles-oxipng
cargo install --git https://github.com/jessekrubin/utiles.git utiles
# install the oxipng mbtiles/tiles-db wrapper cli
cargo install --git https://github.com/jessekrubin/utiles.git utiles-oxipng
# via the python package (which wrappers the rust-cli)
pip install -U utiles

Expand Down
Loading
Loading