Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
favyen2 committed Dec 10, 2024
1 parent 7fccfb3 commit f6bbc78
Show file tree
Hide file tree
Showing 6 changed files with 767 additions and 24 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
beaker-py>=1.32
fastapi>=0.115
google-cloud-bigtable>=2.18
interrogate>=1.7
pydantic>=2.8
pytest>=8.2
Expand Down
7 changes: 5 additions & 2 deletions rslp/satlas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@
"""

from .job_launcher_worker import launch_workers, write_jobs, write_jobs_for_year_months
from .postprocess import postprocess_points
from .postprocess import merge_points, smooth_points
from .predict_pipeline import predict_multi, predict_pipeline
from .publish import publish_points

workflows = {
"predict": predict_pipeline,
"predict_multi": predict_multi,
"write_jobs": write_jobs,
"write_jobs_for_year_months": write_jobs_for_year_months,
"launch_workers": launch_workers,
"postprocess_points": postprocess_points,
"merge_points": merge_points,
"smooth_points": smooth_points,
"publish_points": publish_points,
}
Loading

0 comments on commit f6bbc78

Please sign in to comment.