- Antes de empezar...
- A year of edits 2008, 2011, 2012
- Need a map
- Ver, consultar, editar:
- Escuela de Bellas Artes en OSM
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 pandas as pd | |
import urllib.request | |
# path to your csv file with the endpoint coordinates | |
coordinates = pd.read_csv('swe_points.csv') | |
# graphhopper API call building blocks. Check Graphhopper documentation how to modify these. | |
urlStart = 'http://localhost:8989/route?' | |
point = 'point=' | |
urlEnd = '&type=gpx&instructions=false&vehicle=car' |
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
#! /bin/bash | |
# Convert Landsat 8 GeoTIFF images into RGB pan-sharpened JPEGs. | |
# | |
# Requirements: | |
# * gdal http://www.mapbox.com/tilemill/docs/guides/gdal/ | |
# * convert (image-magick) | |
# | |
# Reference info: | |
# http://www.mapbox.com/blog/putting-landsat-8-bands-to-work/ |