One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| (geonode) jdev@linux /home/geonode/dev/geonode $ python manage.py migrate | |
| Not enabling BingMaps base layer as a BING_API_KEY is not defined in local_settings.py file. | |
| Traceback (most recent call last): | |
| File "manage.py", line 28, in <module> | |
| execute_from_command_line(sys.argv) | |
| File "/home/geonode/dev/.venvs/geonode/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 399, in execute_from_command_line | |
| utility.execute() | |
| File "/home/geonode/dev/.venvs/geonode/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 392, in execute | |
| self.fetch_command(subcommand).run_from_argv(self.argv) | |
| File "/home/geonode/dev/.venvs/geonode/local/lib/python2.7/site-packages/django/core/management/base.py", line 242, in run_from_argv |
| /usr/bin/python2.7 landsatProcessing.py | |
| L7_Kenya | |
| Ungzip Landsat files in /home/hempire/rawData/L7Dir/LE07_ | |
| Import in GRASS GIS | |
| > LE07_L1TP_166061_20170221_20170319_01_T1_B2 | |
| Proceeding with import of 1 raster bands... | |
| Importing raster map <LE07_L1TP_166061_20170221_20170319_01_T1_B2>... | |
| Region for the current mapset updated | |
| > LE07_L1TP_166061_20170221_20170319_01_T1_B5 |
| /usr/bin/python2.7 /home/hempire/PycharmProjects/GRASSproject/landsatProcessing.py | |
| L7_Kenya | |
| Ungzip Landsat files in /home/hempire/grassdata/L7Dir/landsat | |
| Import in GRASS GIS | |
| > LE07_L1TP_166060_20030303_20170126_01_T1_B2 | |
| Proceeding with import of 1 raster bands... | |
| Importing raster map <LE07_L1TP_166060_20030303_20170126_01_T1_B2>... | |
| > LE07_L1TP_166060_20161016_20161111_01_T1_B2 | |
| Region for the current mapset updated |
| <% | |
| String redirectURL = "/geoserver"; | |
| response.sendRedirect(redirectURL); | |
| %> |
| import retrofit2.Retrofit; | |
| import retrofit2.converter.gson.GsonConverterFactory; | |
| public class ApiClient { | |
| private static final String BASE_URL = "http://your-domain-name.000webhostapp.com/"; | |
| private static Retrofit retrofit; | |
| public static Retrofit getApiClient() { |
| # to be able to import ldap run pip install python-ldap | |
| import ldap | |
| if __name__ == "__main__": | |
| ldap_server="x.x.x.x" | |
| username = "someuser" | |
| password= "somepassword" | |
| # the following is the user_dn format provided by the ldap server | |
| user_dn = "uid="+username+",ou=someou,dc=somedc,dc=local" |
| import sys | |
| from PyQt4.QtCore import QTimer, QVariant, SIGNAL | |
| from PyQt4.QtGui import * | |
| from PyQt4.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply | |
| from PyQt4.QtWebKit import QWebView | |
| html = """<html> | |
| <head> | |
| <title>Test page for the download:// scheme</title> | |
| </head> |
| from cmislib import CmisClient | |
| # testing cmis by getting repository information | |
| def repository(): | |
| client = CmisClient('http://localhost:8081/alfresco/api/-default-/public/cmis/versions/1.1/atom', | |
| '<user>', '<password>') | |
| repo = client.defaultRepository | |
| repo_info = repo.info |
First we'll update your local master branch. Go to your local project and check out the branch you want to merge into (your local master branch)
$ git checkout masterFetch the remote, bringing the branches and their commits from the remote repository. You can use the -p, --prune option to delete any remote-tracking references that no longer exist in the remote. Commits to master will be stored in a local branch, remotes/origin/master