This file contains 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
{"mapOptions":{"extent":{"xmin":2722939.17518007,"ymin":294359.45275287,"xmax":2723337.1027269,"ymax":294781.177369428,"spatialReference":{"wkid":2272}}},"operationalLayers":[],"baseMap":{"title":"Ortho Layer","baseMapLayers":[{"urlTemplate":"https://tiles.arcgis.com/tiles/fLeGjb7u4uXqeF9q/arcgis/rest/services/CityImagery_2019_3in/MapServer/tile/{level}/{row}/{col}","type":"WebTiledLayer","tileInfo":{"rows":256,"cols":256,"dpi":96,"format":"JPEG","compressionQuality":75,"storageFormat":"esriMapCacheStorageModeCompact","origin":{"x":-20037508.342787,"y":20037508.342787},"spatialReference":{"wkid":102100,"latestWkid":3857,"wkt":"PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_ |
This file contains 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
#!/usr/bin/env python | |
""" | |
Very simple HTTP server in python. | |
Usage:: | |
./dummy-web-server.py [<port>] | |
Send a GET request:: | |
curl http://localhost | |
Send a HEAD request:: | |
curl -I http://localhost | |
Send a POST request:: |
This file contains 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
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.65763863756668,40.78288610675234],[-76.56576519352502,40.926703681283904],[-76.23368436877388,41.10270945538174],[-76.02039987304963,41.41077361773745],[-75.79513641664575,41.542990010308046],[-75.74156424622451,41.63244773308856],[-75.74858885056851,41.81832105419328],[-75.84706276885875,41.971320985808696],[-75.86057772198644,42.092126244647204],[-75.68602101371745,42.401617508754654],[-75.54060375817696,42.488160627320845],[-75.1573737523487,42.57720550841206],[-74.96525070603018,42.68971761440865],[-74.62602604330955,42.75102435696016],[-74.42468601579316,42.69092751348241],[-74.14868337354655,42.304959025622715],[-74.07017869303017,41.94345790550482],[-74.17109756599318,41.75697770172915],[-74.13473392392123,41.63645296571696],[-74.1641626470146,41.478517189449946],[-74.36116474240607,41.23488664938731],[-74.26383293291428,41.092492144883714],[-74.27778743989961,40.880635149000646],[-74.38492369405988,40.743058754980815],[-74.59710789289 |
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 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
https://docs.google.com/presentation/d/1j5iiwfLgBhfOBWcwDPG3tzUfjXJiGY3l7JP3-vE36Lw/edit?usp=sharing |
This file contains 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
# There may be some more dependencies that I installed before getting to R and R Studio | |
sudo apt-get install libqt4-core libqt4-gui libqt4-gui qt4-dev-tools \ | |
fort77 tk8.5 tcl8.5 tk8.5-dev tcl8.5-dev cfortran | |
cd $INSTALL_FOLDER | |
curl http://lib.stat.cmu.edu/R/CRAN/src/base/R-3/R-3.0.2.tar.gz | |
tar xvf R-3.0.2.tar.gz | |
cd R-3.0.2 | |
export CXXFLAGS="$CXXFLAGS -fPIC" |
This file contains 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
var my_url = "https://api.500px.com/v1/photos?feature=user&username=bzwemmer&consumer_key=ByGjMRRao3aAozGsq6HuxZmJfA6ufWzNL32VPplp"; | |
var json = (function() { | |
var json = null; | |
$.ajax({ | |
'async': false, | |
'global': false, | |
'url': my_url, | |
'dataType': "json", | |
'success': function (data){ | |
json = data; |
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 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
if (typeof ppiin === "undefined" || !ppiin) { | |
var ppiin = {}; | |
ppiin.avi = {} | |
} | |
ppiin.avi.Point = Backbone.Model.extend({ | |
initialize: function () { | |
this.convertFromDollars(); | |
this.checkLocation(); | |
this.dispatcher = ppiin.avi.dispatcher | |
}, |
This file contains 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
Neighborhoods_Philadelphia.shp: | |
git clone [email protected]:azavea/geo-data.git | |
touch geo-data/Neighborhoods_Philadelphia/Neighborhoods_Philadelphia.shp | |
neighborhoods.json: Neighborhoods_Philadelphia.shp | |
ogr2ogr -f "GeoJSON" -t_srs "EPSG:4326" neighborhoods.json geo-data/Neighborhoods_Philadelphia/Neighborhoods_Philadelphia.shp | |
neighborhoods-topo.json: neighborhoods.json | |
topojson -o neighborhoods-topo.json --id-property NAME neighborhoods.json |
NewerOlder