more addition for BirdWeather

This commit is contained in:
Patrick McGuire
2021-12-01 14:13:15 -05:00
parent 1390a0d180
commit f762b41c21
5 changed files with 33 additions and 18 deletions
+6
View File
@@ -141,6 +141,12 @@ DB_PWD=changeme
ICE_PWD=changeme ICE_PWD=changeme
#--------------------- BirdWeather Station Information -----------------------#
#_____________The variable below can be set to have your BirdNET-Pi____________#
#__________________also act as a BirdWeather listening station_________________#
BIRDWEATHER_ID=${BIRDWEATHER_ID}
#----------------------- Web-hosting/Caddy File-server -----------------------# #----------------------- Web-hosting/Caddy File-server -----------------------#
#________The four variables below can be set to enable internet access_________# #________The four variables below can be set to enable internet access_________#
#____________to your data,(e.g., extractions, raw data, live___________________# #____________to your data,(e.g., extractions, raw data, live___________________#
+22 -14
View File
@@ -1,18 +1,19 @@
# Birders Guide Installer Configuration File # Birders Guide Installer Configuration File
########################################################################### ################################################################################
# Fill this out in order to install BirdNET-Lite # Fill this out in order to install BirdNET-Lite
# Follow the instructions for each section. # Follow the instructions for each section.
########################################################################### ################################################################################
# 1. To find your latitude and longitude, you can go to https://maps.google.com # 1. To find your latitude and longitude, you can go to https://maps.google.com
# 1a. Find the location on the map where you will be putting the BirdNET-Lite # 1a. Find the location on the map where you will be putting the BirdNET-Lite
# 1b. Right-click the location to view the latitude and longitude and click them to # 1b. Right-click the location to view the latitude and longitude and click
# copy them to your clip-board. # them to copy them to your clip-board.
# 2. Enter the latitude and longitude here. Be certain not to mix them up and # 2. Enter the latitude and longitude here. Be certain not to mix them up.
# only go to the thousandth's decimal place. The first number is the latitude, # The first number is the latitude, and the second is longitude. See the
# and the second is longitude. See the example below. # example below.
#
# Example: these coordinates would indicate the Eiffel Tower in Paris, France. # Example: these coordinates would indicate the Eiffel Tower in Paris, France.
# LATITUDE=48.858 # LATITUDE=48.858
# LONGITUDE=2.294 # LONGITUDE=2.294
@@ -22,17 +23,17 @@ LONGITUDE=
# 1. CADDY_PWD is the password you will use to access your live audio stream and # 1. CADDY_PWD is the password you will use to access your live audio stream and
# maintenance tools. You can set this to anything, but keep it alpha-numeric. # maintenance tools. You can set this to anything, but keep it alpha-numeric.
# You will probably also want to write this one down if you ever plan to listen # You will probably also want to write this one down if you ever plan to
# to the live stream. # listen to the live stream.
# 2. ICE_PWD is the password that IceCast2 will use to authenticate the stream source. # 2. ICE_PWD is the password that IceCast2 will use to authenticate the stream
# You can set this to anything also, but keep it alpha-numeric. You will never use # source.You can set this to anything also, but keep it alpha-numeric. You
# this again, so just set it to your favorite word. # will never use this again, so just set it to your favorite word.
CADDY_PWD= CADDY_PWD=
ICE_PWD= ICE_PWD=
# DB_PWD is the password that the system will use to access the database. Set this to # DB_PWD is the password that the system will use to access the database. Set
# anything you want. # this to anything you want.
DB_PWD= DB_PWD=
@@ -49,3 +50,10 @@ PUSHED_APP_KEY=
BIRDNETPI_URL= BIRDNETPI_URL=
BIRDNETLOG_URL= BIRDNETLOG_URL=
EXTRACTIONLOG_URL= EXTRACTIONLOG_URL=
# If you would like to POST your BirdNET-Pi detections to
# https://app.birdweather.com, reach out to github:@timsterc for a unique and
# confidential BirdWeather ID. Place that here if you have one already.
# You can always add this later and the system will immediately start POSTing.
BIRDWEATHER_ID=
+2
View File
@@ -1,3 +1,5 @@
# BirdWeather edits by @timsterc
# Other edits by @CaiusX and @mcguirepr89
import os import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os.environ['CUDA_VISIBLE_DEVICES'] = '' os.environ['CUDA_VISIBLE_DEVICES'] = ''
+2 -4
View File
@@ -1,5 +1,7 @@
/* style sheet */ /* style sheet */
* { * {
font-family: 'Arial', 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
box-sizing: border-box; box-sizing: border-box;
} }
@@ -34,16 +36,12 @@ h1 {
text-align: center; text-align: center;
color: black; color: black;
font-size: xx-large; font-size: xx-large;
font-family: 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
} }
h2 { h2 {
text-align: center; text-align: center;
color: black; color: black;
font-size: large; font-size: large;
font-family: 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
} }
th, th,
+1
View File
@@ -36,5 +36,6 @@ six
SoundFile SoundFile
tflite-runtime tflite-runtime
threadpoolctl threadpoolctl
tzlocal
urllib3 urllib3
wheel wheel