diff --git a/.github/workflows/test_ubu.yml b/.github/workflows/test_ubu.yml index 1d2db75c..7b907dd1 100644 --- a/.github/workflows/test_ubu.yml +++ b/.github/workflows/test_ubu.yml @@ -35,6 +35,9 @@ jobs: - name: Run regression test opk to opk run: python3 ./borea_tools/opk_to_opk.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -e 2154 -y ./dataset/fr_ign_RAF20.tif -c ./dataset/Camera1.txt -m ./dataset/MNT_France_25m_h_crop.tif --fm height -n Test -w ./test/tmp/ -o NXYHPOKC -ou radian -oa False + - name: Run regression test opk to opk with multi epsg + run : python3 ./borea_tools/opk_to_opk.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -e 2154 0 4964 -y ./dataset/fr_ign_RAF20.tif -c ./dataset/Camera1.txt -m ./dataset/MNT_France_25m_h_crop.tif --fm height -n Test -w ./test/tmp/ -o NXYHPOKC -ou radian -oa False + - name: Run regression test control opk run: python3 ./borea_tools/opk_control.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -c ./dataset/Camera1.txt -e 2154 -y ./dataset/fr_ign_RAF20.tif -m ./dataset/MNT_France_25m_h_crop.tif --fm height -t ./dataset/terrain_test.mes -g ./dataset/GCP_test.app -d 13 -l PTXYH -p inter -w ./test/tmp/ diff --git a/.github/workflows/test_win.yml b/.github/workflows/test_win.yml index 906c9a23..5292539f 100644 --- a/.github/workflows/test_win.yml +++ b/.github/workflows/test_win.yml @@ -37,6 +37,10 @@ jobs: shell: bash -el {0} run: python ./borea_tools/opk_to_opk.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -e 2154 -y ./dataset/fr_ign_RAF20.tif -c ./dataset/Camera1.txt -m ./dataset/MNT_France_25m_h_crop.tif --fm height -n Test -w ./test/tmp/ -o NXYHPOKC -ou radian -oa False + - name: Run regression test opk to opk with multi epsg + shell: bash -el {0} + run : python ./borea_tools/opk_to_opk.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -e 2154 0 4964 -y ./dataset/fr_ign_RAF20.tif -c ./dataset/Camera1.txt -m ./dataset/MNT_France_25m_h_crop.tif --fm height -n Test -w ./test/tmp/ -o NXYHPOKC -ou radian -oa False + - name: Run regression test control opk shell: bash -el {0} run: python ./borea_tools/opk_control.py -r ./dataset/23FD1305_alt_test.OPK -i NXYZOPKC -f 2 -c ./dataset/Camera1.txt -e 2154 -y ./dataset/fr_ign_RAF20.tif -m ./dataset/MNT_France_25m_h_crop.tif --fm height -t ./dataset/terrain_test.mes -g ./dataset/GCP_test.app -d 13 -l PTXYH -p inter -w ./test/tmp/ diff --git a/borea/datastruct/shot.py b/borea/datastruct/shot.py index f510537e..82796111 100644 --- a/borea/datastruct/shot.py +++ b/borea/datastruct/shot.py @@ -153,9 +153,9 @@ def set_type_z(self, type_z: str) -> None: type_z (str): z type height or altitude. """ if type_z == "height": - self.pos_shot[2] = ProjEngine().tranform_height(self.pos_shot) + self.pos_shot[2] = ProjEngine().tf.tranform_height(self.pos_shot) else: - self.pos_shot[2] = ProjEngine().tranform_altitude(self.pos_shot) + self.pos_shot[2] = ProjEngine().tf.tranform_altitude(self.pos_shot) def set_linear_alteration(self, linear_alteration: bool) -> None: """ diff --git a/borea/datastruct/workdata.py b/borea/datastruct/workdata.py index 5db28c46..a11e9966 100644 --- a/borea/datastruct/workdata.py +++ b/borea/datastruct/workdata.py @@ -59,20 +59,22 @@ def add_shot(self, name_shot: str, pos_shot: np.ndarray, linear_alteration=linear_alteration, order_axe=order_axe) - def set_proj(self, epsg: int, path_geoid: list = None) -> None: + def set_proj(self, epsg: list, path_geoid: list = None) -> None: """ Setup a projection system to the worksite. Args: - epsg (int): Code epsg of the porjection ex: 2154. + epsg (list): Code epsg of the porjection ex: 2154. path_geoid (str): List of GeoTIFF which represents the geoid in grid form. """ ProjEngine.clear() try: # Check if the epsg exist - crs = CRS.from_epsg(epsg) - del crs + for idepsg in epsg: + if idepsg: + _ = CRS.from_epsg(idepsg) + del _ except exceptions.CRSError as e_info: - raise exceptions.CRSError(f"Your EPSG:{epsg} doesn't exist") from e_info + raise exceptions.CRSError(f"Your EPSG:{epsg} doesn't exist in pyproj.") from e_info ProjEngine().set_epsg(epsg, path_geoid) diff --git a/borea/format/rpc.py b/borea/format/rpc.py index fcb452c4..7c3c21ba 100644 --- a/borea/format/rpc.py +++ b/borea/format/rpc.py @@ -111,13 +111,13 @@ def normalize_data(self, grid_img: np.ndarray, grid_world: np.ndarray) -> tuple: if self.fact_rpc is None: if self.output_epsg: ProjEngine().set_epsg_tf_geog_output(self.output_epsg) - x_geog, y_geog, z_geog = ProjEngine().carto_to_geog_out(grid_world[0], - grid_world[1], - grid_world[2]) + x_geog, y_geog, z_geog = ProjEngine().tf.carto_to_geog_out(grid_world[0], + grid_world[1], + grid_world[2]) else: - x_geog, y_geog, z_geog = ProjEngine().carto_to_geog(grid_world[0], - grid_world[1], - grid_world[2]) + x_geog, y_geog, z_geog = ProjEngine().tf.carto_to_geog(grid_world[0], + grid_world[1], + grid_world[2]) else: x_geog = grid_world[0]*self.fact_rpc y_geog = grid_world[1]*self.fact_rpc diff --git a/borea/geodesy/local_euclidean_proj.py b/borea/geodesy/local_euclidean_proj.py index 12607d5e..6ba6d7f0 100644 --- a/borea/geodesy/local_euclidean_proj.py +++ b/borea/geodesy/local_euclidean_proj.py @@ -37,7 +37,7 @@ def mat_rot_euclidean_local(self, x: float, y: float) -> np.ndarray: Returns: np.array: Transition matrix. """ - lon, lat = ProjEngine().carto_to_geog(x, y) + lon, lat = ProjEngine().tf.carto_to_geog(x, y) gamma = ProjEngine().get_meridian_convergence(x, y) # Matrix for switching to local cartesian coordinates @@ -92,10 +92,10 @@ def world_to_eucli(self, coor: np.ndarray) -> np.ndarray: """ coor = check_array_transfo(coor[0], coor[1], coor[2]) - coor_geoc = np.array(ProjEngine().carto_to_geoc(coor[0], coor[1], coor[2])) - central_geoc = np.array(ProjEngine().carto_to_geoc(self.pt_central[0], - self.pt_central[1], - self.pt_central[2])) + coor_geoc = np.array(ProjEngine().tf.carto_to_geoc(coor[0], coor[1], coor[2])) + central_geoc = np.array(ProjEngine().tf.carto_to_geoc(self.pt_central[0], + self.pt_central[1], + self.pt_central[2])) dr = np.vstack([coor_geoc[0] - central_geoc[0], coor_geoc[1] - central_geoc[1], coor_geoc[2] - central_geoc[2]]) @@ -115,13 +115,13 @@ def eucli_to_world(self, coor: np.ndarray) -> np.ndarray: """ coor = np.squeeze(coor) - central_geoc = np.array(ProjEngine().carto_to_geoc(self.pt_central[0], - self.pt_central[1], - self.pt_central[2])) + central_geoc = np.array(ProjEngine().tf.carto_to_geoc(self.pt_central[0], + self.pt_central[1], + self.pt_central[2])) dr = np.vstack([coor[0] - self.pt_central[0], coor[1] - self.pt_central[1], coor[2] - self.pt_central[2]]) point_geoc = np.squeeze((self.rot_to_euclidean_local.T @ dr) + np.array([central_geoc]).T) x_gc, y_gc, z_gc = check_array_transfo(point_geoc[0], point_geoc[1], point_geoc[2]) - tup = ProjEngine().geoc_to_carto(x_gc, y_gc, z_gc) + tup = ProjEngine().tf.geoc_to_carto(x_gc, y_gc, z_gc) return np.array([tup[0], tup[1], tup[2]]) diff --git a/borea/geodesy/proj_engine.py b/borea/geodesy/proj_engine.py index d9b50ab4..197f23a6 100644 --- a/borea/geodesy/proj_engine.py +++ b/borea/geodesy/proj_engine.py @@ -11,7 +11,7 @@ # pylint: disable=unpacking-non-sequence @dataclass -class ProjEngine(TransformGeodesy, metaclass=Singleton): +class ProjEngine(metaclass=Singleton): """ This class provides functions for using a cartographic system. """ @@ -21,17 +21,17 @@ class ProjEngine(TransformGeodesy, metaclass=Singleton): def __post_init__(self) -> None: if self.epsg: - self.crs = pyproj.CRS.from_epsg(self.epsg) + self.crs = pyproj.CRS.from_epsg(self.epsg[0]) self.proj = pyproj.Proj(self.crs) - TransformGeodesy.__tf_init__(self, self.geoid, self.crs) + self.tf = TransformGeodesy(self.epsg, self.geoid) - def set_epsg(self, epsg: int, geoid: list = None) -> None: + def set_epsg(self, epsg: list, geoid: list = None) -> None: """ Setter of the class ProjEngine. Allows to init the class with data. Args: - epsg (int): Code epsg of the projection ex: 2154. + epsg (list): Code epsg of the projection ex: 2154. geoid (list): List of geoid to use. """ self.epsg = epsg @@ -45,7 +45,7 @@ def set_epsg_tf_geog_output(self, epsg_output: int) -> None: Args: epsg_out (int): Code epsg of the output crs. """ - self.tf_output(self.crs, epsg_output) + self.tf.tf_output(epsg_output) def get_meridian_convergence(self, x_carto: Union[np.ndarray, List[float], float], y_carto: Union[np.ndarray, List[float], float]) -> np.ndarray: @@ -60,7 +60,7 @@ def get_meridian_convergence(self, x_carto: Union[np.ndarray, List[float], float Returns: np.array : Meridian convergence in degree. """ - (x_geog, y_geog) = self.carto_to_geog(x_carto, y_carto) + (x_geog, y_geog) = self.tf.carto_to_geog(x_carto, y_carto) return -np.array(self.proj.get_factors(x_geog, y_geog).meridian_convergence) def get_scale_factor(self, x_carto: Union[np.ndarray, List[float], float], @@ -76,5 +76,5 @@ def get_scale_factor(self, x_carto: Union[np.ndarray, List[float], float], Returns: np.array: Scale factor and meridian convergence. """ - x_geog, y_geog = self.carto_to_geog(x_carto, y_carto) + x_geog, y_geog = self.tf.carto_to_geog(x_carto, y_carto) return np.array(self.proj.get_factors(x_geog, y_geog).meridional_scale) - 1 diff --git a/borea/geodesy/transform_geodesy.py b/borea/geodesy/transform_geodesy.py index 76c30d8f..3ac9e2d5 100644 --- a/borea/geodesy/transform_geodesy.py +++ b/borea/geodesy/transform_geodesy.py @@ -1,13 +1,11 @@ """ Module for class ProjEngine, transform geodesy """ -from dataclasses import dataclass import pyproj import numpy as np -# pylint: disable=unsubscriptable-object -@dataclass +# pylint: disable=too-many-instance-attributes class TransformGeodesy(): """ This class provides functions to tranform coordinate system. @@ -18,49 +16,139 @@ class TransformGeodesy(): geoid (list): List of geoid to use. crs (pyproj): CRS pyproj of the worksite. """ - carto_to_geoc = None - geoc_to_carto = None - carto_to_geog = None - geog_to_carto = None - geog_to_geoid = None - geoid_to_geog = None - carto_to_geog_out = None - - def __tf_init__(self, geoid: list, crs: pyproj) -> None: - crs_geoc = pyproj.crs.GeocentricCRS(name=crs.name, datum=crs.datum.name) - crs_geog = pyproj.crs.GeographicCRS(name=crs.name, datum=crs.datum.name) - # Transform cartographic coordinates to geographic coordinates - self.carto_to_geog = pyproj.Transformer.from_crs(crs, crs_geog).transform - # Transform geographic coordinates to cartographic coordinates - self.geog_to_carto = pyproj.Transformer.from_crs(crs_geog, crs).transform - # Transform cartographic coordinates to geocentric coordinates - self.carto_to_geoc = pyproj.Transformer.from_crs(crs, crs_geoc).transform - # Transform geocentric coordinates to cartographic coordinates - self.geoc_to_carto = pyproj.Transformer.from_crs(crs_geoc, crs).transform - - if geoid: - self.tf_geoid(geoid) - - def tf_geoid(self, geoid: list) -> None: - """ - Create attribute transform, to transform geographic coordinates to geoide coordinates. + def __init__(self, epsg: list, geoid: list) -> None: + self.epsg = epsg + self.crs = pyproj.CRS.from_epsg(epsg[0]) + self.geoid = geoid + self._carto_to_geoc = None + self._geoc_to_carto = None + self._carto_to_geog = None + self._geog_to_carto = None + self._geog_to_geoid = None + self._geoid_to_geog = None + self.carto_to_geog_out = None + + @property + def carto_to_geog(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. - Args: - geoid (list): List of geoid to use. + Returns: + pyproj.Transformer : carto_to_geog """ - try: - # Transform geoide coordinates to geographic coordinates - self.geoid_to_geog = pyproj.Transformer.from_pipeline(f"+proj=vgridshift " - f"+grids={','.join(geoid)} " - "+multiplier=1").transform - # Transform geographic coordinates to geoide coordinates - self.geog_to_geoid = pyproj.Transformer.from_pipeline(f"+proj=vgridshift " - f"+grids={','.join(geoid)} " - "+multiplier=-1").transform - except pyproj.exceptions.ProjError as e: - raise pyproj.exceptions.ProjError(f"{geoid} The name or path of geotif is incorrect or " - "does not exist in " - f"{pyproj.datadir.get_data_dir()}!!!{e}") from e + if not self._carto_to_geog: + try: + crs_geog = pyproj.CRS.from_epsg(self.epsg[1]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geog = pyproj.crs.GeographicCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._carto_to_geog = pyproj.Transformer.from_crs(self.crs, crs_geog).transform + + return self._carto_to_geog + + @property + def geog_to_carto(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geog_to_carto + """ + if not self._geog_to_carto: + try: + crs_geog = pyproj.CRS.from_epsg(self.epsg[1]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geog = pyproj.crs.GeographicCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._geog_to_carto = pyproj.Transformer.from_crs(crs_geog, self.crs).transform + + return self._geog_to_carto + + @property + def carto_to_geoc(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : carto_to_geoc + """ + if not self._carto_to_geoc: + try: + crs_geoc = pyproj.CRS.from_epsg(self.epsg[2]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geoc = pyproj.crs.GeocentricCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._carto_to_geoc = pyproj.Transformer.from_crs(self.crs, crs_geoc).transform + + return self._carto_to_geoc + + @property + def geoc_to_carto(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geoc_to_carto + """ + if not self._geoc_to_carto: + try: + crs_geoc = pyproj.CRS.from_epsg(self.epsg[2]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geoc = pyproj.crs.GeocentricCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._geoc_to_carto = pyproj.Transformer.from_crs(crs_geoc, self.crs).transform + + return self._geoc_to_carto + + @property + def geoid_to_geog(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geoid_to_geog + """ + if not self.geoid: + raise ValueError("Mistake Geoid path") + + if not self._geoid_to_geog: + try: + # Transform geoide coordinates to geographic coordinates + self._geoid_to_geog = pyproj.Transformer.from_pipeline("+proj=vgridshift " + "+grids=" + f"{','.join(self.geoid)} " + "+multiplier=1").transform + except pyproj.exceptions.ProjError as e: + raise pyproj.exceptions.ProjError(f"{self.geoid} The name or path " + "of geotif is incorrect or does not exist in " + f"{pyproj.datadir.get_data_dir()}!!!{e}") from e + + return self._geoid_to_geog + + @property + def geog_to_geoid(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geog_to_geoid + """ + if not self.geoid: + raise ValueError("Mistake Geoid path") + + if not self._geog_to_geoid: + try: + # Transform geoide coordinates to geographic coordinates + self._geog_to_geoid = pyproj.Transformer.from_pipeline("+proj=vgridshift " + "+grids=" + f"{','.join(self.geoid)} " + "+multiplier=-1").transform + except pyproj.exceptions.ProjError as e: + raise pyproj.exceptions.ProjError(f"{self.geoid} The name or path " + "of geotif is incorrect or does not exist in " + f"{pyproj.datadir.get_data_dir()}!!!{e}") from e + + return self._geog_to_geoid def tranform_height(self, coor: np.ndarray) -> float: """ @@ -114,15 +202,14 @@ def tranform_altitude(self, coor: np.ndarray) -> float: raise ValueError("out geoid") return new_z - def tf_output(self, crs: pyproj, epsg_out: int = None) -> None: + def tf_output(self, epsg_out: int = None) -> None: """ Create the pyproj Transformer from crs of worksite to crs geographic ask. Args: - crs (pyproj): The crs pyproj of the worksite. epsg_out (int): Code epsg of the output crs. """ - if epsg_out and epsg_out != crs.to_epsg(): + if epsg_out and epsg_out != self.epsg[0]: crs_out = pyproj.CRS.from_epsg(epsg_out) crs_geog_out = pyproj.crs.GeographicCRS(name=crs_out.name, datum=crs_out.datum.name) - self.carto_to_geog_out = pyproj.Transformer.from_crs(crs, crs_geog_out).transform + self.carto_to_geog_out = pyproj.Transformer.from_crs(self.crs, crs_geog_out).transform diff --git a/borea/process/p_add_data/p_gen_param.py b/borea/process/p_add_data/p_gen_param.py index 3ec137b7..838d8838 100644 --- a/borea/process/p_add_data/p_gen_param.py +++ b/borea/process/p_add_data/p_gen_param.py @@ -18,7 +18,7 @@ def args_general_param(parser: argparse) -> argparse: argsparse: Parser with argument. """ parser.add_argument('-e', '--epsg', - type=int, default=None, + type=int, nargs='*', default=None, help='EPSG codifier number of the reference system used e.g. "2154".') parser.add_argument('-y', '--pathgeoid', type=str, nargs='*', default=None, diff --git a/borea/transform_world_image/transform_shot/conversion_coor_shot.py b/borea/transform_world_image/transform_shot/conversion_coor_shot.py index 8e6d0723..f1674f68 100644 --- a/borea/transform_world_image/transform_shot/conversion_coor_shot.py +++ b/borea/transform_world_image/transform_shot/conversion_coor_shot.py @@ -28,9 +28,9 @@ def conv_z_shot_to_z_data(shot: Shot, type_z_shot: str, type_z_data: str, if type_z_shot != type_z_data: if type_z_shot == "height": - new_z = ProjEngine().tranform_altitude(pos_shot) + new_z = ProjEngine().tf.tranform_altitude(pos_shot) else: - new_z = ProjEngine().tranform_height(pos_shot) + new_z = ProjEngine().tf.tranform_height(pos_shot) pos_shot[2] = new_z return pos_shot @@ -51,8 +51,8 @@ def conv_output_z_type(coor: np.ndarray, type_z_input: str, type_z_output: str) new_z = coor[2] if type_z_input != type_z_output: if type_z_input == "height": - new_z = ProjEngine().tranform_altitude(coor) + new_z = ProjEngine().tf.tranform_altitude(coor) else: - new_z = ProjEngine().tranform_height(coor) + new_z = ProjEngine().tf.tranform_height(coor) return np.array([coor[0], coor[1], new_z]) diff --git a/borea/transform_world_image/transform_shot/image_world_shot.py b/borea/transform_world_image/transform_shot/image_world_shot.py index b659bc6c..516323e4 100644 --- a/borea/transform_world_image/transform_shot/image_world_shot.py +++ b/borea/transform_world_image/transform_shot/image_world_shot.py @@ -37,7 +37,7 @@ def image_to_world(self, img_coor: np.ndarray, Returns: np.array: Cartographique coordinate [x,y,z]. """ - if type_z_data != type_z_shot and not ProjEngine().geog_to_geoid: + if type_z_data != type_z_shot and not ProjEngine().tf.geog_to_geoid: raise ValueError("Missing geoid") if not Dtm().path_dtm: diff --git a/borea/transform_world_image/transform_shot/world_image_shot.py b/borea/transform_world_image/transform_shot/world_image_shot.py index 07a6d77c..277aa3c9 100644 --- a/borea/transform_world_image/transform_shot/world_image_shot.py +++ b/borea/transform_world_image/transform_shot/world_image_shot.py @@ -34,7 +34,7 @@ def world_to_image(self, coor_world: np.ndarray, Returns: np.array: The image coordinate [c,l]. """ - if type_z_data != type_z_shot and not ProjEngine().geog_to_geoid: + if type_z_data != type_z_shot and not ProjEngine().tf.geog_to_geoid: raise ValueError("Missing geoid") if self.shot.linear_alteration and not Dtm().path_dtm and not self.shot.approxeucli: diff --git a/borea/writer/writer_con.py b/borea/writer/writer_con.py index 36ce28fc..863bc592 100644 --- a/borea/writer/writer_con.py +++ b/borea/writer/writer_con.py @@ -20,7 +20,7 @@ def write(name: str, folder_con: str, param_con: dict, work: Worksite) -> None: work (Worksite): The site to be recorded. """ _, _ = name, param_con - geoview_proj = search_info("EPSG", str(ProjEngine().epsg), "GEOVIEW") + geoview_proj = search_info("EPSG", str(ProjEngine().epsg[0]), "GEOVIEW") for name_shot, shot in work.shots.items(): cam = work.cameras[shot.name_cam] diff --git a/borea_tools/docs_tools/README_opk_control.md b/borea_tools/docs_tools/README_opk_control.md index 98c68441..90ff53ee 100644 --- a/borea_tools/docs_tools/README_opk_control.md +++ b/borea_tools/docs_tools/README_opk_control.md @@ -108,6 +108,28 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ## Detail for process ### Intersection diff --git a/borea_tools/docs_tools/README_opk_to_conl.md b/borea_tools/docs_tools/README_opk_to_conl.md index bd2736cc..27220914 100644 --- a/borea_tools/docs_tools/README_opk_to_conl.md +++ b/borea_tools/docs_tools/README_opk_to_conl.md @@ -84,4 +84,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/borea_tools/docs_tools/README_opk_to_opk.md b/borea_tools/docs_tools/README_opk_to_opk.md index 32ecc8cd..d9a1d3b6 100644 --- a/borea_tools/docs_tools/README_opk_to_opk.md +++ b/borea_tools/docs_tools/README_opk_to_opk.md @@ -89,4 +89,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/borea_tools/docs_tools/README_opk_to_rpc.md b/borea_tools/docs_tools/README_opk_to_rpc.md index 69c70f69..46af5490 100644 --- a/borea_tools/docs_tools/README_opk_to_rpc.md +++ b/borea_tools/docs_tools/README_opk_to_rpc.md @@ -89,4 +89,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/borea_tools/docs_tools/README_pt_image_to_world.md b/borea_tools/docs_tools/README_pt_image_to_world.md index eee8da5c..f1ebe6ec 100644 --- a/borea_tools/docs_tools/README_pt_image_to_world.md +++ b/borea_tools/docs_tools/README_pt_image_to_world.md @@ -65,4 +65,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/borea_tools/docs_tools/README_pt_world_to_image.md b/borea_tools/docs_tools/README_pt_world_to_image.md index 01167ec0..2dc57662 100644 --- a/borea_tools/docs_tools/README_pt_world_to_image.md +++ b/borea_tools/docs_tools/README_pt_world_to_image.md @@ -65,4 +65,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/borea_tools/docs_tools/README_ptfile_image_to_world.md b/borea_tools/docs_tools/README_ptfile_image_to_world.md index 18ab66c3..58edf769 100644 --- a/borea_tools/docs_tools/README_ptfile_image_to_world.md +++ b/borea_tools/docs_tools/README_ptfile_image_to_world.md @@ -105,6 +105,28 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ## Detail for process ### Intersection diff --git a/borea_tools/docs_tools/README_ptfile_world_to_image.md b/borea_tools/docs_tools/README_ptfile_world_to_image.md index e5d981f2..2798532d 100644 --- a/borea_tools/docs_tools/README_ptfile_world_to_image.md +++ b/borea_tools/docs_tools/README_ptfile_world_to_image.md @@ -112,6 +112,28 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ## Detail for approx system The approximate system is used to set up a local tangent frame of reference for each acquisition in a purely mathematical way, without geodesy. To be used if the **data is corrected by linear alteration**, all data must be in the **same Z coordinate system** (altimetric or height), and there is **no need for the .json projection file**, **nor for DTM** if you are not using the image to world function with least square processing. diff --git a/borea_tools/docs_tools/README_spaceresection_opk.md b/borea_tools/docs_tools/README_spaceresection_opk.md index 397ab369..2beedf05 100644 --- a/borea_tools/docs_tools/README_spaceresection_opk.md +++ b/borea_tools/docs_tools/README_spaceresection_opk.md @@ -99,4 +99,26 @@ This library can transform and process 3D data with a z in altitude or height. T The command for adding a geoid is -y, where you can enter the paths to the various geoids. If the file is stored in pyproj's native folder (pyproj.datadir.get_data_dir(), *usr/share/proj* or *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) the file name is sufficient pyproj will find it on its own. Geoids file can be found on pyproj's github (https://github.com/OSGeo/PROJ-data). +This transformation is accompanied by other cartographic, geographic and geocentric transformations. And pyproj may not be able to find the other systems on its own. +e.g. +``` +>>>crsm = crs.CRS.from_epsg(4326) +>>>crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) +File "...", line 171, in + crs_geoc = pyproj.crs.GeocentricCRS(name=crsm.name, datum=crsm.datum.name) + File "...", line 1918, in __init__ + super().__init__(geocentric_crs_json) + File "...", line 348, in __init__ + self._local.crs = _CRS(self.srs) + File "pyproj/_crs.pyx", line 2378, in pyproj._crs._CRS.__init__ +pyproj.exceptions.CRSError: Invalid projection: +``` +You can therefore specify as parameters the epsg ( -e ) you want to use for each type of projection in a precise order. +[data_projection, geographic, geocentric] +e.g. in commande line for 4326 error GeocentricCRS +``` +-e 4326 0 4328 +``` +0 allows you to ignore a system if it is found by pyproj, after you just need to find the right epsg. + ![logo ign](../../docs/image/logo_ign.png) ![logo fr](../../docs/image/Republique_Francaise_Logo.png) \ No newline at end of file diff --git a/docs/sphinx/_build/doctrees/borea.datastruct.doctree b/docs/sphinx/_build/doctrees/borea.datastruct.doctree index 4d718114..d7027383 100644 Binary files a/docs/sphinx/_build/doctrees/borea.datastruct.doctree and b/docs/sphinx/_build/doctrees/borea.datastruct.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.doctree b/docs/sphinx/_build/doctrees/borea.doctree index 60cba36b..240bcff2 100644 Binary files a/docs/sphinx/_build/doctrees/borea.doctree and b/docs/sphinx/_build/doctrees/borea.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.format.doctree b/docs/sphinx/_build/doctrees/borea.format.doctree index 8174e0a5..53cfb4af 100644 Binary files a/docs/sphinx/_build/doctrees/borea.format.doctree and b/docs/sphinx/_build/doctrees/borea.format.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.geodesy.doctree b/docs/sphinx/_build/doctrees/borea.geodesy.doctree index 62425d97..417c02ed 100644 Binary files a/docs/sphinx/_build/doctrees/borea.geodesy.doctree and b/docs/sphinx/_build/doctrees/borea.geodesy.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.geodesy.projectionlist.doctree b/docs/sphinx/_build/doctrees/borea.geodesy.projectionlist.doctree index 257b9bb8..ac8d644d 100644 Binary files a/docs/sphinx/_build/doctrees/borea.geodesy.projectionlist.doctree and b/docs/sphinx/_build/doctrees/borea.geodesy.projectionlist.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.process.doctree b/docs/sphinx/_build/doctrees/borea.process.doctree index f756b26a..388ed37a 100644 Binary files a/docs/sphinx/_build/doctrees/borea.process.doctree and b/docs/sphinx/_build/doctrees/borea.process.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.process.p_add_data.doctree b/docs/sphinx/_build/doctrees/borea.process.p_add_data.doctree index 23872259..ac1c5a3a 100644 Binary files a/docs/sphinx/_build/doctrees/borea.process.p_add_data.doctree and b/docs/sphinx/_build/doctrees/borea.process.p_add_data.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.process.p_format.doctree b/docs/sphinx/_build/doctrees/borea.process.p_format.doctree index fe449a88..60b47981 100644 Binary files a/docs/sphinx/_build/doctrees/borea.process.p_format.doctree and b/docs/sphinx/_build/doctrees/borea.process.p_format.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.process.p_func.doctree b/docs/sphinx/_build/doctrees/borea.process.p_func.doctree index 1821b41a..0e53563e 100644 Binary files a/docs/sphinx/_build/doctrees/borea.process.p_func.doctree and b/docs/sphinx/_build/doctrees/borea.process.p_func.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.reader.doctree b/docs/sphinx/_build/doctrees/borea.reader.doctree index 74bce876..d68a0dea 100644 Binary files a/docs/sphinx/_build/doctrees/borea.reader.doctree and b/docs/sphinx/_build/doctrees/borea.reader.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.reader.orientation.doctree b/docs/sphinx/_build/doctrees/borea.reader.orientation.doctree index fa6b6f35..0b2d8619 100644 Binary files a/docs/sphinx/_build/doctrees/borea.reader.orientation.doctree and b/docs/sphinx/_build/doctrees/borea.reader.orientation.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.stat.doctree b/docs/sphinx/_build/doctrees/borea.stat.doctree index 55fa6539..a108928e 100644 Binary files a/docs/sphinx/_build/doctrees/borea.stat.doctree and b/docs/sphinx/_build/doctrees/borea.stat.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.transform_world_image.doctree b/docs/sphinx/_build/doctrees/borea.transform_world_image.doctree index 063be044..96a403b3 100644 Binary files a/docs/sphinx/_build/doctrees/borea.transform_world_image.doctree and b/docs/sphinx/_build/doctrees/borea.transform_world_image.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_dtm.doctree b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_dtm.doctree index 7430a2fd..7484b6aa 100644 Binary files a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_dtm.doctree and b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_dtm.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_shot.doctree b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_shot.doctree index 2346b977..0075addf 100644 Binary files a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_shot.doctree and b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_shot.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_worksite.doctree b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_worksite.doctree index 94148b35..18833044 100644 Binary files a/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_worksite.doctree and b/docs/sphinx/_build/doctrees/borea.transform_world_image.transform_worksite.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.utils.check.doctree b/docs/sphinx/_build/doctrees/borea.utils.check.doctree index af33e8db..d54c3b9e 100644 Binary files a/docs/sphinx/_build/doctrees/borea.utils.check.doctree and b/docs/sphinx/_build/doctrees/borea.utils.check.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.utils.doctree b/docs/sphinx/_build/doctrees/borea.utils.doctree index b70cf467..d0d847f7 100644 Binary files a/docs/sphinx/_build/doctrees/borea.utils.doctree and b/docs/sphinx/_build/doctrees/borea.utils.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.utils.miscellaneous.doctree b/docs/sphinx/_build/doctrees/borea.utils.miscellaneous.doctree index 60dd6f54..acc28f32 100644 Binary files a/docs/sphinx/_build/doctrees/borea.utils.miscellaneous.doctree and b/docs/sphinx/_build/doctrees/borea.utils.miscellaneous.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.utils.singleton.doctree b/docs/sphinx/_build/doctrees/borea.utils.singleton.doctree index 00a7d1f0..69be448c 100644 Binary files a/docs/sphinx/_build/doctrees/borea.utils.singleton.doctree and b/docs/sphinx/_build/doctrees/borea.utils.singleton.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.utils.xml.doctree b/docs/sphinx/_build/doctrees/borea.utils.xml.doctree index 49c749c0..7e35aac6 100644 Binary files a/docs/sphinx/_build/doctrees/borea.utils.xml.doctree and b/docs/sphinx/_build/doctrees/borea.utils.xml.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.worksite.doctree b/docs/sphinx/_build/doctrees/borea.worksite.doctree index b01ff83e..57692e6e 100644 Binary files a/docs/sphinx/_build/doctrees/borea.worksite.doctree and b/docs/sphinx/_build/doctrees/borea.worksite.doctree differ diff --git a/docs/sphinx/_build/doctrees/borea.writer.doctree b/docs/sphinx/_build/doctrees/borea.writer.doctree index bab0a8d2..567a9718 100644 Binary files a/docs/sphinx/_build/doctrees/borea.writer.doctree and b/docs/sphinx/_build/doctrees/borea.writer.doctree differ diff --git a/docs/sphinx/_build/doctrees/environment.pickle b/docs/sphinx/_build/doctrees/environment.pickle index f6c6aa5f..48e45d0f 100644 Binary files a/docs/sphinx/_build/doctrees/environment.pickle and b/docs/sphinx/_build/doctrees/environment.pickle differ diff --git a/docs/sphinx/_build/doctrees/index.doctree b/docs/sphinx/_build/doctrees/index.doctree index db469728..eb22bfeb 100644 Binary files a/docs/sphinx/_build/doctrees/index.doctree and b/docs/sphinx/_build/doctrees/index.doctree differ diff --git a/docs/sphinx/_build/doctrees/modules.doctree b/docs/sphinx/_build/doctrees/modules.doctree index d91fdfb8..51f963f3 100644 Binary files a/docs/sphinx/_build/doctrees/modules.doctree and b/docs/sphinx/_build/doctrees/modules.doctree differ diff --git a/docs/sphinx/_build/html/.buildinfo b/docs/sphinx/_build/html/.buildinfo index 9ec5cac8..2ed24355 100644 --- a/docs/sphinx/_build/html/.buildinfo +++ b/docs/sphinx/_build/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 75b8c6a2e242458b2767632b4ca8f3e1 +config: 504fc0b18f5078da3c2b6c957c5c94f7 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/sphinx/_build/html/_modules/borea/datastruct/camera.html b/docs/sphinx/_build/html/_modules/borea/datastruct/camera.html index fd0557e5..ddf8308a 100644 --- a/docs/sphinx/_build/html/_modules/borea/datastruct/camera.html +++ b/docs/sphinx/_build/html/_modules/borea/datastruct/camera.html @@ -4,11 +4,11 @@ - + borea.datastruct.camera - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -348,6 +335,6 @@

Source code for borea.datastruct.camera

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/datastruct/dtm.html b/docs/sphinx/_build/html/_modules/borea/datastruct/dtm.html index 198f1aac..c7f87328 100644 --- a/docs/sphinx/_build/html/_modules/borea/datastruct/dtm.html +++ b/docs/sphinx/_build/html/_modules/borea/datastruct/dtm.html @@ -4,11 +4,11 @@ - + borea.datastruct.dtm - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -457,6 +444,6 @@

Source code for borea.datastruct.dtm

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/datastruct/gcp.html b/docs/sphinx/_build/html/_modules/borea/datastruct/gcp.html index df4fd8bf..54a40716 100644 --- a/docs/sphinx/_build/html/_modules/borea/datastruct/gcp.html +++ b/docs/sphinx/_build/html/_modules/borea/datastruct/gcp.html @@ -4,11 +4,11 @@ - + borea.datastruct.gcp - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -345,6 +332,6 @@

Source code for borea.datastruct.gcp

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/datastruct/shot.html b/docs/sphinx/_build/html/_modules/borea/datastruct/shot.html index fa5646bf..df9d36c5 100644 --- a/docs/sphinx/_build/html/_modules/borea/datastruct/shot.html +++ b/docs/sphinx/_build/html/_modules/borea/datastruct/shot.html @@ -4,11 +4,11 @@ - + borea.datastruct.shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -459,9 +446,9 @@

Source code for borea.datastruct.shot

             type_z (str): z type height or altitude.
         """
         if type_z == "height":
-            self.pos_shot[2] = ProjEngine().tranform_height(self.pos_shot)
+            self.pos_shot[2] = ProjEngine().tf.tranform_height(self.pos_shot)
         else:
-            self.pos_shot[2] = ProjEngine().tranform_altitude(self.pos_shot)
+ self.pos_shot[2] = ProjEngine().tf.tranform_altitude(self.pos_shot)
@@ -575,6 +562,6 @@

Source code for borea.datastruct.shot

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/datastruct/workdata.html b/docs/sphinx/_build/html/_modules/borea/datastruct/workdata.html index 04b79484..6a96440b 100644 --- a/docs/sphinx/_build/html/_modules/borea/datastruct/workdata.html +++ b/docs/sphinx/_build/html/_modules/borea/datastruct/workdata.html @@ -4,11 +4,11 @@ - + borea.datastruct.workdata - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -353,20 +340,22 @@

Source code for borea.datastruct.workdata

 
 
[docs] - def set_proj(self, epsg: int, path_geoid: list = None) -> None: + def set_proj(self, epsg: list, path_geoid: list = None) -> None: """ Setup a projection system to the worksite. Args: - epsg (int): Code epsg of the porjection ex: 2154. + epsg (list): Code epsg of the porjection ex: 2154. path_geoid (str): List of GeoTIFF which represents the geoid in grid form. """ ProjEngine.clear() try: # Check if the epsg exist - crs = CRS.from_epsg(epsg) - del crs + for idepsg in epsg: + if idepsg: + _ = CRS.from_epsg(idepsg) + del _ except exceptions.CRSError as e_info: - raise exceptions.CRSError(f"Your EPSG:{epsg} doesn't exist") from e_info + raise exceptions.CRSError(f"Your EPSG:{epsg} doesn't exist in pyproj.") from e_info ProjEngine().set_epsg(epsg, path_geoid)
@@ -573,6 +562,6 @@

Source code for borea.datastruct.workdata

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/format/conl.html b/docs/sphinx/_build/html/_modules/borea/format/conl.html index 468508a0..c061db6f 100644 --- a/docs/sphinx/_build/html/_modules/borea/format/conl.html +++ b/docs/sphinx/_build/html/_modules/borea/format/conl.html @@ -4,11 +4,11 @@ - + borea.format.conl - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -475,6 +462,6 @@

Source code for borea.format.conl

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/format/rpc.html b/docs/sphinx/_build/html/_modules/borea/format/rpc.html index 177267ef..544c28c7 100644 --- a/docs/sphinx/_build/html/_modules/borea/format/rpc.html +++ b/docs/sphinx/_build/html/_modules/borea/format/rpc.html @@ -4,11 +4,11 @@ - + borea.format.rpc - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -408,13 +395,13 @@

Source code for borea.format.rpc

         if self.fact_rpc is None:
             if self.output_epsg:
                 ProjEngine().set_epsg_tf_geog_output(self.output_epsg)
-                x_geog, y_geog, z_geog = ProjEngine().carto_to_geog_out(grid_world[0],
-                                                                        grid_world[1],
-                                                                        grid_world[2])
+                x_geog, y_geog, z_geog = ProjEngine().tf.carto_to_geog_out(grid_world[0],
+                                                                           grid_world[1],
+                                                                           grid_world[2])
             else:
-                x_geog, y_geog, z_geog = ProjEngine().carto_to_geog(grid_world[0],
-                                                                    grid_world[1],
-                                                                    grid_world[2])
+                x_geog, y_geog, z_geog = ProjEngine().tf.carto_to_geog(grid_world[0],
+                                                                       grid_world[1],
+                                                                       grid_world[2])
         else:
             x_geog = grid_world[0]*self.fact_rpc
             y_geog = grid_world[1]*self.fact_rpc
@@ -590,6 +577,6 @@ 

Source code for borea.format.rpc

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/approx_euclidean_proj.html b/docs/sphinx/_build/html/_modules/borea/geodesy/approx_euclidean_proj.html index a7b2a6c3..500c03f8 100644 --- a/docs/sphinx/_build/html/_modules/borea/geodesy/approx_euclidean_proj.html +++ b/docs/sphinx/_build/html/_modules/borea/geodesy/approx_euclidean_proj.html @@ -4,11 +4,11 @@ - + borea.geodesy.approx_euclidean_proj - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -426,6 +413,6 @@

Source code for borea.geodesy.approx_euclidean_proj

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/euclidean_proj.html b/docs/sphinx/_build/html/_modules/borea/geodesy/euclidean_proj.html index 40f595c1..1511631c 100644 --- a/docs/sphinx/_build/html/_modules/borea/geodesy/euclidean_proj.html +++ b/docs/sphinx/_build/html/_modules/borea/geodesy/euclidean_proj.html @@ -4,11 +4,11 @@ - + borea.geodesy.euclidean_proj - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -348,6 +335,6 @@

Source code for borea.geodesy.euclidean_proj


     
     
-    
+    
     
 
\ No newline at end of file
diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/local_euclidean_proj.html b/docs/sphinx/_build/html/_modules/borea/geodesy/local_euclidean_proj.html
index f91fa202..0a963ada 100644
--- a/docs/sphinx/_build/html/_modules/borea/geodesy/local_euclidean_proj.html
+++ b/docs/sphinx/_build/html/_modules/borea/geodesy/local_euclidean_proj.html
@@ -4,11 +4,11 @@
     
     
 
-    
+    
         borea.geodesy.local_euclidean_proj - Borea 1.0.0 documentation
       
-    
-    
+    
+    
     
     
 
@@ -87,19 +87,6 @@
       
     
   
-  
-    Auto light/dark mode
-    
-      
-      
-      
-      
-      
-      
-      
-    
-  
   
     Auto light/dark, in light mode
     
       
       
-      
     
   
   
@@ -328,7 +315,7 @@ 

Source code for borea.geodesy.local_euclidean_proj

Returns: np.array: Transition matrix. """ - lon, lat = ProjEngine().carto_to_geog(x, y) + lon, lat = ProjEngine().tf.carto_to_geog(x, y) gamma = ProjEngine().get_meridian_convergence(x, y) # Matrix for switching to local cartesian coordinates @@ -392,10 +379,10 @@

Source code for borea.geodesy.local_euclidean_proj

""" coor = check_array_transfo(coor[0], coor[1], coor[2]) - coor_geoc = np.array(ProjEngine().carto_to_geoc(coor[0], coor[1], coor[2])) - central_geoc = np.array(ProjEngine().carto_to_geoc(self.pt_central[0], - self.pt_central[1], - self.pt_central[2])) + coor_geoc = np.array(ProjEngine().tf.carto_to_geoc(coor[0], coor[1], coor[2])) + central_geoc = np.array(ProjEngine().tf.carto_to_geoc(self.pt_central[0], + self.pt_central[1], + self.pt_central[2])) dr = np.vstack([coor_geoc[0] - central_geoc[0], coor_geoc[1] - central_geoc[1], coor_geoc[2] - central_geoc[2]]) @@ -418,15 +405,15 @@

Source code for borea.geodesy.local_euclidean_proj

""" coor = np.squeeze(coor) - central_geoc = np.array(ProjEngine().carto_to_geoc(self.pt_central[0], - self.pt_central[1], - self.pt_central[2])) + central_geoc = np.array(ProjEngine().tf.carto_to_geoc(self.pt_central[0], + self.pt_central[1], + self.pt_central[2])) dr = np.vstack([coor[0] - self.pt_central[0], coor[1] - self.pt_central[1], coor[2] - self.pt_central[2]]) point_geoc = np.squeeze((self.rot_to_euclidean_local.T @ dr) + np.array([central_geoc]).T) x_gc, y_gc, z_gc = check_array_transfo(point_geoc[0], point_geoc[1], point_geoc[2]) - tup = ProjEngine().geoc_to_carto(x_gc, y_gc, z_gc) + tup = ProjEngine().tf.geoc_to_carto(x_gc, y_gc, z_gc) return np.array([tup[0], tup[1], tup[2]])
@@ -465,6 +452,6 @@

Source code for borea.geodesy.local_euclidean_proj

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/proj_engine.html b/docs/sphinx/_build/html/_modules/borea/geodesy/proj_engine.html index 1f0a5218..441acde8 100644 --- a/docs/sphinx/_build/html/_modules/borea/geodesy/proj_engine.html +++ b/docs/sphinx/_build/html/_modules/borea/geodesy/proj_engine.html @@ -4,11 +4,11 @@ - + borea.geodesy.proj_engine - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -300,7 +287,7 @@

Source code for borea.geodesy.proj_engine

 
[docs] @dataclass -class ProjEngine(TransformGeodesy, metaclass=Singleton): +class ProjEngine(metaclass=Singleton): """ This class provides functions for using a cartographic system. """ @@ -310,19 +297,19 @@

Source code for borea.geodesy.proj_engine

 
     def __post_init__(self) -> None:
         if self.epsg:
-            self.crs = pyproj.CRS.from_epsg(self.epsg)
+            self.crs = pyproj.CRS.from_epsg(self.epsg[0])
             self.proj = pyproj.Proj(self.crs)
-            TransformGeodesy.__tf_init__(self, self.geoid, self.crs)
+            self.tf = TransformGeodesy(self.epsg, self.geoid)
 
 
[docs] - def set_epsg(self, epsg: int, geoid: list = None) -> None: + def set_epsg(self, epsg: list, geoid: list = None) -> None: """ Setter of the class ProjEngine. Allows to init the class with data. Args: - epsg (int): Code epsg of the projection ex: 2154. + epsg (list): Code epsg of the projection ex: 2154. geoid (list): List of geoid to use. """ self.epsg = epsg @@ -339,7 +326,7 @@

Source code for borea.geodesy.proj_engine

         Args:
             epsg_out (int): Code epsg of the output crs.
         """
-        self.tf_output(self.crs, epsg_output)
+ self.tf.tf_output(epsg_output)
@@ -357,7 +344,7 @@

Source code for borea.geodesy.proj_engine

         Returns:
             np.array : Meridian convergence in degree.
         """
-        (x_geog, y_geog) = self.carto_to_geog(x_carto, y_carto)
+        (x_geog, y_geog) = self.tf.carto_to_geog(x_carto, y_carto)
         return -np.array(self.proj.get_factors(x_geog, y_geog).meridian_convergence)
@@ -376,7 +363,7 @@

Source code for borea.geodesy.proj_engine

         Returns:
             np.array: Scale factor and meridian convergence.
         """
-        x_geog, y_geog = self.carto_to_geog(x_carto, y_carto)
+        x_geog, y_geog = self.tf.carto_to_geog(x_carto, y_carto)
         return np.array(self.proj.get_factors(x_geog, y_geog).meridional_scale) - 1
@@ -415,6 +402,6 @@

Source code for borea.geodesy.proj_engine

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/projectionlist/search_proj.html b/docs/sphinx/_build/html/_modules/borea/geodesy/projectionlist/search_proj.html index 68b51a9e..a1cc77cd 100644 --- a/docs/sphinx/_build/html/_modules/borea/geodesy/projectionlist/search_proj.html +++ b/docs/sphinx/_build/html/_modules/borea/geodesy/projectionlist/search_proj.html @@ -4,11 +4,11 @@ - + borea.geodesy.projectionlist.search_proj - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -386,6 +373,6 @@

Source code for borea.geodesy.projectionlist.search_proj

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/geodesy/transform_geodesy.html b/docs/sphinx/_build/html/_modules/borea/geodesy/transform_geodesy.html index 29b207f9..f9176c54 100644 --- a/docs/sphinx/_build/html/_modules/borea/geodesy/transform_geodesy.html +++ b/docs/sphinx/_build/html/_modules/borea/geodesy/transform_geodesy.html @@ -4,11 +4,11 @@ - + borea.geodesy.transform_geodesy - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -288,15 +275,13 @@

Source code for borea.geodesy.transform_geodesy

< """ Module for class ProjEngine, transform geodesy """ -from dataclasses import dataclass import pyproj import numpy as np -# pylint: disable=unsubscriptable-object +# pylint: disable=too-many-instance-attributes
[docs] -@dataclass class TransformGeodesy(): """ This class provides functions to tranform coordinate system. @@ -307,52 +292,139 @@

Source code for borea.geodesy.transform_geodesy

< geoid (list): List of geoid to use. crs (pyproj): CRS pyproj of the worksite. """ - carto_to_geoc = None - geoc_to_carto = None - carto_to_geog = None - geog_to_carto = None - geog_to_geoid = None - geoid_to_geog = None - carto_to_geog_out = None - - def __tf_init__(self, geoid: list, crs: pyproj) -> None: - crs_geoc = pyproj.crs.GeocentricCRS(name=crs.name, datum=crs.datum.name) - crs_geog = pyproj.crs.GeographicCRS(name=crs.name, datum=crs.datum.name) - # Transform cartographic coordinates to geographic coordinates - self.carto_to_geog = pyproj.Transformer.from_crs(crs, crs_geog).transform - # Transform geographic coordinates to cartographic coordinates - self.geog_to_carto = pyproj.Transformer.from_crs(crs_geog, crs).transform - # Transform cartographic coordinates to geocentric coordinates - self.carto_to_geoc = pyproj.Transformer.from_crs(crs, crs_geoc).transform - # Transform geocentric coordinates to cartographic coordinates - self.geoc_to_carto = pyproj.Transformer.from_crs(crs_geoc, crs).transform - - if geoid: - self.tf_geoid(geoid) - -
-[docs] - def tf_geoid(self, geoid: list) -> None: + def __init__(self, epsg: list, geoid: list) -> None: + self.epsg = epsg + self.crs = pyproj.CRS.from_epsg(epsg[0]) + self.geoid = geoid + self._carto_to_geoc = None + self._geoc_to_carto = None + self._carto_to_geog = None + self._geog_to_carto = None + self._geog_to_geoid = None + self._geoid_to_geog = None + self.carto_to_geog_out = None + + @property + def carto_to_geog(self) -> pyproj.Transformer: """ - Create attribute transform, to transform geographic coordinates to geoide coordinates. + Returns the transformation or instantiates it before returning it. - Args: - geoid (list): List of geoid to use. + Returns: + pyproj.Transformer : carto_to_geog """ - try: - # Transform geoide coordinates to geographic coordinates - self.geoid_to_geog = pyproj.Transformer.from_pipeline(f"+proj=vgridshift " - f"+grids={','.join(geoid)} " - "+multiplier=1").transform - # Transform geographic coordinates to geoide coordinates - self.geog_to_geoid = pyproj.Transformer.from_pipeline(f"+proj=vgridshift " - f"+grids={','.join(geoid)} " - "+multiplier=-1").transform - except pyproj.exceptions.ProjError as e: - raise pyproj.exceptions.ProjError(f"{geoid} The name or path of geotif is incorrect or " - "does not exist in " - f"{pyproj.datadir.get_data_dir()}!!!{e}") from e
+ if not self._carto_to_geog: + try: + crs_geog = pyproj.CRS.from_epsg(self.epsg[1]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geog = pyproj.crs.GeographicCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._carto_to_geog = pyproj.Transformer.from_crs(self.crs, crs_geog).transform + + return self._carto_to_geog + + @property + def geog_to_carto(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geog_to_carto + """ + if not self._geog_to_carto: + try: + crs_geog = pyproj.CRS.from_epsg(self.epsg[1]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geog = pyproj.crs.GeographicCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._geog_to_carto = pyproj.Transformer.from_crs(crs_geog, self.crs).transform + + return self._geog_to_carto + + @property + def carto_to_geoc(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : carto_to_geoc + """ + if not self._carto_to_geoc: + try: + crs_geoc = pyproj.CRS.from_epsg(self.epsg[2]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geoc = pyproj.crs.GeocentricCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._carto_to_geoc = pyproj.Transformer.from_crs(self.crs, crs_geoc).transform + + return self._carto_to_geoc + + @property + def geoc_to_carto(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geoc_to_carto + """ + if not self._geoc_to_carto: + try: + crs_geoc = pyproj.CRS.from_epsg(self.epsg[2]) + except (IndexError, pyproj.exceptions.CRSError): + crs_geoc = pyproj.crs.GeocentricCRS(name=self.crs.name, datum=self.crs.datum.name) + + self._geoc_to_carto = pyproj.Transformer.from_crs(crs_geoc, self.crs).transform + return self._geoc_to_carto + + @property + def geoid_to_geog(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geoid_to_geog + """ + if not self.geoid: + raise ValueError("Mistake Geoid path") + + if not self._geoid_to_geog: + try: + # Transform geoide coordinates to geographic coordinates + self._geoid_to_geog = pyproj.Transformer.from_pipeline("+proj=vgridshift " + "+grids=" + f"{','.join(self.geoid)} " + "+multiplier=1").transform + except pyproj.exceptions.ProjError as e: + raise pyproj.exceptions.ProjError(f"{self.geoid} The name or path " + "of geotif is incorrect or does not exist in " + f"{pyproj.datadir.get_data_dir()}!!!{e}") from e + + return self._geoid_to_geog + + @property + def geog_to_geoid(self) -> pyproj.Transformer: + """ + Returns the transformation or instantiates it before returning it. + + Returns: + pyproj.Transformer : geog_to_geoid + """ + if not self.geoid: + raise ValueError("Mistake Geoid path") + + if not self._geog_to_geoid: + try: + # Transform geoide coordinates to geographic coordinates + self._geog_to_geoid = pyproj.Transformer.from_pipeline("+proj=vgridshift " + "+grids=" + f"{','.join(self.geoid)} " + "+multiplier=-1").transform + except pyproj.exceptions.ProjError as e: + raise pyproj.exceptions.ProjError(f"{self.geoid} The name or path " + "of geotif is incorrect or does not exist in " + f"{pyproj.datadir.get_data_dir()}!!!{e}") from e + + return self._geog_to_geoid
[docs] @@ -414,18 +486,17 @@

Source code for borea.geodesy.transform_geodesy

<
[docs] - def tf_output(self, crs: pyproj, epsg_out: int = None) -> None: + def tf_output(self, epsg_out: int = None) -> None: """ Create the pyproj Transformer from crs of worksite to crs geographic ask. Args: - crs (pyproj): The crs pyproj of the worksite. epsg_out (int): Code epsg of the output crs. """ - if epsg_out and epsg_out != crs.to_epsg(): + if epsg_out and epsg_out != self.epsg[0]: crs_out = pyproj.CRS.from_epsg(epsg_out) crs_geog_out = pyproj.crs.GeographicCRS(name=crs_out.name, datum=crs_out.datum.name) - self.carto_to_geog_out = pyproj.Transformer.from_crs(crs, crs_geog_out).transform
+ self.carto_to_geog_out = pyproj.Transformer.from_crs(self.crs, crs_geog_out).transform
@@ -463,6 +534,6 @@

Source code for borea.geodesy.transform_geodesy

<
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_add_shot.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_add_shot.html index d095a539..a23237d8 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_add_shot.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_add_shot.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_add_shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -389,6 +376,6 @@

Source code for borea.process.p_add_data.p_add_shot

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp2d.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp2d.html index fc1889cb..72f8c4fb 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp2d.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp2d.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_file_gcp2d - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -381,6 +368,6 @@

Source code for borea.process.p_add_data.p_file_gcp2d

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp3d.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp3d.html index 3625e901..22cf2876 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp3d.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_file_gcp3d.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_file_gcp3d - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -379,6 +366,6 @@

Source code for borea.process.p_add_data.p_file_gcp3d

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_gen_param.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_gen_param.html index c1057f7e..6e8a1ed2 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_gen_param.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_gen_param.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_gen_param - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -307,7 +294,7 @@

Source code for borea.process.p_add_data.p_gen_param

argsparse: Parser with argument. """ parser.add_argument('-e', '--epsg', - type=int, default=None, + type=int, nargs='*', default=None, help='EPSG codifier number of the reference system used e.g. "2154".') parser.add_argument('-y', '--pathgeoid', type=str, nargs='*', default=None, @@ -402,6 +389,6 @@

Source code for borea.process.p_add_data.p_gen_param

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt2d.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt2d.html index 97180d2e..7bb9a805 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt2d.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt2d.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_pt2d - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -374,6 +361,6 @@

Source code for borea.process.p_add_data.p_pt2d

<
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt3d.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt3d.html index 494bfaa8..3faf9a69 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt3d.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_pt3d.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_pt3d - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -374,6 +361,6 @@

Source code for borea.process.p_add_data.p_pt3d

<
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_unit_shot.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_unit_shot.html index 6018b289..28425d42 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_unit_shot.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_unit_shot.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_unit_shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -374,6 +361,6 @@

Source code for borea.process.p_add_data.p_unit_shot

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_write.html b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_write.html index ac303e83..96693040 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_write.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_add_data/p_write.html @@ -4,11 +4,11 @@ - + borea.process.p_add_data.p_write - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -346,6 +333,6 @@

Source code for borea.process.p_add_data.p_write

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_read_opk.html b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_read_opk.html index 60138f23..41616562 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_read_opk.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_read_opk.html @@ -4,11 +4,11 @@ - + borea.process.p_format.p_read_opk - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -404,6 +391,6 @@

Source code for borea.process.p_format.p_read_opk

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_con.html b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_con.html index 0042d5b7..603218f8 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_con.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_con.html @@ -4,11 +4,11 @@ - + borea.process.p_format.p_write_con - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -362,6 +349,6 @@

Source code for borea.process.p_format.p_write_con

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_opk.html b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_opk.html index be64c0cd..c8c547ac 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_opk.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_opk.html @@ -4,11 +4,11 @@ - + borea.process.p_format.p_write_opk - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -390,6 +377,6 @@

Source code for borea.process.p_format.p_write_opk

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_rpc.html b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_rpc.html index e4b1cfa1..81cbb4bb 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_rpc.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_format/p_write_rpc.html @@ -4,11 +4,11 @@ - + borea.process.p_format.p_write_rpc - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -378,6 +365,6 @@

Source code for borea.process.p_format.p_write_rpc

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_control.html b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_control.html index ca8ee6b8..e62c01a0 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_control.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_control.html @@ -4,11 +4,11 @@ - + borea.process.p_func.p_control - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -393,6 +380,6 @@

Source code for borea.process.p_func.p_control

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_image_world.html b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_image_world.html index 1bcf6ffb..9141b6f9 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_image_world.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_image_world.html @@ -4,11 +4,11 @@ - + borea.process.p_func.p_image_world - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -374,6 +361,6 @@

Source code for borea.process.p_func.p_image_world

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_spaceresection.html b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_spaceresection.html index 744c07f6..ea79eabe 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_spaceresection.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_spaceresection.html @@ -4,11 +4,11 @@ - + borea.process.p_func.p_spaceresection - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -377,6 +364,6 @@

Source code for borea.process.p_func.p_spaceresection

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_world_image.html b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_world_image.html index a8e422e1..8f87aa34 100644 --- a/docs/sphinx/_build/html/_modules/borea/process/p_func/p_world_image.html +++ b/docs/sphinx/_build/html/_modules/borea/process/p_func/p_world_image.html @@ -4,11 +4,11 @@ - + borea.process.p_func.p_world_image - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -375,6 +362,6 @@

Source code for borea.process.p_func.p_world_image

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/reader/orientation/manage_reader.html b/docs/sphinx/_build/html/_modules/borea/reader/orientation/manage_reader.html index dbab97b2..318c90e7 100644 --- a/docs/sphinx/_build/html/_modules/borea/reader/orientation/manage_reader.html +++ b/docs/sphinx/_build/html/_modules/borea/reader/orientation/manage_reader.html @@ -4,11 +4,11 @@ - + borea.reader.orientation.manage_reader - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -356,6 +343,6 @@

Source code for borea.reader.orientation.manage_reader

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/reader/orientation/reader_opk.html b/docs/sphinx/_build/html/_modules/borea/reader/orientation/reader_opk.html index 7fffccc7..1be1480a 100644 --- a/docs/sphinx/_build/html/_modules/borea/reader/orientation/reader_opk.html +++ b/docs/sphinx/_build/html/_modules/borea/reader/orientation/reader_opk.html @@ -4,11 +4,11 @@ - + borea.reader.orientation.reader_opk - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -381,6 +368,6 @@

Source code for borea.reader.orientation.reader_opk

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/reader/reader_camera.html b/docs/sphinx/_build/html/_modules/borea/reader/reader_camera.html index 056dd4d2..fbcce254 100644 --- a/docs/sphinx/_build/html/_modules/borea/reader/reader_camera.html +++ b/docs/sphinx/_build/html/_modules/borea/reader/reader_camera.html @@ -4,11 +4,11 @@ - + borea.reader.reader_camera - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -378,6 +365,6 @@

Source code for borea.reader.reader_camera

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/reader/reader_point.html b/docs/sphinx/_build/html/_modules/borea/reader/reader_point.html index 2fb793f0..01d91b9a 100644 --- a/docs/sphinx/_build/html/_modules/borea/reader/reader_point.html +++ b/docs/sphinx/_build/html/_modules/borea/reader/reader_point.html @@ -4,11 +4,11 @@ - + borea.reader.reader_point - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -439,6 +426,6 @@

Source code for borea.reader.reader_point

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/stat/statistics.html b/docs/sphinx/_build/html/_modules/borea/stat/statistics.html index 2fc2c7c7..485acb49 100644 --- a/docs/sphinx/_build/html/_modules/borea/stat/statistics.html +++ b/docs/sphinx/_build/html/_modules/borea/stat/statistics.html @@ -4,11 +4,11 @@ - + borea.stat.statistics - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -562,6 +549,6 @@

Source code for borea.stat.statistics

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_dtm/world_image_dtm.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_dtm/world_image_dtm.html index 52a441de..28d145d4 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_dtm/world_image_dtm.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_dtm/world_image_dtm.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_dtm.world_image_dtm - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -376,6 +363,6 @@

Source code for borea.transform_world_image.transform_dtm.world_image_dtm - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/conversion_coor_shot.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/conversion_coor_shot.html index 10c96aca..575efbdb 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/conversion_coor_shot.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/conversion_coor_shot.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_shot.conversion_coor_shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -317,9 +304,9 @@

Source code for borea.transform_world_image.transform_shot.conversion_coor_s if type_z_shot != type_z_data: if type_z_shot == "height": - new_z = ProjEngine().tranform_altitude(pos_shot) + new_z = ProjEngine().tf.tranform_altitude(pos_shot) else: - new_z = ProjEngine().tranform_height(pos_shot) + new_z = ProjEngine().tf.tranform_height(pos_shot) pos_shot[2] = new_z return pos_shot

@@ -343,9 +330,9 @@

Source code for borea.transform_world_image.transform_shot.conversion_coor_s new_z = coor[2] if type_z_input != type_z_output: if type_z_input == "height": - new_z = ProjEngine().tranform_altitude(coor) + new_z = ProjEngine().tf.tranform_altitude(coor) else: - new_z = ProjEngine().tranform_height(coor) + new_z = ProjEngine().tf.tranform_height(coor) return np.array([coor[0], coor[1], new_z])

@@ -384,6 +371,6 @@

Source code for borea.transform_world_image.transform_shot.conversion_coor_s

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/image_world_shot.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/image_world_shot.html index 81edd0f9..9858883e 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/image_world_shot.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/image_world_shot.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_shot.image_world_shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -328,7 +315,7 @@

Source code for borea.transform_world_image.transform_shot.image_world_shot< Returns: np.array: Cartographique coordinate [x,y,z]. """ - if type_z_data != type_z_shot and not ProjEngine().geog_to_geoid: + if type_z_data != type_z_shot and not ProjEngine().tf.geog_to_geoid: raise ValueError("Missing geoid") if not Dtm().path_dtm: @@ -491,6 +478,6 @@

Source code for borea.transform_world_image.transform_shot.image_world_shot<

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/world_image_shot.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/world_image_shot.html index bb60a708..86041649 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/world_image_shot.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_shot/world_image_shot.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_shot.world_image_shot - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -325,7 +312,7 @@

Source code for borea.transform_world_image.transform_shot.world_image_shot< Returns: np.array: The image coordinate [c,l]. """ - if type_z_data != type_z_shot and not ProjEngine().geog_to_geoid: + if type_z_data != type_z_shot and not ProjEngine().tf.geog_to_geoid: raise ValueError("Missing geoid") if self.shot.linear_alteration and not Dtm().path_dtm and not self.shot.approxeucli: @@ -452,6 +439,6 @@

Source code for borea.transform_world_image.transform_shot.world_image_shot<

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_intersection.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_intersection.html index a13c346a..519c0960 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_intersection.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_intersection.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_worksite.image_world_intersection - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -489,6 +476,6 @@

Source code for borea.transform_world_image.transform_worksite.image_world_i

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_least_square.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_least_square.html index d49c8040..dfd6036f 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_least_square.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_least_square.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_worksite.image_world_least_square - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -519,6 +506,6 @@

Source code for borea.transform_world_image.transform_worksite.image_world_l

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_work.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_work.html index 61706a9e..72e0a952 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_work.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/image_world_work.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_worksite.image_world_work - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -375,6 +362,6 @@

Source code for borea.transform_world_image.transform_worksite.image_world_w

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/space_resection.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/space_resection.html index b96475db..b2bac65a 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/space_resection.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/space_resection.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_worksite.space_resection - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -696,6 +683,6 @@

Source code for borea.transform_world_image.transform_worksite.space_resecti

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/world_image_work.html b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/world_image_work.html index eb0dacc8..07c8a4e9 100644 --- a/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/world_image_work.html +++ b/docs/sphinx/_build/html/_modules/borea/transform_world_image/transform_worksite/world_image_work.html @@ -4,11 +4,11 @@ - + borea.transform_world_image.transform_worksite.world_image_work - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -369,6 +356,6 @@

Source code for borea.transform_world_image.transform_worksite.world_image_w

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_opk.html b/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_opk.html index 5114b826..1b3df712 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_opk.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_opk.html @@ -4,11 +4,11 @@ - + borea.utils.check.check_args_opk - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -385,6 +372,6 @@

Source code for borea.utils.check.check_args_opk

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_reader_pt.html b/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_reader_pt.html index 9200d845..84274b82 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_reader_pt.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/check/check_args_reader_pt.html @@ -4,11 +4,11 @@ - + borea.utils.check.check_args_reader_pt - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -367,6 +354,6 @@

Source code for borea.utils.check.check_args_reader_pt

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/check/check_array.html b/docs/sphinx/_build/html/_modules/borea/utils/check/check_array.html index fcfaaa89..3ad07197 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/check/check_array.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/check/check_array.html @@ -4,11 +4,11 @@ - + borea.utils.check.check_array - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -379,6 +366,6 @@

Source code for borea.utils.check.check_array

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/check/check_header.html b/docs/sphinx/_build/html/_modules/borea/utils/check/check_header.html index a9e6f2f4..aff0c817 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/check/check_header.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/check/check_header.html @@ -4,11 +4,11 @@ - + borea.utils.check.check_header - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -419,6 +406,6 @@

Source code for borea.utils.check.check_header

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/check/check_order_axe.html b/docs/sphinx/_build/html/_modules/borea/utils/check/check_order_axe.html index 7c451c23..e45b6dbb 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/check/check_order_axe.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/check/check_order_axe.html @@ -4,11 +4,11 @@ - + borea.utils.check.check_order_axe - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -376,6 +363,6 @@

Source code for borea.utils.check.check_order_axe

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/miscellaneous.html b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/miscellaneous.html index dbccef23..c5d6bd9a 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/miscellaneous.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/miscellaneous.html @@ -4,11 +4,11 @@ - + borea.utils.miscellaneous.miscellaneous - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -415,6 +402,6 @@

Source code for borea.utils.miscellaneous.miscellaneous

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/param_bundle.html b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/param_bundle.html index f7989c80..6b0a1fdb 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/param_bundle.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/param_bundle.html @@ -4,11 +4,11 @@ - + borea.utils.miscellaneous.param_bundle - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -359,6 +346,6 @@

Source code for borea.utils.miscellaneous.param_bundle

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/sparse.html b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/sparse.html index 13fd9646..272876d5 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/sparse.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/miscellaneous/sparse.html @@ -4,11 +4,11 @@ - + borea.utils.miscellaneous.sparse - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -354,6 +341,6 @@

Source code for borea.utils.miscellaneous.sparse

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/singleton/singleton.html b/docs/sphinx/_build/html/_modules/borea/utils/singleton/singleton.html index 203e9257..d0238fdc 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/singleton/singleton.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/singleton/singleton.html @@ -4,11 +4,11 @@ - + borea.utils.singleton.singleton - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -349,6 +336,6 @@

Source code for borea.utils.singleton.singleton

<
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/utils/xml/xml.html b/docs/sphinx/_build/html/_modules/borea/utils/xml/xml.html index 8f036845..c7d80d2e 100644 --- a/docs/sphinx/_build/html/_modules/borea/utils/xml/xml.html +++ b/docs/sphinx/_build/html/_modules/borea/utils/xml/xml.html @@ -4,11 +4,11 @@ - + borea.utils.xml.xml - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -392,6 +379,6 @@

Source code for borea.utils.xml.xml

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/worksite/worksite.html b/docs/sphinx/_build/html/_modules/borea/worksite/worksite.html index 15d38d23..fb6fff8d 100644 --- a/docs/sphinx/_build/html/_modules/borea/worksite/worksite.html +++ b/docs/sphinx/_build/html/_modules/borea/worksite/worksite.html @@ -4,11 +4,11 @@ - + borea.worksite.worksite - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -590,6 +577,6 @@

Source code for borea.worksite.worksite

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/writer/manage_writer.html b/docs/sphinx/_build/html/_modules/borea/writer/manage_writer.html index 1f44c2de..26675353 100644 --- a/docs/sphinx/_build/html/_modules/borea/writer/manage_writer.html +++ b/docs/sphinx/_build/html/_modules/borea/writer/manage_writer.html @@ -4,11 +4,11 @@ - + borea.writer.manage_writer - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -346,6 +333,6 @@

Source code for borea.writer.manage_writer

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/writer/writer_con.html b/docs/sphinx/_build/html/_modules/borea/writer/writer_con.html index 26d471ba..997b6bd4 100644 --- a/docs/sphinx/_build/html/_modules/borea/writer/writer_con.html +++ b/docs/sphinx/_build/html/_modules/borea/writer/writer_con.html @@ -4,11 +4,11 @@ - + borea.writer.writer_con - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -309,7 +296,7 @@

Source code for borea.writer.writer_con

         work (Worksite): The site to be recorded.
     """
     _, _ = name, param_con
-    geoview_proj = search_info("EPSG", str(ProjEngine().epsg), "GEOVIEW")
+    geoview_proj = search_info("EPSG", str(ProjEngine().epsg[0]), "GEOVIEW")
 
     for name_shot, shot in work.shots.items():
         cam = work.cameras[shot.name_cam]
@@ -352,6 +339,6 @@ 

Source code for borea.writer.writer_con

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/writer/writer_df_to_txt.html b/docs/sphinx/_build/html/_modules/borea/writer/writer_df_to_txt.html index 2a53ec57..fadad467 100644 --- a/docs/sphinx/_build/html/_modules/borea/writer/writer_df_to_txt.html +++ b/docs/sphinx/_build/html/_modules/borea/writer/writer_df_to_txt.html @@ -4,11 +4,11 @@ - + borea.writer.writer_df_to_txt - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -355,6 +342,6 @@

Source code for borea.writer.writer_df_to_txt

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/writer/writer_opk.html b/docs/sphinx/_build/html/_modules/borea/writer/writer_opk.html index 990166fc..ffbc4aaa 100644 --- a/docs/sphinx/_build/html/_modules/borea/writer/writer_opk.html +++ b/docs/sphinx/_build/html/_modules/borea/writer/writer_opk.html @@ -4,11 +4,11 @@ - + borea.writer.writer_opk - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -393,6 +380,6 @@

Source code for borea.writer.writer_opk

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/borea/writer/writer_rpc.html b/docs/sphinx/_build/html/_modules/borea/writer/writer_rpc.html index c63024f1..0b65d53f 100644 --- a/docs/sphinx/_build/html/_modules/borea/writer/writer_rpc.html +++ b/docs/sphinx/_build/html/_modules/borea/writer/writer_rpc.html @@ -4,11 +4,11 @@ - + borea.writer.writer_rpc - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -379,6 +366,6 @@

Source code for borea.writer.writer_rpc

 
- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_modules/index.html b/docs/sphinx/_build/html/_modules/index.html index e1a3a810..7cb2f820 100644 --- a/docs/sphinx/_build/html/_modules/index.html +++ b/docs/sphinx/_build/html/_modules/index.html @@ -4,11 +4,11 @@ - + Overview: module code - Borea 1.0.0 documentation - - + + @@ -87,19 +87,6 @@
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -379,6 +366,6 @@

All modules for which code is available

- + \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/scripts/furo.js b/docs/sphinx/_build/html/_static/scripts/furo.js index 0267c7e1..0abb2afa 100644 --- a/docs/sphinx/_build/html/_static/scripts/furo.js +++ b/docs/sphinx/_build/html/_static/scripts/furo.js @@ -1,3 +1,3 @@ /*! For license information please see furo.js.LICENSE.txt */ -(()=>{var t={856:function(t,e,n){var o,r;r=void 0!==n.g?n.g:"undefined"!=typeof window?window:this,o=function(){return function(t){"use strict";var e={navClass:"active",contentClass:"active",nested:!1,nestedClass:"active",offset:0,reflow:!1,events:!0},n=function(t,e,n){if(n.settings.events){var o=new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n});e.dispatchEvent(o)}},o=function(t){var e=0;if(t.offsetParent)for(;t;)e+=t.offsetTop,t=t.offsetParent;return e>=0?e:0},r=function(t){t&&t.sort((function(t,e){return o(t.content)=Math.max(document.body.scrollHeight,document.documentElement.scrollHeight,document.body.offsetHeight,document.documentElement.offsetHeight,document.body.clientHeight,document.documentElement.clientHeight)},l=function(t,e){var n=t[t.length-1];if(function(t,e){return!(!s()||!c(t.content,e,!0))}(n,e))return n;for(var o=t.length-1;o>=0;o--)if(c(t[o].content,e))return t[o]},a=function(t,e){if(e.nested&&t.parentNode){var n=t.parentNode.closest("li");n&&(n.classList.remove(e.nestedClass),a(n,e))}},i=function(t,e){if(t){var o=t.nav.closest("li");o&&(o.classList.remove(e.navClass),t.content.classList.remove(e.contentClass),a(o,e),n("gumshoeDeactivate",o,{link:t.nav,content:t.content,settings:e}))}},u=function(t,e){if(e.nested){var n=t.parentNode.closest("li");n&&(n.classList.add(e.nestedClass),u(n,e))}};return function(o,c){var s,a,d,f,m,v={setup:function(){s=document.querySelectorAll(o),a=[],Array.prototype.forEach.call(s,(function(t){var e=document.getElementById(decodeURIComponent(t.hash.substr(1)));e&&a.push({nav:t,content:e})})),r(a)},detect:function(){var t=l(a,m);t?d&&t.content===d.content||(i(d,m),function(t,e){if(t){var o=t.nav.closest("li");o&&(o.classList.add(e.navClass),t.content.classList.add(e.contentClass),u(o,e),n("gumshoeActivate",o,{link:t.nav,content:t.content,settings:e}))}}(t,m),d=t):d&&(i(d,m),d=null)}},h=function(e){f&&t.cancelAnimationFrame(f),f=t.requestAnimationFrame(v.detect)},g=function(e){f&&t.cancelAnimationFrame(f),f=t.requestAnimationFrame((function(){r(a),v.detect()}))};return v.destroy=function(){d&&i(d,m),t.removeEventListener("scroll",h,!1),m.reflow&&t.removeEventListener("resize",g,!1),a=null,s=null,d=null,f=null,m=null},m=function(){var t={};return Array.prototype.forEach.call(arguments,(function(e){for(var n in e){if(!e.hasOwnProperty(n))return;t[n]=e[n]}})),t}(e,c||{}),v.setup(),v.detect(),t.addEventListener("scroll",h,!1),m.reflow&&t.addEventListener("resize",g,!1),v}}(r)}.apply(e,[]),void 0===o||(t.exports=o)}},e={};function n(o){var r=e[o];if(void 0!==r)return r.exports;var c=e[o]={exports:{}};return t[o].call(c.exports,c,c.exports,n),c.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=n(856),e=n.n(t),o=null,r=null,c=window.pageYOffset||document.documentElement.scrollTop;const s=64;function l(){const t=localStorage.getItem("theme")||"auto";var e;"light"!==(e=window.matchMedia("(prefers-color-scheme: dark)").matches?"auto"===t?"light":"light"==t?"dark":"auto":"auto"===t?"dark":"dark"==t?"light":"auto")&&"dark"!==e&&"auto"!==e&&(console.error(`Got invalid theme mode: ${e}. Resetting to auto.`),e="auto"),document.body.dataset.theme=e,localStorage.setItem("theme",e),console.log(`Changed to ${e} mode.`)}function a(){!function(){const t=document.getElementsByClassName("theme-toggle");Array.from(t).forEach((t=>{t.addEventListener("click",l)}))}(),function(){let t=0,e=!1;window.addEventListener("scroll",(function(n){t=window.scrollY,e||(window.requestAnimationFrame((function(){var n;n=t,0==Math.floor(r.getBoundingClientRect().top)?r.classList.add("scrolled"):r.classList.remove("scrolled"),function(t){tc&&document.documentElement.classList.remove("show-back-to-top"),c=t}(n),function(t){null!==o&&(0==t?o.scrollTo(0,0):Math.ceil(t)>=Math.floor(document.documentElement.scrollHeight-window.innerHeight)?o.scrollTo(0,o.scrollHeight):document.querySelector(".scroll-current"))}(n),e=!1})),e=!0)})),window.scroll()}(),null!==o&&new(e())(".toc-tree a",{reflow:!0,recursive:!0,navClass:"scroll-current",offset:()=>{let t=parseFloat(getComputedStyle(document.documentElement).fontSize);return r.getBoundingClientRect().height+2.5*t+1}})}document.addEventListener("DOMContentLoaded",(function(){document.body.parentNode.classList.remove("no-js"),r=document.querySelector("header"),o=document.querySelector(".toc-scroll"),a()}))})()})(); +(()=>{var t={856:function(t,e,n){var o,r;r=void 0!==n.g?n.g:"undefined"!=typeof window?window:this,o=function(){return function(t){"use strict";var e={navClass:"active",contentClass:"active",nested:!1,nestedClass:"active",offset:0,reflow:!1,events:!0},n=function(t,e,n){if(n.settings.events){var o=new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n});e.dispatchEvent(o)}},o=function(t){var e=0;if(t.offsetParent)for(;t;)e+=t.offsetTop,t=t.offsetParent;return e>=0?e:0},r=function(t){t&&t.sort((function(t,e){return o(t.content)=Math.max(document.body.scrollHeight,document.documentElement.scrollHeight,document.body.offsetHeight,document.documentElement.offsetHeight,document.body.clientHeight,document.documentElement.clientHeight)},l=function(t,e){var n=t[t.length-1];if(function(t,e){return!(!s()||!c(t.content,e,!0))}(n,e))return n;for(var o=t.length-1;o>=0;o--)if(c(t[o].content,e))return t[o]},a=function(t,e){if(e.nested&&t.parentNode){var n=t.parentNode.closest("li");n&&(n.classList.remove(e.nestedClass),a(n,e))}},i=function(t,e){if(t){var o=t.nav.closest("li");o&&(o.classList.remove(e.navClass),t.content.classList.remove(e.contentClass),a(o,e),n("gumshoeDeactivate",o,{link:t.nav,content:t.content,settings:e}))}},u=function(t,e){if(e.nested){var n=t.parentNode.closest("li");n&&(n.classList.add(e.nestedClass),u(n,e))}};return function(o,c){var s,a,d,f,m,v={setup:function(){s=document.querySelectorAll(o),a=[],Array.prototype.forEach.call(s,(function(t){var e=document.getElementById(decodeURIComponent(t.hash.substr(1)));e&&a.push({nav:t,content:e})})),r(a)},detect:function(){var t=l(a,m);t?d&&t.content===d.content||(i(d,m),function(t,e){if(t){var o=t.nav.closest("li");o&&(o.classList.add(e.navClass),t.content.classList.add(e.contentClass),u(o,e),n("gumshoeActivate",o,{link:t.nav,content:t.content,settings:e}))}}(t,m),d=t):d&&(i(d,m),d=null)}},h=function(e){f&&t.cancelAnimationFrame(f),f=t.requestAnimationFrame(v.detect)},g=function(e){f&&t.cancelAnimationFrame(f),f=t.requestAnimationFrame((function(){r(a),v.detect()}))};return v.destroy=function(){d&&i(d,m),t.removeEventListener("scroll",h,!1),m.reflow&&t.removeEventListener("resize",g,!1),a=null,s=null,d=null,f=null,m=null},m=function(){var t={};return Array.prototype.forEach.call(arguments,(function(e){for(var n in e){if(!e.hasOwnProperty(n))return;t[n]=e[n]}})),t}(e,c||{}),v.setup(),v.detect(),t.addEventListener("scroll",h,!1),m.reflow&&t.addEventListener("resize",g,!1),v}}(r)}.apply(e,[]),void 0===o||(t.exports=o)}},e={};function n(o){var r=e[o];if(void 0!==r)return r.exports;var c=e[o]={exports:{}};return t[o].call(c.exports,c,c.exports,n),c.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=n(856),e=n.n(t),o=null,r=null,c=document.documentElement.scrollTop;const s=64;function l(){const t=localStorage.getItem("theme")||"auto";var e;"light"!==(e=window.matchMedia("(prefers-color-scheme: dark)").matches?"auto"===t?"light":"light"==t?"dark":"auto":"auto"===t?"dark":"dark"==t?"light":"auto")&&"dark"!==e&&"auto"!==e&&(console.error(`Got invalid theme mode: ${e}. Resetting to auto.`),e="auto"),document.body.dataset.theme=e,localStorage.setItem("theme",e),console.log(`Changed to ${e} mode.`)}function a(){!function(){const t=document.getElementsByClassName("theme-toggle");Array.from(t).forEach((t=>{t.addEventListener("click",l)}))}(),function(){let t=0,e=!1;window.addEventListener("scroll",(function(n){t=window.scrollY,e||(window.requestAnimationFrame((function(){var n;(function(t){const e=Math.floor(r.getBoundingClientRect().top);console.log(`headerTop: ${e}`),0==e&&t!=e?r.classList.add("scrolled"):r.classList.remove("scrolled")})(n=t),function(t){tc&&document.documentElement.classList.remove("show-back-to-top"),c=t}(n),function(t){null!==o&&(0==t?o.scrollTo(0,0):Math.ceil(t)>=Math.floor(document.documentElement.scrollHeight-window.innerHeight)?o.scrollTo(0,o.scrollHeight):document.querySelector(".scroll-current"))}(n),e=!1})),e=!0)})),window.scroll()}(),null!==o&&new(e())(".toc-tree a",{reflow:!0,recursive:!0,navClass:"scroll-current",offset:()=>{let t=parseFloat(getComputedStyle(document.documentElement).fontSize);return r.getBoundingClientRect().height+2.5*t+1}})}document.addEventListener("DOMContentLoaded",(function(){document.body.parentNode.classList.remove("no-js"),r=document.querySelector("header"),o=document.querySelector(".toc-scroll"),a()}))})()})(); //# sourceMappingURL=furo.js.map \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/scripts/furo.js.map b/docs/sphinx/_build/html/_static/scripts/furo.js.map index c3b37aaa..80ea12b8 100644 --- a/docs/sphinx/_build/html/_static/scripts/furo.js.map +++ b/docs/sphinx/_build/html/_static/scripts/furo.js.map @@ -1 +1 @@ -{"version":3,"file":"scripts/furo.js","mappings":";iCAAA,MAQWA,SAWS,IAAX,EAAAC,EACH,EAAAA,EACkB,oBAAXC,OACLA,OACAC,KAbO,EAAF,WACP,OAaJ,SAAUD,GACR,aAMA,IAAIE,EAAW,CAEbC,SAAU,SACVC,aAAc,SAGdC,QAAQ,EACRC,YAAa,SAGbC,OAAQ,EACRC,QAAQ,EAGRC,QAAQ,GA6BNC,EAAY,SAAUC,EAAMC,EAAMC,GAEpC,GAAKA,EAAOC,SAASL,OAArB,CAGA,IAAIM,EAAQ,IAAIC,YAAYL,EAAM,CAChCM,SAAS,EACTC,YAAY,EACZL,OAAQA,IAIVD,EAAKO,cAAcJ,EAVgB,CAWrC,EAOIK,EAAe,SAAUR,GAC3B,IAAIS,EAAW,EACf,GAAIT,EAAKU,aACP,KAAOV,GACLS,GAAYT,EAAKW,UACjBX,EAAOA,EAAKU,aAGhB,OAAOD,GAAY,EAAIA,EAAW,CACpC,EAMIG,EAAe,SAAUC,GACvBA,GACFA,EAASC,MAAK,SAAUC,EAAOC,GAG7B,OAFcR,EAAaO,EAAME,SACnBT,EAAaQ,EAAMC,UACF,EACxB,CACT,GAEJ,EAwCIC,EAAW,SAAUlB,EAAME,EAAUiB,GACvC,IAAIC,EAASpB,EAAKqB,wBACd1B,EAnCU,SAAUO,GAExB,MAA+B,mBAApBA,EAASP,OACX2B,WAAWpB,EAASP,UAItB2B,WAAWpB,EAASP,OAC7B,CA2Be4B,CAAUrB,GACvB,OAAIiB,EAEAK,SAASJ,EAAOD,OAAQ,KACvB/B,EAAOqC,aAAeC,SAASC,gBAAgBC,cAG7CJ,SAASJ,EAAOS,IAAK,KAAOlC,CACrC,EAMImC,EAAa,WACf,OACEC,KAAKC,KAAK5C,EAAOqC,YAAcrC,EAAO6C,cAnCjCF,KAAKG,IACVR,SAASS,KAAKC,aACdV,SAASC,gBAAgBS,aACzBV,SAASS,KAAKE,aACdX,SAASC,gBAAgBU,aACzBX,SAASS,KAAKP,aACdF,SAASC,gBAAgBC,aAkC7B,EAmBIU,EAAY,SAAUzB,EAAUX,GAClC,IAAIqC,EAAO1B,EAASA,EAAS2B,OAAS,GACtC,GAbgB,SAAUC,EAAMvC,GAChC,SAAI4B,MAAgBZ,EAASuB,EAAKxB,QAASf,GAAU,GAEvD,CAUMwC,CAAYH,EAAMrC,GAAW,OAAOqC,EACxC,IAAK,IAAII,EAAI9B,EAAS2B,OAAS,EAAGG,GAAK,EAAGA,IACxC,GAAIzB,EAASL,EAAS8B,GAAG1B,QAASf,GAAW,OAAOW,EAAS8B,EAEjE,EAOIC,EAAmB,SAAUC,EAAK3C,GAEpC,GAAKA,EAAST,QAAWoD,EAAIC,WAA7B,CAGA,IAAIC,EAAKF,EAAIC,WAAWE,QAAQ,MAC3BD,IAGLA,EAAGE,UAAUC,OAAOhD,EAASR,aAG7BkD,EAAiBG,EAAI7C,GAV0B,CAWjD,EAOIiD,EAAa,SAAUC,EAAOlD,GAEhC,GAAKkD,EAAL,CAGA,IAAIL,EAAKK,EAAMP,IAAIG,QAAQ,MACtBD,IAGLA,EAAGE,UAAUC,OAAOhD,EAASX,UAC7B6D,EAAMnC,QAAQgC,UAAUC,OAAOhD,EAASV,cAGxCoD,EAAiBG,EAAI7C,GAGrBJ,EAAU,oBAAqBiD,EAAI,CACjCM,KAAMD,EAAMP,IACZ5B,QAASmC,EAAMnC,QACff,SAAUA,IAjBM,CAmBpB,EAOIoD,EAAiB,SAAUT,EAAK3C,GAElC,GAAKA,EAAST,OAAd,CAGA,IAAIsD,EAAKF,EAAIC,WAAWE,QAAQ,MAC3BD,IAGLA,EAAGE,UAAUM,IAAIrD,EAASR,aAG1B4D,EAAeP,EAAI7C,GAVS,CAW9B,EA6LA,OA1JkB,SAAUsD,EAAUC,GAKpC,IACIC,EAAU7C,EAAU8C,EAASC,EAAS1D,EADtC2D,EAAa,CAUjBA,MAAmB,WAEjBH,EAAWhC,SAASoC,iBAAiBN,GAGrC3C,EAAW,GAGXkD,MAAMC,UAAUC,QAAQC,KAAKR,GAAU,SAAUjB,GAE/C,IAAIxB,EAAUS,SAASyC,eACrBC,mBAAmB3B,EAAK4B,KAAKC,OAAO,KAEjCrD,GAGLJ,EAAS0D,KAAK,CACZ1B,IAAKJ,EACLxB,QAASA,GAEb,IAGAL,EAAaC,EACf,EAKAgD,OAAoB,WAElB,IAAIW,EAASlC,EAAUzB,EAAUX,GAG5BsE,EASDb,GAAWa,EAAOvD,UAAY0C,EAAQ1C,UAG1CkC,EAAWQ,EAASzD,GAzFT,SAAUkD,EAAOlD,GAE9B,GAAKkD,EAAL,CAGA,IAAIL,EAAKK,EAAMP,IAAIG,QAAQ,MACtBD,IAGLA,EAAGE,UAAUM,IAAIrD,EAASX,UAC1B6D,EAAMnC,QAAQgC,UAAUM,IAAIrD,EAASV,cAGrC8D,EAAeP,EAAI7C,GAGnBJ,EAAU,kBAAmBiD,EAAI,CAC/BM,KAAMD,EAAMP,IACZ5B,QAASmC,EAAMnC,QACff,SAAUA,IAjBM,CAmBpB,CAqEIuE,CAASD,EAAQtE,GAGjByD,EAAUa,GAfJb,IACFR,EAAWQ,EAASzD,GACpByD,EAAU,KAchB,GAMIe,EAAgB,SAAUvE,GAExByD,GACFxE,EAAOuF,qBAAqBf,GAI9BA,EAAUxE,EAAOwF,sBAAsBf,EAAWgB,OACpD,EAMIC,EAAgB,SAAU3E,GAExByD,GACFxE,EAAOuF,qBAAqBf,GAI9BA,EAAUxE,EAAOwF,uBAAsB,WACrChE,EAAaC,GACbgD,EAAWgB,QACb,GACF,EAkDA,OA7CAhB,EAAWkB,QAAU,WAEfpB,GACFR,EAAWQ,EAASzD,GAItBd,EAAO4F,oBAAoB,SAAUN,GAAe,GAChDxE,EAASN,QACXR,EAAO4F,oBAAoB,SAAUF,GAAe,GAItDjE,EAAW,KACX6C,EAAW,KACXC,EAAU,KACVC,EAAU,KACV1D,EAAW,IACb,EAOEA,EA3XS,WACX,IAAI+E,EAAS,CAAC,EAOd,OANAlB,MAAMC,UAAUC,QAAQC,KAAKgB,WAAW,SAAUC,GAChD,IAAK,IAAIC,KAAOD,EAAK,CACnB,IAAKA,EAAIE,eAAeD,GAAM,OAC9BH,EAAOG,GAAOD,EAAIC,EACpB,CACF,IACOH,CACT,CAkXeK,CAAOhG,EAAUmE,GAAW,CAAC,GAGxCI,EAAW0B,QAGX1B,EAAWgB,SAGXzF,EAAOoG,iBAAiB,SAAUd,GAAe,GAC7CxE,EAASN,QACXR,EAAOoG,iBAAiB,SAAUV,GAAe,GAS9CjB,CACT,CAOF,CArcW4B,CAAQvG,EAChB,UAFM,SAEN,uBCXDwG,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaE,QAGrB,IAAIC,EAASN,EAAyBE,GAAY,CAGjDG,QAAS,CAAC,GAOX,OAHAE,EAAoBL,GAAU1B,KAAK8B,EAAOD,QAASC,EAAQA,EAAOD,QAASJ,GAGpEK,EAAOD,OACf,CCrBAJ,EAAoBO,EAAKF,IACxB,IAAIG,EAASH,GAAUA,EAAOI,WAC7B,IAAOJ,EAAiB,QACxB,IAAM,EAEP,OADAL,EAAoBU,EAAEF,EAAQ,CAAEG,EAAGH,IAC5BA,CAAM,ECLdR,EAAoBU,EAAI,CAACN,EAASQ,KACjC,IAAI,IAAInB,KAAOmB,EACXZ,EAAoBa,EAAED,EAAYnB,KAASO,EAAoBa,EAAET,EAASX,IAC5EqB,OAAOC,eAAeX,EAASX,EAAK,CAAEuB,YAAY,EAAMC,IAAKL,EAAWnB,IAE1E,ECNDO,EAAoBxG,EAAI,WACvB,GAA0B,iBAAf0H,WAAyB,OAAOA,WAC3C,IACC,OAAOxH,MAAQ,IAAIyH,SAAS,cAAb,EAChB,CAAE,MAAOC,GACR,GAAsB,iBAAX3H,OAAqB,OAAOA,MACxC,CACA,CAPuB,GCAxBuG,EAAoBa,EAAI,CAACrB,EAAK6B,IAAUP,OAAOzC,UAAUqB,eAAenB,KAAKiB,EAAK6B,4CCK9EC,EAAY,KACZC,EAAS,KACTC,EAAgB/H,OAAO6C,aAAeP,SAASC,gBAAgByF,UACnE,MAAMC,EAAmB,GA2EzB,SAASC,IACP,MAAMC,EAAeC,aAAaC,QAAQ,UAAY,OAZxD,IAAkBC,EACH,WADGA,EAaItI,OAAOuI,WAAW,gCAAgCC,QAI/C,SAAjBL,EACO,QACgB,SAAhBA,EACA,OAEA,OAIU,SAAjBA,EACO,OACgB,QAAhBA,EACA,QAEA,SA9BoB,SAATG,GAA4B,SAATA,IACzCG,QAAQC,MAAM,2BAA2BJ,yBACzCA,EAAO,QAGThG,SAASS,KAAK4F,QAAQC,MAAQN,EAC9BF,aAAaS,QAAQ,QAASP,GAC9BG,QAAQK,IAAI,cAAcR,UA0B5B,CAkDA,SAASnC,KART,WAEE,MAAM4C,EAAUzG,SAAS0G,uBAAuB,gBAChDrE,MAAMsE,KAAKF,GAASlE,SAASqE,IAC3BA,EAAI9C,iBAAiB,QAAS8B,EAAe,GAEjD,CAGEiB,GA9CF,WAEE,IAAIC,EAA6B,EAC7BC,GAAU,EAEdrJ,OAAOoG,iBAAiB,UAAU,SAAUuB,GAC1CyB,EAA6BpJ,OAAOsJ,QAE/BD,IACHrJ,OAAOwF,uBAAsB,WAzDnC,IAAuB+D,IA0DDH,EA9GkC,GAAlDzG,KAAK6G,MAAM1B,EAAO7F,wBAAwBQ,KAC5CqF,EAAOjE,UAAUM,IAAI,YAErB2D,EAAOjE,UAAUC,OAAO,YAI5B,SAAmCyF,GAC7BA,EAAYtB,EACd3F,SAASC,gBAAgBsB,UAAUC,OAAO,oBAEtCyF,EAAYxB,EACdzF,SAASC,gBAAgBsB,UAAUM,IAAI,oBAC9BoF,EAAYxB,GACrBzF,SAASC,gBAAgBsB,UAAUC,OAAO,oBAG9CiE,EAAgBwB,CAClB,CAoCEE,CAA0BF,GAlC5B,SAA6BA,GACT,OAAd1B,IAKa,GAAb0B,EACF1B,EAAU6B,SAAS,EAAG,GAGtB/G,KAAKC,KAAK2G,IACV5G,KAAK6G,MAAMlH,SAASC,gBAAgBS,aAAehD,OAAOqC,aAE1DwF,EAAU6B,SAAS,EAAG7B,EAAU7E,cAGhBV,SAASqH,cAAc,mBAc3C,CAKEC,CAAoBL,GAwDdF,GAAU,CACZ,IAEAA,GAAU,EAEd,IACArJ,OAAO6J,QACT,CA6BEC,GA1BkB,OAAdjC,GAKJ,IAAI,IAAJ,CAAY,cAAe,CACzBrH,QAAQ,EACRuJ,WAAW,EACX5J,SAAU,iBACVI,OAAQ,KACN,IAAIyJ,EAAM9H,WAAW+H,iBAAiB3H,SAASC,iBAAiB2H,UAChE,OAAOpC,EAAO7F,wBAAwBkI,OAAS,IAAMH,EAAM,CAAC,GAiBlE,CAcA1H,SAAS8D,iBAAiB,oBAT1B,WACE9D,SAASS,KAAKW,WAAWG,UAAUC,OAAO,SAE1CgE,EAASxF,SAASqH,cAAc,UAChC9B,EAAYvF,SAASqH,cAAc,eAEnCxD,GACF","sources":["webpack:///./src/furo/assets/scripts/gumshoe-patched.js","webpack:///webpack/bootstrap","webpack:///webpack/runtime/compat get default export","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/global","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///./src/furo/assets/scripts/furo.js"],"sourcesContent":["/*!\n * gumshoejs v5.1.2 (patched by @pradyunsg)\n * A simple, framework-agnostic scrollspy script.\n * (c) 2019 Chris Ferdinandi\n * MIT License\n * http://github.com/cferdinandi/gumshoe\n */\n\n(function (root, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([], function () {\n return factory(root);\n });\n } else if (typeof exports === \"object\") {\n module.exports = factory(root);\n } else {\n root.Gumshoe = factory(root);\n }\n})(\n typeof global !== \"undefined\"\n ? global\n : typeof window !== \"undefined\"\n ? window\n : this,\n function (window) {\n \"use strict\";\n\n //\n // Defaults\n //\n\n var defaults = {\n // Active classes\n navClass: \"active\",\n contentClass: \"active\",\n\n // Nested navigation\n nested: false,\n nestedClass: \"active\",\n\n // Offset & reflow\n offset: 0,\n reflow: false,\n\n // Event support\n events: true,\n };\n\n //\n // Methods\n //\n\n /**\n * Merge two or more objects together.\n * @param {Object} objects The objects to merge together\n * @returns {Object} Merged values of defaults and options\n */\n var extend = function () {\n var merged = {};\n Array.prototype.forEach.call(arguments, function (obj) {\n for (var key in obj) {\n if (!obj.hasOwnProperty(key)) return;\n merged[key] = obj[key];\n }\n });\n return merged;\n };\n\n /**\n * Emit a custom event\n * @param {String} type The event type\n * @param {Node} elem The element to attach the event to\n * @param {Object} detail Any details to pass along with the event\n */\n var emitEvent = function (type, elem, detail) {\n // Make sure events are enabled\n if (!detail.settings.events) return;\n\n // Create a new event\n var event = new CustomEvent(type, {\n bubbles: true,\n cancelable: true,\n detail: detail,\n });\n\n // Dispatch the event\n elem.dispatchEvent(event);\n };\n\n /**\n * Get an element's distance from the top of the Document.\n * @param {Node} elem The element\n * @return {Number} Distance from the top in pixels\n */\n var getOffsetTop = function (elem) {\n var location = 0;\n if (elem.offsetParent) {\n while (elem) {\n location += elem.offsetTop;\n elem = elem.offsetParent;\n }\n }\n return location >= 0 ? location : 0;\n };\n\n /**\n * Sort content from first to last in the DOM\n * @param {Array} contents The content areas\n */\n var sortContents = function (contents) {\n if (contents) {\n contents.sort(function (item1, item2) {\n var offset1 = getOffsetTop(item1.content);\n var offset2 = getOffsetTop(item2.content);\n if (offset1 < offset2) return -1;\n return 1;\n });\n }\n };\n\n /**\n * Get the offset to use for calculating position\n * @param {Object} settings The settings for this instantiation\n * @return {Float} The number of pixels to offset the calculations\n */\n var getOffset = function (settings) {\n // if the offset is a function run it\n if (typeof settings.offset === \"function\") {\n return parseFloat(settings.offset());\n }\n\n // Otherwise, return it as-is\n return parseFloat(settings.offset);\n };\n\n /**\n * Get the document element's height\n * @private\n * @returns {Number}\n */\n var getDocumentHeight = function () {\n return Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight,\n document.body.offsetHeight,\n document.documentElement.offsetHeight,\n document.body.clientHeight,\n document.documentElement.clientHeight,\n );\n };\n\n /**\n * Determine if an element is in view\n * @param {Node} elem The element\n * @param {Object} settings The settings for this instantiation\n * @param {Boolean} bottom If true, check if element is above bottom of viewport instead\n * @return {Boolean} Returns true if element is in the viewport\n */\n var isInView = function (elem, settings, bottom) {\n var bounds = elem.getBoundingClientRect();\n var offset = getOffset(settings);\n if (bottom) {\n return (\n parseInt(bounds.bottom, 10) <\n (window.innerHeight || document.documentElement.clientHeight)\n );\n }\n return parseInt(bounds.top, 10) <= offset;\n };\n\n /**\n * Check if at the bottom of the viewport\n * @return {Boolean} If true, page is at the bottom of the viewport\n */\n var isAtBottom = function () {\n if (\n Math.ceil(window.innerHeight + window.pageYOffset) >=\n getDocumentHeight()\n )\n return true;\n return false;\n };\n\n /**\n * Check if the last item should be used (even if not at the top of the page)\n * @param {Object} item The last item\n * @param {Object} settings The settings for this instantiation\n * @return {Boolean} If true, use the last item\n */\n var useLastItem = function (item, settings) {\n if (isAtBottom() && isInView(item.content, settings, true)) return true;\n return false;\n };\n\n /**\n * Get the active content\n * @param {Array} contents The content areas\n * @param {Object} settings The settings for this instantiation\n * @return {Object} The content area and matching navigation link\n */\n var getActive = function (contents, settings) {\n var last = contents[contents.length - 1];\n if (useLastItem(last, settings)) return last;\n for (var i = contents.length - 1; i >= 0; i--) {\n if (isInView(contents[i].content, settings)) return contents[i];\n }\n };\n\n /**\n * Deactivate parent navs in a nested navigation\n * @param {Node} nav The starting navigation element\n * @param {Object} settings The settings for this instantiation\n */\n var deactivateNested = function (nav, settings) {\n // If nesting isn't activated, bail\n if (!settings.nested || !nav.parentNode) return;\n\n // Get the parent navigation\n var li = nav.parentNode.closest(\"li\");\n if (!li) return;\n\n // Remove the active class\n li.classList.remove(settings.nestedClass);\n\n // Apply recursively to any parent navigation elements\n deactivateNested(li, settings);\n };\n\n /**\n * Deactivate a nav and content area\n * @param {Object} items The nav item and content to deactivate\n * @param {Object} settings The settings for this instantiation\n */\n var deactivate = function (items, settings) {\n // Make sure there are items to deactivate\n if (!items) return;\n\n // Get the parent list item\n var li = items.nav.closest(\"li\");\n if (!li) return;\n\n // Remove the active class from the nav and content\n li.classList.remove(settings.navClass);\n items.content.classList.remove(settings.contentClass);\n\n // Deactivate any parent navs in a nested navigation\n deactivateNested(li, settings);\n\n // Emit a custom event\n emitEvent(\"gumshoeDeactivate\", li, {\n link: items.nav,\n content: items.content,\n settings: settings,\n });\n };\n\n /**\n * Activate parent navs in a nested navigation\n * @param {Node} nav The starting navigation element\n * @param {Object} settings The settings for this instantiation\n */\n var activateNested = function (nav, settings) {\n // If nesting isn't activated, bail\n if (!settings.nested) return;\n\n // Get the parent navigation\n var li = nav.parentNode.closest(\"li\");\n if (!li) return;\n\n // Add the active class\n li.classList.add(settings.nestedClass);\n\n // Apply recursively to any parent navigation elements\n activateNested(li, settings);\n };\n\n /**\n * Activate a nav and content area\n * @param {Object} items The nav item and content to activate\n * @param {Object} settings The settings for this instantiation\n */\n var activate = function (items, settings) {\n // Make sure there are items to activate\n if (!items) return;\n\n // Get the parent list item\n var li = items.nav.closest(\"li\");\n if (!li) return;\n\n // Add the active class to the nav and content\n li.classList.add(settings.navClass);\n items.content.classList.add(settings.contentClass);\n\n // Activate any parent navs in a nested navigation\n activateNested(li, settings);\n\n // Emit a custom event\n emitEvent(\"gumshoeActivate\", li, {\n link: items.nav,\n content: items.content,\n settings: settings,\n });\n };\n\n /**\n * Create the Constructor object\n * @param {String} selector The selector to use for navigation items\n * @param {Object} options User options and settings\n */\n var Constructor = function (selector, options) {\n //\n // Variables\n //\n\n var publicAPIs = {};\n var navItems, contents, current, timeout, settings;\n\n //\n // Methods\n //\n\n /**\n * Set variables from DOM elements\n */\n publicAPIs.setup = function () {\n // Get all nav items\n navItems = document.querySelectorAll(selector);\n\n // Create contents array\n contents = [];\n\n // Loop through each item, get it's matching content, and push to the array\n Array.prototype.forEach.call(navItems, function (item) {\n // Get the content for the nav item\n var content = document.getElementById(\n decodeURIComponent(item.hash.substr(1)),\n );\n if (!content) return;\n\n // Push to the contents array\n contents.push({\n nav: item,\n content: content,\n });\n });\n\n // Sort contents by the order they appear in the DOM\n sortContents(contents);\n };\n\n /**\n * Detect which content is currently active\n */\n publicAPIs.detect = function () {\n // Get the active content\n var active = getActive(contents, settings);\n\n // if there's no active content, deactivate and bail\n if (!active) {\n if (current) {\n deactivate(current, settings);\n current = null;\n }\n return;\n }\n\n // If the active content is the one currently active, do nothing\n if (current && active.content === current.content) return;\n\n // Deactivate the current content and activate the new content\n deactivate(current, settings);\n activate(active, settings);\n\n // Update the currently active content\n current = active;\n };\n\n /**\n * Detect the active content on scroll\n * Debounced for performance\n */\n var scrollHandler = function (event) {\n // If there's a timer, cancel it\n if (timeout) {\n window.cancelAnimationFrame(timeout);\n }\n\n // Setup debounce callback\n timeout = window.requestAnimationFrame(publicAPIs.detect);\n };\n\n /**\n * Update content sorting on resize\n * Debounced for performance\n */\n var resizeHandler = function (event) {\n // If there's a timer, cancel it\n if (timeout) {\n window.cancelAnimationFrame(timeout);\n }\n\n // Setup debounce callback\n timeout = window.requestAnimationFrame(function () {\n sortContents(contents);\n publicAPIs.detect();\n });\n };\n\n /**\n * Destroy the current instantiation\n */\n publicAPIs.destroy = function () {\n // Undo DOM changes\n if (current) {\n deactivate(current, settings);\n }\n\n // Remove event listeners\n window.removeEventListener(\"scroll\", scrollHandler, false);\n if (settings.reflow) {\n window.removeEventListener(\"resize\", resizeHandler, false);\n }\n\n // Reset variables\n contents = null;\n navItems = null;\n current = null;\n timeout = null;\n settings = null;\n };\n\n /**\n * Initialize the current instantiation\n */\n var init = function () {\n // Merge user options into defaults\n settings = extend(defaults, options || {});\n\n // Setup variables based on the current DOM\n publicAPIs.setup();\n\n // Find the currently active content\n publicAPIs.detect();\n\n // Setup event listeners\n window.addEventListener(\"scroll\", scrollHandler, false);\n if (settings.reflow) {\n window.addEventListener(\"resize\", resizeHandler, false);\n }\n };\n\n //\n // Initialize and return the public APIs\n //\n\n init();\n return publicAPIs;\n };\n\n //\n // Return the Constructor\n //\n\n return Constructor;\n },\n);\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import Gumshoe from \"./gumshoe-patched.js\";\n\n////////////////////////////////////////////////////////////////////////////////\n// Scroll Handling\n////////////////////////////////////////////////////////////////////////////////\nvar tocScroll = null;\nvar header = null;\nvar lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;\nconst GO_TO_TOP_OFFSET = 64;\n\nfunction scrollHandlerForHeader() {\n if (Math.floor(header.getBoundingClientRect().top) == 0) {\n header.classList.add(\"scrolled\");\n } else {\n header.classList.remove(\"scrolled\");\n }\n}\n\nfunction scrollHandlerForBackToTop(positionY) {\n if (positionY < GO_TO_TOP_OFFSET) {\n document.documentElement.classList.remove(\"show-back-to-top\");\n } else {\n if (positionY < lastScrollTop) {\n document.documentElement.classList.add(\"show-back-to-top\");\n } else if (positionY > lastScrollTop) {\n document.documentElement.classList.remove(\"show-back-to-top\");\n }\n }\n lastScrollTop = positionY;\n}\n\nfunction scrollHandlerForTOC(positionY) {\n if (tocScroll === null) {\n return;\n }\n\n // top of page.\n if (positionY == 0) {\n tocScroll.scrollTo(0, 0);\n } else if (\n // bottom of page.\n Math.ceil(positionY) >=\n Math.floor(document.documentElement.scrollHeight - window.innerHeight)\n ) {\n tocScroll.scrollTo(0, tocScroll.scrollHeight);\n } else {\n // somewhere in the middle.\n const current = document.querySelector(\".scroll-current\");\n if (current == null) {\n return;\n }\n\n // https://github.com/pypa/pip/issues/9159 This breaks scroll behaviours.\n // // scroll the currently \"active\" heading in toc, into view.\n // const rect = current.getBoundingClientRect();\n // if (0 > rect.top) {\n // current.scrollIntoView(true); // the argument is \"alignTop\"\n // } else if (rect.bottom > window.innerHeight) {\n // current.scrollIntoView(false);\n // }\n }\n}\n\nfunction scrollHandler(positionY) {\n scrollHandlerForHeader();\n scrollHandlerForBackToTop(positionY);\n scrollHandlerForTOC(positionY);\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Theme Toggle\n////////////////////////////////////////////////////////////////////////////////\nfunction setTheme(mode) {\n if (mode !== \"light\" && mode !== \"dark\" && mode !== \"auto\") {\n console.error(`Got invalid theme mode: ${mode}. Resetting to auto.`);\n mode = \"auto\";\n }\n\n document.body.dataset.theme = mode;\n localStorage.setItem(\"theme\", mode);\n console.log(`Changed to ${mode} mode.`);\n}\n\nfunction cycleThemeOnce() {\n const currentTheme = localStorage.getItem(\"theme\") || \"auto\";\n const prefersDark = window.matchMedia(\"(prefers-color-scheme: dark)\").matches;\n\n if (prefersDark) {\n // Auto (dark) -> Light -> Dark\n if (currentTheme === \"auto\") {\n setTheme(\"light\");\n } else if (currentTheme == \"light\") {\n setTheme(\"dark\");\n } else {\n setTheme(\"auto\");\n }\n } else {\n // Auto (light) -> Dark -> Light\n if (currentTheme === \"auto\") {\n setTheme(\"dark\");\n } else if (currentTheme == \"dark\") {\n setTheme(\"light\");\n } else {\n setTheme(\"auto\");\n }\n }\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Setup\n////////////////////////////////////////////////////////////////////////////////\nfunction setupScrollHandler() {\n // Taken from https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event\n let last_known_scroll_position = 0;\n let ticking = false;\n\n window.addEventListener(\"scroll\", function (e) {\n last_known_scroll_position = window.scrollY;\n\n if (!ticking) {\n window.requestAnimationFrame(function () {\n scrollHandler(last_known_scroll_position);\n ticking = false;\n });\n\n ticking = true;\n }\n });\n window.scroll();\n}\n\nfunction setupScrollSpy() {\n if (tocScroll === null) {\n return;\n }\n\n // Scrollspy -- highlight table on contents, based on scroll\n new Gumshoe(\".toc-tree a\", {\n reflow: true,\n recursive: true,\n navClass: \"scroll-current\",\n offset: () => {\n let rem = parseFloat(getComputedStyle(document.documentElement).fontSize);\n return header.getBoundingClientRect().height + 2.5 * rem + 1;\n },\n });\n}\n\nfunction setupTheme() {\n // Attach event handlers for toggling themes\n const buttons = document.getElementsByClassName(\"theme-toggle\");\n Array.from(buttons).forEach((btn) => {\n btn.addEventListener(\"click\", cycleThemeOnce);\n });\n}\n\nfunction setup() {\n setupTheme();\n setupScrollHandler();\n setupScrollSpy();\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Main entrypoint\n////////////////////////////////////////////////////////////////////////////////\nfunction main() {\n document.body.parentNode.classList.remove(\"no-js\");\n\n header = document.querySelector(\"header\");\n tocScroll = document.querySelector(\".toc-scroll\");\n\n setup();\n}\n\ndocument.addEventListener(\"DOMContentLoaded\", main);\n"],"names":["root","g","window","this","defaults","navClass","contentClass","nested","nestedClass","offset","reflow","events","emitEvent","type","elem","detail","settings","event","CustomEvent","bubbles","cancelable","dispatchEvent","getOffsetTop","location","offsetParent","offsetTop","sortContents","contents","sort","item1","item2","content","isInView","bottom","bounds","getBoundingClientRect","parseFloat","getOffset","parseInt","innerHeight","document","documentElement","clientHeight","top","isAtBottom","Math","ceil","pageYOffset","max","body","scrollHeight","offsetHeight","getActive","last","length","item","useLastItem","i","deactivateNested","nav","parentNode","li","closest","classList","remove","deactivate","items","link","activateNested","add","selector","options","navItems","current","timeout","publicAPIs","querySelectorAll","Array","prototype","forEach","call","getElementById","decodeURIComponent","hash","substr","push","active","activate","scrollHandler","cancelAnimationFrame","requestAnimationFrame","detect","resizeHandler","destroy","removeEventListener","merged","arguments","obj","key","hasOwnProperty","extend","setup","addEventListener","factory","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","__webpack_modules__","n","getter","__esModule","d","a","definition","o","Object","defineProperty","enumerable","get","globalThis","Function","e","prop","tocScroll","header","lastScrollTop","scrollTop","GO_TO_TOP_OFFSET","cycleThemeOnce","currentTheme","localStorage","getItem","mode","matchMedia","matches","console","error","dataset","theme","setItem","log","buttons","getElementsByClassName","from","btn","setupTheme","last_known_scroll_position","ticking","scrollY","positionY","floor","scrollHandlerForBackToTop","scrollTo","querySelector","scrollHandlerForTOC","scroll","setupScrollHandler","recursive","rem","getComputedStyle","fontSize","height"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"scripts/furo.js","mappings":";iCAAA,MAQWA,SAWS,IAAX,EAAAC,EACH,EAAAA,EACkB,oBAAXC,OACLA,OACAC,KAbO,EAAF,WACP,OAaJ,SAAUD,GACR,aAMA,IAAIE,EAAW,CAEbC,SAAU,SACVC,aAAc,SAGdC,QAAQ,EACRC,YAAa,SAGbC,OAAQ,EACRC,QAAQ,EAGRC,QAAQ,GA6BNC,EAAY,SAAUC,EAAMC,EAAMC,GAEpC,GAAKA,EAAOC,SAASL,OAArB,CAGA,IAAIM,EAAQ,IAAIC,YAAYL,EAAM,CAChCM,SAAS,EACTC,YAAY,EACZL,OAAQA,IAIVD,EAAKO,cAAcJ,EAVgB,CAWrC,EAOIK,EAAe,SAAUR,GAC3B,IAAIS,EAAW,EACf,GAAIT,EAAKU,aACP,KAAOV,GACLS,GAAYT,EAAKW,UACjBX,EAAOA,EAAKU,aAGhB,OAAOD,GAAY,EAAIA,EAAW,CACpC,EAMIG,EAAe,SAAUC,GACvBA,GACFA,EAASC,MAAK,SAAUC,EAAOC,GAG7B,OAFcR,EAAaO,EAAME,SACnBT,EAAaQ,EAAMC,UACF,EACxB,CACT,GAEJ,EAwCIC,EAAW,SAAUlB,EAAME,EAAUiB,GACvC,IAAIC,EAASpB,EAAKqB,wBACd1B,EAnCU,SAAUO,GAExB,MAA+B,mBAApBA,EAASP,OACX2B,WAAWpB,EAASP,UAItB2B,WAAWpB,EAASP,OAC7B,CA2Be4B,CAAUrB,GACvB,OAAIiB,EAEAK,SAASJ,EAAOD,OAAQ,KACvB/B,EAAOqC,aAAeC,SAASC,gBAAgBC,cAG7CJ,SAASJ,EAAOS,IAAK,KAAOlC,CACrC,EAMImC,EAAa,WACf,OACEC,KAAKC,KAAK5C,EAAOqC,YAAcrC,EAAO6C,cAnCjCF,KAAKG,IACVR,SAASS,KAAKC,aACdV,SAASC,gBAAgBS,aACzBV,SAASS,KAAKE,aACdX,SAASC,gBAAgBU,aACzBX,SAASS,KAAKP,aACdF,SAASC,gBAAgBC,aAkC7B,EAmBIU,EAAY,SAAUzB,EAAUX,GAClC,IAAIqC,EAAO1B,EAASA,EAAS2B,OAAS,GACtC,GAbgB,SAAUC,EAAMvC,GAChC,SAAI4B,MAAgBZ,EAASuB,EAAKxB,QAASf,GAAU,GAEvD,CAUMwC,CAAYH,EAAMrC,GAAW,OAAOqC,EACxC,IAAK,IAAII,EAAI9B,EAAS2B,OAAS,EAAGG,GAAK,EAAGA,IACxC,GAAIzB,EAASL,EAAS8B,GAAG1B,QAASf,GAAW,OAAOW,EAAS8B,EAEjE,EAOIC,EAAmB,SAAUC,EAAK3C,GAEpC,GAAKA,EAAST,QAAWoD,EAAIC,WAA7B,CAGA,IAAIC,EAAKF,EAAIC,WAAWE,QAAQ,MAC3BD,IAGLA,EAAGE,UAAUC,OAAOhD,EAASR,aAG7BkD,EAAiBG,EAAI7C,GAV0B,CAWjD,EAOIiD,EAAa,SAAUC,EAAOlD,GAEhC,GAAKkD,EAAL,CAGA,IAAIL,EAAKK,EAAMP,IAAIG,QAAQ,MACtBD,IAGLA,EAAGE,UAAUC,OAAOhD,EAASX,UAC7B6D,EAAMnC,QAAQgC,UAAUC,OAAOhD,EAASV,cAGxCoD,EAAiBG,EAAI7C,GAGrBJ,EAAU,oBAAqBiD,EAAI,CACjCM,KAAMD,EAAMP,IACZ5B,QAASmC,EAAMnC,QACff,SAAUA,IAjBM,CAmBpB,EAOIoD,EAAiB,SAAUT,EAAK3C,GAElC,GAAKA,EAAST,OAAd,CAGA,IAAIsD,EAAKF,EAAIC,WAAWE,QAAQ,MAC3BD,IAGLA,EAAGE,UAAUM,IAAIrD,EAASR,aAG1B4D,EAAeP,EAAI7C,GAVS,CAW9B,EA6LA,OA1JkB,SAAUsD,EAAUC,GAKpC,IACIC,EAAU7C,EAAU8C,EAASC,EAAS1D,EADtC2D,EAAa,CAUjBA,MAAmB,WAEjBH,EAAWhC,SAASoC,iBAAiBN,GAGrC3C,EAAW,GAGXkD,MAAMC,UAAUC,QAAQC,KAAKR,GAAU,SAAUjB,GAE/C,IAAIxB,EAAUS,SAASyC,eACrBC,mBAAmB3B,EAAK4B,KAAKC,OAAO,KAEjCrD,GAGLJ,EAAS0D,KAAK,CACZ1B,IAAKJ,EACLxB,QAASA,GAEb,IAGAL,EAAaC,EACf,EAKAgD,OAAoB,WAElB,IAAIW,EAASlC,EAAUzB,EAAUX,GAG5BsE,EASDb,GAAWa,EAAOvD,UAAY0C,EAAQ1C,UAG1CkC,EAAWQ,EAASzD,GAzFT,SAAUkD,EAAOlD,GAE9B,GAAKkD,EAAL,CAGA,IAAIL,EAAKK,EAAMP,IAAIG,QAAQ,MACtBD,IAGLA,EAAGE,UAAUM,IAAIrD,EAASX,UAC1B6D,EAAMnC,QAAQgC,UAAUM,IAAIrD,EAASV,cAGrC8D,EAAeP,EAAI7C,GAGnBJ,EAAU,kBAAmBiD,EAAI,CAC/BM,KAAMD,EAAMP,IACZ5B,QAASmC,EAAMnC,QACff,SAAUA,IAjBM,CAmBpB,CAqEIuE,CAASD,EAAQtE,GAGjByD,EAAUa,GAfJb,IACFR,EAAWQ,EAASzD,GACpByD,EAAU,KAchB,GAMIe,EAAgB,SAAUvE,GAExByD,GACFxE,EAAOuF,qBAAqBf,GAI9BA,EAAUxE,EAAOwF,sBAAsBf,EAAWgB,OACpD,EAMIC,EAAgB,SAAU3E,GAExByD,GACFxE,EAAOuF,qBAAqBf,GAI9BA,EAAUxE,EAAOwF,uBAAsB,WACrChE,EAAaC,GACbgD,EAAWgB,QACb,GACF,EAkDA,OA7CAhB,EAAWkB,QAAU,WAEfpB,GACFR,EAAWQ,EAASzD,GAItBd,EAAO4F,oBAAoB,SAAUN,GAAe,GAChDxE,EAASN,QACXR,EAAO4F,oBAAoB,SAAUF,GAAe,GAItDjE,EAAW,KACX6C,EAAW,KACXC,EAAU,KACVC,EAAU,KACV1D,EAAW,IACb,EAOEA,EA3XS,WACX,IAAI+E,EAAS,CAAC,EAOd,OANAlB,MAAMC,UAAUC,QAAQC,KAAKgB,WAAW,SAAUC,GAChD,IAAK,IAAIC,KAAOD,EAAK,CACnB,IAAKA,EAAIE,eAAeD,GAAM,OAC9BH,EAAOG,GAAOD,EAAIC,EACpB,CACF,IACOH,CACT,CAkXeK,CAAOhG,EAAUmE,GAAW,CAAC,GAGxCI,EAAW0B,QAGX1B,EAAWgB,SAGXzF,EAAOoG,iBAAiB,SAAUd,GAAe,GAC7CxE,EAASN,QACXR,EAAOoG,iBAAiB,SAAUV,GAAe,GAS9CjB,CACT,CAOF,CArcW4B,CAAQvG,EAChB,UAFM,SAEN,uBCXDwG,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaE,QAGrB,IAAIC,EAASN,EAAyBE,GAAY,CAGjDG,QAAS,CAAC,GAOX,OAHAE,EAAoBL,GAAU1B,KAAK8B,EAAOD,QAASC,EAAQA,EAAOD,QAASJ,GAGpEK,EAAOD,OACf,CCrBAJ,EAAoBO,EAAKF,IACxB,IAAIG,EAASH,GAAUA,EAAOI,WAC7B,IAAOJ,EAAiB,QACxB,IAAM,EAEP,OADAL,EAAoBU,EAAEF,EAAQ,CAAEG,EAAGH,IAC5BA,CAAM,ECLdR,EAAoBU,EAAI,CAACN,EAASQ,KACjC,IAAI,IAAInB,KAAOmB,EACXZ,EAAoBa,EAAED,EAAYnB,KAASO,EAAoBa,EAAET,EAASX,IAC5EqB,OAAOC,eAAeX,EAASX,EAAK,CAAEuB,YAAY,EAAMC,IAAKL,EAAWnB,IAE1E,ECNDO,EAAoBxG,EAAI,WACvB,GAA0B,iBAAf0H,WAAyB,OAAOA,WAC3C,IACC,OAAOxH,MAAQ,IAAIyH,SAAS,cAAb,EAChB,CAAE,MAAOC,GACR,GAAsB,iBAAX3H,OAAqB,OAAOA,MACxC,CACA,CAPuB,GCAxBuG,EAAoBa,EAAI,CAACrB,EAAK6B,IAAUP,OAAOzC,UAAUqB,eAAenB,KAAKiB,EAAK6B,4CCK9EC,EAAY,KACZC,EAAS,KACTC,EAAgBzF,SAASC,gBAAgByF,UAC7C,MAAMC,EAAmB,GA8EzB,SAASC,IACP,MAAMC,EAAeC,aAAaC,QAAQ,UAAY,OAZxD,IAAkBC,EACH,WADGA,EAaItI,OAAOuI,WAAW,gCAAgCC,QAI/C,SAAjBL,EACO,QACgB,SAAhBA,EACA,OAEA,OAIU,SAAjBA,EACO,OACgB,QAAhBA,EACA,QAEA,SA9BoB,SAATG,GAA4B,SAATA,IACzCG,QAAQC,MAAM,2BAA2BJ,yBACzCA,EAAO,QAGThG,SAASS,KAAK4F,QAAQC,MAAQN,EAC9BF,aAAaS,QAAQ,QAASP,GAC9BG,QAAQK,IAAI,cAAcR,UA0B5B,CAkDA,SAASnC,KART,WAEE,MAAM4C,EAAUzG,SAAS0G,uBAAuB,gBAChDrE,MAAMsE,KAAKF,GAASlE,SAASqE,IAC3BA,EAAI9C,iBAAiB,QAAS8B,EAAe,GAEjD,CAGEiB,GA9CF,WAEE,IAAIC,EAA6B,EAC7BC,GAAU,EAEdrJ,OAAOoG,iBAAiB,UAAU,SAAUuB,GAC1CyB,EAA6BpJ,OAAOsJ,QAE/BD,IACHrJ,OAAOwF,uBAAsB,WAzDnC,IAAuB+D,GAxDvB,SAAgCA,GAC9B,MAAMC,EAAY7G,KAAK8G,MAAM3B,EAAO7F,wBAAwBQ,KAE5DgG,QAAQK,IAAI,cAAcU,KACT,GAAbA,GAAkBD,GAAaC,EACjC1B,EAAOjE,UAAUM,IAAI,YAErB2D,EAAOjE,UAAUC,OAAO,WAE5B,EAgDE4F,CADqBH,EA0DDH,GAvGtB,SAAmCG,GAC7BA,EAAYtB,EACd3F,SAASC,gBAAgBsB,UAAUC,OAAO,oBAEtCyF,EAAYxB,EACdzF,SAASC,gBAAgBsB,UAAUM,IAAI,oBAC9BoF,EAAYxB,GACrBzF,SAASC,gBAAgBsB,UAAUC,OAAO,oBAG9CiE,EAAgBwB,CAClB,CAoCEI,CAA0BJ,GAlC5B,SAA6BA,GACT,OAAd1B,IAKa,GAAb0B,EACF1B,EAAU+B,SAAS,EAAG,GAGtBjH,KAAKC,KAAK2G,IACV5G,KAAK8G,MAAMnH,SAASC,gBAAgBS,aAAehD,OAAOqC,aAE1DwF,EAAU+B,SAAS,EAAG/B,EAAU7E,cAGhBV,SAASuH,cAAc,mBAc3C,CAKEC,CAAoBP,GAwDdF,GAAU,CACZ,IAEAA,GAAU,EAEd,IACArJ,OAAO+J,QACT,CA6BEC,GA1BkB,OAAdnC,GAKJ,IAAI,IAAJ,CAAY,cAAe,CACzBrH,QAAQ,EACRyJ,WAAW,EACX9J,SAAU,iBACVI,OAAQ,KACN,IAAI2J,EAAMhI,WAAWiI,iBAAiB7H,SAASC,iBAAiB6H,UAChE,OAAOtC,EAAO7F,wBAAwBoI,OAAS,IAAMH,EAAM,CAAC,GAiBlE,CAcA5H,SAAS8D,iBAAiB,oBAT1B,WACE9D,SAASS,KAAKW,WAAWG,UAAUC,OAAO,SAE1CgE,EAASxF,SAASuH,cAAc,UAChChC,EAAYvF,SAASuH,cAAc,eAEnC1D,GACF","sources":["webpack:///./src/furo/assets/scripts/gumshoe-patched.js","webpack:///webpack/bootstrap","webpack:///webpack/runtime/compat get default export","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/global","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///./src/furo/assets/scripts/furo.js"],"sourcesContent":["/*!\n * gumshoejs v5.1.2 (patched by @pradyunsg)\n * A simple, framework-agnostic scrollspy script.\n * (c) 2019 Chris Ferdinandi\n * MIT License\n * http://github.com/cferdinandi/gumshoe\n */\n\n(function (root, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([], function () {\n return factory(root);\n });\n } else if (typeof exports === \"object\") {\n module.exports = factory(root);\n } else {\n root.Gumshoe = factory(root);\n }\n})(\n typeof global !== \"undefined\"\n ? global\n : typeof window !== \"undefined\"\n ? window\n : this,\n function (window) {\n \"use strict\";\n\n //\n // Defaults\n //\n\n var defaults = {\n // Active classes\n navClass: \"active\",\n contentClass: \"active\",\n\n // Nested navigation\n nested: false,\n nestedClass: \"active\",\n\n // Offset & reflow\n offset: 0,\n reflow: false,\n\n // Event support\n events: true,\n };\n\n //\n // Methods\n //\n\n /**\n * Merge two or more objects together.\n * @param {Object} objects The objects to merge together\n * @returns {Object} Merged values of defaults and options\n */\n var extend = function () {\n var merged = {};\n Array.prototype.forEach.call(arguments, function (obj) {\n for (var key in obj) {\n if (!obj.hasOwnProperty(key)) return;\n merged[key] = obj[key];\n }\n });\n return merged;\n };\n\n /**\n * Emit a custom event\n * @param {String} type The event type\n * @param {Node} elem The element to attach the event to\n * @param {Object} detail Any details to pass along with the event\n */\n var emitEvent = function (type, elem, detail) {\n // Make sure events are enabled\n if (!detail.settings.events) return;\n\n // Create a new event\n var event = new CustomEvent(type, {\n bubbles: true,\n cancelable: true,\n detail: detail,\n });\n\n // Dispatch the event\n elem.dispatchEvent(event);\n };\n\n /**\n * Get an element's distance from the top of the Document.\n * @param {Node} elem The element\n * @return {Number} Distance from the top in pixels\n */\n var getOffsetTop = function (elem) {\n var location = 0;\n if (elem.offsetParent) {\n while (elem) {\n location += elem.offsetTop;\n elem = elem.offsetParent;\n }\n }\n return location >= 0 ? location : 0;\n };\n\n /**\n * Sort content from first to last in the DOM\n * @param {Array} contents The content areas\n */\n var sortContents = function (contents) {\n if (contents) {\n contents.sort(function (item1, item2) {\n var offset1 = getOffsetTop(item1.content);\n var offset2 = getOffsetTop(item2.content);\n if (offset1 < offset2) return -1;\n return 1;\n });\n }\n };\n\n /**\n * Get the offset to use for calculating position\n * @param {Object} settings The settings for this instantiation\n * @return {Float} The number of pixels to offset the calculations\n */\n var getOffset = function (settings) {\n // if the offset is a function run it\n if (typeof settings.offset === \"function\") {\n return parseFloat(settings.offset());\n }\n\n // Otherwise, return it as-is\n return parseFloat(settings.offset);\n };\n\n /**\n * Get the document element's height\n * @private\n * @returns {Number}\n */\n var getDocumentHeight = function () {\n return Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight,\n document.body.offsetHeight,\n document.documentElement.offsetHeight,\n document.body.clientHeight,\n document.documentElement.clientHeight,\n );\n };\n\n /**\n * Determine if an element is in view\n * @param {Node} elem The element\n * @param {Object} settings The settings for this instantiation\n * @param {Boolean} bottom If true, check if element is above bottom of viewport instead\n * @return {Boolean} Returns true if element is in the viewport\n */\n var isInView = function (elem, settings, bottom) {\n var bounds = elem.getBoundingClientRect();\n var offset = getOffset(settings);\n if (bottom) {\n return (\n parseInt(bounds.bottom, 10) <\n (window.innerHeight || document.documentElement.clientHeight)\n );\n }\n return parseInt(bounds.top, 10) <= offset;\n };\n\n /**\n * Check if at the bottom of the viewport\n * @return {Boolean} If true, page is at the bottom of the viewport\n */\n var isAtBottom = function () {\n if (\n Math.ceil(window.innerHeight + window.pageYOffset) >=\n getDocumentHeight()\n )\n return true;\n return false;\n };\n\n /**\n * Check if the last item should be used (even if not at the top of the page)\n * @param {Object} item The last item\n * @param {Object} settings The settings for this instantiation\n * @return {Boolean} If true, use the last item\n */\n var useLastItem = function (item, settings) {\n if (isAtBottom() && isInView(item.content, settings, true)) return true;\n return false;\n };\n\n /**\n * Get the active content\n * @param {Array} contents The content areas\n * @param {Object} settings The settings for this instantiation\n * @return {Object} The content area and matching navigation link\n */\n var getActive = function (contents, settings) {\n var last = contents[contents.length - 1];\n if (useLastItem(last, settings)) return last;\n for (var i = contents.length - 1; i >= 0; i--) {\n if (isInView(contents[i].content, settings)) return contents[i];\n }\n };\n\n /**\n * Deactivate parent navs in a nested navigation\n * @param {Node} nav The starting navigation element\n * @param {Object} settings The settings for this instantiation\n */\n var deactivateNested = function (nav, settings) {\n // If nesting isn't activated, bail\n if (!settings.nested || !nav.parentNode) return;\n\n // Get the parent navigation\n var li = nav.parentNode.closest(\"li\");\n if (!li) return;\n\n // Remove the active class\n li.classList.remove(settings.nestedClass);\n\n // Apply recursively to any parent navigation elements\n deactivateNested(li, settings);\n };\n\n /**\n * Deactivate a nav and content area\n * @param {Object} items The nav item and content to deactivate\n * @param {Object} settings The settings for this instantiation\n */\n var deactivate = function (items, settings) {\n // Make sure there are items to deactivate\n if (!items) return;\n\n // Get the parent list item\n var li = items.nav.closest(\"li\");\n if (!li) return;\n\n // Remove the active class from the nav and content\n li.classList.remove(settings.navClass);\n items.content.classList.remove(settings.contentClass);\n\n // Deactivate any parent navs in a nested navigation\n deactivateNested(li, settings);\n\n // Emit a custom event\n emitEvent(\"gumshoeDeactivate\", li, {\n link: items.nav,\n content: items.content,\n settings: settings,\n });\n };\n\n /**\n * Activate parent navs in a nested navigation\n * @param {Node} nav The starting navigation element\n * @param {Object} settings The settings for this instantiation\n */\n var activateNested = function (nav, settings) {\n // If nesting isn't activated, bail\n if (!settings.nested) return;\n\n // Get the parent navigation\n var li = nav.parentNode.closest(\"li\");\n if (!li) return;\n\n // Add the active class\n li.classList.add(settings.nestedClass);\n\n // Apply recursively to any parent navigation elements\n activateNested(li, settings);\n };\n\n /**\n * Activate a nav and content area\n * @param {Object} items The nav item and content to activate\n * @param {Object} settings The settings for this instantiation\n */\n var activate = function (items, settings) {\n // Make sure there are items to activate\n if (!items) return;\n\n // Get the parent list item\n var li = items.nav.closest(\"li\");\n if (!li) return;\n\n // Add the active class to the nav and content\n li.classList.add(settings.navClass);\n items.content.classList.add(settings.contentClass);\n\n // Activate any parent navs in a nested navigation\n activateNested(li, settings);\n\n // Emit a custom event\n emitEvent(\"gumshoeActivate\", li, {\n link: items.nav,\n content: items.content,\n settings: settings,\n });\n };\n\n /**\n * Create the Constructor object\n * @param {String} selector The selector to use for navigation items\n * @param {Object} options User options and settings\n */\n var Constructor = function (selector, options) {\n //\n // Variables\n //\n\n var publicAPIs = {};\n var navItems, contents, current, timeout, settings;\n\n //\n // Methods\n //\n\n /**\n * Set variables from DOM elements\n */\n publicAPIs.setup = function () {\n // Get all nav items\n navItems = document.querySelectorAll(selector);\n\n // Create contents array\n contents = [];\n\n // Loop through each item, get it's matching content, and push to the array\n Array.prototype.forEach.call(navItems, function (item) {\n // Get the content for the nav item\n var content = document.getElementById(\n decodeURIComponent(item.hash.substr(1)),\n );\n if (!content) return;\n\n // Push to the contents array\n contents.push({\n nav: item,\n content: content,\n });\n });\n\n // Sort contents by the order they appear in the DOM\n sortContents(contents);\n };\n\n /**\n * Detect which content is currently active\n */\n publicAPIs.detect = function () {\n // Get the active content\n var active = getActive(contents, settings);\n\n // if there's no active content, deactivate and bail\n if (!active) {\n if (current) {\n deactivate(current, settings);\n current = null;\n }\n return;\n }\n\n // If the active content is the one currently active, do nothing\n if (current && active.content === current.content) return;\n\n // Deactivate the current content and activate the new content\n deactivate(current, settings);\n activate(active, settings);\n\n // Update the currently active content\n current = active;\n };\n\n /**\n * Detect the active content on scroll\n * Debounced for performance\n */\n var scrollHandler = function (event) {\n // If there's a timer, cancel it\n if (timeout) {\n window.cancelAnimationFrame(timeout);\n }\n\n // Setup debounce callback\n timeout = window.requestAnimationFrame(publicAPIs.detect);\n };\n\n /**\n * Update content sorting on resize\n * Debounced for performance\n */\n var resizeHandler = function (event) {\n // If there's a timer, cancel it\n if (timeout) {\n window.cancelAnimationFrame(timeout);\n }\n\n // Setup debounce callback\n timeout = window.requestAnimationFrame(function () {\n sortContents(contents);\n publicAPIs.detect();\n });\n };\n\n /**\n * Destroy the current instantiation\n */\n publicAPIs.destroy = function () {\n // Undo DOM changes\n if (current) {\n deactivate(current, settings);\n }\n\n // Remove event listeners\n window.removeEventListener(\"scroll\", scrollHandler, false);\n if (settings.reflow) {\n window.removeEventListener(\"resize\", resizeHandler, false);\n }\n\n // Reset variables\n contents = null;\n navItems = null;\n current = null;\n timeout = null;\n settings = null;\n };\n\n /**\n * Initialize the current instantiation\n */\n var init = function () {\n // Merge user options into defaults\n settings = extend(defaults, options || {});\n\n // Setup variables based on the current DOM\n publicAPIs.setup();\n\n // Find the currently active content\n publicAPIs.detect();\n\n // Setup event listeners\n window.addEventListener(\"scroll\", scrollHandler, false);\n if (settings.reflow) {\n window.addEventListener(\"resize\", resizeHandler, false);\n }\n };\n\n //\n // Initialize and return the public APIs\n //\n\n init();\n return publicAPIs;\n };\n\n //\n // Return the Constructor\n //\n\n return Constructor;\n },\n);\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import Gumshoe from \"./gumshoe-patched.js\";\n\n////////////////////////////////////////////////////////////////////////////////\n// Scroll Handling\n////////////////////////////////////////////////////////////////////////////////\nvar tocScroll = null;\nvar header = null;\nvar lastScrollTop = document.documentElement.scrollTop;\nconst GO_TO_TOP_OFFSET = 64;\n\nfunction scrollHandlerForHeader(positionY) {\n const headerTop = Math.floor(header.getBoundingClientRect().top);\n\n console.log(`headerTop: ${headerTop}`);\n if (headerTop == 0 && positionY != headerTop) {\n header.classList.add(\"scrolled\");\n } else {\n header.classList.remove(\"scrolled\");\n }\n}\n\nfunction scrollHandlerForBackToTop(positionY) {\n if (positionY < GO_TO_TOP_OFFSET) {\n document.documentElement.classList.remove(\"show-back-to-top\");\n } else {\n if (positionY < lastScrollTop) {\n document.documentElement.classList.add(\"show-back-to-top\");\n } else if (positionY > lastScrollTop) {\n document.documentElement.classList.remove(\"show-back-to-top\");\n }\n }\n lastScrollTop = positionY;\n}\n\nfunction scrollHandlerForTOC(positionY) {\n if (tocScroll === null) {\n return;\n }\n\n // top of page.\n if (positionY == 0) {\n tocScroll.scrollTo(0, 0);\n } else if (\n // bottom of page.\n Math.ceil(positionY) >=\n Math.floor(document.documentElement.scrollHeight - window.innerHeight)\n ) {\n tocScroll.scrollTo(0, tocScroll.scrollHeight);\n } else {\n // somewhere in the middle.\n const current = document.querySelector(\".scroll-current\");\n if (current == null) {\n return;\n }\n\n // https://github.com/pypa/pip/issues/9159 This breaks scroll behaviours.\n // // scroll the currently \"active\" heading in toc, into view.\n // const rect = current.getBoundingClientRect();\n // if (0 > rect.top) {\n // current.scrollIntoView(true); // the argument is \"alignTop\"\n // } else if (rect.bottom > window.innerHeight) {\n // current.scrollIntoView(false);\n // }\n }\n}\n\nfunction scrollHandler(positionY) {\n scrollHandlerForHeader(positionY);\n scrollHandlerForBackToTop(positionY);\n scrollHandlerForTOC(positionY);\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Theme Toggle\n////////////////////////////////////////////////////////////////////////////////\nfunction setTheme(mode) {\n if (mode !== \"light\" && mode !== \"dark\" && mode !== \"auto\") {\n console.error(`Got invalid theme mode: ${mode}. Resetting to auto.`);\n mode = \"auto\";\n }\n\n document.body.dataset.theme = mode;\n localStorage.setItem(\"theme\", mode);\n console.log(`Changed to ${mode} mode.`);\n}\n\nfunction cycleThemeOnce() {\n const currentTheme = localStorage.getItem(\"theme\") || \"auto\";\n const prefersDark = window.matchMedia(\"(prefers-color-scheme: dark)\").matches;\n\n if (prefersDark) {\n // Auto (dark) -> Light -> Dark\n if (currentTheme === \"auto\") {\n setTheme(\"light\");\n } else if (currentTheme == \"light\") {\n setTheme(\"dark\");\n } else {\n setTheme(\"auto\");\n }\n } else {\n // Auto (light) -> Dark -> Light\n if (currentTheme === \"auto\") {\n setTheme(\"dark\");\n } else if (currentTheme == \"dark\") {\n setTheme(\"light\");\n } else {\n setTheme(\"auto\");\n }\n }\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Setup\n////////////////////////////////////////////////////////////////////////////////\nfunction setupScrollHandler() {\n // Taken from https://developer.mozilla.org/en-US/docs/Web/API/Document/scroll_event\n let last_known_scroll_position = 0;\n let ticking = false;\n\n window.addEventListener(\"scroll\", function (e) {\n last_known_scroll_position = window.scrollY;\n\n if (!ticking) {\n window.requestAnimationFrame(function () {\n scrollHandler(last_known_scroll_position);\n ticking = false;\n });\n\n ticking = true;\n }\n });\n window.scroll();\n}\n\nfunction setupScrollSpy() {\n if (tocScroll === null) {\n return;\n }\n\n // Scrollspy -- highlight table on contents, based on scroll\n new Gumshoe(\".toc-tree a\", {\n reflow: true,\n recursive: true,\n navClass: \"scroll-current\",\n offset: () => {\n let rem = parseFloat(getComputedStyle(document.documentElement).fontSize);\n return header.getBoundingClientRect().height + 2.5 * rem + 1;\n },\n });\n}\n\nfunction setupTheme() {\n // Attach event handlers for toggling themes\n const buttons = document.getElementsByClassName(\"theme-toggle\");\n Array.from(buttons).forEach((btn) => {\n btn.addEventListener(\"click\", cycleThemeOnce);\n });\n}\n\nfunction setup() {\n setupTheme();\n setupScrollHandler();\n setupScrollSpy();\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// Main entrypoint\n////////////////////////////////////////////////////////////////////////////////\nfunction main() {\n document.body.parentNode.classList.remove(\"no-js\");\n\n header = document.querySelector(\"header\");\n tocScroll = document.querySelector(\".toc-scroll\");\n\n setup();\n}\n\ndocument.addEventListener(\"DOMContentLoaded\", main);\n"],"names":["root","g","window","this","defaults","navClass","contentClass","nested","nestedClass","offset","reflow","events","emitEvent","type","elem","detail","settings","event","CustomEvent","bubbles","cancelable","dispatchEvent","getOffsetTop","location","offsetParent","offsetTop","sortContents","contents","sort","item1","item2","content","isInView","bottom","bounds","getBoundingClientRect","parseFloat","getOffset","parseInt","innerHeight","document","documentElement","clientHeight","top","isAtBottom","Math","ceil","pageYOffset","max","body","scrollHeight","offsetHeight","getActive","last","length","item","useLastItem","i","deactivateNested","nav","parentNode","li","closest","classList","remove","deactivate","items","link","activateNested","add","selector","options","navItems","current","timeout","publicAPIs","querySelectorAll","Array","prototype","forEach","call","getElementById","decodeURIComponent","hash","substr","push","active","activate","scrollHandler","cancelAnimationFrame","requestAnimationFrame","detect","resizeHandler","destroy","removeEventListener","merged","arguments","obj","key","hasOwnProperty","extend","setup","addEventListener","factory","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","__webpack_modules__","n","getter","__esModule","d","a","definition","o","Object","defineProperty","enumerable","get","globalThis","Function","e","prop","tocScroll","header","lastScrollTop","scrollTop","GO_TO_TOP_OFFSET","cycleThemeOnce","currentTheme","localStorage","getItem","mode","matchMedia","matches","console","error","dataset","theme","setItem","log","buttons","getElementsByClassName","from","btn","setupTheme","last_known_scroll_position","ticking","scrollY","positionY","headerTop","floor","scrollHandlerForHeader","scrollHandlerForBackToTop","scrollTo","querySelector","scrollHandlerForTOC","scroll","setupScrollHandler","recursive","rem","getComputedStyle","fontSize","height"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/searchtools.js b/docs/sphinx/_build/html/_static/searchtools.js index 92da3f8b..b08d58c9 100644 --- a/docs/sphinx/_build/html/_static/searchtools.js +++ b/docs/sphinx/_build/html/_static/searchtools.js @@ -178,7 +178,7 @@ const Search = { htmlToText: (htmlString, anchor) => { const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html'); - for (const removalQuery of [".headerlinks", "script", "style"]) { + for (const removalQuery of [".headerlink", "script", "style"]) { htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() }); } if (anchor) { @@ -328,13 +328,14 @@ const Search = { for (const [title, foundTitles] of Object.entries(allTitles)) { if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) { for (const [file, id] of foundTitles) { - let score = Math.round(100 * queryLower.length / title.length) + const score = Math.round(Scorer.title * queryLower.length / title.length); + const boost = titles[file] === title ? 1 : 0; // add a boost for document titles normalResults.push([ docNames[file], titles[file] !== title ? `${titles[file]} > ${title}` : title, id !== null ? "#" + id : "", null, - score, + score + boost, filenames[file], ]); } diff --git a/docs/sphinx/_build/html/_static/styles/furo-extensions.css b/docs/sphinx/_build/html/_static/styles/furo-extensions.css index bc447f22..82295876 100644 --- a/docs/sphinx/_build/html/_static/styles/furo-extensions.css +++ b/docs/sphinx/_build/html/_static/styles/furo-extensions.css @@ -1,2 +1,2 @@ -#furo-sidebar-ad-placement{padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)}#furo-sidebar-ad-placement .ethical-sidebar{background:var(--color-background-secondary);border:none;box-shadow:none}#furo-sidebar-ad-placement .ethical-sidebar:hover{background:var(--color-background-hover)}#furo-sidebar-ad-placement .ethical-sidebar a{color:var(--color-foreground-primary)}#furo-sidebar-ad-placement .ethical-callout a{color:var(--color-foreground-secondary)!important}#furo-readthedocs-versions{background:transparent;display:block;position:static;width:100%}#furo-readthedocs-versions .rst-versions{background:#1a1c1e}#furo-readthedocs-versions .rst-current-version{background:var(--color-sidebar-item-background);cursor:unset}#furo-readthedocs-versions .rst-current-version:hover{background:var(--color-sidebar-item-background)}#furo-readthedocs-versions .rst-current-version .fa-book{color:var(--color-foreground-primary)}#furo-readthedocs-versions>.rst-other-versions{padding:0}#furo-readthedocs-versions>.rst-other-versions small{opacity:1}#furo-readthedocs-versions .injected .rst-versions{position:unset}#furo-readthedocs-versions:focus-within,#furo-readthedocs-versions:hover{box-shadow:0 0 0 1px var(--color-sidebar-background-border)}#furo-readthedocs-versions:focus-within .rst-current-version,#furo-readthedocs-versions:hover .rst-current-version{background:#1a1c1e;font-size:inherit;height:auto;line-height:inherit;padding:12px;text-align:right}#furo-readthedocs-versions:focus-within .rst-current-version .fa-book,#furo-readthedocs-versions:hover .rst-current-version .fa-book{color:#fff;float:left}#furo-readthedocs-versions:focus-within .fa-caret-down,#furo-readthedocs-versions:hover .fa-caret-down{display:none}#furo-readthedocs-versions:focus-within .injected,#furo-readthedocs-versions:focus-within .rst-current-version,#furo-readthedocs-versions:focus-within .rst-other-versions,#furo-readthedocs-versions:hover .injected,#furo-readthedocs-versions:hover .rst-current-version,#furo-readthedocs-versions:hover .rst-other-versions{display:block}#furo-readthedocs-versions:focus-within>.rst-current-version,#furo-readthedocs-versions:hover>.rst-current-version{display:none}.highlight:hover button.copybtn{color:var(--color-code-foreground)}.highlight button.copybtn{align-items:center;background-color:var(--color-code-background);border:none;color:var(--color-background-item);cursor:pointer;height:1.25em;opacity:1;right:.5rem;top:.625rem;transition:color .3s,opacity .3s;width:1.25em}.highlight button.copybtn:hover{background-color:var(--color-code-background);color:var(--color-brand-content)}.highlight button.copybtn:after{background-color:transparent;color:var(--color-code-foreground);display:none}.highlight button.copybtn.success{color:#22863a;transition:color 0ms}.highlight button.copybtn.success:after{display:block}.highlight button.copybtn svg{padding:0}body{--sd-color-primary:var(--color-brand-primary);--sd-color-primary-highlight:var(--color-brand-content);--sd-color-primary-text:var(--color-background-primary);--sd-color-shadow:rgba(0,0,0,.05);--sd-color-card-border:var(--color-card-border);--sd-color-card-border-hover:var(--color-brand-content);--sd-color-card-background:var(--color-card-background);--sd-color-card-text:var(--color-foreground-primary);--sd-color-card-header:var(--color-card-marginals-background);--sd-color-card-footer:var(--color-card-marginals-background);--sd-color-tabs-label-active:var(--color-brand-content);--sd-color-tabs-label-hover:var(--color-foreground-muted);--sd-color-tabs-label-inactive:var(--color-foreground-muted);--sd-color-tabs-underline-active:var(--color-brand-content);--sd-color-tabs-underline-hover:var(--color-foreground-border);--sd-color-tabs-underline-inactive:var(--color-background-border);--sd-color-tabs-overline:var(--color-background-border);--sd-color-tabs-underline:var(--color-background-border)}.sd-tab-content{box-shadow:0 -2px var(--sd-color-tabs-overline),0 1px var(--sd-color-tabs-underline)}.sd-card{box-shadow:0 .1rem .25rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)}.sd-shadow-sm{box-shadow:0 .1rem .25rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-shadow-md{box-shadow:0 .3rem .75rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-shadow-lg{box-shadow:0 .6rem 1.5rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-card-hover:hover{transform:none}.sd-cards-carousel{gap:.25rem;padding:.25rem}body{--tabs--label-text:var(--color-foreground-muted);--tabs--label-text--hover:var(--color-foreground-muted);--tabs--label-text--active:var(--color-brand-content);--tabs--label-text--active--hover:var(--color-brand-content);--tabs--label-background:transparent;--tabs--label-background--hover:transparent;--tabs--label-background--active:transparent;--tabs--label-background--active--hover:transparent;--tabs--padding-x:0.25em;--tabs--margin-x:1em;--tabs--border:var(--color-background-border);--tabs--label-border:transparent;--tabs--label-border--hover:var(--color-foreground-muted);--tabs--label-border--active:var(--color-brand-content);--tabs--label-border--active--hover:var(--color-brand-content)}[role=main] .container{max-width:none;padding-left:0;padding-right:0}.shadow.docutils{border:none;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1)!important}.sphinx-bs .card{background-color:var(--color-background-secondary);color:var(--color-foreground)} +#furo-sidebar-ad-placement{padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)}#furo-sidebar-ad-placement .ethical-sidebar{background:var(--color-background-secondary);border:none;box-shadow:none}#furo-sidebar-ad-placement .ethical-sidebar:hover{background:var(--color-background-hover)}#furo-sidebar-ad-placement .ethical-sidebar a{color:var(--color-foreground-primary)}#furo-sidebar-ad-placement .ethical-callout a{color:var(--color-foreground-secondary)!important}#furo-readthedocs-versions{background:transparent;display:block;position:static;width:100%}#furo-readthedocs-versions .rst-versions{background:#1a1c1e}#furo-readthedocs-versions .rst-current-version{background:var(--color-sidebar-item-background);cursor:unset}#furo-readthedocs-versions .rst-current-version:hover{background:var(--color-sidebar-item-background)}#furo-readthedocs-versions .rst-current-version .fa-book{color:var(--color-foreground-primary)}#furo-readthedocs-versions>.rst-other-versions{padding:0}#furo-readthedocs-versions>.rst-other-versions small{opacity:1}#furo-readthedocs-versions .injected .rst-versions{position:unset}#furo-readthedocs-versions:focus-within,#furo-readthedocs-versions:hover{box-shadow:0 0 0 1px var(--color-sidebar-background-border)}#furo-readthedocs-versions:focus-within .rst-current-version,#furo-readthedocs-versions:hover .rst-current-version{background:#1a1c1e;font-size:inherit;height:auto;line-height:inherit;padding:12px;text-align:right}#furo-readthedocs-versions:focus-within .rst-current-version .fa-book,#furo-readthedocs-versions:hover .rst-current-version .fa-book{color:#fff;float:left}#furo-readthedocs-versions:focus-within .fa-caret-down,#furo-readthedocs-versions:hover .fa-caret-down{display:none}#furo-readthedocs-versions:focus-within .injected,#furo-readthedocs-versions:focus-within .rst-current-version,#furo-readthedocs-versions:focus-within .rst-other-versions,#furo-readthedocs-versions:hover .injected,#furo-readthedocs-versions:hover .rst-current-version,#furo-readthedocs-versions:hover .rst-other-versions{display:block}#furo-readthedocs-versions:focus-within>.rst-current-version,#furo-readthedocs-versions:hover>.rst-current-version{display:none}.highlight:hover button.copybtn{color:var(--color-code-foreground)}.highlight button.copybtn{align-items:center;background-color:var(--color-code-background);border:none;color:var(--color-background-item);cursor:pointer;height:1.25em;right:.5rem;top:.625rem;transition:color .3s,opacity .3s;width:1.25em}.highlight button.copybtn:hover{background-color:var(--color-code-background);color:var(--color-brand-content)}.highlight button.copybtn:after{background-color:transparent;color:var(--color-code-foreground);display:none}.highlight button.copybtn.success{color:#22863a;transition:color 0ms}.highlight button.copybtn.success:after{display:block}.highlight button.copybtn svg{padding:0}body{--sd-color-primary:var(--color-brand-primary);--sd-color-primary-highlight:var(--color-brand-content);--sd-color-primary-text:var(--color-background-primary);--sd-color-shadow:rgba(0,0,0,.05);--sd-color-card-border:var(--color-card-border);--sd-color-card-border-hover:var(--color-brand-content);--sd-color-card-background:var(--color-card-background);--sd-color-card-text:var(--color-foreground-primary);--sd-color-card-header:var(--color-card-marginals-background);--sd-color-card-footer:var(--color-card-marginals-background);--sd-color-tabs-label-active:var(--color-brand-content);--sd-color-tabs-label-hover:var(--color-foreground-muted);--sd-color-tabs-label-inactive:var(--color-foreground-muted);--sd-color-tabs-underline-active:var(--color-brand-content);--sd-color-tabs-underline-hover:var(--color-foreground-border);--sd-color-tabs-underline-inactive:var(--color-background-border);--sd-color-tabs-overline:var(--color-background-border);--sd-color-tabs-underline:var(--color-background-border)}.sd-tab-content{box-shadow:0 -2px var(--sd-color-tabs-overline),0 1px var(--sd-color-tabs-underline)}.sd-card{box-shadow:0 .1rem .25rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)}.sd-shadow-sm{box-shadow:0 .1rem .25rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-shadow-md{box-shadow:0 .3rem .75rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-shadow-lg{box-shadow:0 .6rem 1.5rem var(--sd-color-shadow),0 0 .0625rem rgba(0,0,0,.1)!important}.sd-card-hover:hover{transform:none}.sd-cards-carousel{gap:.25rem;padding:.25rem}body{--tabs--label-text:var(--color-foreground-muted);--tabs--label-text--hover:var(--color-foreground-muted);--tabs--label-text--active:var(--color-brand-content);--tabs--label-text--active--hover:var(--color-brand-content);--tabs--label-background:transparent;--tabs--label-background--hover:transparent;--tabs--label-background--active:transparent;--tabs--label-background--active--hover:transparent;--tabs--padding-x:0.25em;--tabs--margin-x:1em;--tabs--border:var(--color-background-border);--tabs--label-border:transparent;--tabs--label-border--hover:var(--color-foreground-muted);--tabs--label-border--active:var(--color-brand-content);--tabs--label-border--active--hover:var(--color-brand-content)}[role=main] .container{max-width:none;padding-left:0;padding-right:0}.shadow.docutils{border:none;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1)!important}.sphinx-bs .card{background-color:var(--color-background-secondary);color:var(--color-foreground)} /*# sourceMappingURL=furo-extensions.css.map*/ \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/styles/furo-extensions.css.map b/docs/sphinx/_build/html/_static/styles/furo-extensions.css.map index 9ba5637f..c26eac7f 100644 --- a/docs/sphinx/_build/html/_static/styles/furo-extensions.css.map +++ b/docs/sphinx/_build/html/_static/styles/furo-extensions.css.map @@ -1 +1 @@ -{"version":3,"file":"styles/furo-extensions.css","mappings":"AAGA,2BACE,oFACA,4CAKE,6CAHA,YACA,eAEA,CACA,kDACE,yCAEF,8CACE,sCAEJ,8CACE,kDAEJ,2BAGE,uBACA,cAHA,gBACA,UAEA,CAGA,yCACE,mBAEF,gDAEE,gDADA,YACA,CACA,sDACE,gDACF,yDACE,sCAEJ,+CACE,UACA,qDACE,UAGF,mDACE,eAEJ,yEAEE,4DAEA,mHASE,mBAPA,kBAEA,YADA,oBAGA,aADA,gBAIA,CAEA,qIAEE,WADA,UACA,CAEJ,uGACE,aAEF,iUAGE,cAEF,mHACE,aC1EJ,gCACE,mCAEF,0BAKE,mBAUA,8CACA,YAFA,mCAKA,eAZA,cALA,UASA,YADA,YAYA,iCAdA,YAcA,CAEA,gCAEE,8CADA,gCACA,CAEF,gCAGE,6BADA,mCADA,YAEA,CAEF,kCAEE,cADA,oBACA,CACA,wCACE,cAEJ,8BACE,UC5CN,KAEE,6CAA8C,CAC9C,uDAAwD,CACxD,uDAAwD,CAGxD,iCAAsC,CAGtC,+CAAgD,CAChD,uDAAwD,CACxD,uDAAwD,CACxD,oDAAqD,CACrD,6DAA8D,CAC9D,6DAA8D,CAG9D,uDAAwD,CACxD,yDAA0D,CAC1D,4DAA6D,CAC7D,2DAA4D,CAC5D,8DAA+D,CAC/D,iEAAkE,CAClE,uDAAwD,CACxD,wDAAyD,CAG3D,gBACE,qFAGF,SACE,6EAEF,cACE,uFAEF,cACE,uFAEF,cACE,uFAGF,qBACE,eAEF,mBACE,WACA,eChDF,KACE,gDAAiD,CACjD,uDAAwD,CACxD,qDAAsD,CACtD,4DAA6D,CAC7D,oCAAqC,CACrC,2CAA4C,CAC5C,4CAA6C,CAC7C,mDAAoD,CACpD,wBAAyB,CACzB,oBAAqB,CACrB,6CAA8C,CAC9C,gCAAiC,CACjC,yDAA0D,CAC1D,uDAAwD,CACxD,8DAA+D,CCbjE,uBACE,eACA,eACA,gBAGF,iBACE,YACA,+EAGF,iBACE,mDACA","sources":["webpack:///./src/furo/assets/styles/extensions/_readthedocs.sass","webpack:///./src/furo/assets/styles/extensions/_copybutton.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-design.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-inline-tabs.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-panels.sass"],"sourcesContent":["// This file contains the styles used for tweaking how ReadTheDoc's embedded\n// contents would show up inside the theme.\n\n#furo-sidebar-ad-placement\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)\n .ethical-sidebar\n // Remove the border and box-shadow.\n border: none\n box-shadow: none\n // Manage the background colors.\n background: var(--color-background-secondary)\n &:hover\n background: var(--color-background-hover)\n // Ensure the text is legible.\n a\n color: var(--color-foreground-primary)\n\n .ethical-callout a\n color: var(--color-foreground-secondary) !important\n\n#furo-readthedocs-versions\n position: static\n width: 100%\n background: transparent\n display: block\n\n // Make the background color fit with the theme's aesthetic.\n .rst-versions\n background: rgb(26, 28, 30)\n\n .rst-current-version\n cursor: unset\n background: var(--color-sidebar-item-background)\n &:hover\n background: var(--color-sidebar-item-background)\n .fa-book\n color: var(--color-foreground-primary)\n\n > .rst-other-versions\n padding: 0\n small\n opacity: 1\n\n .injected\n .rst-versions\n position: unset\n\n &:hover,\n &:focus-within\n box-shadow: 0 0 0 1px var(--color-sidebar-background-border)\n\n .rst-current-version\n // Undo the tweaks done in RTD's CSS\n font-size: inherit\n line-height: inherit\n height: auto\n text-align: right\n padding: 12px\n\n // Match the rest of the body\n background: #1a1c1e\n\n .fa-book\n float: left\n color: white\n\n .fa-caret-down\n display: none\n\n .rst-current-version,\n .rst-other-versions,\n .injected\n display: block\n\n > .rst-current-version\n display: none\n",".highlight\n &:hover button.copybtn\n color: var(--color-code-foreground)\n\n button.copybtn\n // Make it visible\n opacity: 1\n\n // Align things correctly\n align-items: center\n\n height: 1.25em\n width: 1.25em\n\n top: 0.625rem // $code-spacing-vertical\n right: 0.5rem\n\n // Make it look better\n color: var(--color-background-item)\n background-color: var(--color-code-background)\n border: none\n\n // Change to cursor to make it obvious that you can click on it\n cursor: pointer\n\n // Transition smoothly, for aesthetics\n transition: color 300ms, opacity 300ms\n\n &:hover\n color: var(--color-brand-content)\n background-color: var(--color-code-background)\n\n &::after\n display: none\n color: var(--color-code-foreground)\n background-color: transparent\n\n &.success\n transition: color 0ms\n color: #22863a\n &::after\n display: block\n\n svg\n padding: 0\n","body\n // Colors\n --sd-color-primary: var(--color-brand-primary)\n --sd-color-primary-highlight: var(--color-brand-content)\n --sd-color-primary-text: var(--color-background-primary)\n\n // Shadows\n --sd-color-shadow: rgba(0, 0, 0, 0.05)\n\n // Cards\n --sd-color-card-border: var(--color-card-border)\n --sd-color-card-border-hover: var(--color-brand-content)\n --sd-color-card-background: var(--color-card-background)\n --sd-color-card-text: var(--color-foreground-primary)\n --sd-color-card-header: var(--color-card-marginals-background)\n --sd-color-card-footer: var(--color-card-marginals-background)\n\n // Tabs\n --sd-color-tabs-label-active: var(--color-brand-content)\n --sd-color-tabs-label-hover: var(--color-foreground-muted)\n --sd-color-tabs-label-inactive: var(--color-foreground-muted)\n --sd-color-tabs-underline-active: var(--color-brand-content)\n --sd-color-tabs-underline-hover: var(--color-foreground-border)\n --sd-color-tabs-underline-inactive: var(--color-background-border)\n --sd-color-tabs-overline: var(--color-background-border)\n --sd-color-tabs-underline: var(--color-background-border)\n\n// Tabs\n.sd-tab-content\n box-shadow: 0 -2px var(--sd-color-tabs-overline), 0 1px var(--sd-color-tabs-underline)\n\n// Shadows\n.sd-card // Have a shadow by default\n box-shadow: 0 0.1rem 0.25rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1)\n\n.sd-shadow-sm\n box-shadow: 0 0.1rem 0.25rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n.sd-shadow-md\n box-shadow: 0 0.3rem 0.75rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n.sd-shadow-lg\n box-shadow: 0 0.6rem 1.5rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n// Cards\n.sd-card-hover:hover // Don't change scale on hover\n transform: none\n\n.sd-cards-carousel // Have a bit of gap in the carousel by default\n gap: 0.25rem\n padding: 0.25rem\n","// This file contains styles to tweak sphinx-inline-tabs to work well with Furo.\n\nbody\n --tabs--label-text: var(--color-foreground-muted)\n --tabs--label-text--hover: var(--color-foreground-muted)\n --tabs--label-text--active: var(--color-brand-content)\n --tabs--label-text--active--hover: var(--color-brand-content)\n --tabs--label-background: transparent\n --tabs--label-background--hover: transparent\n --tabs--label-background--active: transparent\n --tabs--label-background--active--hover: transparent\n --tabs--padding-x: 0.25em\n --tabs--margin-x: 1em\n --tabs--border: var(--color-background-border)\n --tabs--label-border: transparent\n --tabs--label-border--hover: var(--color-foreground-muted)\n --tabs--label-border--active: var(--color-brand-content)\n --tabs--label-border--active--hover: var(--color-brand-content)\n","// This file contains styles to tweak sphinx-panels to work well with Furo.\n\n// sphinx-panels includes Bootstrap 4, which uses .container which can conflict\n// with docutils' `.. container::` directive.\n[role=\"main\"] .container\n max-width: initial\n padding-left: initial\n padding-right: initial\n\n// Make the panels look nicer!\n.shadow.docutils\n border: none\n box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n// Make panel colors respond to dark mode\n.sphinx-bs .card\n background-color: var(--color-background-secondary)\n color: var(--color-foreground)\n"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"styles/furo-extensions.css","mappings":"AAGA,2BACE,oFACA,4CAKE,6CAHA,YACA,eAEA,CACA,kDACE,yCAEF,8CACE,sCAEJ,8CACE,kDAEJ,2BAGE,uBACA,cAHA,gBACA,UAEA,CAGA,yCACE,mBAEF,gDAEE,gDADA,YACA,CACA,sDACE,gDACF,yDACE,sCAEJ,+CACE,UACA,qDACE,UAGF,mDACE,eAEJ,yEAEE,4DAEA,mHASE,mBAPA,kBAEA,YADA,oBAGA,aADA,gBAIA,CAEA,qIAEE,WADA,UACA,CAEJ,uGACE,aAEF,iUAGE,cAEF,mHACE,aC1EJ,gCACE,mCAEF,0BAEE,mBAUA,8CACA,YAFA,mCAKA,eAZA,cAIA,YADA,YAYA,iCAdA,YAcA,CAEA,gCAEE,8CADA,gCACA,CAEF,gCAGE,6BADA,mCADA,YAEA,CAEF,kCAEE,cADA,oBACA,CACA,wCACE,cAEJ,8BACE,UCzCN,KAEE,6CAA8C,CAC9C,uDAAwD,CACxD,uDAAwD,CAGxD,iCAAsC,CAGtC,+CAAgD,CAChD,uDAAwD,CACxD,uDAAwD,CACxD,oDAAqD,CACrD,6DAA8D,CAC9D,6DAA8D,CAG9D,uDAAwD,CACxD,yDAA0D,CAC1D,4DAA6D,CAC7D,2DAA4D,CAC5D,8DAA+D,CAC/D,iEAAkE,CAClE,uDAAwD,CACxD,wDAAyD,CAG3D,gBACE,qFAGF,SACE,6EAEF,cACE,uFAEF,cACE,uFAEF,cACE,uFAGF,qBACE,eAEF,mBACE,WACA,eChDF,KACE,gDAAiD,CACjD,uDAAwD,CACxD,qDAAsD,CACtD,4DAA6D,CAC7D,oCAAqC,CACrC,2CAA4C,CAC5C,4CAA6C,CAC7C,mDAAoD,CACpD,wBAAyB,CACzB,oBAAqB,CACrB,6CAA8C,CAC9C,gCAAiC,CACjC,yDAA0D,CAC1D,uDAAwD,CACxD,8DAA+D,CCbjE,uBACE,eACA,eACA,gBAGF,iBACE,YACA,+EAGF,iBACE,mDACA","sources":["webpack:///./src/furo/assets/styles/extensions/_readthedocs.sass","webpack:///./src/furo/assets/styles/extensions/_copybutton.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-design.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-inline-tabs.sass","webpack:///./src/furo/assets/styles/extensions/_sphinx-panels.sass"],"sourcesContent":["// This file contains the styles used for tweaking how ReadTheDoc's embedded\n// contents would show up inside the theme.\n\n#furo-sidebar-ad-placement\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)\n .ethical-sidebar\n // Remove the border and box-shadow.\n border: none\n box-shadow: none\n // Manage the background colors.\n background: var(--color-background-secondary)\n &:hover\n background: var(--color-background-hover)\n // Ensure the text is legible.\n a\n color: var(--color-foreground-primary)\n\n .ethical-callout a\n color: var(--color-foreground-secondary) !important\n\n#furo-readthedocs-versions\n position: static\n width: 100%\n background: transparent\n display: block\n\n // Make the background color fit with the theme's aesthetic.\n .rst-versions\n background: rgb(26, 28, 30)\n\n .rst-current-version\n cursor: unset\n background: var(--color-sidebar-item-background)\n &:hover\n background: var(--color-sidebar-item-background)\n .fa-book\n color: var(--color-foreground-primary)\n\n > .rst-other-versions\n padding: 0\n small\n opacity: 1\n\n .injected\n .rst-versions\n position: unset\n\n &:hover,\n &:focus-within\n box-shadow: 0 0 0 1px var(--color-sidebar-background-border)\n\n .rst-current-version\n // Undo the tweaks done in RTD's CSS\n font-size: inherit\n line-height: inherit\n height: auto\n text-align: right\n padding: 12px\n\n // Match the rest of the body\n background: #1a1c1e\n\n .fa-book\n float: left\n color: white\n\n .fa-caret-down\n display: none\n\n .rst-current-version,\n .rst-other-versions,\n .injected\n display: block\n\n > .rst-current-version\n display: none\n",".highlight\n &:hover button.copybtn\n color: var(--color-code-foreground)\n\n button.copybtn\n // Align things correctly\n align-items: center\n\n height: 1.25em\n width: 1.25em\n\n top: 0.625rem // $code-spacing-vertical\n right: 0.5rem\n\n // Make it look better\n color: var(--color-background-item)\n background-color: var(--color-code-background)\n border: none\n\n // Change to cursor to make it obvious that you can click on it\n cursor: pointer\n\n // Transition smoothly, for aesthetics\n transition: color 300ms, opacity 300ms\n\n &:hover\n color: var(--color-brand-content)\n background-color: var(--color-code-background)\n\n &::after\n display: none\n color: var(--color-code-foreground)\n background-color: transparent\n\n &.success\n transition: color 0ms\n color: #22863a\n &::after\n display: block\n\n svg\n padding: 0\n","body\n // Colors\n --sd-color-primary: var(--color-brand-primary)\n --sd-color-primary-highlight: var(--color-brand-content)\n --sd-color-primary-text: var(--color-background-primary)\n\n // Shadows\n --sd-color-shadow: rgba(0, 0, 0, 0.05)\n\n // Cards\n --sd-color-card-border: var(--color-card-border)\n --sd-color-card-border-hover: var(--color-brand-content)\n --sd-color-card-background: var(--color-card-background)\n --sd-color-card-text: var(--color-foreground-primary)\n --sd-color-card-header: var(--color-card-marginals-background)\n --sd-color-card-footer: var(--color-card-marginals-background)\n\n // Tabs\n --sd-color-tabs-label-active: var(--color-brand-content)\n --sd-color-tabs-label-hover: var(--color-foreground-muted)\n --sd-color-tabs-label-inactive: var(--color-foreground-muted)\n --sd-color-tabs-underline-active: var(--color-brand-content)\n --sd-color-tabs-underline-hover: var(--color-foreground-border)\n --sd-color-tabs-underline-inactive: var(--color-background-border)\n --sd-color-tabs-overline: var(--color-background-border)\n --sd-color-tabs-underline: var(--color-background-border)\n\n// Tabs\n.sd-tab-content\n box-shadow: 0 -2px var(--sd-color-tabs-overline), 0 1px var(--sd-color-tabs-underline)\n\n// Shadows\n.sd-card // Have a shadow by default\n box-shadow: 0 0.1rem 0.25rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1)\n\n.sd-shadow-sm\n box-shadow: 0 0.1rem 0.25rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n.sd-shadow-md\n box-shadow: 0 0.3rem 0.75rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n.sd-shadow-lg\n box-shadow: 0 0.6rem 1.5rem var(--sd-color-shadow), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n// Cards\n.sd-card-hover:hover // Don't change scale on hover\n transform: none\n\n.sd-cards-carousel // Have a bit of gap in the carousel by default\n gap: 0.25rem\n padding: 0.25rem\n","// This file contains styles to tweak sphinx-inline-tabs to work well with Furo.\n\nbody\n --tabs--label-text: var(--color-foreground-muted)\n --tabs--label-text--hover: var(--color-foreground-muted)\n --tabs--label-text--active: var(--color-brand-content)\n --tabs--label-text--active--hover: var(--color-brand-content)\n --tabs--label-background: transparent\n --tabs--label-background--hover: transparent\n --tabs--label-background--active: transparent\n --tabs--label-background--active--hover: transparent\n --tabs--padding-x: 0.25em\n --tabs--margin-x: 1em\n --tabs--border: var(--color-background-border)\n --tabs--label-border: transparent\n --tabs--label-border--hover: var(--color-foreground-muted)\n --tabs--label-border--active: var(--color-brand-content)\n --tabs--label-border--active--hover: var(--color-brand-content)\n","// This file contains styles to tweak sphinx-panels to work well with Furo.\n\n// sphinx-panels includes Bootstrap 4, which uses .container which can conflict\n// with docutils' `.. container::` directive.\n[role=\"main\"] .container\n max-width: initial\n padding-left: initial\n padding-right: initial\n\n// Make the panels look nicer!\n.shadow.docutils\n border: none\n box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05), 0 0 0.0625rem rgba(0, 0, 0, 0.1) !important\n\n// Make panel colors respond to dark mode\n.sphinx-bs .card\n background-color: var(--color-background-secondary)\n color: var(--color-foreground)\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/styles/furo.css b/docs/sphinx/_build/html/_static/styles/furo.css index e3d4e57b..05a56b17 100644 --- a/docs/sphinx/_build/html/_static/styles/furo.css +++ b/docs/sphinx/_build/html/_static/styles/furo.css @@ -1,2 +1,2 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@media print{.content-icon-container,.headerlink,.mobile-header,.related-pages{display:none!important}.highlight{border:.1pt solid var(--color-foreground-border)}a,blockquote,dl,ol,pre,table,ul{page-break-inside:avoid}caption,figure,h1,h2,h3,h4,h5,h6,img{page-break-after:avoid;page-break-inside:avoid}dl,ol,ul{page-break-before:avoid}}.visually-hidden{height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;background:var(--color-background-primary);border:0!important;color:var(--color-foreground-primary);white-space:nowrap!important}:-moz-focusring{outline:auto}body{--font-stack:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;--font-stack--monospace:"SFMono-Regular",Menlo,Consolas,Monaco,Liberation Mono,Lucida Console,monospace;--font-stack--headings:var(--font-stack);--font-size--normal:100%;--font-size--small:87.5%;--font-size--small--2:81.25%;--font-size--small--3:75%;--font-size--small--4:62.5%;--sidebar-caption-font-size:var(--font-size--small--2);--sidebar-item-font-size:var(--font-size--small);--sidebar-search-input-font-size:var(--font-size--small);--toc-font-size:var(--font-size--small--3);--toc-font-size--mobile:var(--font-size--normal);--toc-title-font-size:var(--font-size--small--4);--admonition-font-size:0.8125rem;--admonition-title-font-size:0.8125rem;--code-font-size:var(--font-size--small--2);--api-font-size:var(--font-size--small);--header-height:calc(var(--sidebar-item-line-height) + var(--sidebar-item-spacing-vertical)*4);--header-padding:0.5rem;--sidebar-tree-space-above:1.5rem;--sidebar-caption-space-above:1rem;--sidebar-item-line-height:1rem;--sidebar-item-spacing-vertical:0.5rem;--sidebar-item-spacing-horizontal:1rem;--sidebar-item-height:calc(var(--sidebar-item-line-height) + var(--sidebar-item-spacing-vertical)*2);--sidebar-expander-width:var(--sidebar-item-height);--sidebar-search-space-above:0.5rem;--sidebar-search-input-spacing-vertical:0.5rem;--sidebar-search-input-spacing-horizontal:0.5rem;--sidebar-search-input-height:1rem;--sidebar-search-icon-size:var(--sidebar-search-input-height);--toc-title-padding:0.25rem 0;--toc-spacing-vertical:1.5rem;--toc-spacing-horizontal:1.5rem;--toc-item-spacing-vertical:0.4rem;--toc-item-spacing-horizontal:1rem;--icon-search:url('data:image/svg+xml;charset=utf-8,');--icon-pencil:url('data:image/svg+xml;charset=utf-8,');--icon-abstract:url('data:image/svg+xml;charset=utf-8,');--icon-info:url('data:image/svg+xml;charset=utf-8,');--icon-flame:url('data:image/svg+xml;charset=utf-8,');--icon-question:url('data:image/svg+xml;charset=utf-8,');--icon-warning:url('data:image/svg+xml;charset=utf-8,');--icon-failure:url('data:image/svg+xml;charset=utf-8,');--icon-spark:url('data:image/svg+xml;charset=utf-8,');--color-admonition-title--caution:#ff9100;--color-admonition-title-background--caution:rgba(255,145,0,.2);--color-admonition-title--warning:#ff9100;--color-admonition-title-background--warning:rgba(255,145,0,.2);--color-admonition-title--danger:#ff5252;--color-admonition-title-background--danger:rgba(255,82,82,.2);--color-admonition-title--attention:#ff5252;--color-admonition-title-background--attention:rgba(255,82,82,.2);--color-admonition-title--error:#ff5252;--color-admonition-title-background--error:rgba(255,82,82,.2);--color-admonition-title--hint:#00c852;--color-admonition-title-background--hint:rgba(0,200,82,.2);--color-admonition-title--tip:#00c852;--color-admonition-title-background--tip:rgba(0,200,82,.2);--color-admonition-title--important:#00bfa5;--color-admonition-title-background--important:rgba(0,191,165,.2);--color-admonition-title--note:#00b0ff;--color-admonition-title-background--note:rgba(0,176,255,.2);--color-admonition-title--seealso:#448aff;--color-admonition-title-background--seealso:rgba(68,138,255,.2);--color-admonition-title--admonition-todo:grey;--color-admonition-title-background--admonition-todo:hsla(0,0%,50%,.2);--color-admonition-title:#651fff;--color-admonition-title-background:rgba(101,31,255,.2);--icon-admonition-default:var(--icon-abstract);--color-topic-title:#14b8a6;--color-topic-title-background:rgba(20,184,166,.2);--icon-topic-default:var(--icon-pencil);--color-problematic:#b30000;--color-foreground-primary:#000;--color-foreground-secondary:#5a5c63;--color-foreground-muted:#6b6f76;--color-foreground-border:#878787;--color-background-primary:#fff;--color-background-secondary:#f8f9fb;--color-background-hover:#efeff4;--color-background-hover--transparent:#efeff400;--color-background-border:#eeebee;--color-background-item:#ccc;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#0a4bff;--color-brand-content:#2757dd;--color-brand-visited:#872ee0;--color-api-background:var(--color-background-hover--transparent);--color-api-background-hover:var(--color-background-hover);--color-api-overall:var(--color-foreground-secondary);--color-api-name:var(--color-problematic);--color-api-pre-name:var(--color-problematic);--color-api-paren:var(--color-foreground-secondary);--color-api-keyword:var(--color-foreground-primary);--color-api-added:#21632c;--color-api-added-border:#38a84d;--color-api-changed:#046172;--color-api-changed-border:#06a1bc;--color-api-deprecated:#605706;--color-api-deprecated-border:#f0d90f;--color-api-removed:#b30000;--color-api-removed-border:#ff5c5c;--color-highlight-on-target:#ffc;--color-inline-code-background:var(--color-background-secondary);--color-highlighted-background:#def;--color-highlighted-text:var(--color-foreground-primary);--color-guilabel-background:#ddeeff80;--color-guilabel-border:#bedaf580;--color-guilabel-text:var(--color-foreground-primary);--color-admonition-background:transparent;--color-table-header-background:var(--color-background-secondary);--color-table-border:var(--color-background-border);--color-card-border:var(--color-background-secondary);--color-card-background:transparent;--color-card-marginals-background:var(--color-background-secondary);--color-header-background:var(--color-background-primary);--color-header-border:var(--color-background-border);--color-header-text:var(--color-foreground-primary);--color-sidebar-background:var(--color-background-secondary);--color-sidebar-background-border:var(--color-background-border);--color-sidebar-brand-text:var(--color-foreground-primary);--color-sidebar-caption-text:var(--color-foreground-muted);--color-sidebar-link-text:var(--color-foreground-secondary);--color-sidebar-link-text--top-level:var(--color-brand-primary);--color-sidebar-item-background:var(--color-sidebar-background);--color-sidebar-item-background--current:var( --color-sidebar-item-background );--color-sidebar-item-background--hover:linear-gradient(90deg,var(--color-background-hover--transparent) 0%,var(--color-background-hover) var(--sidebar-item-spacing-horizontal),var(--color-background-hover) 100%);--color-sidebar-item-expander-background:transparent;--color-sidebar-item-expander-background--hover:var( --color-background-hover );--color-sidebar-search-text:var(--color-foreground-primary);--color-sidebar-search-background:var(--color-background-secondary);--color-sidebar-search-background--focus:var(--color-background-primary);--color-sidebar-search-border:var(--color-background-border);--color-sidebar-search-icon:var(--color-foreground-muted);--color-toc-background:var(--color-background-primary);--color-toc-title-text:var(--color-foreground-muted);--color-toc-item-text:var(--color-foreground-secondary);--color-toc-item-text--hover:var(--color-foreground-primary);--color-toc-item-text--active:var(--color-brand-primary);--color-content-foreground:var(--color-foreground-primary);--color-content-background:transparent;--color-link:var(--color-brand-content);--color-link-underline:var(--color-background-border);--color-link--hover:var(--color-brand-content);--color-link-underline--hover:var(--color-foreground-border);--color-link--visited:var(--color-brand-visited);--color-link-underline--visited:var(--color-background-border);--color-link--visited--hover:var(--color-brand-visited);--color-link-underline--visited--hover:var(--color-foreground-border)}.only-light{display:block!important}html body .only-dark{display:none!important}@media not print{body[data-theme=dark]{--color-problematic:#ee5151;--color-foreground-primary:#cfd0d0;--color-foreground-secondary:#9ca0a5;--color-foreground-muted:#81868d;--color-foreground-border:#666;--color-background-primary:#131416;--color-background-secondary:#1a1c1e;--color-background-hover:#1e2124;--color-background-hover--transparent:#1e212400;--color-background-border:#303335;--color-background-item:#444;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#3d94ff;--color-brand-content:#5ca5ff;--color-brand-visited:#b27aeb;--color-highlighted-background:#083563;--color-guilabel-background:#08356380;--color-guilabel-border:#13395f80;--color-api-keyword:var(--color-foreground-secondary);--color-highlight-on-target:#330;--color-api-added:#3db854;--color-api-added-border:#267334;--color-api-changed:#09b0ce;--color-api-changed-border:#056d80;--color-api-deprecated:#b1a10b;--color-api-deprecated-border:#6e6407;--color-api-removed:#ff7575;--color-api-removed-border:#b03b3b;--color-admonition-background:#18181a;--color-card-border:var(--color-background-secondary);--color-card-background:#18181a;--color-card-marginals-background:var(--color-background-hover)}html body[data-theme=dark] .only-light{display:none!important}body[data-theme=dark] .only-dark{display:block!important}@media(prefers-color-scheme:dark){body:not([data-theme=light]){--color-problematic:#ee5151;--color-foreground-primary:#cfd0d0;--color-foreground-secondary:#9ca0a5;--color-foreground-muted:#81868d;--color-foreground-border:#666;--color-background-primary:#131416;--color-background-secondary:#1a1c1e;--color-background-hover:#1e2124;--color-background-hover--transparent:#1e212400;--color-background-border:#303335;--color-background-item:#444;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#3d94ff;--color-brand-content:#5ca5ff;--color-brand-visited:#b27aeb;--color-highlighted-background:#083563;--color-guilabel-background:#08356380;--color-guilabel-border:#13395f80;--color-api-keyword:var(--color-foreground-secondary);--color-highlight-on-target:#330;--color-api-added:#3db854;--color-api-added-border:#267334;--color-api-changed:#09b0ce;--color-api-changed-border:#056d80;--color-api-deprecated:#b1a10b;--color-api-deprecated-border:#6e6407;--color-api-removed:#ff7575;--color-api-removed-border:#b03b3b;--color-admonition-background:#18181a;--color-card-border:var(--color-background-secondary);--color-card-background:#18181a;--color-card-marginals-background:var(--color-background-hover)}html body:not([data-theme=light]) .only-light{display:none!important}body:not([data-theme=light]) .only-dark{display:block!important}}}body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-light{display:block}@media(prefers-color-scheme:dark){body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-dark{display:block}body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-light{display:none}}body[data-theme=dark] .theme-toggle svg.theme-icon-when-dark,body[data-theme=light] .theme-toggle svg.theme-icon-when-light{display:block}body{font-family:var(--font-stack)}code,kbd,pre,samp{font-family:var(--font-stack--monospace)}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}article{line-height:1.5}h1,h2,h3,h4,h5,h6{border-radius:.5rem;font-family:var(--font-stack--headings);font-weight:700;line-height:1.25;margin:.5rem -.5rem;padding-left:.5rem;padding-right:.5rem}h1+p,h2+p,h3+p,h4+p,h5+p,h6+p{margin-top:0}h1{font-size:2.5em;margin-bottom:1rem}h1,h2{margin-top:1.75rem}h2{font-size:2em}h3{font-size:1.5em}h4{font-size:1.25em}h5{font-size:1.125em}h6{font-size:1em}small{font-size:80%;opacity:75%}p{margin-bottom:.75rem;margin-top:.5rem}hr.docutils{background-color:var(--color-background-border);border:0;height:1px;margin:2rem 0;padding:0}.centered{text-align:center}a{color:var(--color-link);text-decoration:underline;text-decoration-color:var(--color-link-underline)}a:visited{color:var(--color-link--visited);text-decoration-color:var(--color-link-underline--visited)}a:visited:hover{color:var(--color-link--visited--hover);text-decoration-color:var(--color-link-underline--visited--hover)}a:hover{color:var(--color-link--hover);text-decoration-color:var(--color-link-underline--hover)}a.muted-link{color:inherit}a.muted-link:hover{color:var(--color-link--hover);text-decoration-color:var(--color-link-underline--hover)}a.muted-link:hover:visited{color:var(--color-link--visited--hover);text-decoration-color:var(--color-link-underline--visited--hover)}html{overflow-x:hidden;overflow-y:scroll;scroll-behavior:smooth}.sidebar-scroll,.toc-scroll,article[role=main] *{scrollbar-color:var(--color-foreground-border) transparent;scrollbar-width:thin}.sidebar-scroll::-webkit-scrollbar,.toc-scroll::-webkit-scrollbar,article[role=main] ::-webkit-scrollbar{height:.25rem;width:.25rem}.sidebar-scroll::-webkit-scrollbar-thumb,.toc-scroll::-webkit-scrollbar-thumb,article[role=main] ::-webkit-scrollbar-thumb{background-color:var(--color-foreground-border);border-radius:.125rem}body,html{height:100%}.skip-to-content,body,html{background:var(--color-background-primary);color:var(--color-foreground-primary)}.skip-to-content{border-radius:1rem;left:.25rem;padding:1rem;position:fixed;top:.25rem;transform:translateY(-200%);transition:transform .3s ease-in-out;z-index:40}.skip-to-content:focus-within{transform:translateY(0)}article{background:var(--color-content-background);color:var(--color-content-foreground);overflow-wrap:break-word}.page{display:flex;min-height:100%}.mobile-header{background-color:var(--color-header-background);border-bottom:1px solid var(--color-header-border);color:var(--color-header-text);display:none;height:var(--header-height);width:100%;z-index:10}.mobile-header.scrolled{border-bottom:none;box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2)}.mobile-header .header-center a{color:var(--color-header-text);text-decoration:none}.main{display:flex;flex:1}.sidebar-drawer{background:var(--color-sidebar-background);border-right:1px solid var(--color-sidebar-background-border);box-sizing:border-box;display:flex;justify-content:flex-end;min-width:15em;width:calc(50% - 26em)}.sidebar-container,.toc-drawer{box-sizing:border-box;width:15em}.toc-drawer{background:var(--color-toc-background);padding-right:1rem}.sidebar-sticky,.toc-sticky{display:flex;flex-direction:column;height:min(100%,100vh);height:100vh;position:sticky;top:0}.sidebar-scroll,.toc-scroll{flex-grow:1;flex-shrink:1;overflow:auto;scroll-behavior:smooth}.content{display:flex;flex-direction:column;justify-content:space-between;padding:0 3em;width:46em}.icon{display:inline-block;height:1rem;width:1rem}.icon svg{height:100%;width:100%}.announcement{align-items:center;background-color:var(--color-announcement-background);color:var(--color-announcement-text);display:flex;height:var(--header-height);overflow-x:auto}.announcement+.page{min-height:calc(100% - var(--header-height))}.announcement-content{box-sizing:border-box;min-width:100%;padding:.5rem;text-align:center;white-space:nowrap}.announcement-content a{color:var(--color-announcement-text);text-decoration-color:var(--color-announcement-text)}.announcement-content a:hover{color:var(--color-announcement-text);text-decoration-color:var(--color-link--hover)}.no-js .theme-toggle-container{display:none}.theme-toggle-container{vertical-align:middle}.theme-toggle{background:transparent;border:none;cursor:pointer;padding:0}.theme-toggle svg{color:var(--color-foreground-primary);display:none;height:1.25rem;vertical-align:middle;width:1.25rem}.theme-toggle-header{float:left;padding:1rem .5rem}.nav-overlay-icon,.toc-overlay-icon{cursor:pointer;display:none}.nav-overlay-icon .icon,.toc-overlay-icon .icon{color:var(--color-foreground-secondary);height:1.25rem;width:1.25rem}.nav-overlay-icon,.toc-header-icon{align-items:center;justify-content:center}.toc-content-icon{height:1.5rem;width:1.5rem}.content-icon-container{display:flex;float:right;gap:.5rem;margin-bottom:1rem;margin-left:1rem;margin-top:1.5rem}.content-icon-container .edit-this-page svg,.content-icon-container .view-this-page svg{color:inherit;height:1.25rem;width:1.25rem}.sidebar-toggle{display:none;position:absolute}.sidebar-toggle[name=__toc]{left:20px}.sidebar-toggle:checked{left:40px}.overlay{background-color:rgba(0,0,0,.54);height:0;opacity:0;position:fixed;top:0;transition:width 0ms,height 0ms,opacity .25s ease-out;width:0}.sidebar-overlay{z-index:20}.toc-overlay{z-index:40}.sidebar-drawer{transition:left .25s ease-in-out;z-index:30}.toc-drawer{transition:right .25s ease-in-out;z-index:50}#__navigation:checked~.sidebar-overlay{height:100%;opacity:1;width:100%}#__navigation:checked~.page .sidebar-drawer{left:0;top:0}#__toc:checked~.toc-overlay{height:100%;opacity:1;width:100%}#__toc:checked~.page .toc-drawer{right:0;top:0}.back-to-top{background:var(--color-background-primary);border-radius:1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 1px 0 hsla(220,9%,46%,.502);display:none;font-size:.8125rem;left:0;margin-left:50%;padding:.5rem .75rem .5rem .5rem;position:fixed;text-decoration:none;top:1rem;transform:translateX(-50%);z-index:10}.back-to-top svg{height:1rem;width:1rem;fill:currentColor;display:inline-block}.back-to-top span{margin-left:.25rem}.show-back-to-top .back-to-top{align-items:center;display:flex}@media(min-width:97em){html{font-size:110%}}@media(max-width:82em){.toc-content-icon{display:flex}.toc-drawer{border-left:1px solid var(--color-background-muted);height:100vh;position:fixed;right:-15em;top:0}.toc-tree{border-left:none;font-size:var(--toc-font-size--mobile)}.sidebar-drawer{width:calc(50% - 18.5em)}}@media(max-width:67em){.nav-overlay-icon{display:flex}.sidebar-drawer{height:100vh;left:-15em;position:fixed;top:0;width:15em}.toc-header-icon{display:flex}.theme-toggle-content,.toc-content-icon{display:none}.theme-toggle-header{display:block}.mobile-header{align-items:center;display:flex;justify-content:space-between;position:sticky;top:0}.mobile-header .header-left,.mobile-header .header-right{display:flex;height:var(--header-height);padding:0 var(--header-padding)}.mobile-header .header-left label,.mobile-header .header-right label{height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.nav-overlay-icon .icon,.theme-toggle svg{height:1.25rem;width:1.25rem}:target{scroll-margin-top:calc(var(--header-height) + 2.5rem)}.back-to-top{top:calc(var(--header-height) + .5rem)}.page{flex-direction:column;justify-content:center}.content{margin-left:auto;margin-right:auto}}@media(max-width:52em){.content{overflow-x:auto;width:100%}}@media(max-width:46em){.content{padding:0 1em}article aside.sidebar{float:none;margin:1rem 0;width:100%}}.admonition,.topic{background:var(--color-admonition-background);border-radius:.2rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1);font-size:var(--admonition-font-size);margin:1rem auto;overflow:hidden;padding:0 .5rem .5rem;page-break-inside:avoid}.admonition>:nth-child(2),.topic>:nth-child(2){margin-top:0}.admonition>:last-child,.topic>:last-child{margin-bottom:0}.admonition p.admonition-title,p.topic-title{font-size:var(--admonition-title-font-size);font-weight:500;line-height:1.3;margin:0 -.5rem .5rem;padding:.4rem .5rem .4rem 2rem;position:relative}.admonition p.admonition-title:before,p.topic-title:before{content:"";height:1rem;left:.5rem;position:absolute;width:1rem}p.admonition-title{background-color:var(--color-admonition-title-background)}p.admonition-title:before{background-color:var(--color-admonition-title);-webkit-mask-image:var(--icon-admonition-default);mask-image:var(--icon-admonition-default);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}p.topic-title{background-color:var(--color-topic-title-background)}p.topic-title:before{background-color:var(--color-topic-title);-webkit-mask-image:var(--icon-topic-default);mask-image:var(--icon-topic-default);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.admonition{border-left:.2rem solid var(--color-admonition-title)}.admonition.caution{border-left-color:var(--color-admonition-title--caution)}.admonition.caution>.admonition-title{background-color:var(--color-admonition-title-background--caution)}.admonition.caution>.admonition-title:before{background-color:var(--color-admonition-title--caution);-webkit-mask-image:var(--icon-spark);mask-image:var(--icon-spark)}.admonition.warning{border-left-color:var(--color-admonition-title--warning)}.admonition.warning>.admonition-title{background-color:var(--color-admonition-title-background--warning)}.admonition.warning>.admonition-title:before{background-color:var(--color-admonition-title--warning);-webkit-mask-image:var(--icon-warning);mask-image:var(--icon-warning)}.admonition.danger{border-left-color:var(--color-admonition-title--danger)}.admonition.danger>.admonition-title{background-color:var(--color-admonition-title-background--danger)}.admonition.danger>.admonition-title:before{background-color:var(--color-admonition-title--danger);-webkit-mask-image:var(--icon-spark);mask-image:var(--icon-spark)}.admonition.attention{border-left-color:var(--color-admonition-title--attention)}.admonition.attention>.admonition-title{background-color:var(--color-admonition-title-background--attention)}.admonition.attention>.admonition-title:before{background-color:var(--color-admonition-title--attention);-webkit-mask-image:var(--icon-warning);mask-image:var(--icon-warning)}.admonition.error{border-left-color:var(--color-admonition-title--error)}.admonition.error>.admonition-title{background-color:var(--color-admonition-title-background--error)}.admonition.error>.admonition-title:before{background-color:var(--color-admonition-title--error);-webkit-mask-image:var(--icon-failure);mask-image:var(--icon-failure)}.admonition.hint{border-left-color:var(--color-admonition-title--hint)}.admonition.hint>.admonition-title{background-color:var(--color-admonition-title-background--hint)}.admonition.hint>.admonition-title:before{background-color:var(--color-admonition-title--hint);-webkit-mask-image:var(--icon-question);mask-image:var(--icon-question)}.admonition.tip{border-left-color:var(--color-admonition-title--tip)}.admonition.tip>.admonition-title{background-color:var(--color-admonition-title-background--tip)}.admonition.tip>.admonition-title:before{background-color:var(--color-admonition-title--tip);-webkit-mask-image:var(--icon-info);mask-image:var(--icon-info)}.admonition.important{border-left-color:var(--color-admonition-title--important)}.admonition.important>.admonition-title{background-color:var(--color-admonition-title-background--important)}.admonition.important>.admonition-title:before{background-color:var(--color-admonition-title--important);-webkit-mask-image:var(--icon-flame);mask-image:var(--icon-flame)}.admonition.note{border-left-color:var(--color-admonition-title--note)}.admonition.note>.admonition-title{background-color:var(--color-admonition-title-background--note)}.admonition.note>.admonition-title:before{background-color:var(--color-admonition-title--note);-webkit-mask-image:var(--icon-pencil);mask-image:var(--icon-pencil)}.admonition.seealso{border-left-color:var(--color-admonition-title--seealso)}.admonition.seealso>.admonition-title{background-color:var(--color-admonition-title-background--seealso)}.admonition.seealso>.admonition-title:before{background-color:var(--color-admonition-title--seealso);-webkit-mask-image:var(--icon-info);mask-image:var(--icon-info)}.admonition.admonition-todo{border-left-color:var(--color-admonition-title--admonition-todo)}.admonition.admonition-todo>.admonition-title{background-color:var(--color-admonition-title-background--admonition-todo)}.admonition.admonition-todo>.admonition-title:before{background-color:var(--color-admonition-title--admonition-todo);-webkit-mask-image:var(--icon-pencil);mask-image:var(--icon-pencil)}.admonition-todo>.admonition-title{text-transform:uppercase}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd{margin-left:2rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd>:first-child{margin-top:.125rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list,dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd>:last-child{margin-bottom:.75rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list>dt{font-size:var(--font-size--small);text-transform:uppercase}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd:empty{margin-bottom:.5rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul{margin-left:-1.2rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul>li>p:nth-child(2){margin-top:0}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul>li>p+p:last-child:empty{margin-bottom:0;margin-top:0}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt{color:var(--color-api-overall)}.sig:not(.sig-inline){background:var(--color-api-background);border-radius:.25rem;font-family:var(--font-stack--monospace);font-size:var(--api-font-size);font-weight:700;margin-left:-.25rem;margin-right:-.25rem;padding:.25rem .5rem .25rem 3em;text-indent:-2.5em;transition:background .1s ease-out}.sig:not(.sig-inline):hover{background:var(--color-api-background-hover)}.sig:not(.sig-inline) a.reference .viewcode-link{font-weight:400;width:4.25rem}em.property{font-style:normal}em.property:first-child{color:var(--color-api-keyword)}.sig-name{color:var(--color-api-name)}.sig-prename{color:var(--color-api-pre-name);font-weight:400}.sig-paren{color:var(--color-api-paren)}.sig-param{font-style:normal}div.deprecated,div.versionadded,div.versionchanged,div.versionremoved{border-left:.1875rem solid;border-radius:.125rem;padding-left:.75rem}div.deprecated p,div.versionadded p,div.versionchanged p,div.versionremoved p{margin-bottom:.125rem;margin-top:.125rem}div.versionadded{border-color:var(--color-api-added-border)}div.versionadded .versionmodified{color:var(--color-api-added)}div.versionchanged{border-color:var(--color-api-changed-border)}div.versionchanged .versionmodified{color:var(--color-api-changed)}div.deprecated{border-color:var(--color-api-deprecated-border)}div.deprecated .versionmodified{color:var(--color-api-deprecated)}div.versionremoved{border-color:var(--color-api-removed-border)}div.versionremoved .versionmodified{color:var(--color-api-removed)}.viewcode-back,.viewcode-link{float:right;text-align:right}.line-block{margin-bottom:.75rem;margin-top:.5rem}.line-block .line-block{margin-bottom:0;margin-top:0;padding-left:1rem}.code-block-caption,article p.caption,table>caption{font-size:var(--font-size--small);text-align:center}.toctree-wrapper.compound .caption,.toctree-wrapper.compound :not(.caption)>.caption-text{font-size:var(--font-size--small);margin-bottom:0;text-align:initial;text-transform:uppercase}.toctree-wrapper.compound>ul{margin-bottom:0;margin-top:0}.sig-inline,code.literal{background:var(--color-inline-code-background);border-radius:.2em;font-size:var(--font-size--small--2);padding:.1em .2em}pre.literal-block .sig-inline,pre.literal-block code.literal{font-size:inherit;padding:0}p .sig-inline,p code.literal{border:1px solid var(--color-background-border)}.sig-inline{font-family:var(--font-stack--monospace)}div[class*=" highlight-"],div[class^=highlight-]{display:flex;margin:1em 0}div[class*=" highlight-"] .table-wrapper,div[class^=highlight-] .table-wrapper,pre{margin:0;padding:0}pre{overflow:auto}article[role=main] .highlight pre{line-height:1.5}.highlight pre,pre.literal-block{font-size:var(--code-font-size);padding:.625rem .875rem}pre.literal-block{background-color:var(--color-code-background);border-radius:.2rem;color:var(--color-code-foreground);margin-bottom:1rem;margin-top:1rem}.highlight{border-radius:.2rem;width:100%}.highlight .gp,.highlight span.linenos{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.highlight .hll{display:block;margin-left:-.875rem;margin-right:-.875rem;padding-left:.875rem;padding-right:.875rem}.code-block-caption{background-color:var(--color-code-background);border-bottom:1px solid;border-radius:.25rem;border-bottom-left-radius:0;border-bottom-right-radius:0;border-color:var(--color-background-border);color:var(--color-code-foreground);display:flex;font-weight:300;padding:.625rem .875rem}.code-block-caption+div[class]{margin-top:0}.code-block-caption+div[class] pre{border-top-left-radius:0;border-top-right-radius:0}.highlighttable{display:block;width:100%}.highlighttable tbody{display:block}.highlighttable tr{display:flex}.highlighttable td.linenos{background-color:var(--color-code-background);border-bottom-left-radius:.2rem;border-top-left-radius:.2rem;color:var(--color-code-foreground);padding:.625rem 0 .625rem .875rem}.highlighttable .linenodiv{box-shadow:-.0625rem 0 var(--color-foreground-border) inset;font-size:var(--code-font-size);padding-right:.875rem}.highlighttable td.code{display:block;flex:1;overflow:hidden;padding:0}.highlighttable td.code .highlight{border-bottom-left-radius:0;border-top-left-radius:0}.highlight span.linenos{box-shadow:-.0625rem 0 var(--color-foreground-border) inset;display:inline-block;margin-right:.875rem;padding-left:0;padding-right:.875rem}.footnote-reference{font-size:var(--font-size--small--4);vertical-align:super}dl.footnote.brackets{color:var(--color-foreground-secondary);display:grid;font-size:var(--font-size--small);grid-template-columns:max-content auto}dl.footnote.brackets dt{margin:0}dl.footnote.brackets dt>.fn-backref{margin-left:.25rem}dl.footnote.brackets dt:after{content:":"}dl.footnote.brackets dt .brackets:before{content:"["}dl.footnote.brackets dt .brackets:after{content:"]"}dl.footnote.brackets dd{margin:0;padding:0 1rem}aside.footnote{color:var(--color-foreground-secondary);font-size:var(--font-size--small)}aside.footnote>span,div.citation>span{float:left;font-weight:500;padding-right:.25rem}aside.footnote>:not(span),div.citation>p{margin-left:2rem}img{box-sizing:border-box;height:auto;max-width:100%}article .figure,article figure{border-radius:.2rem;margin:0}article .figure :last-child,article figure :last-child{margin-bottom:0}article .align-left{clear:left;float:left;margin:0 1rem 1rem}article .align-right{clear:right;float:right;margin:0 1rem 1rem}article .align-center,article .align-default{display:block;margin-left:auto;margin-right:auto;text-align:center}article table.align-default{display:table;text-align:initial}.domainindex-jumpbox,.genindex-jumpbox{border-bottom:1px solid var(--color-background-border);border-top:1px solid var(--color-background-border);padding:.25rem}.domainindex-section h2,.genindex-section h2{margin-bottom:.5rem;margin-top:.75rem}.domainindex-section ul,.genindex-section ul{margin-bottom:0;margin-top:0}ol,ul{margin-bottom:1rem;margin-top:1rem;padding-left:1.2rem}ol li>p:first-child,ul li>p:first-child{margin-bottom:.25rem;margin-top:.25rem}ol li>p:last-child,ul li>p:last-child{margin-top:.25rem}ol li>ol,ol li>ul,ul li>ol,ul li>ul{margin-bottom:.5rem;margin-top:.5rem}ol.arabic{list-style:decimal}ol.loweralpha{list-style:lower-alpha}ol.upperalpha{list-style:upper-alpha}ol.lowerroman{list-style:lower-roman}ol.upperroman{list-style:upper-roman}.simple li>ol,.simple li>ul,.toctree-wrapper li>ol,.toctree-wrapper li>ul{margin-bottom:0;margin-top:0}.field-list dt,.option-list dt,dl.footnote dt,dl.glossary dt,dl.simple dt,dl:not([class]) dt{font-weight:500;margin-top:.25rem}.field-list dt+dt,.option-list dt+dt,dl.footnote dt+dt,dl.glossary dt+dt,dl.simple dt+dt,dl:not([class]) dt+dt{margin-top:0}.field-list dt .classifier:before,.option-list dt .classifier:before,dl.footnote dt .classifier:before,dl.glossary dt .classifier:before,dl.simple dt .classifier:before,dl:not([class]) dt .classifier:before{content:":";margin-left:.2rem;margin-right:.2rem}.field-list dd ul,.field-list dd>p:first-child,.option-list dd ul,.option-list dd>p:first-child,dl.footnote dd ul,dl.footnote dd>p:first-child,dl.glossary dd ul,dl.glossary dd>p:first-child,dl.simple dd ul,dl.simple dd>p:first-child,dl:not([class]) dd ul,dl:not([class]) dd>p:first-child{margin-top:.125rem}.field-list dd ul,.option-list dd ul,dl.footnote dd ul,dl.glossary dd ul,dl.simple dd ul,dl:not([class]) dd ul{margin-bottom:.125rem}.math-wrapper{overflow-x:auto;width:100%}div.math{position:relative;text-align:center}div.math .headerlink,div.math:focus .headerlink{display:none}div.math:hover .headerlink{display:inline-block}div.math span.eqno{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);z-index:1}abbr[title]{cursor:help}.problematic{color:var(--color-problematic)}kbd:not(.compound){background-color:var(--color-background-secondary);border:1px solid var(--color-foreground-border);border-radius:.2rem;box-shadow:0 .0625rem 0 rgba(0,0,0,.2),inset 0 0 0 .125rem var(--color-background-primary);color:var(--color-foreground-primary);display:inline-block;font-size:var(--font-size--small--3);margin:0 .2rem;padding:0 .2rem;vertical-align:text-bottom}blockquote{background:var(--color-background-secondary);border-left:4px solid var(--color-background-border);margin-left:0;margin-right:0;padding:.5rem 1rem}blockquote .attribution{font-weight:600;text-align:right}blockquote.highlights,blockquote.pull-quote{font-size:1.25em}blockquote.epigraph,blockquote.pull-quote{border-left-width:0;border-radius:.5rem}blockquote.highlights{background:transparent;border-left-width:0}p .reference img{vertical-align:middle}p.rubric{font-size:1.125em;font-weight:700;line-height:1.25}dd p.rubric{font-size:var(--font-size--small);font-weight:inherit;line-height:inherit;text-transform:uppercase}article .sidebar{background-color:var(--color-background-secondary);border:1px solid var(--color-background-border);border-radius:.2rem;clear:right;float:right;margin-left:1rem;margin-right:0;width:30%}article .sidebar>*{padding-left:1rem;padding-right:1rem}article .sidebar>ol,article .sidebar>ul{padding-left:2.2rem}article .sidebar .sidebar-title{border-bottom:1px solid var(--color-background-border);font-weight:500;margin:0;padding:.5rem 1rem}.table-wrapper{margin-bottom:.5rem;margin-top:1rem;overflow-x:auto;padding:.2rem .2rem .75rem;width:100%}table.docutils{border-collapse:collapse;border-radius:.2rem;border-spacing:0;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1)}table.docutils th{background:var(--color-table-header-background)}table.docutils td,table.docutils th{border-bottom:1px solid var(--color-table-border);border-left:1px solid var(--color-table-border);border-right:1px solid var(--color-table-border);padding:0 .25rem}table.docutils td p,table.docutils th p{margin:.25rem}table.docutils td:first-child,table.docutils th:first-child{border-left:none}table.docutils td:last-child,table.docutils th:last-child{border-right:none}table.docutils td.text-left,table.docutils th.text-left{text-align:left}table.docutils td.text-right,table.docutils th.text-right{text-align:right}table.docutils td.text-center,table.docutils th.text-center{text-align:center}:target{scroll-margin-top:2.5rem}@media(max-width:67em){:target{scroll-margin-top:calc(2.5rem + var(--header-height))}section>span:target{scroll-margin-top:calc(2.8rem + var(--header-height))}}.headerlink{font-weight:100;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-block-caption>.headerlink,dl dt>.headerlink,figcaption p>.headerlink,h1>.headerlink,h2>.headerlink,h3>.headerlink,h4>.headerlink,h5>.headerlink,h6>.headerlink,p.caption>.headerlink,table>caption>.headerlink{margin-left:.5rem;visibility:hidden}.code-block-caption:hover>.headerlink,dl dt:hover>.headerlink,figcaption p:hover>.headerlink,h1:hover>.headerlink,h2:hover>.headerlink,h3:hover>.headerlink,h4:hover>.headerlink,h5:hover>.headerlink,h6:hover>.headerlink,p.caption:hover>.headerlink,table>caption:hover>.headerlink{visibility:visible}.code-block-caption>.toc-backref,dl dt>.toc-backref,figcaption p>.toc-backref,h1>.toc-backref,h2>.toc-backref,h3>.toc-backref,h4>.toc-backref,h5>.toc-backref,h6>.toc-backref,p.caption>.toc-backref,table>caption>.toc-backref{color:inherit;text-decoration-line:none}figure:hover>figcaption>p>.headerlink,table:hover>caption>.headerlink{visibility:visible}:target>h1:first-of-type,:target>h2:first-of-type,:target>h3:first-of-type,:target>h4:first-of-type,:target>h5:first-of-type,:target>h6:first-of-type,span:target~h1:first-of-type,span:target~h2:first-of-type,span:target~h3:first-of-type,span:target~h4:first-of-type,span:target~h5:first-of-type,span:target~h6:first-of-type{background-color:var(--color-highlight-on-target)}:target>h1:first-of-type code.literal,:target>h2:first-of-type code.literal,:target>h3:first-of-type code.literal,:target>h4:first-of-type code.literal,:target>h5:first-of-type code.literal,:target>h6:first-of-type code.literal,span:target~h1:first-of-type code.literal,span:target~h2:first-of-type code.literal,span:target~h3:first-of-type code.literal,span:target~h4:first-of-type code.literal,span:target~h5:first-of-type code.literal,span:target~h6:first-of-type code.literal{background-color:transparent}.literal-block-wrapper:target .code-block-caption,.this-will-duplicate-information-and-it-is-still-useful-here li :target,figure:target,table:target>caption{background-color:var(--color-highlight-on-target)}dt:target{background-color:var(--color-highlight-on-target)!important}.footnote-reference:target,.footnote>dt:target+dd{background-color:var(--color-highlight-on-target)}.guilabel{background-color:var(--color-guilabel-background);border:1px solid var(--color-guilabel-border);border-radius:.5em;color:var(--color-guilabel-text);font-size:.9em;padding:0 .3em}footer{display:flex;flex-direction:column;font-size:var(--font-size--small);margin-top:2rem}.bottom-of-page{align-items:center;border-top:1px solid var(--color-background-border);color:var(--color-foreground-secondary);display:flex;justify-content:space-between;line-height:1.5;margin-top:1rem;padding-bottom:1rem;padding-top:1rem}@media(max-width:46em){.bottom-of-page{flex-direction:column-reverse;gap:.25rem;text-align:center}}.bottom-of-page .left-details{font-size:var(--font-size--small)}.bottom-of-page .right-details{display:flex;flex-direction:column;gap:.25rem;text-align:right}.bottom-of-page .icons{display:flex;font-size:1rem;gap:.25rem;justify-content:flex-end}.bottom-of-page .icons a{text-decoration:none}.bottom-of-page .icons img,.bottom-of-page .icons svg{font-size:1.125rem;height:1em;width:1em}.related-pages a{align-items:center;display:flex;text-decoration:none}.related-pages a:hover .page-info .title{color:var(--color-link);text-decoration:underline;text-decoration-color:var(--color-link-underline)}.related-pages a svg.furo-related-icon,.related-pages a svg.furo-related-icon>use{color:var(--color-foreground-border);flex-shrink:0;height:.75rem;margin:0 .5rem;width:.75rem}.related-pages a.next-page{clear:right;float:right;max-width:50%;text-align:right}.related-pages a.prev-page{clear:left;float:left;max-width:50%}.related-pages a.prev-page svg{transform:rotate(180deg)}.page-info{display:flex;flex-direction:column;overflow-wrap:anywhere}.next-page .page-info{align-items:flex-end}.page-info .context{align-items:center;color:var(--color-foreground-muted);display:flex;font-size:var(--font-size--small);padding-bottom:.1rem;text-decoration:none}ul.search{list-style:none;padding-left:0}ul.search li{border-bottom:1px solid var(--color-background-border);padding:1rem 0}[role=main] .highlighted{background-color:var(--color-highlighted-background);color:var(--color-highlighted-text)}.sidebar-brand{display:flex;flex-direction:column;flex-shrink:0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-decoration:none}.sidebar-brand-text{color:var(--color-sidebar-brand-text);font-size:1.5rem;overflow-wrap:break-word}.sidebar-brand-text,.sidebar-logo-container{margin:var(--sidebar-item-spacing-vertical) 0}.sidebar-logo{display:block;margin:0 auto;max-width:100%}.sidebar-search-container{align-items:center;background:var(--color-sidebar-search-background);display:flex;margin-top:var(--sidebar-search-space-above);position:relative}.sidebar-search-container:focus-within,.sidebar-search-container:hover{background:var(--color-sidebar-search-background--focus)}.sidebar-search-container:before{background-color:var(--color-sidebar-search-icon);content:"";height:var(--sidebar-search-icon-size);left:var(--sidebar-item-spacing-horizontal);-webkit-mask-image:var(--icon-search);mask-image:var(--icon-search);position:absolute;width:var(--sidebar-search-icon-size)}.sidebar-search{background:transparent;border:none;border-bottom:1px solid var(--color-sidebar-search-border);border-top:1px solid var(--color-sidebar-search-border);box-sizing:border-box;color:var(--color-sidebar-search-foreground);padding:var(--sidebar-search-input-spacing-vertical) var(--sidebar-search-input-spacing-horizontal) var(--sidebar-search-input-spacing-vertical) calc(var(--sidebar-item-spacing-horizontal) + var(--sidebar-search-input-spacing-horizontal) + var(--sidebar-search-icon-size));width:100%;z-index:10}.sidebar-search:focus{outline:none}.sidebar-search::-moz-placeholder{font-size:var(--sidebar-search-input-font-size)}.sidebar-search::placeholder{font-size:var(--sidebar-search-input-font-size)}#searchbox .highlight-link{margin:0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal) 0;text-align:center}#searchbox .highlight-link a{color:var(--color-sidebar-search-icon);font-size:var(--font-size--small--2)}.sidebar-tree{font-size:var(--sidebar-item-font-size);margin-bottom:var(--sidebar-item-spacing-vertical);margin-top:var(--sidebar-tree-space-above)}.sidebar-tree ul{display:flex;flex-direction:column;list-style:none;margin-bottom:0;margin-top:0;padding:0}.sidebar-tree li{margin:0;position:relative}.sidebar-tree li>ul{margin-left:var(--sidebar-item-spacing-horizontal)}.sidebar-tree .icon,.sidebar-tree .reference{color:var(--color-sidebar-link-text)}.sidebar-tree .reference{box-sizing:border-box;display:inline-block;height:100%;line-height:var(--sidebar-item-line-height);overflow-wrap:anywhere;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-decoration:none;width:100%}.sidebar-tree .reference:hover{background:var(--color-sidebar-item-background--hover);color:var(--color-sidebar-link-text)}.sidebar-tree .reference.external:after{color:var(--color-sidebar-link-text);content:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23607D8B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M11 7H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-5M10 14 20 4M15 4h5v5'/%3E%3C/svg%3E");margin:0 .25rem;vertical-align:middle}.sidebar-tree .current-page>.reference{font-weight:700}.sidebar-tree label{align-items:center;cursor:pointer;display:flex;height:var(--sidebar-item-height);justify-content:center;position:absolute;right:0;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:var(--sidebar-expander-width)}.sidebar-tree .caption,.sidebar-tree :not(.caption)>.caption-text{color:var(--color-sidebar-caption-text);font-size:var(--sidebar-caption-font-size);font-weight:700;margin:var(--sidebar-caption-space-above) 0 0 0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-transform:uppercase}.sidebar-tree li.has-children>.reference{padding-right:var(--sidebar-expander-width)}.sidebar-tree .toctree-l1>.reference,.sidebar-tree .toctree-l1>label .icon{color:var(--color-sidebar-link-text--top-level)}.sidebar-tree label{background:var(--color-sidebar-item-expander-background)}.sidebar-tree label:hover{background:var(--color-sidebar-item-expander-background--hover)}.sidebar-tree .current>.reference{background:var(--color-sidebar-item-background--current)}.sidebar-tree .current>.reference:hover{background:var(--color-sidebar-item-background--hover)}.toctree-checkbox{display:none;position:absolute}.toctree-checkbox~ul{display:none}.toctree-checkbox~label .icon svg{transform:rotate(90deg)}.toctree-checkbox:checked~ul{display:block}.toctree-checkbox:checked~label .icon svg{transform:rotate(-90deg)}.toc-title-container{padding:var(--toc-title-padding);padding-top:var(--toc-spacing-vertical)}.toc-title{color:var(--color-toc-title-text);font-size:var(--toc-title-font-size);padding-left:var(--toc-spacing-horizontal);text-transform:uppercase}.no-toc{display:none}.toc-tree-container{padding-bottom:var(--toc-spacing-vertical)}.toc-tree{border-left:1px solid var(--color-background-border);font-size:var(--toc-font-size);line-height:1.3;padding-left:calc(var(--toc-spacing-horizontal) - var(--toc-item-spacing-horizontal))}.toc-tree>ul>li:first-child{padding-top:0}.toc-tree>ul>li:first-child>ul{padding-left:0}.toc-tree>ul>li:first-child>a{display:none}.toc-tree ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:var(--toc-item-spacing-horizontal)}.toc-tree li{padding-top:var(--toc-item-spacing-vertical)}.toc-tree li.scroll-current>.reference{color:var(--color-toc-item-text--active);font-weight:700}.toc-tree a.reference{color:var(--color-toc-item-text);overflow-wrap:anywhere;text-decoration:none}.toc-scroll{max-height:100vh;overflow-y:scroll}.contents:not(.this-will-duplicate-information-and-it-is-still-useful-here){background:rgba(255,0,0,.25);color:var(--color-problematic)}.contents:not(.this-will-duplicate-information-and-it-is-still-useful-here):before{content:"ERROR: Adding a table of contents in Furo-based documentation is unnecessary, and does not work well with existing styling. Add a 'this-will-duplicate-information-and-it-is-still-useful-here' class, if you want an escape hatch."}.text-align\:left>p{text-align:left}.text-align\:center>p{text-align:center}.text-align\:right>p{text-align:right} +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@media print{.content-icon-container,.headerlink,.mobile-header,.related-pages{display:none!important}.highlight{border:.1pt solid var(--color-foreground-border)}a,blockquote,dl,ol,p,pre,table,ul{page-break-inside:avoid}caption,figure,h1,h2,h3,h4,h5,h6,img{page-break-after:avoid;page-break-inside:avoid}dl,ol,ul{page-break-before:avoid}}.visually-hidden{height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;background:var(--color-background-primary);border:0!important;color:var(--color-foreground-primary);white-space:nowrap!important}:-moz-focusring{outline:auto}body{--font-stack:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;--font-stack--monospace:"SFMono-Regular",Menlo,Consolas,Monaco,Liberation Mono,Lucida Console,monospace;--font-stack--headings:var(--font-stack);--font-size--normal:100%;--font-size--small:87.5%;--font-size--small--2:81.25%;--font-size--small--3:75%;--font-size--small--4:62.5%;--sidebar-caption-font-size:var(--font-size--small--2);--sidebar-item-font-size:var(--font-size--small);--sidebar-search-input-font-size:var(--font-size--small);--toc-font-size:var(--font-size--small--3);--toc-font-size--mobile:var(--font-size--normal);--toc-title-font-size:var(--font-size--small--4);--admonition-font-size:0.8125rem;--admonition-title-font-size:0.8125rem;--code-font-size:var(--font-size--small--2);--api-font-size:var(--font-size--small);--header-height:calc(var(--sidebar-item-line-height) + var(--sidebar-item-spacing-vertical)*4);--header-padding:0.5rem;--sidebar-tree-space-above:1.5rem;--sidebar-caption-space-above:1rem;--sidebar-item-line-height:1rem;--sidebar-item-spacing-vertical:0.5rem;--sidebar-item-spacing-horizontal:1rem;--sidebar-item-height:calc(var(--sidebar-item-line-height) + var(--sidebar-item-spacing-vertical)*2);--sidebar-expander-width:var(--sidebar-item-height);--sidebar-search-space-above:0.5rem;--sidebar-search-input-spacing-vertical:0.5rem;--sidebar-search-input-spacing-horizontal:0.5rem;--sidebar-search-input-height:1rem;--sidebar-search-icon-size:var(--sidebar-search-input-height);--toc-title-padding:0.25rem 0;--toc-spacing-vertical:1.5rem;--toc-spacing-horizontal:1.5rem;--toc-item-spacing-vertical:0.4rem;--toc-item-spacing-horizontal:1rem;--icon-search:url('data:image/svg+xml;charset=utf-8,');--icon-pencil:url('data:image/svg+xml;charset=utf-8,');--icon-abstract:url('data:image/svg+xml;charset=utf-8,');--icon-info:url('data:image/svg+xml;charset=utf-8,');--icon-flame:url('data:image/svg+xml;charset=utf-8,');--icon-question:url('data:image/svg+xml;charset=utf-8,');--icon-warning:url('data:image/svg+xml;charset=utf-8,');--icon-failure:url('data:image/svg+xml;charset=utf-8,');--icon-spark:url('data:image/svg+xml;charset=utf-8,');--color-admonition-title--caution:#ff9100;--color-admonition-title-background--caution:rgba(255,145,0,.2);--color-admonition-title--warning:#ff9100;--color-admonition-title-background--warning:rgba(255,145,0,.2);--color-admonition-title--danger:#ff5252;--color-admonition-title-background--danger:rgba(255,82,82,.2);--color-admonition-title--attention:#ff5252;--color-admonition-title-background--attention:rgba(255,82,82,.2);--color-admonition-title--error:#ff5252;--color-admonition-title-background--error:rgba(255,82,82,.2);--color-admonition-title--hint:#00c852;--color-admonition-title-background--hint:rgba(0,200,82,.2);--color-admonition-title--tip:#00c852;--color-admonition-title-background--tip:rgba(0,200,82,.2);--color-admonition-title--important:#00bfa5;--color-admonition-title-background--important:rgba(0,191,165,.2);--color-admonition-title--note:#00b0ff;--color-admonition-title-background--note:rgba(0,176,255,.2);--color-admonition-title--seealso:#448aff;--color-admonition-title-background--seealso:rgba(68,138,255,.2);--color-admonition-title--admonition-todo:grey;--color-admonition-title-background--admonition-todo:hsla(0,0%,50%,.2);--color-admonition-title:#651fff;--color-admonition-title-background:rgba(101,31,255,.2);--icon-admonition-default:var(--icon-abstract);--color-topic-title:#14b8a6;--color-topic-title-background:rgba(20,184,166,.2);--icon-topic-default:var(--icon-pencil);--color-problematic:#b30000;--color-foreground-primary:#000;--color-foreground-secondary:#5a5c63;--color-foreground-muted:#6b6f76;--color-foreground-border:#878787;--color-background-primary:#fff;--color-background-secondary:#f8f9fb;--color-background-hover:#efeff4;--color-background-hover--transparent:#efeff400;--color-background-border:#eeebee;--color-background-item:#ccc;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#0a4bff;--color-brand-content:#2757dd;--color-brand-visited:#872ee0;--color-api-background:var(--color-background-hover--transparent);--color-api-background-hover:var(--color-background-hover);--color-api-overall:var(--color-foreground-secondary);--color-api-name:var(--color-problematic);--color-api-pre-name:var(--color-problematic);--color-api-paren:var(--color-foreground-secondary);--color-api-keyword:var(--color-foreground-primary);--color-api-added:#21632c;--color-api-added-border:#38a84d;--color-api-changed:#046172;--color-api-changed-border:#06a1bc;--color-api-deprecated:#605706;--color-api-deprecated-border:#f0d90f;--color-api-removed:#b30000;--color-api-removed-border:#ff5c5c;--color-highlight-on-target:#ffc;--color-inline-code-background:var(--color-background-secondary);--color-highlighted-background:#def;--color-highlighted-text:var(--color-foreground-primary);--color-guilabel-background:#ddeeff80;--color-guilabel-border:#bedaf580;--color-guilabel-text:var(--color-foreground-primary);--color-admonition-background:transparent;--color-table-header-background:var(--color-background-secondary);--color-table-border:var(--color-background-border);--color-card-border:var(--color-background-secondary);--color-card-background:transparent;--color-card-marginals-background:var(--color-background-secondary);--color-header-background:var(--color-background-primary);--color-header-border:var(--color-background-border);--color-header-text:var(--color-foreground-primary);--color-sidebar-background:var(--color-background-secondary);--color-sidebar-background-border:var(--color-background-border);--color-sidebar-brand-text:var(--color-foreground-primary);--color-sidebar-caption-text:var(--color-foreground-muted);--color-sidebar-link-text:var(--color-foreground-secondary);--color-sidebar-link-text--top-level:var(--color-brand-primary);--color-sidebar-item-background:var(--color-sidebar-background);--color-sidebar-item-background--current:var( --color-sidebar-item-background );--color-sidebar-item-background--hover:linear-gradient(90deg,var(--color-background-hover--transparent) 0%,var(--color-background-hover) var(--sidebar-item-spacing-horizontal),var(--color-background-hover) 100%);--color-sidebar-item-expander-background:transparent;--color-sidebar-item-expander-background--hover:var( --color-background-hover );--color-sidebar-search-text:var(--color-foreground-primary);--color-sidebar-search-background:var(--color-background-secondary);--color-sidebar-search-background--focus:var(--color-background-primary);--color-sidebar-search-border:var(--color-background-border);--color-sidebar-search-icon:var(--color-foreground-muted);--color-toc-background:var(--color-background-primary);--color-toc-title-text:var(--color-foreground-muted);--color-toc-item-text:var(--color-foreground-secondary);--color-toc-item-text--hover:var(--color-foreground-primary);--color-toc-item-text--active:var(--color-brand-primary);--color-content-foreground:var(--color-foreground-primary);--color-content-background:transparent;--color-link:var(--color-brand-content);--color-link-underline:var(--color-background-border);--color-link--hover:var(--color-brand-content);--color-link-underline--hover:var(--color-foreground-border);--color-link--visited:var(--color-brand-visited);--color-link-underline--visited:var(--color-background-border);--color-link--visited--hover:var(--color-brand-visited);--color-link-underline--visited--hover:var(--color-foreground-border)}.only-light{display:block!important}html body .only-dark{display:none!important}@media not print{body[data-theme=dark]{--color-problematic:#ee5151;--color-foreground-primary:#cfd0d0;--color-foreground-secondary:#9ca0a5;--color-foreground-muted:#81868d;--color-foreground-border:#666;--color-background-primary:#131416;--color-background-secondary:#1a1c1e;--color-background-hover:#1e2124;--color-background-hover--transparent:#1e212400;--color-background-border:#303335;--color-background-item:#444;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#3d94ff;--color-brand-content:#5ca5ff;--color-brand-visited:#b27aeb;--color-highlighted-background:#083563;--color-guilabel-background:#08356380;--color-guilabel-border:#13395f80;--color-api-keyword:var(--color-foreground-secondary);--color-highlight-on-target:#330;--color-api-added:#3db854;--color-api-added-border:#267334;--color-api-changed:#09b0ce;--color-api-changed-border:#056d80;--color-api-deprecated:#b1a10b;--color-api-deprecated-border:#6e6407;--color-api-removed:#ff7575;--color-api-removed-border:#b03b3b;--color-admonition-background:#18181a;--color-card-border:var(--color-background-secondary);--color-card-background:#18181a;--color-card-marginals-background:var(--color-background-hover)}html body[data-theme=dark] .only-light{display:none!important}body[data-theme=dark] .only-dark{display:block!important}@media(prefers-color-scheme:dark){body:not([data-theme=light]){--color-problematic:#ee5151;--color-foreground-primary:#cfd0d0;--color-foreground-secondary:#9ca0a5;--color-foreground-muted:#81868d;--color-foreground-border:#666;--color-background-primary:#131416;--color-background-secondary:#1a1c1e;--color-background-hover:#1e2124;--color-background-hover--transparent:#1e212400;--color-background-border:#303335;--color-background-item:#444;--color-announcement-background:#000000dd;--color-announcement-text:#eeebee;--color-brand-primary:#3d94ff;--color-brand-content:#5ca5ff;--color-brand-visited:#b27aeb;--color-highlighted-background:#083563;--color-guilabel-background:#08356380;--color-guilabel-border:#13395f80;--color-api-keyword:var(--color-foreground-secondary);--color-highlight-on-target:#330;--color-api-added:#3db854;--color-api-added-border:#267334;--color-api-changed:#09b0ce;--color-api-changed-border:#056d80;--color-api-deprecated:#b1a10b;--color-api-deprecated-border:#6e6407;--color-api-removed:#ff7575;--color-api-removed-border:#b03b3b;--color-admonition-background:#18181a;--color-card-border:var(--color-background-secondary);--color-card-background:#18181a;--color-card-marginals-background:var(--color-background-hover)}html body:not([data-theme=light]) .only-light{display:none!important}body:not([data-theme=light]) .only-dark{display:block!important}}}body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-light{display:block}@media(prefers-color-scheme:dark){body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-dark{display:block}body[data-theme=auto] .theme-toggle svg.theme-icon-when-auto-light{display:none}}body[data-theme=dark] .theme-toggle svg.theme-icon-when-dark,body[data-theme=light] .theme-toggle svg.theme-icon-when-light{display:block}body{font-family:var(--font-stack)}code,kbd,pre,samp{font-family:var(--font-stack--monospace)}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}article{line-height:1.5}h1,h2,h3,h4,h5,h6{border-radius:.5rem;font-family:var(--font-stack--headings);font-weight:700;line-height:1.25;margin:.5rem -.5rem;padding-left:.5rem;padding-right:.5rem}h1+p,h2+p,h3+p,h4+p,h5+p,h6+p{margin-top:0}h1{font-size:2.5em;margin-bottom:1rem}h1,h2{margin-top:1.75rem}h2{font-size:2em}h3{font-size:1.5em}h4{font-size:1.25em}h5{font-size:1.125em}h6{font-size:1em}small{font-size:80%;opacity:75%}p{margin-bottom:.75rem;margin-top:.5rem}hr.docutils{background-color:var(--color-background-border);border:0;height:1px;margin:2rem 0;padding:0}.centered{text-align:center}a{color:var(--color-link);text-decoration:underline;text-decoration-color:var(--color-link-underline)}a:visited{color:var(--color-link--visited);text-decoration-color:var(--color-link-underline--visited)}a:visited:hover{color:var(--color-link--visited--hover);text-decoration-color:var(--color-link-underline--visited--hover)}a:hover{color:var(--color-link--hover);text-decoration-color:var(--color-link-underline--hover)}a.muted-link{color:inherit}a.muted-link:hover{color:var(--color-link--hover);text-decoration-color:var(--color-link-underline--hover)}a.muted-link:hover:visited{color:var(--color-link--visited--hover);text-decoration-color:var(--color-link-underline--visited--hover)}html{overflow-x:hidden;overflow-y:scroll;scroll-behavior:smooth}.sidebar-scroll,.toc-scroll,article[role=main] *{scrollbar-color:var(--color-foreground-border) transparent;scrollbar-width:thin}.sidebar-scroll::-webkit-scrollbar,.toc-scroll::-webkit-scrollbar,article[role=main] ::-webkit-scrollbar{height:.25rem;width:.25rem}.sidebar-scroll::-webkit-scrollbar-thumb,.toc-scroll::-webkit-scrollbar-thumb,article[role=main] ::-webkit-scrollbar-thumb{background-color:var(--color-foreground-border);border-radius:.125rem}body,html{height:100%}.skip-to-content,body,html{background:var(--color-background-primary);color:var(--color-foreground-primary)}.skip-to-content{border-radius:1rem;left:.25rem;padding:1rem;position:fixed;top:.25rem;transform:translateY(-200%);transition:transform .3s ease-in-out;z-index:40}.skip-to-content:focus-within{transform:translateY(0)}article{background:var(--color-content-background);color:var(--color-content-foreground);overflow-wrap:break-word}.page{display:flex;min-height:100%}.mobile-header{background-color:var(--color-header-background);border-bottom:1px solid var(--color-header-border);color:var(--color-header-text);display:none;height:var(--header-height);width:100%;z-index:10}.mobile-header.scrolled{border-bottom:none;box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2)}.mobile-header .header-center a{color:var(--color-header-text);text-decoration:none}.main{display:flex;flex:1}.sidebar-drawer{background:var(--color-sidebar-background);border-right:1px solid var(--color-sidebar-background-border);box-sizing:border-box;display:flex;justify-content:flex-end;min-width:15em;width:calc(50% - 26em)}.sidebar-container,.toc-drawer{box-sizing:border-box;width:15em}.toc-drawer{background:var(--color-toc-background);padding-right:1rem}.sidebar-sticky,.toc-sticky{display:flex;flex-direction:column;height:min(100%,100vh);height:100vh;position:sticky;top:0}.sidebar-scroll,.toc-scroll{flex-grow:1;flex-shrink:1;overflow:auto;scroll-behavior:smooth}.content{display:flex;flex-direction:column;justify-content:space-between;padding:0 3em;width:46em}.icon{display:inline-block;height:1rem;width:1rem}.icon svg{height:100%;width:100%}.announcement{align-items:center;background-color:var(--color-announcement-background);color:var(--color-announcement-text);display:flex;height:var(--header-height);overflow-x:auto}.announcement+.page{min-height:calc(100% - var(--header-height))}.announcement-content{box-sizing:border-box;min-width:100%;padding:.5rem;text-align:center;white-space:nowrap}.announcement-content a{color:var(--color-announcement-text);text-decoration-color:var(--color-announcement-text)}.announcement-content a:hover{color:var(--color-announcement-text);text-decoration-color:var(--color-link--hover)}.no-js .theme-toggle-container{display:none}.theme-toggle-container{display:flex}.theme-toggle{background:transparent;border:none;cursor:pointer;display:flex;padding:0}.theme-toggle svg{color:var(--color-foreground-primary);display:none;height:1.25rem;width:1.25rem}.theme-toggle-header{align-items:center;display:flex;justify-content:center}.nav-overlay-icon,.toc-overlay-icon{cursor:pointer;display:none}.nav-overlay-icon .icon,.toc-overlay-icon .icon{color:var(--color-foreground-secondary);height:1.5rem;width:1.5rem}.nav-overlay-icon,.toc-header-icon{align-items:center;justify-content:center}.toc-content-icon{height:1.5rem;width:1.5rem}.content-icon-container{display:flex;float:right;gap:.5rem;margin-bottom:1rem;margin-left:1rem;margin-top:1.5rem}.content-icon-container .edit-this-page svg,.content-icon-container .view-this-page svg{color:inherit;height:1.25rem;width:1.25rem}.sidebar-toggle{display:none;position:absolute}.sidebar-toggle[name=__toc]{left:20px}.sidebar-toggle:checked{left:40px}.overlay{background-color:rgba(0,0,0,.54);height:0;opacity:0;position:fixed;top:0;transition:width 0ms,height 0ms,opacity .25s ease-out;width:0}.sidebar-overlay{z-index:20}.toc-overlay{z-index:40}.sidebar-drawer{transition:left .25s ease-in-out;z-index:30}.toc-drawer{transition:right .25s ease-in-out;z-index:50}#__navigation:checked~.sidebar-overlay{height:100%;opacity:1;width:100%}#__navigation:checked~.page .sidebar-drawer{left:0;top:0}#__toc:checked~.toc-overlay{height:100%;opacity:1;width:100%}#__toc:checked~.page .toc-drawer{right:0;top:0}.back-to-top{background:var(--color-background-primary);border-radius:1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 1px 0 hsla(220,9%,46%,.502);display:none;font-size:.8125rem;left:0;margin-left:50%;padding:.5rem .75rem .5rem .5rem;position:fixed;text-decoration:none;top:1rem;transform:translateX(-50%);z-index:10}.back-to-top svg{height:1rem;width:1rem;fill:currentColor;display:inline-block}.back-to-top span{margin-left:.25rem}.show-back-to-top .back-to-top{align-items:center;display:flex}@media(min-width:97em){html{font-size:110%}}@media(max-width:82em){.toc-content-icon{display:flex}.toc-drawer{border-left:1px solid var(--color-background-muted);height:100vh;position:fixed;right:-15em;top:0}.toc-tree{border-left:none;font-size:var(--toc-font-size--mobile)}.sidebar-drawer{width:calc(50% - 18.5em)}}@media(max-width:67em){.content{margin-left:auto;margin-right:auto;padding:0 1em}}@media(max-width:63em){.nav-overlay-icon{display:flex}.sidebar-drawer{height:100vh;left:-15em;position:fixed;top:0;width:15em}.theme-toggle-header,.toc-header-icon{display:flex}.theme-toggle-content,.toc-content-icon{display:none}.mobile-header{align-items:center;display:flex;justify-content:space-between;position:sticky;top:0}.mobile-header .header-left,.mobile-header .header-right{display:flex;height:var(--header-height);padding:0 var(--header-padding)}.mobile-header .header-left label,.mobile-header .header-right label{height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.nav-overlay-icon .icon,.theme-toggle svg{height:1.5rem;width:1.5rem}:target{scroll-margin-top:calc(var(--header-height) + 2.5rem)}.back-to-top{top:calc(var(--header-height) + .5rem)}.page{flex-direction:column;justify-content:center}}@media(max-width:48em){.content{overflow-x:auto;width:100%}}@media(max-width:46em){article[role=main] aside.sidebar{float:none;margin:1rem 0;width:100%}}.admonition,.topic{background:var(--color-admonition-background);border-radius:.2rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1);font-size:var(--admonition-font-size);margin:1rem auto;overflow:hidden;padding:0 .5rem .5rem;page-break-inside:avoid}.admonition>:nth-child(2),.topic>:nth-child(2){margin-top:0}.admonition>:last-child,.topic>:last-child{margin-bottom:0}.admonition p.admonition-title,p.topic-title{font-size:var(--admonition-title-font-size);font-weight:500;line-height:1.3;margin:0 -.5rem .5rem;padding:.4rem .5rem .4rem 2rem;position:relative}.admonition p.admonition-title:before,p.topic-title:before{content:"";height:1rem;left:.5rem;position:absolute;width:1rem}p.admonition-title{background-color:var(--color-admonition-title-background)}p.admonition-title:before{background-color:var(--color-admonition-title);-webkit-mask-image:var(--icon-admonition-default);mask-image:var(--icon-admonition-default);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}p.topic-title{background-color:var(--color-topic-title-background)}p.topic-title:before{background-color:var(--color-topic-title);-webkit-mask-image:var(--icon-topic-default);mask-image:var(--icon-topic-default);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.admonition{border-left:.2rem solid var(--color-admonition-title)}.admonition.caution{border-left-color:var(--color-admonition-title--caution)}.admonition.caution>.admonition-title{background-color:var(--color-admonition-title-background--caution)}.admonition.caution>.admonition-title:before{background-color:var(--color-admonition-title--caution);-webkit-mask-image:var(--icon-spark);mask-image:var(--icon-spark)}.admonition.warning{border-left-color:var(--color-admonition-title--warning)}.admonition.warning>.admonition-title{background-color:var(--color-admonition-title-background--warning)}.admonition.warning>.admonition-title:before{background-color:var(--color-admonition-title--warning);-webkit-mask-image:var(--icon-warning);mask-image:var(--icon-warning)}.admonition.danger{border-left-color:var(--color-admonition-title--danger)}.admonition.danger>.admonition-title{background-color:var(--color-admonition-title-background--danger)}.admonition.danger>.admonition-title:before{background-color:var(--color-admonition-title--danger);-webkit-mask-image:var(--icon-spark);mask-image:var(--icon-spark)}.admonition.attention{border-left-color:var(--color-admonition-title--attention)}.admonition.attention>.admonition-title{background-color:var(--color-admonition-title-background--attention)}.admonition.attention>.admonition-title:before{background-color:var(--color-admonition-title--attention);-webkit-mask-image:var(--icon-warning);mask-image:var(--icon-warning)}.admonition.error{border-left-color:var(--color-admonition-title--error)}.admonition.error>.admonition-title{background-color:var(--color-admonition-title-background--error)}.admonition.error>.admonition-title:before{background-color:var(--color-admonition-title--error);-webkit-mask-image:var(--icon-failure);mask-image:var(--icon-failure)}.admonition.hint{border-left-color:var(--color-admonition-title--hint)}.admonition.hint>.admonition-title{background-color:var(--color-admonition-title-background--hint)}.admonition.hint>.admonition-title:before{background-color:var(--color-admonition-title--hint);-webkit-mask-image:var(--icon-question);mask-image:var(--icon-question)}.admonition.tip{border-left-color:var(--color-admonition-title--tip)}.admonition.tip>.admonition-title{background-color:var(--color-admonition-title-background--tip)}.admonition.tip>.admonition-title:before{background-color:var(--color-admonition-title--tip);-webkit-mask-image:var(--icon-info);mask-image:var(--icon-info)}.admonition.important{border-left-color:var(--color-admonition-title--important)}.admonition.important>.admonition-title{background-color:var(--color-admonition-title-background--important)}.admonition.important>.admonition-title:before{background-color:var(--color-admonition-title--important);-webkit-mask-image:var(--icon-flame);mask-image:var(--icon-flame)}.admonition.note{border-left-color:var(--color-admonition-title--note)}.admonition.note>.admonition-title{background-color:var(--color-admonition-title-background--note)}.admonition.note>.admonition-title:before{background-color:var(--color-admonition-title--note);-webkit-mask-image:var(--icon-pencil);mask-image:var(--icon-pencil)}.admonition.seealso{border-left-color:var(--color-admonition-title--seealso)}.admonition.seealso>.admonition-title{background-color:var(--color-admonition-title-background--seealso)}.admonition.seealso>.admonition-title:before{background-color:var(--color-admonition-title--seealso);-webkit-mask-image:var(--icon-info);mask-image:var(--icon-info)}.admonition.admonition-todo{border-left-color:var(--color-admonition-title--admonition-todo)}.admonition.admonition-todo>.admonition-title{background-color:var(--color-admonition-title-background--admonition-todo)}.admonition.admonition-todo>.admonition-title:before{background-color:var(--color-admonition-title--admonition-todo);-webkit-mask-image:var(--icon-pencil);mask-image:var(--icon-pencil)}.admonition-todo>.admonition-title{text-transform:uppercase}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd{margin-left:2rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd>:first-child{margin-top:.125rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list,dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dd>:last-child{margin-bottom:.75rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list>dt{font-size:var(--font-size--small);text-transform:uppercase}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd:empty{margin-bottom:.5rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul{margin-left:-1.2rem}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul>li>p:nth-child(2){margin-top:0}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .field-list dd>ul>li>p+p:last-child:empty{margin-bottom:0;margin-top:0}dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt{color:var(--color-api-overall)}.sig:not(.sig-inline){background:var(--color-api-background);border-radius:.25rem;font-family:var(--font-stack--monospace);font-size:var(--api-font-size);font-weight:700;margin-left:-.25rem;margin-right:-.25rem;padding:.25rem .5rem .25rem 3em;text-indent:-2.5em;transition:background .1s ease-out}.sig:not(.sig-inline):hover{background:var(--color-api-background-hover)}.sig:not(.sig-inline) a.reference .viewcode-link{font-weight:400;width:4.25rem}em.property{font-style:normal}em.property:first-child{color:var(--color-api-keyword)}.sig-name{color:var(--color-api-name)}.sig-prename{color:var(--color-api-pre-name);font-weight:400}.sig-paren{color:var(--color-api-paren)}.sig-param{font-style:normal}div.deprecated,div.versionadded,div.versionchanged,div.versionremoved{border-left:.1875rem solid;border-radius:.125rem;padding-left:.75rem}div.deprecated p,div.versionadded p,div.versionchanged p,div.versionremoved p{margin-bottom:.125rem;margin-top:.125rem}div.versionadded{border-color:var(--color-api-added-border)}div.versionadded .versionmodified{color:var(--color-api-added)}div.versionchanged{border-color:var(--color-api-changed-border)}div.versionchanged .versionmodified{color:var(--color-api-changed)}div.deprecated{border-color:var(--color-api-deprecated-border)}div.deprecated .versionmodified{color:var(--color-api-deprecated)}div.versionremoved{border-color:var(--color-api-removed-border)}div.versionremoved .versionmodified{color:var(--color-api-removed)}.viewcode-back,.viewcode-link{float:right;text-align:right}.line-block{margin-bottom:.75rem;margin-top:.5rem}.line-block .line-block{margin-bottom:0;margin-top:0;padding-left:1rem}.code-block-caption,article p.caption,table>caption{font-size:var(--font-size--small);text-align:center}.toctree-wrapper.compound .caption,.toctree-wrapper.compound :not(.caption)>.caption-text{font-size:var(--font-size--small);margin-bottom:0;text-align:initial;text-transform:uppercase}.toctree-wrapper.compound>ul{margin-bottom:0;margin-top:0}.sig-inline,code.literal{background:var(--color-inline-code-background);border-radius:.2em;font-size:var(--font-size--small--2);padding:.1em .2em}pre.literal-block .sig-inline,pre.literal-block code.literal{font-size:inherit;padding:0}p .sig-inline,p code.literal{border:1px solid var(--color-background-border)}.sig-inline{font-family:var(--font-stack--monospace)}div[class*=" highlight-"],div[class^=highlight-]{display:flex;margin:1em 0}div[class*=" highlight-"] .table-wrapper,div[class^=highlight-] .table-wrapper,pre{margin:0;padding:0}pre{overflow:auto}article[role=main] .highlight pre{line-height:1.5}.highlight pre,pre.literal-block{font-size:var(--code-font-size);padding:.625rem .875rem}pre.literal-block{background-color:var(--color-code-background);border-radius:.2rem;color:var(--color-code-foreground);margin-bottom:1rem;margin-top:1rem}.highlight{border-radius:.2rem;width:100%}.highlight .gp,.highlight span.linenos{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.highlight .hll{display:block;margin-left:-.875rem;margin-right:-.875rem;padding-left:.875rem;padding-right:.875rem}.code-block-caption{background-color:var(--color-code-background);border-bottom:1px solid;border-radius:.25rem;border-bottom-left-radius:0;border-bottom-right-radius:0;border-color:var(--color-background-border);color:var(--color-code-foreground);display:flex;font-weight:300;padding:.625rem .875rem}.code-block-caption+div[class]{margin-top:0}.code-block-caption+div[class] pre{border-top-left-radius:0;border-top-right-radius:0}.highlighttable{display:block;width:100%}.highlighttable tbody{display:block}.highlighttable tr{display:flex}.highlighttable td.linenos{background-color:var(--color-code-background);border-bottom-left-radius:.2rem;border-top-left-radius:.2rem;color:var(--color-code-foreground);padding:.625rem 0 .625rem .875rem}.highlighttable .linenodiv{box-shadow:-.0625rem 0 var(--color-foreground-border) inset;font-size:var(--code-font-size);padding-right:.875rem}.highlighttable td.code{display:block;flex:1;overflow:hidden;padding:0}.highlighttable td.code .highlight{border-bottom-left-radius:0;border-top-left-radius:0}.highlight span.linenos{box-shadow:-.0625rem 0 var(--color-foreground-border) inset;display:inline-block;margin-right:.875rem;padding-left:0;padding-right:.875rem}.footnote-reference{font-size:var(--font-size--small--4);vertical-align:super}dl.footnote.brackets{color:var(--color-foreground-secondary);display:grid;font-size:var(--font-size--small);grid-template-columns:max-content auto}dl.footnote.brackets dt{margin:0}dl.footnote.brackets dt>.fn-backref{margin-left:.25rem}dl.footnote.brackets dt:after{content:":"}dl.footnote.brackets dt .brackets:before{content:"["}dl.footnote.brackets dt .brackets:after{content:"]"}dl.footnote.brackets dd{margin:0;padding:0 1rem}aside.footnote{color:var(--color-foreground-secondary);font-size:var(--font-size--small)}aside.footnote>span,div.citation>span{float:left;font-weight:500;padding-right:.25rem}aside.footnote>:not(span),div.citation>p{margin-left:2rem}img{box-sizing:border-box;height:auto;max-width:100%}article .figure,article figure{border-radius:.2rem;margin:0}article .figure :last-child,article figure :last-child{margin-bottom:0}article .align-left{clear:left;float:left;margin:0 1rem 1rem}article .align-right{clear:right;float:right;margin:0 1rem 1rem}article .align-center,article .align-default{display:block;margin-left:auto;margin-right:auto;text-align:center}article table.align-default{display:table;text-align:initial}.domainindex-jumpbox,.genindex-jumpbox{border-bottom:1px solid var(--color-background-border);border-top:1px solid var(--color-background-border);padding:.25rem}.domainindex-section h2,.genindex-section h2{margin-bottom:.5rem;margin-top:.75rem}.domainindex-section ul,.genindex-section ul{margin-bottom:0;margin-top:0}ol,ul{margin-bottom:1rem;margin-top:1rem;padding-left:1.2rem}ol li>p:first-child,ul li>p:first-child{margin-bottom:.25rem;margin-top:.25rem}ol li>p:last-child,ul li>p:last-child{margin-top:.25rem}ol li>ol,ol li>ul,ul li>ol,ul li>ul{margin-bottom:.5rem;margin-top:.5rem}ol.arabic{list-style:decimal}ol.loweralpha{list-style:lower-alpha}ol.upperalpha{list-style:upper-alpha}ol.lowerroman{list-style:lower-roman}ol.upperroman{list-style:upper-roman}.simple li>ol,.simple li>ul,.toctree-wrapper li>ol,.toctree-wrapper li>ul{margin-bottom:0;margin-top:0}.field-list dt,.option-list dt,dl.footnote dt,dl.glossary dt,dl.simple dt,dl:not([class]) dt{font-weight:500;margin-top:.25rem}.field-list dt+dt,.option-list dt+dt,dl.footnote dt+dt,dl.glossary dt+dt,dl.simple dt+dt,dl:not([class]) dt+dt{margin-top:0}.field-list dt .classifier:before,.option-list dt .classifier:before,dl.footnote dt .classifier:before,dl.glossary dt .classifier:before,dl.simple dt .classifier:before,dl:not([class]) dt .classifier:before{content:":";margin-left:.2rem;margin-right:.2rem}.field-list dd ul,.field-list dd>p:first-child,.option-list dd ul,.option-list dd>p:first-child,dl.footnote dd ul,dl.footnote dd>p:first-child,dl.glossary dd ul,dl.glossary dd>p:first-child,dl.simple dd ul,dl.simple dd>p:first-child,dl:not([class]) dd ul,dl:not([class]) dd>p:first-child{margin-top:.125rem}.field-list dd ul,.option-list dd ul,dl.footnote dd ul,dl.glossary dd ul,dl.simple dd ul,dl:not([class]) dd ul{margin-bottom:.125rem}.math-wrapper{overflow-x:auto;width:100%}div.math{position:relative;text-align:center}div.math .headerlink,div.math:focus .headerlink{display:none}div.math:hover .headerlink{display:inline-block}div.math span.eqno{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);z-index:1}abbr[title]{cursor:help}.problematic{color:var(--color-problematic)}kbd:not(.compound){background-color:var(--color-background-secondary);border:1px solid var(--color-foreground-border);border-radius:.2rem;box-shadow:0 .0625rem 0 rgba(0,0,0,.2),inset 0 0 0 .125rem var(--color-background-primary);color:var(--color-foreground-primary);display:inline-block;font-size:var(--font-size--small--3);margin:0 .2rem;padding:0 .2rem;vertical-align:text-bottom}blockquote{background:var(--color-background-secondary);border-left:4px solid var(--color-background-border);margin-left:0;margin-right:0;padding:.5rem 1rem}blockquote .attribution{font-weight:600;text-align:right}blockquote.highlights,blockquote.pull-quote{font-size:1.25em}blockquote.epigraph,blockquote.pull-quote{border-left-width:0;border-radius:.5rem}blockquote.highlights{background:transparent;border-left-width:0}p .reference img{vertical-align:middle}p.rubric{font-size:1.125em;font-weight:700;line-height:1.25}dd p.rubric{font-size:var(--font-size--small);font-weight:inherit;line-height:inherit;text-transform:uppercase}article .sidebar{background-color:var(--color-background-secondary);border:1px solid var(--color-background-border);border-radius:.2rem;clear:right;float:right;margin-left:1rem;margin-right:0;width:30%}article .sidebar>*{padding-left:1rem;padding-right:1rem}article .sidebar>ol,article .sidebar>ul{padding-left:2.2rem}article .sidebar .sidebar-title{border-bottom:1px solid var(--color-background-border);font-weight:500;margin:0;padding:.5rem 1rem}[role=main] .table-wrapper.container{margin-bottom:.5rem;margin-top:1rem;overflow-x:auto;padding:.2rem .2rem .75rem;width:100%}table.docutils{border-collapse:collapse;border-radius:.2rem;border-spacing:0;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1)}table.docutils th{background:var(--color-table-header-background)}table.docutils td,table.docutils th{border-bottom:1px solid var(--color-table-border);border-left:1px solid var(--color-table-border);border-right:1px solid var(--color-table-border);padding:0 .25rem}table.docutils td p,table.docutils th p{margin:.25rem}table.docutils td:first-child,table.docutils th:first-child{border-left:none}table.docutils td:last-child,table.docutils th:last-child{border-right:none}table.docutils td.text-left,table.docutils th.text-left{text-align:left}table.docutils td.text-right,table.docutils th.text-right{text-align:right}table.docutils td.text-center,table.docutils th.text-center{text-align:center}:target{scroll-margin-top:2.5rem}@media(max-width:67em){:target{scroll-margin-top:calc(2.5rem + var(--header-height))}section>span:target{scroll-margin-top:calc(2.8rem + var(--header-height))}}.headerlink{font-weight:100;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-block-caption>.headerlink,dl dt>.headerlink,figcaption p>.headerlink,h1>.headerlink,h2>.headerlink,h3>.headerlink,h4>.headerlink,h5>.headerlink,h6>.headerlink,p.caption>.headerlink,table>caption>.headerlink{margin-left:.5rem;visibility:hidden}.code-block-caption:hover>.headerlink,dl dt:hover>.headerlink,figcaption p:hover>.headerlink,h1:hover>.headerlink,h2:hover>.headerlink,h3:hover>.headerlink,h4:hover>.headerlink,h5:hover>.headerlink,h6:hover>.headerlink,p.caption:hover>.headerlink,table>caption:hover>.headerlink{visibility:visible}.code-block-caption>.toc-backref,dl dt>.toc-backref,figcaption p>.toc-backref,h1>.toc-backref,h2>.toc-backref,h3>.toc-backref,h4>.toc-backref,h5>.toc-backref,h6>.toc-backref,p.caption>.toc-backref,table>caption>.toc-backref{color:inherit;text-decoration-line:none}figure:hover>figcaption>p>.headerlink,table:hover>caption>.headerlink{visibility:visible}:target>h1:first-of-type,:target>h2:first-of-type,:target>h3:first-of-type,:target>h4:first-of-type,:target>h5:first-of-type,:target>h6:first-of-type,span:target~h1:first-of-type,span:target~h2:first-of-type,span:target~h3:first-of-type,span:target~h4:first-of-type,span:target~h5:first-of-type,span:target~h6:first-of-type{background-color:var(--color-highlight-on-target)}:target>h1:first-of-type code.literal,:target>h2:first-of-type code.literal,:target>h3:first-of-type code.literal,:target>h4:first-of-type code.literal,:target>h5:first-of-type code.literal,:target>h6:first-of-type code.literal,span:target~h1:first-of-type code.literal,span:target~h2:first-of-type code.literal,span:target~h3:first-of-type code.literal,span:target~h4:first-of-type code.literal,span:target~h5:first-of-type code.literal,span:target~h6:first-of-type code.literal{background-color:transparent}.literal-block-wrapper:target .code-block-caption,.this-will-duplicate-information-and-it-is-still-useful-here li :target,figure:target,table:target>caption{background-color:var(--color-highlight-on-target)}dt:target{background-color:var(--color-highlight-on-target)!important}.footnote-reference:target,.footnote>dt:target+dd{background-color:var(--color-highlight-on-target)}.guilabel{background-color:var(--color-guilabel-background);border:1px solid var(--color-guilabel-border);border-radius:.5em;color:var(--color-guilabel-text);font-size:.9em;padding:0 .3em}footer{display:flex;flex-direction:column;font-size:var(--font-size--small);margin-top:2rem}.bottom-of-page{align-items:center;border-top:1px solid var(--color-background-border);color:var(--color-foreground-secondary);display:flex;justify-content:space-between;line-height:1.5;margin-top:1rem;padding-bottom:1rem;padding-top:1rem}@media(max-width:46em){.bottom-of-page{flex-direction:column-reverse;gap:.25rem;text-align:center}}.bottom-of-page .left-details{font-size:var(--font-size--small)}.bottom-of-page .right-details{display:flex;flex-direction:column;gap:.25rem;text-align:right}.bottom-of-page .icons{display:flex;font-size:1rem;gap:.25rem;justify-content:flex-end}.bottom-of-page .icons a{text-decoration:none}.bottom-of-page .icons img,.bottom-of-page .icons svg{font-size:1.125rem;height:1em;width:1em}.related-pages a{align-items:center;display:flex;text-decoration:none}.related-pages a:hover .page-info .title{color:var(--color-link);text-decoration:underline;text-decoration-color:var(--color-link-underline)}.related-pages a svg.furo-related-icon,.related-pages a svg.furo-related-icon>use{color:var(--color-foreground-border);flex-shrink:0;height:.75rem;margin:0 .5rem;width:.75rem}.related-pages a.next-page{clear:right;float:right;max-width:50%;text-align:right}.related-pages a.prev-page{clear:left;float:left;max-width:50%}.related-pages a.prev-page svg{transform:rotate(180deg)}.page-info{display:flex;flex-direction:column;overflow-wrap:anywhere}.next-page .page-info{align-items:flex-end}.page-info .context{align-items:center;color:var(--color-foreground-muted);display:flex;font-size:var(--font-size--small);padding-bottom:.1rem;text-decoration:none}ul.search{list-style:none;padding-left:0}ul.search li{border-bottom:1px solid var(--color-background-border);padding:1rem 0}[role=main] .highlighted{background-color:var(--color-highlighted-background);color:var(--color-highlighted-text)}.sidebar-brand{display:flex;flex-direction:column;flex-shrink:0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-decoration:none}.sidebar-brand-text{color:var(--color-sidebar-brand-text);font-size:1.5rem;overflow-wrap:break-word}.sidebar-brand-text,.sidebar-logo-container{margin:var(--sidebar-item-spacing-vertical) 0}.sidebar-logo{display:block;margin:0 auto;max-width:100%}.sidebar-search-container{align-items:center;background:var(--color-sidebar-search-background);display:flex;margin-top:var(--sidebar-search-space-above);position:relative}.sidebar-search-container:focus-within,.sidebar-search-container:hover{background:var(--color-sidebar-search-background--focus)}.sidebar-search-container:before{background-color:var(--color-sidebar-search-icon);content:"";height:var(--sidebar-search-icon-size);left:var(--sidebar-item-spacing-horizontal);-webkit-mask-image:var(--icon-search);mask-image:var(--icon-search);position:absolute;width:var(--sidebar-search-icon-size)}.sidebar-search{background:transparent;border:none;border-bottom:1px solid var(--color-sidebar-search-border);border-top:1px solid var(--color-sidebar-search-border);box-sizing:border-box;color:var(--color-sidebar-search-foreground);padding:var(--sidebar-search-input-spacing-vertical) var(--sidebar-search-input-spacing-horizontal) var(--sidebar-search-input-spacing-vertical) calc(var(--sidebar-item-spacing-horizontal) + var(--sidebar-search-input-spacing-horizontal) + var(--sidebar-search-icon-size));width:100%;z-index:10}.sidebar-search:focus{outline:none}.sidebar-search::-moz-placeholder{font-size:var(--sidebar-search-input-font-size)}.sidebar-search::placeholder{font-size:var(--sidebar-search-input-font-size)}#searchbox .highlight-link{margin:0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal) 0;text-align:center}#searchbox .highlight-link a{color:var(--color-sidebar-search-icon);font-size:var(--font-size--small--2)}.sidebar-tree{font-size:var(--sidebar-item-font-size);margin-bottom:var(--sidebar-item-spacing-vertical);margin-top:var(--sidebar-tree-space-above)}.sidebar-tree ul{display:flex;flex-direction:column;list-style:none;margin-bottom:0;margin-top:0;padding:0}.sidebar-tree li{margin:0;position:relative}.sidebar-tree li>ul{margin-left:var(--sidebar-item-spacing-horizontal)}.sidebar-tree .icon,.sidebar-tree .reference{color:var(--color-sidebar-link-text)}.sidebar-tree .reference{box-sizing:border-box;display:inline-block;height:100%;line-height:var(--sidebar-item-line-height);overflow-wrap:anywhere;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-decoration:none;width:100%}.sidebar-tree .reference:hover{background:var(--color-sidebar-item-background--hover);color:var(--color-sidebar-link-text)}.sidebar-tree .reference.external:after{color:var(--color-sidebar-link-text);content:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23607D8B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M11 7H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-5M10 14 20 4M15 4h5v5'/%3E%3C/svg%3E");margin:0 .25rem;vertical-align:middle}.sidebar-tree .current-page>.reference{font-weight:700}.sidebar-tree label{align-items:center;cursor:pointer;display:flex;height:var(--sidebar-item-height);justify-content:center;position:absolute;right:0;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:var(--sidebar-expander-width)}.sidebar-tree .caption,.sidebar-tree :not(.caption)>.caption-text{color:var(--color-sidebar-caption-text);font-size:var(--sidebar-caption-font-size);font-weight:700;margin:var(--sidebar-caption-space-above) 0 0 0;padding:var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);text-transform:uppercase}.sidebar-tree li.has-children>.reference{padding-right:var(--sidebar-expander-width)}.sidebar-tree .toctree-l1>.reference,.sidebar-tree .toctree-l1>label .icon{color:var(--color-sidebar-link-text--top-level)}.sidebar-tree label{background:var(--color-sidebar-item-expander-background)}.sidebar-tree label:hover{background:var(--color-sidebar-item-expander-background--hover)}.sidebar-tree .current>.reference{background:var(--color-sidebar-item-background--current)}.sidebar-tree .current>.reference:hover{background:var(--color-sidebar-item-background--hover)}.toctree-checkbox{display:none;position:absolute}.toctree-checkbox~ul{display:none}.toctree-checkbox~label .icon svg{transform:rotate(90deg)}.toctree-checkbox:checked~ul{display:block}.toctree-checkbox:checked~label .icon svg{transform:rotate(-90deg)}.toc-title-container{padding:var(--toc-title-padding);padding-top:var(--toc-spacing-vertical)}.toc-title{color:var(--color-toc-title-text);font-size:var(--toc-title-font-size);padding-left:var(--toc-spacing-horizontal);text-transform:uppercase}.no-toc{display:none}.toc-tree-container{padding-bottom:var(--toc-spacing-vertical)}.toc-tree{border-left:1px solid var(--color-background-border);font-size:var(--toc-font-size);line-height:1.3;padding-left:calc(var(--toc-spacing-horizontal) - var(--toc-item-spacing-horizontal))}.toc-tree>ul>li:first-child{padding-top:0}.toc-tree>ul>li:first-child>ul{padding-left:0}.toc-tree>ul>li:first-child>a{display:none}.toc-tree ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:var(--toc-item-spacing-horizontal)}.toc-tree li{padding-top:var(--toc-item-spacing-vertical)}.toc-tree li.scroll-current>.reference{color:var(--color-toc-item-text--active);font-weight:700}.toc-tree a.reference{color:var(--color-toc-item-text);overflow-wrap:anywhere;text-decoration:none}.toc-scroll{max-height:100vh;overflow-y:scroll}.contents:not(.this-will-duplicate-information-and-it-is-still-useful-here){background:rgba(255,0,0,.25);color:var(--color-problematic)}.contents:not(.this-will-duplicate-information-and-it-is-still-useful-here):before{content:"ERROR: Adding a table of contents in Furo-based documentation is unnecessary, and does not work well with existing styling. Add a 'this-will-duplicate-information-and-it-is-still-useful-here' class, if you want an escape hatch."}.text-align\:left>p{text-align:left}.text-align\:center>p{text-align:center}.text-align\:right>p{text-align:right} /*# sourceMappingURL=furo.css.map*/ \ No newline at end of file diff --git a/docs/sphinx/_build/html/_static/styles/furo.css.map b/docs/sphinx/_build/html/_static/styles/furo.css.map index 6e02d0b1..3ecc3715 100644 --- a/docs/sphinx/_build/html/_static/styles/furo.css.map +++ b/docs/sphinx/_build/html/_static/styles/furo.css.map @@ -1 +1 @@ -{"version":3,"file":"styles/furo.css","mappings":"AAAA,2EAA2E,CAU3E,KACE,gBAAiB,CACjB,6BACF,CASA,KACE,QACF,CAMA,KACE,aACF,CAOA,GACE,aAAc,CACd,cACF,CAUA,GACE,sBAAuB,CACvB,QAAS,CACT,gBACF,CAOA,IACE,+BAAiC,CACjC,aACF,CASA,EACE,4BACF,CAOA,YACE,kBAAmB,CACnB,yBAA0B,CAC1B,gCACF,CAMA,SAEE,kBACF,CAOA,cAGE,+BAAiC,CACjC,aACF,CAeA,QAEE,aAAc,CACd,aAAc,CACd,iBAAkB,CAClB,uBACF,CAEA,IACE,aACF,CAEA,IACE,SACF,CASA,IACE,iBACF,CAUA,sCAKE,mBAAoB,CACpB,cAAe,CACf,gBAAiB,CACjB,QACF,CAOA,aAEE,gBACF,CAOA,cAEE,mBACF,CAMA,gDAIE,yBACF,CAMA,wHAIE,iBAAkB,CAClB,SACF,CAMA,4GAIE,6BACF,CAMA,SACE,0BACF,CASA,OACE,qBAAsB,CACtB,aAAc,CACd,aAAc,CACd,cAAe,CACf,SAAU,CACV,kBACF,CAMA,SACE,uBACF,CAMA,SACE,aACF,CAOA,6BAEE,qBAAsB,CACtB,SACF,CAMA,kFAEE,WACF,CAOA,cACE,4BAA6B,CAC7B,mBACF,CAMA,yCACE,uBACF,CAOA,6BACE,yBAA0B,CAC1B,YACF,CASA,QACE,aACF,CAMA,QACE,iBACF,CAiBA,kBACE,YACF,CCvVA,aAcE,kEACE,uBAOF,WACE,iDAMF,gCACE,wBAEF,qCAEE,uBADA,uBACA,CAEF,SACE,wBAtBA,CCpBJ,iBAGE,qBAEA,sBACA,0BAFA,oBAHA,4BACA,oBAKA,6BAIA,2CAFA,mBACA,sCAFA,4BAGA,CAEF,gBACE,aCTF,KCGE,mHAEA,wGAEA,wCAAyC,CAEzC,wBAAyB,CACzB,wBAAyB,CACzB,4BAA6B,CAC7B,yBAA0B,CAC1B,2BAA4B,CAG5B,sDAAuD,CACvD,gDAAiD,CACjD,wDAAyD,CAGzD,0CAA2C,CAC3C,gDAAiD,CACjD,gDAAiD,CAKjD,gCAAiC,CACjC,sCAAuC,CAGvC,2CAA4C,CAG5C,uCAAwC,CCjCxC,+FAGA,uBAAwB,CAGxB,iCAAkC,CAClC,kCAAmC,CAEnC,+BAAgC,CAChC,sCAAuC,CACvC,sCAAuC,CACvC,qGAIA,mDAAoD,CAEpD,mCAAoC,CACpC,8CAA+C,CAC/C,gDAAiD,CACjD,kCAAmC,CACnC,6DAA8D,CAG9D,6BAA8B,CAC9B,6BAA8B,CAC9B,+BAAgC,CAChC,kCAAmC,CACnC,kCAAmC,CCPjC,+jBCYA,iqCAZF,iaCVA,8KAOA,4SAWA,4SAUA,0CACA,gEAGA,0CAGA,gEAGA,yCACA,+DAIA,4CACA,kEAGA,wCAUA,8DACA,uCAGA,4DACA,sCACA,2DAGA,4CACA,kEACA,uCAGA,6DACA,2GAGA,sHAEA,yFAEA,+CACA,+EAGA,4MAOA,gCACA,sHAIA,kCACA,uEACA,gEACA,4DACA,kEAGA,2DACA,sDACA,0CACA,8CACA,wGAGA,0BACA,iCAGA,+DACA,+BACA,sCACA,+DAEA,kGACA,oCACA,yDACA,sCL7HF,kCAEA,sDAIA,0CK2HE,kEAIA,oDACA,sDAGA,oCACA,oEAEA,0DACA,qDAIA,oDACA,6DAIA,iEAIA,2DAIA,2DAGA,4DACA,gEAIA,gEAEA,gFAEA,oNASA,qDLxKE,gFAGE,4DAIF,oEKkHF,yEAEA,6DAGA,0DAEA,uDACA,qDACA,wDAIA,6DAIA,yDACA,2DAIA,uCAGA,wCACA,sDAGA,+CAGA,6DAEA,iDACA,+DAEA,wDAEA,sEAMA,0DACA,sBACA,mEL9JI,wEAEA,iCACE,+BAMN,wEAGA,iCACE,kFAEA,uEAIF,gEACE,8BAGF,qEMvDA,sCAKA,wFAKA,iCAIA,0BAWA,iCACA,4BACA,mCAGA,+BAEA,sCACA,4BAEA,mCAEA,sCAKA,sDAIA,gCAEA,gEAQF,wCAME,sBACA,kCAKA,uBAEA,gEAIA,2BAIA,mCAEA,qCACA,iCAGE,+BACA,wEAEE,iCACA,kFAGF,6BACA,0CACF,kCAEE,8BACE,8BACA,qEAEE,sCACA,wFCjFN,iCAGF,2DAEE,4BACA,oCAGA,mIAGA,4HACE,gEAMJ,+CAGE,sBACA,yCAEF,uBAEE,sEAKA,gDACA,kEAGA,iFAGE,YAGF,EACA,4HAQF,mBACE,6BACA,mBACA,wCACA,wCACA,2CAIA,eAGA,mBAKE,mBAGA,CAJA,uCACA,iBAFF,gBACE,CAKE,mBACA,mBAGJ,oBAIF,+BAGE,kDACA,OADA,kBAGA,CAFA,gBAEA,mBACA,oBAEA,sCACA,OAGF,cAHE,WAGF,GAEE,oBACA,CAHF,gBAGE,CChHc,YDmHd,+CAIF,SAEE,CAPF,UACE,wBAMA,4BAEA,GAGA,uBACA,CAJA,yBAGA,CACA,iDAKA,2CAGA,2DAQA,iBACA,uCAGA,kEAKE,SAKJ,8BACE,yDACA,2BAEA,oBACA,8BAEA,yDAEE,4BAEJ,uCACE,CACA,iEAGA,CAEA,wCACE,uBACA,kDAEA,0DAEE,CAJF,oBAIE,0GASJ,aAEF,CAFE,YAEF,4HASE,+CACA,sBAGF,sBASE,4BAFF,0CAEE,CARA,qCAwBF,CAhBE,iBAEA,kBACE,aADF,4BACE,WAOF,2BAEF,qCAIA,CAbI,UAaJ,+BACE,uBAEA,SAGA,0CAGE,CANF,qCAGA,CAGE,2DACE,gBAKJ,+CAGF,CAEA,kDAME,CARF,8BAEA,CAQE,YAEA,CAlBI,2BAGJ,CAJI,UACA,CAcJ,UAIA,4GAIF,iCAGE,8BAIA,qBACA,mBACF,QACE,gBAOE,0CAGA,CATF,6DAME,CANF,sBASE,qCAKF,CAEE,cACA,CAHF,sBAGE,gCAEA,qBAOJ,wBACE,sCAIA,mBAEA,6BAKA,kCACA,CAHA,sBAEA,cAJA,eACA,MAIA,2FAIA,UACA,YACA,sBACE,8BAEA,CALF,aACA,WAIE,CACA,0BAEF,aACE,qBAEF,qCAgBA,kBACE,CAhBA,qDASA,qCAEJ,CAGI,YACF,CAJF,2BAGI,CAGA,eACE,CAAF,oBAEA,mEAEA,qBACA,eAGF,CAHE,cAIA,kBADF,kBACE,yBAEJ,oCAGI,qDAIA,+BAMF,oCAEA,+CAEA,gCAIA,YACE,yBAEA,qBACA,eAGA,uBAFA,WAEA,CAHA,cACA,CAEA,4BAIE,qCACA,cAFA,eADA,qBACA,cAEA,mDACE,CACA,oCACA,4EAEN,uCAMA,eACE,kDAIA,mBADF,sBACE,mBAIA,aACA,sCAGA,aADA,WACA,CAMA,UAFF,kBAEE,CAJJ,gBAEE,CAJE,iBAMA,yFAQA,aACA,eEpbJ,cACE,iBACA,YAEA,CAFA,iBAEA,+DAGA,mBAKA,gCAGA,CARA,SAIA,SACA,CALA,0EAIA,CAJA,OAQA,0CACE,UAGF,iDAGF,CAHE,UAGF,8CAEE,CAFF,UAEE,CACA,uCAEA,WACA,WAFA,UAEA,6CAIA,yCACA,WAGA,WAJA,UAIA,gDACE,aASF,0CACE,CAFF,mBAEE,wEACA,CATA,YACA,CAKF,kBACA,CALE,MAGJ,CAII,eACA,CAJF,iCALE,cACA,CAHA,oBACA,CAKJ,SAKI,2BADA,UACA,6BAEJ,WACE,0DACA,kBACE,gCACA,mBADA,YACA,oEACA,2CAMF,mDAII,CAJJ,aADF,cACE,kBAII,kEACA,iBACE,mEACA,6BACE,wBADF,cACE,mCACA,qDANN,kCACE,6BAEE,mBADF,0CACE,CAFF,eACA,MACE,0DACA,wCACE,sGACA,WANN,yBACE,uCACA,CAFF,UAEE,2CACE,0FACA,cACE,kEACA,mEANN,yBACE,4DACA,sBACE,+EAEE,iEACA,qEANN,sCACE,CAGE,iBAHF,gBAGE,qBACE,CAJJ,uBACA,gDACE,wDACA,6DAHF,2CACA,CADA,gBACA,eACE,CAGE,sBANN,8BACE,CAII,iBAFF,4DACA,WACE,YADF,uCACE,6EACA,2BANN,8CACE,kDACA,0CACE,8BACA,yFACE,sBACA,sFALJ,mEACA,sBACE,kEACA,6EACE,uCACA,kEALJ,qGAEE,kEACA,6EACE,uCACA,kEALJ,8CACA,uDACE,sEACA,2EACE,sCACA,iEALJ,mGACA,qCACE,oDACA,0DACE,6GACA,gDAGR,yDCrEA,sEACE,CACA,6GACE,gEACF,iGAIF,wFACE,qDAGA,mGAEE,2CAEF,4FACE,gCACF,wGACE,8DAEE,6FAIA,iJAKN,6GACE,gDAKF,yDACA,qCAGA,6BACA,kBACA,qDAKA,oCAEA,+DAGA,2CAGE,oDAIA,oEAEE,qBAGJ,wDAEE,uCAEF,kEAGA,8CAEA,uDAIF,gEAIE,6BACA,gEAIA,+CACE,0EAIF,sDAEE,+DAGF,sCACA,8BACE,oCAEJ,wBACE,4FAEE,gBAEJ,yGAGI,kBAGJ,CCnHE,2MCFF,oBAGE,wGAKA,iCACE,CADF,wBACE,8GAQA,mBCjBJ,2GAIE,mBACA,6HAMA,YACE,mIAYF,eACA,CAHF,YAGE,4FAGE,8BAKF,uBAkBE,sCACA,CADA,qBAbA,wCAIA,CALF,8BACE,CADF,gBAKE,wCACA,CAOA,kDACA,CACA,kCAKF,6BAGA,4CACE,kDACA,eAGF,cACE,aACA,iBACA,yBACA,8BACA,WAGJ,2BACE,cAGA,+BACA,CAHA,eAGA,wCACA,YACA,iBACA,uEAGA,0BACA,2CAEA,8EAGI,qBACA,CAFF,kBAEE,kBAGN,0CAGE,mCAGA,4BAIA,gEACE,qCACA,8BAEA,gBACA,+CACA,iCAEF,iCAEE,gEACA,qCAGF,8BAEE,+BAIA,yCAEE,qBADA,gBACA,yBAKF,eACA,CAFF,YACE,CACA,iBACA,qDAEA,mDCvIJ,2FAOE,iCACA,CAEA,eACA,CAHA,kBAEA,CAFA,wBAGA,8BACA,eACE,CAFF,YAEE,0BACA,8CAGA,oBACE,oCAGA,kBACE,8DAEA,iBAEN,UACE,8BAIJ,+CAEE,qDAEF,kDAIE,YAEF,CAFE,YAEF,CCpCE,mFADA,kBAKE,CAJF,IAGA,aACE,mCAGA,iDACE,+BAEJ,wBAEE,mBAMA,6CAEF,CAJE,mBAEA,CAEF,kCAGE,CARF,kBACE,CAHA,eAUA,YACA,mBACA,CADA,UACA,wCC9BF,oBDkCE,wBCnCJ,uCACE,+BACA,+DACA,sBAGA,qBCDA,6CAIE,CAPF,uBAGA,CDGE,oBACF,yDAEE,CCDE,2CAGF,CAJA,kCACE,CDJJ,YACE,CAIA,eCTF,CDKE,uBCMA,gCACE,YAEF,oCAEE,wBACA,0BAIF,iBAEA,cADF,UACE,uBAEA,iCAEA,wCAEA,6CAMA,CAYF,gCATI,4BASJ,CAZE,mCAEE,iCAUJ,4BAGE,4DADA,+BACA,CAHF,qBAGE,sCACE,OAEF,iBAHA,SAGA,iHACE,2DAKF,CANA,8EAMA,uSAEE,kBAEF,+FACE,yCCjEJ,WACA,yBAGA,uBACA,gBAEA,uCAIA,CAJA,iCAIA,uCAGA,UACE,gBACA,qBAEA,0CClBJ,gBACE,KAGF,qBACE,YAGF,CAHE,cAGF,gCAEE,mBACA,iEAEA,oCACA,wCAEA,sBACA,WAEA,CAFA,YAEA,8EAEA,mCAFA,iBAEA,6BAIA,wEAKA,sDAIE,CARF,mDAIA,CAIE,cAEF,8CAIA,oBAFE,iBAEF,8CAGE,eAEF,CAFE,YAEF,OAEE,kBAGJ,CAJI,eACA,CAFF,mBAKF,yCCjDE,oBACA,CAFA,iBAEA,uCAKE,iBACA,qCAGA,mBCZJ,CDWI,gBCXJ,6BAEE,eACA,sBAGA,eAEA,sBACA,oDACA,iGAMA,gBAFE,YAEF,8FAME,iJClBF,YACA,gNAUE,6BAEF,oTAcI,kBACF,gHAIA,qBACE,eACF,qDACE,kBACF,6DACE,4BCxCJ,oBAEF,qCAEI,+CAGF,uBACE,uDAGJ,oBAiBI,kDACF,CAhBA,+CAaA,CAbA,oBAaA,0FAEE,CAFF,gGAdA,cACA,iBAaA,0BAGA,mQAIA,oNAEE,iBAGJ,CAHI,gBAFF,gBAKF,8CAYI,CAZJ,wCAYI,sVACE,iCAGA,uEAHA,QAGA,qXAKJ,iDAGF,CARM,+CACE,iDAIN,CALI,gBAQN,mHACE,gBAGF,2DACE,0EAOA,0EAGF,gBAEE,6DC/EA,kDACA,gCACA,qDAGA,qBACA,qDCFA,cACA,eAEA,yBAGF,sBAEE,iBACA,sNAWA,iBACE,kBACA,wRAgBA,kBAEA,iOAgBA,uCACE,uEAEA,kBAEF,qUAuBE,iDAIJ,CACA,geCxFF,4BAEE,CAQA,6JACA,iDAIA,sEAGA,mDAOF,iDAGE,4DAIA,8CACA,qDAEE,eAFF,cAEE,oBAEF,uBAFE,kCAGA,eACA,iBACA,mBAIA,mDACA,CAHA,uCAEA,CAJA,0CACA,CAIA,gBAJA,gBACA,oBADA,gBAIA,wBAEJ,gBAGE,6BACA,YAHA,iBAGA,gCACA,iEAEA,6CACA,sDACA,0BADA,wBACA,0BACA,oIAIA,mBAFA,YAEA,qBACA,0CAIE,uBAEF,CAHA,yBACE,CAEF,iDACE,mFAKJ,oCACE,CANE,aAKJ,CACE,qEAIA,YAFA,WAEA,CAHA,aACA,CAEA,gBACE,4BACA,sBADA,aACA,gCAMF,oCACA,yDACA,2CAEA,qBAGE,kBAEA,CACA,mCAIF,CARE,YACA,CAOF,iCAEE,CAPA,oBACA,CAQA,oBACE,uDAEJ,sDAGA,CAHA,cAGA,0BACE,oDAIA,oCACA,4BACA,sBAGA,cAEA,oFAGA,sBAEA,yDACE,CAIF,iBAJE,wBAIF,6CAHE,6CAKA,eACA,aACA,CADA,cACA,yCAGJ,kBACE,CAKA,iDAEA,CARF,aACE,4CAGA,kBAIA,wEAGA,wDAGA,kCAOA,iDAGA,CAPF,WAEE,sCAEA,CAJF,2CACE,CAMA,qCACA,+BARF,kBACE,qCAOA,iBAsBA,sBACE,CAvBF,WAKA,CACE,0DAIF,CALA,uDACE,CANF,sBAqBA,4CACA,CALA,gRAIA,YAEE,6CAEN,mCAEE,+CASA,6EAIA,4BChNA,SDmNA,qFCnNA,gDACA,sCAGA,qCACA,sDACA,CAKA,kDAGA,CARA,0CAQA,kBAGA,YACA,sBACA,iBAFA,gBADF,YACE,CAHA,SAKA,kBAEA,SAFA,iBAEA,uEAGA,CAEE,6CAFF,oCAgBI,CAdF,yBACE,qBACF,CAGF,oBACE,CAIF,WACE,CALA,2CAGA,uBACF,CACE,mFAGE,CALF,qBAEA,UAGE,gCAIF,sDAEA,CALE,oCAKF,yCC7CJ,oCACE,CD+CA,yXAQE,sCCrDJ,wCAGA,oCACE","sources":["webpack:///./node_modules/normalize.css/normalize.css","webpack:///./src/furo/assets/styles/base/_print.sass","webpack:///./src/furo/assets/styles/base/_screen-readers.sass","webpack:///./src/furo/assets/styles/base/_theme.sass","webpack:///./src/furo/assets/styles/variables/_fonts.scss","webpack:///./src/furo/assets/styles/variables/_spacing.scss","webpack:///./src/furo/assets/styles/variables/_icons.scss","webpack:///./src/furo/assets/styles/variables/_admonitions.scss","webpack:///./src/furo/assets/styles/variables/_colors.scss","webpack:///./src/furo/assets/styles/base/_typography.sass","webpack:///./src/furo/assets/styles/_scaffold.sass","webpack:///./src/furo/assets/styles/variables/_layout.scss","webpack:///./src/furo/assets/styles/content/_admonitions.sass","webpack:///./src/furo/assets/styles/content/_api.sass","webpack:///./src/furo/assets/styles/content/_blocks.sass","webpack:///./src/furo/assets/styles/content/_captions.sass","webpack:///./src/furo/assets/styles/content/_code.sass","webpack:///./src/furo/assets/styles/content/_footnotes.sass","webpack:///./src/furo/assets/styles/content/_images.sass","webpack:///./src/furo/assets/styles/content/_indexes.sass","webpack:///./src/furo/assets/styles/content/_lists.sass","webpack:///./src/furo/assets/styles/content/_math.sass","webpack:///./src/furo/assets/styles/content/_misc.sass","webpack:///./src/furo/assets/styles/content/_rubrics.sass","webpack:///./src/furo/assets/styles/content/_sidebar.sass","webpack:///./src/furo/assets/styles/content/_tables.sass","webpack:///./src/furo/assets/styles/content/_target.sass","webpack:///./src/furo/assets/styles/content/_gui-labels.sass","webpack:///./src/furo/assets/styles/components/_footer.sass","webpack:///./src/furo/assets/styles/components/_sidebar.sass","webpack:///./src/furo/assets/styles/components/_table_of_contents.sass","webpack:///./src/furo/assets/styles/_shame.sass"],"sourcesContent":["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n","// This file contains styles for managing print media.\n\n////////////////////////////////////////////////////////////////////////////////\n// Hide elements not relevant to print media.\n////////////////////////////////////////////////////////////////////////////////\n@media print\n // Hide icon container.\n .content-icon-container\n display: none !important\n\n // Hide showing header links if hovering over when printing.\n .headerlink\n display: none !important\n\n // Hide mobile header.\n .mobile-header\n display: none !important\n\n // Hide navigation links.\n .related-pages\n display: none !important\n\n////////////////////////////////////////////////////////////////////////////////\n// Tweaks related to decolorization.\n////////////////////////////////////////////////////////////////////////////////\n@media print\n // Apply a border around code which no longer have a color background.\n .highlight\n border: 0.1pt solid var(--color-foreground-border)\n\n////////////////////////////////////////////////////////////////////////////////\n// Avoid page break in some relevant cases.\n////////////////////////////////////////////////////////////////////////////////\n@media print\n ul, ol, dl, a, table, pre, blockquote\n page-break-inside: avoid\n\n h1, h2, h3, h4, h5, h6, img, figure, caption\n page-break-inside: avoid\n page-break-after: avoid\n\n ul, ol, dl\n page-break-before: avoid\n",".visually-hidden\n position: absolute !important\n width: 1px !important\n height: 1px !important\n padding: 0 !important\n margin: -1px !important\n overflow: hidden !important\n clip: rect(0,0,0,0) !important\n white-space: nowrap !important\n border: 0 !important\n color: var(--color-foreground-primary)\n background: var(--color-background-primary)\n\n:-moz-focusring\n outline: auto\n","// This file serves as the \"skeleton\" of the theming logic.\n//\n// This contains the bulk of the logic for handling dark mode, color scheme\n// toggling and the handling of color-scheme-specific hiding of elements.\n\nbody\n @include fonts\n @include spacing\n @include icons\n @include admonitions\n @include default-admonition(#651fff, \"abstract\")\n @include default-topic(#14B8A6, \"pencil\")\n\n @include colors\n\n.only-light\n display: block !important\nhtml body .only-dark\n display: none !important\n\n// Ignore dark-mode hints if print media.\n@media not print\n // Enable dark-mode, if requested.\n body[data-theme=\"dark\"]\n @include colors-dark\n\n html & .only-light\n display: none !important\n .only-dark\n display: block !important\n\n // Enable dark mode, unless explicitly told to avoid.\n @media (prefers-color-scheme: dark)\n body:not([data-theme=\"light\"])\n @include colors-dark\n\n html & .only-light\n display: none !important\n .only-dark\n display: block !important\n\n//\n// Theme toggle presentation\n//\nbody[data-theme=\"auto\"]\n .theme-toggle svg.theme-icon-when-auto-light\n display: block\n\n @media (prefers-color-scheme: dark)\n .theme-toggle svg.theme-icon-when-auto-dark\n display: block\n .theme-toggle svg.theme-icon-when-auto-light\n display: none\n\nbody[data-theme=\"dark\"]\n .theme-toggle svg.theme-icon-when-dark\n display: block\n\nbody[data-theme=\"light\"]\n .theme-toggle svg.theme-icon-when-light\n display: block\n","// Fonts used by this theme.\n//\n// There are basically two things here -- using the system font stack and\n// defining sizes for various elements in %ages. We could have also used `em`\n// but %age is easier to reason about for me.\n\n@mixin fonts {\n // These are adapted from https://systemfontstack.com/\n --font-stack: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,\n sans-serif, Apple Color Emoji, Segoe UI Emoji;\n --font-stack--monospace: \"SFMono-Regular\", Menlo, Consolas, Monaco,\n Liberation Mono, Lucida Console, monospace;\n --font-stack--headings: var(--font-stack);\n\n --font-size--normal: 100%;\n --font-size--small: 87.5%;\n --font-size--small--2: 81.25%;\n --font-size--small--3: 75%;\n --font-size--small--4: 62.5%;\n\n // Sidebar\n --sidebar-caption-font-size: var(--font-size--small--2);\n --sidebar-item-font-size: var(--font-size--small);\n --sidebar-search-input-font-size: var(--font-size--small);\n\n // Table of Contents\n --toc-font-size: var(--font-size--small--3);\n --toc-font-size--mobile: var(--font-size--normal);\n --toc-title-font-size: var(--font-size--small--4);\n\n // Admonitions\n //\n // These aren't defined in terms of %ages, since nesting these is permitted.\n --admonition-font-size: 0.8125rem;\n --admonition-title-font-size: 0.8125rem;\n\n // Code\n --code-font-size: var(--font-size--small--2);\n\n // API\n --api-font-size: var(--font-size--small);\n}\n","// Spacing for various elements on the page\n//\n// If the user wants to tweak things in a certain way, they are permitted to.\n// They also have to deal with the consequences though!\n\n@mixin spacing {\n // Header!\n --header-height: calc(\n var(--sidebar-item-line-height) + 4 * #{var(--sidebar-item-spacing-vertical)}\n );\n --header-padding: 0.5rem;\n\n // Sidebar\n --sidebar-tree-space-above: 1.5rem;\n --sidebar-caption-space-above: 1rem;\n\n --sidebar-item-line-height: 1rem;\n --sidebar-item-spacing-vertical: 0.5rem;\n --sidebar-item-spacing-horizontal: 1rem;\n --sidebar-item-height: calc(\n var(--sidebar-item-line-height) + 2 *#{var(--sidebar-item-spacing-vertical)}\n );\n\n --sidebar-expander-width: var(--sidebar-item-height); // be square\n\n --sidebar-search-space-above: 0.5rem;\n --sidebar-search-input-spacing-vertical: 0.5rem;\n --sidebar-search-input-spacing-horizontal: 0.5rem;\n --sidebar-search-input-height: 1rem;\n --sidebar-search-icon-size: var(--sidebar-search-input-height);\n\n // Table of Contents\n --toc-title-padding: 0.25rem 0;\n --toc-spacing-vertical: 1.5rem;\n --toc-spacing-horizontal: 1.5rem;\n --toc-item-spacing-vertical: 0.4rem;\n --toc-item-spacing-horizontal: 1rem;\n}\n","// Expose theme icons as CSS variables.\n\n$icons: (\n // Adapted from tabler-icons\n // url: https://tablericons.com/\n \"search\":\n url('data:image/svg+xml;charset=utf-8,'),\n // Factored out from mkdocs-material on 24-Aug-2020.\n // url: https://squidfunk.github.io/mkdocs-material/reference/admonitions/\n \"pencil\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"abstract\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"info\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"flame\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"question\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"warning\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"failure\":\n url('data:image/svg+xml;charset=utf-8,'),\n \"spark\":\n url('data:image/svg+xml;charset=utf-8,')\n);\n\n@mixin icons {\n @each $name, $glyph in $icons {\n --icon-#{$name}: #{$glyph};\n }\n}\n","// Admonitions\n\n// Structure of these is:\n// admonition-class: color \"icon-name\";\n//\n// The colors are translated into CSS variables below. The icons are\n// used directly in the main declarations to set the `mask-image` in\n// the title.\n\n// prettier-ignore\n$admonitions: (\n // Each of these has an reST directives for it.\n \"caution\": #ff9100 \"spark\",\n \"warning\": #ff9100 \"warning\",\n \"danger\": #ff5252 \"spark\",\n \"attention\": #ff5252 \"warning\",\n \"error\": #ff5252 \"failure\",\n \"hint\": #00c852 \"question\",\n \"tip\": #00c852 \"info\",\n \"important\": #00bfa5 \"flame\",\n \"note\": #00b0ff \"pencil\",\n \"seealso\": #448aff \"info\",\n \"admonition-todo\": #808080 \"pencil\"\n);\n\n@mixin default-admonition($color, $icon-name) {\n --color-admonition-title: #{$color};\n --color-admonition-title-background: #{rgba($color, 0.2)};\n\n --icon-admonition-default: var(--icon-#{$icon-name});\n}\n\n@mixin default-topic($color, $icon-name) {\n --color-topic-title: #{$color};\n --color-topic-title-background: #{rgba($color, 0.2)};\n\n --icon-topic-default: var(--icon-#{$icon-name});\n}\n\n@mixin admonitions {\n @each $name, $values in $admonitions {\n --color-admonition-title--#{$name}: #{nth($values, 1)};\n --color-admonition-title-background--#{$name}: #{rgba(\n nth($values, 1),\n 0.2\n )};\n }\n}\n","// Colors used throughout this theme.\n//\n// The aim is to give the user more control. Thus, instead of hard-coding colors\n// in various parts of the stylesheet, the approach taken is to define all\n// colors as CSS variables and reusing them in all the places.\n//\n// `colors-dark` depends on `colors` being included at a lower specificity.\n\n@mixin colors {\n --color-problematic: #b30000;\n\n // Base Colors\n --color-foreground-primary: black; // for main text and headings\n --color-foreground-secondary: #5a5c63; // for secondary text\n --color-foreground-muted: #6b6f76; // for muted text\n --color-foreground-border: #878787; // for content borders\n\n --color-background-primary: white; // for content\n --color-background-secondary: #f8f9fb; // for navigation + ToC\n --color-background-hover: #efeff4ff; // for navigation-item hover\n --color-background-hover--transparent: #efeff400;\n --color-background-border: #eeebee; // for UI borders\n --color-background-item: #ccc; // for \"background\" items (eg: copybutton)\n\n // Announcements\n --color-announcement-background: #000000dd;\n --color-announcement-text: #eeebee;\n\n // Brand colors\n --color-brand-primary: #0a4bff;\n --color-brand-content: #2757dd;\n --color-brand-visited: #872ee0;\n\n // API documentation\n --color-api-background: var(--color-background-hover--transparent);\n --color-api-background-hover: var(--color-background-hover);\n --color-api-overall: var(--color-foreground-secondary);\n --color-api-name: var(--color-problematic);\n --color-api-pre-name: var(--color-problematic);\n --color-api-paren: var(--color-foreground-secondary);\n --color-api-keyword: var(--color-foreground-primary);\n\n --color-api-added: #21632c;\n --color-api-added-border: #38a84d;\n --color-api-changed: #046172;\n --color-api-changed-border: #06a1bc;\n --color-api-deprecated: #605706;\n --color-api-deprecated-border: #f0d90f;\n --color-api-removed: #b30000;\n --color-api-removed-border: #ff5c5c;\n\n --color-highlight-on-target: #ffffcc;\n\n // Inline code background\n --color-inline-code-background: var(--color-background-secondary);\n\n // Highlighted text (search)\n --color-highlighted-background: #ddeeff;\n --color-highlighted-text: var(--color-foreground-primary);\n\n // GUI Labels\n --color-guilabel-background: #ddeeff80;\n --color-guilabel-border: #bedaf580;\n --color-guilabel-text: var(--color-foreground-primary);\n\n // Admonitions!\n --color-admonition-background: transparent;\n\n //////////////////////////////////////////////////////////////////////////////\n // Everything below this should be one of:\n // - var(...)\n // - *-gradient(...)\n // - special literal values (eg: transparent, none)\n //////////////////////////////////////////////////////////////////////////////\n\n // Tables\n --color-table-header-background: var(--color-background-secondary);\n --color-table-border: var(--color-background-border);\n\n // Cards\n --color-card-border: var(--color-background-secondary);\n --color-card-background: transparent;\n --color-card-marginals-background: var(--color-background-secondary);\n\n // Header\n --color-header-background: var(--color-background-primary);\n --color-header-border: var(--color-background-border);\n --color-header-text: var(--color-foreground-primary);\n\n // Sidebar (left)\n --color-sidebar-background: var(--color-background-secondary);\n --color-sidebar-background-border: var(--color-background-border);\n\n --color-sidebar-brand-text: var(--color-foreground-primary);\n --color-sidebar-caption-text: var(--color-foreground-muted);\n --color-sidebar-link-text: var(--color-foreground-secondary);\n --color-sidebar-link-text--top-level: var(--color-brand-primary);\n\n --color-sidebar-item-background: var(--color-sidebar-background);\n --color-sidebar-item-background--current: var(\n --color-sidebar-item-background\n );\n --color-sidebar-item-background--hover: linear-gradient(\n 90deg,\n var(--color-background-hover--transparent) 0%,\n var(--color-background-hover) var(--sidebar-item-spacing-horizontal),\n var(--color-background-hover) 100%\n );\n\n --color-sidebar-item-expander-background: transparent;\n --color-sidebar-item-expander-background--hover: var(\n --color-background-hover\n );\n\n --color-sidebar-search-text: var(--color-foreground-primary);\n --color-sidebar-search-background: var(--color-background-secondary);\n --color-sidebar-search-background--focus: var(--color-background-primary);\n --color-sidebar-search-border: var(--color-background-border);\n --color-sidebar-search-icon: var(--color-foreground-muted);\n\n // Table of Contents (right)\n --color-toc-background: var(--color-background-primary);\n --color-toc-title-text: var(--color-foreground-muted);\n --color-toc-item-text: var(--color-foreground-secondary);\n --color-toc-item-text--hover: var(--color-foreground-primary);\n --color-toc-item-text--active: var(--color-brand-primary);\n\n // Actual page contents\n --color-content-foreground: var(--color-foreground-primary);\n --color-content-background: transparent;\n\n // Links\n --color-link: var(--color-brand-content);\n --color-link-underline: var(--color-background-border);\n --color-link--hover: var(--color-brand-content);\n --color-link-underline--hover: var(--color-foreground-border);\n\n --color-link--visited: var(--color-brand-visited);\n --color-link-underline--visited: var(--color-background-border);\n --color-link--visited--hover: var(--color-brand-visited);\n --color-link-underline--visited--hover: var(--color-foreground-border);\n}\n\n@mixin colors-dark {\n --color-problematic: #ee5151;\n\n // Base Colors\n --color-foreground-primary: #cfd0d0; // for main text and headings\n --color-foreground-secondary: #9ca0a5; // for secondary text\n --color-foreground-muted: #81868d; // for muted text\n --color-foreground-border: #666666; // for content borders\n\n --color-background-primary: #131416; // for content\n --color-background-secondary: #1a1c1e; // for navigation + ToC\n --color-background-hover: #1e2124ff; // for navigation-item hover\n --color-background-hover--transparent: #1e212400;\n --color-background-border: #303335; // for UI borders\n --color-background-item: #444; // for \"background\" items (eg: copybutton)\n\n // Announcements\n --color-announcement-background: #000000dd;\n --color-announcement-text: #eeebee;\n\n // Brand colors\n --color-brand-primary: #3d94ff;\n --color-brand-content: #5ca5ff;\n --color-brand-visited: #b27aeb;\n\n // Highlighted text (search)\n --color-highlighted-background: #083563;\n\n // GUI Labels\n --color-guilabel-background: #08356380;\n --color-guilabel-border: #13395f80;\n\n // API documentation\n --color-api-keyword: var(--color-foreground-secondary);\n --color-highlight-on-target: #333300;\n\n --color-api-added: #3db854;\n --color-api-added-border: #267334;\n --color-api-changed: #09b0ce;\n --color-api-changed-border: #056d80;\n --color-api-deprecated: #b1a10b;\n --color-api-deprecated-border: #6e6407;\n --color-api-removed: #ff7575;\n --color-api-removed-border: #b03b3b;\n\n // Admonitions\n --color-admonition-background: #18181a;\n\n // Cards\n --color-card-border: var(--color-background-secondary);\n --color-card-background: #18181a;\n --color-card-marginals-background: var(--color-background-hover);\n}\n","// This file contains the styling for making the content throughout the page,\n// including fonts, paragraphs, headings and spacing among these elements.\n\nbody\n font-family: var(--font-stack)\npre,\ncode,\nkbd,\nsamp\n font-family: var(--font-stack--monospace)\n\n// Make fonts look slightly nicer.\nbody\n -webkit-font-smoothing: antialiased\n -moz-osx-font-smoothing: grayscale\n\n// Line height from Bootstrap 4.1\narticle\n line-height: 1.5\n\n//\n// Headings\n//\nh1,\nh2,\nh3,\nh4,\nh5,\nh6\n line-height: 1.25\n font-family: var(--font-stack--headings)\n font-weight: bold\n\n border-radius: 0.5rem\n margin-top: 0.5rem\n margin-bottom: 0.5rem\n margin-left: -0.5rem\n margin-right: -0.5rem\n padding-left: 0.5rem\n padding-right: 0.5rem\n\n + p\n margin-top: 0\n\nh1\n font-size: 2.5em\n margin-top: 1.75rem\n margin-bottom: 1rem\nh2\n font-size: 2em\n margin-top: 1.75rem\nh3\n font-size: 1.5em\nh4\n font-size: 1.25em\nh5\n font-size: 1.125em\nh6\n font-size: 1em\n\nsmall\n opacity: 75%\n font-size: 80%\n\n// Paragraph\np\n margin-top: 0.5rem\n margin-bottom: 0.75rem\n\n// Horizontal rules\nhr.docutils\n height: 1px\n padding: 0\n margin: 2rem 0\n background-color: var(--color-background-border)\n border: 0\n\n.centered\n text-align: center\n\n// Links\na\n text-decoration: underline\n\n color: var(--color-link)\n text-decoration-color: var(--color-link-underline)\n\n &:visited\n color: var(--color-link--visited)\n text-decoration-color: var(--color-link-underline--visited)\n &:hover\n color: var(--color-link--visited--hover)\n text-decoration-color: var(--color-link-underline--visited--hover)\n\n &:hover\n color: var(--color-link--hover)\n text-decoration-color: var(--color-link-underline--hover)\n &.muted-link\n color: inherit\n &:hover\n color: var(--color-link--hover)\n text-decoration-color: var(--color-link-underline--hover)\n &:visited\n color: var(--color-link--visited--hover)\n text-decoration-color: var(--color-link-underline--visited--hover)\n","// This file contains the styles for the overall layouting of the documentation\n// skeleton, including the responsive changes as well as sidebar toggles.\n//\n// This is implemented as a mobile-last design, which isn't ideal, but it is\n// reasonably good-enough and I got pretty tired by the time I'd finished this\n// to move the rules around to fix this. Shouldn't take more than 3-4 hours,\n// if you know what you're doing tho.\n\n// HACK: Not all browsers account for the scrollbar width in media queries.\n// This results in horizontal scrollbars in the breakpoint where we go\n// from displaying everything to hiding the ToC. We accomodate for this by\n// adding a bit of padding to the TOC drawer, disabling the horizontal\n// scrollbar and allowing the scrollbars to cover the padding.\n// https://www.456bereastreet.com/archive/201301/media_query_width_and_vertical_scrollbars/\n\n// HACK: Always having the scrollbar visible, prevents certain browsers from\n// causing the content to stutter horizontally between taller-than-viewport and\n// not-taller-than-viewport pages.\n\n$icon-size: 1.25rem\n\nhtml\n overflow-x: hidden\n overflow-y: scroll\n scroll-behavior: smooth\n\n.sidebar-scroll, .toc-scroll, article[role=main] *\n // Override Firefox scrollbar style\n scrollbar-width: thin\n scrollbar-color: var(--color-foreground-border) transparent\n\n // Override Chrome scrollbar styles\n &::-webkit-scrollbar\n width: 0.25rem\n height: 0.25rem\n &::-webkit-scrollbar-thumb\n background-color: var(--color-foreground-border)\n border-radius: 0.125rem\n\n//\n// Overalls\n//\nhtml,\nbody\n height: 100%\n color: var(--color-foreground-primary)\n background: var(--color-background-primary)\n\n.skip-to-content\n position: fixed\n padding: 1rem\n border-radius: 1rem\n left: 0.25rem\n top: 0.25rem\n z-index: 40\n background: var(--color-background-primary)\n color: var(--color-foreground-primary)\n\n transform: translateY(-200%)\n transition: transform 300ms ease-in-out\n\n &:focus-within\n transform: translateY(0%)\n\narticle\n color: var(--color-content-foreground)\n background: var(--color-content-background)\n overflow-wrap: break-word\n\n.page\n display: flex\n // fill the viewport for pages with little content.\n min-height: 100%\n\n.mobile-header\n width: 100%\n height: var(--header-height)\n background-color: var(--color-header-background)\n color: var(--color-header-text)\n border-bottom: 1px solid var(--color-header-border)\n\n // Looks like sub-script/super-script have this, and we need this to\n // be \"on top\" of those.\n z-index: 10\n\n // We don't show the header on large screens.\n display: none\n\n // Add shadow when scrolled\n &.scrolled\n border-bottom: none\n box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2)\n\n .header-center\n a\n color: var(--color-header-text)\n text-decoration: none\n\n.main\n display: flex\n flex: 1\n\n// Sidebar (left) also covers the entire left portion of screen.\n.sidebar-drawer\n box-sizing: border-box\n\n border-right: 1px solid var(--color-sidebar-background-border)\n background: var(--color-sidebar-background)\n\n display: flex\n justify-content: flex-end\n // These next two lines took me two days to figure out.\n width: calc((100% - #{$full-width}) / 2 + #{$sidebar-width})\n min-width: $sidebar-width\n\n// Scroll-along sidebars\n.sidebar-container,\n.toc-drawer\n box-sizing: border-box\n width: $sidebar-width\n\n.toc-drawer\n background: var(--color-toc-background)\n // See HACK described on top of this document\n padding-right: 1rem\n\n.sidebar-sticky,\n.toc-sticky\n position: sticky\n top: 0\n height: min(100%, 100vh)\n height: 100vh\n\n display: flex\n flex-direction: column\n\n.sidebar-scroll,\n.toc-scroll\n flex-grow: 1\n flex-shrink: 1\n\n overflow: auto\n scroll-behavior: smooth\n\n// Central items.\n.content\n padding: 0 $content-padding\n width: $content-width\n\n display: flex\n flex-direction: column\n justify-content: space-between\n\n.icon\n display: inline-block\n height: 1rem\n width: 1rem\n svg\n width: 100%\n height: 100%\n\n//\n// Accommodate announcement banner\n//\n.announcement\n background-color: var(--color-announcement-background)\n color: var(--color-announcement-text)\n\n height: var(--header-height)\n display: flex\n align-items: center\n overflow-x: auto\n & + .page\n min-height: calc(100% - var(--header-height))\n\n.announcement-content\n box-sizing: border-box\n padding: 0.5rem\n min-width: 100%\n white-space: nowrap\n text-align: center\n\n a\n color: var(--color-announcement-text)\n text-decoration-color: var(--color-announcement-text)\n\n &:hover\n color: var(--color-announcement-text)\n text-decoration-color: var(--color-link--hover)\n\n////////////////////////////////////////////////////////////////////////////////\n// Toggles for theme\n////////////////////////////////////////////////////////////////////////////////\n.no-js .theme-toggle-container // don't show theme toggle if there's no JS\n display: none\n\n.theme-toggle-container\n vertical-align: middle\n\n.theme-toggle\n cursor: pointer\n border: none\n padding: 0\n background: transparent\n\n.theme-toggle svg\n vertical-align: middle\n height: $icon-size\n width: $icon-size\n color: var(--color-foreground-primary)\n display: none\n\n.theme-toggle-header\n float: left\n padding: 1rem 0.5rem\n\n////////////////////////////////////////////////////////////////////////////////\n// Toggles for elements\n////////////////////////////////////////////////////////////////////////////////\n.toc-overlay-icon, .nav-overlay-icon\n display: none\n cursor: pointer\n\n .icon\n color: var(--color-foreground-secondary)\n height: $icon-size\n width: $icon-size\n\n.toc-header-icon, .nav-overlay-icon\n // for when we set display: flex\n justify-content: center\n align-items: center\n\n.toc-content-icon\n height: 1.5rem\n width: 1.5rem\n\n.content-icon-container\n float: right\n display: flex\n margin-top: 1.5rem\n margin-left: 1rem\n margin-bottom: 1rem\n gap: 0.5rem\n\n .edit-this-page, .view-this-page\n svg\n color: inherit\n height: $icon-size\n width: $icon-size\n\n.sidebar-toggle\n position: absolute\n display: none\n// \n.sidebar-toggle[name=\"__toc\"]\n left: 20px\n.sidebar-toggle:checked\n left: 40px\n// \n\n.overlay\n position: fixed\n top: 0\n width: 0\n height: 0\n\n transition: width 0ms, height 0ms, opacity 250ms ease-out\n\n opacity: 0\n background-color: rgba(0, 0, 0, 0.54)\n.sidebar-overlay\n z-index: 20\n.toc-overlay\n z-index: 40\n\n// Keep things on top and smooth.\n.sidebar-drawer\n z-index: 30\n transition: left 250ms ease-in-out\n.toc-drawer\n z-index: 50\n transition: right 250ms ease-in-out\n\n// Show the Sidebar\n#__navigation:checked\n & ~ .sidebar-overlay\n width: 100%\n height: 100%\n opacity: 1\n & ~ .page\n .sidebar-drawer\n top: 0\n left: 0\n // Show the toc sidebar\n#__toc:checked\n & ~ .toc-overlay\n width: 100%\n height: 100%\n opacity: 1\n & ~ .page\n .toc-drawer\n top: 0\n right: 0\n\n////////////////////////////////////////////////////////////////////////////////\n// Back to top\n////////////////////////////////////////////////////////////////////////////////\n.back-to-top\n text-decoration: none\n\n display: none\n position: fixed\n left: 0\n top: 1rem\n padding: 0.5rem\n padding-right: 0.75rem\n border-radius: 1rem\n font-size: 0.8125rem\n\n background: var(--color-background-primary)\n box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05), #6b728080 0px 0px 1px 0px\n\n z-index: 10\n\n margin-left: 50%\n transform: translateX(-50%)\n svg\n height: 1rem\n width: 1rem\n fill: currentColor\n display: inline-block\n\n span\n margin-left: 0.25rem\n\n .show-back-to-top &\n display: flex\n align-items: center\n\n////////////////////////////////////////////////////////////////////////////////\n// Responsive layouting\n////////////////////////////////////////////////////////////////////////////////\n// Make things a bit bigger on bigger screens.\n@media (min-width: $full-width + $sidebar-width)\n html\n font-size: 110%\n\n@media (max-width: $full-width)\n // Collapse \"toc\" into the icon.\n .toc-content-icon\n display: flex\n .toc-drawer\n position: fixed\n height: 100vh\n top: 0\n right: -$sidebar-width\n border-left: 1px solid var(--color-background-muted)\n .toc-tree\n border-left: none\n font-size: var(--toc-font-size--mobile)\n\n // Accomodate for a changed content width.\n .sidebar-drawer\n width: calc((100% - #{$full-width - $sidebar-width}) / 2 + #{$sidebar-width})\n\n@media (max-width: $full-width - $sidebar-width)\n // Collapse \"navigation\".\n .nav-overlay-icon\n display: flex\n .sidebar-drawer\n position: fixed\n height: 100vh\n width: $sidebar-width\n\n top: 0\n left: -$sidebar-width\n\n // Swap which icon is visible.\n .toc-header-icon\n display: flex\n .toc-content-icon, .theme-toggle-content\n display: none\n .theme-toggle-header\n display: block\n\n // Show the header.\n .mobile-header\n position: sticky\n top: 0\n display: flex\n justify-content: space-between\n align-items: center\n\n .header-left,\n .header-right\n display: flex\n height: var(--header-height)\n padding: 0 var(--header-padding)\n label\n height: 100%\n width: 100%\n user-select: none\n\n .nav-overlay-icon .icon,\n .theme-toggle svg\n height: $icon-size\n width: $icon-size\n\n // Add a scroll margin for the content\n :target\n scroll-margin-top: calc(var(--header-height) + 2.5rem)\n\n // Show back-to-top below the header\n .back-to-top\n top: calc(var(--header-height) + 0.5rem)\n\n // Center the page, and accommodate for the header.\n .page\n flex-direction: column\n justify-content: center\n .content\n margin-left: auto\n margin-right: auto\n\n@media (max-width: $content-width + 2* $content-padding)\n // Content should respect window limits.\n .content\n width: 100%\n overflow-x: auto\n\n@media (max-width: $content-width)\n .content\n padding: 0 $content-padding--small\n // Don't float sidebars to the right.\n article aside.sidebar\n float: none\n width: 100%\n margin: 1rem 0\n","// Overall Layout Variables\n//\n// Because CSS variables can't be used in media queries. The fact that this\n// makes the layout non-user-configurable is a good thing.\n$content-padding: 3em;\n$content-padding--small: 1em;\n$content-width: 46em;\n$sidebar-width: 15em;\n$full-width: $content-width + 2 * ($content-padding + $sidebar-width);\n","//\n// The design here is strongly inspired by mkdocs-material.\n.admonition, .topic\n margin: 1rem auto\n padding: 0 0.5rem 0.5rem 0.5rem\n\n background: var(--color-admonition-background)\n\n border-radius: 0.2rem\n box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05), 0 0 0.0625rem rgba(0, 0, 0, 0.1)\n\n font-size: var(--admonition-font-size)\n\n overflow: hidden\n page-break-inside: avoid\n\n // First element should have no margin, since the title has it.\n > :nth-child(2)\n margin-top: 0\n\n // Last item should have no margin, since we'll control that w/ padding\n > :last-child\n margin-bottom: 0\n\n.admonition p.admonition-title,\np.topic-title\n position: relative\n margin: 0 -0.5rem 0.5rem\n padding-left: 2rem\n padding-right: .5rem\n padding-top: .4rem\n padding-bottom: .4rem\n\n font-weight: 500\n font-size: var(--admonition-title-font-size)\n line-height: 1.3\n\n // Our fancy icon\n &::before\n content: \"\"\n position: absolute\n left: 0.5rem\n width: 1rem\n height: 1rem\n\n// Default styles\np.admonition-title\n background-color: var(--color-admonition-title-background)\n &::before\n background-color: var(--color-admonition-title)\n mask-image: var(--icon-admonition-default)\n mask-repeat: no-repeat\n\np.topic-title\n background-color: var(--color-topic-title-background)\n &::before\n background-color: var(--color-topic-title)\n mask-image: var(--icon-topic-default)\n mask-repeat: no-repeat\n\n//\n// Variants\n//\n.admonition\n border-left: 0.2rem solid var(--color-admonition-title)\n\n @each $type, $value in $admonitions\n &.#{$type}\n border-left-color: var(--color-admonition-title--#{$type})\n > .admonition-title\n background-color: var(--color-admonition-title-background--#{$type})\n &::before\n background-color: var(--color-admonition-title--#{$type})\n mask-image: var(--icon-#{nth($value, 2)})\n\n.admonition-todo > .admonition-title\n text-transform: uppercase\n","// This file stylizes the API documentation (stuff generated by autodoc). It's\n// deeply nested due to how autodoc structures the HTML without enough classes\n// to select the relevant items.\n\n// API docs!\ndl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)\n // Tweak the spacing of all the things!\n dd\n margin-left: 2rem\n > :first-child\n margin-top: 0.125rem\n > :last-child\n margin-bottom: 0.75rem\n\n // This is used for the arguments\n .field-list\n margin-bottom: 0.75rem\n\n // \"Headings\" (like \"Parameters\" and \"Return\")\n > dt\n text-transform: uppercase\n font-size: var(--font-size--small)\n\n dd:empty\n margin-bottom: 0.5rem\n dd > ul\n margin-left: -1.2rem\n > li\n > p:nth-child(2)\n margin-top: 0\n // When the last-empty-paragraph follows a paragraph, it doesn't need\n // to augument the existing spacing.\n > p + p:last-child:empty\n margin-top: 0\n margin-bottom: 0\n\n // Colorize the elements\n > dt\n color: var(--color-api-overall)\n\n.sig:not(.sig-inline)\n font-weight: bold\n\n font-size: var(--api-font-size)\n font-family: var(--font-stack--monospace)\n\n margin-left: -0.25rem\n margin-right: -0.25rem\n padding-top: 0.25rem\n padding-bottom: 0.25rem\n padding-right: 0.5rem\n\n // These are intentionally em, to properly match the font size.\n padding-left: 3em\n text-indent: -2.5em\n\n border-radius: 0.25rem\n\n background: var(--color-api-background)\n transition: background 100ms ease-out\n\n &:hover\n background: var(--color-api-background-hover)\n\n // adjust the size of the [source] link on the right.\n a.reference\n .viewcode-link\n font-weight: normal\n width: 4.25rem\n\nem.property\n font-style: normal\n &:first-child\n color: var(--color-api-keyword)\n.sig-name\n color: var(--color-api-name)\n.sig-prename\n font-weight: normal\n color: var(--color-api-pre-name)\n.sig-paren\n color: var(--color-api-paren)\n.sig-param\n font-style: normal\n\ndiv.versionadded,\ndiv.versionchanged,\ndiv.deprecated,\ndiv.versionremoved\n border-left: 0.1875rem solid\n border-radius: 0.125rem\n\n padding-left: 0.75rem\n\n p\n margin-top: 0.125rem\n margin-bottom: 0.125rem\n\ndiv.versionadded\n border-color: var(--color-api-added-border)\n .versionmodified\n color: var(--color-api-added)\n\ndiv.versionchanged\n border-color: var(--color-api-changed-border)\n .versionmodified\n color: var(--color-api-changed)\n\ndiv.deprecated\n border-color: var(--color-api-deprecated-border)\n .versionmodified\n color: var(--color-api-deprecated)\n\ndiv.versionremoved\n border-color: var(--color-api-removed-border)\n .versionmodified\n color: var(--color-api-removed)\n\n// Align the [docs] and [source] to the right.\n.viewcode-link, .viewcode-back\n float: right\n text-align: right\n",".line-block\n margin-top: 0.5rem\n margin-bottom: 0.75rem\n .line-block\n margin-top: 0rem\n margin-bottom: 0rem\n padding-left: 1rem\n","// Captions\narticle p.caption,\ntable > caption,\n.code-block-caption\n font-size: var(--font-size--small)\n text-align: center\n\n// Caption above a TOCTree\n.toctree-wrapper.compound\n .caption, :not(.caption) > .caption-text\n font-size: var(--font-size--small)\n text-transform: uppercase\n\n text-align: initial\n margin-bottom: 0\n\n > ul\n margin-top: 0\n margin-bottom: 0\n","// Inline code\ncode.literal, .sig-inline\n background: var(--color-inline-code-background)\n border-radius: 0.2em\n // Make the font smaller, and use padding to recover.\n font-size: var(--font-size--small--2)\n padding: 0.1em 0.2em\n\n pre.literal-block &\n font-size: inherit\n padding: 0\n\n p &\n border: 1px solid var(--color-background-border)\n\n.sig-inline\n font-family: var(--font-stack--monospace)\n\n// Code and Literal Blocks\n$code-spacing-vertical: 0.625rem\n$code-spacing-horizontal: 0.875rem\n\n// Wraps every literal block + line numbers.\ndiv[class*=\" highlight-\"],\ndiv[class^=\"highlight-\"]\n margin: 1em 0\n display: flex\n\n .table-wrapper\n margin: 0\n padding: 0\n\npre\n margin: 0\n padding: 0\n overflow: auto\n\n // Needed to have more specificity than pygments' \"pre\" selector. :(\n article[role=\"main\"] .highlight &\n line-height: 1.5\n\n &.literal-block,\n .highlight &\n font-size: var(--code-font-size)\n padding: $code-spacing-vertical $code-spacing-horizontal\n\n // Make it look like all the other blocks.\n &.literal-block\n margin-top: 1rem\n margin-bottom: 1rem\n\n border-radius: 0.2rem\n background-color: var(--color-code-background)\n color: var(--color-code-foreground)\n\n// All code is always contained in this.\n.highlight\n width: 100%\n border-radius: 0.2rem\n\n // Make line numbers and prompts un-selectable.\n .gp, span.linenos\n user-select: none\n pointer-events: none\n\n // Expand the line-highlighting.\n .hll\n display: block\n margin-left: -$code-spacing-horizontal\n margin-right: -$code-spacing-horizontal\n padding-left: $code-spacing-horizontal\n padding-right: $code-spacing-horizontal\n\n/* Make code block captions be nicely integrated */\n.code-block-caption\n display: flex\n padding: $code-spacing-vertical $code-spacing-horizontal\n\n border-radius: 0.25rem\n border-bottom-left-radius: 0\n border-bottom-right-radius: 0\n font-weight: 300\n border-bottom: 1px solid\n\n background-color: var(--color-code-background)\n color: var(--color-code-foreground)\n border-color: var(--color-background-border)\n\n + div[class]\n margin-top: 0\n pre\n border-top-left-radius: 0\n border-top-right-radius: 0\n\n// When `html_codeblock_linenos_style` is table.\n.highlighttable\n width: 100%\n display: block\n tbody\n display: block\n\n tr\n display: flex\n\n // Line numbers\n td.linenos\n background-color: var(--color-code-background)\n color: var(--color-code-foreground)\n padding: $code-spacing-vertical $code-spacing-horizontal\n padding-right: 0\n border-top-left-radius: 0.2rem\n border-bottom-left-radius: 0.2rem\n\n .linenodiv\n padding-right: $code-spacing-horizontal\n font-size: var(--code-font-size)\n box-shadow: -0.0625rem 0 var(--color-foreground-border) inset\n\n // Actual code\n td.code\n padding: 0\n display: block\n flex: 1\n overflow: hidden\n\n .highlight\n border-top-left-radius: 0\n border-bottom-left-radius: 0\n\n// When `html_codeblock_linenos_style` is inline.\n.highlight\n span.linenos\n display: inline-block\n padding-left: 0\n padding-right: $code-spacing-horizontal\n margin-right: $code-spacing-horizontal\n box-shadow: -0.0625rem 0 var(--color-foreground-border) inset\n","// Inline Footnote Reference\n.footnote-reference\n font-size: var(--font-size--small--4)\n vertical-align: super\n\n// Definition list, listing the content of each note.\n// docutils <= 0.17\ndl.footnote.brackets\n font-size: var(--font-size--small)\n color: var(--color-foreground-secondary)\n\n display: grid\n grid-template-columns: max-content auto\n dt\n margin: 0\n > .fn-backref\n margin-left: 0.25rem\n\n &:after\n content: \":\"\n\n .brackets\n &:before\n content: \"[\"\n &:after\n content: \"]\"\n\n dd\n margin: 0\n padding: 0 1rem\n\n// docutils >= 0.18\naside.footnote\n font-size: var(--font-size--small)\n color: var(--color-foreground-secondary)\n\naside.footnote > span,\ndiv.citation > span\n float: left\n font-weight: 500\n padding-right: 0.25rem\n\naside.footnote > *:not(span),\ndiv.citation > p\n margin-left: 2rem\n","//\n// Figures\n//\nimg\n box-sizing: border-box\n max-width: 100%\n height: auto\n\narticle\n figure, .figure\n border-radius: 0.2rem\n\n margin: 0\n :last-child\n margin-bottom: 0\n\n .align-left\n float: left\n clear: left\n margin: 0 1rem 1rem\n\n .align-right\n float: right\n clear: right\n margin: 0 1rem 1rem\n\n .align-default,\n .align-center\n display: block\n text-align: center\n margin-left: auto\n margin-right: auto\n\n // WELL, table needs to be stylised like a table.\n table.align-default\n display: table\n text-align: initial\n",".genindex-jumpbox, .domainindex-jumpbox\n border-top: 1px solid var(--color-background-border)\n border-bottom: 1px solid var(--color-background-border)\n padding: 0.25rem\n\n.genindex-section, .domainindex-section\n h2\n margin-top: 0.75rem\n margin-bottom: 0.5rem\n ul\n margin-top: 0\n margin-bottom: 0\n","ul,\nol\n padding-left: 1.2rem\n\n // Space lists out like paragraphs\n margin-top: 1rem\n margin-bottom: 1rem\n // reduce margins within li.\n li\n > p:first-child\n margin-top: 0.25rem\n margin-bottom: 0.25rem\n\n > p:last-child\n margin-top: 0.25rem\n\n > ul,\n > ol\n margin-top: 0.5rem\n margin-bottom: 0.5rem\n\nol\n &.arabic\n list-style: decimal\n &.loweralpha\n list-style: lower-alpha\n &.upperalpha\n list-style: upper-alpha\n &.lowerroman\n list-style: lower-roman\n &.upperroman\n list-style: upper-roman\n\n// Don't space lists out when they're \"simple\" or in a `.. toctree::`\n.simple,\n.toctree-wrapper\n li\n > ul,\n > ol\n margin-top: 0\n margin-bottom: 0\n\n// Definition Lists\n.field-list,\n.option-list,\ndl:not([class]),\ndl.simple,\ndl.footnote,\ndl.glossary\n dt\n font-weight: 500\n margin-top: 0.25rem\n + dt\n margin-top: 0\n\n .classifier::before\n content: \":\"\n margin-left: 0.2rem\n margin-right: 0.2rem\n\n dd\n > p:first-child,\n ul\n margin-top: 0.125rem\n\n ul\n margin-bottom: 0.125rem\n",".math-wrapper\n width: 100%\n overflow-x: auto\n\ndiv.math\n position: relative\n text-align: center\n\n .headerlink,\n &:focus .headerlink\n display: none\n\n &:hover .headerlink\n display: inline-block\n\n span.eqno\n position: absolute\n right: 0.5rem\n top: 50%\n transform: translate(0, -50%)\n z-index: 1\n","// Abbreviations\nabbr[title]\n cursor: help\n\n// \"Problematic\" content, as identified by Sphinx\n.problematic\n color: var(--color-problematic)\n\n// Keyboard / Mouse \"instructions\"\nkbd:not(.compound)\n margin: 0 0.2rem\n padding: 0 0.2rem\n border-radius: 0.2rem\n border: 1px solid var(--color-foreground-border)\n color: var(--color-foreground-primary)\n vertical-align: text-bottom\n\n font-size: var(--font-size--small--3)\n display: inline-block\n\n box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.2), inset 0 0 0 0.125rem var(--color-background-primary)\n\n background-color: var(--color-background-secondary)\n\n// Blockquote\nblockquote\n border-left: 4px solid var(--color-background-border)\n background: var(--color-background-secondary)\n\n margin-left: 0\n margin-right: 0\n padding: 0.5rem 1rem\n\n .attribution\n font-weight: 600\n text-align: right\n\n &.pull-quote,\n &.highlights\n font-size: 1.25em\n\n &.epigraph,\n &.pull-quote\n border-left-width: 0\n border-radius: 0.5rem\n\n &.highlights\n border-left-width: 0\n background: transparent\n\n// Center align embedded-in-text images\np .reference img\n vertical-align: middle\n","p.rubric\n line-height: 1.25\n font-weight: bold\n font-size: 1.125em\n\n // For Numpy-style documentation that's got rubrics within it.\n // https://github.com/pradyunsg/furo/discussions/505\n dd &\n line-height: inherit\n font-weight: inherit\n\n font-size: var(--font-size--small)\n text-transform: uppercase\n","article .sidebar\n float: right\n clear: right\n width: 30%\n\n margin-left: 1rem\n margin-right: 0\n\n border-radius: 0.2rem\n background-color: var(--color-background-secondary)\n border: var(--color-background-border) 1px solid\n\n > *\n padding-left: 1rem\n padding-right: 1rem\n\n > ul, > ol // lists need additional padding, because bullets.\n padding-left: 2.2rem\n\n .sidebar-title\n margin: 0\n padding: 0.5rem 1rem\n border-bottom: var(--color-background-border) 1px solid\n\n font-weight: 500\n\n// TODO: subtitle\n// TODO: dedicated variables?\n",".table-wrapper\n width: 100%\n overflow-x: auto\n margin-top: 1rem\n margin-bottom: 0.5rem\n padding: 0.2rem 0.2rem 0.75rem\n\ntable.docutils\n border-radius: 0.2rem\n border-spacing: 0\n border-collapse: collapse\n\n box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05), 0 0 0.0625rem rgba(0, 0, 0, 0.1)\n\n th\n background: var(--color-table-header-background)\n\n td,\n th\n // Space things out properly\n padding: 0 0.25rem\n\n // Get the borders looking just-right.\n border-left: 1px solid var(--color-table-border)\n border-right: 1px solid var(--color-table-border)\n border-bottom: 1px solid var(--color-table-border)\n\n p\n margin: 0.25rem\n\n &:first-child\n border-left: none\n &:last-child\n border-right: none\n\n // MyST-parser tables set these classes for control of column alignment\n &.text-left\n text-align: left\n &.text-right\n text-align: right\n &.text-center\n text-align: center\n",":target\n scroll-margin-top: 2.5rem\n\n@media (max-width: $full-width - $sidebar-width)\n :target\n scroll-margin-top: calc(2.5rem + var(--header-height))\n\n // When a heading is selected\n section > span:target\n scroll-margin-top: calc(2.8rem + var(--header-height))\n\n// Permalinks\n.headerlink\n font-weight: 100\n user-select: none\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\ndl dt,\np.caption,\nfigcaption p,\ntable > caption,\n.code-block-caption\n > .headerlink\n margin-left: 0.5rem\n visibility: hidden\n &:hover > .headerlink\n visibility: visible\n\n // Don't change to link-like, if someone adds the contents directive.\n > .toc-backref\n color: inherit\n text-decoration-line: none\n\n// Figure and table captions are special.\nfigure:hover > figcaption > p > .headerlink,\ntable:hover > caption > .headerlink\n visibility: visible\n\n:target >, // Regular section[id] style anchors\nspan:target ~ // Non-regular span[id] style \"extra\" anchors\n h1,\n h2,\n h3,\n h4,\n h5,\n h6\n &:nth-of-type(1)\n background-color: var(--color-highlight-on-target)\n // .headerlink\n // visibility: visible\n code.literal\n background-color: transparent\n\ntable:target > caption,\nfigure:target\n background-color: var(--color-highlight-on-target)\n\n// Inline page contents\n.this-will-duplicate-information-and-it-is-still-useful-here li :target\n background-color: var(--color-highlight-on-target)\n\n// Code block permalinks\n.literal-block-wrapper:target .code-block-caption\n background-color: var(--color-highlight-on-target)\n\n// When a definition list item is selected\n//\n// There isn't really an alternative to !important here, due to the\n// high-specificity of API documentation's selector.\ndt:target\n background-color: var(--color-highlight-on-target) !important\n\n// When a footnote reference is selected\n.footnote > dt:target + dd,\n.footnote-reference:target\n background-color: var(--color-highlight-on-target)\n",".guilabel\n background-color: var(--color-guilabel-background)\n border: 1px solid var(--color-guilabel-border)\n color: var(--color-guilabel-text)\n\n padding: 0 0.3em\n border-radius: 0.5em\n font-size: 0.9em\n","// This file contains the styles used for stylizing the footer that's shown\n// below the content.\n\nfooter\n font-size: var(--font-size--small)\n display: flex\n flex-direction: column\n\n margin-top: 2rem\n\n// Bottom of page information\n.bottom-of-page\n display: flex\n align-items: center\n justify-content: space-between\n\n margin-top: 1rem\n padding-top: 1rem\n padding-bottom: 1rem\n\n color: var(--color-foreground-secondary)\n border-top: 1px solid var(--color-background-border)\n\n line-height: 1.5\n\n @media (max-width: $content-width)\n text-align: center\n flex-direction: column-reverse\n gap: 0.25rem\n\n .left-details\n font-size: var(--font-size--small)\n\n .right-details\n display: flex\n flex-direction: column\n gap: 0.25rem\n text-align: right\n\n .icons\n display: flex\n justify-content: flex-end\n gap: 0.25rem\n font-size: 1rem\n\n a\n text-decoration: none\n\n svg,\n img\n font-size: 1.125rem\n height: 1em\n width: 1em\n\n// Next/Prev page information\n.related-pages\n a\n display: flex\n align-items: center\n\n text-decoration: none\n &:hover .page-info .title\n text-decoration: underline\n color: var(--color-link)\n text-decoration-color: var(--color-link-underline)\n\n svg.furo-related-icon,\n svg.furo-related-icon > use\n flex-shrink: 0\n\n color: var(--color-foreground-border)\n\n width: 0.75rem\n height: 0.75rem\n margin: 0 0.5rem\n\n &.next-page\n max-width: 50%\n\n float: right\n clear: right\n text-align: right\n\n &.prev-page\n max-width: 50%\n\n float: left\n clear: left\n\n svg\n transform: rotate(180deg)\n\n.page-info\n display: flex\n flex-direction: column\n overflow-wrap: anywhere\n\n .next-page &\n align-items: flex-end\n\n .context\n display: flex\n align-items: center\n\n padding-bottom: 0.1rem\n\n color: var(--color-foreground-muted)\n font-size: var(--font-size--small)\n text-decoration: none\n","// This file contains the styles for the contents of the left sidebar, which\n// contains the navigation tree, logo, search etc.\n\n////////////////////////////////////////////////////////////////////////////////\n// Brand on top of the scrollable tree.\n////////////////////////////////////////////////////////////////////////////////\n.sidebar-brand\n display: flex\n flex-direction: column\n flex-shrink: 0\n\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)\n text-decoration: none\n\n.sidebar-brand-text\n color: var(--color-sidebar-brand-text)\n overflow-wrap: break-word\n margin: var(--sidebar-item-spacing-vertical) 0\n font-size: 1.5rem\n\n.sidebar-logo-container\n margin: var(--sidebar-item-spacing-vertical) 0\n\n.sidebar-logo\n margin: 0 auto\n display: block\n max-width: 100%\n\n////////////////////////////////////////////////////////////////////////////////\n// Search\n////////////////////////////////////////////////////////////////////////////////\n.sidebar-search-container\n display: flex\n align-items: center\n margin-top: var(--sidebar-search-space-above)\n\n position: relative\n\n background: var(--color-sidebar-search-background)\n &:hover,\n &:focus-within\n background: var(--color-sidebar-search-background--focus)\n\n &::before\n content: \"\"\n position: absolute\n left: var(--sidebar-item-spacing-horizontal)\n width: var(--sidebar-search-icon-size)\n height: var(--sidebar-search-icon-size)\n\n background-color: var(--color-sidebar-search-icon)\n mask-image: var(--icon-search)\n\n.sidebar-search\n box-sizing: border-box\n\n border: none\n border-top: 1px solid var(--color-sidebar-search-border)\n border-bottom: 1px solid var(--color-sidebar-search-border)\n\n padding-top: var(--sidebar-search-input-spacing-vertical)\n padding-bottom: var(--sidebar-search-input-spacing-vertical)\n padding-right: var(--sidebar-search-input-spacing-horizontal)\n padding-left: calc(var(--sidebar-item-spacing-horizontal) + var(--sidebar-search-input-spacing-horizontal) + var(--sidebar-search-icon-size))\n\n width: 100%\n\n color: var(--color-sidebar-search-foreground)\n background: transparent\n z-index: 10\n\n &:focus\n outline: none\n\n &::placeholder\n font-size: var(--sidebar-search-input-font-size)\n\n//\n// Hide Search Matches link\n//\n#searchbox .highlight-link\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal) 0\n margin: 0\n text-align: center\n\n a\n color: var(--color-sidebar-search-icon)\n font-size: var(--font-size--small--2)\n\n////////////////////////////////////////////////////////////////////////////////\n// Structure/Skeleton of the navigation tree (left)\n////////////////////////////////////////////////////////////////////////////////\n.sidebar-tree\n font-size: var(--sidebar-item-font-size)\n margin-top: var(--sidebar-tree-space-above)\n margin-bottom: var(--sidebar-item-spacing-vertical)\n\n ul\n padding: 0\n margin-top: 0\n margin-bottom: 0\n\n display: flex\n flex-direction: column\n\n list-style: none\n\n li\n position: relative\n margin: 0\n\n > ul\n margin-left: var(--sidebar-item-spacing-horizontal)\n\n .icon\n color: var(--color-sidebar-link-text)\n\n .reference\n box-sizing: border-box\n color: var(--color-sidebar-link-text)\n\n // Fill the parent.\n display: inline-block\n line-height: var(--sidebar-item-line-height)\n text-decoration: none\n\n // Don't allow long words to cause wrapping.\n overflow-wrap: anywhere\n\n height: 100%\n width: 100%\n\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)\n\n &:hover\n color: var(--color-sidebar-link-text)\n background: var(--color-sidebar-item-background--hover)\n\n // Add a nice little \"external-link\" arrow here.\n &.external::after\n content: url('data:image/svg+xml,')\n margin: 0 0.25rem\n vertical-align: middle\n color: var(--color-sidebar-link-text)\n\n // Make the current page reference bold.\n .current-page > .reference\n font-weight: bold\n\n label\n position: absolute\n top: 0\n right: 0\n height: var(--sidebar-item-height)\n width: var(--sidebar-expander-width)\n\n cursor: pointer\n user-select: none\n\n display: flex\n justify-content: center\n align-items: center\n\n .caption, :not(.caption) > .caption-text\n font-size: var(--sidebar-caption-font-size)\n color: var(--color-sidebar-caption-text)\n\n font-weight: bold\n text-transform: uppercase\n\n margin: var(--sidebar-caption-space-above) 0 0 0\n padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal)\n\n // If it has children, add a bit more padding to wrap the content to avoid\n // overlapping with the
- - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -756,12 +743,12 @@

Submodules
-set_proj(epsg: int, path_geoid: list | None = None) None[source]¶
+set_proj(epsg: list, path_geoid: list | None = None) None[source]¶

Setup a projection system to the worksite.

Parameters:
    -
  • epsg (int) – Code epsg of the porjection ex: 2154.

  • +
  • epsg (list) – Code epsg of the porjection ex: 2154.

  • path_geoid (str) – List of GeoTIFF which represents the geoid in grid form.

@@ -934,6 +921,6 @@

Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.format.html b/docs/sphinx/_build/html/borea.format.html index 92c6e682..dd5772e4 100644 --- a/docs/sphinx/_build/html/borea.format.html +++ b/docs/sphinx/_build/html/borea.format.html @@ -5,11 +5,11 @@ - + borea.format package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -600,6 +587,6 @@

Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.geodesy.html b/docs/sphinx/_build/html/borea.geodesy.html index 0caf5d10..0ee59c9e 100644 --- a/docs/sphinx/_build/html/borea.geodesy.html +++ b/docs/sphinx/_build/html/borea.geodesy.html @@ -5,11 +5,11 @@ - + borea.geodesy package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -581,7 +568,7 @@

Submodules
class borea.geodesy.proj_engine.ProjEngine(*args, **kwargs)[source]¶
-

Bases: TransformGeodesy

+

Bases: object

This class provides functions for using a cartographic system.

@@ -642,13 +629,13 @@

Submodules
-set_epsg(epsg: int, geoid: list | None = None) None[source]¶
+set_epsg(epsg: list, geoid: list | None = None) None[source]¶

Setter of the class ProjEngine. Allows to init the class with data.

Parameters:
    -
  • epsg (int) – Code epsg of the projection ex: 2154.

  • +
  • epsg (list) – Code epsg of the projection ex: 2154.

  • geoid (list) – List of geoid to use.

@@ -674,7 +661,7 @@

Submodules
-class borea.geodesy.transform_geodesy.TransformGeodesy[source]¶
+class borea.geodesy.transform_geodesy.TransformGeodesy(epsg: list, geoid: list)[source]¶

Bases: object

This class provides functions to tranform coordinate system. Class parent of ProjEngine. @@ -687,62 +674,97 @@

Submodules +
-carto_to_geoc = None¶
-
+property carto_to_geoc: Transformer¶ +

Returns the transformation or instantiates it before returning it.

+
+
Returns:
+

carto_to_geoc

+
+
Return type:
+

pyproj.Transformer

+
+
+

-
+
-carto_to_geog = None¶
-
- -
-
-carto_to_geog_out = None¶
-
+property carto_to_geog: Transformer¶ +

Returns the transformation or instantiates it before returning it.

+
+
Returns:
+

carto_to_geog

+
+
Return type:
+

pyproj.Transformer

+
+
+
-
+
-geoc_to_carto = None¶
-
+property geoc_to_carto: Transformer¶ +

Returns the transformation or instantiates it before returning it.

+
+
Returns:
+

geoc_to_carto

+
+
Return type:
+

pyproj.Transformer

+
+
+
-
+
-geog_to_carto = None¶
-
+property geog_to_carto: Transformer¶ +

Returns the transformation or instantiates it before returning it.

+
+
Returns:
+

geog_to_carto

+
+
Return type:
+

pyproj.Transformer

+
+
+
-
+
-geog_to_geoid = None¶
-
+property geog_to_geoid: Transformer¶ +

Returns the transformation or instantiates it before returning it.

+
+
Returns:
+

geog_to_geoid

+
+
Return type:
+

pyproj.Transformer

+
+
+
-
+
-geoid_to_geog = None¶
-
- -
-
-tf_geoid(geoid: list) None[source]¶
-

Create attribute transform, to transform geographic coordinates to geoide coordinates.

+property geoid_to_geog: Transformer¶ +

Returns the transformation or instantiates it before returning it.

-
Parameters:
-

geoid (list) – List of geoid to use.

+
Returns:
+

geoid_to_geog

+
+
Return type:
+

pyproj.Transformer

-tf_output(crs: <module 'pyproj' from '/home/ACornu/Documents/Outil_SIA/code_git/borea_env/lib/python3.10/site-packages/pyproj/__init__.py'>, epsg_out: int | None = None) None[source]¶
+tf_output(epsg_out: int | None = None) None[source]¶

Create the pyproj Transformer from crs of worksite to crs geographic ask.

Parameters:
-
    -
  • crs (pyproj) – The crs pyproj of the worksite.

  • -
  • epsg_out (int) – Code epsg of the output crs.

  • -
+

epsg_out (int) – Code epsg of the output crs.

@@ -893,12 +915,10 @@

SubmodulesTransformGeodesy
  • TransformGeodesy.carto_to_geoc
  • TransformGeodesy.carto_to_geog
  • -
  • TransformGeodesy.carto_to_geog_out
  • TransformGeodesy.geoc_to_carto
  • TransformGeodesy.geog_to_carto
  • TransformGeodesy.geog_to_geoid
  • TransformGeodesy.geoid_to_geog
  • -
  • TransformGeodesy.tf_geoid()
  • TransformGeodesy.tf_output()
  • TransformGeodesy.tranform_altitude()
  • TransformGeodesy.tranform_height()
  • @@ -921,6 +941,6 @@

    Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.geodesy.projectionlist.html b/docs/sphinx/_build/html/borea.geodesy.projectionlist.html index 88d549de..96d81bc6 100644 --- a/docs/sphinx/_build/html/borea.geodesy.projectionlist.html +++ b/docs/sphinx/_build/html/borea.geodesy.projectionlist.html @@ -5,11 +5,11 @@ - + borea.geodesy.projectionlist package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -421,6 +408,6 @@

    Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.html b/docs/sphinx/_build/html/borea.html index 43bc202f..84d7cdcf 100644 --- a/docs/sphinx/_build/html/borea.html +++ b/docs/sphinx/_build/html/borea.html @@ -5,11 +5,11 @@ - + borea package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -451,12 +438,10 @@

    SubpackagesTransformGeodesy
    • TransformGeodesy.carto_to_geoc
    • TransformGeodesy.carto_to_geog
    • -
    • TransformGeodesy.carto_to_geog_out
    • TransformGeodesy.geoc_to_carto
    • TransformGeodesy.geog_to_carto
    • TransformGeodesy.geog_to_geoid
    • TransformGeodesy.geoid_to_geog
    • -
    • TransformGeodesy.tf_geoid()
    • TransformGeodesy.tf_output()
    • TransformGeodesy.tranform_altitude()
    • TransformGeodesy.tranform_height()
    • @@ -742,6 +727,6 @@

      Subpackages - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.process.html b/docs/sphinx/_build/html/borea.process.html index f249ae83..841fe2a4 100644 --- a/docs/sphinx/_build/html/borea.process.html +++ b/docs/sphinx/_build/html/borea.process.html @@ -5,11 +5,11 @@ - + borea.process package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -471,6 +458,6 @@

      Subpackages - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.process.p_add_data.html b/docs/sphinx/_build/html/borea.process.p_add_data.html index 6c6ca77a..82821b68 100644 --- a/docs/sphinx/_build/html/borea.process.p_add_data.html +++ b/docs/sphinx/_build/html/borea.process.p_add_data.html @@ -5,11 +5,11 @@ - + borea.process.p_add_data package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -702,6 +689,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.process.p_format.html b/docs/sphinx/_build/html/borea.process.p_format.html index f93509f6..4666ef6a 100644 --- a/docs/sphinx/_build/html/borea.process.p_format.html +++ b/docs/sphinx/_build/html/borea.process.p_format.html @@ -5,11 +5,11 @@ - + borea.process.p_format package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -536,6 +523,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.process.p_func.html b/docs/sphinx/_build/html/borea.process.p_func.html index 9f403642..4a5a23d6 100644 --- a/docs/sphinx/_build/html/borea.process.p_func.html +++ b/docs/sphinx/_build/html/borea.process.p_func.html @@ -5,11 +5,11 @@ - + borea.process.p_func package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -536,6 +523,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.reader.html b/docs/sphinx/_build/html/borea.reader.html index 6f3d47bf..a292cf79 100644 --- a/docs/sphinx/_build/html/borea.reader.html +++ b/docs/sphinx/_build/html/borea.reader.html @@ -5,11 +5,11 @@ - + borea.reader package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -474,6 +461,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.reader.orientation.html b/docs/sphinx/_build/html/borea.reader.orientation.html index 3512c563..73e217d7 100644 --- a/docs/sphinx/_build/html/borea.reader.orientation.html +++ b/docs/sphinx/_build/html/borea.reader.orientation.html @@ -5,11 +5,11 @@ - + borea.reader.orientation package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -437,6 +424,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.stat.html b/docs/sphinx/_build/html/borea.stat.html index c2be143a..6fa6c92f 100644 --- a/docs/sphinx/_build/html/borea.stat.html +++ b/docs/sphinx/_build/html/borea.stat.html @@ -5,11 +5,11 @@ - + borea.stat package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -462,6 +449,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.transform_world_image.html b/docs/sphinx/_build/html/borea.transform_world_image.html index 481ef243..304f5def 100644 --- a/docs/sphinx/_build/html/borea.transform_world_image.html +++ b/docs/sphinx/_build/html/borea.transform_world_image.html @@ -5,11 +5,11 @@ - + borea.transform_world_image package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -480,6 +467,6 @@

      Subpackages - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.transform_world_image.transform_dtm.html b/docs/sphinx/_build/html/borea.transform_world_image.transform_dtm.html index af0aa3c7..2e1d9390 100644 --- a/docs/sphinx/_build/html/borea.transform_world_image.transform_dtm.html +++ b/docs/sphinx/_build/html/borea.transform_world_image.transform_dtm.html @@ -5,11 +5,11 @@ - + borea.transform_world_image.transform_dtm package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -427,6 +414,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.transform_world_image.transform_shot.html b/docs/sphinx/_build/html/borea.transform_world_image.transform_shot.html index 7c973394..d879c95d 100644 --- a/docs/sphinx/_build/html/borea.transform_world_image.transform_shot.html +++ b/docs/sphinx/_build/html/borea.transform_world_image.transform_shot.html @@ -5,11 +5,11 @@ - + borea.transform_world_image.transform_shot package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -667,6 +654,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.transform_world_image.transform_worksite.html b/docs/sphinx/_build/html/borea.transform_world_image.transform_worksite.html index 0d347c84..6a45cdcd 100644 --- a/docs/sphinx/_build/html/borea.transform_world_image.transform_worksite.html +++ b/docs/sphinx/_build/html/borea.transform_world_image.transform_worksite.html @@ -5,11 +5,11 @@ - + borea.transform_world_image.transform_worksite package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -906,6 +893,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.utils.check.html b/docs/sphinx/_build/html/borea.utils.check.html index 16e4fa48..ad3389d4 100644 --- a/docs/sphinx/_build/html/borea.utils.check.html +++ b/docs/sphinx/_build/html/borea.utils.check.html @@ -5,11 +5,11 @@ - + borea.utils.check package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -589,6 +576,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.utils.html b/docs/sphinx/_build/html/borea.utils.html index 12a46ef0..20fb4acd 100644 --- a/docs/sphinx/_build/html/borea.utils.html +++ b/docs/sphinx/_build/html/borea.utils.html @@ -5,11 +5,11 @@ - + borea.utils package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -449,6 +436,6 @@

      Subpackages - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.utils.miscellaneous.html b/docs/sphinx/_build/html/borea.utils.miscellaneous.html index 4384b4d1..8d731345 100644 --- a/docs/sphinx/_build/html/borea.utils.miscellaneous.html +++ b/docs/sphinx/_build/html/borea.utils.miscellaneous.html @@ -5,11 +5,11 @@ - + borea.utils.miscellaneous package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -520,6 +507,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.utils.singleton.html b/docs/sphinx/_build/html/borea.utils.singleton.html index 62367b47..66d41030 100644 --- a/docs/sphinx/_build/html/borea.utils.singleton.html +++ b/docs/sphinx/_build/html/borea.utils.singleton.html @@ -5,11 +5,11 @@ - + borea.utils.singleton package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -399,6 +386,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.utils.xml.html b/docs/sphinx/_build/html/borea.utils.xml.html index bbb2c71a..e21b33c6 100644 --- a/docs/sphinx/_build/html/borea.utils.xml.html +++ b/docs/sphinx/_build/html/borea.utils.xml.html @@ -5,11 +5,11 @@ - + borea.utils.xml package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -433,6 +420,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.worksite.html b/docs/sphinx/_build/html/borea.worksite.html index 60ac4913..d753852d 100644 --- a/docs/sphinx/_build/html/borea.worksite.html +++ b/docs/sphinx/_build/html/borea.worksite.html @@ -5,11 +5,11 @@ - + borea.worksite package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -548,6 +535,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/borea.writer.html b/docs/sphinx/_build/html/borea.writer.html index 1d736728..687a8c2e 100644 --- a/docs/sphinx/_build/html/borea.writer.html +++ b/docs/sphinx/_build/html/borea.writer.html @@ -5,11 +5,11 @@ - + borea.writer package - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -496,6 +483,6 @@

      Submodules - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/genindex.html b/docs/sphinx/_build/html/genindex.html index 3482f6b4..0cb2ca6b 100644 --- a/docs/sphinx/_build/html/genindex.html +++ b/docs/sphinx/_build/html/genindex.html @@ -4,10 +4,10 @@ - Index - Borea 1.0.0 documentation + Index - Borea 1.0.0 documentation - - + + @@ -86,19 +86,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -950,11 +937,9 @@

      C

    • camera_txt() (in module borea.reader.reader_camera)
    • -
    • carto_to_geoc (borea.geodesy.transform_geodesy.TransformGeodesy attribute) -
    • -
    • carto_to_geog (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
    • carto_to_geoc (borea.geodesy.transform_geodesy.TransformGeodesy property)
    • -
    • carto_to_geog_out (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
    • carto_to_geog (borea.geodesy.transform_geodesy.TransformGeodesy property)
    • check_args_opk() (in module borea.utils.check.check_args_opk)
    • @@ -1068,15 +1053,15 @@

      G

      • GCP (class in borea.datastruct.gcp)
      • -
      • geoc_to_carto (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
      • geoc_to_carto (borea.geodesy.transform_geodesy.TransformGeodesy property)
      • -
      • geog_to_carto (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
      • geog_to_carto (borea.geodesy.transform_geodesy.TransformGeodesy property)
      • -
      • geog_to_geoid (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
      • geog_to_geoid (borea.geodesy.transform_geodesy.TransformGeodesy property)
      • geoid (borea.geodesy.proj_engine.ProjEngine attribute)
      • -
      • geoid_to_geog (borea.geodesy.transform_geodesy.TransformGeodesy attribute) +
      • geoid_to_geog (borea.geodesy.transform_geodesy.TransformGeodesy property)
      • get_attr_transfo_pt() (borea.worksite.worksite.Worksite method)
      • @@ -1568,8 +1553,6 @@

        T

        • take_obs() (borea.transform_world_image.transform_worksite.space_resection.SpaceResection method) -
        • -
        • tf_geoid() (borea.geodesy.transform_geodesy.TransformGeodesy method)
        • tf_output() (borea.geodesy.transform_geodesy.TransformGeodesy method)
        • @@ -1700,6 +1683,6 @@

          Y

          - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/index.html b/docs/sphinx/_build/html/index.html index 2b91dfe2..de41039f 100644 --- a/docs/sphinx/_build/html/index.html +++ b/docs/sphinx/_build/html/index.html @@ -5,11 +5,11 @@ - + Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -354,6 +341,6 @@

          Indices and tables - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/modules.html b/docs/sphinx/_build/html/modules.html index 93e84f9d..e24193d4 100644 --- a/docs/sphinx/_build/html/modules.html +++ b/docs/sphinx/_build/html/modules.html @@ -5,11 +5,11 @@ - + borea - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -431,6 +418,6 @@

          borea¶ - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/objects.inv b/docs/sphinx/_build/html/objects.inv index e4758985..a5d5a302 100644 Binary files a/docs/sphinx/_build/html/objects.inv and b/docs/sphinx/_build/html/objects.inv differ diff --git a/docs/sphinx/_build/html/py-modindex.html b/docs/sphinx/_build/html/py-modindex.html index c3cc23c1..c9f10471 100644 --- a/docs/sphinx/_build/html/py-modindex.html +++ b/docs/sphinx/_build/html/py-modindex.html @@ -4,10 +4,10 @@ - Python Module Index - Borea 1.0.0 documentation + Python Module Index - Borea 1.0.0 documentation - - + + @@ -86,19 +86,6 @@ - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -824,6 +811,6 @@

          Python Module Index

          - + \ No newline at end of file diff --git a/docs/sphinx/_build/html/search.html b/docs/sphinx/_build/html/search.html index dfbd620f..3b070b56 100644 --- a/docs/sphinx/_build/html/search.html +++ b/docs/sphinx/_build/html/search.html @@ -5,11 +5,11 @@ - + Search - Borea 1.0.0 documentation - - + + @@ -88,19 +88,6 @@
          - - Auto light/dark mode - - - - - - - - - - Auto light/dark, in light mode - @@ -331,7 +318,7 @@ - + diff --git a/docs/sphinx/_build/html/searchindex.js b/docs/sphinx/_build/html/searchindex.js index 7e7f3b14..aa56d9e3 100644 --- a/docs/sphinx/_build/html/searchindex.js +++ b/docs/sphinx/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"Contents:": [[23, null]], "Indices and tables": [[23, "indices-and-tables"]], "Module contents": [[0, "module-borea"], [1, "module-borea.datastruct"], [2, "module-borea.format"], [3, "module-borea.geodesy"], [4, "module-borea.geodesy.projectionlist"], [5, "module-borea.process"], [6, "module-borea.process.p_add_data"], [7, "module-borea.process.p_format"], [8, "module-borea.process.p_func"], [9, "module-borea.reader"], [10, "module-borea.reader.orientation"], [11, "module-borea.stat"], [12, "module-borea.transform_world_image"], [13, "module-borea.transform_world_image.transform_dtm"], [14, "module-borea.transform_world_image.transform_shot"], [15, "module-borea.transform_world_image.transform_worksite"], [16, "module-borea.utils"], [17, "module-borea.utils.check"], [18, "module-borea.utils.miscellaneous"], [19, "module-borea.utils.singleton"], [20, "module-borea.utils.xml"], [21, "module-borea.worksite"], [22, "module-borea.writer"]], "Submodules": [[1, "submodules"], [2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"], [10, "submodules"], [11, "submodules"], [13, "submodules"], [14, "submodules"], [15, "submodules"], [17, "submodules"], [18, "submodules"], [19, "submodules"], [20, "submodules"], [21, "submodules"], [22, "submodules"]], "Subpackages": [[0, "subpackages"], [3, "subpackages"], [5, "subpackages"], [9, "subpackages"], [12, "subpackages"], [16, "subpackages"]], "Welcome to Pink_Lady\u2019s documentation!": [[23, "welcome-to-pink-lady-s-documentation"]], "borea": [[24, "borea"]], "borea package": [[0, "borea-package"]], "borea.datastruct package": [[1, "borea-datastruct-package"]], "borea.datastruct.camera module": [[1, "module-borea.datastruct.camera"]], "borea.datastruct.dtm module": [[1, "module-borea.datastruct.dtm"]], "borea.datastruct.gcp module": [[1, "module-borea.datastruct.gcp"]], "borea.datastruct.shot module": [[1, "module-borea.datastruct.shot"]], "borea.datastruct.workdata module": [[1, "module-borea.datastruct.workdata"]], "borea.format package": [[2, "borea-format-package"]], "borea.format.conl module": [[2, "module-borea.format.conl"]], "borea.format.rpc module": [[2, "module-borea.format.rpc"]], "borea.geodesy package": [[3, "borea-geodesy-package"]], "borea.geodesy.approx_euclidean_proj module": [[3, "module-borea.geodesy.approx_euclidean_proj"]], "borea.geodesy.euclidean_proj module": [[3, "module-borea.geodesy.euclidean_proj"]], "borea.geodesy.local_euclidean_proj module": [[3, "module-borea.geodesy.local_euclidean_proj"]], "borea.geodesy.proj_engine module": [[3, "module-borea.geodesy.proj_engine"]], "borea.geodesy.projectionlist package": [[4, "borea-geodesy-projectionlist-package"]], "borea.geodesy.projectionlist.search_proj module": [[4, "module-borea.geodesy.projectionlist.search_proj"]], "borea.geodesy.transform_geodesy module": [[3, "module-borea.geodesy.transform_geodesy"]], "borea.process package": [[5, "borea-process-package"]], "borea.process.p_add_data package": [[6, "borea-process-p-add-data-package"]], "borea.process.p_add_data.p_add_shot module": [[6, "module-borea.process.p_add_data.p_add_shot"]], "borea.process.p_add_data.p_file_gcp2d module": [[6, "module-borea.process.p_add_data.p_file_gcp2d"]], "borea.process.p_add_data.p_file_gcp3d module": [[6, "module-borea.process.p_add_data.p_file_gcp3d"]], "borea.process.p_add_data.p_gen_param module": [[6, "module-borea.process.p_add_data.p_gen_param"]], "borea.process.p_add_data.p_pt2d module": [[6, "module-borea.process.p_add_data.p_pt2d"]], "borea.process.p_add_data.p_pt3d module": [[6, "module-borea.process.p_add_data.p_pt3d"]], "borea.process.p_add_data.p_unit_shot module": [[6, "module-borea.process.p_add_data.p_unit_shot"]], "borea.process.p_add_data.p_write module": [[6, "module-borea.process.p_add_data.p_write"]], "borea.process.p_format package": [[7, "borea-process-p-format-package"]], "borea.process.p_format.p_read_opk module": [[7, "module-borea.process.p_format.p_read_opk"]], "borea.process.p_format.p_write_con module": [[7, "module-borea.process.p_format.p_write_con"]], "borea.process.p_format.p_write_opk module": [[7, "module-borea.process.p_format.p_write_opk"]], "borea.process.p_format.p_write_rpc module": [[7, "module-borea.process.p_format.p_write_rpc"]], "borea.process.p_func package": [[8, "borea-process-p-func-package"]], "borea.process.p_func.p_control module": [[8, "module-borea.process.p_func.p_control"]], "borea.process.p_func.p_image_world module": [[8, "module-borea.process.p_func.p_image_world"]], "borea.process.p_func.p_spaceresection module": [[8, "module-borea.process.p_func.p_spaceresection"]], "borea.process.p_func.p_world_image module": [[8, "module-borea.process.p_func.p_world_image"]], "borea.reader package": [[9, "borea-reader-package"]], "borea.reader.orientation package": [[10, "borea-reader-orientation-package"]], "borea.reader.orientation.manage_reader module": [[10, "module-borea.reader.orientation.manage_reader"]], "borea.reader.orientation.reader_opk module": [[10, "module-borea.reader.orientation.reader_opk"]], "borea.reader.reader_camera module": [[9, "module-borea.reader.reader_camera"]], "borea.reader.reader_point module": [[9, "module-borea.reader.reader_point"]], "borea.stat package": [[11, "borea-stat-package"]], "borea.stat.statistics module": [[11, "module-borea.stat.statistics"]], "borea.transform_world_image package": [[12, "borea-transform-world-image-package"]], "borea.transform_world_image.transform_dtm package": [[13, "borea-transform-world-image-transform-dtm-package"]], "borea.transform_world_image.transform_dtm.world_image_dtm module": [[13, "module-borea.transform_world_image.transform_dtm.world_image_dtm"]], "borea.transform_world_image.transform_shot package": [[14, "borea-transform-world-image-transform-shot-package"]], "borea.transform_world_image.transform_shot.conversion_coor_shot module": [[14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot"]], "borea.transform_world_image.transform_shot.image_world_shot module": [[14, "module-borea.transform_world_image.transform_shot.image_world_shot"]], "borea.transform_world_image.transform_shot.world_image_shot module": [[14, "module-borea.transform_world_image.transform_shot.world_image_shot"]], "borea.transform_world_image.transform_worksite package": [[15, "borea-transform-world-image-transform-worksite-package"]], "borea.transform_world_image.transform_worksite.image_world_intersection module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_intersection"]], "borea.transform_world_image.transform_worksite.image_world_least_square module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_least_square"]], "borea.transform_world_image.transform_worksite.image_world_work module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_work"]], "borea.transform_world_image.transform_worksite.space_resection module": [[15, "module-borea.transform_world_image.transform_worksite.space_resection"]], "borea.transform_world_image.transform_worksite.world_image_work module": [[15, "module-borea.transform_world_image.transform_worksite.world_image_work"]], "borea.utils package": [[16, "borea-utils-package"]], "borea.utils.check package": [[17, "borea-utils-check-package"]], "borea.utils.check.check_args_opk module": [[17, "module-borea.utils.check.check_args_opk"]], "borea.utils.check.check_args_reader_pt module": [[17, "module-borea.utils.check.check_args_reader_pt"]], "borea.utils.check.check_array module": [[17, "module-borea.utils.check.check_array"]], "borea.utils.check.check_header module": [[17, "module-borea.utils.check.check_header"]], "borea.utils.check.check_order_axe module": [[17, "module-borea.utils.check.check_order_axe"]], "borea.utils.miscellaneous package": [[18, "borea-utils-miscellaneous-package"]], "borea.utils.miscellaneous.miscellaneous module": [[18, "module-borea.utils.miscellaneous.miscellaneous"]], "borea.utils.miscellaneous.param_bundle module": [[18, "module-borea.utils.miscellaneous.param_bundle"]], "borea.utils.miscellaneous.sparse module": [[18, "module-borea.utils.miscellaneous.sparse"]], "borea.utils.singleton package": [[19, "borea-utils-singleton-package"]], "borea.utils.singleton.singleton module": [[19, "module-borea.utils.singleton.singleton"]], "borea.utils.xml package": [[20, "borea-utils-xml-package"]], "borea.utils.xml.xml module": [[20, "module-borea.utils.xml.xml"]], "borea.worksite package": [[21, "borea-worksite-package"]], "borea.worksite.worksite module": [[21, "module-borea.worksite.worksite"]], "borea.writer package": [[22, "borea-writer-package"]], "borea.writer.manage_writer module": [[22, "module-borea.writer.manage_writer"]], "borea.writer.writer_con module": [[22, "module-borea.writer.writer_con"]], "borea.writer.writer_df_to_txt module": [[22, "module-borea.writer.writer_df_to_txt"]], "borea.writer.writer_opk module": [[22, "module-borea.writer.writer_opk"]], "borea.writer.writer_rpc module": [[22, "module-borea.writer.writer_rpc"]]}, "docnames": ["borea", "borea.datastruct", "borea.format", "borea.geodesy", "borea.geodesy.projectionlist", "borea.process", "borea.process.p_add_data", "borea.process.p_format", "borea.process.p_func", "borea.reader", "borea.reader.orientation", "borea.stat", "borea.transform_world_image", "borea.transform_world_image.transform_dtm", "borea.transform_world_image.transform_shot", "borea.transform_world_image.transform_worksite", "borea.utils", "borea.utils.check", "borea.utils.miscellaneous", "borea.utils.singleton", "borea.utils.xml", "borea.worksite", "borea.writer", "index", "modules"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["borea.rst", "borea.datastruct.rst", "borea.format.rst", "borea.geodesy.rst", "borea.geodesy.projectionlist.rst", "borea.process.rst", "borea.process.p_add_data.rst", "borea.process.p_format.rst", "borea.process.p_func.rst", "borea.reader.rst", "borea.reader.orientation.rst", "borea.stat.rst", "borea.transform_world_image.rst", "borea.transform_world_image.transform_dtm.rst", "borea.transform_world_image.transform_shot.rst", "borea.transform_world_image.transform_worksite.rst", "borea.utils.rst", "borea.utils.check.rst", "borea.utils.miscellaneous.rst", "borea.utils.singleton.rst", "borea.utils.xml.rst", "borea.worksite.rst", "borea.writer.rst", "index.rst", "modules.rst"], "indexentries": {"add_camera() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_camera", false]], "add_co_point() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_co_point", false]], "add_elem() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.add_elem", false]], "add_gcp2d() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_gcp2d", false]], "add_gcp3d() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_gcp3d", false]], "add_shot() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_shot", false]], "angle_degree_2vect() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.angle_degree_2vect", false]], "approxeuclideanproj (class in borea.geodesy.approx_euclidean_proj)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj", false]], "args_add_pt2d() (in module borea.process.p_add_data.p_pt2d)": [[6, "borea.process.p_add_data.p_pt2d.args_add_pt2d", false]], "args_add_pt3d() (in module borea.process.p_add_data.p_pt3d)": [[6, "borea.process.p_add_data.p_pt3d.args_add_pt3d", false]], "args_add_shot() (in module borea.process.p_add_data.p_add_shot)": [[6, "borea.process.p_add_data.p_add_shot.args_add_shot", false]], "args_control() (in module borea.process.p_func.p_control)": [[8, "borea.process.p_func.p_control.args_control", false]], "args_gcp2d() (in module borea.process.p_add_data.p_file_gcp2d)": [[6, "borea.process.p_add_data.p_file_gcp2d.args_gcp2d", false]], "args_gcp3d() (in module borea.process.p_add_data.p_file_gcp3d)": [[6, "borea.process.p_add_data.p_file_gcp3d.args_gcp3d", false]], "args_general_param() (in module borea.process.p_add_data.p_gen_param)": [[6, "borea.process.p_add_data.p_gen_param.args_general_param", false]], "args_image_world() (in module borea.process.p_func.p_image_world)": [[8, "borea.process.p_func.p_image_world.args_image_world", false]], "args_input_shot() (in module borea.process.p_add_data.p_unit_shot)": [[6, "borea.process.p_add_data.p_unit_shot.args_input_shot", false]], "args_output_shot() (in module borea.process.p_add_data.p_unit_shot)": [[6, "borea.process.p_add_data.p_unit_shot.args_output_shot", false]], "args_reading_opk() (in module borea.process.p_format.p_read_opk)": [[7, "borea.process.p_format.p_read_opk.args_reading_opk", false]], "args_space_resection() (in module borea.process.p_func.p_spaceresection)": [[8, "borea.process.p_func.p_spaceresection.args_space_resection", false]], "args_world_image() (in module borea.process.p_func.p_world_image)": [[8, "borea.process.p_func.p_world_image.args_world_image", false]], "args_write_con() (in module borea.process.p_format.p_write_con)": [[7, "borea.process.p_format.p_write_con.args_write_con", false]], "args_writer() (in module borea.process.p_add_data.p_write)": [[6, "borea.process.p_add_data.p_write.args_writer", false]], "args_writing_opk() (in module borea.process.p_format.p_write_opk)": [[7, "borea.process.p_format.p_write_opk.args_writing_opk", false]], "args_writing_rpc() (in module borea.process.p_format.p_write_rpc)": [[7, "borea.process.p_format.p_write_rpc.args_writing_rpc", false]], "borea": [[0, "module-borea", false]], "borea.datastruct": [[1, "module-borea.datastruct", false]], "borea.datastruct.camera": [[1, "module-borea.datastruct.camera", false]], "borea.datastruct.dtm": [[1, "module-borea.datastruct.dtm", false]], "borea.datastruct.gcp": [[1, "module-borea.datastruct.gcp", false]], "borea.datastruct.shot": [[1, "module-borea.datastruct.shot", false]], "borea.datastruct.workdata": [[1, "module-borea.datastruct.workdata", false]], "borea.format": [[2, "module-borea.format", false]], "borea.format.conl": [[2, "module-borea.format.conl", false]], "borea.format.rpc": [[2, "module-borea.format.rpc", false]], "borea.geodesy": [[3, "module-borea.geodesy", false]], "borea.geodesy.approx_euclidean_proj": [[3, "module-borea.geodesy.approx_euclidean_proj", false]], "borea.geodesy.euclidean_proj": [[3, "module-borea.geodesy.euclidean_proj", false]], "borea.geodesy.local_euclidean_proj": [[3, "module-borea.geodesy.local_euclidean_proj", false]], "borea.geodesy.proj_engine": [[3, "module-borea.geodesy.proj_engine", false]], "borea.geodesy.projectionlist": [[4, "module-borea.geodesy.projectionlist", false]], "borea.geodesy.projectionlist.search_proj": [[4, "module-borea.geodesy.projectionlist.search_proj", false]], "borea.geodesy.transform_geodesy": [[3, "module-borea.geodesy.transform_geodesy", false]], "borea.process": [[5, "module-borea.process", false]], "borea.process.p_add_data": [[6, "module-borea.process.p_add_data", false]], "borea.process.p_add_data.p_add_shot": [[6, "module-borea.process.p_add_data.p_add_shot", false]], "borea.process.p_add_data.p_file_gcp2d": [[6, "module-borea.process.p_add_data.p_file_gcp2d", false]], "borea.process.p_add_data.p_file_gcp3d": [[6, "module-borea.process.p_add_data.p_file_gcp3d", false]], "borea.process.p_add_data.p_gen_param": [[6, "module-borea.process.p_add_data.p_gen_param", false]], "borea.process.p_add_data.p_pt2d": [[6, "module-borea.process.p_add_data.p_pt2d", false]], "borea.process.p_add_data.p_pt3d": [[6, "module-borea.process.p_add_data.p_pt3d", false]], "borea.process.p_add_data.p_unit_shot": [[6, "module-borea.process.p_add_data.p_unit_shot", false]], "borea.process.p_add_data.p_write": [[6, "module-borea.process.p_add_data.p_write", false]], "borea.process.p_format": [[7, "module-borea.process.p_format", false]], "borea.process.p_format.p_read_opk": [[7, "module-borea.process.p_format.p_read_opk", false]], "borea.process.p_format.p_write_con": [[7, "module-borea.process.p_format.p_write_con", false]], "borea.process.p_format.p_write_opk": [[7, "module-borea.process.p_format.p_write_opk", false]], "borea.process.p_format.p_write_rpc": [[7, "module-borea.process.p_format.p_write_rpc", false]], "borea.process.p_func": [[8, "module-borea.process.p_func", false]], "borea.process.p_func.p_control": [[8, "module-borea.process.p_func.p_control", false]], "borea.process.p_func.p_image_world": [[8, "module-borea.process.p_func.p_image_world", false]], "borea.process.p_func.p_spaceresection": [[8, "module-borea.process.p_func.p_spaceresection", false]], "borea.process.p_func.p_world_image": [[8, "module-borea.process.p_func.p_world_image", false]], "borea.reader": [[9, "module-borea.reader", false]], "borea.reader.orientation": [[10, "module-borea.reader.orientation", false]], "borea.reader.orientation.manage_reader": [[10, "module-borea.reader.orientation.manage_reader", false]], "borea.reader.orientation.reader_opk": [[10, "module-borea.reader.orientation.reader_opk", false]], "borea.reader.reader_camera": [[9, "module-borea.reader.reader_camera", false]], "borea.reader.reader_point": [[9, "module-borea.reader.reader_point", false]], "borea.stat": [[11, "module-borea.stat", false]], "borea.stat.statistics": [[11, "module-borea.stat.statistics", false]], "borea.transform_world_image": [[12, "module-borea.transform_world_image", false]], "borea.transform_world_image.transform_dtm": [[13, "module-borea.transform_world_image.transform_dtm", false]], "borea.transform_world_image.transform_dtm.world_image_dtm": [[13, "module-borea.transform_world_image.transform_dtm.world_image_dtm", false]], "borea.transform_world_image.transform_shot": [[14, "module-borea.transform_world_image.transform_shot", false]], "borea.transform_world_image.transform_shot.conversion_coor_shot": [[14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot", false]], "borea.transform_world_image.transform_shot.image_world_shot": [[14, "module-borea.transform_world_image.transform_shot.image_world_shot", false]], "borea.transform_world_image.transform_shot.world_image_shot": [[14, "module-borea.transform_world_image.transform_shot.world_image_shot", false]], "borea.transform_world_image.transform_worksite": [[15, "module-borea.transform_world_image.transform_worksite", false]], "borea.transform_world_image.transform_worksite.image_world_intersection": [[15, "module-borea.transform_world_image.transform_worksite.image_world_intersection", false]], "borea.transform_world_image.transform_worksite.image_world_least_square": [[15, "module-borea.transform_world_image.transform_worksite.image_world_least_square", false]], "borea.transform_world_image.transform_worksite.image_world_work": [[15, "module-borea.transform_world_image.transform_worksite.image_world_work", false]], "borea.transform_world_image.transform_worksite.space_resection": [[15, "module-borea.transform_world_image.transform_worksite.space_resection", false]], "borea.transform_world_image.transform_worksite.world_image_work": [[15, "module-borea.transform_world_image.transform_worksite.world_image_work", false]], "borea.utils": [[16, "module-borea.utils", false]], "borea.utils.check": [[17, "module-borea.utils.check", false]], "borea.utils.check.check_args_opk": [[17, "module-borea.utils.check.check_args_opk", false]], "borea.utils.check.check_args_reader_pt": [[17, "module-borea.utils.check.check_args_reader_pt", false]], "borea.utils.check.check_array": [[17, "module-borea.utils.check.check_array", false]], "borea.utils.check.check_header": [[17, "module-borea.utils.check.check_header", false]], "borea.utils.check.check_order_axe": [[17, "module-borea.utils.check.check_order_axe", false]], "borea.utils.miscellaneous": [[18, "module-borea.utils.miscellaneous", false]], "borea.utils.miscellaneous.miscellaneous": [[18, "module-borea.utils.miscellaneous.miscellaneous", false]], "borea.utils.miscellaneous.param_bundle": [[18, "module-borea.utils.miscellaneous.param_bundle", false]], "borea.utils.miscellaneous.sparse": [[18, "module-borea.utils.miscellaneous.sparse", false]], "borea.utils.singleton": [[19, "module-borea.utils.singleton", false]], "borea.utils.singleton.singleton": [[19, "module-borea.utils.singleton.singleton", false]], "borea.utils.xml": [[20, "module-borea.utils.xml", false]], "borea.utils.xml.xml": [[20, "module-borea.utils.xml.xml", false]], "borea.worksite": [[21, "module-borea.worksite", false]], "borea.worksite.worksite": [[21, "module-borea.worksite.worksite", false]], "borea.writer": [[22, "module-borea.writer", false]], "borea.writer.manage_writer": [[22, "module-borea.writer.manage_writer", false]], "borea.writer.writer_con": [[22, "module-borea.writer.writer_con", false]], "borea.writer.writer_df_to_txt": [[22, "module-borea.writer.writer_df_to_txt", false]], "borea.writer.writer_opk": [[22, "module-borea.writer.writer_opk", false]], "borea.writer.writer_rpc": [[22, "module-borea.writer.writer_rpc", false]], "bundle_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.bundle_to_image", false]], "calculate_barycentre() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.calculate_barycentre", false]], "calculate_image_world_by_intersection() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.calculate_image_world_by_intersection", false]], "calculate_world_to_image() (borea.transform_world_image.transform_worksite.world_image_work.worldimagework method)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork.calculate_world_to_image", false]], "cam (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.cam", false]], "camera (class in borea.datastruct.camera)": [[1, "borea.datastruct.camera.Camera", false]], "camera_txt() (in module borea.reader.reader_camera)": [[9, "borea.reader.reader_camera.camera_txt", false]], "carto_to_geoc (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.carto_to_geoc", false]], "carto_to_geog (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.carto_to_geog", false]], "carto_to_geog_out (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.carto_to_geog_out", false]], "check_args_opk() (in module borea.utils.check.check_args_opk)": [[17, "borea.utils.check.check_args_opk.check_args_opk", false]], "check_array_transfo() (in module borea.utils.check.check_array)": [[17, "borea.utils.check.check_array.check_array_transfo", false]], "check_h_z() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.check_h_z", false]], "check_head() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.check_head", false]], "check_header_file() (in module borea.utils.check.check_args_opk)": [[17, "borea.utils.check.check_args_opk.check_header_file", false]], "check_header_file() (in module borea.utils.check.check_args_reader_pt)": [[17, "borea.utils.check.check_args_reader_pt.check_header_file", false]], "check_order_axe() (in module borea.utils.check.check_order_axe)": [[17, "borea.utils.check.check_order_axe.check_order_axe", false]], "clear() (borea.utils.singleton.singleton.singleton method)": [[19, "borea.utils.singleton.singleton.Singleton.clear", false]], "code (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.code", false]], "comput_inter_in_2_more_distant_shot() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.comput_inter_in_2_more_distant_shot", false]], "compute_image_world_least_square() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.compute_image_world_least_square", false]], "conl (class in borea.format.conl)": [[2, "borea.format.conl.Conl", false]], "conv_output_z_type() (in module borea.transform_world_image.transform_shot.conversion_coor_shot)": [[14, "borea.transform_world_image.transform_shot.conversion_coor_shot.conv_output_z_type", false]], "conv_z_shot_to_z_data() (in module borea.transform_world_image.transform_shot.conversion_coor_shot)": [[14, "borea.transform_world_image.transform_shot.conversion_coor_shot.conv_z_shot_to_z_data", false]], "convert_line_list() (in module borea.geodesy.projectionlist.search_proj)": [[4, "borea.geodesy.projectionlist.search_proj.convert_line_list", false]], "convert_opk_to_xyz() (in module borea.utils.check.check_order_axe)": [[17, "borea.utils.check.check_order_axe.convert_opk_to_xyz", false]], "coor (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.coor", false]], "create_grid_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.create_grid_rpc", false]], "create_mat_a_and_vect_residu() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.create_mat_a_and_vect_residu", false]], "dist_2pts() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.dist_2pts", false]], "dtm (class in borea.datastruct.dtm)": [[1, "borea.datastruct.dtm.Dtm", false]], "epsg (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.epsg", false]], "epsg_output (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.epsg_output", false]], "eucli_to_bundle() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.eucli_to_bundle", false]], "eucli_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.eucli_to_image", false]], "eucli_to_world() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.eucli_to_world", false]], "eucli_to_world() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.eucli_to_world", false]], "euclideanproj (class in borea.geodesy.euclidean_proj)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj", false]], "focal (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.focal", false]], "format_xml() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.format_xml", false]], "from_param_euclidean() (borea.datastruct.shot.shot class method)": [[1, "borea.datastruct.shot.Shot.from_param_euclidean", false]], "from_shot() (borea.format.rpc.rpc class method)": [[2, "borea.format.rpc.Rpc.from_shot", false]], "func_least_square() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.func_least_square", false]], "gcp (class in borea.datastruct.gcp)": [[1, "borea.datastruct.gcp.GCP", false]], "geoc_to_carto (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geoc_to_carto", false]], "geog_to_carto (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geog_to_carto", false]], "geog_to_geoid (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geog_to_geoid", false]], "geoid (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.geoid", false]], "geoid_to_geog (borea.geodesy.transform_geodesy.transformgeodesy attribute)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geoid_to_geog", false]], "get_attr_transfo_pt() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_attr_transfo_pt", false]], "get_coor_pt_img_and_world() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_coor_pt_img_and_world", false]], "get_meridian_convergence() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.get_meridian_convergence", false]], "get_point_image_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_point_image_dataframe", false]], "get_point_world_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_point_world_dataframe", false]], "get_scale_factor() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.get_scale_factor", false]], "get_type_z_and_header() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.get_type_z_and_header", false]], "get_z_add_scale_factor() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.get_z_add_scale_factor", false]], "get_z_remove_scale_factor() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.get_z_remove_scale_factor", false]], "get_z_world() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.get_z_world", false]], "height (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.height", false]], "image_to_bundle() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_to_bundle", false]], "image_to_world() (borea.transform_world_image.transform_dtm.world_image_dtm.worldimagedtm method)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm.image_to_world", false]], "image_to_world() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_to_world", false]], "image_world_iter() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_world_iter", false]], "image_z_to_world() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_z_to_world", false]], "imageworldshot (class in borea.transform_world_image.transform_shot.image_world_shot)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot", false]], "imageworldwork (class in borea.transform_world_image.transform_worksite.image_world_work)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork", false]], "indent() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.indent", false]], "init_eucli_points() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.init_eucli_points", false]], "init_kappa() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.init_kappa", false]], "intersection_line_3d() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.intersection_line_3d", false]], "intersection_pt_in_2shot() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.intersection_pt_in_2shot", false]], "invert_diag_sparse_matrix_3_3() (in module borea.utils.miscellaneous.sparse)": [[18, "borea.utils.miscellaneous.sparse.invert_diag_sparse_matrix_3_3", false]], "least_square_intersect() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.least_square_intersect", false]], "least_square_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.least_square_rpc", false]], "least_square_shot() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.least_square_shot", false]], "local_to_eucli() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.local_to_eucli", false]], "localeuclideanproj (class in borea.geodesy.local_euclidean_proj)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj", false]], "main_stat_and_save() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_and_save", false]], "main_stat_image_to_world() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_image_to_world", false]], "main_stat_world_to_image() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_world_to_image", false]], "manage_image_world() (borea.transform_world_image.transform_worksite.image_world_work.imageworldwork method)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork.manage_image_world", false]], "manager_writer() (in module borea.writer.manage_writer)": [[22, "borea.writer.manage_writer.manager_writer", false]], "mat_eucli_to_mat() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.mat_eucli_to_mat", false]], "mat_eucli_to_mat() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_eucli_to_mat", false]], "mat_obs_axia() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.mat_obs_axia", false]], "mat_rot_euclidean_local() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_rot_euclidean_local", false]], "mat_to_mat_eucli() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.mat_to_mat_eucli", false]], "mat_to_mat_eucli() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_to_mat_eucli", false]], "min_max_pt() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.min_max_pt", false]], "module": [[0, "module-borea", false], [1, "module-borea.datastruct", false], [1, "module-borea.datastruct.camera", false], [1, "module-borea.datastruct.dtm", false], [1, "module-borea.datastruct.gcp", false], [1, "module-borea.datastruct.shot", false], [1, "module-borea.datastruct.workdata", false], [2, "module-borea.format", false], [2, "module-borea.format.conl", false], [2, "module-borea.format.rpc", false], [3, "module-borea.geodesy", false], [3, "module-borea.geodesy.approx_euclidean_proj", false], [3, "module-borea.geodesy.euclidean_proj", false], [3, "module-borea.geodesy.local_euclidean_proj", false], [3, "module-borea.geodesy.proj_engine", false], [3, "module-borea.geodesy.transform_geodesy", false], [4, "module-borea.geodesy.projectionlist", false], [4, "module-borea.geodesy.projectionlist.search_proj", false], [5, "module-borea.process", false], [6, "module-borea.process.p_add_data", false], [6, "module-borea.process.p_add_data.p_add_shot", false], [6, "module-borea.process.p_add_data.p_file_gcp2d", false], [6, "module-borea.process.p_add_data.p_file_gcp3d", false], [6, "module-borea.process.p_add_data.p_gen_param", false], [6, "module-borea.process.p_add_data.p_pt2d", false], [6, "module-borea.process.p_add_data.p_pt3d", false], [6, "module-borea.process.p_add_data.p_unit_shot", false], [6, "module-borea.process.p_add_data.p_write", false], [7, "module-borea.process.p_format", false], [7, "module-borea.process.p_format.p_read_opk", false], [7, "module-borea.process.p_format.p_write_con", false], [7, "module-borea.process.p_format.p_write_opk", false], [7, "module-borea.process.p_format.p_write_rpc", false], [8, "module-borea.process.p_func", false], [8, "module-borea.process.p_func.p_control", false], [8, "module-borea.process.p_func.p_image_world", false], [8, "module-borea.process.p_func.p_spaceresection", false], [8, "module-borea.process.p_func.p_world_image", false], [9, "module-borea.reader", false], [9, "module-borea.reader.reader_camera", false], [9, "module-borea.reader.reader_point", false], [10, "module-borea.reader.orientation", false], [10, "module-borea.reader.orientation.manage_reader", false], [10, "module-borea.reader.orientation.reader_opk", false], [11, "module-borea.stat", false], [11, "module-borea.stat.statistics", false], [12, "module-borea.transform_world_image", false], [13, "module-borea.transform_world_image.transform_dtm", false], [13, "module-borea.transform_world_image.transform_dtm.world_image_dtm", false], [14, "module-borea.transform_world_image.transform_shot", false], [14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot", false], [14, "module-borea.transform_world_image.transform_shot.image_world_shot", false], [14, "module-borea.transform_world_image.transform_shot.world_image_shot", false], [15, "module-borea.transform_world_image.transform_worksite", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_intersection", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_least_square", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_work", false], [15, "module-borea.transform_world_image.transform_worksite.space_resection", false], [15, "module-borea.transform_world_image.transform_worksite.world_image_work", false], [16, "module-borea.utils", false], [17, "module-borea.utils.check", false], [17, "module-borea.utils.check.check_args_opk", false], [17, "module-borea.utils.check.check_args_reader_pt", false], [17, "module-borea.utils.check.check_array", false], [17, "module-borea.utils.check.check_header", false], [17, "module-borea.utils.check.check_order_axe", false], [18, "module-borea.utils.miscellaneous", false], [18, "module-borea.utils.miscellaneous.miscellaneous", false], [18, "module-borea.utils.miscellaneous.param_bundle", false], [18, "module-borea.utils.miscellaneous.sparse", false], [19, "module-borea.utils.singleton", false], [19, "module-borea.utils.singleton.singleton", false], [20, "module-borea.utils.xml", false], [20, "module-borea.utils.xml.xml", false], [21, "module-borea.worksite", false], [21, "module-borea.worksite.worksite", false], [22, "module-borea.writer", false], [22, "module-borea.writer.manage_writer", false], [22, "module-borea.writer.writer_con", false], [22, "module-borea.writer.writer_df_to_txt", false], [22, "module-borea.writer.writer_opk", false], [22, "module-borea.writer.writer_rpc", false]], "name_camera (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.name_camera", false]], "name_gcp (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.name_gcp", false]], "normalize() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.normalize", false]], "normalize_data() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.normalize_data", false]], "ppax (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.ppax", false]], "ppay (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.ppay", false]], "process_add_shot() (in module borea.process.p_add_data.p_add_shot)": [[6, "borea.process.p_add_data.p_add_shot.process_add_shot", false]], "process_args_control() (in module borea.process.p_func.p_control)": [[8, "borea.process.p_func.p_control.process_args_control", false]], "process_args_gen_param() (in module borea.process.p_add_data.p_gen_param)": [[6, "borea.process.p_add_data.p_gen_param.process_args_gen_param", false]], "process_args_read_opk() (in module borea.process.p_format.p_read_opk)": [[7, "borea.process.p_format.p_read_opk.process_args_read_opk", false]], "process_args_write_con() (in module borea.process.p_format.p_write_con)": [[7, "borea.process.p_format.p_write_con.process_args_write_con", false]], "process_args_write_opk() (in module borea.process.p_format.p_write_opk)": [[7, "borea.process.p_format.p_write_opk.process_args_write_opk", false]], "process_args_write_rpc() (in module borea.process.p_format.p_write_rpc)": [[7, "borea.process.p_format.p_write_rpc.process_args_write_rpc", false]], "process_gcp2d() (in module borea.process.p_add_data.p_file_gcp2d)": [[6, "borea.process.p_add_data.p_file_gcp2d.process_gcp2d", false]], "process_gcp3d() (in module borea.process.p_add_data.p_file_gcp3d)": [[6, "borea.process.p_add_data.p_file_gcp3d.process_gcp3d", false]], "process_image_world() (in module borea.process.p_add_data.p_pt2d)": [[6, "borea.process.p_add_data.p_pt2d.process_image_world", false]], "process_image_world() (in module borea.process.p_func.p_image_world)": [[8, "borea.process.p_func.p_image_world.process_image_world", false]], "process_space_resection() (in module borea.process.p_func.p_spaceresection)": [[8, "borea.process.p_func.p_spaceresection.process_space_resection", false]], "process_world_image() (in module borea.process.p_add_data.p_pt3d)": [[6, "borea.process.p_add_data.p_pt3d.process_world_image", false]], "process_world_image() (in module borea.process.p_func.p_world_image)": [[8, "borea.process.p_func.p_world_image.process_world_image", false]], "proj (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.proj", false]], "projengine (class in borea.geodesy.proj_engine)": [[3, "borea.geodesy.proj_engine.ProjEngine", false]], "read() (in module borea.reader.orientation.reader_opk)": [[10, "borea.reader.orientation.reader_opk.read", false]], "read_camera() (in module borea.reader.reader_camera)": [[9, "borea.reader.reader_camera.read_camera", false]], "read_file_pt() (in module borea.reader.reader_point)": [[9, "borea.reader.reader_point.read_file_pt", false]], "read_file_pt_dataframe() (in module borea.reader.reader_point)": [[9, "borea.reader.reader_point.read_file_pt_dataframe", false]], "reader_orientation() (in module borea.reader.orientation.manage_reader)": [[10, "borea.reader.orientation.manage_reader.reader_orientation", false]], "rpc (class in borea.format.rpc)": [[2, "borea.format.rpc.Rpc", false]], "save_conl() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.save_conl", false]], "save_stat_txt() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.save_stat_txt", false]], "search_info() (in module borea.geodesy.projectionlist.search_proj)": [[4, "borea.geodesy.projectionlist.search_proj.search_info", false]], "seed_20_point() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.seed_20_point", false]], "set_approx_eucli_proj() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_approx_eucli_proj", false]], "set_camera_xml() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.set_camera_xml", false]], "set_cval() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_cval", false]], "set_dtm() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_dtm", false]], "set_dtm() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_dtm", false]], "set_epsg() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.set_epsg", false]], "set_epsg_tf_geog_output() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.set_epsg_tf_geog_output", false]], "set_geometry_xml() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.set_geometry_xml", false]], "set_keep_memory() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_keep_memory", false]], "set_linear_alteration() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_linear_alteration", false]], "set_order() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_order", false]], "set_order_axe() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_order_axe", false]], "set_param_bundle_diff() (in module borea.utils.miscellaneous.param_bundle)": [[18, "borea.utils.miscellaneous.param_bundle.set_param_bundle_diff", false]], "set_param_eucli_shot() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_param_eucli_shot", false]], "set_param_shot() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_param_shot", false]], "set_point_image_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_point_image_dataframe", false]], "set_point_world_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_point_world_dataframe", false]], "set_proj() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_proj", false]], "set_rot_shot() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_rot_shot", false]], "set_type_z() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_type_z", false]], "set_type_z_data() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_type_z_data", false]], "set_type_z_shot() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_type_z_shot", false]], "set_unit_angle() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_unit_angle", false]], "set_unit_shot() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_unit_shot", false]], "set_z_nadir() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_z_nadir", false]], "setup_matrix_obs_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.setup_matrix_obs_rpc", false]], "shot (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.shot", false]], "shot (class in borea.datastruct.shot)": [[1, "borea.datastruct.shot.Shot", false]], "singleton (class in borea.utils.singleton.singleton)": [[19, "borea.utils.singleton.singleton.Singleton", false]], "space_resection_gap() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_gap", false]], "space_resection_on_worksite() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_on_worksite", false]], "space_resection_shot() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_shot", false]], "space_resection_to_worksite() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_to_worksite", false]], "spaceresection (class in borea.transform_world_image.transform_worksite.space_resection)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection", false]], "stat (class in borea.stat.statistics)": [[11, "borea.stat.statistics.Stat", false]], "stat_image_to_world() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_image_to_world", false]], "stat_list() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_list", false]], "stat_world_to_image() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_world_to_image", false]], "take_obs() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.take_obs", false]], "tf_geoid() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tf_geoid", false]], "tf_output() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tf_output", false]], "tranform_altitude() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tranform_altitude", false]], "tranform_height() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tranform_height", false]], "transformgeodesy (class in borea.geodesy.transform_geodesy)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy", false]], "width (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.width", false]], "work (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.work", false]], "work (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.work", false]], "work (borea.transform_world_image.transform_worksite.image_world_work.imageworldwork attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork.work", false]], "work (borea.transform_world_image.transform_worksite.world_image_work.worldimagework attribute)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork.work", false]], "workdata (class in borea.datastruct.workdata)": [[1, "borea.datastruct.workdata.Workdata", false]], "worksite (class in borea.worksite.worksite)": [[21, "borea.worksite.worksite.Worksite", false]], "world_to_eucli() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.world_to_eucli", false]], "world_to_eucli() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.world_to_eucli", false]], "world_to_image() (borea.transform_world_image.transform_dtm.world_image_dtm.worldimagedtm method)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm.world_to_image", false]], "world_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.world_to_image", false]], "worldimagedtm (class in borea.transform_world_image.transform_dtm.world_image_dtm)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm", false]], "worldimageshot (class in borea.transform_world_image.transform_shot.world_image_shot)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot", false]], "worldimagework (class in borea.transform_world_image.transform_worksite.world_image_work)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork", false]], "worldintersection (class in borea.transform_world_image.transform_worksite.image_world_intersection)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection", false]], "worldleastsquare (class in borea.transform_world_image.transform_worksite.image_world_least_square)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare", false]], "write() (in module borea.writer.writer_con)": [[22, "borea.writer.writer_con.write", false]], "write() (in module borea.writer.writer_opk)": [[22, "borea.writer.writer_opk.write", false]], "write() (in module borea.writer.writer_rpc)": [[22, "borea.writer.writer_rpc.write", false]], "write_df_to_txt() (in module borea.writer.writer_df_to_txt)": [[22, "borea.writer.writer_df_to_txt.write_df_to_txt", false]], "write_stat() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.write_stat", false]], "x_central (borea.geodesy.euclidean_proj.euclideanproj attribute)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj.x_central", false]], "y_central (borea.geodesy.euclidean_proj.euclideanproj attribute)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj.y_central", false]]}, "objects": {"": [[0, 0, 0, "-", "borea"]], "borea": [[1, 0, 0, "-", "datastruct"], [2, 0, 0, "-", "format"], [3, 0, 0, "-", "geodesy"], [5, 0, 0, "-", "process"], [9, 0, 0, "-", "reader"], [11, 0, 0, "-", "stat"], [12, 0, 0, "-", "transform_world_image"], [16, 0, 0, "-", "utils"], [21, 0, 0, "-", "worksite"], [22, 0, 0, "-", "writer"]], "borea.datastruct": [[1, 0, 0, "-", "camera"], [1, 0, 0, "-", "dtm"], [1, 0, 0, "-", "gcp"], [1, 0, 0, "-", "shot"], [1, 0, 0, "-", "workdata"]], "borea.datastruct.camera": [[1, 1, 1, "", "Camera"]], "borea.datastruct.camera.Camera": [[1, 2, 1, "", "focal"], [1, 2, 1, "", "height"], [1, 2, 1, "", "name_camera"], [1, 2, 1, "", "ppax"], [1, 2, 1, "", "ppay"], [1, 2, 1, "", "width"]], "borea.datastruct.dtm": [[1, 1, 1, "", "Dtm"]], "borea.datastruct.dtm.Dtm": [[1, 3, 1, "", "get_z_world"], [1, 3, 1, "", "set_cval"], [1, 3, 1, "", "set_dtm"], [1, 3, 1, "", "set_keep_memory"], [1, 3, 1, "", "set_order"]], "borea.datastruct.gcp": [[1, 1, 1, "", "GCP"]], "borea.datastruct.gcp.GCP": [[1, 2, 1, "", "code"], [1, 2, 1, "", "coor"], [1, 2, 1, "", "name_gcp"]], "borea.datastruct.shot": [[1, 1, 1, "", "Shot"]], "borea.datastruct.shot.Shot": [[1, 3, 1, "", "from_param_euclidean"], [1, 3, 1, "", "get_z_add_scale_factor"], [1, 3, 1, "", "get_z_remove_scale_factor"], [1, 3, 1, "", "set_linear_alteration"], [1, 3, 1, "", "set_order_axe"], [1, 3, 1, "", "set_param_eucli_shot"], [1, 3, 1, "", "set_rot_shot"], [1, 3, 1, "", "set_type_z"], [1, 3, 1, "", "set_unit_angle"], [1, 3, 1, "", "set_z_nadir"]], "borea.datastruct.workdata": [[1, 1, 1, "", "Workdata"]], "borea.datastruct.workdata.Workdata": [[1, 3, 1, "", "add_camera"], [1, 3, 1, "", "add_co_point"], [1, 3, 1, "", "add_gcp2d"], [1, 3, 1, "", "add_gcp3d"], [1, 3, 1, "", "add_shot"], [1, 3, 1, "", "set_approx_eucli_proj"], [1, 3, 1, "", "set_dtm"], [1, 3, 1, "", "set_proj"], [1, 3, 1, "", "set_type_z_data"], [1, 3, 1, "", "set_type_z_shot"]], "borea.format": [[2, 0, 0, "-", "conl"], [2, 0, 0, "-", "rpc"]], "borea.format.conl": [[2, 1, 1, "", "Conl"]], "borea.format.conl.Conl": [[2, 2, 1, "", "cam"], [2, 2, 1, "", "proj"], [2, 3, 1, "", "save_conl"], [2, 3, 1, "", "set_camera_xml"], [2, 3, 1, "", "set_geometry_xml"], [2, 2, 1, "", "shot"]], "borea.format.rpc": [[2, 1, 1, "", "Rpc"]], "borea.format.rpc.Rpc": [[2, 3, 1, "", "create_grid_rpc"], [2, 3, 1, "", "from_shot"], [2, 3, 1, "", "least_square_rpc"], [2, 3, 1, "", "normalize_data"], [2, 3, 1, "", "setup_matrix_obs_rpc"]], "borea.geodesy": [[3, 0, 0, "-", "approx_euclidean_proj"], [3, 0, 0, "-", "euclidean_proj"], [3, 0, 0, "-", "local_euclidean_proj"], [3, 0, 0, "-", "proj_engine"], [4, 0, 0, "-", "projectionlist"], [3, 0, 0, "-", "transform_geodesy"]], "borea.geodesy.approx_euclidean_proj": [[3, 1, 1, "", "ApproxEuclideanProj"]], "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj": [[3, 3, 1, "", "eucli_to_world"], [3, 3, 1, "", "mat_eucli_to_mat"], [3, 3, 1, "", "mat_to_mat_eucli"], [3, 3, 1, "", "world_to_eucli"]], "borea.geodesy.euclidean_proj": [[3, 1, 1, "", "EuclideanProj"]], "borea.geodesy.euclidean_proj.EuclideanProj": [[3, 2, 1, "", "x_central"], [3, 2, 1, "", "y_central"]], "borea.geodesy.local_euclidean_proj": [[3, 1, 1, "", "LocalEuclideanProj"]], "borea.geodesy.local_euclidean_proj.LocalEuclideanProj": [[3, 3, 1, "", "eucli_to_world"], [3, 3, 1, "", "mat_eucli_to_mat"], [3, 3, 1, "", "mat_rot_euclidean_local"], [3, 3, 1, "", "mat_to_mat_eucli"], [3, 3, 1, "", "world_to_eucli"]], "borea.geodesy.proj_engine": [[3, 1, 1, "", "ProjEngine"]], "borea.geodesy.proj_engine.ProjEngine": [[3, 2, 1, "", "epsg"], [3, 2, 1, "", "epsg_output"], [3, 2, 1, "", "geoid"], [3, 3, 1, "", "get_meridian_convergence"], [3, 3, 1, "", "get_scale_factor"], [3, 3, 1, "", "set_epsg"], [3, 3, 1, "", "set_epsg_tf_geog_output"]], "borea.geodesy.projectionlist": [[4, 0, 0, "-", "search_proj"]], "borea.geodesy.projectionlist.search_proj": [[4, 4, 1, "", "convert_line_list"], [4, 4, 1, "", "search_info"]], "borea.geodesy.transform_geodesy": [[3, 1, 1, "", "TransformGeodesy"]], "borea.geodesy.transform_geodesy.TransformGeodesy": [[3, 2, 1, "", "carto_to_geoc"], [3, 2, 1, "", "carto_to_geog"], [3, 2, 1, "", "carto_to_geog_out"], [3, 2, 1, "", "geoc_to_carto"], [3, 2, 1, "", "geog_to_carto"], [3, 2, 1, "", "geog_to_geoid"], [3, 2, 1, "", "geoid_to_geog"], [3, 3, 1, "", "tf_geoid"], [3, 3, 1, "", "tf_output"], [3, 3, 1, "", "tranform_altitude"], [3, 3, 1, "", "tranform_height"]], "borea.process": [[6, 0, 0, "-", "p_add_data"], [7, 0, 0, "-", "p_format"], [8, 0, 0, "-", "p_func"]], "borea.process.p_add_data": [[6, 0, 0, "-", "p_add_shot"], [6, 0, 0, "-", "p_file_gcp2d"], [6, 0, 0, "-", "p_file_gcp3d"], [6, 0, 0, "-", "p_gen_param"], [6, 0, 0, "-", "p_pt2d"], [6, 0, 0, "-", "p_pt3d"], [6, 0, 0, "-", "p_unit_shot"], [6, 0, 0, "-", "p_write"]], "borea.process.p_add_data.p_add_shot": [[6, 4, 1, "", "args_add_shot"], [6, 4, 1, "", "process_add_shot"]], "borea.process.p_add_data.p_file_gcp2d": [[6, 4, 1, "", "args_gcp2d"], [6, 4, 1, "", "process_gcp2d"]], "borea.process.p_add_data.p_file_gcp3d": [[6, 4, 1, "", "args_gcp3d"], [6, 4, 1, "", "process_gcp3d"]], "borea.process.p_add_data.p_gen_param": [[6, 4, 1, "", "args_general_param"], [6, 4, 1, "", "process_args_gen_param"]], "borea.process.p_add_data.p_pt2d": [[6, 4, 1, "", "args_add_pt2d"], [6, 4, 1, "", "process_image_world"]], "borea.process.p_add_data.p_pt3d": [[6, 4, 1, "", "args_add_pt3d"], [6, 4, 1, "", "process_world_image"]], "borea.process.p_add_data.p_unit_shot": [[6, 4, 1, "", "args_input_shot"], [6, 4, 1, "", "args_output_shot"]], "borea.process.p_add_data.p_write": [[6, 4, 1, "", "args_writer"]], "borea.process.p_format": [[7, 0, 0, "-", "p_read_opk"], [7, 0, 0, "-", "p_write_con"], [7, 0, 0, "-", "p_write_opk"], [7, 0, 0, "-", "p_write_rpc"]], "borea.process.p_format.p_read_opk": [[7, 4, 1, "", "args_reading_opk"], [7, 4, 1, "", "process_args_read_opk"]], "borea.process.p_format.p_write_con": [[7, 4, 1, "", "args_write_con"], [7, 4, 1, "", "process_args_write_con"]], "borea.process.p_format.p_write_opk": [[7, 4, 1, "", "args_writing_opk"], [7, 4, 1, "", "process_args_write_opk"]], "borea.process.p_format.p_write_rpc": [[7, 4, 1, "", "args_writing_rpc"], [7, 4, 1, "", "process_args_write_rpc"]], "borea.process.p_func": [[8, 0, 0, "-", "p_control"], [8, 0, 0, "-", "p_image_world"], [8, 0, 0, "-", "p_spaceresection"], [8, 0, 0, "-", "p_world_image"]], "borea.process.p_func.p_control": [[8, 4, 1, "", "args_control"], [8, 4, 1, "", "process_args_control"]], "borea.process.p_func.p_image_world": [[8, 4, 1, "", "args_image_world"], [8, 4, 1, "", "process_image_world"]], "borea.process.p_func.p_spaceresection": [[8, 4, 1, "", "args_space_resection"], [8, 4, 1, "", "process_space_resection"]], "borea.process.p_func.p_world_image": [[8, 4, 1, "", "args_world_image"], [8, 4, 1, "", "process_world_image"]], "borea.reader": [[10, 0, 0, "-", "orientation"], [9, 0, 0, "-", "reader_camera"], [9, 0, 0, "-", "reader_point"]], "borea.reader.orientation": [[10, 0, 0, "-", "manage_reader"], [10, 0, 0, "-", "reader_opk"]], "borea.reader.orientation.manage_reader": [[10, 4, 1, "", "reader_orientation"]], "borea.reader.orientation.reader_opk": [[10, 4, 1, "", "read"]], "borea.reader.reader_camera": [[9, 4, 1, "", "camera_txt"], [9, 4, 1, "", "read_camera"]], "borea.reader.reader_point": [[9, 4, 1, "", "read_file_pt"], [9, 4, 1, "", "read_file_pt_dataframe"]], "borea.stat": [[11, 0, 0, "-", "statistics"]], "borea.stat.statistics": [[11, 1, 1, "", "Stat"]], "borea.stat.statistics.Stat": [[11, 3, 1, "", "main_stat_and_save"], [11, 3, 1, "", "main_stat_image_to_world"], [11, 3, 1, "", "main_stat_world_to_image"], [11, 3, 1, "", "save_stat_txt"], [11, 3, 1, "", "stat_image_to_world"], [11, 3, 1, "", "stat_list"], [11, 3, 1, "", "stat_world_to_image"], [11, 3, 1, "", "write_stat"]], "borea.transform_world_image": [[13, 0, 0, "-", "transform_dtm"], [14, 0, 0, "-", "transform_shot"], [15, 0, 0, "-", "transform_worksite"]], "borea.transform_world_image.transform_dtm": [[13, 0, 0, "-", "world_image_dtm"]], "borea.transform_world_image.transform_dtm.world_image_dtm": [[13, 1, 1, "", "WorldImageDtm"]], "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm": [[13, 3, 1, "", "image_to_world"], [13, 3, 1, "", "world_to_image"]], "borea.transform_world_image.transform_shot": [[14, 0, 0, "-", "conversion_coor_shot"], [14, 0, 0, "-", "image_world_shot"], [14, 0, 0, "-", "world_image_shot"]], "borea.transform_world_image.transform_shot.conversion_coor_shot": [[14, 4, 1, "", "conv_output_z_type"], [14, 4, 1, "", "conv_z_shot_to_z_data"]], "borea.transform_world_image.transform_shot.image_world_shot": [[14, 1, 1, "", "ImageWorldShot"]], "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot": [[14, 3, 1, "", "image_to_bundle"], [14, 3, 1, "", "image_to_world"], [14, 3, 1, "", "image_world_iter"], [14, 3, 1, "", "image_z_to_world"], [14, 3, 1, "", "local_to_eucli"]], "borea.transform_world_image.transform_shot.world_image_shot": [[14, 1, 1, "", "WorldImageShot"]], "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot": [[14, 3, 1, "", "bundle_to_image"], [14, 3, 1, "", "eucli_to_bundle"], [14, 3, 1, "", "eucli_to_image"], [14, 3, 1, "", "world_to_image"]], "borea.transform_world_image.transform_worksite": [[15, 0, 0, "-", "image_world_intersection"], [15, 0, 0, "-", "image_world_least_square"], [15, 0, 0, "-", "image_world_work"], [15, 0, 0, "-", "space_resection"], [15, 0, 0, "-", "world_image_work"]], "borea.transform_world_image.transform_worksite.image_world_intersection": [[15, 1, 1, "", "WorldIntersection"]], "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection": [[15, 3, 1, "", "calculate_image_world_by_intersection"], [15, 3, 1, "", "comput_inter_in_2_more_distant_shot"], [15, 3, 1, "", "intersection_line_3d"], [15, 3, 1, "", "intersection_pt_in_2shot"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.image_world_least_square": [[15, 1, 1, "", "WorldLeastSquare"]], "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare": [[15, 3, 1, "", "compute_image_world_least_square"], [15, 3, 1, "", "create_mat_a_and_vect_residu"], [15, 3, 1, "", "init_eucli_points"], [15, 3, 1, "", "least_square_intersect"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.image_world_work": [[15, 1, 1, "", "ImageWorldWork"]], "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork": [[15, 3, 1, "", "manage_image_world"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.space_resection": [[15, 1, 1, "", "SpaceResection"]], "borea.transform_world_image.transform_worksite.space_resection.SpaceResection": [[15, 3, 1, "", "func_least_square"], [15, 3, 1, "", "init_kappa"], [15, 3, 1, "", "least_square_shot"], [15, 3, 1, "", "mat_obs_axia"], [15, 3, 1, "", "seed_20_point"], [15, 3, 1, "", "space_resection_gap"], [15, 3, 1, "", "space_resection_on_worksite"], [15, 3, 1, "", "space_resection_shot"], [15, 3, 1, "", "space_resection_to_worksite"], [15, 3, 1, "", "take_obs"]], "borea.transform_world_image.transform_worksite.world_image_work": [[15, 1, 1, "", "WorldImageWork"]], "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork": [[15, 3, 1, "", "calculate_world_to_image"], [15, 2, 1, "", "work"]], "borea.utils": [[17, 0, 0, "-", "check"], [18, 0, 0, "-", "miscellaneous"], [19, 0, 0, "-", "singleton"], [20, 0, 0, "-", "xml"]], "borea.utils.check": [[17, 0, 0, "-", "check_args_opk"], [17, 0, 0, "-", "check_args_reader_pt"], [17, 0, 0, "-", "check_array"], [17, 0, 0, "-", "check_header"], [17, 0, 0, "-", "check_order_axe"]], "borea.utils.check.check_args_opk": [[17, 4, 1, "", "check_args_opk"], [17, 4, 1, "", "check_header_file"]], "borea.utils.check.check_args_reader_pt": [[17, 4, 1, "", "check_header_file"]], "borea.utils.check.check_array": [[17, 4, 1, "", "check_array_transfo"]], "borea.utils.check.check_header": [[17, 4, 1, "", "check_h_z"], [17, 4, 1, "", "check_head"], [17, 4, 1, "", "get_type_z_and_header"]], "borea.utils.check.check_order_axe": [[17, 4, 1, "", "check_order_axe"], [17, 4, 1, "", "convert_opk_to_xyz"]], "borea.utils.miscellaneous": [[18, 0, 0, "-", "miscellaneous"], [18, 0, 0, "-", "param_bundle"], [18, 0, 0, "-", "sparse"]], "borea.utils.miscellaneous.miscellaneous": [[18, 4, 1, "", "angle_degree_2vect"], [18, 4, 1, "", "dist_2pts"], [18, 4, 1, "", "min_max_pt"], [18, 4, 1, "", "normalize"]], "borea.utils.miscellaneous.param_bundle": [[18, 4, 1, "", "set_param_bundle_diff"]], "borea.utils.miscellaneous.sparse": [[18, 4, 1, "", "invert_diag_sparse_matrix_3_3"]], "borea.utils.singleton": [[19, 0, 0, "-", "singleton"]], "borea.utils.singleton.singleton": [[19, 1, 1, "", "Singleton"]], "borea.utils.singleton.singleton.Singleton": [[19, 3, 1, "", "clear"]], "borea.utils.xml": [[20, 0, 0, "-", "xml"]], "borea.utils.xml.xml": [[20, 4, 1, "", "add_elem"], [20, 4, 1, "", "format_xml"], [20, 4, 1, "", "indent"]], "borea.worksite": [[21, 0, 0, "-", "worksite"]], "borea.worksite.worksite": [[21, 1, 1, "", "Worksite"]], "borea.worksite.worksite.Worksite": [[21, 3, 1, "", "calculate_barycentre"], [21, 3, 1, "", "get_attr_transfo_pt"], [21, 3, 1, "", "get_coor_pt_img_and_world"], [21, 3, 1, "", "get_point_image_dataframe"], [21, 3, 1, "", "get_point_world_dataframe"], [21, 3, 1, "", "set_param_shot"], [21, 3, 1, "", "set_point_image_dataframe"], [21, 3, 1, "", "set_point_world_dataframe"], [21, 3, 1, "", "set_unit_shot"]], "borea.writer": [[22, 0, 0, "-", "manage_writer"], [22, 0, 0, "-", "writer_con"], [22, 0, 0, "-", "writer_df_to_txt"], [22, 0, 0, "-", "writer_opk"], [22, 0, 0, "-", "writer_rpc"]], "borea.writer.manage_writer": [[22, 4, 1, "", "manager_writer"]], "borea.writer.writer_con": [[22, 4, 1, "", "write"]], "borea.writer.writer_df_to_txt": [[22, 4, 1, "", "write_df_to_txt"]], "borea.writer.writer_opk": [[22, 4, 1, "", "write"]], "borea.writer.writer_rpc": [[22, 4, 1, "", "write"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:function"}, "terms": {"": [11, 15, 18, 19], "0": [1, 14, 15, 18, 20], "1": [1, 2, 10, 15, 17], "10": [2, 3, 6, 7, 8, 20], "100": 2, "11": 1, "12": 1, "13": 1, "2": [1, 2, 15, 18], "20": 15, "2154": [1, 3], "2d": [1, 6, 13, 18], "3": [1, 2, 15], "3d": [6, 15], "5": 1, "5f": 20, "6": [8, 15], "A": [1, 2, 3, 10, 15, 17, 18], "And": 1, "For": 15, "If": [1, 2, 15], "It": 19, "NOT": [1, 14], "One": [1, 4], "The": [1, 2, 3, 10, 14, 15, 18, 20, 21, 22], "To": [14, 15], "__init__": 3, "absolut": 11, "account": [10, 17], "acornu": 3, "acquisit": [1, 2, 15], "ad": [1, 6, 15], "add": [1, 2, 6, 7, 8, 10, 15, 20], "add_camera": [0, 1], "add_co_point": [0, 1], "add_elem": [16, 20], "add_gcp2d": [0, 1], "add_gcp3d": [0, 1], "add_pixel": 15, "add_shot": [0, 1], "adjust": 15, "after": 1, "agr": [1, 9], "aim": 19, "all": [1, 4, 11, 15, 17, 21], "allow": [1, 3, 21], "alter": [1, 2, 10, 14, 17, 22], "altitud": [1, 3, 14, 17], "alwai": [1, 2], "an": [1, 3, 10, 14, 15, 17, 18, 22], "angl": [1, 10, 15, 17, 18, 21, 22], "angle_degree_2vect": [16, 18], "ani": [1, 20], "app": 9, "appear": 15, "appli": [6, 7, 8], "approx": [1, 14, 21], "approx_euclidean_proj": [0, 24], "approxeucli": 1, "approxeuclideanproj": [0, 3], "approxim": 3, "apprx": 1, "ar": [1, 3, 17], "aren": 15, "arg": [1, 3, 6, 7, 8, 10, 17, 22], "argpars": [6, 7, 8], "args_add_pt2d": [5, 6], "args_add_pt3d": [5, 6], "args_add_shot": [5, 6], "args_control": [5, 8], "args_gcp2d": [5, 6], "args_gcp3d": [5, 6], "args_general_param": [5, 6], "args_image_world": [5, 8], "args_input_shot": [5, 6], "args_output_shot": [5, 6], "args_reading_opk": [5, 7], "args_space_resect": [5, 8], "args_world_imag": [5, 8], "args_writ": [5, 6], "args_write_con": [5, 7], "args_writing_opk": [5, 7], "args_writing_rpc": [5, 7], "argspars": [6, 7, 8], "argument": [6, 7, 8], "arithmet": 11, "around": 2, "arrai": [1, 2, 3, 13, 14, 15, 17, 18, 21], "arrang": 9, "ask": [3, 14], "attribut": [1, 3, 21], "ax": [1, 10, 17, 22], "axiat": 15, "b": 15, "bad_head": 17, "balis": [2, 20], "barycentr": 21, "base": [1, 2, 3, 11, 13, 14, 15, 19, 21], "bdortho": 4, "beam": 18, "begin": 22, "belong": 19, "between": [1, 3, 15, 17, 18], "bilinear": 1, "block": 18, "bool": [1, 2, 10, 14, 17, 21, 22], "boolean": [1, 17], "borea": 23, "borea_env": 3, "buffer": 2, "build": 1, "bundl": [14, 15, 18], "bundle_to_imag": [12, 14], "c": [2, 14], "c_ob": 15, "calcul": [2, 6, 8, 11, 14, 15, 18, 21, 22], "calculate_barycentr": [0, 21], "calculate_image_world_by_intersect": [12, 15], "calculate_world_to_imag": [12, 15], "calcult": 15, "cam": [0, 2, 14, 15], "camera": [0, 2, 9, 14, 15, 24], "camera_txt": [0, 9], "carto_to_geoc": [0, 3], "carto_to_geog": [0, 3], "carto_to_geog_out": [0, 3], "cartograph": 3, "cartographiqu": 14, "categori": 19, "center": 1, "centr": 3, "central": 3, "chang": [1, 15, 21], "check": [0, 15, 16], "check_args_opk": [0, 16], "check_args_reader_pt": [0, 16], "check_arrai": [0, 16], "check_array_transfo": [16, 17], "check_h_z": [16, 17], "check_head": [0, 16], "check_header_fil": [16, 17], "check_lett": 17, "check_order_ax": [0, 16], "class": [1, 2, 3, 11, 13, 14, 15, 19, 21, 22], "classmethod": [1, 2], "clear": [16, 19], "co": 15, "co_point": [1, 9, 15, 17, 21], "code": [0, 1, 3, 15, 17, 22], "code_gcp": 1, "code_git": 3, "coeffici": 2, "col": [2, 14], "collinear": 3, "column": [1, 2, 9, 10, 13, 15, 17, 21, 22], "combin": 17, "comput": [2, 3, 13], "comput_inter_in_2_more_distant_shot": [12, 15], "compute_image_world_least_squar": [12, 15], "con": 22, "condit": 1, "conic": [2, 7, 22], "conl": [0, 24], "connect": [1, 9, 15], "construct": 1, "contain": [1, 17], "content": 24, "control": [1, 8, 11, 15, 21], "control_typ": [15, 21], "conv_output_z_typ": [12, 14], "conv_z_shot_to_z_data": [12, 14], "converg": [3, 15], "convers": [14, 17], "conversion_coor_shot": [0, 12], "convert": [2, 3, 4, 14, 17, 22], "convert_line_list": [3, 4], "convert_opk_to_xyz": [16, 17], "coodin": 14, "coor": [0, 1, 3, 14], "coor2d": 1, "coor_2d": 1, "coor_eucli": [3, 18], "coor_gcp": 1, "coor_img": 13, "coor_init": 15, "coor_world": [3, 13, 14], "coordin": [1, 2, 3, 6, 8, 13, 14, 15, 18, 22], "coordinn": 18, "coordonne": 15, "copoint": 15, "correct": [1, 2, 10, 17, 21, 22], "correspond": 15, "cr": 3, "creat": [2, 3], "create_grid_rpc": [0, 2], "create_mat_a_and_vect_residu": [12, 15], "creation": [2, 15, 19], "cubic": 1, "cval": 1, "data": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 21, 22], "data_input": 4, "data_list": 11, "datafram": [9, 15, 21, 22], "datastruct": [0, 24], "de": 1, "definit": 1, "degre": [1, 2, 3, 10, 17, 18, 22], "depend": [15, 21], "describ": 2, "design": 19, "df": 22, "dfpt": 15, "dict": [1, 2, 10, 11, 15, 17, 22], "dictionari": [2, 11, 22], "dictionnari": 15, "diff": 17, "differ": 21, "differenti": [1, 18], "digit": 1, "dim": [17, 18], "dimens": 17, "direct": 15, "dist_2pt": [16, 18], "distanc": [15, 18], "distant": 15, "distort": 1, "do": 15, "document": 3, "dtm": [0, 13, 19, 24], "du": 14, "dx": 15, "d\u00e9fault": 14, "e": [10, 17], "each": 15, "edg": 1, "elem": 20, "element": [4, 15, 17, 20], "elementtre": [2, 20], "elev": 1, "enough": 15, "epsg": [0, 1, 3, 4, 22], "epsg_out": 3, "epsg_output": [0, 3, 22], "equat": [3, 15], "error": [1, 17], "et": [2, 20], "etre": [2, 20], "eucli": 15, "eucli_to_bundl": [12, 14], "eucli_to_imag": [12, 14], "eucli_to_world": [0, 3], "euclidean": [1, 3, 14, 15, 18, 21], "euclidean_proj": [0, 24], "euclideanproj": [0, 3], "euclidian": 3, "euclidien": 15, "ex": [1, 3], "extern": [8, 15], "externa": 15, "extract": [1, 3], "fact_rpc": [2, 22], "factor": [1, 2, 3, 15, 22], "fals": [14, 17, 21], "field": 15, "file": [1, 2, 4, 6, 7, 8, 9, 10, 11, 17, 20, 22], "fill": 1, "first": [15, 18], "fisrt": 18, "fix": 15, "flaot": 1, "flip": 18, "float": [1, 3, 14, 15, 17, 18], "focal": [0, 1], "folder": 22, "folder_con": 22, "folder_rpc": 22, "form": 1, "formal": 17, "format": [0, 1, 9, 17, 20, 22, 24], "format_xml": [16, 20], "frame": 18, "frist": 15, "from": [2, 3, 6, 7, 8, 13, 15, 20], "from_param_euclidean": [0, 1], "from_shot": [0, 2], "func_least_squar": [12, 15], "function": [3, 10, 11, 13, 14, 17, 18, 20, 22], "g": [10, 17], "gcp": [0, 6, 15, 21, 24], "gcp2d": [1, 9, 15, 17, 21], "gcp3d": [9, 15, 17], "gdal": 1, "gener": 6, "geoc_to_carto": [0, 3], "geodesi": [0, 24], "geog_to_carto": [0, 3], "geog_to_geoid": [0, 3], "geograph": [2, 3], "geoid": [0, 1, 3], "geoid_to_geog": [0, 3], "geometri": 2, "georeferenc": 1, "geotiff": 1, "geoview": [2, 4, 7], "get": [1, 18, 21], "get_attr_transfo_pt": [0, 21], "get_coor_pt_img_and_world": [0, 21], "get_meridian_converg": [0, 3], "get_point_image_datafram": [0, 21], "get_point_world_datafram": [0, 21], "get_scale_factor": [0, 3], "get_type_z_and_head": [16, 17], "get_z_add_scale_factor": [0, 1], "get_z_remove_scale_factor": [0, 1], "get_z_world": [0, 1], "give": 1, "given": [14, 15], "good": 17, "grid": [1, 2], "grid_img": 2, "grid_world": 2, "ground": [1, 6, 11, 14, 15], "gt": 13, "h": [1, 17], "head": 17, "header": [4, 9, 10, 17, 22], "height": [0, 1, 3, 14, 15, 17], "home": 3, "i": [1, 2, 3, 9, 10, 14, 15, 17, 19, 20, 21, 22], "id_img": [15, 21], "id_pt": [15, 21], "ign": [1, 2, 7], "imag": [1, 2, 6, 8, 11, 13, 14, 15, 18, 21], "image_to_bundl": [12, 14], "image_to_world": [12, 13, 14], "image_world_intersect": [0, 12], "image_world_it": [12, 14], "image_world_least_squar": [0, 12], "image_world_shot": [0, 12], "image_world_work": [0, 12], "image_z_to_world": [12, 14], "imageworldshot": [12, 14], "imageworldwork": [12, 15], "imc_adjust": 15, "img_coor": 14, "img_norm": 2, "implement": [3, 20], "indent": [16, 20], "index": [18, 23], "inform": [1, 10, 17, 22], "init": 3, "init_eucli_point": [12, 15], "init_kappa": [12, 15], "initi": 15, "input": [4, 14], "instanc": 19, "instanti": 19, "int": [1, 2, 3, 15, 20], "inter": 15, "interpol": 1, "intersect": 15, "intersection_line_3d": [12, 15], "intersection_pt_in_2shot": [12, 15], "interv": [10, 17], "invers": 18, "invert_diag_sparse_matrix_3_3": [16, 18], "io": 11, "item": 20, "its": 15, "j": [10, 17], "kappa": [1, 15], "keep_in_memori": 1, "keep_memori": 1, "kei": [1, 2, 10, 17, 22], "known": 3, "kwarg": [1, 3], "l": [2, 14], "l_ob": 15, "la": 14, "lcode": 15, "least": [2, 15], "least_square_intersect": [12, 15], "least_square_rpc": [0, 2], "least_square_shot": [12, 15], "letter": 17, "level": 20, "lib": [2, 3, 6, 7, 8, 20], "light": 2, "linalt": 2, "line": [1, 2, 4, 10, 13, 14, 15, 17, 21], "linear": [1, 2, 10, 14, 17, 22], "linear_alter": [1, 10, 17, 21, 22], "link": [1, 21], "list": [1, 3, 4, 9, 10, 11, 15, 17, 20, 21, 22], "list_data": 4, "list_lett": 17, "list_shot": 15, "local": [3, 14], "local_euclidean_proj": [0, 24], "local_to_eucli": [12, 14], "localeuclideanproj": [0, 3], "m": 18, "maco": 2, "main": 21, "main_stat_and_sav": [0, 11], "main_stat_image_to_world": [0, 11], "main_stat_world_to_imag": [0, 11], "make": 15, "manag": [9, 17], "manage_image_world": [12, 15], "manage_read": [0, 9], "manage_writ": [0, 24], "manager_writ": [0, 22], "manipul": [1, 3], "mapinfo": 4, "marker": 15, "mat": [3, 18], "mat_a": 15, "mat_eucli": 3, "mat_eucli_to_mat": [0, 3], "mat_inv": 18, "mat_obs_axia": [12, 15], "mat_ori_eucli": 1, "mat_rot_eucli": 1, "mat_rot_euclidean_loc": [0, 3], "mat_to_mat_eucli": [0, 3], "math": 18, "matric": [1, 21], "matrix": [1, 2, 3, 10, 15, 17, 18, 22], "max": [11, 18], "me": 9, "mean": [1, 11, 15], "median": 11, "memori": 1, "meridian": 3, "messag": 17, "method": [1, 2, 15], "min": [11, 18], "min_max_pt": [16, 18], "miscellan": [0, 16], "misss": 17, "model": 1, "modifi": [1, 14], "modul": [23, 24], "most": 15, "ms_error": 17, "ms_error_lett": 17, "must": [1, 3, 17], "n": [17, 18], "nadir": [1, 14], "name": [1, 15, 20, 21, 22], "name_cam": 1, "name_camera": [0, 1], "name_gcp": [0, 1], "name_opk": 22, "name_point": [1, 15], "name_pt": 15, "name_shot": [1, 15, 21], "nbr_inc": 15, "nbr_ob": 15, "ndarrai": [1, 2, 3, 13, 14, 15, 17, 18, 21], "nearest": 1, "need": 9, "new": [1, 3], "nodata": 1, "nonadir": 14, "none": [1, 2, 3, 6, 7, 8, 9, 10, 11, 15, 17, 20, 21, 22], "normal": [2, 16, 18], "normalize_data": [0, 2], "np": [1, 2, 3, 13, 14, 15, 17, 18, 21], "number": [15, 20], "numpi": 1, "ob": 15, "object": [1, 2, 3, 4, 10, 11, 13, 14, 15, 19], "obs_imag": [15, 21], "observ": [2, 15], "offset": 18, "omega": [1, 15], "one": [1, 2, 6, 18], "oopk": 17, "opk": [6, 7, 10, 17, 22], "order": [1, 2, 10, 17, 21, 22], "order_ax": [1, 10, 17, 21, 22], "ori": 2, "ori_shot": 1, "orient": [0, 1, 9, 15], "other": [10, 22], "outil_sia": 3, "output": [3, 4, 14, 17, 22], "outsid": 1, "p_add_data": [0, 5], "p_add_shot": [0, 5], "p_bundl": 14, "p_control": [0, 5], "p_eucli": 14, "p_file_gcp2d": [0, 5], "p_file_gcp3d": [0, 5], "p_format": [0, 5], "p_func": [0, 5], "p_gen_param": [0, 5], "p_image_world": [0, 5], "p_pt2d": [0, 5], "p_pt3d": [0, 5], "p_read_opk": [0, 5], "p_spaceresect": [0, 5], "p_unit_shot": [0, 5], "p_world_imag": [0, 5], "p_write": [0, 5], "p_write_con": [0, 5], "p_write_opk": [0, 5], "p_write_rpc": [0, 5], "packag": [23, 24], "page": 23, "panda": 21, "par": 14, "param_bundl": [0, 16], "param_con": 22, "param_rpc": [2, 22], "paramet": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22], "parent": [3, 13], "parser": [6, 7, 8], "part": 1, "past": 1, "path": [1, 2, 9, 10, 22], "path_con": 2, "path_dtm": 1, "path_geoid": 1, "path_opk": 22, "pathoutput": 11, "pathreturn": 22, "pattern": 19, "pd": [9, 15, 21, 22], "pd_me": [15, 21], "pd_mes_temp": 15, "pd_pnt": 15, "percentag": 15, "perform": 1, "phi": [1, 15], "photogrametriqu": 8, "photogrammetr": [10, 22], "photogrammetri": [10, 22], "pinit": 15, "pixel": [1, 15], "point": [1, 2, 3, 6, 9, 11, 14, 15, 17, 18, 21], "point1": 15, "point2": 15, "polynom": [2, 22], "polynomi": 2, "polynomial_degre": 2, "porject": 1, "pos_eucli": [1, 14], "pos_shot": 1, "pos_shot_eucli": 1, "posit": [1, 14, 15, 18], "possibl": 17, "ppai": [0, 1], "ppax": [0, 1], "prec": 20, "precis": [1, 20], "process": [0, 14, 15, 24], "process_add_shot": [5, 6], "process_args_control": [5, 8], "process_args_gen_param": [5, 6], "process_args_read_opk": [5, 7], "process_args_write_con": [5, 7], "process_args_write_opk": [5, 7], "process_args_write_rpc": [5, 7], "process_gcp2d": [5, 6], "process_gcp3d": [5, 6], "process_image_world": [5, 6, 8], "process_space_resect": [5, 8], "process_world_imag": [5, 6, 8], "proj": [0, 2], "proj4": 4, "proj_engin": [0, 24], "project": [1, 2, 3, 22], "projectionlist": [0, 3], "projengin": [0, 1, 3, 19], "projeucli": 1, "provid": 3, "pt1": 18, "pt2": 18, "pt2d": [9, 15], "pt3d": [9, 15], "pt_bundl": 14, "pt_eucli": 15, "pt_img": 15, "pt_world": [15, 21], "put": 20, "py": [2, 3, 6, 7, 8, 20], "pyproj": 3, "python3": [2, 3, 6, 7, 8, 20], "quintic": 1, "r": 18, "radian": [1, 10, 17, 22], "rais": 1, "random": 15, "ratat": 17, "read": [1, 2, 6, 7, 9, 10, 17], "read_camera": [0, 9], "read_file_pt": [0, 9], "read_file_pt_datafram": [0, 9], "reader": [0, 17, 24], "reader_camera": [0, 24], "reader_opk": [0, 9], "reader_orient": [9, 10], "reader_point": [0, 24], "recalcul": 15, "recalcult": 15, "record": 22, "recov": 21, "refer": [3, 4, 18], "registr": 22, "remov": 1, "replac": 17, "repres": [1, 3], "request": 21, "research": 4, "resect": 15, "residu": [11, 15], "ressourc": 21, "restrict": 19, "result": [1, 15], "retriev": 21, "retun": 17, "return": [1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 21], "rotat": [1, 3, 10, 17, 18, 21, 22], "rpc": [0, 7, 22, 24], "same": 17, "save": [2, 9, 11, 21, 22], "save_conl": [0, 2], "save_stat_txt": [0, 11], "scale": [1, 3, 18], "scipi": 17, "script": [9, 10, 17], "sd": 4, "search": [15, 23], "search_info": [3, 4], "search_proj": [0, 3], "second": [15, 18], "seed_20_point": [12, 15], "self": [1, 13], "set": [1, 15, 17, 18, 21], "set_approx_eucli_proj": [0, 1], "set_camera_xml": [0, 2], "set_cval": [0, 1], "set_dtm": [0, 1], "set_epsg": [0, 3], "set_epsg_tf_geog_output": [0, 3], "set_geometry_xml": [0, 2], "set_keep_memori": [0, 1], "set_linear_alter": [0, 1], "set_ord": [0, 1], "set_order_ax": [0, 1], "set_param_bundle_diff": [16, 18], "set_param_eucli_shot": [0, 1], "set_param_shot": [0, 21], "set_point_image_datafram": [0, 21], "set_point_world_datafram": [0, 21], "set_proj": [0, 1], "set_rot_shot": [0, 1], "set_type_z": [0, 1], "set_type_z_data": [0, 1], "set_type_z_shot": [0, 1], "set_unit_angl": [0, 1], "set_unit_shot": [0, 21], "set_z_nadir": [0, 1], "setter": 3, "setup": [1, 2], "setup_matrix_obs_rpc": [0, 2], "shoot": 15, "shot": [0, 2, 6, 8, 10, 14, 15, 17, 18, 21, 24], "shot1": 15, "shot2": 15, "shot_adjust": 15, "sigma": 11, "singl": 19, "singleton": [0, 16], "site": [3, 10, 11, 22], "size": 2, "size_grid": 2, "slinear": 1, "softwar": 2, "solv": 15, "sourc": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22], "space": 15, "space_resect": [0, 12], "space_resection_gap": [12, 15], "space_resection_on_worksit": [12, 15], "space_resection_shot": [12, 15], "space_resection_to_worksit": [12, 15], "spaceresect": [12, 15], "spars": [0, 16], "squar": [2, 15], "src": [2, 22], "stat": [0, 24], "stat_image_to_world": [0, 11], "stat_list": [0, 11], "stat_world_to_imag": [0, 11], "statist": [0, 24], "store": 1, "str": [1, 2, 4, 9, 10, 11, 14, 15, 17, 18, 20, 21, 22], "string": 21, "structur": 20, "submodul": [0, 5, 12, 16, 24], "subpackag": 24, "support": 1, "symbol": 17, "system": [1, 3, 14, 15, 21], "t": 15, "ta": 4, "tabl": [15, 21], "take": [14, 15, 21], "take_ob": [12, 15], "taken": [10, 17], "terrain": [14, 21], "textiowrapp": 11, "tf_geoid": [0, 3], "tf_output": [0, 3], "thei": [15, 17], "thi": 3, "tool": 21, "topaero": 4, "tranform": 3, "tranform_altitud": [0, 3], "tranform_height": [0, 3], "transform": [2, 3, 10, 13, 14, 15, 21], "transform_dtm": [0, 12], "transform_geodesi": [0, 24], "transform_shot": [0, 12], "transform_worksit": [0, 12], "transform_world_imag": [0, 24], "transformgeodesi": [0, 3], "transit": 3, "true": [1, 2, 10, 14, 17, 21, 22], "tubl": 15, "tupl": [2, 13, 15, 17, 18, 21], "two": [1, 15, 18], "txt": [4, 9, 11, 22], "type": [1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 20, 21, 22], "type_dtm": 1, "type_input": 4, "type_m": 18, "type_output": 4, "type_point": [9, 11, 15, 21], "type_process": 15, "type_pt": 17, "type_z": [1, 17, 21], "type_z_data": [1, 14], "type_z_input": 14, "type_z_output": 14, "type_z_shot": [1, 14], "u": 18, "u1": 18, "u2": 18, "u3": 18, "union": [3, 14, 17], "unit": [1, 6, 10, 17, 21, 22], "unit_angl": [1, 10, 17, 21, 22], "unit_data": 2, "unit_z_data": 2, "unit_z_shot": 2, "uniti": 2, "up": [1, 15, 18, 21], "us": [1, 3, 15, 21], "usr": [2, 6, 7, 8, 20], "util": [0, 24], "v": 18, "val": 20, "valid": 3, "valu": [1, 3, 15], "var": 11, "variabl": 17, "variat": 15, "variou": 17, "vect1": 15, "vect2": 15, "vector": [15, 17, 18], "verif": 17, "visibl": 15, "want": [1, 2, 14, 15, 21], "we": 18, "wgs84": [2, 22], "what": [15, 21], "when": [2, 22], "where": [15, 21], "which": [1, 3, 9, 15, 18], "whit": 1, "whose": 19, "width": [0, 1, 15], "without": [1, 17], "wkt": 4, "woksit": 15, "work": [6, 7, 8, 9, 10, 11, 12, 15, 18, 22], "workdata": [0, 21, 24], "worksid": 10, "worksit": [0, 1, 3, 6, 7, 8, 9, 10, 11, 14, 15, 22, 24], "world": [1, 2, 3, 6, 8, 11, 13, 14, 15, 21, 22], "world_image_dtm": [0, 12], "world_image_shot": [0, 12], "world_image_work": [0, 12], "world_norm": 2, "world_to_eucli": [0, 3], "world_to_imag": [12, 13, 14], "worldimagedtm": [1, 12, 13], "worldimageshot": [12, 14], "worldimagework": [12, 15], "worldintersect": [12, 15], "worldleastsquar": [12, 15], "write": [0, 2, 6, 7, 11, 20, 22], "write_df_to_txt": [0, 22], "write_stat": [0, 11], "writer": [0, 24], "writer_con": [0, 24], "writer_df_to_txt": [0, 24], "writer_opk": [0, 24], "writer_rpc": [0, 24], "x": [1, 2, 3, 13, 14, 15, 17, 21], "x_carto": 3, "x_central": [0, 3], "x_col": 14, "xml": [0, 2, 9, 16], "y": [1, 2, 3, 13, 14, 15, 17, 21], "y_carto": 3, "y_central": [0, 3], "y_line": 14, "you": [1, 2, 14, 15, 21], "your": 21, "z": [1, 2, 3, 14, 15, 17, 21], "z_nadir": 1}, "titles": ["borea package", "borea.datastruct package", "borea.format package", "borea.geodesy package", "borea.geodesy.projectionlist package", "borea.process package", "borea.process.p_add_data package", "borea.process.p_format package", "borea.process.p_func package", "borea.reader package", "borea.reader.orientation package", "borea.stat package", "borea.transform_world_image package", "borea.transform_world_image.transform_dtm package", "borea.transform_world_image.transform_shot package", "borea.transform_world_image.transform_worksite package", "borea.utils package", "borea.utils.check package", "borea.utils.miscellaneous package", "borea.utils.singleton package", "borea.utils.xml package", "borea.worksite package", "borea.writer package", "Welcome to Pink_Lady\u2019s documentation!", "borea"], "titleterms": {"": 23, "approx_euclidean_proj": 3, "borea": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24], "camera": 1, "check": 17, "check_args_opk": 17, "check_args_reader_pt": 17, "check_arrai": 17, "check_head": 17, "check_order_ax": 17, "conl": 2, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "conversion_coor_shot": 14, "datastruct": 1, "document": 23, "dtm": 1, "euclidean_proj": 3, "format": 2, "gcp": 1, "geodesi": [3, 4], "image_world_intersect": 15, "image_world_least_squar": 15, "image_world_shot": 14, "image_world_work": 15, "indic": 23, "local_euclidean_proj": 3, "manage_read": 10, "manage_writ": 22, "miscellan": 18, "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], "orient": 10, "p_add_data": 6, "p_add_shot": 6, "p_control": 8, "p_file_gcp2d": 6, "p_file_gcp3d": 6, "p_format": 7, "p_func": 8, "p_gen_param": 6, "p_image_world": 8, "p_pt2d": 6, "p_pt3d": 6, "p_read_opk": 7, "p_spaceresect": 8, "p_unit_shot": 6, "p_world_imag": 8, "p_write": 6, "p_write_con": 7, "p_write_opk": 7, "p_write_rpc": 7, "packag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], "param_bundl": 18, "pink_ladi": 23, "process": [5, 6, 7, 8], "proj_engin": 3, "projectionlist": 4, "reader": [9, 10], "reader_camera": 9, "reader_opk": 10, "reader_point": 9, "rpc": 2, "search_proj": 4, "shot": 1, "singleton": 19, "space_resect": 15, "spars": 18, "stat": 11, "statist": 11, "submodul": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22], "subpackag": [0, 3, 5, 9, 12, 16], "tabl": 23, "transform_dtm": 13, "transform_geodesi": 3, "transform_shot": 14, "transform_worksit": 15, "transform_world_imag": [12, 13, 14, 15], "util": [16, 17, 18, 19, 20], "welcom": 23, "workdata": 1, "worksit": 21, "world_image_dtm": 13, "world_image_shot": 14, "world_image_work": 15, "writer": 22, "writer_con": 22, "writer_df_to_txt": 22, "writer_opk": 22, "writer_rpc": 22, "xml": 20}}) \ No newline at end of file +Search.setIndex({"alltitles": {"Contents:": [[23, null]], "Indices and tables": [[23, "indices-and-tables"]], "Module contents": [[0, "module-borea"], [1, "module-borea.datastruct"], [2, "module-borea.format"], [3, "module-borea.geodesy"], [4, "module-borea.geodesy.projectionlist"], [5, "module-borea.process"], [6, "module-borea.process.p_add_data"], [7, "module-borea.process.p_format"], [8, "module-borea.process.p_func"], [9, "module-borea.reader"], [10, "module-borea.reader.orientation"], [11, "module-borea.stat"], [12, "module-borea.transform_world_image"], [13, "module-borea.transform_world_image.transform_dtm"], [14, "module-borea.transform_world_image.transform_shot"], [15, "module-borea.transform_world_image.transform_worksite"], [16, "module-borea.utils"], [17, "module-borea.utils.check"], [18, "module-borea.utils.miscellaneous"], [19, "module-borea.utils.singleton"], [20, "module-borea.utils.xml"], [21, "module-borea.worksite"], [22, "module-borea.writer"]], "Submodules": [[1, "submodules"], [2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"], [10, "submodules"], [11, "submodules"], [13, "submodules"], [14, "submodules"], [15, "submodules"], [17, "submodules"], [18, "submodules"], [19, "submodules"], [20, "submodules"], [21, "submodules"], [22, "submodules"]], "Subpackages": [[0, "subpackages"], [3, "subpackages"], [5, "subpackages"], [9, "subpackages"], [12, "subpackages"], [16, "subpackages"]], "Welcome to Pink_Lady\u2019s documentation!": [[23, null]], "borea": [[24, null]], "borea package": [[0, null]], "borea.datastruct package": [[1, null]], "borea.datastruct.camera module": [[1, "module-borea.datastruct.camera"]], "borea.datastruct.dtm module": [[1, "module-borea.datastruct.dtm"]], "borea.datastruct.gcp module": [[1, "module-borea.datastruct.gcp"]], "borea.datastruct.shot module": [[1, "module-borea.datastruct.shot"]], "borea.datastruct.workdata module": [[1, "module-borea.datastruct.workdata"]], "borea.format package": [[2, null]], "borea.format.conl module": [[2, "module-borea.format.conl"]], "borea.format.rpc module": [[2, "module-borea.format.rpc"]], "borea.geodesy package": [[3, null]], "borea.geodesy.approx_euclidean_proj module": [[3, "module-borea.geodesy.approx_euclidean_proj"]], "borea.geodesy.euclidean_proj module": [[3, "module-borea.geodesy.euclidean_proj"]], "borea.geodesy.local_euclidean_proj module": [[3, "module-borea.geodesy.local_euclidean_proj"]], "borea.geodesy.proj_engine module": [[3, "module-borea.geodesy.proj_engine"]], "borea.geodesy.projectionlist package": [[4, null]], "borea.geodesy.projectionlist.search_proj module": [[4, "module-borea.geodesy.projectionlist.search_proj"]], "borea.geodesy.transform_geodesy module": [[3, "module-borea.geodesy.transform_geodesy"]], "borea.process package": [[5, null]], "borea.process.p_add_data package": [[6, null]], "borea.process.p_add_data.p_add_shot module": [[6, "module-borea.process.p_add_data.p_add_shot"]], "borea.process.p_add_data.p_file_gcp2d module": [[6, "module-borea.process.p_add_data.p_file_gcp2d"]], "borea.process.p_add_data.p_file_gcp3d module": [[6, "module-borea.process.p_add_data.p_file_gcp3d"]], "borea.process.p_add_data.p_gen_param module": [[6, "module-borea.process.p_add_data.p_gen_param"]], "borea.process.p_add_data.p_pt2d module": [[6, "module-borea.process.p_add_data.p_pt2d"]], "borea.process.p_add_data.p_pt3d module": [[6, "module-borea.process.p_add_data.p_pt3d"]], "borea.process.p_add_data.p_unit_shot module": [[6, "module-borea.process.p_add_data.p_unit_shot"]], "borea.process.p_add_data.p_write module": [[6, "module-borea.process.p_add_data.p_write"]], "borea.process.p_format package": [[7, null]], "borea.process.p_format.p_read_opk module": [[7, "module-borea.process.p_format.p_read_opk"]], "borea.process.p_format.p_write_con module": [[7, "module-borea.process.p_format.p_write_con"]], "borea.process.p_format.p_write_opk module": [[7, "module-borea.process.p_format.p_write_opk"]], "borea.process.p_format.p_write_rpc module": [[7, "module-borea.process.p_format.p_write_rpc"]], "borea.process.p_func package": [[8, null]], "borea.process.p_func.p_control module": [[8, "module-borea.process.p_func.p_control"]], "borea.process.p_func.p_image_world module": [[8, "module-borea.process.p_func.p_image_world"]], "borea.process.p_func.p_spaceresection module": [[8, "module-borea.process.p_func.p_spaceresection"]], "borea.process.p_func.p_world_image module": [[8, "module-borea.process.p_func.p_world_image"]], "borea.reader package": [[9, null]], "borea.reader.orientation package": [[10, null]], "borea.reader.orientation.manage_reader module": [[10, "module-borea.reader.orientation.manage_reader"]], "borea.reader.orientation.reader_opk module": [[10, "module-borea.reader.orientation.reader_opk"]], "borea.reader.reader_camera module": [[9, "module-borea.reader.reader_camera"]], "borea.reader.reader_point module": [[9, "module-borea.reader.reader_point"]], "borea.stat package": [[11, null]], "borea.stat.statistics module": [[11, "module-borea.stat.statistics"]], "borea.transform_world_image package": [[12, null]], "borea.transform_world_image.transform_dtm package": [[13, null]], "borea.transform_world_image.transform_dtm.world_image_dtm module": [[13, "module-borea.transform_world_image.transform_dtm.world_image_dtm"]], "borea.transform_world_image.transform_shot package": [[14, null]], "borea.transform_world_image.transform_shot.conversion_coor_shot module": [[14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot"]], "borea.transform_world_image.transform_shot.image_world_shot module": [[14, "module-borea.transform_world_image.transform_shot.image_world_shot"]], "borea.transform_world_image.transform_shot.world_image_shot module": [[14, "module-borea.transform_world_image.transform_shot.world_image_shot"]], "borea.transform_world_image.transform_worksite package": [[15, null]], "borea.transform_world_image.transform_worksite.image_world_intersection module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_intersection"]], "borea.transform_world_image.transform_worksite.image_world_least_square module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_least_square"]], "borea.transform_world_image.transform_worksite.image_world_work module": [[15, "module-borea.transform_world_image.transform_worksite.image_world_work"]], "borea.transform_world_image.transform_worksite.space_resection module": [[15, "module-borea.transform_world_image.transform_worksite.space_resection"]], "borea.transform_world_image.transform_worksite.world_image_work module": [[15, "module-borea.transform_world_image.transform_worksite.world_image_work"]], "borea.utils package": [[16, null]], "borea.utils.check package": [[17, null]], "borea.utils.check.check_args_opk module": [[17, "module-borea.utils.check.check_args_opk"]], "borea.utils.check.check_args_reader_pt module": [[17, "module-borea.utils.check.check_args_reader_pt"]], "borea.utils.check.check_array module": [[17, "module-borea.utils.check.check_array"]], "borea.utils.check.check_header module": [[17, "module-borea.utils.check.check_header"]], "borea.utils.check.check_order_axe module": [[17, "module-borea.utils.check.check_order_axe"]], "borea.utils.miscellaneous package": [[18, null]], "borea.utils.miscellaneous.miscellaneous module": [[18, "module-borea.utils.miscellaneous.miscellaneous"]], "borea.utils.miscellaneous.param_bundle module": [[18, "module-borea.utils.miscellaneous.param_bundle"]], "borea.utils.miscellaneous.sparse module": [[18, "module-borea.utils.miscellaneous.sparse"]], "borea.utils.singleton package": [[19, null]], "borea.utils.singleton.singleton module": [[19, "module-borea.utils.singleton.singleton"]], "borea.utils.xml package": [[20, null]], "borea.utils.xml.xml module": [[20, "module-borea.utils.xml.xml"]], "borea.worksite package": [[21, null]], "borea.worksite.worksite module": [[21, "module-borea.worksite.worksite"]], "borea.writer package": [[22, null]], "borea.writer.manage_writer module": [[22, "module-borea.writer.manage_writer"]], "borea.writer.writer_con module": [[22, "module-borea.writer.writer_con"]], "borea.writer.writer_df_to_txt module": [[22, "module-borea.writer.writer_df_to_txt"]], "borea.writer.writer_opk module": [[22, "module-borea.writer.writer_opk"]], "borea.writer.writer_rpc module": [[22, "module-borea.writer.writer_rpc"]]}, "docnames": ["borea", "borea.datastruct", "borea.format", "borea.geodesy", "borea.geodesy.projectionlist", "borea.process", "borea.process.p_add_data", "borea.process.p_format", "borea.process.p_func", "borea.reader", "borea.reader.orientation", "borea.stat", "borea.transform_world_image", "borea.transform_world_image.transform_dtm", "borea.transform_world_image.transform_shot", "borea.transform_world_image.transform_worksite", "borea.utils", "borea.utils.check", "borea.utils.miscellaneous", "borea.utils.singleton", "borea.utils.xml", "borea.worksite", "borea.writer", "index", "modules"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["borea.rst", "borea.datastruct.rst", "borea.format.rst", "borea.geodesy.rst", "borea.geodesy.projectionlist.rst", "borea.process.rst", "borea.process.p_add_data.rst", "borea.process.p_format.rst", "borea.process.p_func.rst", "borea.reader.rst", "borea.reader.orientation.rst", "borea.stat.rst", "borea.transform_world_image.rst", "borea.transform_world_image.transform_dtm.rst", "borea.transform_world_image.transform_shot.rst", "borea.transform_world_image.transform_worksite.rst", "borea.utils.rst", "borea.utils.check.rst", "borea.utils.miscellaneous.rst", "borea.utils.singleton.rst", "borea.utils.xml.rst", "borea.worksite.rst", "borea.writer.rst", "index.rst", "modules.rst"], "indexentries": {"add_camera() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_camera", false]], "add_co_point() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_co_point", false]], "add_elem() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.add_elem", false]], "add_gcp2d() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_gcp2d", false]], "add_gcp3d() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_gcp3d", false]], "add_shot() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.add_shot", false]], "angle_degree_2vect() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.angle_degree_2vect", false]], "approxeuclideanproj (class in borea.geodesy.approx_euclidean_proj)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj", false]], "args_add_pt2d() (in module borea.process.p_add_data.p_pt2d)": [[6, "borea.process.p_add_data.p_pt2d.args_add_pt2d", false]], "args_add_pt3d() (in module borea.process.p_add_data.p_pt3d)": [[6, "borea.process.p_add_data.p_pt3d.args_add_pt3d", false]], "args_add_shot() (in module borea.process.p_add_data.p_add_shot)": [[6, "borea.process.p_add_data.p_add_shot.args_add_shot", false]], "args_control() (in module borea.process.p_func.p_control)": [[8, "borea.process.p_func.p_control.args_control", false]], "args_gcp2d() (in module borea.process.p_add_data.p_file_gcp2d)": [[6, "borea.process.p_add_data.p_file_gcp2d.args_gcp2d", false]], "args_gcp3d() (in module borea.process.p_add_data.p_file_gcp3d)": [[6, "borea.process.p_add_data.p_file_gcp3d.args_gcp3d", false]], "args_general_param() (in module borea.process.p_add_data.p_gen_param)": [[6, "borea.process.p_add_data.p_gen_param.args_general_param", false]], "args_image_world() (in module borea.process.p_func.p_image_world)": [[8, "borea.process.p_func.p_image_world.args_image_world", false]], "args_input_shot() (in module borea.process.p_add_data.p_unit_shot)": [[6, "borea.process.p_add_data.p_unit_shot.args_input_shot", false]], "args_output_shot() (in module borea.process.p_add_data.p_unit_shot)": [[6, "borea.process.p_add_data.p_unit_shot.args_output_shot", false]], "args_reading_opk() (in module borea.process.p_format.p_read_opk)": [[7, "borea.process.p_format.p_read_opk.args_reading_opk", false]], "args_space_resection() (in module borea.process.p_func.p_spaceresection)": [[8, "borea.process.p_func.p_spaceresection.args_space_resection", false]], "args_world_image() (in module borea.process.p_func.p_world_image)": [[8, "borea.process.p_func.p_world_image.args_world_image", false]], "args_write_con() (in module borea.process.p_format.p_write_con)": [[7, "borea.process.p_format.p_write_con.args_write_con", false]], "args_writer() (in module borea.process.p_add_data.p_write)": [[6, "borea.process.p_add_data.p_write.args_writer", false]], "args_writing_opk() (in module borea.process.p_format.p_write_opk)": [[7, "borea.process.p_format.p_write_opk.args_writing_opk", false]], "args_writing_rpc() (in module borea.process.p_format.p_write_rpc)": [[7, "borea.process.p_format.p_write_rpc.args_writing_rpc", false]], "borea": [[0, "module-borea", false]], "borea.datastruct": [[1, "module-borea.datastruct", false]], "borea.datastruct.camera": [[1, "module-borea.datastruct.camera", false]], "borea.datastruct.dtm": [[1, "module-borea.datastruct.dtm", false]], "borea.datastruct.gcp": [[1, "module-borea.datastruct.gcp", false]], "borea.datastruct.shot": [[1, "module-borea.datastruct.shot", false]], "borea.datastruct.workdata": [[1, "module-borea.datastruct.workdata", false]], "borea.format": [[2, "module-borea.format", false]], "borea.format.conl": [[2, "module-borea.format.conl", false]], "borea.format.rpc": [[2, "module-borea.format.rpc", false]], "borea.geodesy": [[3, "module-borea.geodesy", false]], "borea.geodesy.approx_euclidean_proj": [[3, "module-borea.geodesy.approx_euclidean_proj", false]], "borea.geodesy.euclidean_proj": [[3, "module-borea.geodesy.euclidean_proj", false]], "borea.geodesy.local_euclidean_proj": [[3, "module-borea.geodesy.local_euclidean_proj", false]], "borea.geodesy.proj_engine": [[3, "module-borea.geodesy.proj_engine", false]], "borea.geodesy.projectionlist": [[4, "module-borea.geodesy.projectionlist", false]], "borea.geodesy.projectionlist.search_proj": [[4, "module-borea.geodesy.projectionlist.search_proj", false]], "borea.geodesy.transform_geodesy": [[3, "module-borea.geodesy.transform_geodesy", false]], "borea.process": [[5, "module-borea.process", false]], "borea.process.p_add_data": [[6, "module-borea.process.p_add_data", false]], "borea.process.p_add_data.p_add_shot": [[6, "module-borea.process.p_add_data.p_add_shot", false]], "borea.process.p_add_data.p_file_gcp2d": [[6, "module-borea.process.p_add_data.p_file_gcp2d", false]], "borea.process.p_add_data.p_file_gcp3d": [[6, "module-borea.process.p_add_data.p_file_gcp3d", false]], "borea.process.p_add_data.p_gen_param": [[6, "module-borea.process.p_add_data.p_gen_param", false]], "borea.process.p_add_data.p_pt2d": [[6, "module-borea.process.p_add_data.p_pt2d", false]], "borea.process.p_add_data.p_pt3d": [[6, "module-borea.process.p_add_data.p_pt3d", false]], "borea.process.p_add_data.p_unit_shot": [[6, "module-borea.process.p_add_data.p_unit_shot", false]], "borea.process.p_add_data.p_write": [[6, "module-borea.process.p_add_data.p_write", false]], "borea.process.p_format": [[7, "module-borea.process.p_format", false]], "borea.process.p_format.p_read_opk": [[7, "module-borea.process.p_format.p_read_opk", false]], "borea.process.p_format.p_write_con": [[7, "module-borea.process.p_format.p_write_con", false]], "borea.process.p_format.p_write_opk": [[7, "module-borea.process.p_format.p_write_opk", false]], "borea.process.p_format.p_write_rpc": [[7, "module-borea.process.p_format.p_write_rpc", false]], "borea.process.p_func": [[8, "module-borea.process.p_func", false]], "borea.process.p_func.p_control": [[8, "module-borea.process.p_func.p_control", false]], "borea.process.p_func.p_image_world": [[8, "module-borea.process.p_func.p_image_world", false]], "borea.process.p_func.p_spaceresection": [[8, "module-borea.process.p_func.p_spaceresection", false]], "borea.process.p_func.p_world_image": [[8, "module-borea.process.p_func.p_world_image", false]], "borea.reader": [[9, "module-borea.reader", false]], "borea.reader.orientation": [[10, "module-borea.reader.orientation", false]], "borea.reader.orientation.manage_reader": [[10, "module-borea.reader.orientation.manage_reader", false]], "borea.reader.orientation.reader_opk": [[10, "module-borea.reader.orientation.reader_opk", false]], "borea.reader.reader_camera": [[9, "module-borea.reader.reader_camera", false]], "borea.reader.reader_point": [[9, "module-borea.reader.reader_point", false]], "borea.stat": [[11, "module-borea.stat", false]], "borea.stat.statistics": [[11, "module-borea.stat.statistics", false]], "borea.transform_world_image": [[12, "module-borea.transform_world_image", false]], "borea.transform_world_image.transform_dtm": [[13, "module-borea.transform_world_image.transform_dtm", false]], "borea.transform_world_image.transform_dtm.world_image_dtm": [[13, "module-borea.transform_world_image.transform_dtm.world_image_dtm", false]], "borea.transform_world_image.transform_shot": [[14, "module-borea.transform_world_image.transform_shot", false]], "borea.transform_world_image.transform_shot.conversion_coor_shot": [[14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot", false]], "borea.transform_world_image.transform_shot.image_world_shot": [[14, "module-borea.transform_world_image.transform_shot.image_world_shot", false]], "borea.transform_world_image.transform_shot.world_image_shot": [[14, "module-borea.transform_world_image.transform_shot.world_image_shot", false]], "borea.transform_world_image.transform_worksite": [[15, "module-borea.transform_world_image.transform_worksite", false]], "borea.transform_world_image.transform_worksite.image_world_intersection": [[15, "module-borea.transform_world_image.transform_worksite.image_world_intersection", false]], "borea.transform_world_image.transform_worksite.image_world_least_square": [[15, "module-borea.transform_world_image.transform_worksite.image_world_least_square", false]], "borea.transform_world_image.transform_worksite.image_world_work": [[15, "module-borea.transform_world_image.transform_worksite.image_world_work", false]], "borea.transform_world_image.transform_worksite.space_resection": [[15, "module-borea.transform_world_image.transform_worksite.space_resection", false]], "borea.transform_world_image.transform_worksite.world_image_work": [[15, "module-borea.transform_world_image.transform_worksite.world_image_work", false]], "borea.utils": [[16, "module-borea.utils", false]], "borea.utils.check": [[17, "module-borea.utils.check", false]], "borea.utils.check.check_args_opk": [[17, "module-borea.utils.check.check_args_opk", false]], "borea.utils.check.check_args_reader_pt": [[17, "module-borea.utils.check.check_args_reader_pt", false]], "borea.utils.check.check_array": [[17, "module-borea.utils.check.check_array", false]], "borea.utils.check.check_header": [[17, "module-borea.utils.check.check_header", false]], "borea.utils.check.check_order_axe": [[17, "module-borea.utils.check.check_order_axe", false]], "borea.utils.miscellaneous": [[18, "module-borea.utils.miscellaneous", false]], "borea.utils.miscellaneous.miscellaneous": [[18, "module-borea.utils.miscellaneous.miscellaneous", false]], "borea.utils.miscellaneous.param_bundle": [[18, "module-borea.utils.miscellaneous.param_bundle", false]], "borea.utils.miscellaneous.sparse": [[18, "module-borea.utils.miscellaneous.sparse", false]], "borea.utils.singleton": [[19, "module-borea.utils.singleton", false]], "borea.utils.singleton.singleton": [[19, "module-borea.utils.singleton.singleton", false]], "borea.utils.xml": [[20, "module-borea.utils.xml", false]], "borea.utils.xml.xml": [[20, "module-borea.utils.xml.xml", false]], "borea.worksite": [[21, "module-borea.worksite", false]], "borea.worksite.worksite": [[21, "module-borea.worksite.worksite", false]], "borea.writer": [[22, "module-borea.writer", false]], "borea.writer.manage_writer": [[22, "module-borea.writer.manage_writer", false]], "borea.writer.writer_con": [[22, "module-borea.writer.writer_con", false]], "borea.writer.writer_df_to_txt": [[22, "module-borea.writer.writer_df_to_txt", false]], "borea.writer.writer_opk": [[22, "module-borea.writer.writer_opk", false]], "borea.writer.writer_rpc": [[22, "module-borea.writer.writer_rpc", false]], "bundle_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.bundle_to_image", false]], "calculate_barycentre() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.calculate_barycentre", false]], "calculate_image_world_by_intersection() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.calculate_image_world_by_intersection", false]], "calculate_world_to_image() (borea.transform_world_image.transform_worksite.world_image_work.worldimagework method)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork.calculate_world_to_image", false]], "cam (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.cam", false]], "camera (class in borea.datastruct.camera)": [[1, "borea.datastruct.camera.Camera", false]], "camera_txt() (in module borea.reader.reader_camera)": [[9, "borea.reader.reader_camera.camera_txt", false]], "carto_to_geoc (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.carto_to_geoc", false]], "carto_to_geog (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.carto_to_geog", false]], "check_args_opk() (in module borea.utils.check.check_args_opk)": [[17, "borea.utils.check.check_args_opk.check_args_opk", false]], "check_array_transfo() (in module borea.utils.check.check_array)": [[17, "borea.utils.check.check_array.check_array_transfo", false]], "check_h_z() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.check_h_z", false]], "check_head() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.check_head", false]], "check_header_file() (in module borea.utils.check.check_args_opk)": [[17, "borea.utils.check.check_args_opk.check_header_file", false]], "check_header_file() (in module borea.utils.check.check_args_reader_pt)": [[17, "borea.utils.check.check_args_reader_pt.check_header_file", false]], "check_order_axe() (in module borea.utils.check.check_order_axe)": [[17, "borea.utils.check.check_order_axe.check_order_axe", false]], "clear() (borea.utils.singleton.singleton.singleton method)": [[19, "borea.utils.singleton.singleton.Singleton.clear", false]], "code (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.code", false]], "comput_inter_in_2_more_distant_shot() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.comput_inter_in_2_more_distant_shot", false]], "compute_image_world_least_square() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.compute_image_world_least_square", false]], "conl (class in borea.format.conl)": [[2, "borea.format.conl.Conl", false]], "conv_output_z_type() (in module borea.transform_world_image.transform_shot.conversion_coor_shot)": [[14, "borea.transform_world_image.transform_shot.conversion_coor_shot.conv_output_z_type", false]], "conv_z_shot_to_z_data() (in module borea.transform_world_image.transform_shot.conversion_coor_shot)": [[14, "borea.transform_world_image.transform_shot.conversion_coor_shot.conv_z_shot_to_z_data", false]], "convert_line_list() (in module borea.geodesy.projectionlist.search_proj)": [[4, "borea.geodesy.projectionlist.search_proj.convert_line_list", false]], "convert_opk_to_xyz() (in module borea.utils.check.check_order_axe)": [[17, "borea.utils.check.check_order_axe.convert_opk_to_xyz", false]], "coor (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.coor", false]], "create_grid_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.create_grid_rpc", false]], "create_mat_a_and_vect_residu() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.create_mat_a_and_vect_residu", false]], "dist_2pts() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.dist_2pts", false]], "dtm (class in borea.datastruct.dtm)": [[1, "borea.datastruct.dtm.Dtm", false]], "epsg (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.epsg", false]], "epsg_output (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.epsg_output", false]], "eucli_to_bundle() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.eucli_to_bundle", false]], "eucli_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.eucli_to_image", false]], "eucli_to_world() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.eucli_to_world", false]], "eucli_to_world() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.eucli_to_world", false]], "euclideanproj (class in borea.geodesy.euclidean_proj)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj", false]], "focal (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.focal", false]], "format_xml() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.format_xml", false]], "from_param_euclidean() (borea.datastruct.shot.shot class method)": [[1, "borea.datastruct.shot.Shot.from_param_euclidean", false]], "from_shot() (borea.format.rpc.rpc class method)": [[2, "borea.format.rpc.Rpc.from_shot", false]], "func_least_square() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.func_least_square", false]], "gcp (class in borea.datastruct.gcp)": [[1, "borea.datastruct.gcp.GCP", false]], "geoc_to_carto (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geoc_to_carto", false]], "geog_to_carto (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geog_to_carto", false]], "geog_to_geoid (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geog_to_geoid", false]], "geoid (borea.geodesy.proj_engine.projengine attribute)": [[3, "borea.geodesy.proj_engine.ProjEngine.geoid", false]], "geoid_to_geog (borea.geodesy.transform_geodesy.transformgeodesy property)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.geoid_to_geog", false]], "get_attr_transfo_pt() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_attr_transfo_pt", false]], "get_coor_pt_img_and_world() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_coor_pt_img_and_world", false]], "get_meridian_convergence() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.get_meridian_convergence", false]], "get_point_image_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_point_image_dataframe", false]], "get_point_world_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.get_point_world_dataframe", false]], "get_scale_factor() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.get_scale_factor", false]], "get_type_z_and_header() (in module borea.utils.check.check_header)": [[17, "borea.utils.check.check_header.get_type_z_and_header", false]], "get_z_add_scale_factor() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.get_z_add_scale_factor", false]], "get_z_remove_scale_factor() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.get_z_remove_scale_factor", false]], "get_z_world() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.get_z_world", false]], "height (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.height", false]], "image_to_bundle() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_to_bundle", false]], "image_to_world() (borea.transform_world_image.transform_dtm.world_image_dtm.worldimagedtm method)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm.image_to_world", false]], "image_to_world() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_to_world", false]], "image_world_iter() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_world_iter", false]], "image_z_to_world() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.image_z_to_world", false]], "imageworldshot (class in borea.transform_world_image.transform_shot.image_world_shot)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot", false]], "imageworldwork (class in borea.transform_world_image.transform_worksite.image_world_work)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork", false]], "indent() (in module borea.utils.xml.xml)": [[20, "borea.utils.xml.xml.indent", false]], "init_eucli_points() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.init_eucli_points", false]], "init_kappa() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.init_kappa", false]], "intersection_line_3d() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.intersection_line_3d", false]], "intersection_pt_in_2shot() (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection method)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.intersection_pt_in_2shot", false]], "invert_diag_sparse_matrix_3_3() (in module borea.utils.miscellaneous.sparse)": [[18, "borea.utils.miscellaneous.sparse.invert_diag_sparse_matrix_3_3", false]], "least_square_intersect() (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare method)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.least_square_intersect", false]], "least_square_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.least_square_rpc", false]], "least_square_shot() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.least_square_shot", false]], "local_to_eucli() (borea.transform_world_image.transform_shot.image_world_shot.imageworldshot method)": [[14, "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot.local_to_eucli", false]], "localeuclideanproj (class in borea.geodesy.local_euclidean_proj)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj", false]], "main_stat_and_save() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_and_save", false]], "main_stat_image_to_world() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_image_to_world", false]], "main_stat_world_to_image() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.main_stat_world_to_image", false]], "manage_image_world() (borea.transform_world_image.transform_worksite.image_world_work.imageworldwork method)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork.manage_image_world", false]], "manager_writer() (in module borea.writer.manage_writer)": [[22, "borea.writer.manage_writer.manager_writer", false]], "mat_eucli_to_mat() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.mat_eucli_to_mat", false]], "mat_eucli_to_mat() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_eucli_to_mat", false]], "mat_obs_axia() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.mat_obs_axia", false]], "mat_rot_euclidean_local() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_rot_euclidean_local", false]], "mat_to_mat_eucli() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.mat_to_mat_eucli", false]], "mat_to_mat_eucli() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.mat_to_mat_eucli", false]], "min_max_pt() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.min_max_pt", false]], "module": [[0, "module-borea", false], [1, "module-borea.datastruct", false], [1, "module-borea.datastruct.camera", false], [1, "module-borea.datastruct.dtm", false], [1, "module-borea.datastruct.gcp", false], [1, "module-borea.datastruct.shot", false], [1, "module-borea.datastruct.workdata", false], [2, "module-borea.format", false], [2, "module-borea.format.conl", false], [2, "module-borea.format.rpc", false], [3, "module-borea.geodesy", false], [3, "module-borea.geodesy.approx_euclidean_proj", false], [3, "module-borea.geodesy.euclidean_proj", false], [3, "module-borea.geodesy.local_euclidean_proj", false], [3, "module-borea.geodesy.proj_engine", false], [3, "module-borea.geodesy.transform_geodesy", false], [4, "module-borea.geodesy.projectionlist", false], [4, "module-borea.geodesy.projectionlist.search_proj", false], [5, "module-borea.process", false], [6, "module-borea.process.p_add_data", false], [6, "module-borea.process.p_add_data.p_add_shot", false], [6, "module-borea.process.p_add_data.p_file_gcp2d", false], [6, "module-borea.process.p_add_data.p_file_gcp3d", false], [6, "module-borea.process.p_add_data.p_gen_param", false], [6, "module-borea.process.p_add_data.p_pt2d", false], [6, "module-borea.process.p_add_data.p_pt3d", false], [6, "module-borea.process.p_add_data.p_unit_shot", false], [6, "module-borea.process.p_add_data.p_write", false], [7, "module-borea.process.p_format", false], [7, "module-borea.process.p_format.p_read_opk", false], [7, "module-borea.process.p_format.p_write_con", false], [7, "module-borea.process.p_format.p_write_opk", false], [7, "module-borea.process.p_format.p_write_rpc", false], [8, "module-borea.process.p_func", false], [8, "module-borea.process.p_func.p_control", false], [8, "module-borea.process.p_func.p_image_world", false], [8, "module-borea.process.p_func.p_spaceresection", false], [8, "module-borea.process.p_func.p_world_image", false], [9, "module-borea.reader", false], [9, "module-borea.reader.reader_camera", false], [9, "module-borea.reader.reader_point", false], [10, "module-borea.reader.orientation", false], [10, "module-borea.reader.orientation.manage_reader", false], [10, "module-borea.reader.orientation.reader_opk", false], [11, "module-borea.stat", false], [11, "module-borea.stat.statistics", false], [12, "module-borea.transform_world_image", false], [13, "module-borea.transform_world_image.transform_dtm", false], [13, "module-borea.transform_world_image.transform_dtm.world_image_dtm", false], [14, "module-borea.transform_world_image.transform_shot", false], [14, "module-borea.transform_world_image.transform_shot.conversion_coor_shot", false], [14, "module-borea.transform_world_image.transform_shot.image_world_shot", false], [14, "module-borea.transform_world_image.transform_shot.world_image_shot", false], [15, "module-borea.transform_world_image.transform_worksite", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_intersection", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_least_square", false], [15, "module-borea.transform_world_image.transform_worksite.image_world_work", false], [15, "module-borea.transform_world_image.transform_worksite.space_resection", false], [15, "module-borea.transform_world_image.transform_worksite.world_image_work", false], [16, "module-borea.utils", false], [17, "module-borea.utils.check", false], [17, "module-borea.utils.check.check_args_opk", false], [17, "module-borea.utils.check.check_args_reader_pt", false], [17, "module-borea.utils.check.check_array", false], [17, "module-borea.utils.check.check_header", false], [17, "module-borea.utils.check.check_order_axe", false], [18, "module-borea.utils.miscellaneous", false], [18, "module-borea.utils.miscellaneous.miscellaneous", false], [18, "module-borea.utils.miscellaneous.param_bundle", false], [18, "module-borea.utils.miscellaneous.sparse", false], [19, "module-borea.utils.singleton", false], [19, "module-borea.utils.singleton.singleton", false], [20, "module-borea.utils.xml", false], [20, "module-borea.utils.xml.xml", false], [21, "module-borea.worksite", false], [21, "module-borea.worksite.worksite", false], [22, "module-borea.writer", false], [22, "module-borea.writer.manage_writer", false], [22, "module-borea.writer.writer_con", false], [22, "module-borea.writer.writer_df_to_txt", false], [22, "module-borea.writer.writer_opk", false], [22, "module-borea.writer.writer_rpc", false]], "name_camera (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.name_camera", false]], "name_gcp (borea.datastruct.gcp.gcp attribute)": [[1, "borea.datastruct.gcp.GCP.name_gcp", false]], "normalize() (in module borea.utils.miscellaneous.miscellaneous)": [[18, "borea.utils.miscellaneous.miscellaneous.normalize", false]], "normalize_data() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.normalize_data", false]], "ppax (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.ppax", false]], "ppay (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.ppay", false]], "process_add_shot() (in module borea.process.p_add_data.p_add_shot)": [[6, "borea.process.p_add_data.p_add_shot.process_add_shot", false]], "process_args_control() (in module borea.process.p_func.p_control)": [[8, "borea.process.p_func.p_control.process_args_control", false]], "process_args_gen_param() (in module borea.process.p_add_data.p_gen_param)": [[6, "borea.process.p_add_data.p_gen_param.process_args_gen_param", false]], "process_args_read_opk() (in module borea.process.p_format.p_read_opk)": [[7, "borea.process.p_format.p_read_opk.process_args_read_opk", false]], "process_args_write_con() (in module borea.process.p_format.p_write_con)": [[7, "borea.process.p_format.p_write_con.process_args_write_con", false]], "process_args_write_opk() (in module borea.process.p_format.p_write_opk)": [[7, "borea.process.p_format.p_write_opk.process_args_write_opk", false]], "process_args_write_rpc() (in module borea.process.p_format.p_write_rpc)": [[7, "borea.process.p_format.p_write_rpc.process_args_write_rpc", false]], "process_gcp2d() (in module borea.process.p_add_data.p_file_gcp2d)": [[6, "borea.process.p_add_data.p_file_gcp2d.process_gcp2d", false]], "process_gcp3d() (in module borea.process.p_add_data.p_file_gcp3d)": [[6, "borea.process.p_add_data.p_file_gcp3d.process_gcp3d", false]], "process_image_world() (in module borea.process.p_add_data.p_pt2d)": [[6, "borea.process.p_add_data.p_pt2d.process_image_world", false]], "process_image_world() (in module borea.process.p_func.p_image_world)": [[8, "borea.process.p_func.p_image_world.process_image_world", false]], "process_space_resection() (in module borea.process.p_func.p_spaceresection)": [[8, "borea.process.p_func.p_spaceresection.process_space_resection", false]], "process_world_image() (in module borea.process.p_add_data.p_pt3d)": [[6, "borea.process.p_add_data.p_pt3d.process_world_image", false]], "process_world_image() (in module borea.process.p_func.p_world_image)": [[8, "borea.process.p_func.p_world_image.process_world_image", false]], "proj (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.proj", false]], "projengine (class in borea.geodesy.proj_engine)": [[3, "borea.geodesy.proj_engine.ProjEngine", false]], "read() (in module borea.reader.orientation.reader_opk)": [[10, "borea.reader.orientation.reader_opk.read", false]], "read_camera() (in module borea.reader.reader_camera)": [[9, "borea.reader.reader_camera.read_camera", false]], "read_file_pt() (in module borea.reader.reader_point)": [[9, "borea.reader.reader_point.read_file_pt", false]], "read_file_pt_dataframe() (in module borea.reader.reader_point)": [[9, "borea.reader.reader_point.read_file_pt_dataframe", false]], "reader_orientation() (in module borea.reader.orientation.manage_reader)": [[10, "borea.reader.orientation.manage_reader.reader_orientation", false]], "rpc (class in borea.format.rpc)": [[2, "borea.format.rpc.Rpc", false]], "save_conl() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.save_conl", false]], "save_stat_txt() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.save_stat_txt", false]], "search_info() (in module borea.geodesy.projectionlist.search_proj)": [[4, "borea.geodesy.projectionlist.search_proj.search_info", false]], "seed_20_point() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.seed_20_point", false]], "set_approx_eucli_proj() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_approx_eucli_proj", false]], "set_camera_xml() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.set_camera_xml", false]], "set_cval() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_cval", false]], "set_dtm() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_dtm", false]], "set_dtm() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_dtm", false]], "set_epsg() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.set_epsg", false]], "set_epsg_tf_geog_output() (borea.geodesy.proj_engine.projengine method)": [[3, "borea.geodesy.proj_engine.ProjEngine.set_epsg_tf_geog_output", false]], "set_geometry_xml() (borea.format.conl.conl method)": [[2, "borea.format.conl.Conl.set_geometry_xml", false]], "set_keep_memory() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_keep_memory", false]], "set_linear_alteration() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_linear_alteration", false]], "set_order() (borea.datastruct.dtm.dtm method)": [[1, "borea.datastruct.dtm.Dtm.set_order", false]], "set_order_axe() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_order_axe", false]], "set_param_bundle_diff() (in module borea.utils.miscellaneous.param_bundle)": [[18, "borea.utils.miscellaneous.param_bundle.set_param_bundle_diff", false]], "set_param_eucli_shot() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_param_eucli_shot", false]], "set_param_shot() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_param_shot", false]], "set_point_image_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_point_image_dataframe", false]], "set_point_world_dataframe() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_point_world_dataframe", false]], "set_proj() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_proj", false]], "set_rot_shot() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_rot_shot", false]], "set_type_z() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_type_z", false]], "set_type_z_data() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_type_z_data", false]], "set_type_z_shot() (borea.datastruct.workdata.workdata method)": [[1, "borea.datastruct.workdata.Workdata.set_type_z_shot", false]], "set_unit_angle() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_unit_angle", false]], "set_unit_shot() (borea.worksite.worksite.worksite method)": [[21, "borea.worksite.worksite.Worksite.set_unit_shot", false]], "set_z_nadir() (borea.datastruct.shot.shot method)": [[1, "borea.datastruct.shot.Shot.set_z_nadir", false]], "setup_matrix_obs_rpc() (borea.format.rpc.rpc method)": [[2, "borea.format.rpc.Rpc.setup_matrix_obs_rpc", false]], "shot (borea.format.conl.conl attribute)": [[2, "borea.format.conl.Conl.shot", false]], "shot (class in borea.datastruct.shot)": [[1, "borea.datastruct.shot.Shot", false]], "singleton (class in borea.utils.singleton.singleton)": [[19, "borea.utils.singleton.singleton.Singleton", false]], "space_resection_gap() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_gap", false]], "space_resection_on_worksite() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_on_worksite", false]], "space_resection_shot() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_shot", false]], "space_resection_to_worksite() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.space_resection_to_worksite", false]], "spaceresection (class in borea.transform_world_image.transform_worksite.space_resection)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection", false]], "stat (class in borea.stat.statistics)": [[11, "borea.stat.statistics.Stat", false]], "stat_image_to_world() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_image_to_world", false]], "stat_list() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_list", false]], "stat_world_to_image() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.stat_world_to_image", false]], "take_obs() (borea.transform_world_image.transform_worksite.space_resection.spaceresection method)": [[15, "borea.transform_world_image.transform_worksite.space_resection.SpaceResection.take_obs", false]], "tf_output() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tf_output", false]], "tranform_altitude() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tranform_altitude", false]], "tranform_height() (borea.geodesy.transform_geodesy.transformgeodesy method)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy.tranform_height", false]], "transformgeodesy (class in borea.geodesy.transform_geodesy)": [[3, "borea.geodesy.transform_geodesy.TransformGeodesy", false]], "width (borea.datastruct.camera.camera attribute)": [[1, "borea.datastruct.camera.Camera.width", false]], "work (borea.transform_world_image.transform_worksite.image_world_intersection.worldintersection attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection.work", false]], "work (borea.transform_world_image.transform_worksite.image_world_least_square.worldleastsquare attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare.work", false]], "work (borea.transform_world_image.transform_worksite.image_world_work.imageworldwork attribute)": [[15, "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork.work", false]], "work (borea.transform_world_image.transform_worksite.world_image_work.worldimagework attribute)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork.work", false]], "workdata (class in borea.datastruct.workdata)": [[1, "borea.datastruct.workdata.Workdata", false]], "worksite (class in borea.worksite.worksite)": [[21, "borea.worksite.worksite.Worksite", false]], "world_to_eucli() (borea.geodesy.approx_euclidean_proj.approxeuclideanproj method)": [[3, "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj.world_to_eucli", false]], "world_to_eucli() (borea.geodesy.local_euclidean_proj.localeuclideanproj method)": [[3, "borea.geodesy.local_euclidean_proj.LocalEuclideanProj.world_to_eucli", false]], "world_to_image() (borea.transform_world_image.transform_dtm.world_image_dtm.worldimagedtm method)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm.world_to_image", false]], "world_to_image() (borea.transform_world_image.transform_shot.world_image_shot.worldimageshot method)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot.world_to_image", false]], "worldimagedtm (class in borea.transform_world_image.transform_dtm.world_image_dtm)": [[13, "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm", false]], "worldimageshot (class in borea.transform_world_image.transform_shot.world_image_shot)": [[14, "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot", false]], "worldimagework (class in borea.transform_world_image.transform_worksite.world_image_work)": [[15, "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork", false]], "worldintersection (class in borea.transform_world_image.transform_worksite.image_world_intersection)": [[15, "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection", false]], "worldleastsquare (class in borea.transform_world_image.transform_worksite.image_world_least_square)": [[15, "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare", false]], "write() (in module borea.writer.writer_con)": [[22, "borea.writer.writer_con.write", false]], "write() (in module borea.writer.writer_opk)": [[22, "borea.writer.writer_opk.write", false]], "write() (in module borea.writer.writer_rpc)": [[22, "borea.writer.writer_rpc.write", false]], "write_df_to_txt() (in module borea.writer.writer_df_to_txt)": [[22, "borea.writer.writer_df_to_txt.write_df_to_txt", false]], "write_stat() (borea.stat.statistics.stat method)": [[11, "borea.stat.statistics.Stat.write_stat", false]], "x_central (borea.geodesy.euclidean_proj.euclideanproj attribute)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj.x_central", false]], "y_central (borea.geodesy.euclidean_proj.euclideanproj attribute)": [[3, "borea.geodesy.euclidean_proj.EuclideanProj.y_central", false]]}, "objects": {"": [[0, 0, 0, "-", "borea"]], "borea": [[1, 0, 0, "-", "datastruct"], [2, 0, 0, "-", "format"], [3, 0, 0, "-", "geodesy"], [5, 0, 0, "-", "process"], [9, 0, 0, "-", "reader"], [11, 0, 0, "-", "stat"], [12, 0, 0, "-", "transform_world_image"], [16, 0, 0, "-", "utils"], [21, 0, 0, "-", "worksite"], [22, 0, 0, "-", "writer"]], "borea.datastruct": [[1, 0, 0, "-", "camera"], [1, 0, 0, "-", "dtm"], [1, 0, 0, "-", "gcp"], [1, 0, 0, "-", "shot"], [1, 0, 0, "-", "workdata"]], "borea.datastruct.camera": [[1, 1, 1, "", "Camera"]], "borea.datastruct.camera.Camera": [[1, 2, 1, "", "focal"], [1, 2, 1, "", "height"], [1, 2, 1, "", "name_camera"], [1, 2, 1, "", "ppax"], [1, 2, 1, "", "ppay"], [1, 2, 1, "", "width"]], "borea.datastruct.dtm": [[1, 1, 1, "", "Dtm"]], "borea.datastruct.dtm.Dtm": [[1, 3, 1, "", "get_z_world"], [1, 3, 1, "", "set_cval"], [1, 3, 1, "", "set_dtm"], [1, 3, 1, "", "set_keep_memory"], [1, 3, 1, "", "set_order"]], "borea.datastruct.gcp": [[1, 1, 1, "", "GCP"]], "borea.datastruct.gcp.GCP": [[1, 2, 1, "", "code"], [1, 2, 1, "", "coor"], [1, 2, 1, "", "name_gcp"]], "borea.datastruct.shot": [[1, 1, 1, "", "Shot"]], "borea.datastruct.shot.Shot": [[1, 3, 1, "", "from_param_euclidean"], [1, 3, 1, "", "get_z_add_scale_factor"], [1, 3, 1, "", "get_z_remove_scale_factor"], [1, 3, 1, "", "set_linear_alteration"], [1, 3, 1, "", "set_order_axe"], [1, 3, 1, "", "set_param_eucli_shot"], [1, 3, 1, "", "set_rot_shot"], [1, 3, 1, "", "set_type_z"], [1, 3, 1, "", "set_unit_angle"], [1, 3, 1, "", "set_z_nadir"]], "borea.datastruct.workdata": [[1, 1, 1, "", "Workdata"]], "borea.datastruct.workdata.Workdata": [[1, 3, 1, "", "add_camera"], [1, 3, 1, "", "add_co_point"], [1, 3, 1, "", "add_gcp2d"], [1, 3, 1, "", "add_gcp3d"], [1, 3, 1, "", "add_shot"], [1, 3, 1, "", "set_approx_eucli_proj"], [1, 3, 1, "", "set_dtm"], [1, 3, 1, "", "set_proj"], [1, 3, 1, "", "set_type_z_data"], [1, 3, 1, "", "set_type_z_shot"]], "borea.format": [[2, 0, 0, "-", "conl"], [2, 0, 0, "-", "rpc"]], "borea.format.conl": [[2, 1, 1, "", "Conl"]], "borea.format.conl.Conl": [[2, 2, 1, "", "cam"], [2, 2, 1, "", "proj"], [2, 3, 1, "", "save_conl"], [2, 3, 1, "", "set_camera_xml"], [2, 3, 1, "", "set_geometry_xml"], [2, 2, 1, "", "shot"]], "borea.format.rpc": [[2, 1, 1, "", "Rpc"]], "borea.format.rpc.Rpc": [[2, 3, 1, "", "create_grid_rpc"], [2, 3, 1, "", "from_shot"], [2, 3, 1, "", "least_square_rpc"], [2, 3, 1, "", "normalize_data"], [2, 3, 1, "", "setup_matrix_obs_rpc"]], "borea.geodesy": [[3, 0, 0, "-", "approx_euclidean_proj"], [3, 0, 0, "-", "euclidean_proj"], [3, 0, 0, "-", "local_euclidean_proj"], [3, 0, 0, "-", "proj_engine"], [4, 0, 0, "-", "projectionlist"], [3, 0, 0, "-", "transform_geodesy"]], "borea.geodesy.approx_euclidean_proj": [[3, 1, 1, "", "ApproxEuclideanProj"]], "borea.geodesy.approx_euclidean_proj.ApproxEuclideanProj": [[3, 3, 1, "", "eucli_to_world"], [3, 3, 1, "", "mat_eucli_to_mat"], [3, 3, 1, "", "mat_to_mat_eucli"], [3, 3, 1, "", "world_to_eucli"]], "borea.geodesy.euclidean_proj": [[3, 1, 1, "", "EuclideanProj"]], "borea.geodesy.euclidean_proj.EuclideanProj": [[3, 2, 1, "", "x_central"], [3, 2, 1, "", "y_central"]], "borea.geodesy.local_euclidean_proj": [[3, 1, 1, "", "LocalEuclideanProj"]], "borea.geodesy.local_euclidean_proj.LocalEuclideanProj": [[3, 3, 1, "", "eucli_to_world"], [3, 3, 1, "", "mat_eucli_to_mat"], [3, 3, 1, "", "mat_rot_euclidean_local"], [3, 3, 1, "", "mat_to_mat_eucli"], [3, 3, 1, "", "world_to_eucli"]], "borea.geodesy.proj_engine": [[3, 1, 1, "", "ProjEngine"]], "borea.geodesy.proj_engine.ProjEngine": [[3, 2, 1, "", "epsg"], [3, 2, 1, "", "epsg_output"], [3, 2, 1, "", "geoid"], [3, 3, 1, "", "get_meridian_convergence"], [3, 3, 1, "", "get_scale_factor"], [3, 3, 1, "", "set_epsg"], [3, 3, 1, "", "set_epsg_tf_geog_output"]], "borea.geodesy.projectionlist": [[4, 0, 0, "-", "search_proj"]], "borea.geodesy.projectionlist.search_proj": [[4, 4, 1, "", "convert_line_list"], [4, 4, 1, "", "search_info"]], "borea.geodesy.transform_geodesy": [[3, 1, 1, "", "TransformGeodesy"]], "borea.geodesy.transform_geodesy.TransformGeodesy": [[3, 5, 1, "", "carto_to_geoc"], [3, 5, 1, "", "carto_to_geog"], [3, 5, 1, "", "geoc_to_carto"], [3, 5, 1, "", "geog_to_carto"], [3, 5, 1, "", "geog_to_geoid"], [3, 5, 1, "", "geoid_to_geog"], [3, 3, 1, "", "tf_output"], [3, 3, 1, "", "tranform_altitude"], [3, 3, 1, "", "tranform_height"]], "borea.process": [[6, 0, 0, "-", "p_add_data"], [7, 0, 0, "-", "p_format"], [8, 0, 0, "-", "p_func"]], "borea.process.p_add_data": [[6, 0, 0, "-", "p_add_shot"], [6, 0, 0, "-", "p_file_gcp2d"], [6, 0, 0, "-", "p_file_gcp3d"], [6, 0, 0, "-", "p_gen_param"], [6, 0, 0, "-", "p_pt2d"], [6, 0, 0, "-", "p_pt3d"], [6, 0, 0, "-", "p_unit_shot"], [6, 0, 0, "-", "p_write"]], "borea.process.p_add_data.p_add_shot": [[6, 4, 1, "", "args_add_shot"], [6, 4, 1, "", "process_add_shot"]], "borea.process.p_add_data.p_file_gcp2d": [[6, 4, 1, "", "args_gcp2d"], [6, 4, 1, "", "process_gcp2d"]], "borea.process.p_add_data.p_file_gcp3d": [[6, 4, 1, "", "args_gcp3d"], [6, 4, 1, "", "process_gcp3d"]], "borea.process.p_add_data.p_gen_param": [[6, 4, 1, "", "args_general_param"], [6, 4, 1, "", "process_args_gen_param"]], "borea.process.p_add_data.p_pt2d": [[6, 4, 1, "", "args_add_pt2d"], [6, 4, 1, "", "process_image_world"]], "borea.process.p_add_data.p_pt3d": [[6, 4, 1, "", "args_add_pt3d"], [6, 4, 1, "", "process_world_image"]], "borea.process.p_add_data.p_unit_shot": [[6, 4, 1, "", "args_input_shot"], [6, 4, 1, "", "args_output_shot"]], "borea.process.p_add_data.p_write": [[6, 4, 1, "", "args_writer"]], "borea.process.p_format": [[7, 0, 0, "-", "p_read_opk"], [7, 0, 0, "-", "p_write_con"], [7, 0, 0, "-", "p_write_opk"], [7, 0, 0, "-", "p_write_rpc"]], "borea.process.p_format.p_read_opk": [[7, 4, 1, "", "args_reading_opk"], [7, 4, 1, "", "process_args_read_opk"]], "borea.process.p_format.p_write_con": [[7, 4, 1, "", "args_write_con"], [7, 4, 1, "", "process_args_write_con"]], "borea.process.p_format.p_write_opk": [[7, 4, 1, "", "args_writing_opk"], [7, 4, 1, "", "process_args_write_opk"]], "borea.process.p_format.p_write_rpc": [[7, 4, 1, "", "args_writing_rpc"], [7, 4, 1, "", "process_args_write_rpc"]], "borea.process.p_func": [[8, 0, 0, "-", "p_control"], [8, 0, 0, "-", "p_image_world"], [8, 0, 0, "-", "p_spaceresection"], [8, 0, 0, "-", "p_world_image"]], "borea.process.p_func.p_control": [[8, 4, 1, "", "args_control"], [8, 4, 1, "", "process_args_control"]], "borea.process.p_func.p_image_world": [[8, 4, 1, "", "args_image_world"], [8, 4, 1, "", "process_image_world"]], "borea.process.p_func.p_spaceresection": [[8, 4, 1, "", "args_space_resection"], [8, 4, 1, "", "process_space_resection"]], "borea.process.p_func.p_world_image": [[8, 4, 1, "", "args_world_image"], [8, 4, 1, "", "process_world_image"]], "borea.reader": [[10, 0, 0, "-", "orientation"], [9, 0, 0, "-", "reader_camera"], [9, 0, 0, "-", "reader_point"]], "borea.reader.orientation": [[10, 0, 0, "-", "manage_reader"], [10, 0, 0, "-", "reader_opk"]], "borea.reader.orientation.manage_reader": [[10, 4, 1, "", "reader_orientation"]], "borea.reader.orientation.reader_opk": [[10, 4, 1, "", "read"]], "borea.reader.reader_camera": [[9, 4, 1, "", "camera_txt"], [9, 4, 1, "", "read_camera"]], "borea.reader.reader_point": [[9, 4, 1, "", "read_file_pt"], [9, 4, 1, "", "read_file_pt_dataframe"]], "borea.stat": [[11, 0, 0, "-", "statistics"]], "borea.stat.statistics": [[11, 1, 1, "", "Stat"]], "borea.stat.statistics.Stat": [[11, 3, 1, "", "main_stat_and_save"], [11, 3, 1, "", "main_stat_image_to_world"], [11, 3, 1, "", "main_stat_world_to_image"], [11, 3, 1, "", "save_stat_txt"], [11, 3, 1, "", "stat_image_to_world"], [11, 3, 1, "", "stat_list"], [11, 3, 1, "", "stat_world_to_image"], [11, 3, 1, "", "write_stat"]], "borea.transform_world_image": [[13, 0, 0, "-", "transform_dtm"], [14, 0, 0, "-", "transform_shot"], [15, 0, 0, "-", "transform_worksite"]], "borea.transform_world_image.transform_dtm": [[13, 0, 0, "-", "world_image_dtm"]], "borea.transform_world_image.transform_dtm.world_image_dtm": [[13, 1, 1, "", "WorldImageDtm"]], "borea.transform_world_image.transform_dtm.world_image_dtm.WorldImageDtm": [[13, 3, 1, "", "image_to_world"], [13, 3, 1, "", "world_to_image"]], "borea.transform_world_image.transform_shot": [[14, 0, 0, "-", "conversion_coor_shot"], [14, 0, 0, "-", "image_world_shot"], [14, 0, 0, "-", "world_image_shot"]], "borea.transform_world_image.transform_shot.conversion_coor_shot": [[14, 4, 1, "", "conv_output_z_type"], [14, 4, 1, "", "conv_z_shot_to_z_data"]], "borea.transform_world_image.transform_shot.image_world_shot": [[14, 1, 1, "", "ImageWorldShot"]], "borea.transform_world_image.transform_shot.image_world_shot.ImageWorldShot": [[14, 3, 1, "", "image_to_bundle"], [14, 3, 1, "", "image_to_world"], [14, 3, 1, "", "image_world_iter"], [14, 3, 1, "", "image_z_to_world"], [14, 3, 1, "", "local_to_eucli"]], "borea.transform_world_image.transform_shot.world_image_shot": [[14, 1, 1, "", "WorldImageShot"]], "borea.transform_world_image.transform_shot.world_image_shot.WorldImageShot": [[14, 3, 1, "", "bundle_to_image"], [14, 3, 1, "", "eucli_to_bundle"], [14, 3, 1, "", "eucli_to_image"], [14, 3, 1, "", "world_to_image"]], "borea.transform_world_image.transform_worksite": [[15, 0, 0, "-", "image_world_intersection"], [15, 0, 0, "-", "image_world_least_square"], [15, 0, 0, "-", "image_world_work"], [15, 0, 0, "-", "space_resection"], [15, 0, 0, "-", "world_image_work"]], "borea.transform_world_image.transform_worksite.image_world_intersection": [[15, 1, 1, "", "WorldIntersection"]], "borea.transform_world_image.transform_worksite.image_world_intersection.WorldIntersection": [[15, 3, 1, "", "calculate_image_world_by_intersection"], [15, 3, 1, "", "comput_inter_in_2_more_distant_shot"], [15, 3, 1, "", "intersection_line_3d"], [15, 3, 1, "", "intersection_pt_in_2shot"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.image_world_least_square": [[15, 1, 1, "", "WorldLeastSquare"]], "borea.transform_world_image.transform_worksite.image_world_least_square.WorldLeastSquare": [[15, 3, 1, "", "compute_image_world_least_square"], [15, 3, 1, "", "create_mat_a_and_vect_residu"], [15, 3, 1, "", "init_eucli_points"], [15, 3, 1, "", "least_square_intersect"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.image_world_work": [[15, 1, 1, "", "ImageWorldWork"]], "borea.transform_world_image.transform_worksite.image_world_work.ImageWorldWork": [[15, 3, 1, "", "manage_image_world"], [15, 2, 1, "", "work"]], "borea.transform_world_image.transform_worksite.space_resection": [[15, 1, 1, "", "SpaceResection"]], "borea.transform_world_image.transform_worksite.space_resection.SpaceResection": [[15, 3, 1, "", "func_least_square"], [15, 3, 1, "", "init_kappa"], [15, 3, 1, "", "least_square_shot"], [15, 3, 1, "", "mat_obs_axia"], [15, 3, 1, "", "seed_20_point"], [15, 3, 1, "", "space_resection_gap"], [15, 3, 1, "", "space_resection_on_worksite"], [15, 3, 1, "", "space_resection_shot"], [15, 3, 1, "", "space_resection_to_worksite"], [15, 3, 1, "", "take_obs"]], "borea.transform_world_image.transform_worksite.world_image_work": [[15, 1, 1, "", "WorldImageWork"]], "borea.transform_world_image.transform_worksite.world_image_work.WorldImageWork": [[15, 3, 1, "", "calculate_world_to_image"], [15, 2, 1, "", "work"]], "borea.utils": [[17, 0, 0, "-", "check"], [18, 0, 0, "-", "miscellaneous"], [19, 0, 0, "-", "singleton"], [20, 0, 0, "-", "xml"]], "borea.utils.check": [[17, 0, 0, "-", "check_args_opk"], [17, 0, 0, "-", "check_args_reader_pt"], [17, 0, 0, "-", "check_array"], [17, 0, 0, "-", "check_header"], [17, 0, 0, "-", "check_order_axe"]], "borea.utils.check.check_args_opk": [[17, 4, 1, "", "check_args_opk"], [17, 4, 1, "", "check_header_file"]], "borea.utils.check.check_args_reader_pt": [[17, 4, 1, "", "check_header_file"]], "borea.utils.check.check_array": [[17, 4, 1, "", "check_array_transfo"]], "borea.utils.check.check_header": [[17, 4, 1, "", "check_h_z"], [17, 4, 1, "", "check_head"], [17, 4, 1, "", "get_type_z_and_header"]], "borea.utils.check.check_order_axe": [[17, 4, 1, "", "check_order_axe"], [17, 4, 1, "", "convert_opk_to_xyz"]], "borea.utils.miscellaneous": [[18, 0, 0, "-", "miscellaneous"], [18, 0, 0, "-", "param_bundle"], [18, 0, 0, "-", "sparse"]], "borea.utils.miscellaneous.miscellaneous": [[18, 4, 1, "", "angle_degree_2vect"], [18, 4, 1, "", "dist_2pts"], [18, 4, 1, "", "min_max_pt"], [18, 4, 1, "", "normalize"]], "borea.utils.miscellaneous.param_bundle": [[18, 4, 1, "", "set_param_bundle_diff"]], "borea.utils.miscellaneous.sparse": [[18, 4, 1, "", "invert_diag_sparse_matrix_3_3"]], "borea.utils.singleton": [[19, 0, 0, "-", "singleton"]], "borea.utils.singleton.singleton": [[19, 1, 1, "", "Singleton"]], "borea.utils.singleton.singleton.Singleton": [[19, 3, 1, "", "clear"]], "borea.utils.xml": [[20, 0, 0, "-", "xml"]], "borea.utils.xml.xml": [[20, 4, 1, "", "add_elem"], [20, 4, 1, "", "format_xml"], [20, 4, 1, "", "indent"]], "borea.worksite": [[21, 0, 0, "-", "worksite"]], "borea.worksite.worksite": [[21, 1, 1, "", "Worksite"]], "borea.worksite.worksite.Worksite": [[21, 3, 1, "", "calculate_barycentre"], [21, 3, 1, "", "get_attr_transfo_pt"], [21, 3, 1, "", "get_coor_pt_img_and_world"], [21, 3, 1, "", "get_point_image_dataframe"], [21, 3, 1, "", "get_point_world_dataframe"], [21, 3, 1, "", "set_param_shot"], [21, 3, 1, "", "set_point_image_dataframe"], [21, 3, 1, "", "set_point_world_dataframe"], [21, 3, 1, "", "set_unit_shot"]], "borea.writer": [[22, 0, 0, "-", "manage_writer"], [22, 0, 0, "-", "writer_con"], [22, 0, 0, "-", "writer_df_to_txt"], [22, 0, 0, "-", "writer_opk"], [22, 0, 0, "-", "writer_rpc"]], "borea.writer.manage_writer": [[22, 4, 1, "", "manager_writer"]], "borea.writer.writer_con": [[22, 4, 1, "", "write"]], "borea.writer.writer_df_to_txt": [[22, 4, 1, "", "write_df_to_txt"]], "borea.writer.writer_opk": [[22, 4, 1, "", "write"]], "borea.writer.writer_rpc": [[22, 4, 1, "", "write"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:function", "5": "py:property"}, "terms": {"": [11, 15, 18, 19], "0": [1, 14, 15, 18, 20], "1": [1, 2, 10, 15, 17], "10": [2, 6, 7, 8, 20], "100": 2, "11": 1, "12": 1, "13": 1, "2": [1, 2, 15, 18], "20": 15, "2154": [1, 3], "2d": [1, 6, 13, 18], "3": [1, 2, 15], "3d": [6, 15], "5": 1, "5f": 20, "6": [8, 15], "A": [1, 2, 3, 10, 15, 17, 18], "And": 1, "For": 15, "If": [1, 2, 15], "It": 19, "NOT": [1, 14], "One": [1, 4], "The": [1, 2, 3, 10, 14, 15, 18, 20, 21, 22], "To": [14, 15], "absolut": 11, "account": [10, 17], "acquisit": [1, 2, 15], "ad": [1, 6, 15], "add": [1, 2, 6, 7, 8, 10, 15, 20], "add_camera": [0, 1], "add_co_point": [0, 1], "add_elem": [16, 20], "add_gcp2d": [0, 1], "add_gcp3d": [0, 1], "add_pixel": 15, "add_shot": [0, 1], "adjust": 15, "after": 1, "agr": [1, 9], "aim": 19, "all": [1, 4, 11, 15, 17, 21], "allow": [1, 3, 21], "alter": [1, 2, 10, 14, 17, 22], "altitud": [1, 3, 14, 17], "alwai": [1, 2], "an": [1, 3, 10, 14, 15, 17, 18, 22], "angl": [1, 10, 15, 17, 18, 21, 22], "angle_degree_2vect": [16, 18], "ani": [1, 20], "app": 9, "appear": 15, "appli": [6, 7, 8], "approx": [1, 14, 21], "approx_euclidean_proj": [0, 24], "approxeucli": 1, "approxeuclideanproj": [0, 3], "approxim": 3, "apprx": 1, "ar": [1, 3, 17], "aren": 15, "arg": [1, 3, 6, 7, 8, 10, 17, 22], "argpars": [6, 7, 8], "args_add_pt2d": [5, 6], "args_add_pt3d": [5, 6], "args_add_shot": [5, 6], "args_control": [5, 8], "args_gcp2d": [5, 6], "args_gcp3d": [5, 6], "args_general_param": [5, 6], "args_image_world": [5, 8], "args_input_shot": [5, 6], "args_output_shot": [5, 6], "args_reading_opk": [5, 7], "args_space_resect": [5, 8], "args_world_imag": [5, 8], "args_writ": [5, 6], "args_write_con": [5, 7], "args_writing_opk": [5, 7], "args_writing_rpc": [5, 7], "argspars": [6, 7, 8], "argument": [6, 7, 8], "arithmet": 11, "around": 2, "arrai": [1, 2, 3, 13, 14, 15, 17, 18, 21], "arrang": 9, "ask": [3, 14], "attribut": [1, 21], "ax": [1, 10, 17, 22], "axiat": 15, "b": 15, "bad_head": 17, "balis": [2, 20], "barycentr": 21, "base": [1, 2, 3, 11, 13, 14, 15, 19, 21], "bdortho": 4, "beam": 18, "befor": 3, "begin": 22, "belong": 19, "between": [1, 3, 15, 17, 18], "bilinear": 1, "block": 18, "bool": [1, 2, 10, 14, 17, 21, 22], "boolean": [1, 17], "borea": 23, "buffer": 2, "build": 1, "bundl": [14, 15, 18], "bundle_to_imag": [12, 14], "c": [2, 14], "c_ob": 15, "calcul": [2, 6, 8, 11, 14, 15, 18, 21, 22], "calculate_barycentr": [0, 21], "calculate_image_world_by_intersect": [12, 15], "calculate_world_to_imag": [12, 15], "calcult": 15, "cam": [0, 2, 14, 15], "camera": [0, 2, 9, 14, 15, 24], "camera_txt": [0, 9], "carto_to_geoc": [0, 3], "carto_to_geog": [0, 3], "cartograph": 3, "cartographiqu": 14, "categori": 19, "center": 1, "centr": 3, "central": 3, "chang": [1, 15, 21], "check": [0, 15, 16], "check_args_opk": [0, 16], "check_args_reader_pt": [0, 16], "check_arrai": [0, 16], "check_array_transfo": [16, 17], "check_h_z": [16, 17], "check_head": [0, 16], "check_header_fil": [16, 17], "check_lett": 17, "check_order_ax": [0, 16], "class": [1, 2, 3, 11, 13, 14, 15, 19, 21, 22], "classmethod": [1, 2], "clear": [16, 19], "co": 15, "co_point": [1, 9, 15, 17, 21], "code": [0, 1, 3, 15, 17, 22], "code_gcp": 1, "coeffici": 2, "col": [2, 14], "collinear": 3, "column": [1, 2, 9, 10, 13, 15, 17, 21, 22], "combin": 17, "comput": [2, 3, 13], "comput_inter_in_2_more_distant_shot": [12, 15], "compute_image_world_least_squar": [12, 15], "con": 22, "condit": 1, "conic": [2, 7, 22], "conl": [0, 24], "connect": [1, 9, 15], "construct": 1, "contain": [1, 17], "content": 24, "control": [1, 8, 11, 15, 21], "control_typ": [15, 21], "conv_output_z_typ": [12, 14], "conv_z_shot_to_z_data": [12, 14], "converg": [3, 15], "convers": [14, 17], "conversion_coor_shot": [0, 12], "convert": [2, 3, 4, 14, 17, 22], "convert_line_list": [3, 4], "convert_opk_to_xyz": [16, 17], "coodin": 14, "coor": [0, 1, 3, 14], "coor2d": 1, "coor_2d": 1, "coor_eucli": [3, 18], "coor_gcp": 1, "coor_img": 13, "coor_init": 15, "coor_world": [3, 13, 14], "coordin": [1, 2, 3, 6, 8, 13, 14, 15, 18, 22], "coordinn": 18, "coordonne": 15, "copoint": 15, "correct": [1, 2, 10, 17, 21, 22], "correspond": 15, "cr": 3, "creat": [2, 3], "create_grid_rpc": [0, 2], "create_mat_a_and_vect_residu": [12, 15], "creation": [2, 15, 19], "cubic": 1, "cval": 1, "data": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 21, 22], "data_input": 4, "data_list": 11, "datafram": [9, 15, 21, 22], "datastruct": [0, 24], "de": 1, "definit": 1, "degre": [1, 2, 3, 10, 17, 18, 22], "depend": [15, 21], "describ": 2, "design": 19, "df": 22, "dfpt": 15, "dict": [1, 2, 10, 11, 15, 17, 22], "dictionari": [2, 11, 22], "dictionnari": 15, "diff": 17, "differ": 21, "differenti": [1, 18], "digit": 1, "dim": [17, 18], "dimens": 17, "direct": 15, "dist_2pt": [16, 18], "distanc": [15, 18], "distant": 15, "distort": 1, "do": 15, "dtm": [0, 13, 19, 24], "du": 14, "dx": 15, "d\u00e9fault": 14, "e": [10, 17], "each": 15, "edg": 1, "elem": 20, "element": [4, 15, 17, 20], "elementtre": [2, 20], "elev": 1, "enough": 15, "epsg": [0, 1, 3, 4, 22], "epsg_out": 3, "epsg_output": [0, 3, 22], "equat": [3, 15], "error": [1, 17], "et": [2, 20], "etre": [2, 20], "eucli": 15, "eucli_to_bundl": [12, 14], "eucli_to_imag": [12, 14], "eucli_to_world": [0, 3], "euclidean": [1, 3, 14, 15, 18, 21], "euclidean_proj": [0, 24], "euclideanproj": [0, 3], "euclidian": 3, "euclidien": 15, "ex": [1, 3], "extern": [8, 15], "externa": 15, "extract": [1, 3], "fact_rpc": [2, 22], "factor": [1, 2, 3, 15, 22], "fals": [14, 17, 21], "field": 15, "file": [1, 2, 4, 6, 7, 8, 9, 10, 11, 17, 20, 22], "fill": 1, "first": [15, 18], "fisrt": 18, "fix": 15, "flaot": 1, "flip": 18, "float": [1, 3, 14, 15, 17, 18], "focal": [0, 1], "folder": 22, "folder_con": 22, "folder_rpc": 22, "form": 1, "formal": 17, "format": [0, 1, 9, 17, 20, 22, 24], "format_xml": [16, 20], "frame": 18, "frist": 15, "from": [2, 3, 6, 7, 8, 13, 15, 20], "from_param_euclidean": [0, 1], "from_shot": [0, 2], "func_least_squar": [12, 15], "function": [3, 10, 11, 13, 14, 17, 18, 20, 22], "g": [10, 17], "gcp": [0, 6, 15, 21, 24], "gcp2d": [1, 9, 15, 17, 21], "gcp3d": [9, 15, 17], "gdal": 1, "gener": 6, "geoc_to_carto": [0, 3], "geodesi": [0, 24], "geog_to_carto": [0, 3], "geog_to_geoid": [0, 3], "geograph": [2, 3], "geoid": [0, 1, 3], "geoid_to_geog": [0, 3], "geometri": 2, "georeferenc": 1, "geotiff": 1, "geoview": [2, 4, 7], "get": [1, 18, 21], "get_attr_transfo_pt": [0, 21], "get_coor_pt_img_and_world": [0, 21], "get_meridian_converg": [0, 3], "get_point_image_datafram": [0, 21], "get_point_world_datafram": [0, 21], "get_scale_factor": [0, 3], "get_type_z_and_head": [16, 17], "get_z_add_scale_factor": [0, 1], "get_z_remove_scale_factor": [0, 1], "get_z_world": [0, 1], "give": 1, "given": [14, 15], "good": 17, "grid": [1, 2], "grid_img": 2, "grid_world": 2, "ground": [1, 6, 11, 14, 15], "gt": 13, "h": [1, 17], "head": 17, "header": [4, 9, 10, 17, 22], "height": [0, 1, 3, 14, 15, 17], "i": [1, 2, 3, 9, 10, 14, 15, 17, 19, 20, 21, 22], "id_img": [15, 21], "id_pt": [15, 21], "ign": [1, 2, 7], "imag": [1, 2, 6, 8, 11, 13, 14, 15, 18, 21], "image_to_bundl": [12, 14], "image_to_world": [12, 13, 14], "image_world_intersect": [0, 12], "image_world_it": [12, 14], "image_world_least_squar": [0, 12], "image_world_shot": [0, 12], "image_world_work": [0, 12], "image_z_to_world": [12, 14], "imageworldshot": [12, 14], "imageworldwork": [12, 15], "imc_adjust": 15, "img_coor": 14, "img_norm": 2, "implement": [3, 20], "indent": [16, 20], "index": [18, 23], "inform": [1, 10, 17, 22], "init": 3, "init_eucli_point": [12, 15], "init_kappa": [12, 15], "initi": 15, "input": [4, 14], "instanc": 19, "instanti": [3, 19], "int": [1, 2, 3, 15, 20], "inter": 15, "interpol": 1, "intersect": 15, "intersection_line_3d": [12, 15], "intersection_pt_in_2shot": [12, 15], "interv": [10, 17], "invers": 18, "invert_diag_sparse_matrix_3_3": [16, 18], "io": 11, "item": 20, "its": 15, "j": [10, 17], "kappa": [1, 15], "keep_in_memori": 1, "keep_memori": 1, "kei": [1, 2, 10, 17, 22], "known": 3, "kwarg": [1, 3], "l": [2, 14], "l_ob": 15, "la": 14, "lcode": 15, "least": [2, 15], "least_square_intersect": [12, 15], "least_square_rpc": [0, 2], "least_square_shot": [12, 15], "letter": 17, "level": 20, "lib": [2, 6, 7, 8, 20], "light": 2, "linalt": 2, "line": [1, 2, 4, 10, 13, 14, 15, 17, 21], "linear": [1, 2, 10, 14, 17, 22], "linear_alter": [1, 10, 17, 21, 22], "link": [1, 21], "list": [1, 3, 4, 9, 10, 11, 15, 17, 20, 21, 22], "list_data": 4, "list_lett": 17, "list_shot": 15, "local": [3, 14], "local_euclidean_proj": [0, 24], "local_to_eucli": [12, 14], "localeuclideanproj": [0, 3], "m": 18, "maco": 2, "main": 21, "main_stat_and_sav": [0, 11], "main_stat_image_to_world": [0, 11], "main_stat_world_to_imag": [0, 11], "make": 15, "manag": [9, 17], "manage_image_world": [12, 15], "manage_read": [0, 9], "manage_writ": [0, 24], "manager_writ": [0, 22], "manipul": [1, 3], "mapinfo": 4, "marker": 15, "mat": [3, 18], "mat_a": 15, "mat_eucli": 3, "mat_eucli_to_mat": [0, 3], "mat_inv": 18, "mat_obs_axia": [12, 15], "mat_ori_eucli": 1, "mat_rot_eucli": 1, "mat_rot_euclidean_loc": [0, 3], "mat_to_mat_eucli": [0, 3], "math": 18, "matric": [1, 21], "matrix": [1, 2, 3, 10, 15, 17, 18, 22], "max": [11, 18], "me": 9, "mean": [1, 11, 15], "median": 11, "memori": 1, "meridian": 3, "messag": 17, "method": [1, 2, 15], "min": [11, 18], "min_max_pt": [16, 18], "miscellan": [0, 16], "misss": 17, "model": 1, "modifi": [1, 14], "modul": [23, 24], "most": 15, "ms_error": 17, "ms_error_lett": 17, "must": [1, 3, 17], "n": [17, 18], "nadir": [1, 14], "name": [1, 15, 20, 21, 22], "name_cam": 1, "name_camera": [0, 1], "name_gcp": [0, 1], "name_opk": 22, "name_point": [1, 15], "name_pt": 15, "name_shot": [1, 15, 21], "nbr_inc": 15, "nbr_ob": 15, "ndarrai": [1, 2, 3, 13, 14, 15, 17, 18, 21], "nearest": 1, "need": 9, "new": [1, 3], "nodata": 1, "nonadir": 14, "none": [1, 2, 3, 6, 7, 8, 9, 10, 11, 15, 17, 20, 21, 22], "normal": [2, 16, 18], "normalize_data": [0, 2], "np": [1, 2, 3, 13, 14, 15, 17, 18, 21], "number": [15, 20], "numpi": 1, "ob": 15, "object": [1, 2, 3, 4, 10, 11, 13, 14, 15, 19], "obs_imag": [15, 21], "observ": [2, 15], "offset": 18, "omega": [1, 15], "one": [1, 2, 6, 18], "oopk": 17, "opk": [6, 7, 10, 17, 22], "order": [1, 2, 10, 17, 21, 22], "order_ax": [1, 10, 17, 21, 22], "ori": 2, "ori_shot": 1, "orient": [0, 1, 9, 15], "other": [10, 22], "output": [3, 4, 14, 17, 22], "outsid": 1, "p_add_data": [0, 5], "p_add_shot": [0, 5], "p_bundl": 14, "p_control": [0, 5], "p_eucli": 14, "p_file_gcp2d": [0, 5], "p_file_gcp3d": [0, 5], "p_format": [0, 5], "p_func": [0, 5], "p_gen_param": [0, 5], "p_image_world": [0, 5], "p_pt2d": [0, 5], "p_pt3d": [0, 5], "p_read_opk": [0, 5], "p_spaceresect": [0, 5], "p_unit_shot": [0, 5], "p_world_imag": [0, 5], "p_write": [0, 5], "p_write_con": [0, 5], "p_write_opk": [0, 5], "p_write_rpc": [0, 5], "packag": [23, 24], "page": 23, "panda": 21, "par": 14, "param_bundl": [0, 16], "param_con": 22, "param_rpc": [2, 22], "paramet": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22], "parent": [3, 13], "parser": [6, 7, 8], "part": 1, "past": 1, "path": [1, 2, 9, 10, 22], "path_con": 2, "path_dtm": 1, "path_geoid": 1, "path_opk": 22, "pathoutput": 11, "pathreturn": 22, "pattern": 19, "pd": [9, 15, 21, 22], "pd_me": [15, 21], "pd_mes_temp": 15, "pd_pnt": 15, "percentag": 15, "perform": 1, "phi": [1, 15], "photogrametriqu": 8, "photogrammetr": [10, 22], "photogrammetri": [10, 22], "pinit": 15, "pixel": [1, 15], "point": [1, 2, 3, 6, 9, 11, 14, 15, 17, 18, 21], "point1": 15, "point2": 15, "polynom": [2, 22], "polynomi": 2, "polynomial_degre": 2, "porject": 1, "pos_eucli": [1, 14], "pos_shot": 1, "pos_shot_eucli": 1, "posit": [1, 14, 15, 18], "possibl": 17, "ppai": [0, 1], "ppax": [0, 1], "prec": 20, "precis": [1, 20], "process": [0, 14, 15, 24], "process_add_shot": [5, 6], "process_args_control": [5, 8], "process_args_gen_param": [5, 6], "process_args_read_opk": [5, 7], "process_args_write_con": [5, 7], "process_args_write_opk": [5, 7], "process_args_write_rpc": [5, 7], "process_gcp2d": [5, 6], "process_gcp3d": [5, 6], "process_image_world": [5, 6, 8], "process_space_resect": [5, 8], "process_world_imag": [5, 6, 8], "proj": [0, 2], "proj4": 4, "proj_engin": [0, 24], "project": [1, 2, 3, 22], "projectionlist": [0, 3], "projengin": [0, 1, 3, 19], "projeucli": 1, "properti": 3, "provid": 3, "pt1": 18, "pt2": 18, "pt2d": [9, 15], "pt3d": [9, 15], "pt_bundl": 14, "pt_eucli": 15, "pt_img": 15, "pt_world": [15, 21], "put": 20, "py": [2, 6, 7, 8, 20], "pyproj": 3, "python3": [2, 6, 7, 8, 20], "quintic": 1, "r": 18, "radian": [1, 10, 17, 22], "rais": 1, "random": 15, "ratat": 17, "read": [1, 2, 6, 7, 9, 10, 17], "read_camera": [0, 9], "read_file_pt": [0, 9], "read_file_pt_datafram": [0, 9], "reader": [0, 17, 24], "reader_camera": [0, 24], "reader_opk": [0, 9], "reader_orient": [9, 10], "reader_point": [0, 24], "recalcul": 15, "recalcult": 15, "record": 22, "recov": 21, "refer": [3, 4, 18], "registr": 22, "remov": 1, "replac": 17, "repres": [1, 3], "request": 21, "research": 4, "resect": 15, "residu": [11, 15], "ressourc": 21, "restrict": 19, "result": [1, 15], "retriev": 21, "retun": 17, "return": [1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 21], "rotat": [1, 3, 10, 17, 18, 21, 22], "rpc": [0, 7, 22, 24], "same": 17, "save": [2, 9, 11, 21, 22], "save_conl": [0, 2], "save_stat_txt": [0, 11], "scale": [1, 3, 18], "scipi": 17, "script": [9, 10, 17], "sd": 4, "search": [15, 23], "search_info": [3, 4], "search_proj": [0, 3], "second": [15, 18], "seed_20_point": [12, 15], "self": [1, 13], "set": [1, 15, 17, 18, 21], "set_approx_eucli_proj": [0, 1], "set_camera_xml": [0, 2], "set_cval": [0, 1], "set_dtm": [0, 1], "set_epsg": [0, 3], "set_epsg_tf_geog_output": [0, 3], "set_geometry_xml": [0, 2], "set_keep_memori": [0, 1], "set_linear_alter": [0, 1], "set_ord": [0, 1], "set_order_ax": [0, 1], "set_param_bundle_diff": [16, 18], "set_param_eucli_shot": [0, 1], "set_param_shot": [0, 21], "set_point_image_datafram": [0, 21], "set_point_world_datafram": [0, 21], "set_proj": [0, 1], "set_rot_shot": [0, 1], "set_type_z": [0, 1], "set_type_z_data": [0, 1], "set_type_z_shot": [0, 1], "set_unit_angl": [0, 1], "set_unit_shot": [0, 21], "set_z_nadir": [0, 1], "setter": 3, "setup": [1, 2], "setup_matrix_obs_rpc": [0, 2], "shoot": 15, "shot": [0, 2, 6, 8, 10, 14, 15, 17, 18, 21, 24], "shot1": 15, "shot2": 15, "shot_adjust": 15, "sigma": 11, "singl": 19, "singleton": [0, 16], "site": [10, 11, 22], "size": 2, "size_grid": 2, "slinear": 1, "softwar": 2, "solv": 15, "sourc": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22], "space": 15, "space_resect": [0, 12], "space_resection_gap": [12, 15], "space_resection_on_worksit": [12, 15], "space_resection_shot": [12, 15], "space_resection_to_worksit": [12, 15], "spaceresect": [12, 15], "spars": [0, 16], "squar": [2, 15], "src": [2, 22], "stat": [0, 24], "stat_image_to_world": [0, 11], "stat_list": [0, 11], "stat_world_to_imag": [0, 11], "statist": [0, 24], "store": 1, "str": [1, 2, 4, 9, 10, 11, 14, 15, 17, 18, 20, 21, 22], "string": 21, "structur": 20, "submodul": [0, 5, 12, 16, 24], "subpackag": 24, "support": 1, "symbol": 17, "system": [1, 3, 14, 15, 21], "t": 15, "ta": 4, "tabl": [15, 21], "take": [14, 15, 21], "take_ob": [12, 15], "taken": [10, 17], "terrain": [14, 21], "textiowrapp": 11, "tf_output": [0, 3], "thei": [15, 17], "thi": 3, "tool": 21, "topaero": 4, "tranform": 3, "tranform_altitud": [0, 3], "tranform_height": [0, 3], "transform": [2, 3, 10, 13, 14, 15, 21], "transform_dtm": [0, 12], "transform_geodesi": [0, 24], "transform_shot": [0, 12], "transform_worksit": [0, 12], "transform_world_imag": [0, 24], "transformgeodesi": [0, 3], "transit": 3, "true": [1, 2, 10, 14, 17, 21, 22], "tubl": 15, "tupl": [2, 13, 15, 17, 18, 21], "two": [1, 15, 18], "txt": [4, 9, 11, 22], "type": [1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 20, 21, 22], "type_dtm": 1, "type_input": 4, "type_m": 18, "type_output": 4, "type_point": [9, 11, 15, 21], "type_process": 15, "type_pt": 17, "type_z": [1, 17, 21], "type_z_data": [1, 14], "type_z_input": 14, "type_z_output": 14, "type_z_shot": [1, 14], "u": 18, "u1": 18, "u2": 18, "u3": 18, "union": [3, 14, 17], "unit": [1, 6, 10, 17, 21, 22], "unit_angl": [1, 10, 17, 21, 22], "unit_data": 2, "unit_z_data": 2, "unit_z_shot": 2, "uniti": 2, "up": [1, 15, 18, 21], "us": [1, 3, 15, 21], "usr": [2, 6, 7, 8, 20], "util": [0, 24], "v": 18, "val": 20, "valid": 3, "valu": [1, 3, 15], "var": 11, "variabl": 17, "variat": 15, "variou": 17, "vect1": 15, "vect2": 15, "vector": [15, 17, 18], "verif": 17, "visibl": 15, "want": [1, 2, 14, 15, 21], "we": 18, "wgs84": [2, 22], "what": [15, 21], "when": [2, 22], "where": [15, 21], "which": [1, 3, 9, 15, 18], "whit": 1, "whose": 19, "width": [0, 1, 15], "without": [1, 17], "wkt": 4, "woksit": 15, "work": [6, 7, 8, 9, 10, 11, 12, 15, 18, 22], "workdata": [0, 21, 24], "worksid": 10, "worksit": [0, 1, 3, 6, 7, 8, 9, 10, 11, 14, 15, 22, 24], "world": [1, 2, 3, 6, 8, 11, 13, 14, 15, 21, 22], "world_image_dtm": [0, 12], "world_image_shot": [0, 12], "world_image_work": [0, 12], "world_norm": 2, "world_to_eucli": [0, 3], "world_to_imag": [12, 13, 14], "worldimagedtm": [1, 12, 13], "worldimageshot": [12, 14], "worldimagework": [12, 15], "worldintersect": [12, 15], "worldleastsquar": [12, 15], "write": [0, 2, 6, 7, 11, 20, 22], "write_df_to_txt": [0, 22], "write_stat": [0, 11], "writer": [0, 24], "writer_con": [0, 24], "writer_df_to_txt": [0, 24], "writer_opk": [0, 24], "writer_rpc": [0, 24], "x": [1, 2, 3, 13, 14, 15, 17, 21], "x_carto": 3, "x_central": [0, 3], "x_col": 14, "xml": [0, 2, 9, 16], "y": [1, 2, 3, 13, 14, 15, 17, 21], "y_carto": 3, "y_central": [0, 3], "y_line": 14, "you": [1, 2, 14, 15, 21], "your": 21, "z": [1, 2, 3, 14, 15, 17, 21], "z_nadir": 1}, "titles": ["borea package", "borea.datastruct package", "borea.format package", "borea.geodesy package", "borea.geodesy.projectionlist package", "borea.process package", "borea.process.p_add_data package", "borea.process.p_format package", "borea.process.p_func package", "borea.reader package", "borea.reader.orientation package", "borea.stat package", "borea.transform_world_image package", "borea.transform_world_image.transform_dtm package", "borea.transform_world_image.transform_shot package", "borea.transform_world_image.transform_worksite package", "borea.utils package", "borea.utils.check package", "borea.utils.miscellaneous package", "borea.utils.singleton package", "borea.utils.xml package", "borea.worksite package", "borea.writer package", "Welcome to Pink_Lady\u2019s documentation!", "borea"], "titleterms": {"": 23, "approx_euclidean_proj": 3, "borea": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24], "camera": 1, "check": 17, "check_args_opk": 17, "check_args_reader_pt": 17, "check_arrai": 17, "check_head": 17, "check_order_ax": 17, "conl": 2, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "conversion_coor_shot": 14, "datastruct": 1, "document": 23, "dtm": 1, "euclidean_proj": 3, "format": 2, "gcp": 1, "geodesi": [3, 4], "image_world_intersect": 15, "image_world_least_squar": 15, "image_world_shot": 14, "image_world_work": 15, "indic": 23, "local_euclidean_proj": 3, "manage_read": 10, "manage_writ": 22, "miscellan": 18, "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], "orient": 10, "p_add_data": 6, "p_add_shot": 6, "p_control": 8, "p_file_gcp2d": 6, "p_file_gcp3d": 6, "p_format": 7, "p_func": 8, "p_gen_param": 6, "p_image_world": 8, "p_pt2d": 6, "p_pt3d": 6, "p_read_opk": 7, "p_spaceresect": 8, "p_unit_shot": 6, "p_world_imag": 8, "p_write": 6, "p_write_con": 7, "p_write_opk": 7, "p_write_rpc": 7, "packag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], "param_bundl": 18, "pink_ladi": 23, "process": [5, 6, 7, 8], "proj_engin": 3, "projectionlist": 4, "reader": [9, 10], "reader_camera": 9, "reader_opk": 10, "reader_point": 9, "rpc": 2, "search_proj": 4, "shot": 1, "singleton": 19, "space_resect": 15, "spars": 18, "stat": 11, "statist": 11, "submodul": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22], "subpackag": [0, 3, 5, 9, 12, 16], "tabl": 23, "transform_dtm": 13, "transform_geodesi": 3, "transform_shot": 14, "transform_worksit": 15, "transform_world_imag": [12, 13, 14, 15], "util": [16, 17, 18, 19, 20], "welcom": 23, "workdata": 1, "worksit": 21, "world_image_dtm": 13, "world_image_shot": 14, "world_image_work": 15, "writer": 22, "writer_con": 22, "writer_df_to_txt": 22, "writer_opk": 22, "writer_rpc": 22, "xml": 20}}) \ No newline at end of file diff --git a/examples/eg_build_worksite_by_data.py b/examples/eg_build_worksite_by_data.py index 2c23a584..49e72b16 100644 --- a/examples/eg_build_worksite_by_data.py +++ b/examples/eg_build_worksite_by_data.py @@ -33,7 +33,7 @@ def worksite_1shot() -> Worksite: # Setup projection # set_epsg(epsg, path_geoid) # the geoid is mandatory if type_z_data and type_z_shot are different - work.set_proj(2154, PATH_GEOID) + work.set_proj([2154], PATH_GEOID) # Add camera information # add_camera(name_cam, ppax, ppay, focal, width, height) @@ -72,7 +72,7 @@ def worksite_2shots_2copts() -> Worksite: # Setup projection # set_epsg(epsg, path_geoid) # the geoid is mandatory if type_z_data and type_z_shot are different - work.set_proj(2154, PATH_GEOID) + work.set_proj([2154], PATH_GEOID) # Add camera information # add_camera(name_cam, ppax, ppay, focal, width, height) @@ -120,7 +120,7 @@ def worksite_2shot_3gcp() -> Worksite: # Setup projection # set_epsg(epsg, path_geoid) # the geoid is mandatory if type_z_data and type_z_shot are different - work.set_proj(2154, PATH_GEOID) + work.set_proj([2154], PATH_GEOID) # Add camera information # add_camera(name_cam, ppax, ppay, focal, width, height,) diff --git a/examples/eg_build_worksite_by_file.py b/examples/eg_build_worksite_by_file.py index 29294ae5..b1bd1b2c 100644 --- a/examples/eg_build_worksite_by_file.py +++ b/examples/eg_build_worksite_by_file.py @@ -46,13 +46,13 @@ def worksite_opk() -> Worksite: read_camera(PATH_CAM, work_opk) # Settup projection of your worksite - # work.set_proj(code_epsg: int, path_geoid: list[str]) + # work.set_proj(code_epsg: list, path_geoid: list[str]) # path geoid is a list of path if there are many geoid of the worksite or you can make just name # of the file if they're in the right place for pyproj (*usr/share/proj* or # *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) # The geoid is used to perform the height-altitude transformation or the inverse # if the data are not in the same unit (if they are in the same unit, you can use None instead). - work_opk.set_proj(2154, PATH_GEOID) + work_opk.set_proj([2154], PATH_GEOID) # Settup dtm of the worksite # work.set_dtm(path_dtm: str, unit_dtm: str) @@ -77,13 +77,13 @@ def worksite_without_shot() -> Worksite: read_camera(PATH_CAM, work_opk) # Settup projection of your worksite - # work.set_proj(code_epsg: int, path_geoid: list[str]) + # work.set_proj(code_epsg: list, path_geoid: list[str]) # path geoid is a list of path if there are many geoid of the worksite or you can make just name # of the file if they're in the right place for pyproj (*usr/share/proj* or # *env_name_folder/lib/python3.10/site-packages/pyproj/proj_dir/share/proj*) # The geoid is used to perform the height-altitude transformation or the inverse # if the data are not in the same unit (if they are in the same unit, you can use None instead). - work_opk.set_proj(2154, PATH_GEOID) + work_opk.set_proj([2154], PATH_GEOID) # Settup dtm of the worksite # work.set_dtm(path_dtm: str, unit_dtm: str) diff --git a/test/test_datastruct/test_shot.py b/test/test_datastruct/test_shot.py index 3c77ef0d..fa6fb47b 100644 --- a/test/test_datastruct/test_shot.py +++ b/test/test_datastruct/test_shot.py @@ -16,7 +16,7 @@ np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", 'degree', True, "opk") CAM = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) -EPSG = 2154 +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] LIST_NO_GEOID = None PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" diff --git a/test/test_datastruct/test_workdata.py b/test/test_datastruct/test_workdata.py index 7ec4b728..618d1597 100644 --- a/test/test_datastruct/test_workdata.py +++ b/test/test_datastruct/test_workdata.py @@ -11,6 +11,8 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSGFR = [2154] +EPSGAR = [4339] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -41,9 +43,9 @@ def test_set_proj_lambertbase(): np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([814975.925, 6283986.148, 1771.280]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSGFR, PATH_GEOID) work.set_param_shot(approx=False) - assert ProjEngine().epsg == 2154 + assert ProjEngine().epsg == EPSGFR assert round(work.shots["t1"].projeucli.pt_central[0], 3) == 814975.925 assert round(work.shots["t1"].projeucli.pt_central[1], 3) == 6283986.148 @@ -56,9 +58,9 @@ def test_set_proj_lambertbase_pathfolder(): np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([814975.925, 6283986.148, 1771.280]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSGFR, PATH_GEOID) work.set_param_shot(approx=False) - assert ProjEngine().epsg == 2154 + assert ProjEngine().epsg == EPSGFR assert round(work.shots["t1"].projeucli.pt_central[0], 3) == 814975.925 assert round(work.shots["t1"].projeucli.pt_central[1], 3) == 6283986.148 @@ -71,9 +73,9 @@ def test_set_proj_lambertbase_pathfolderwin(): np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([814975.925, 6283986.148, 1771.280]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSGFR, PATH_GEOID) work.set_param_shot(approx=False) - assert ProjEngine().epsg == 2154 + assert ProjEngine().epsg == EPSGFR assert round(work.shots["t1"].projeucli.pt_central[0], 3) == 814975.925 assert round(work.shots["t1"].projeucli.pt_central[1], 3) == 6283986.148 @@ -86,9 +88,9 @@ def test_set_proj_lambertbase_withepsg(): np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([814975.925, 6283986.148, 1771.280]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSGFR, PATH_GEOID) work.set_param_shot(approx=False) - assert ProjEngine().epsg == 2154 + assert ProjEngine().epsg == EPSGFR assert round(work.shots["t1"].projeucli.pt_central[0], 3) == 814975.925 assert round(work.shots["t1"].projeucli.pt_central[1], 3) == 6283986.148 @@ -98,9 +100,9 @@ def test_set_proj_withjsonandepsg(): work.add_shot("t1", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t2", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(4339, PATH_GEOID) + work.set_proj(EPSGAR, PATH_GEOID) work.set_param_shot(approx=False) - assert ProjEngine().epsg == 4339 + assert ProjEngine().epsg == EPSGAR assert work.shots["t1"].projeucli.pt_central[0] == 1 assert work.shots["t1"].projeucli.pt_central[1] == 2 @@ -110,8 +112,8 @@ def test_set_proj_epsgnogeoid(): work.add_shot("t1", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t2", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') - work.set_proj(4339) - assert ProjEngine().epsg == 4339 + work.set_proj(EPSGAR) + assert ProjEngine().epsg == EPSGAR def test_set_proj_badepsg(): @@ -120,7 +122,7 @@ def test_set_proj_badepsg(): work.add_shot("t2", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') work.add_shot("t3", np.array([1, 2, 3]), np.array([3, 2, 1]), "test_cam", "degree", True, 'opk') with pytest.raises(pyproj.exceptions.CRSError): - work.set_proj(1111) + work.set_proj([1111]) def test_add_cam(): @@ -179,7 +181,7 @@ def test_set_z_nadir_shot(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, 'opk') - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSGFR, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" @@ -197,3 +199,21 @@ def test_set_dtm(): assert hasattr(dtm, 'img') assert hasattr(dtm, 'rb') assert hasattr(dtm, 'gt') + + +def test_set_multi_proj(): + work = Worksite("Test") + work.set_proj([2154, 4339, 4326]) + assert ProjEngine().epsg == [2154, 4339, 4326] + + +def test_set_multi_proj_none(): + work = Worksite("Test") + work.set_proj([2154, None, 4339]) + assert ProjEngine().epsg == [2154, None, 4339] + + +def test_set_multi_projfalse(): + work = Worksite("Test") + with pytest.raises(pyproj.exceptions.CRSError): + work.set_proj([2154, None, 1111]) diff --git a/test/test_format/test_rpc.py b/test/test_format/test_rpc.py index 12f4b123..9f5f7894 100644 --- a/test/test_format/test_rpc.py +++ b/test/test_format/test_rpc.py @@ -17,7 +17,7 @@ np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", 'degree', True, 'opk') CAM = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) -EPSG = 2154 +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] LIST_NO_GEOID = None PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" diff --git a/test/test_geodesy/test_local_proj.py b/test/test_geodesy/test_local_proj.py index 1a711ff1..20d31077 100644 --- a/test/test_geodesy/test_local_proj.py +++ b/test/test_geodesy/test_local_proj.py @@ -1,13 +1,14 @@ """ Script test for module euclidean_proj """ -# pylint: disable=import-error, missing-function-docstring, unused-argument +# pylint: disable=import-error, missing-function-docstring, unused-argument, duplicate-code import numpy as np from borea.geodesy.proj_engine import ProjEngine from borea.geodesy.local_euclidean_proj import LocalEuclideanProj from borea.datastruct.dtm import Dtm +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -22,7 +23,7 @@ def proj_singleton(epsg, path_geoid=None): def test_world_to_eucli_withfloat(): - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0, 0) x, y, z = euproj.world_to_eucli(np.array([0, 0, 0])) print(x, y, z) @@ -33,7 +34,7 @@ def test_world_to_eucli_withfloat(): def test_world_to_eucli_witharray3(): pt = np.array([[0, 1, 2], [0, 1, 2], [0, 1, 2]]) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0, 0) x, y, z = euproj.world_to_eucli(pt) assert round(x[0]) == 0 @@ -43,7 +44,7 @@ def test_world_to_eucli_witharray3(): def test_world_to_eucli_witharray1(): pt = np.array([[0], [0], [0]]) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0, 0) x, y, z = euproj.world_to_eucli(pt) assert round(x) == 0 @@ -53,7 +54,7 @@ def test_world_to_eucli_witharray1(): def test_eucli_to_world_withfloat(): pt = np.array([0.0, 0.0, 0.0]) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0.0, 0.0) x, y, z = euproj.eucli_to_world(pt) assert round(x) == 0 @@ -63,7 +64,7 @@ def test_eucli_to_world_withfloat(): def test_eucli_to_world_witharray3(): pt = np.array([[0, 1, 2], [0, 1, 2], [0, 1, 2]]) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0.0, 0.0) x, y, z = euproj.eucli_to_world(pt) assert round(x[0]) == 0 @@ -73,7 +74,7 @@ def test_eucli_to_world_witharray3(): def test_eucli_to_world_witharray1(): pt = np.array([[0], [0], [0]]) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) euproj = LocalEuclideanProj(0.0, 0.0) x, y, z = euproj.eucli_to_world(pt) assert round(x) == 0 diff --git a/test/test_geodesy/test_projengine.py b/test/test_geodesy/test_projengine.py index 1bfd5ec3..86bb63be 100644 --- a/test/test_geodesy/test_projengine.py +++ b/test/test_geodesy/test_projengine.py @@ -1,13 +1,14 @@ """ Script test for module proj_engine """ -# pylint: disable=import-error, missing-function-docstring, unused-argument +# pylint: disable=import-error, missing-function-docstring, unused-argument, duplicate-code import pyproj import pytest from borea.datastruct.dtm import Dtm from borea.geodesy.proj_engine import ProjEngine +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -18,28 +19,29 @@ def setup_module(module): # run before the first test def test_projengine_withpathgeotiff(): ProjEngine.clear() - ProjEngine().set_epsg(2154, PATH_GEOID) + ProjEngine().set_epsg(EPSG, PATH_GEOID) proj = ProjEngine() - assert proj.geog_to_geoid - assert not proj.carto_to_geog_out + assert proj.tf.geog_to_geoid + assert not proj.tf.carto_to_geog_out def test_projengine_notgeoid(): ProjEngine.clear() - ProjEngine().set_epsg(2154) - proj = ProjEngine() - assert not proj.geog_to_geoid + ProjEngine().set_epsg(EPSG) + with pytest.raises(ValueError): + _ = ProjEngine().tf.geog_to_geoid def test_projengine_notgeoidwithpathgeotiff(): ProjEngine.clear() + ProjEngine().set_epsg(EPSG, ["fr_ign_RAF2.tif"]) with pytest.raises(pyproj.exceptions.ProjError): - ProjEngine().set_epsg(2154, ["fr_ign_RAF2.tif"]) + _ = ProjEngine().tf.geog_to_geoid def test_get_meridian_convergence(): ProjEngine.clear() - ProjEngine().set_epsg(2154, PATH_GEOID) + ProjEngine().set_epsg(EPSG, PATH_GEOID) proj = ProjEngine() meridian_convergence = proj.get_meridian_convergence(815601, 6283629) theorical_value = -1.039350 @@ -48,21 +50,21 @@ def test_get_meridian_convergence(): def test_tf_create_tf_output(): ProjEngine.clear() - ProjEngine().set_epsg(2154, PATH_GEOID) + ProjEngine().set_epsg(EPSG, PATH_GEOID) ProjEngine().set_epsg_tf_geog_output(4326) proj = ProjEngine() - assert proj.carto_to_geog_out + assert proj.tf.carto_to_geog_out def test_tf_conv_tf_output(): ProjEngine.clear() - ProjEngine().set_epsg(2154, PATH_GEOID) + ProjEngine().set_epsg(EPSG, PATH_GEOID) ProjEngine().set_epsg_tf_geog_output(4326) proj = ProjEngine() xf = 657945.43 yf = 6860369.44 xm = 2.427 ym = 48.842 - xmo, ymo = proj.carto_to_geog_out(xf, yf) + xmo, ymo = proj.tf.carto_to_geog_out(xf, yf) assert round(xmo, 3) == xm assert round(ymo, 3) == ym diff --git a/test/test_stat/test_statistics.py b/test/test_stat/test_statistics.py index 80a0b80c..12b4c083 100644 --- a/test/test_stat/test_statistics.py +++ b/test/test_stat/test_statistics.py @@ -14,6 +14,7 @@ OUTPUT = "./test/tmp" FILENAME = "Test" PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] TYPE_CONTROL_POINT = [13] ALL_POINT = [] @@ -32,7 +33,7 @@ def test_stat_world_to_image(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp3d('gcp_test', 13, np.array([815601.510, 6283629.280, 54.960])) @@ -54,7 +55,7 @@ def test_stat_world_to_image_withoutdata(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp3d('gcp_test', 13, np.array([815601.510, 6283629.280, 54.960])) @@ -80,7 +81,7 @@ def test_stat_image_to_world_type13(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -117,7 +118,7 @@ def test_stat_image_to_world_alltype(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -144,7 +145,7 @@ def test_stat_image_to_world_withoutdata(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp3d('gcp_test', 13, np.array([815601.510, 6283629.280, 54.960])) @@ -224,7 +225,7 @@ def test_stat_list_world2(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -260,7 +261,7 @@ def test_stat_list_image2(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -316,7 +317,7 @@ def test_main(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) diff --git a/test/test_transfo_world_image/test_conversionz.py b/test/test_transfo_world_image/test_conversionz.py index ec48382c..f748a16a 100644 --- a/test/test_transfo_world_image/test_conversionz.py +++ b/test/test_transfo_world_image/test_conversionz.py @@ -16,7 +16,7 @@ np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", 'degree', True, 'opk') CAM = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) -EPSG = 2154 +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] LIST_NO_GEOID = None PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" diff --git a/test/test_transfo_world_image/test_imageworldshot.py b/test/test_transfo_world_image/test_imageworldshot.py index ce85ecd9..3f62dc73 100644 --- a/test/test_transfo_world_image/test_imageworldshot.py +++ b/test/test_transfo_world_image/test_imageworldshot.py @@ -16,7 +16,7 @@ np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", 'degree', True, 'opk') CAM = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) -EPSG = 2154 +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] LIST_NO_GEOID = None PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" diff --git a/test/test_transfo_world_image/test_imageworldwork.py b/test/test_transfo_world_image/test_imageworldwork.py index 3cc840c1..271896a1 100644 --- a/test/test_transfo_world_image/test_imageworldwork.py +++ b/test/test_transfo_world_image/test_imageworldwork.py @@ -8,6 +8,7 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -22,7 +23,7 @@ def test_calculate_image_world_by_intersection_onecop_multiimg(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_co_point('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_co_point('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -51,7 +52,7 @@ def test_calculate_image_world_by_least_square_onecop_multiimg(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_co_point('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_co_point('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -86,7 +87,7 @@ def test_calculate_image_world_by_leastsquare_allgipoint(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -131,7 +132,7 @@ def test_calculate_image_world_by_leastsquare_gipoint13type(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -162,7 +163,7 @@ def test_calculate_image_world_by_intersection_onecopwithoneimg(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_co_point('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_co_point('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -188,7 +189,7 @@ def test_calculate_image_world_by_intersection_withzeropoint(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) ImageWorldWork(work).manage_image_world(type_process="inter") assert work.co_pts_world == {} @@ -211,7 +212,7 @@ def test_calculate_image_world_by_intersection_allgipoint(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) @@ -256,7 +257,7 @@ def test_calculate_image_world_by_intersection_gipoint13type(): work.add_shot("23FD1305x00054_05681", np.array([833123.958, 6282051.774, 1761.056]), np.array([-0.222610811997, -0.045739865938, 0.163818133681]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('"1003"', "23FD1305x00026_01306", np.array([24042.25, 14781.17])) work.add_gcp2d('"1003"', "23FD1305x00026_01307", np.array([24120.2, 10329.3])) diff --git a/test/test_transfo_world_image/test_spaceresection.py b/test/test_transfo_world_image/test_spaceresection.py index 91d254ad..7c9dd638 100644 --- a/test/test_transfo_world_image/test_spaceresection.py +++ b/test/test_transfo_world_image/test_spaceresection.py @@ -18,6 +18,7 @@ INPUT_OPK = "./dataset/23FD1305_alt_test.OPK" INPUT_OPK2 = "./test/data/dataset2/23FD1305_alt_2.OPK" PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] PATH_CAM = ["./dataset/Camera1.txt"] PT_LIAISON = "./dataset/liaisons_test.mes" @@ -43,7 +44,7 @@ def test_shootings_position(): work.add_shot("23FD1305x00026_01307", np.array([814977.593, 6283733.183, 1771.519]), np.array([-0.190175545509, -0.023695590794, 0.565111690487]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" @@ -63,7 +64,7 @@ def test_space_resection(): np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", "degree", True, "opk") cam = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) - proj_singleton(2154, PATH_GEOID) + proj_singleton(EPSG, PATH_GEOID) dtm_singleton(PATH_DTM, "height") shot.set_param_eucli_shot(approx=False) z_nadir = ImageWorldShot(shot, cam).image_to_world(np.array([cam.ppax, cam.ppay]), @@ -86,7 +87,7 @@ def test_take_obs(): "header": list("NXYZOPKC"), "unit_angle": "degree", "linear_alteration": True}) - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) read_camera(PATH_CAM, work) work.set_dtm(PATH_DTM, "height") work.set_param_shot() @@ -106,7 +107,7 @@ def test_space_resection_othershot(): "header": list("NXYZOPKC"), "unit_angle": "degree", "linear_alteration": True}) - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) read_camera(PATH_CAM, work) work.set_dtm(PATH_DTM, "height") work.set_param_shot() @@ -123,7 +124,7 @@ def test_space_resection_withcopoints(): "header": list("NXYZOPKC"), "unit_angle": "degree", "linear_alteration": True}) - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) read_camera(PATH_CAM, work) work.set_dtm(PATH_DTM, "height") work.set_param_shot() @@ -140,7 +141,7 @@ def test_space_resection_withcopoints(): def test_space_resection_to_worksite(): work = Worksite("Test") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) read_camera(PATH_CAM, work) work.set_dtm(PATH_DTM, "height") pt2d = read_file_pt_dataframe(PT_LIAISON2, list("PNXY"), "pt2d") diff --git a/test/test_transfo_world_image/test_worldimageshot.py b/test/test_transfo_world_image/test_worldimageshot.py index c1624f1a..3a4b2c6a 100644 --- a/test/test_transfo_world_image/test_worldimageshot.py +++ b/test/test_transfo_world_image/test_worldimageshot.py @@ -17,7 +17,7 @@ np.array([-0.245070686036, -0.069409621323, 0.836320989726]), "test_cam", 'degree', True, 'opk') CAM = Camera("test_cam", 13210.00, 8502.00, 30975.00, 26460, 17004) -EPSG = 2154 +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] LIST_NO_GEOID = None PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" diff --git a/test/test_transfo_world_image/test_worldimagework.py b/test/test_transfo_world_image/test_worldimagework.py index c46bc80d..a84aed0d 100644 --- a/test/test_transfo_world_image/test_worldimagework.py +++ b/test/test_transfo_world_image/test_worldimagework.py @@ -8,6 +8,7 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] TYPE_POINT = [3] TYPE_CONTROL_POINT = [13] @@ -19,7 +20,7 @@ def test_calculate_world_to_image_base(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSG, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp3d('gcp_test', 3, np.array([815601.510, 6283629.280, 54.960])) @@ -38,7 +39,7 @@ def test_calculate_world_to_image_addpointunknow(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSG, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp3d('gcp_test', 3, np.array([815601.510, 6283629.280, 54.960])) @@ -59,7 +60,7 @@ def test_calculate_world_to_image_testcode(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSG, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp2d('gcp_test_test', 'shot_test', np.array([24042.25, 14781.17])) @@ -80,7 +81,7 @@ def test_calculate_world_to_image_testcodenone(): work.add_shot("shot_test", np.array([814975.925, 6283986.148, 1771.280]), np.array([-0.245070686036, -0.069409621323, 0.836320989726]), 'cam_test', "degree", True, "opk") - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSG, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_gcp2d('gcp_test', 'shot_test', np.array([24042.25, 14781.17])) work.add_gcp2d('gcp_test_test', 'shot_test', np.array([24042.25, 14781.17])) diff --git a/test/test_transfo_world_image/test_worldintersection.py b/test/test_transfo_world_image/test_worldintersection.py index 9aa9ef4f..f489e97a 100644 --- a/test/test_transfo_world_image/test_worldintersection.py +++ b/test/test_transfo_world_image/test_worldintersection.py @@ -8,6 +8,7 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -19,7 +20,7 @@ def test_eucli_intersection_2p(): work.add_shot("shot2", np.array([814977.593, 6283733.183, 1771.519]), np.array([-0.190175545509, -0.023695590794, 0.565111690487]), "cam_test", "degree", True, "opk") - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSG, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.add_co_point('"1003"', "shot1", np.array([24042.25, 14781.17])) work.add_co_point('"1003"', "shot2", np.array([24120.2, 10329.3])) diff --git a/test/test_worksite/test_worksite.py b/test/test_worksite/test_worksite.py index 8eb2dd0f..aca7045c 100644 --- a/test/test_worksite/test_worksite.py +++ b/test/test_worksite/test_worksite.py @@ -11,6 +11,8 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSGFR = [2154] +EPSGAR = [4339] LIST_GEOID = ["./dataset/fr_ign_RAF20.tif"] @@ -141,7 +143,7 @@ def test_set_param_shot(): work = Worksite("Test") work.add_shot("shot1", np.array([814975.925, 6283986.148, 1771.280]), np.array([180, 0, 360]), "cam_test", "degree", True, 'opk') - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSGFR, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" @@ -154,7 +156,7 @@ def test_set_param_shot_noprojengineandtypediff(): work = Worksite("Test") work.add_shot("shot1", np.array([814975.925, 6283986.148, 1771.280]), np.array([180, 0, 360]), "cam_test", "degree", True, 'opk') - work.set_proj(4339) + work.set_proj(EPSGAR) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" @@ -167,7 +169,7 @@ def test_set_param_shot_noprojengineandsametype(): work = Worksite("Test") work.add_shot("shot1", np.array([814975.925, 6283986.148, 1771.280]), np.array([180, 0, 360]), "cam_test", "degree", True, 'opk') - work.set_proj(4339) + work.set_proj(EPSGAR) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "height" @@ -181,7 +183,7 @@ def test_set_param_shot_nodtm(): work = Worksite("Test") work.add_shot("shot1", np.array([814975.925, 6283986.148, 1771.280]), np.array([180, 0, 360]), "cam_test", "degree", True, 'opk') - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSGFR, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.type_z_shot = "altitude" work.set_param_shot() @@ -193,7 +195,7 @@ def test_set_unit_shot(): work = Worksite("Test") work.add_shot("shot1", np.array([814975.925, 6283986.148, 1771.280]), np.array([180, 0, 360]), "cam_test", "degree", True, 'opk') - work.set_proj(2154, LIST_GEOID) + work.set_proj(EPSGFR, LIST_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" diff --git a/test/test_writer/test_writer_con.py b/test/test_writer/test_writer_con.py index 97ec3bf0..41a534fa 100644 --- a/test/test_writer/test_writer_con.py +++ b/test/test_writer/test_writer_con.py @@ -9,6 +9,7 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] OUTPUT = "./test/tmp" @@ -28,7 +29,7 @@ def test_write_con(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "UCE-M3-f120-s06", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('UCE-M3-f120-s06', 13210.00, 8502.00, 30975.00, 26460, 17004) write(None, OUTPUT, None, work) assert os.path.exists("./test/tmp/23FD1305x00026_01306.CON") diff --git a/test/test_writer/test_writer_rpc.py b/test/test_writer/test_writer_rpc.py index 98a967c4..38d0e44c 100644 --- a/test/test_writer/test_writer_rpc.py +++ b/test/test_writer/test_writer_rpc.py @@ -9,6 +9,7 @@ PATH_DTM = "./dataset/MNT_France_25m_h_crop.tif" +EPSG = [2154] PATH_GEOID = ["./dataset/fr_ign_RAF20.tif"] OUTPUT = "./test/tmp" @@ -28,7 +29,7 @@ def test_write_rpc(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude" @@ -52,7 +53,7 @@ def test_write_rpc_4326(): work.add_shot("23FD1305x00026_01308", np.array([814978.586, 6283482.827, 1771.799]), np.array([-0.181570631296, 0.001583051432, 0.493526899473]), "cam_test", "degree", True, "opk") - work.set_proj(2154, PATH_GEOID) + work.set_proj(EPSG, PATH_GEOID) work.add_camera('cam_test', 13210.00, 8502.00, 30975.00, 26460, 17004) work.set_dtm(PATH_DTM, "height") work.type_z_shot = "altitude"