splusdata 5.44__tar.gz → 5.45__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. {splusdata-5.44/splusdata.egg-info → splusdata-5.45}/PKG-INFO +1 -1
  2. {splusdata-5.44 → splusdata-5.45}/pyproject.toml +1 -1
  3. {splusdata-5.44 → splusdata-5.45}/splusdata/features/zeropointsdr4.py +6 -2
  4. {splusdata-5.44 → splusdata-5.45/splusdata.egg-info}/PKG-INFO +1 -1
  5. {splusdata-5.44 → splusdata-5.45}/LICENSE +0 -0
  6. {splusdata-5.44 → splusdata-5.45}/README.md +0 -0
  7. {splusdata-5.44 → splusdata-5.45}/setup.cfg +0 -0
  8. {splusdata-5.44 → splusdata-5.45}/splusdata/__init__.py +0 -0
  9. {splusdata-5.44 → splusdata-5.45}/splusdata/connect.py +0 -0
  10. {splusdata-5.44 → splusdata-5.45}/splusdata/core.py +0 -0
  11. {splusdata-5.44 → splusdata-5.45}/splusdata/features/__init__.py +0 -0
  12. {splusdata-5.44 → splusdata-5.45}/splusdata/features/extinction.py +0 -0
  13. {splusdata-5.44 → splusdata-5.45}/splusdata/features/filterbw.py +0 -0
  14. {splusdata-5.44 → splusdata-5.45}/splusdata/features/find_pointings.py +0 -0
  15. {splusdata-5.44 → splusdata-5.45}/splusdata/features/hipscat.py +0 -0
  16. {splusdata-5.44 → splusdata-5.45}/splusdata/features/io.py +0 -0
  17. {splusdata-5.44 → splusdata-5.45}/splusdata/features/zeropoints/__init__.py +0 -0
  18. {splusdata-5.44 → splusdata-5.45}/splusdata/features/zeropoints/zp_image.py +0 -0
  19. {splusdata-5.44 → splusdata-5.45}/splusdata/features/zeropoints/zp_map.py +0 -0
  20. {splusdata-5.44 → splusdata-5.45}/splusdata/models/__init__.py +0 -0
  21. {splusdata-5.44 → splusdata-5.45}/splusdata/models/star_gal_quasar.py +0 -0
  22. {splusdata-5.44 → splusdata-5.45}/splusdata/readconf.py +0 -0
  23. {splusdata-5.44 → splusdata-5.45}/splusdata/scripts/args.py +0 -0
  24. {splusdata-5.44 → splusdata-5.45}/splusdata/scripts/utils.py +0 -0
  25. {splusdata-5.44 → splusdata-5.45}/splusdata/scubes/__init__.py +0 -0
  26. {splusdata-5.44 → splusdata-5.45}/splusdata/scubes/core.py +0 -0
  27. {splusdata-5.44 → splusdata-5.45}/splusdata/scubes/read.py +0 -0
  28. {splusdata-5.44 → splusdata-5.45}/splusdata/scubes/scripts.py +0 -0
  29. {splusdata-5.44 → splusdata-5.45}/splusdata/vacs/__init__.py +0 -0
  30. {splusdata-5.44 → splusdata-5.45}/splusdata/vacs/pdfs.py +0 -0
  31. {splusdata-5.44 → splusdata-5.45}/splusdata/vacs/sqg.py +0 -0
  32. {splusdata-5.44 → splusdata-5.45}/splusdata/variability/__init__.py +0 -0
  33. {splusdata-5.44 → splusdata-5.45}/splusdata/vars.py +0 -0
  34. {splusdata-5.44 → splusdata-5.45}/splusdata.egg-info/SOURCES.txt +0 -0
  35. {splusdata-5.44 → splusdata-5.45}/splusdata.egg-info/dependency_links.txt +0 -0
  36. {splusdata-5.44 → splusdata-5.45}/splusdata.egg-info/entry_points.txt +0 -0
  37. {splusdata-5.44 → splusdata-5.45}/splusdata.egg-info/requires.txt +0 -0
  38. {splusdata-5.44 → splusdata-5.45}/splusdata.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splusdata
3
- Version: 5.44
3
+ Version: 5.45
4
4
  Summary: Download SPLUS catalogs, FITS and more
5
5
  Author-email: Gustavo Schwarz <gustavo.b.schwarz@gmail.com>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "splusdata"
7
- version = "5.44"
7
+ version = "5.45"
8
8
  description = "Download SPLUS catalogs, FITS and more"
9
9
  authors = [
10
10
  { name = "Gustavo Schwarz", email = "gustavo.b.schwarz@gmail.com" }
@@ -1,7 +1,11 @@
1
1
  import pandas as pd
2
2
 
3
- source_cat = "https://splus.cloud/files/documentation/iDR4/tabelas/iDR4_zero-points.csv"
4
- zps = pd.read_csv(source_cat)
3
+ try:
4
+ source_cat = "https://splus.cloud/files/documentation/iDR4/tabelas/iDR4_zero-points.csv"
5
+ zps = pd.read_csv(source_cat)
6
+ except Exception as e:
7
+ #print(f"Error loading zero points data: {e}")
8
+ pass
5
9
 
6
10
  def get_zeropoint(conn, ra, dec, band):
7
11
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splusdata
3
- Version: 5.44
3
+ Version: 5.45
4
4
  Summary: Download SPLUS catalogs, FITS and more
5
5
  Author-email: Gustavo Schwarz <gustavo.b.schwarz@gmail.com>
6
6
  License: Apache-2.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes