geonature.core.imports.checks.dataframe.geometry#
Functions#
|
Return the local bounding box for a given srid |
|
|
|
|
|
|
|
Same as check_wkt_inside_l_areas except we use a shapely geometry. |
|
Checks if the provided wkt is inside the area defined |
|
What this check do: |
Module Contents#
- geonature.core.imports.checks.dataframe.geometry.get_srid_bounding_box(srid)[source]#
Return the local bounding box for a given srid
- geonature.core.imports.checks.dataframe.geometry.check_bound(p, bounding_box: shapely.geometry.Polygon)[source]#
- geonature.core.imports.checks.dataframe.geometry.check_geometry_inside_l_areas(geometry: shapely.geometry.base.BaseGeometry, id_area: int, geom_srid: int)[source]#
Same as check_wkt_inside_l_areas except we use a shapely geometry.
- geonature.core.imports.checks.dataframe.geometry.check_wkt_inside_area_id(wkt: str, id_area: int, wkt_srid: int)[source]#
Checks if the provided wkt is inside the area defined by id_area.
Parameters#
- wktstr
geometry to check if inside the area
- id_areaint
id to get the area in ref_geo.l_areas
- wkt_sridstr
srid of the provided wkt
- geonature.core.imports.checks.dataframe.geometry.check_geometry(df: pandas.DataFrame, file_srid: int, geom_4326_field: geonature.core.imports.models.BibFields, geom_local_field: geonature.core.imports.models.BibFields, wkt_field: geonature.core.imports.models.BibFields = None, latitude_field: geonature.core.imports.models.BibFields = None, longitude_field: geonature.core.imports.models.BibFields = None, codecommune_field: geonature.core.imports.models.BibFields = None, codemaille_field: geonature.core.imports.models.BibFields = None, codedepartement_field: geonature.core.imports.models.BibFields = None, id_area: int = None)[source]#
What this check do: - check there is at least a wkt, a x/y or a code defined for each row
(report NO-GEOM if there are not, or MULTIPLE_ATTACHMENT_TYPE_CODE if several are defined)
set geom_local or geom_4326 or both (depending of file_srid) from wkt or x/y - check wkt validity - check x/y validity
check wkt & x/y bounding box
What this check does not do (done later in SQL): - set geom_4326 & geom_local from code
verify code validity
set geom_4326 from geom_local, or reciprocally, depending of file_srid
set geom_point
check geom validity (ST_IsValid)
FIXME: area from code are never checked in bounding box!
Parameters#
- dfpandas.DataFrame
The dataframe to check
- file_sridint
The srid of the file
- geom_4326_fieldBibFields
The column in the dataframe that contains geometries in SRID 4326
- geom_local_fieldBibFields
The column in the dataframe that contains geometries in the SRID of the area
- wkt_fieldBibFields, optional
The column in the dataframe that contains geometries” WKT
- latitude_fieldBibFields, optional
The column in the dataframe that contains latitudes
- longitude_fieldBibFields, optional
The column in the dataframe that contains longitudes
- codecommune_fieldBibFields, optional
The column in the dataframe that contains commune codes
- codemaille_fieldBibFields, optional
The column in the dataframe that contains maille codes
- codedepartement_fieldBibFields, optional
The column in the dataframe that contains departement codes
- id_areaint, optional
The id of the area to check if the geometry is inside (Not Implemented)