DavMelchi commited on
Commit
1589f78
·
1 Parent(s): 358d157

update physical folder

Browse files
Files changed (2) hide show
  1. .gitignore +1 -1
  2. utils/utils_vars.py +1 -1
.gitignore CHANGED
@@ -1,5 +1,5 @@
1
  /.history
2
  /.venv
3
  /__pycache__
4
-
5
  __pycache__
 
1
  /.history
2
  /.venv
3
  /__pycache__
4
+ /.github
5
  __pycache__
utils/utils_vars.py CHANGED
@@ -11,7 +11,7 @@ def get_physical_db():
11
  Returns:
12
  pd.DataFrame: A DataFrame containing the filtered columns.
13
  """
14
- physical = pd.read_csv(r"physical_db\physical_database.csv")
15
  physical = physical[["Code_Sector", "Azimut", "Longitude", "Latitude", "Hauteur"]]
16
  return physical
17
 
 
11
  Returns:
12
  pd.DataFrame: A DataFrame containing the filtered columns.
13
  """
14
+ physical = pd.read_csv(r"./physical_db/physical_database.csv")
15
  physical = physical[["Code_Sector", "Azimut", "Longitude", "Latitude", "Hauteur"]]
16
  return physical
17