Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
github.com/mapbox/tilelive-decorator
Load vector tiles from a tilelive source and decorate them with properties from redis. So if you use tilelive-s3 it can load tiles from s3, and add properties to features from redis.
Tilelive decorator registers several tilelive protocols:
decorator+s3:
for reading tiles from S3decorator+mbtiles:
for reading tiles from an mbtilesvar tilelive = require('tilelive');
var TileliveDecorator = require('tilelive-decorator');
var TileliveS3 = require('tilelive-s3');
TileliveDecorator.registerProtocols(tilelive);
TileliveS3.registerProtocols(tilelive);
tilelive.load('decorator+s3://test/{z}/{x}/{y}?key=id&sourceProps={"keep":["id","name"]}&redis=redis://localhost:6379', function(err, source) {
// source.getTile(z, x, y, callback);
});
var TileliveDecorator = require('tilelive-decorator');
var uri = 'decorator+s3://test/{z}/{x}/{y}?key=id&sourceProps={"keep":["id","name"]}&redis=redis://localhost:6379'
new TileliveDecorator(uri, function (err, source) {
// source.getTile(z, x, y, callback);
});
key (required) - specifies what property in the source tiles will be matched to keys in redis.
sourceProps - a json object, specifying properties to keep
from the source tile, and properties that are required
to exist on features in the source tile. example: {"keep": ["id", "class"], "required": ["rating"]}
. If all required
properties don't exist on a feature, that feature is filtered out.
redisProps - a json object, specifying properties to keep
from redis records, and properties that are required
to exist on redis records. example: {"keep": ["congestion"], "required": ["speed"]}
. If all required
properties don't exist on a record, that record is filtered out and no new properties will be applied to features that match the record key.
outputProps - a json object, specifying properties to keep
in the output tile after decoration, and properties that are required
to exist on features in the output tile. example: {"keep": ["class", "congestion"], "required": ["congestion"]}
. If all required
properties don't exist on a feature, that feature is filtered out.
redis - a redis connection string, e.g. redis://localhost:6379
.
hashes - If hashes=true
is included, redis keys are treated as hash types as opposed to stringified JSON data in string type keys. In this case hget
is used instead of the default get
commands.
Tests and benchmarks require a local redis server
brew install redis
git clone https://github.com/mapbox/tilelive-decorator
cd tilelive-decorator
npm install
redis-server --save "" &
redis-cli flushall && node benchmark.js
redis-cli flushall && npm test
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.