API documentation
This module provides the core functionality of the Juice Core Uplink API Client in a more convenient way than the generated code.
May functionalities are not yet implemented, but some are.
SHTRestInterface
SHTRestInterface
Main entry point for interacting with the Juice Core Uplink API
Source code in src/juice_core/SHTRestInterface.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
engineering_segments(trajectory=DEFAULT_TRAJECTORY) -> pd.DataFrame
cached
Retrieve the engineering segments for a mnemonic
Source code in src/juice_core/SHTRestInterface.py
210 211 212 213 214 215 216 217 |
|
event_types(trajectory=DEFAULT_TRAJECTORY)
cached
Retrieve all the events applicable for a trajectory
Source code in src/juice_core/SHTRestInterface.py
297 298 299 300 301 302 303 304 |
|
events(mnemonics: list[str] | str = [], trajectory: str = DEFAULT_TRAJECTORY, start=DEFAULT_START, end=DEFAULT_END)
cached
Retrieve events of a given type from the endpoint
Source code in src/juice_core/SHTRestInterface.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
known_series(trajectory=DEFAULT_TRAJECTORY)
cached
Retrieve all the series available on the endpoint
Source code in src/juice_core/SHTRestInterface.py
228 229 230 231 232 233 234 235 |
|
plan(plan_id_or_name)
cached
Retrieve the plan from the plan id or name
Source code in src/juice_core/SHTRestInterface.py
219 220 221 222 223 224 225 226 |
|
plan_id_by_name(name)
Retrieve the plan id from the plan name
Source code in src/juice_core/SHTRestInterface.py
193 194 195 196 197 198 199 200 201 |
|
plan_segments(plan_id_or_name)
cached
Retrieve the segments of a plan
Source code in src/juice_core/SHTRestInterface.py
203 204 205 206 207 208 |
|
plans()
cached
Retrieve all the plans available on the endpoint
Source code in src/juice_core/SHTRestInterface.py
187 188 189 190 191 |
|
series(series_name, trajectory=DEFAULT_TRAJECTORY, start=DEFAULT_START, end=DEFAULT_END)
cached
Retrieve a serie from the endpoint
Source code in src/juice_core/SHTRestInterface.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
|
series_multi(series_names, trajectory=DEFAULT_TRAJECTORY, start=DEFAULT_START, end=DEFAULT_END)
Retrieve multiple series from the endpoint
Source code in src/juice_core/SHTRestInterface.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
|
expand_column(tab: pd.DataFrame, column_name='description') -> pd.DataFrame
Some tables have a description column that contains additional information.
This function expands the description column into multiple columns.
Parameters
tab (pd.DataFrame): table to expand, must have a description column
Returns
pd.DataFrame: a new dataframe with the description column expanded
Source code in src/juice_core/SHTRestInterface.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|