Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
0a7664c
ftp server testing
mfitzasp Jun 6, 2025
d3703a7
ftp stuff
mfitzasp Jun 7, 2025
5e7c52e
Update .gitignore
mfitzasp Jun 7, 2025
2ec8f92
http ingestion
mfitzasp Jun 7, 2025
9ebe20c
Merge branch 'feature/alternative_ingestion' of https://github.com/LC…
mfitzasp Jun 7, 2025
26bf8e1
http ingestion working at LCS1
mfitzasp Jun 7, 2025
f32c5a7
Update post_exposure_subprocess.py
mfitzasp Jun 7, 2025
779e474
typo
mfitzasp Jun 7, 2025
8ffab2d
Update sequencer.py
mfitzasp Jun 18, 2025
b8c54d6
Update sequencer.py
mfitzasp Jun 18, 2025
076fb7b
upload variance and badpixel to http pipe
mfitzasp Jun 18, 2025
e5b91b6
Update obs.py
mfitzasp Jun 18, 2025
0b45a28
don't check altitude while parked
mfitzasp Jun 18, 2025
5b29904
typos and configs
mfitzasp Jun 18, 2025
7af1325
Merge pull request #221 from LCOGT/dev
mfitzasp Jun 19, 2025
37b349f
remove variance and don't remove calibrations
mfitzasp Jun 19, 2025
51400bd
api base config item
mfitzasp Jun 20, 2025
9dbcd7f
status_http_base
mfitzasp Jun 20, 2025
4b61c96
api config tidyup
mfitzasp Jun 20, 2025
6ffcd7e
set configs
mfitzasp Jun 20, 2025
752f88a
lcs config edit
mfitzasp Jun 20, 2025
9e6bb7a
api options updated
mfitzasp Jun 20, 2025
93b7d05
files flying everywhere
mfitzasp Jun 21, 2025
ebedb11
mount name
mfitzasp Jun 23, 2025
b0e06a0
typo
mfitzasp Jun 24, 2025
e55dfd6
Merge pull request #222 from LCOGT/dev
mfitzasp Jun 30, 2025
73c296e
config updates
mfitzasp Jun 30, 2025
d352953
Merge branch 'feature/alternative_ingestion' of https://github.com/LC…
mfitzasp Jun 30, 2025
b5d1905
configs #2
mfitzasp Jun 30, 2025
046f37c
include maxim camera control and bggs1
mfitzasp Jul 3, 2025
c0b7a90
Merge pull request #223 from LCOGT/BGGBranch
mfitzasp Jul 3, 2025
b85cc82
scheduler updates
mfitzasp Jul 3, 2025
aee8c58
Merge branch 'feature/alternative_ingestion' of https://github.com/LC…
mfitzasp Jul 3, 2025
b47ca48
projects working.
mfitzasp Jul 4, 2025
85934ca
projects reporting properly
mfitzasp Jul 5, 2025
e866ae2
Update photometry_process.py
mfitzasp Jul 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ output.txt
aftersourceplots.png
beforesourceplots.png
brightstarplots.png
ftpsecrets.json
httpsecrets.json
11 changes: 11 additions & 0 deletions configs/aro1/obs_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@
'obs_id': 'aro1',


'api_http_base' : 'https://api.photonranch.org/api/',
'jobs_http_base' : 'https://jobs.photonranch.org/jobs/',
'logs_http_base' : 'https://logs.photonranch.org/logs/',
'status_http_base' : 'https://status.photonranch.org/status/',

# Name, local and owner stuff
'name': 'Apache Ridge Observatory 0m3 f4.9/9',

Expand Down Expand Up @@ -198,6 +203,12 @@


'push_file_list_to_pipe_queue': False,
# LINKS TO PIPE FOLDER
'save_images_to_pipe_for_processing': True,
'pipe_save_method': 'local', # Can also be 'ftp' or 'http' for that transfer but also 'local' pipe for a local LAN pipe server

'ftp_ingestion_folder': 'C:/ftp_ingestion/',
'http_ingestion_folder': 'C:/http_ingestion/',

# The site can fully platesolve each image before it is sent off to s3 or a PIPE
# If there are spare enough cycles at the site, this saves time for the PIPE
Expand Down
11 changes: 11 additions & 0 deletions configs/aro2/obs_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
# The unique identifier for this obs
'obs_id': 'aro2',


'api_http_base' : 'https://api.photonranch.org/api/',
'jobs_http_base' : 'https://jobs.photonranch.org/jobs/',
'logs_http_base' : 'https://logs.photonranch.org/logs/',
'status_http_base' : 'https://status.photonranch.org/status/',
# Name, local and owner stuff
'name': "Apache Ridge Observatory PW 0m45 f6.8 52'X39'",
'airport_code': 'SAF',
Expand Down Expand Up @@ -180,6 +185,12 @@


'push_file_list_to_pipe_queue': False,
# LINKS TO PIPE FOLDER
'save_images_to_pipe_for_processing': True,
'pipe_save_method': 'local', # Can also be 'ftp' or 'http' for that transfer but also 'local' pipe for a local LAN pipe server

'ftp_ingestion_folder': 'C:/ftp_ingestion/',
'http_ingestion_folder': 'C:/http_ingestion/',

# The site can fully platesolve each image before it is sent off to s3 or a PIPE
# If there are spare enough cycles at the site, this saves time for the PIPE
Expand Down
Loading