diff options
Diffstat (limited to 'venv/lib/python3.11/site-packages/faker/providers/geo/el_GR')
2 files changed, 0 insertions, 28 deletions
diff --git a/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__init__.py b/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__init__.py deleted file mode 100644 index 95cd9d0..0000000 --- a/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -from decimal import Decimal -from typing import Any, Tuple - -from .. import Provider as GeoProvider - - -class Provider(GeoProvider): - poly = ( - ("40.34026", "19.15120"), - ("42.21670", "26.13934"), - ("35.55680", "29.38280"), - ("34.15370", "22.58810"), - ) - - def local_latlng(self, *args: Any, **kwargs: Any) -> Tuple[str, str]: - return str(self.local_latitude()), str(self.local_longitude()) - - def local_latitude(self) -> Decimal: - latitudes = [int(Decimal(t[0]) * 10000000) for t in self.poly] - return Decimal(str(self.generator.random.randint(min(latitudes), max(latitudes)) / 10000000)).quantize( - Decimal(".000001") - ) - - def local_longitude(self) -> Decimal: - longitudes = [int(Decimal(t[1]) * 10000000) for t in self.poly] - return Decimal(str(self.generator.random.randint(min(longitudes), max(longitudes)) / 10000000)).quantize( - Decimal(".000001") - ) diff --git a/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__pycache__/__init__.cpython-311.pyc Binary files differdeleted file mode 100644 index b4272c5..0000000 --- a/venv/lib/python3.11/site-packages/faker/providers/geo/el_GR/__pycache__/__init__.cpython-311.pyc +++ /dev/null |