npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tilebase

v4.0.0

Published

Range based Single File MBTiles like Store

Downloads

62

Readme

Usage

TileBase can be accessed in several ways through the following client libraries

| Language | Link | | -------- | ---- | | NodeJS | USAGE

Command Line Library

The default command line requires that node be installed. The easiest way to do this is usually via NVM

Once node is installed, from the git repository, run the following to install dependencies.

npm install
npm link

The TileBase cli should now be able to be used from your command line via

tilebase --help

Format Spec (v1)

A TileBase file is designed as a single file tile store. It is functionally similiar to a MBTiles file, except it is optimized for Cloud Storage based serving and does not allow dynamic updates.

TileBase files allow Ranged requests from Cloud Storage providers, avoiding the generally expensive operation of pushing individual tiles to the store.

TileBase File

<Magic Bytes><Version><File Config Length>
<Variable Length File Config>
<Variable Length Tile Addresses>
<Variable Length Tile Data>

File Header

Every TileBase file will begin with 74 62 (tb in ASCII) followed by an 8-bit unsigned integer representing the TileBase spec version number.

Since there is currently only one version of the spec, all TileBase files will start with the following:

74 62 01

Following the Magic Bytes is a single 32 bit unsigned Little Endian Integer containing the number of following bytes that make up the JSON file config.

74
62      tb Magic Bytes
01      1
D3
04
00
00      1234 bytes

This means that the max number of bytes in the JSON config is 4294967295 bytes (~4gb)

File Config

After the header, a stringified JSON object contains the config necessary to read the TileBase file. The length of the binary JSON config MUST be equal to the length specifier preceding the config.

{
    "min": <min zoom>,
    "max": <max zoom>,
    "ranges": {
        "<zoom>": [<min x>, <min y>, <max x>, <max y>]
        ...
    }
}

Tile Addresses

After the JSON config is a block of Tile Addresses. There will be one tile address for every tile that would fall within the rectangular ranges array. Should a vector tile be empty, it will have a Byte Address to where the tile would have been in the file, however with a Vector Tile Size of 0.

Byte addresses reference the number of bytes to the initial byte from the end of the TileAddresses Block.

IE: the first byte address of any TileBase file will be 0, as it will be the first byte after the Tile Addresses block.

Example: Single Tile Address

<LE-UInt64 Address><LE-UInt64 Vector Tile Size>

Tile Data

Tile Data is simply a blob of continuous gzipped Mapbox Vector Tiles. Their order is determined simply by the order in which they are reference by the Tile Address blob.

Error Handling

Errors returned via the TileBase library will return a TBError, an extension to the default JS Error class with the addition of a status field. The status field will contain a suggested HTTP Status code to return to a user in a server setting.