You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+46
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,53 @@ All notable changes to the `log_hub` project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## [0.1.4] - 2025-02-25
7
8
9
+
### Added
10
+
-`forward_center_of_gravity_plus` service to calculate the center of gravity based on the given addresses. The addresses can refer to customers, suppliers or something else, and their respective weights, volumes and revenues.
11
+
-`reverse_center_of_gravity_plus` service to calculate the center of gravity based on the given coordinates. The coordinates can refer to customers, suppliers or something else, and their respective weights, volumes and revenues.
12
+
-`demand_forecasting` service to help you accurately predict future demand for your products based on historical demand data, future impact factors and parameters that customize the forecasting model for each product.
13
+
-`forward_fixed_center_of_gravity` service to calculate the center of gravity based on the given addresses that refer to customers, suppliers or something else, their respective weights, and the table of the center addresses that are fixed.
14
+
-`reverse_fixed_center_of_gravity` service to calculate the center of gravity based on the given coordinates that refer to customers, suppliers or something else, their respective weights, and the table of the center coordinates that are fixed.
15
+
-`forward_freight_shipment_emissions_air` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by air with the IATA codes provided.
16
+
-`forward_freight_shipment_emissions_rail` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by train with the UN/LOCODEs provided.
17
+
-`reverse_freight_shipment_emissions_rail` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by train with the coordinates provided.
18
+
-`forward_freight_shipment_emissions_road` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by road with the addresses provided.
19
+
-`reverse_freight_shipment_emissions_road` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by road with the coordinates provided.
20
+
-`forward_freight_shipment_emissions_sea` service to calculate a CO2 footprint based on your shipments or route legs defined as separate shipments transported by ship with the UN/LOCODEs provided.
21
+
-`forward_location_planning` servise to optimize distribution modeling flows from the warehouses to the customers based on their addresses. For customers are also taken in consideration weight, volume and number of shipments, and for warehouses minimum and maximum capacity along with the penalty and fixed costs. Transport costs can also be adjusted.
22
+
-`reverse_location_planning` servise to optimize distribution modeling flows from the warehouses to the customers based on their coordinates. For customers are also taken in consideration weight, volume and number of shipments, and for warehouses minimum and maximum capacity along with the penalty and fixed costs. Transport costs can also be adjusted.
23
+
-`forward_nearest_warehouses` servise to find a given number of nearest warehouses from a customer location (based on addresses).
24
+
-`reverse_nearest_warehouses` servise to find a given number of nearest warehouses from a customer location (based on coordinates)
25
+
-`forward_network_design_plus` service to help you find the optimal number and location of warehouses that are assigned to the customers and factories, based on their addresses, transport, handling and fixed warehouse costs.
26
+
-`reverse_network_design_plus` service to help you find the optimal number and location of warehouses that are assigned to the customers and factories, based on their coordinates, transport, handling and fixed warehouse costs.
27
+
-`forward_supply_chain_map_areas` sevice to help you create a map visualization of the given areas.
28
+
-`forward_supply_chain_map_locations` sevice to help you create a map visualization of the locations (based on addresses).
29
+
-`reverse_supply_chain_map_locations` sevice to help you create a map visualization of the locations (based on coordinates).
30
+
-`reverse_supply_chain_map_polyline` sevice to help you create a map visualization of the polylines based on their coordinates.
31
+
-`forward_supply_chain_map_relations` sevice to help you create a map visualization of the relations (based on addresses).
32
+
-`reverse_supply_chain_map_relations` sevice to help you create a map visualization of the relations (based on coordinates).
33
+
-`forward_supply_chain_map_sea_routes` sevice to help you create a map visualization of the sea routes (based on UN/LOCODEs).
34
+
-`reverse_supply_chain_map_sea_routes` sevice to help you create a map visualization of the sea routes (based on coordinates).
35
+
36
+
### Changed
37
+
- Created module with the functions for validation of the input data.
38
+
- Added a possibility to save the data on the platform by adjusting the 'saveScenarioParameters'.
39
+
- Created a module for generating necessary data for sending requests, as well as sending requests itself.
40
+
- Updated documentation to include examples and usage guidelines for the newly added services, providing clear instructions for users to leverage these new features effectively.
41
+
42
+
### Fixed
43
+
- Minor bug fixes and performance improvements in API communication handling, especially regarding removing batches in sending requests to the geocoding and distance calculation API.
44
+
- Redused duplicated code.
45
+
46
+
### Deprecated
47
+
- N/A (no deprecations in this release).
48
+
49
+
### Removed
50
+
- N/A (no removals in this release).
51
+
52
+
### Security
53
+
- Strengthened security measures in API communication, especially in the sending get requests to the network design plus and location planning API servises, as well as in the saving output data on the platform.
Copy file name to clipboardExpand all lines: setup.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
setup(
7
7
name='pyloghub',
8
-
version='0.1.3',
8
+
version='0.1.4',
9
9
packages=find_packages(),
10
10
description='The `pyloghub` package provides convinient access to various Log-hub API services for Supply Chain Visualization, Network Design Optimization, and Transport Optimization as well as access to the Log-hub platform data.',
0 commit comments