EOSpython


NameEOSpython JSON
Version 0.0.11 PyPI version JSON
download
home_pagehttps://github.com/AlexVasegaard/EOS
SummaryA set of functions encompassing a centralized Earth Observation Satellite scheduling system
upload_time2024-07-19 09:20:06
maintainerNone
docs_urlNone
authorAlex Vasegaard
requires_python<4,>=3.11
licenseMIT
keywords satellite earth observation operations research optimization simulator scenario generator
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
             # EOSpython
EOSpython is a set of python functions (intended to be a package) that encompases everything within a centralized Earth Observation Satellite scheduling system in terms of Scenario generation, pre-processing, problem setup, solution approach, decision maker preference integration, and visualization.

The DM preferences are introduced through a plethora of Scoring approaches available:
- modified ELECTRE-III (ordinal)
- topsis (ordinal)
- WSA (ordinal)

Note, all scoring approaches contain representative variables to elicited information as opposed to using pairwise evaluations.

And the solution procedure can be one of the following:
 - GLPK (Large scale LPP solver from cvxopt - does not require API)
 - ELPA (an extended longest path algorithm that can manage extremely large problem scenarios - does not require API)
 - gurobi (large scale LPP solver from gurobi - REQUIRES API)
 - PuLP (large scale LPP solver from PuLP - REQUIRES API)
 - Random greedy approach (can manage large scale problems, but performs very poorly - only really applicable to showcase complexity)

Note, some problem scnearios are too large for the LPP solvers to manage. 

![alt text](single_scenario_map.PNG)

The four main functions are EOSscenario(), EOSsolve(), EOSvisualize(), and EOSevaluate() - an explanation for the functions are given below. 

The package dependencies are:
- numpy, pandas, datetime, requests, random, ephem, math, folium (for a visual html map output), time, scipy, progressbar, ast, timeit, copy

and depending on whether a free optimization method is used (api may be required):
- cvxopt, gurobipy, pulp, docplex

Real satellite paths are introduced trough their TLE (Go to www.celestrak.com to obtain TLEs, default are Spot 6,7 and Pleiades A and B)
Also, there is an option to obtain realtime, historic, or generate weather data (cloud coverage) when generating the scenario, this does however require an API key from OpenWeatherMap.org. 

## Usage

### install 
```python
pip install EOSpython
```

### example
```python
from EOSpython import EOS
import pandas as pd                        #The evaluation output is presented as a pd dataframe
import numpy as np                         #The preference structure is given in numpy arrays

sat_TLEs = [38755, 40053] #spot 6 and 7 - assumed to be heterogenous an capable of acquiring the customer requests in the database

horizon_start = [2024,7,11,9,40] #start time for planning window [year, month, date, hour, minute]

horizon = 8 #planning horizon in hours

## Preference structure

#Corresponding weights related to the selection/scoring of image attempts
               #w
criteria_w =  [0.05,      #area
               0.1,       #off-nadir angle
               0.1,       #sun elevation
               0.2,       #cloud coverage 
               0.2,       #priority
               0.1,       #price
               0.2,       #age
               0.05]      #uncertainty

#if outranking model is used, then threshold variables q (indifference), p (preference), and v (veto)
       #q,  p,   v
qpv = [[0,  30,  1000],        #area
       [0,  2,   40],          #off-nadir angle
       [0,  10,  40],          #sun elevation
       [0,  2,   15],          #cloud coverage 
       [0,  1,   4],           #priority
       [0,  100, 20000],       #price
       [0,  4,   10],          #age
       [0,  0.5,   1]]         #uncertainty



### Example with Extended Longest Path Algoorithm and ELECTRE-III scoring approach


## Create customer database
database, map_file = EOS.customer_db(number_of_requests_0 = 250)

print(database)
print(database.info())
#Note, if map_generation is True, the database can be inspected via the interactive all_requests.html file saved in the wd!


## Create scenario
x_data = EOS.scenario(customer_database = database, m = map_file, 
                      seconds_gran=10, 
                      NORAD_ids=sat_TLEs, #the 
                      weather_real = False, #we can by the use of an API key get real world cloud forecasts from the OWM platform
                      simplify = True) #we can simplify the set of constraints when using the ELPA algorithm
#One can also add their own customer database - the structure just have to be the same.
#The internal map generation function of the scenario module adds the satellite paths and reachable requests for the considered planning horizon.


## Generate a solution
x_res1 = EOS.solve(x_data, scoring_method=2, solution_method = "DAG", criteria_weights_l = criteria_w, threshold_parameters_l= qpv) #2=ELECTRE-III scoring approach
#Note, the solution method can be either: DAG, GLPK, gurobi, PuLP  - make sure to have the right capitulazation!

EOS.visualize(x_data, x_res1, 'EOS_example') #output is an interactive map called EOS_example.html saved in the wd

df = EOS.evaluate(x_data, x_res1)

print(df.solution)
print(df.scenario)

x_data = EOS.scenario(seconds_gran=10, number_of_requests_0=1000, 
                      NORAD_ids=sat_TLEs, weather_real = False, 
                      schedule_start = horizon_start, hours_horizon = horizon,
                      simplify = True) #we can simplify the set of constraints when using the ELPA algorithm
x_res1 = EOS.solve(x_data, scoring_method=2, solution_method = "DAG",   
                   criteria_weights = criteria_w, 
                   threshold_parameters= qpv)

EOS.visualize(x_data, x_res1, 'EOS_example') 

df1 = EOS.evaluate(x_data, x_res1)
print(df1.solution)
print(df1.scenario)


### Example with GLPK solver and the naive weighted sum scoring approach

x_data = EOS.scenario(seconds_gran=10, number_of_requests_0=1000, 
                      NORAD_ids=sat_TLEs, weather_real = False, 
                      schedule_start = horizon_start, hours_horizon = horizon,
                      simplify = False) #for a non solver the simplify argument must be false, as solution space otherwise is overconstrained
x_res2 = EOS.solve(x_data, scoring_method=3, solution_method = "GLPK",  #3=WSA
                   criteria_weights = criteria_w, 
                   threshold_parameters= qpv)

EOS.visualize(x_data, x_res2, 'EOS_example') #output is an interactive map called EOS_example.html saved in the wd

df2 = EOS.evaluate(x_data, x_res2)
print(df2.solution)
print(df2.scenario)
```
## EOS.customer_db()
Is a function that generates a customer database in the format of a pandas dataframe and a html file where one can inspect it. The database is used for the further realization of the problem scenario when we match it with a set of satellites and their operational capabilities as well as the actual planning horizon. The customer database consists of a set of columns that describe the image request for each individual request (rows). 
The format is: 
 #   Column             Non-Null Count  Dtype
---  ------             --------------  -----
 0   ID                 250 non-null    object
 1   acquired           250 non-null    int64
 2   reachable          250 non-null    int64
 3   request location   250 non-null    object
 4   day                250 non-null    int64
 5   area               250 non-null    float64
 6   stereo             250 non-null    int64
 7   strips             250 non-null    int64
 8   duration           250 non-null    float64
 9   priority           250 non-null    int64
 10  priority mod       250 non-null    int64
 11  customer type mod  250 non-null    int64
 12  price              250 non-null    int64
 13  waiting time       250 non-null    int64

If the user wants to test their own setup - their database has to use the same format.. 


## EOS.scenario() 
Generates the problem, so it functions as a general pre-processing for the EOS system. 
It is seeded so problem scenarios can be replicated across different environments and therefore utilized for evaluating different solution approaches.
Note, it isnt optimized for speed yet, so it will run rather slow.


It takes in the following arguments: 
- seconds_gran = 20 %The discretisation level of the satellitel path (discrete optimization problem) 
- number_of_requests_0 = 1000, %customer requests in database initially (there is an option to contionously add customers to mimic the effect of a real EOS production where new customers are entering and one over time still wants to ensure that requests doesnt violate an age threshold. The customers are generated based on location distribution which is higher around urbanized areas - this should mimic the actual customer database that EOS companies see or at least mimic the density of requests that optimization problems face.) 
- NORAD_ids a list of the chosen satellite TLEs. Default is [38755, 40053]  %TLEs for spot 6 and 7 satellites
- weather_real = False, %whether real cloud coverage data is utilized for the chosen time horizon
- simplify = False, #whether constraints are simplified based on the principle of inter set constraints - IT IS ONLY VALID IF a LPP solution approach is used s.a. GLPK.
- schedule_start is time of initiation for the schedule horizon. A list of the date entities expressing [year, month, day, hour, minute]. The default is [2021,7,21,9,40].
- hours_horizon = 8, %duration of planning horizon in hours
- max_off_nadir_angle = 30, %degrees that satellite can maneuver (or is allowed to still acquire pictures) 
- height_satellite = 694,   %altitude of satellites (in km) - this is in next iteration updated to automatically be calculated 
- rotation_speed = 30/12, %degrees per second - per https://directory.eoportal.org/web/eoportal/satellite-missions/s/spot-6-7
- cam_resolution = 1, %m^2 per pixel
- capacity_limit = 1000000, %in mega byte
- satellite_swath = 3600, &swath of satellite images 
- map_generation = True %whether a visualisation should be generated
- API_key = list of strings with API key(s) for OpenWeatherMap.org for weather forecasts and for historic api.weatherbit.io

Note, the scenarios consist of requests with stereo, strip requirements, which is modeled by the constraints. 
For a request to be considered we have defined certain thresholds, namely a maximum cloud coverage of 50 pct, 

AND outputs the following:
 - multi_sat_data.LPP is the Linear programming problem Ax<=b where LPP contains:
   - LPP.LHS - A in the Ax<b
   - LPP.RHS - b in the Ax<b
   - LPP.eLHS - A in the Ax=b
   - LPP.eRHS - b in the Ax=b
 - multi_sat_data.df is the data frame containing all information for the entire problem scenario (for each attempt)
 - multi_sat_data.pf_df is the performance data frame for the relevant (reachable) image attempts
 - multi_sat_data.m is the folium map with relevant problem scenario information

Two html map objects will be saved in your working directory for inspection, all_requests.html and sat_path.html, respectively. (THIS FEATURE SHOULD MAYBE BE REMOVED?)

## EOS.solve() 
This function contains both the preference integration part (scoring) and the solution approach.
It takes in the following arguments:
- scoring_method (can be 1 = TOPSIS, 2 = ELECTRE, 3 = naive scoring method WSA)
- solution_method (can be "gurobi", "PuLP", "cplex", "VNS", "random", or "DAG"). Note, for LPP approaches s.a.GLPK, the simplify argument in EOS.scenario() must be FALSE to not create for setwise acquisition constraints. That is, in the maneuvarability constraint to allow for the scenario where x1 cannot be acquired with x2 and x3, but x2 and x3 can be acquired together.
- criteria_weights (relevant for TOPSIS, ELECTRE, and WSA, e.g. [1,0,1,0,0,0,1,1,1])
- threshold_parameters (relevant for ELECTRE, e.g. [[0,0,1000],[0,0,40],[0,0,40],[0,0,15],[0,0,4],[0,0,20000],[0,0,1], [0,0,1]]). Note, it is the indifference, preference, and veto threshold variables assigned for each criteria.
- alpha a scalar, it is the factor with which scores are taken to the power of. It basically represent the level with which one trusts the computed score - it supplies the DM with ratio evaluation ability. Default value is 1 meaning this is negleted.
- API_key = string of API key for solvers (if they are necessary s.a.for CPLEX.

Note, the order with which criteria are presented in the criteria weights and threshold_parameters arguments are:
- area, 
- angle, 
- sun elevation, 
- cloud cover, 
- priority, 
- price, 
- age, 
- uncertainty

AND outputs the following:
 - multi_sat_testing.x is the binary solution vector illustrating which attempts should be acquired and which should be neglected
 - multi_sat_testing.score is the generated score for each attempt through the introduced preference setting
 - multi_sat_testing.time is the runtime for the solution approach

## EOS.visualize()
This funciton puts out an html file in the designated folder containing a folium map of the problem instance and the solution obtained.
It takes in the following arguments:
 - x_data which is the resulting output from the multi_sat_data() function
 - x_res which is the resulting output from the multi_sat_testing() function
 - name_of_html takes in a string for the name of the html file. Default is 'EOSpython'

The Output is a saved file in the working folder. 

Note, the visualize builds on the map, which is build in the scenario generation function multi_sat_data(). 
It is not possible to either build a deep copy of the html file or sequentially add feature groups in the folium package and it is therefore not possible sequentially run multiple different solution schemes without the former computed solution still being visible in the map - The capabiolity of changing the color on the acquisition in multi_sat_testing() is therefore added. Note, this is hopefully being improved for next update.

## EOS.evaluate()
This function provides a quick deeper evaluation functionality (than the total score and number of acquisitions provided in the sat_testing() function). The metrics that is showcased are respectively:
 - scenario specific metrics:
   - number of attempts
   - number of unique requests
   - number of constraints in the LPP
   - average angle on attempts
   - average prices 
   - average sun elevation (is more interesting for non-global scenarios)
   - average cloud cover 
   - average priority

 - Solution specific metrics
  - total acquisiitons
  - total profit
  - average cloud coverage
  - acqusitions with good cloud cover (<10)
  - acqusitions with bad cloud cover (>30)
  - average depointing angle
  - acquisitions with good off-nadir angle (<10)
  - acqusitions with bad off-nadir angle (>30)
  - average priority
  - priority 1 acquisitions
  - priority 2 acquisitions
  - priority 3 acquisitions
  - priority 4 acquisitions
  - average sun elevation
  - total area captured

OUTPUT: They can be accesed thrugh the evaluate.scenario and evaluate.solution output, respectively.

Note, average is often a bad metric in this case, as a few very bad performing acquisitions can hide behind a larger set of requests. A better metric is therefore to look at quantiles or certain benchmarks and how many acquisitions with that profile was able to be captured.

## Improvements or suggestions
### PLEASE let me know if you have any suggestions (good or bad) to the code - any comments are highly appreciated :-) In terms of added capabilities, I am currently considering:
 - There is a FutureWarning in a (NumPy?) dataframe function
 - IF there is no feasible requests it will just break down.. so this bug HAS to be fixed!
 - allowing integration of user specified customer database
 - integrate a larger plethora of solution approaches:
    - NSGA-II
    - NSGA-III
    - other greedy approaches?
 - added visualization traits
 - added evaluation metrics
 - allow usage of evaluation approaches outside of main functions, e.g. for usage in weight and threshold value elicitation
 - improve visualization to e.g. showcase operational criteria also (cloud cover, sun elevation)

Again, if any of these have your interest, please reach out!



# Appendix
In this section, some of the assumptions of the pre-processing is explained.
the distribution of the request database is mainly landbased requests, as these mimic the high and low concentration areas that can occur in an EOS setting, and in the scheduling we are (more or less) only interested in the high distribution areas - as of why the marine requests are omitted. The database is created based on the population density of the earth, and assumes therefore that EOS imagery requests mimic the same density map. See the below figure for one instance:

![alt text](generated_requests_start.png)

In the event that the OWM api keys (and the corresponding subscription to gain access to enough weather data acquitions) are not acquired, then the free option of generating cloud cover observations can be utilised in the weather_real=False argument of the multi_sat_data() functionality. This cloud cover generation generates cloud cover data based on a three level cos function. This is done due to the locality and temporal considerations that apply to the cloud cover of image requests. The output mimics some of the landbased cloud cover metrics that are presented on the NASA cloud report (https://earthobservatory.nasa.gov/images/85843/cloudy-earth), where e.g. 30 pct are close to cloud free observations and a third has to be disregarded due to more than 50 pct cloud coverge. The distribution can be seen below.

![alt text](cloud_gen.png)     ![alt text](cloud_dist.png)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/AlexVasegaard/EOS",
    "name": "EOSpython",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.11",
    "maintainer_email": null,
    "keywords": "satellite, earth observation, operations research, optimization, simulator, scenario generator",
    "author": "Alex Vasegaard",
    "author_email": "aev@mp.aau.dk",
    "download_url": "https://files.pythonhosted.org/packages/ea/f3/559092a7b29d64946150bc9530768821be8b7def19ea0bd8e4eb4027257b/EOSpython-0.0.11.tar.gz",
    "platform": null,
    "description": " # EOSpython\r\nEOSpython is a set of python functions (intended to be a package) that encompases everything within a centralized Earth Observation Satellite scheduling system in terms of Scenario generation, pre-processing, problem setup, solution approach, decision maker preference integration, and visualization.\r\n\r\nThe DM preferences are introduced through a plethora of Scoring approaches available:\r\n- modified ELECTRE-III (ordinal)\r\n- topsis (ordinal)\r\n- WSA (ordinal)\r\n\r\nNote, all scoring approaches contain representative variables to elicited information as opposed to using pairwise evaluations.\r\n\r\nAnd the solution procedure can be one of the following:\r\n - GLPK (Large scale LPP solver from cvxopt - does not require API)\r\n - ELPA (an extended longest path algorithm that can manage extremely large problem scenarios - does not require API)\r\n - gurobi (large scale LPP solver from gurobi - REQUIRES API)\r\n - PuLP (large scale LPP solver from PuLP - REQUIRES API)\r\n - Random greedy approach (can manage large scale problems, but performs very poorly - only really applicable to showcase complexity)\r\n\r\nNote, some problem scnearios are too large for the LPP solvers to manage. \r\n\r\n![alt text](single_scenario_map.PNG)\r\n\r\nThe four main functions are EOSscenario(), EOSsolve(), EOSvisualize(), and EOSevaluate() - an explanation for the functions are given below. \r\n\r\nThe package dependencies are:\r\n- numpy, pandas, datetime, requests, random, ephem, math, folium (for a visual html map output), time, scipy, progressbar, ast, timeit, copy\r\n\r\nand depending on whether a free optimization method is used (api may be required):\r\n- cvxopt, gurobipy, pulp, docplex\r\n\r\nReal satellite paths are introduced trough their TLE (Go to www.celestrak.com to obtain TLEs, default are Spot 6,7 and Pleiades A and B)\r\nAlso, there is an option to obtain realtime, historic, or generate weather data (cloud coverage) when generating the scenario, this does however require an API key from OpenWeatherMap.org. \r\n\r\n## Usage\r\n\r\n### install \r\n```python\r\npip install EOSpython\r\n```\r\n\r\n### example\r\n```python\r\nfrom EOSpython import EOS\r\nimport pandas as pd                        #The evaluation output is presented as a pd dataframe\r\nimport numpy as np                         #The preference structure is given in numpy arrays\r\n\r\nsat_TLEs = [38755, 40053] #spot 6 and 7 - assumed to be heterogenous an capable of acquiring the customer requests in the database\r\n\r\nhorizon_start = [2024,7,11,9,40] #start time for planning window [year, month, date, hour, minute]\r\n\r\nhorizon = 8 #planning horizon in hours\r\n\r\n## Preference structure\r\n\r\n#Corresponding weights related to the selection/scoring of image attempts\r\n               #w\r\ncriteria_w =  [0.05,      #area\r\n               0.1,       #off-nadir angle\r\n               0.1,       #sun elevation\r\n               0.2,       #cloud coverage \r\n               0.2,       #priority\r\n               0.1,       #price\r\n               0.2,       #age\r\n               0.05]      #uncertainty\r\n\r\n#if outranking model is used, then threshold variables q (indifference), p (preference), and v (veto)\r\n       #q,  p,   v\r\nqpv = [[0,  30,  1000],        #area\r\n       [0,  2,   40],          #off-nadir angle\r\n       [0,  10,  40],          #sun elevation\r\n       [0,  2,   15],          #cloud coverage \r\n       [0,  1,   4],           #priority\r\n       [0,  100, 20000],       #price\r\n       [0,  4,   10],          #age\r\n       [0,  0.5,   1]]         #uncertainty\r\n\r\n\r\n\r\n### Example with Extended Longest Path Algoorithm and ELECTRE-III scoring approach\r\n\r\n\r\n## Create customer database\r\ndatabase, map_file = EOS.customer_db(number_of_requests_0 = 250)\r\n\r\nprint(database)\r\nprint(database.info())\r\n#Note, if map_generation is True, the database can be inspected via the interactive all_requests.html file saved in the wd!\r\n\r\n\r\n## Create scenario\r\nx_data = EOS.scenario(customer_database = database, m = map_file, \r\n                      seconds_gran=10, \r\n                      NORAD_ids=sat_TLEs, #the \r\n                      weather_real = False, #we can by the use of an API key get real world cloud forecasts from the OWM platform\r\n                      simplify = True) #we can simplify the set of constraints when using the ELPA algorithm\r\n#One can also add their own customer database - the structure just have to be the same.\r\n#The internal map generation function of the scenario module adds the satellite paths and reachable requests for the considered planning horizon.\r\n\r\n\r\n## Generate a solution\r\nx_res1 = EOS.solve(x_data, scoring_method=2, solution_method = \"DAG\", criteria_weights_l = criteria_w, threshold_parameters_l= qpv) #2=ELECTRE-III scoring approach\r\n#Note, the solution method can be either: DAG, GLPK, gurobi, PuLP  - make sure to have the right capitulazation!\r\n\r\nEOS.visualize(x_data, x_res1, 'EOS_example') #output is an interactive map called EOS_example.html saved in the wd\r\n\r\ndf = EOS.evaluate(x_data, x_res1)\r\n\r\nprint(df.solution)\r\nprint(df.scenario)\r\n\r\nx_data = EOS.scenario(seconds_gran=10, number_of_requests_0=1000, \r\n                      NORAD_ids=sat_TLEs, weather_real = False, \r\n                      schedule_start = horizon_start, hours_horizon = horizon,\r\n                      simplify = True) #we can simplify the set of constraints when using the ELPA algorithm\r\nx_res1 = EOS.solve(x_data, scoring_method=2, solution_method = \"DAG\",   \r\n                   criteria_weights = criteria_w, \r\n                   threshold_parameters= qpv)\r\n\r\nEOS.visualize(x_data, x_res1, 'EOS_example') \r\n\r\ndf1 = EOS.evaluate(x_data, x_res1)\r\nprint(df1.solution)\r\nprint(df1.scenario)\r\n\r\n\r\n### Example with GLPK solver and the naive weighted sum scoring approach\r\n\r\nx_data = EOS.scenario(seconds_gran=10, number_of_requests_0=1000, \r\n                      NORAD_ids=sat_TLEs, weather_real = False, \r\n                      schedule_start = horizon_start, hours_horizon = horizon,\r\n                      simplify = False) #for a non solver the simplify argument must be false, as solution space otherwise is overconstrained\r\nx_res2 = EOS.solve(x_data, scoring_method=3, solution_method = \"GLPK\",  #3=WSA\r\n                   criteria_weights = criteria_w, \r\n                   threshold_parameters= qpv)\r\n\r\nEOS.visualize(x_data, x_res2, 'EOS_example') #output is an interactive map called EOS_example.html saved in the wd\r\n\r\ndf2 = EOS.evaluate(x_data, x_res2)\r\nprint(df2.solution)\r\nprint(df2.scenario)\r\n```\r\n## EOS.customer_db()\r\nIs a function that generates a customer database in the format of a pandas dataframe and a html file where one can inspect it. The database is used for the further realization of the problem scenario when we match it with a set of satellites and their operational capabilities as well as the actual planning horizon. The customer database consists of a set of columns that describe the image request for each individual request (rows). \r\nThe format is: \r\n #   Column             Non-Null Count  Dtype\r\n---  ------             --------------  -----\r\n 0   ID                 250 non-null    object\r\n 1   acquired           250 non-null    int64\r\n 2   reachable          250 non-null    int64\r\n 3   request location   250 non-null    object\r\n 4   day                250 non-null    int64\r\n 5   area               250 non-null    float64\r\n 6   stereo             250 non-null    int64\r\n 7   strips             250 non-null    int64\r\n 8   duration           250 non-null    float64\r\n 9   priority           250 non-null    int64\r\n 10  priority mod       250 non-null    int64\r\n 11  customer type mod  250 non-null    int64\r\n 12  price              250 non-null    int64\r\n 13  waiting time       250 non-null    int64\r\n\r\nIf the user wants to test their own setup - their database has to use the same format.. \r\n\r\n\r\n## EOS.scenario() \r\nGenerates the problem, so it functions as a general pre-processing for the EOS system. \r\nIt is seeded so problem scenarios can be replicated across different environments and therefore utilized for evaluating different solution approaches.\r\nNote, it isnt optimized for speed yet, so it will run rather slow.\r\n\r\n\r\nIt takes in the following arguments: \r\n- seconds_gran = 20 %The discretisation level of the satellitel path (discrete optimization problem) \r\n- number_of_requests_0 = 1000, %customer requests in database initially (there is an option to contionously add customers to mimic the effect of a real EOS production where new customers are entering and one over time still wants to ensure that requests doesnt violate an age threshold. The customers are generated based on location distribution which is higher around urbanized areas - this should mimic the actual customer database that EOS companies see or at least mimic the density of requests that optimization problems face.) \r\n- NORAD_ids a list of the chosen satellite TLEs. Default is [38755, 40053]  %TLEs for spot 6 and 7 satellites\r\n- weather_real = False, %whether real cloud coverage data is utilized for the chosen time horizon\r\n- simplify = False, #whether constraints are simplified based on the principle of inter set constraints - IT IS ONLY VALID IF a LPP solution approach is used s.a. GLPK.\r\n- schedule_start is time of initiation for the schedule horizon. A list of the date entities expressing [year, month, day, hour, minute]. The default is [2021,7,21,9,40].\r\n- hours_horizon = 8, %duration of planning horizon in hours\r\n- max_off_nadir_angle = 30, %degrees that satellite can maneuver (or is allowed to still acquire pictures) \r\n- height_satellite = 694,   %altitude of satellites (in km) - this is in next iteration updated to automatically be calculated \r\n- rotation_speed = 30/12, %degrees per second - per https://directory.eoportal.org/web/eoportal/satellite-missions/s/spot-6-7\r\n- cam_resolution = 1, %m^2 per pixel\r\n- capacity_limit = 1000000, %in mega byte\r\n- satellite_swath = 3600, &swath of satellite images \r\n- map_generation = True %whether a visualisation should be generated\r\n- API_key = list of strings with API key(s) for OpenWeatherMap.org for weather forecasts and for historic api.weatherbit.io\r\n\r\nNote, the scenarios consist of requests with stereo, strip requirements, which is modeled by the constraints. \r\nFor a request to be considered we have defined certain thresholds, namely a maximum cloud coverage of 50 pct, \r\n\r\nAND outputs the following:\r\n - multi_sat_data.LPP is the Linear programming problem Ax<=b where LPP contains:\r\n   - LPP.LHS - A in the Ax<b\r\n   - LPP.RHS - b in the Ax<b\r\n   - LPP.eLHS - A in the Ax=b\r\n   - LPP.eRHS - b in the Ax=b\r\n - multi_sat_data.df is the data frame containing all information for the entire problem scenario (for each attempt)\r\n - multi_sat_data.pf_df is the performance data frame for the relevant (reachable) image attempts\r\n - multi_sat_data.m is the folium map with relevant problem scenario information\r\n\r\nTwo html map objects will be saved in your working directory for inspection, all_requests.html and sat_path.html, respectively. (THIS FEATURE SHOULD MAYBE BE REMOVED?)\r\n\r\n## EOS.solve() \r\nThis function contains both the preference integration part (scoring) and the solution approach.\r\nIt takes in the following arguments:\r\n- scoring_method (can be 1 = TOPSIS, 2 = ELECTRE, 3 = naive scoring method WSA)\r\n- solution_method (can be \"gurobi\", \"PuLP\", \"cplex\", \"VNS\", \"random\", or \"DAG\"). Note, for LPP approaches s.a.GLPK, the simplify argument in EOS.scenario() must be FALSE to not create for setwise acquisition constraints. That is, in the maneuvarability constraint to allow for the scenario where x1 cannot be acquired with x2 and x3, but x2 and x3 can be acquired together.\r\n- criteria_weights (relevant for TOPSIS, ELECTRE, and WSA, e.g. [1,0,1,0,0,0,1,1,1])\r\n- threshold_parameters (relevant for ELECTRE, e.g. [[0,0,1000],[0,0,40],[0,0,40],[0,0,15],[0,0,4],[0,0,20000],[0,0,1], [0,0,1]]). Note, it is the indifference, preference, and veto threshold variables assigned for each criteria.\r\n- alpha a scalar, it is the factor with which scores are taken to the power of. It basically represent the level with which one trusts the computed score - it supplies the DM with ratio evaluation ability. Default value is 1 meaning this is negleted.\r\n- API_key = string of API key for solvers (if they are necessary s.a.for CPLEX.\r\n\r\nNote, the order with which criteria are presented in the criteria weights and threshold_parameters arguments are:\r\n- area, \r\n- angle, \r\n- sun elevation, \r\n- cloud cover, \r\n- priority, \r\n- price, \r\n- age, \r\n- uncertainty\r\n\r\nAND outputs the following:\r\n - multi_sat_testing.x is the binary solution vector illustrating which attempts should be acquired and which should be neglected\r\n - multi_sat_testing.score is the generated score for each attempt through the introduced preference setting\r\n - multi_sat_testing.time is the runtime for the solution approach\r\n\r\n## EOS.visualize()\r\nThis funciton puts out an html file in the designated folder containing a folium map of the problem instance and the solution obtained.\r\nIt takes in the following arguments:\r\n - x_data which is the resulting output from the multi_sat_data() function\r\n - x_res which is the resulting output from the multi_sat_testing() function\r\n - name_of_html takes in a string for the name of the html file. Default is 'EOSpython'\r\n\r\nThe Output is a saved file in the working folder. \r\n\r\nNote, the visualize builds on the map, which is build in the scenario generation function multi_sat_data(). \r\nIt is not possible to either build a deep copy of the html file or sequentially add feature groups in the folium package and it is therefore not possible sequentially run multiple different solution schemes without the former computed solution still being visible in the map - The capabiolity of changing the color on the acquisition in multi_sat_testing() is therefore added. Note, this is hopefully being improved for next update.\r\n\r\n## EOS.evaluate()\r\nThis function provides a quick deeper evaluation functionality (than the total score and number of acquisitions provided in the sat_testing() function). The metrics that is showcased are respectively:\r\n - scenario specific metrics:\r\n   - number of attempts\r\n   - number of unique requests\r\n   - number of constraints in the LPP\r\n   - average angle on attempts\r\n   - average prices \r\n   - average sun elevation (is more interesting for non-global scenarios)\r\n   - average cloud cover \r\n   - average priority\r\n\r\n - Solution specific metrics\r\n  - total acquisiitons\r\n  - total profit\r\n  - average cloud coverage\r\n  - acqusitions with good cloud cover (<10)\r\n  - acqusitions with bad cloud cover (>30)\r\n  - average depointing angle\r\n  - acquisitions with good off-nadir angle (<10)\r\n  - acqusitions with bad off-nadir angle (>30)\r\n  - average priority\r\n  - priority 1 acquisitions\r\n  - priority 2 acquisitions\r\n  - priority 3 acquisitions\r\n  - priority 4 acquisitions\r\n  - average sun elevation\r\n  - total area captured\r\n\r\nOUTPUT: They can be accesed thrugh the evaluate.scenario and evaluate.solution output, respectively.\r\n\r\nNote, average is often a bad metric in this case, as a few very bad performing acquisitions can hide behind a larger set of requests. A better metric is therefore to look at quantiles or certain benchmarks and how many acquisitions with that profile was able to be captured.\r\n\r\n## Improvements or suggestions\r\n### PLEASE let me know if you have any suggestions (good or bad) to the code - any comments are highly appreciated :-) In terms of added capabilities, I am currently considering:\r\n - There is a FutureWarning in a (NumPy?) dataframe function\r\n - IF there is no feasible requests it will just break down.. so this bug HAS to be fixed!\r\n - allowing integration of user specified customer database\r\n - integrate a larger plethora of solution approaches:\r\n    - NSGA-II\r\n    - NSGA-III\r\n    - other greedy approaches?\r\n - added visualization traits\r\n - added evaluation metrics\r\n - allow usage of evaluation approaches outside of main functions, e.g. for usage in weight and threshold value elicitation\r\n - improve visualization to e.g. showcase operational criteria also (cloud cover, sun elevation)\r\n\r\nAgain, if any of these have your interest, please reach out!\r\n\r\n\r\n\r\n# Appendix\r\nIn this section, some of the assumptions of the pre-processing is explained.\r\nthe distribution of the request database is mainly landbased requests, as these mimic the high and low concentration areas that can occur in an EOS setting, and in the scheduling we are (more or less) only interested in the high distribution areas - as of why the marine requests are omitted. The database is created based on the population density of the earth, and assumes therefore that EOS imagery requests mimic the same density map. See the below figure for one instance:\r\n\r\n![alt text](generated_requests_start.png)\r\n\r\nIn the event that the OWM api keys (and the corresponding subscription to gain access to enough weather data acquitions) are not acquired, then the free option of generating cloud cover observations can be utilised in the weather_real=False argument of the multi_sat_data() functionality. This cloud cover generation generates cloud cover data based on a three level cos function. This is done due to the locality and temporal considerations that apply to the cloud cover of image requests. The output mimics some of the landbased cloud cover metrics that are presented on the NASA cloud report (https://earthobservatory.nasa.gov/images/85843/cloudy-earth), where e.g. 30 pct are close to cloud free observations and a third has to be disregarded due to more than 50 pct cloud coverge. The distribution can be seen below.\r\n\r\n![alt text](cloud_gen.png)     ![alt text](cloud_dist.png)\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A set of functions encompassing a centralized Earth Observation Satellite scheduling system",
    "version": "0.0.11",
    "project_urls": {
        "Homepage": "https://github.com/AlexVasegaard/EOS"
    },
    "split_keywords": [
        "satellite",
        " earth observation",
        " operations research",
        " optimization",
        " simulator",
        " scenario generator"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ae1b3201f6bb31a64f11ef2c888dd85eed64b86408eae669fa4ab0a0b1b675d",
                "md5": "c271ea7598034cbc58f05d74a6d842ca",
                "sha256": "491caed7b4286b2a2b06866d2868d691b8a51fe54f67a3e5f521276dcd32c85a"
            },
            "downloads": -1,
            "filename": "EOSpython-0.0.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c271ea7598034cbc58f05d74a6d842ca",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.11",
            "size": 1413355,
            "upload_time": "2024-07-19T09:20:04",
            "upload_time_iso_8601": "2024-07-19T09:20:04.494554Z",
            "url": "https://files.pythonhosted.org/packages/7a/e1/b3201f6bb31a64f11ef2c888dd85eed64b86408eae669fa4ab0a0b1b675d/EOSpython-0.0.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaf3559092a7b29d64946150bc9530768821be8b7def19ea0bd8e4eb4027257b",
                "md5": "0e1be5a346209d302daa066bde26f4d1",
                "sha256": "a80924ca7d99bd98565ba2f4ed45b19ea03a918255f68c33552493d01c46eda8"
            },
            "downloads": -1,
            "filename": "EOSpython-0.0.11.tar.gz",
            "has_sig": false,
            "md5_digest": "0e1be5a346209d302daa066bde26f4d1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.11",
            "size": 1418292,
            "upload_time": "2024-07-19T09:20:06",
            "upload_time_iso_8601": "2024-07-19T09:20:06.446455Z",
            "url": "https://files.pythonhosted.org/packages/ea/f3/559092a7b29d64946150bc9530768821be8b7def19ea0bd8e4eb4027257b/EOSpython-0.0.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-19 09:20:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AlexVasegaard",
    "github_project": "EOS",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "eospython"
}
        
Elapsed time: 0.39470s