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
| #!/usr/bin/env python | |
| """ | |
| A script to grab timeseries from MODIS data using GDAL and python | |
| Author: J Gomez-Dans/NCEO & UCL | |
| """ | |
| __author__: J Gómez-Dans | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from osgeo import gdal |
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
| sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable | |
| sudo apt-get update | |
| sudo apt-get install postgis python-pycsw nginx uwsgi uwsgi-plugin-python virtualenvwrapper python-dev python-imaging python-psycopg2 | |
| sudo apt-get install git | |
| # Create geonode system user | |
| sudo adduser --system --quiet --home /var/lib/geonode --no-create-home --shell /bin/bash --group --gecos "GeoNode administrator" geonode | |
| sudo mkdir -p /var/lib/geonode |
OlderNewer