version1.0.0-rc.16 fixes

This commit is contained in:
2024-10-11 16:43:06 +02:00
parent e92169a244
commit 26408608d4
15 changed files with 636 additions and 215 deletions

View File

@@ -1682,7 +1682,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_azim_int_get**
> Plots plot_azim_int_get()
> Plots plot_azim_int_get(compression=compression)
Generate radial integration profile
@@ -1708,10 +1708,11 @@ configuration = jfjoch_client.Configuration(
with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate radial integration profile
api_response = api_instance.plot_azim_int_get()
api_response = api_instance.plot_azim_int_get(compression=compression)
print("The response of DefaultApi->plot_azim_int_get:\n")
pprint(api_response)
except Exception as e:
@@ -1722,7 +1723,10 @@ with jfjoch_client.ApiClient(configuration) as api_client:
### Parameters
This endpoint does not need any parameter.
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -1746,7 +1750,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_bkg_estimate_get**
> Plots plot_bkg_estimate_get(binning=binning)
> Plots plot_bkg_estimate_get(binning=binning, compression=compression)
Generate background estimate plot
@@ -1773,10 +1777,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate background estimate plot
api_response = api_instance.plot_bkg_estimate_get(binning=binning)
api_response = api_instance.plot_bkg_estimate_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_bkg_estimate_get:\n")
pprint(api_response)
except Exception as e:
@@ -1791,6 +1796,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -1809,13 +1815,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Everything OK. Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_error_pixel_get**
> Plots plot_error_pixel_get(binning=binning)
> Plots plot_error_pixel_get(binning=binning, compression=compression)
Generate error pixels plot
@@ -1842,10 +1848,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate error pixels plot
api_response = api_instance.plot_error_pixel_get(binning=binning)
api_response = api_instance.plot_error_pixel_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_error_pixel_get:\n")
pprint(api_response)
except Exception as e:
@@ -1860,6 +1867,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -1878,13 +1886,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_image_collection_efficiency_get**
> Plots plot_image_collection_efficiency_get(binning=binning)
> Plots plot_image_collection_efficiency_get(binning=binning, compression=compression)
Generate image collection efficiency plot
@@ -1911,10 +1919,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate image collection efficiency plot
api_response = api_instance.plot_image_collection_efficiency_get(binning=binning)
api_response = api_instance.plot_image_collection_efficiency_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_image_collection_efficiency_get:\n")
pprint(api_response)
except Exception as e:
@@ -1929,6 +1938,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -1953,7 +1963,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_indexing_rate_get**
> Plots plot_indexing_rate_get(binning=binning)
> Plots plot_indexing_rate_get(binning=binning, compression=compression)
Generate indexing rate plot
@@ -1980,10 +1990,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate indexing rate plot
api_response = api_instance.plot_indexing_rate_get(binning=binning)
api_response = api_instance.plot_indexing_rate_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_indexing_rate_get:\n")
pprint(api_response)
except Exception as e:
@@ -1998,6 +2009,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2016,13 +2028,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_receiver_delay_get**
> Plots plot_receiver_delay_get(binning=binning)
> Plots plot_receiver_delay_get(binning=binning, compression=compression)
Generate receiver delay plot
@@ -2049,10 +2061,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate receiver delay plot
api_response = api_instance.plot_receiver_delay_get(binning=binning)
api_response = api_instance.plot_receiver_delay_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_receiver_delay_get:\n")
pprint(api_response)
except Exception as e:
@@ -2067,6 +2080,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2091,7 +2105,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_receiver_free_send_buffers_get**
> Plots plot_receiver_free_send_buffers_get(binning=binning)
> Plots plot_receiver_free_send_buffers_get(binning=binning, compression=compression)
Generate receiver free send buffer plot
@@ -2118,10 +2132,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate receiver free send buffer plot
api_response = api_instance.plot_receiver_free_send_buffers_get(binning=binning)
api_response = api_instance.plot_receiver_free_send_buffers_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_receiver_free_send_buffers_get:\n")
pprint(api_response)
except Exception as e:
@@ -2136,6 +2151,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2160,7 +2176,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_roi_max_count_get**
> Plots plot_roi_max_count_get(binning=binning)
> Plots plot_roi_max_count_get(binning=binning, compression=compression)
Generate plot of ROI max count
@@ -2187,10 +2203,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate plot of ROI max count
api_response = api_instance.plot_roi_max_count_get(binning=binning)
api_response = api_instance.plot_roi_max_count_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_roi_max_count_get:\n")
pprint(api_response)
except Exception as e:
@@ -2205,6 +2222,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2223,13 +2241,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_roi_sum_get**
> Plots plot_roi_sum_get(binning=binning)
> Plots plot_roi_sum_get(binning=binning, compression=compression)
Generate ROI sum plot
@@ -2256,10 +2274,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate ROI sum plot
api_response = api_instance.plot_roi_sum_get(binning=binning)
api_response = api_instance.plot_roi_sum_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_roi_sum_get:\n")
pprint(api_response)
except Exception as e:
@@ -2274,6 +2293,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2292,13 +2312,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_roi_valid_pixels_get**
> Plots plot_roi_valid_pixels_get(binning=binning)
> Plots plot_roi_valid_pixels_get(binning=binning, compression=compression)
Generate plot of ROI valid pixels
@@ -2325,10 +2345,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate plot of ROI valid pixels
api_response = api_instance.plot_roi_valid_pixels_get(binning=binning)
api_response = api_instance.plot_roi_valid_pixels_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_roi_valid_pixels_get:\n")
pprint(api_response)
except Exception as e:
@@ -2343,6 +2364,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2361,13 +2383,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_spot_count_get**
> Plots plot_spot_count_get(binning=binning)
> Plots plot_spot_count_get(binning=binning, compression=compression)
Generate spot count plot
@@ -2394,10 +2416,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate spot count plot
api_response = api_instance.plot_spot_count_get(binning=binning)
api_response = api_instance.plot_spot_count_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_spot_count_get:\n")
pprint(api_response)
except Exception as e:
@@ -2412,6 +2435,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2430,13 +2454,13 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **plot_strong_pixel_get**
> Plots plot_strong_pixel_get(binning=binning)
> Plots plot_strong_pixel_get(binning=binning, compression=compression)
Generate strong pixels plot
@@ -2463,10 +2487,11 @@ with jfjoch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jfjoch_client.DefaultApi(api_client)
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
compression = True # bool | Enable DEFLATE compression of output data (optional) (default to True)
try:
# Generate strong pixels plot
api_response = api_instance.plot_strong_pixel_get(binning=binning)
api_response = api_instance.plot_strong_pixel_get(binning=binning, compression=compression)
print("The response of DefaultApi->plot_strong_pixel_get:\n")
pprint(api_response)
except Exception as e:
@@ -2481,6 +2506,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
**compression** | **bool**| Enable DEFLATE compression of output data | [optional] [default to True]
### Return type
@@ -2499,7 +2525,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Everything OK | - |
**200** | Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
**400** | Input parsing or validation error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)