Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajiv Roopan committed Jun 16, 2015
1 parent 5c360f8 commit a01f7f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conf/httpd-app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ WSGIApplicationGroup %{GLOBAL}
</Directory>

Alias /static "/opt/bitnami/apps/django/lib/python2.7/site-packages/django/contrib/admin/static"
WSGIScriptAlias /Project '/opt/bitnami/apps/django/django_projects/geogekko/geogekko/wsgi.py'
WSGIScriptAlias / '/opt/bitnami/apps/django/django_projects/geogekko/geogekko/wsgi.py'

4 changes: 2 additions & 2 deletions core/management/commands/stream_ca.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Bounding boxes for geolocations
# Online-Tool to create boxes (c+p as raw CSV): http://boundingbox.klokantech.com/
GEOBOX_WORLD = [-180,-90,180,90]
GEOBOX_NY = [-123.16, 39.52, -115.76, 32.6]
GEOBOX_NY = [-123.16, 36.2, -115.76, 39.52]

class TweetStreamListener(StreamListener):

Expand Down Expand Up @@ -72,4 +72,4 @@ def on_error(self, status):
stream = Stream(auth, listener)

# search twitter for "congress" keyword
stream.filter(locations=GEOBOX_NY )
stream.filter(locations=GEOBOX_NY )

0 comments on commit a01f7f3

Please sign in to comment.