├── .flake8 ├── .github └── workflows │ ├── black.yml │ ├── ci.yml │ ├── deploy.yml │ └── flake8.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.rst ├── README.md ├── cite_dependencies.py ├── docs ├── Makefile ├── _build │ ├── doctrees │ │ ├── environment.pickle │ │ ├── index.doctree │ │ └── source │ │ │ ├── ObservationScheduler.doctree │ │ │ ├── TilingDetermination.doctree │ │ │ ├── UniversalObservationScheduler.doctree │ │ │ └── UniversalScheduleLauncher.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── index.rst.txt │ │ └── source │ │ │ ├── ObservationScheduler.rst.txt │ │ │ ├── TilingDetermination.rst.txt │ │ │ ├── UniversalObservationScheduler.rst.txt │ │ │ └── UniversalScheduleLauncher.rst.txt │ │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ └── sphinx_highlight.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── source │ │ ├── ObservationScheduler.html │ │ ├── TilingDetermination.html │ │ ├── UniversalObservationScheduler.html │ │ └── UniversalScheduleLauncher.html ├── conf.py ├── index.rst ├── make.bat └── source │ ├── ObservationScheduler.rst │ └── TilingDetermination.rst ├── environment.yml ├── examples ├── README.md ├── config │ ├── ExampleConfig.ini │ ├── FollowupParameters_ATCA.ini │ ├── FollowupParameters_CTAON.ini │ ├── FollowupParameters_CTAOS.ini │ ├── FollowupParameters_ESO.ini │ ├── FollowupParameters_ESO2.ini │ ├── FollowupParameters_HA.ini │ ├── FollowupParameters_HESS.ini │ ├── FollowupParameters_HST.ini │ ├── FollowupParameters_LP.ini │ ├── FollowupParameters_LP2.ini │ ├── FollowupParameters_LST.ini │ ├── FollowupParameters_LST1.ini │ ├── FollowupParameters_LST2.ini │ ├── FollowupParameters_LST3.ini │ ├── FollowupParameters_LST4.ini │ ├── FollowupParameters_MAGIC.ini │ ├── FollowupParameters_OHP.ini │ ├── FollowupParameters_SA.ini │ └── FollowupParameters_SWIFT.ini ├── launcher │ ├── Tiling_Observations.ipynb │ ├── Tiling_Observations.py │ ├── Tiling_Observations_GBM_Localizations.ipynb │ ├── Tiling_Observations_NITRATES.ipynb │ ├── Tiling_Observations_NeutrinoCascade.ipynb │ ├── Tiling_Observations_Nobs.ipynb │ ├── Tiling_Observations_Nobs.py │ ├── Tiling_Observations_Nobs_Paper_Plots.ipynb │ ├── Tiling_Observations_Nobs_Space.ipynb │ ├── Tiling_Observations_Nobs_Space.py │ ├── Tiling_Observations_cWB.ipynb │ └── Tiling_Observations_galaxies.ipynb ├── paperplots │ ├── 927563_PGW_cumulativeDistribution.png │ ├── 927563_Pgal_cumulativeDistribution.png │ ├── GRB 231012A_PGW_cumulativeDistribution.png │ ├── Plot_PrettyMap_927563_lalinference_CTAO.png │ ├── Plot_PrettyMap_GRB231012A_PWG.png │ ├── Plot_PrettyMap_IPN_PWG.png │ ├── Plot_PrettyMap_S190814bv_MWL.png │ ├── S190814bv_PGW_cumulativeDistribution.png │ └── S190814bv_Pgal_cumulativeDistribution.png ├── sciencecases │ ├── 927563_lalinference │ │ ├── PGalinFoV_NObs │ │ │ ├── AltitudevsTime_CTAO-N.png │ │ │ ├── AltitudevsTime_CTAO-S.png │ │ │ ├── EvolutionPlot │ │ │ │ ├── Zoom_Pointing_0.png │ │ │ │ ├── Zoom_Pointing_1.png │ │ │ │ ├── Zoom_Pointing_10.png │ │ │ │ ├── Zoom_Pointing_11.png │ │ │ │ ├── Zoom_Pointing_12.png │ │ │ │ ├── Zoom_Pointing_13.png │ │ │ │ ├── Zoom_Pointing_14.png │ │ │ │ ├── Zoom_Pointing_15.png │ │ │ │ ├── Zoom_Pointing_16.png │ │ │ │ ├── Zoom_Pointing_17.png │ │ │ │ ├── Zoom_Pointing_18.png │ │ │ │ ├── Zoom_Pointing_19.png │ │ │ │ ├── Zoom_Pointing_2.png │ │ │ │ ├── Zoom_Pointing_20.png │ │ │ │ ├── Zoom_Pointing_3.png │ │ │ │ ├── Zoom_Pointing_4.png │ │ │ │ ├── Zoom_Pointing_5.png │ │ │ │ ├── Zoom_Pointing_6.png │ │ │ │ ├── Zoom_Pointing_7.png │ │ │ │ ├── Zoom_Pointing_8.png │ │ │ │ └── Zoom_Pointing_9.png │ │ │ ├── Plot_PrettyMap_CTAO-N.png │ │ │ ├── Plot_PrettyMap_CTAO-S.png │ │ │ ├── Plot_PrettyMap_all.png │ │ │ ├── Pointing_Plotting_CTAO-N │ │ │ │ ├── Pointings0.png │ │ │ │ ├── Pointings1.png │ │ │ │ ├── Pointings10.png │ │ │ │ ├── Pointings11.png │ │ │ │ ├── Pointings12.png │ │ │ │ ├── Pointings13.png │ │ │ │ ├── Pointings14.png │ │ │ │ ├── Pointings2.png │ │ │ │ ├── Pointings3.png │ │ │ │ ├── Pointings4.png │ │ │ │ ├── Pointings5.png │ │ │ │ ├── Pointings6.png │ │ │ │ ├── Pointings7.png │ │ │ │ ├── Pointings8.png │ │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_CTAO-S │ │ │ │ ├── Pointings0.png │ │ │ │ ├── Pointings1.png │ │ │ │ ├── Pointings2.png │ │ │ │ ├── Pointings3.png │ │ │ │ ├── Pointings4.png │ │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_all │ │ │ │ ├── Pointings0.png │ │ │ │ ├── Pointings1.png │ │ │ │ ├── Pointings10.png │ │ │ │ ├── Pointings11.png │ │ │ │ ├── Pointings12.png │ │ │ │ ├── Pointings13.png │ │ │ │ ├── Pointings14.png │ │ │ │ ├── Pointings15.png │ │ │ │ ├── Pointings16.png │ │ │ │ ├── Pointings17.png │ │ │ │ ├── Pointings18.png │ │ │ │ ├── Pointings19.png │ │ │ │ ├── Pointings2.png │ │ │ │ ├── Pointings20.png │ │ │ │ ├── Pointings3.png │ │ │ │ ├── Pointings4.png │ │ │ │ ├── Pointings5.png │ │ │ │ ├── Pointings6.png │ │ │ │ ├── Pointings7.png │ │ │ │ ├── Pointings8.png │ │ │ │ └── Pointings9.png │ │ │ ├── RankingObservationTimes_Complete.txt │ │ │ ├── RankingObservationTimes_forAlerter.txt │ │ │ ├── RankingObservationTimes_forShifters.txt │ │ │ ├── SuggestedPointings_GWOptimisation.txt │ │ │ ├── SuggestedPointings_GWOptimisation_CTAO-N.txt │ │ │ └── SuggestedPointings_GWOptimisation_CTAO-S.txt │ │ └── support │ │ │ └── 927563_lalinference.fits.gz │ ├── IPN_GRB20120612 │ │ └── PGWinFoV_NObs │ │ │ ├── AltitudevsTime_ATCA.png │ │ │ ├── EvolutionPlot │ │ │ ├── Zoom_Pointing_0.png │ │ │ ├── Zoom_Pointing_1.png │ │ │ ├── Zoom_Pointing_10.png │ │ │ ├── Zoom_Pointing_11.png │ │ │ ├── Zoom_Pointing_12.png │ │ │ ├── Zoom_Pointing_13.png │ │ │ ├── Zoom_Pointing_14.png │ │ │ ├── Zoom_Pointing_15.png │ │ │ ├── Zoom_Pointing_16.png │ │ │ ├── Zoom_Pointing_17.png │ │ │ ├── Zoom_Pointing_18.png │ │ │ ├── Zoom_Pointing_19.png │ │ │ ├── Zoom_Pointing_2.png │ │ │ ├── Zoom_Pointing_20.png │ │ │ ├── Zoom_Pointing_21.png │ │ │ ├── Zoom_Pointing_22.png │ │ │ ├── Zoom_Pointing_23.png │ │ │ ├── Zoom_Pointing_24.png │ │ │ ├── Zoom_Pointing_25.png │ │ │ ├── Zoom_Pointing_26.png │ │ │ ├── Zoom_Pointing_27.png │ │ │ ├── Zoom_Pointing_28.png │ │ │ ├── Zoom_Pointing_29.png │ │ │ ├── Zoom_Pointing_3.png │ │ │ ├── Zoom_Pointing_30.png │ │ │ ├── Zoom_Pointing_31.png │ │ │ ├── Zoom_Pointing_32.png │ │ │ ├── Zoom_Pointing_33.png │ │ │ ├── Zoom_Pointing_34.png │ │ │ ├── Zoom_Pointing_35.png │ │ │ ├── Zoom_Pointing_36.png │ │ │ ├── Zoom_Pointing_37.png │ │ │ ├── Zoom_Pointing_38.png │ │ │ ├── Zoom_Pointing_39.png │ │ │ ├── Zoom_Pointing_4.png │ │ │ ├── Zoom_Pointing_40.png │ │ │ ├── Zoom_Pointing_41.png │ │ │ ├── Zoom_Pointing_42.png │ │ │ ├── Zoom_Pointing_43.png │ │ │ ├── Zoom_Pointing_44.png │ │ │ ├── Zoom_Pointing_45.png │ │ │ ├── Zoom_Pointing_46.png │ │ │ ├── Zoom_Pointing_47.png │ │ │ ├── Zoom_Pointing_48.png │ │ │ ├── Zoom_Pointing_49.png │ │ │ ├── Zoom_Pointing_5.png │ │ │ ├── Zoom_Pointing_6.png │ │ │ ├── Zoom_Pointing_7.png │ │ │ ├── Zoom_Pointing_8.png │ │ │ └── Zoom_Pointing_9.png │ │ │ ├── Plot_PrettyMap_ATCA.png │ │ │ ├── Plot_PrettyMap_all.png │ │ │ ├── Pointing_Plotting_ATCA │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings12.png │ │ │ ├── Pointings13.png │ │ │ ├── Pointings14.png │ │ │ ├── Pointings15.png │ │ │ ├── Pointings16.png │ │ │ ├── Pointings17.png │ │ │ ├── Pointings18.png │ │ │ ├── Pointings19.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings20.png │ │ │ ├── Pointings21.png │ │ │ ├── Pointings22.png │ │ │ ├── Pointings23.png │ │ │ ├── Pointings24.png │ │ │ ├── Pointings25.png │ │ │ ├── Pointings26.png │ │ │ ├── Pointings27.png │ │ │ ├── Pointings28.png │ │ │ ├── Pointings29.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings30.png │ │ │ ├── Pointings31.png │ │ │ ├── Pointings32.png │ │ │ ├── Pointings33.png │ │ │ ├── Pointings34.png │ │ │ ├── Pointings35.png │ │ │ ├── Pointings36.png │ │ │ ├── Pointings37.png │ │ │ ├── Pointings38.png │ │ │ ├── Pointings39.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings40.png │ │ │ ├── Pointings41.png │ │ │ ├── Pointings42.png │ │ │ ├── Pointings43.png │ │ │ ├── Pointings44.png │ │ │ ├── Pointings45.png │ │ │ ├── Pointings46.png │ │ │ ├── Pointings47.png │ │ │ ├── Pointings48.png │ │ │ ├── Pointings49.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_all │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings12.png │ │ │ ├── Pointings13.png │ │ │ ├── Pointings14.png │ │ │ ├── Pointings15.png │ │ │ ├── Pointings16.png │ │ │ ├── Pointings17.png │ │ │ ├── Pointings18.png │ │ │ ├── Pointings19.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings20.png │ │ │ ├── Pointings21.png │ │ │ ├── Pointings22.png │ │ │ ├── Pointings23.png │ │ │ ├── Pointings24.png │ │ │ ├── Pointings25.png │ │ │ ├── Pointings26.png │ │ │ ├── Pointings27.png │ │ │ ├── Pointings28.png │ │ │ ├── Pointings29.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings30.png │ │ │ ├── Pointings31.png │ │ │ ├── Pointings32.png │ │ │ ├── Pointings33.png │ │ │ ├── Pointings34.png │ │ │ ├── Pointings35.png │ │ │ ├── Pointings36.png │ │ │ ├── Pointings37.png │ │ │ ├── Pointings38.png │ │ │ ├── Pointings39.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings40.png │ │ │ ├── Pointings41.png │ │ │ ├── Pointings42.png │ │ │ ├── Pointings43.png │ │ │ ├── Pointings44.png │ │ │ ├── Pointings45.png │ │ │ ├── Pointings46.png │ │ │ ├── Pointings47.png │ │ │ ├── Pointings48.png │ │ │ ├── Pointings49.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── RankingObservationTimes_Complete.txt │ │ │ ├── RankingObservationTimes_forAlerter.txt │ │ │ ├── RankingObservationTimes_forShifters.txt │ │ │ ├── SuggestedPointings_GWOptimisation.txt │ │ │ └── SuggestedPointings_GWOptimisation_ATCA.txt │ ├── P1500071 │ │ └── PGalinFoV_NObs │ │ │ ├── AltitudevsTime_CTAO-N.png │ │ │ ├── AltitudevsTime_CTAO-S.png │ │ │ ├── EvolutionPlot │ │ │ ├── Zoom_Pointing_0.png │ │ │ ├── Zoom_Pointing_1.png │ │ │ ├── Zoom_Pointing_10.png │ │ │ ├── Zoom_Pointing_11.png │ │ │ ├── Zoom_Pointing_12.png │ │ │ ├── Zoom_Pointing_13.png │ │ │ ├── Zoom_Pointing_14.png │ │ │ ├── Zoom_Pointing_15.png │ │ │ ├── Zoom_Pointing_16.png │ │ │ ├── Zoom_Pointing_17.png │ │ │ ├── Zoom_Pointing_18.png │ │ │ ├── Zoom_Pointing_19.png │ │ │ ├── Zoom_Pointing_2.png │ │ │ ├── Zoom_Pointing_20.png │ │ │ ├── Zoom_Pointing_3.png │ │ │ ├── Zoom_Pointing_4.png │ │ │ ├── Zoom_Pointing_5.png │ │ │ ├── Zoom_Pointing_6.png │ │ │ ├── Zoom_Pointing_7.png │ │ │ ├── Zoom_Pointing_8.png │ │ │ └── Zoom_Pointing_9.png │ │ │ ├── Plot_PrettyMap_CTAO-N.png │ │ │ ├── Plot_PrettyMap_CTAO-S.png │ │ │ ├── Pointing_Plotting_CTAO-N │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings12.png │ │ │ ├── Pointings13.png │ │ │ ├── Pointings14.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_CTAO-S │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── RankingObservationTimes_Complete.txt │ │ │ ├── RankingObservationTimes_forAlerter.txt │ │ │ ├── RankingObservationTimes_forShifters.txt │ │ │ ├── SuggestedPointings_GWOptimisation.txt │ │ │ ├── SuggestedPointings_GWOptimisation_CTAO-N.txt │ │ │ └── SuggestedPointings_GWOptimisation_CTAO-S.txt │ ├── S190814bv │ │ └── PGalinFoV_NObs │ │ │ ├── AltitudevsTime_ESO.png │ │ │ ├── AltitudevsTime_ESO2.png │ │ │ ├── AltitudevsTime_HA.png │ │ │ ├── AltitudevsTime_LP.png │ │ │ ├── AltitudevsTime_LP2.png │ │ │ ├── AltitudevsTime_OHP.png │ │ │ ├── AltitudevsTime_SA.png │ │ │ ├── EvolutionPlot │ │ │ ├── Zoom_Pointing_0.png │ │ │ ├── Zoom_Pointing_1.png │ │ │ ├── Zoom_Pointing_10.png │ │ │ ├── Zoom_Pointing_11.png │ │ │ ├── Zoom_Pointing_12.png │ │ │ ├── Zoom_Pointing_13.png │ │ │ ├── Zoom_Pointing_14.png │ │ │ ├── Zoom_Pointing_15.png │ │ │ ├── Zoom_Pointing_16.png │ │ │ ├── Zoom_Pointing_17.png │ │ │ ├── Zoom_Pointing_18.png │ │ │ ├── Zoom_Pointing_19.png │ │ │ ├── Zoom_Pointing_2.png │ │ │ ├── Zoom_Pointing_20.png │ │ │ ├── Zoom_Pointing_21.png │ │ │ ├── Zoom_Pointing_22.png │ │ │ ├── Zoom_Pointing_23.png │ │ │ ├── Zoom_Pointing_24.png │ │ │ ├── Zoom_Pointing_25.png │ │ │ ├── Zoom_Pointing_26.png │ │ │ ├── Zoom_Pointing_27.png │ │ │ ├── Zoom_Pointing_28.png │ │ │ ├── Zoom_Pointing_29.png │ │ │ ├── Zoom_Pointing_3.png │ │ │ ├── Zoom_Pointing_30.png │ │ │ ├── Zoom_Pointing_31.png │ │ │ ├── Zoom_Pointing_32.png │ │ │ ├── Zoom_Pointing_33.png │ │ │ ├── Zoom_Pointing_34.png │ │ │ ├── Zoom_Pointing_35.png │ │ │ ├── Zoom_Pointing_36.png │ │ │ ├── Zoom_Pointing_37.png │ │ │ ├── Zoom_Pointing_38.png │ │ │ ├── Zoom_Pointing_39.png │ │ │ ├── Zoom_Pointing_4.png │ │ │ ├── Zoom_Pointing_40.png │ │ │ ├── Zoom_Pointing_41.png │ │ │ ├── Zoom_Pointing_42.png │ │ │ ├── Zoom_Pointing_43.png │ │ │ ├── Zoom_Pointing_44.png │ │ │ ├── Zoom_Pointing_45.png │ │ │ ├── Zoom_Pointing_46.png │ │ │ ├── Zoom_Pointing_47.png │ │ │ ├── Zoom_Pointing_48.png │ │ │ ├── Zoom_Pointing_49.png │ │ │ ├── Zoom_Pointing_5.png │ │ │ ├── Zoom_Pointing_50.png │ │ │ ├── Zoom_Pointing_51.png │ │ │ ├── Zoom_Pointing_52.png │ │ │ ├── Zoom_Pointing_53.png │ │ │ ├── Zoom_Pointing_54.png │ │ │ ├── Zoom_Pointing_55.png │ │ │ ├── Zoom_Pointing_56.png │ │ │ ├── Zoom_Pointing_57.png │ │ │ ├── Zoom_Pointing_58.png │ │ │ ├── Zoom_Pointing_59.png │ │ │ ├── Zoom_Pointing_6.png │ │ │ ├── Zoom_Pointing_7.png │ │ │ ├── Zoom_Pointing_8.png │ │ │ └── Zoom_Pointing_9.png │ │ │ ├── Plot_PrettyMap_ESO.png │ │ │ ├── Plot_PrettyMap_ESO2.png │ │ │ ├── Plot_PrettyMap_HA.png │ │ │ ├── Plot_PrettyMap_LP.png │ │ │ ├── Plot_PrettyMap_LP2.png │ │ │ ├── Plot_PrettyMap_OHP.png │ │ │ ├── Plot_PrettyMap_SA.png │ │ │ ├── Plot_PrettyMap_all.png │ │ │ ├── Pointing_Plotting_ESO │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_ESO2 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_HA │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_LP │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_LP2 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_OHP │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_SA │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── Pointing_Plotting_all │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings12.png │ │ │ ├── Pointings13.png │ │ │ ├── Pointings14.png │ │ │ ├── Pointings15.png │ │ │ ├── Pointings16.png │ │ │ ├── Pointings17.png │ │ │ ├── Pointings18.png │ │ │ ├── Pointings19.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings20.png │ │ │ ├── Pointings21.png │ │ │ ├── Pointings22.png │ │ │ ├── Pointings23.png │ │ │ ├── Pointings24.png │ │ │ ├── Pointings25.png │ │ │ ├── Pointings26.png │ │ │ ├── Pointings27.png │ │ │ ├── Pointings28.png │ │ │ ├── Pointings29.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings30.png │ │ │ ├── Pointings31.png │ │ │ ├── Pointings32.png │ │ │ ├── Pointings33.png │ │ │ ├── Pointings34.png │ │ │ ├── Pointings35.png │ │ │ ├── Pointings36.png │ │ │ ├── Pointings37.png │ │ │ ├── Pointings38.png │ │ │ ├── Pointings39.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings40.png │ │ │ ├── Pointings41.png │ │ │ ├── Pointings42.png │ │ │ ├── Pointings43.png │ │ │ ├── Pointings44.png │ │ │ ├── Pointings45.png │ │ │ ├── Pointings46.png │ │ │ ├── Pointings47.png │ │ │ ├── Pointings48.png │ │ │ ├── Pointings49.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings50.png │ │ │ ├── Pointings51.png │ │ │ ├── Pointings52.png │ │ │ ├── Pointings53.png │ │ │ ├── Pointings54.png │ │ │ ├── Pointings55.png │ │ │ ├── Pointings56.png │ │ │ ├── Pointings57.png │ │ │ ├── Pointings58.png │ │ │ ├── Pointings59.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── RankingObservationTimes_Complete.txt │ │ │ ├── RankingObservationTimes_forAlerter.txt │ │ │ ├── RankingObservationTimes_forShifters.txt │ │ │ ├── SuggestedPointings_GWOptimisation.txt │ │ │ ├── SuggestedPointings_GWOptimisation_ESO.txt │ │ │ ├── SuggestedPointings_GWOptimisation_ESO2.txt │ │ │ ├── SuggestedPointings_GWOptimisation_HA.txt │ │ │ ├── SuggestedPointings_GWOptimisation_LP.txt │ │ │ ├── SuggestedPointings_GWOptimisation_LP2.txt │ │ │ ├── SuggestedPointings_GWOptimisation_OHP.txt │ │ │ └── SuggestedPointings_GWOptimisation_SA.txt │ ├── bn231012231 │ │ └── PGWinFoV_NObs │ │ │ ├── AltitudevsTime_LST1.png │ │ │ ├── AltitudevsTime_LST2.png │ │ │ ├── AltitudevsTime_LST3.png │ │ │ ├── AltitudevsTime_LST4.png │ │ │ ├── EvolutionPlot │ │ │ ├── Zoom_Pointing_0.png │ │ │ ├── Zoom_Pointing_1.png │ │ │ ├── Zoom_Pointing_10.png │ │ │ ├── Zoom_Pointing_11.png │ │ │ ├── Zoom_Pointing_12.png │ │ │ ├── Zoom_Pointing_13.png │ │ │ ├── Zoom_Pointing_14.png │ │ │ ├── Zoom_Pointing_15.png │ │ │ ├── Zoom_Pointing_16.png │ │ │ ├── Zoom_Pointing_17.png │ │ │ ├── Zoom_Pointing_18.png │ │ │ ├── Zoom_Pointing_19.png │ │ │ ├── Zoom_Pointing_2.png │ │ │ ├── Zoom_Pointing_20.png │ │ │ ├── Zoom_Pointing_21.png │ │ │ ├── Zoom_Pointing_22.png │ │ │ ├── Zoom_Pointing_23.png │ │ │ ├── Zoom_Pointing_3.png │ │ │ ├── Zoom_Pointing_4.png │ │ │ ├── Zoom_Pointing_5.png │ │ │ ├── Zoom_Pointing_6.png │ │ │ ├── Zoom_Pointing_7.png │ │ │ ├── Zoom_Pointing_8.png │ │ │ └── Zoom_Pointing_9.png │ │ │ ├── Plot_PrettyMap_LST1.png │ │ │ ├── Plot_PrettyMap_LST2.png │ │ │ ├── Plot_PrettyMap_LST3.png │ │ │ ├── Plot_PrettyMap_LST4.png │ │ │ ├── Plot_PrettyMap_all.png │ │ │ ├── Pointing_Plotting_LST1 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_LST2 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_LST3 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_LST4 │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ └── Pointings5.png │ │ │ ├── Pointing_Plotting_all │ │ │ ├── Pointings0.png │ │ │ ├── Pointings1.png │ │ │ ├── Pointings10.png │ │ │ ├── Pointings11.png │ │ │ ├── Pointings12.png │ │ │ ├── Pointings13.png │ │ │ ├── Pointings14.png │ │ │ ├── Pointings15.png │ │ │ ├── Pointings16.png │ │ │ ├── Pointings17.png │ │ │ ├── Pointings18.png │ │ │ ├── Pointings19.png │ │ │ ├── Pointings2.png │ │ │ ├── Pointings20.png │ │ │ ├── Pointings21.png │ │ │ ├── Pointings22.png │ │ │ ├── Pointings23.png │ │ │ ├── Pointings3.png │ │ │ ├── Pointings4.png │ │ │ ├── Pointings5.png │ │ │ ├── Pointings6.png │ │ │ ├── Pointings7.png │ │ │ ├── Pointings8.png │ │ │ └── Pointings9.png │ │ │ ├── RankingObservationTimes_Complete.txt │ │ │ ├── RankingObservationTimes_forAlerter.txt │ │ │ ├── RankingObservationTimes_forShifters.txt │ │ │ ├── SuggestedPointings_GWOptimisation.txt │ │ │ ├── SuggestedPointings_GWOptimisation_LST1.txt │ │ │ ├── SuggestedPointings_GWOptimisation_LST2.txt │ │ │ ├── SuggestedPointings_GWOptimisation_LST3.txt │ │ │ └── SuggestedPointings_GWOptimisation_LST4.txt │ └── bn240612503 │ │ └── PGinFoV │ │ ├── AltitudevsTime_CTAO-S.png │ │ ├── EvolutionPlot │ │ ├── Zoom_Pointing_0.png │ │ ├── Zoom_Pointing_1.png │ │ ├── Zoom_Pointing_2.png │ │ ├── Zoom_Pointing_3.png │ │ ├── Zoom_Pointing_4.png │ │ ├── Zoom_Pointing_5.png │ │ └── Zoom_Pointing_6.png │ │ ├── Plot_PrettyMap_bn240612503.png │ │ ├── Pointing_Plotting_CTAO-S │ │ ├── Pointings0.png │ │ ├── Pointings1.png │ │ ├── Pointings2.png │ │ ├── Pointings3.png │ │ ├── Pointings4.png │ │ ├── Pointings5.png │ │ └── Pointings6.png │ │ ├── RankingObservationTimes_Complete.txt │ │ ├── RankingObservationTimes_forAlerter.txt │ │ ├── RankingObservationTimes_forShifters.txt │ │ └── SuggestedPointings_2DProbOptimisation.txt └── visualization │ ├── follow_up_visualisation.ipynb │ ├── hostgalaxies.ipynb │ ├── obs_campaign_LST.ipynb │ ├── obs_campaign_zoomed.ipynb │ ├── plot_cumulative_probability.ipynb │ └── two_observation_campaigns.ipynb ├── image └── tilepy_logo.png ├── pyproject.toml ├── requirements.txt ├── src ├── __init__.py └── tilepy │ ├── __init__.py │ ├── _dev_version │ └── __init__.py │ ├── include │ ├── CampaignDefinition.py │ ├── MapManagement │ │ ├── MapReader.py │ │ ├── SkyMap.py │ │ └── __init__.py │ ├── ObservationScheduler.py │ ├── Observatories.py │ ├── PointingPlotting.py │ ├── PointingTools.py │ ├── RankingObservationTimes.py │ ├── TilingDetermination.py │ └── __init__.py │ ├── scripts │ ├── PlottingTwoCampaigns.py │ ├── Tiling_Observations.py │ └── __init__.py │ ├── tools │ ├── ConvertGalaxyCatalog.py │ ├── PlotCumulativeCoverage.py │ ├── VisualizationTools.py │ ├── __init__.py │ ├── contour_map_S190512at.py │ └── tobeadapted │ │ ├── GW_A_N.py │ │ ├── GW_A_N_S190728q.py │ │ ├── NiceEarthPlot.py │ │ └── __init__.py │ └── version.py └── tests ├── conftest.py ├── data └── bn240612505_SuggestedPointings_2DProbOptimisation_first2.txt ├── test_ObservationScheduler.py └── test_cases.json /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = 3 | E501 4 | W503 5 | -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/source/ObservationScheduler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/source/ObservationScheduler.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/source/TilingDetermination.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/source/TilingDetermination.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/source/UniversalObservationScheduler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/source/UniversalObservationScheduler.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/source/UniversalScheduleLauncher.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/doctrees/source/UniversalScheduleLauncher.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 27e98c6aae01f172a89d9da5a6409668 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :maxdepth: 3 3 | :caption: Contents: 4 | 5 | ./source/ObservationScheduler 6 | ./source/TilingDetermination 7 | -------------------------------------------------------------------------------- /docs/_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ./_static/custom.css 2 | 3 | .. toctree:: 4 | :maxdepth: 3 5 | :caption: Contents: 6 | 7 | ./source/ObservationScheduler 8 | ./source/TilingDetermination 9 | -------------------------------------------------------------------------------- /examples/paperplots/927563_PGW_cumulativeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/927563_PGW_cumulativeDistribution.png -------------------------------------------------------------------------------- /examples/paperplots/927563_Pgal_cumulativeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/927563_Pgal_cumulativeDistribution.png -------------------------------------------------------------------------------- /examples/paperplots/GRB 231012A_PGW_cumulativeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/GRB 231012A_PGW_cumulativeDistribution.png -------------------------------------------------------------------------------- /examples/paperplots/Plot_PrettyMap_927563_lalinference_CTAO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/Plot_PrettyMap_927563_lalinference_CTAO.png -------------------------------------------------------------------------------- /examples/paperplots/Plot_PrettyMap_GRB231012A_PWG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/Plot_PrettyMap_GRB231012A_PWG.png -------------------------------------------------------------------------------- /examples/paperplots/Plot_PrettyMap_IPN_PWG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/Plot_PrettyMap_IPN_PWG.png -------------------------------------------------------------------------------- /examples/paperplots/Plot_PrettyMap_S190814bv_MWL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/Plot_PrettyMap_S190814bv_MWL.png -------------------------------------------------------------------------------- /examples/paperplots/S190814bv_PGW_cumulativeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/S190814bv_PGW_cumulativeDistribution.png -------------------------------------------------------------------------------- /examples/paperplots/S190814bv_Pgal_cumulativeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/paperplots/S190814bv_Pgal_cumulativeDistribution.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/AltitudevsTime_CTAO-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/AltitudevsTime_CTAO-N.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/AltitudevsTime_CTAO-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/AltitudevsTime_CTAO-S.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_CTAO-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_CTAO-N.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_CTAO-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_CTAO-S.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Plot_PrettyMap_all.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings15.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings16.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings17.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings18.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings19.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings20.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/PGalinFoV_NObs/Pointing_Plotting_all/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/927563_lalinference/support/927563_lalinference.fits.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/927563_lalinference/support/927563_lalinference.fits.gz -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/AltitudevsTime_ATCA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/AltitudevsTime_ATCA.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_24.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_25.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_26.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_27.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_28.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_29.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_30.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_31.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_32.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_33.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_34.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_35.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_36.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_37.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_38.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_39.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_40.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_41.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_42.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_43.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_44.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_45.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_46.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_47.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_48.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_49.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Plot_PrettyMap_ATCA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Plot_PrettyMap_ATCA.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Plot_PrettyMap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Plot_PrettyMap_all.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings15.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings16.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings17.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings18.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings19.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings20.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings21.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings22.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings23.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings24.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings25.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings26.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings27.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings28.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings29.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings30.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings31.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings32.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings33.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings34.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings35.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings36.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings37.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings38.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings39.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings40.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings41.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings42.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings43.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings44.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings45.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings46.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings47.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings48.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings49.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_ATCA/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings15.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings16.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings17.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings18.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings19.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings20.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings21.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings22.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings23.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings24.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings25.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings26.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings27.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings28.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings29.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings30.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings31.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings32.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings33.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings34.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings35.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings36.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings37.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings38.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings39.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings40.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings41.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings42.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings43.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings44.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings45.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings46.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings47.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings48.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings49.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/IPN_GRB20120612/PGWinFoV_NObs/Pointing_Plotting_all/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/AltitudevsTime_CTAO-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/AltitudevsTime_CTAO-N.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/AltitudevsTime_CTAO-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/AltitudevsTime_CTAO-S.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Plot_PrettyMap_CTAO-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Plot_PrettyMap_CTAO-N.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Plot_PrettyMap_CTAO-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Plot_PrettyMap_CTAO-S.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-N/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/P1500071/PGalinFoV_NObs/Pointing_Plotting_CTAO-S/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_ESO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_ESO.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_ESO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_ESO2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_HA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_HA.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_LP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_LP.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_LP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_LP2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_OHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_OHP.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/AltitudevsTime_SA.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_24.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_25.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_26.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_27.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_28.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_29.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_30.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_31.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_32.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_33.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_34.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_35.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_36.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_37.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_38.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_39.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_40.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_41.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_42.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_43.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_44.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_45.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_46.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_47.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_48.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_49.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_50.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_51.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_52.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_53.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_54.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_55.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_56.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_57.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_58.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_59.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_ESO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_ESO.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_ESO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_ESO2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_HA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_HA.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_LP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_LP.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_LP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_LP2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_OHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_OHP.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_SA.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Plot_PrettyMap_all.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_ESO2/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_HA/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_LP2/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_OHP/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_SA/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings15.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings16.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings17.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings18.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings19.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings20.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings21.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings22.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings23.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings24.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings25.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings26.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings27.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings28.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings29.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings30.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings31.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings32.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings33.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings34.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings35.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings36.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings37.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings38.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings39.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings40.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings41.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings42.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings43.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings44.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings45.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings46.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings47.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings48.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings49.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings50.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings51.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings52.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings53.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings54.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings55.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings56.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings57.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings58.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings59.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/S190814bv/PGalinFoV_NObs/Pointing_Plotting_all/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/AltitudevsTime_LST4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_10.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_11.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_12.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_13.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_14.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_15.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_16.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_17.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_18.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_19.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_20.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_21.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_22.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_23.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_7.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_8.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/EvolutionPlot/Zoom_Pointing_9.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_LST4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Plot_PrettyMap_all.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST1/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST2/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST3/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_LST4/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings10.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings11.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings12.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings13.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings14.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings15.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings16.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings17.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings18.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings19.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings20.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings21.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings22.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings23.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings6.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings7.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings8.png -------------------------------------------------------------------------------- /examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn231012231/PGWinFoV_NObs/Pointing_Plotting_all/Pointings9.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/AltitudevsTime_CTAO-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/AltitudevsTime_CTAO-S.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/EvolutionPlot/Zoom_Pointing_6.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Plot_PrettyMap_bn240612503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Plot_PrettyMap_bn240612503.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings0.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings1.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings2.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings3.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings4.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings5.png -------------------------------------------------------------------------------- /examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/examples/sciencecases/bn240612503/PGinFoV/Pointing_Plotting_CTAO-S/Pointings6.png -------------------------------------------------------------------------------- /image/tilepy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/image/tilepy_logo.png -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/src/__init__.py -------------------------------------------------------------------------------- /src/tilepy/__init__.py: -------------------------------------------------------------------------------- 1 | from .version import __version__ 2 | 3 | __all__ = ["__version__"] 4 | -------------------------------------------------------------------------------- /src/tilepy/include/MapManagement/__init__.py: -------------------------------------------------------------------------------- 1 | from .MapReader import MapReader, create_map_reader 2 | from .SkyMap import SkyMap 3 | 4 | __all__ = ["MapReader", "SkyMap", "create_map_reader"] 5 | -------------------------------------------------------------------------------- /src/tilepy/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | from .PlottingTwoCampaigns import PlottingTwoCampaigns 2 | from .Tiling_Observations import Tiling_Observations 3 | 4 | __all__ = [ 5 | "Tiling_Observations", 6 | "PlottingTwoCampaigns", 7 | ] 8 | -------------------------------------------------------------------------------- /src/tilepy/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/src/tilepy/tools/__init__.py -------------------------------------------------------------------------------- /src/tilepy/tools/tobeadapted/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-transients/tilepy/50b4c67b26e1b2e9b692e2991f2d2af2eb87eec9/src/tilepy/tools/tobeadapted/__init__.py -------------------------------------------------------------------------------- /tests/data/bn240612505_SuggestedPointings_2DProbOptimisation_first2.txt: -------------------------------------------------------------------------------- 1 | Time[UTC] RA[deg] DEC[deg] PGW Round ObsName Duration FoV 2 | "2023-06-11 04:40:32" 312.8906 4.4808 0.3766 1 CTAO-S 20 4.0 3 | "2023-06-11 05:00:32" 317.1094 5.6792 0.3 1 CTAO-S 20 4.0 4 | --------------------------------------------------------------------------------