jarvisplot 1.0.6__py3-none-any.whl → 1.0.7__py3-none-any.whl
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.
Potentially problematic release.
This version of jarvisplot might be problematic. Click here for more details.
- jarvisplot/Figure/figure.py +16 -2
- {jarvisplot-1.0.6.dist-info → jarvisplot-1.0.7.dist-info}/METADATA +1 -1
- {jarvisplot-1.0.6.dist-info → jarvisplot-1.0.7.dist-info}/RECORD +6 -6
- {jarvisplot-1.0.6.dist-info → jarvisplot-1.0.7.dist-info}/WHEEL +0 -0
- {jarvisplot-1.0.6.dist-info → jarvisplot-1.0.7.dist-info}/entry_points.txt +0 -0
- {jarvisplot-1.0.6.dist-info → jarvisplot-1.0.7.dist-info}/top_level.txt +0 -0
jarvisplot/Figure/figure.py
CHANGED
|
@@ -1168,7 +1168,7 @@ class Figure:
|
|
|
1168
1168
|
if not self._enable:
|
|
1169
1169
|
self.logger.warning("Skip plot -> {}".format(self.name))
|
|
1170
1170
|
return False
|
|
1171
|
-
|
|
1171
|
+
print("Line 1171 -> style:", info['style'])
|
|
1172
1172
|
if "style" in info:
|
|
1173
1173
|
self.style = info['style']
|
|
1174
1174
|
else:
|
|
@@ -1176,14 +1176,19 @@ class Figure:
|
|
|
1176
1176
|
self.logger.debug("Figure style loaded")
|
|
1177
1177
|
if "gambit" in info['style'][0]:
|
|
1178
1178
|
self.mode = "gambit"
|
|
1179
|
+
print("Line 1179 -> Plot Mode", self.mode)
|
|
1180
|
+
print("Line 1180 -> frame:", info['frame'])
|
|
1179
1181
|
|
|
1180
1182
|
print(self.frame, info)
|
|
1181
1183
|
if "frame" in info:
|
|
1182
1184
|
self.frame = info['frame']
|
|
1183
1185
|
self.logger.debug("Figure frame information loaded")
|
|
1186
|
+
print("Line 1186 -> Cmap")
|
|
1184
1187
|
|
|
1185
1188
|
import matplotlib.pyplot as plt
|
|
1186
1189
|
plt.rcParams['mathtext.fontset'] = 'stix'
|
|
1190
|
+
print("Line 1190 -> Stix fonts")
|
|
1191
|
+
|
|
1187
1192
|
# --- Ensure JarvisPLOT colormaps are registered globally before plotting ---
|
|
1188
1193
|
try:
|
|
1189
1194
|
from ..utils import cmaps as _jp_cmaps
|
|
@@ -1197,8 +1202,13 @@ class Figure:
|
|
|
1197
1202
|
except Exception as _e:
|
|
1198
1203
|
if self.logger:
|
|
1199
1204
|
self.logger.warning(f"JarvisPLOT: failed to register colormaps: {_e}")
|
|
1205
|
+
print("Line 1205 -> Cmap summary")
|
|
1206
|
+
|
|
1207
|
+
|
|
1200
1208
|
# plt.rcParams['font.family'] = 'STIXGeneral'
|
|
1201
1209
|
self.fig = plt.figure(**self.frame['figure'])
|
|
1210
|
+
print("Line 1210 -> figure created")
|
|
1211
|
+
|
|
1202
1212
|
# CLI override: disable logo panel
|
|
1203
1213
|
if self.print:
|
|
1204
1214
|
try:
|
|
@@ -1208,13 +1218,17 @@ class Figure:
|
|
|
1208
1218
|
self.frame.pop("axlogo", None) # optional: drop logo content too
|
|
1209
1219
|
except Exception:
|
|
1210
1220
|
pass
|
|
1221
|
+
print("Line 1221 -> Logo printed")
|
|
1222
|
+
|
|
1211
1223
|
self.load_axes()
|
|
1224
|
+
print("Line 1224 -> axes loaded")
|
|
1212
1225
|
|
|
1213
1226
|
if "layers" in info:
|
|
1214
1227
|
self.layers = info['layers']
|
|
1215
1228
|
else:
|
|
1216
1229
|
changed = False
|
|
1217
|
-
|
|
1230
|
+
print("Line 1230 -> layer info loaded")
|
|
1231
|
+
|
|
1218
1232
|
return changed
|
|
1219
1233
|
except:
|
|
1220
1234
|
return False
|
|
@@ -8,7 +8,7 @@ jarvisplot/inner_func.py,sha256=hQeoJzVeTVjIb8_qRbHPf0_5lj-y0QEdOZEy-Yowm88,4158
|
|
|
8
8
|
jarvisplot/Figure/__init__.py,sha256=X06Fgcfy5sALAD5DesZw68m_hs7EcVBLzM0AJVte5iA,30
|
|
9
9
|
jarvisplot/Figure/adapters.py,sha256=END12kkzmhnG_bJddfQ3CQy0P3DlrY5I6WRl2DfiKlU,28502
|
|
10
10
|
jarvisplot/Figure/data_pipelines.py,sha256=4mOHyYEHkqUCsEvDL2X7l2hE9ya2HyE0rmVqJLJ6b9E,3348
|
|
11
|
-
jarvisplot/Figure/figure.py,sha256=
|
|
11
|
+
jarvisplot/Figure/figure.py,sha256=96oD3xjARZ3XQhQpFMMsErNGqCweGE-9DBB16Q09QME,67544
|
|
12
12
|
jarvisplot/Figure/helper.py,sha256=5CJtJrKhIn7h-uBe7QWL9s2BoMIU9-JLtLmSSs86F80,7424
|
|
13
13
|
jarvisplot/Figure/load_data.py,sha256=U7dgJuHJJsLAonuFc0fMLbmWCJO5qnJsi4p6e3WrnSU,8997
|
|
14
14
|
jarvisplot/Figure/cards/std_axes_adapter_config.json,sha256=lokkIg-QIBZQ-lJr28cRbFdlvGP9-cCd64UIF9mnpxg,478
|
|
@@ -36,8 +36,8 @@ jarvisplot/cards/icons/gambit_small.png,sha256=maQSLO4PPSn4_J9rqIqp0qvY4Rtpx9Gii
|
|
|
36
36
|
jarvisplot/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
37
|
jarvisplot/utils/cmaps.py,sha256=2IKOUzsOZb8KReEggbNCNAdzS6IhWrcMMSUw03CunpM,9449
|
|
38
38
|
jarvisplot/utils/interpolator.py,sha256=CG6Wi6BX2cAI-TdL0d51J9wXnjxawc4R_uPlNoXHfss,13126
|
|
39
|
-
jarvisplot-1.0.
|
|
40
|
-
jarvisplot-1.0.
|
|
41
|
-
jarvisplot-1.0.
|
|
42
|
-
jarvisplot-1.0.
|
|
43
|
-
jarvisplot-1.0.
|
|
39
|
+
jarvisplot-1.0.7.dist-info/METADATA,sha256=1SY5Y2M-_4QiUTwiROxj2-CMbeQQgcHbiEkqez_-93E,2038
|
|
40
|
+
jarvisplot-1.0.7.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
41
|
+
jarvisplot-1.0.7.dist-info/entry_points.txt,sha256=1dvnP7V3PTjdtL3G8OIDEKopJlDFJccC0EzFKmvp4jM,49
|
|
42
|
+
jarvisplot-1.0.7.dist-info/top_level.txt,sha256=Rvy30upSt2sE_reLghmQejiBTIo5t6HXLnMwIsiKWS8,11
|
|
43
|
+
jarvisplot-1.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|