Custom Query (1137 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (151 - 153 of 1137)

Ticket Resolution Summary Owner Reporter
#1967 fixed conficts in file overview.rst at the bottom - looks like a merge error live-demo@… astrid_emde
Description
#1168 fixed Configure GeoNode to use postgis and fix permission problems live-demo@… ingenieroariel
Description

Jeff Johnson provided a guide in https://gist.github.com/jj0hns0n/6058788

# set to use sqlite by default, cant create superuser cuz read-only db
# use postgres
sudo su - postgres
createuser geonode
psql -c "alter user geonode with encrypted password 'geonode';"
createdb -O geonode geonode
sudo vi /etc/postgresql/9.1/main/pg_hba.conf 
# change local access to password
sudo /etc/init.d/postgresql restart
 
# setup local_settings.py
cd /usr/lib/python2.7/dist-packages/geonode/
sudo wget https://raw.github.com/GeoNode/geonode/master/geonode/local_settings.py.sample
sudo mv local_settings.py.sample local_settings.py
sudo /etc/init.d/apache2 restart
 
# syncdb
django-admin syncdb --settings=geonode.settings --all
 
# create a superuser (one from fixtures doesnt seem to work)
django-admin createsuperuser --settings=geonode.settings
 
# change to port 8082 in settings.py
 
django-admin updatelayers --settings=geonode.settings
 
# make the uploaded dir
sudo mkdir /usr/lib/python2.7/dist-packages/geonode/uploaded
sudo chown user:user /usr/lib/python2.7/dist-packages/geonode/uploaded
 
# run updatelayers
django-admin updatelayers --settings=geonode.settings
 
# this will have created the dirs under uploaded to be owned by user 
# chown them to apache
sudo chown -R www-data:www-data /usr/lib/python2.7/dist-packages/geonode/uploaded
 
# collectstatic
django-admin collectstatic --settings=geonode.settings
 
# change apache entry to static_root
# line 21 change to static root
sudo vi /etc/apache2/sites-available/geonode
 
 
# bounce apache for good measure
sudo /etc/init.d/apache2 restart
 
#cp some shapefiles to your home dir to test upload
cp /usr/share/pyshared/django/contrib/gis/tests/data/interstates/* .
 
# test upload in browser
#1333 wontfix Consider adding Apache SIS live-demo@… darkblueb
Description

http://svn.apache.org/repos/asf/sis/presentations/FOSS4G-2013/abstract.txt The Geospatial integrity of geoscience software (GIGS) guidances is a set of tests developed by the authors of the well-known EPSG database. From their web site:

GIGS is a process developed in response to significant concern and user experiences of violations of geospatial integrity of data when using geoscience software, resulting in incorrect results, inconsistent understanding and misleading information for the user community.

This talk will cover the progress over the last 2 years in the implementation of GIGS tests in the GeoAPI conformance test suites. GeoAPI 3.0 is an OGC standard defining a set of Java interfaces that different libraries can implement. GeoAPI Conformance is a suite of JUnit tests that any GeoAPI implementation can leverage. The relationship with CITE tests will be briefly explained and the execution of GIGS tests will be demonstrated on Proj.4, the UCAR NetCDF library and Apache SIS.

The Apache Spatial Information System (SIS) is a top level project at the Apache Software Foundation (ASF). The goals of Apache SIS are to provide an ALv2 licensed Java toolkit and API that developers can leverage to build spatial information systems. This includes the OGC/ISO services commonly found in similar toolkits (metadata, referencing, queries, etc.) with particular attention given to the needs of geoscience applications and data integrity.

The SIS project has undergone successful incubation at the ASF in fall 2012. The project is both relatively young, and in the process of inheriting a relatively large code base from other projects. This situation gives to users an opportunity to influence the SIS design in an early stage and experiment now what may come later.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.