Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
vegama committed May 17, 2024
1 parent e74e72d commit 09c2847
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/processing/netcdfs_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

def get_netcdf_from_point(longitude: float, latitude: float, path : str, start_date: str, end_date: str):
"""_summary_
Returns the netcdf file from a point
:Args:
Args:
longitude (float): Longitude of the point
latitude (float): Latitude of the point
path (int): Path of the netcdf files
start_date (str): Start date of the data
end_date (str): End date of the data
:Returns:
Returns:
_type_: xarray dataset
"""

Expand All @@ -40,8 +40,8 @@ def get_netcdf_from_point(longitude: float, latitude: float, path : str, start_d

def get_netcdf_from_area(longitude_min: float, longitude_max : float, latitude_min: float, latitude_max : float, path: str, start_date: str, end_date: str):
"""_summary_
Returns the netcdf file from an area
:Args:
Args:
longitude_min (float): Minimum longitude of the area
longitude_max (float): Maximum longitude of the area
latitude_min (float): Minimum latitude of the area
Expand All @@ -50,7 +50,7 @@ def get_netcdf_from_area(longitude_min: float, longitude_max : float, latitude_m
start_date (str): Start date of the data
end_date (str): End date of the data
:Returns:
Returns:
_type_: xarray dataset
"""

Expand All @@ -75,14 +75,14 @@ def get_netcdf_from_area(longitude_min: float, longitude_max : float, latitude_m

def get_netcdf_from_mask(filepath_mask : str, path : str, row_ID = None, start_date = None, end_date = None) :
"""_summary_
Returns the netcdf file from a mask
:Args:
Args:
filepath_mask (str): Filepath of the mask file
path (int): Path of the netcdf files
start_date (str): Start date of the data
end_date (str): End date of the data
row_ID (int): ID of the desired mask
:Returns:
Returns:
_type_: xarray dataset
"""

Expand Down

0 comments on commit 09c2847

Please sign in to comment.