Skip to content

Instantly share code, notes, and snippets.

View elenatorro's full-sized avatar
🕷️
Building webs

Elena Torró elenatorro

🕷️
Building webs
View GitHub Profile
@elenatorro
elenatorro / create_organization_script
Last active November 16, 2017 11:23
cartodb create local organization script
#!/bin/sh
if test -n "$1"; then
ORGANIZATION_NAME="$1"
else
echo -n "Enter organization name: "; read ORGANIZATION_NAME
fi
if test -n "$2"; then
ORGANIZATION_DISPLAY_NAME="$2"
@elenatorro
elenatorro / add_user_feature_flag
Last active December 19, 2017 11:45
Feature Flags Scripts
#!/bin/sh
if test -n "$1"; then
USERNAME="$1"
else
echo -n "Enter username: "; read USERNAME
fi
if test -n "$2"; then
NAME="$2"
@elenatorro
elenatorro / d3-carto-map-visualization.markdown
Created January 30, 2018 22:32
D3 + CARTO Map Visualization
@elenatorro
elenatorro / index.html
Created May 11, 2018 16:17
Change map projection with carto.js
<!DOCTYPE html>
<html>
<head>
<title>Change Projection | CARTO</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<!-- Include Leaflet -->
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"></script>
<link href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" rel="stylesheet">
@elenatorro
elenatorro / index.html
Last active June 6, 2018 20:22
Nightclubs in Spain visualizer using carto.vl
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Spain Nightclubs</title>
<script src="https://cartodb.github.io/carto-vl/dist/carto-vl.js"></script>
<script src="https://libs.cartocdn.com/mapbox-gl/v0.45.0-carto1/mapbox-gl.js"></script>
@elenatorro
elenatorro / index.html
Created June 15, 2018 08:28
Test crossOrigin sprites
<!DOCTYPE html>
<html>
<head>
<title>Add layer | CARTO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<!-- Include CARTO VL JS -->
<script src="https://cartodb.github.io/carto-vl/dist/carto-vl.js"></script>
<!-- Include Mapbox GL JS -->
<script src="https://libs.cartocdn.com/mapbox-gl/v0.45.0-carto1/mapbox-gl.js"></script>
@elenatorro
elenatorro / index.html
Created January 10, 2019 08:03
Gradient Legend CARTO VL
<!DOCTYPE html>
<html>
<head>
<title>Legend classification | CARTO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<script src="https://libs.cartocdn.com/carto-vl/v1.0.0/carto-vl.min.js"></script>
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.52.0/mapbox-gl.js"></script>
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.52.0/mapbox-gl.css" rel="stylesheet" />
@elenatorro
elenatorro / a.svg
Last active February 13, 2019 14:47
Happy Birthday with CartoVL
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@elenatorro
elenatorro / index.html
Last active February 13, 2019 14:51
Test Images
<!DOCTYPE html>
<html>
<head>
<title>Happy Birthday | CARTO VL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<script src="https://cartodb.github.io/carto-vl/dist/carto-vl.js"></script>
<script src="https://cartodb-libs.global.ssl.fastly.net/mapbox-gl/v0.44.1-carto1/mapbox-gl.js"></script>
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.css" rel="stylesheet" />
@elenatorro
elenatorro / index.html
Created February 13, 2019 14:52
Test Images 2
<!DOCTYPE html>
<html>
<head>
<title>Happy Birthday | CARTO VL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<script src="https://cartodb.github.io/carto-vl/dist/carto-vl.js"></script>
<script src="https://cartodb-libs.global.ssl.fastly.net/mapbox-gl/v0.44.1-carto1/mapbox-gl.js"></script>
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.css" rel="stylesheet" />