You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mboff is tiny CLI that allows the optimisation of MBTiles by removing unnecessary data. You only need to provide it with a key/value pair and `mboff` will search and remove such data.
4
+
5
+
## Usage
6
+
`mboff` requires the user to give a path to the existing *MBTiles* file and the key/value pair of the data you wish to remove from the file:
7
+
```bash
8
+
mboff [file path] [key value pair]
9
+
```
10
+
Example:
11
+
```bash
12
+
mboff myMap.mbtiles category=road
13
+
```
14
+
15
+
## Future
16
+
* Ability to provide zoom levels so data can be removed in specified zoom level. If no zoom level is specified, it applies to all zoom levels.
17
+
* A command for *checking* if a key/value pair exist in a MBTiles file and how many times is present.
0 commit comments