StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/mapbox-gl/src/style-spec
Angelos Chatzimparmpas e069030893 fix the frontend 4 years ago
..
bin fix the frontend 4 years ago
dist fix the frontend 4 years ago
error fix the frontend 4 years ago
expression fix the frontend 4 years ago
feature_filter fix the frontend 4 years ago
function fix the frontend 4 years ago
migrate fix the frontend 4 years ago
reference fix the frontend 4 years ago
util fix the frontend 4 years ago
validate fix the frontend 4 years ago
.eslintrc fix the frontend 4 years ago
CHANGELOG.md fix the frontend 4 years ago
README.md fix the frontend 4 years ago
composite.js fix the frontend 4 years ago
declass.js fix the frontend 4 years ago
deref.js fix the frontend 4 years ago
diff.js fix the frontend 4 years ago
format.js fix the frontend 4 years ago
group_by_layout.js fix the frontend 4 years ago
migrate.js fix the frontend 4 years ago
package.json fix the frontend 4 years ago
rollup.config.js fix the frontend 4 years ago
style-spec.js fix the frontend 4 years ago
types.js fix the frontend 4 years ago
validate_style.js fix the frontend 4 years ago
validate_style.min.js fix the frontend 4 years ago
visit.js fix the frontend 4 years ago

README.md

Mapbox GL style specification & utilities

This directory contains code and reference files that define the Mapbox GL style specification and provides some utilities for working with Mapbox styles.

npm package

The Mapbox GL style specification and utilities are published as a seperate npm package so that they can be installed without the bulk of GL JS.

npm install @mapbox/mapbox-gl-style-spec

CLI Tools

If you install this package globally, you will have access to several CLI tools.

npm install @mapbox/mapbox-gl-style-spec --global

gl-style-composite

$ gl-style-composite style.json

Will take a non-composited style and produce a composite style.

gl-style-migrate

This repo contains scripts for migrating GL styles of any version to the latest version (currently v8). Migrate a style like this:

$ gl-style-migrate bright-v7.json > bright-v8.json

To migrate a file in place, you can use the sponge utility from the moreutils package:

$ brew install moreutils
$ gl-style-migrate bright.json | sponge bright.json

gl-style-format

$ gl-style-format style.json

Will format the given style JSON to use standard indentation and sorted object keys.

gl-style-validate

$ gl-style-validate style.json

Will validate the given style JSON and print errors to stdout. Provide a --json flag to get JSON output.