Find all layers on the map
map.getStyle().layers.reverse();
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, os, json | |
here = os.path.dirname(os.path.realpath(__file__)) | |
#sys.path.append(os.path.join(here, "./vendored")) | |
env_path = os.path.join(here, "./venv/lib/python2.7/site-packages/") | |
sys.path.append(env_path) | |
import requests | |
from contextlib import closing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List unique values in a DataFrame column | |
pd.unique(df.column_name.ravel()) | |
# Convert Series datatype to numeric, getting rid of any non-numeric values | |
df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True) | |
# Grab DataFrame rows where column has certain values | |
valuelist = ['value1', 'value2', 'value3'] | |
df = df[df.column.isin(valuelist)] |
Portions taken from http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html (in case that link ever dies.)
Download the following files from Oracle
README is empty
README is empty
- http://try.github.io
- rogerdudler.github.io
- http://pcottle.github.io/learnGitBranching/
- git-scm.com
- https://help.github.com/
- New Features and Hidden Gems: https://github.com/blog/category/ship
- Repo Browsing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = VoxPelli OAuth Test | |
core = 7.x | |
dependencies[] = oauth_common | |
dependencies[] = http_client |
NewerOlder