Metadata-Version: 2.4
Name: semantic-link-functions-meteostat
Version: 0.14.1
Summary: Semantic link functions for meteostat package. Enables enrichment of FabricDataFrame with historical weather data.
Home-page: https://github.com/microsoft/semantic-link-functions
Author: Microsoft
Author-email: semanticdatascience@service.microsoft.com
License: MIT License
Platform: Microsoft Fabric
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE.txt
Requires-Dist: meteostat
Requires-Dist: semantic-link-sempy==0.14.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

FabricDataFrames dynamically expose semantic functions based on logic defined by each function. For example, the is_holiday function shows up in the autocomplete suggestions when you're working on a FabricDataFrame containing both a datetime column and a country column.

Each semantic function uses information about the data types, metadata (such as Power BI data categories), and the data in a FabricDataFrame or FabricSeries to determine its relevance to the particular data on which you're working.

Semantic functions are automatically discovered when annotated with the @semantic_function decorator. You can think of semantic functions as being similar to C# extension methods applied to the popular DataFrame concept.

```python
from sempy.fabric import FabricDataFrame

df = FabricDataFrame({
        "lat": [40.7128, 47.8095, 47.8095, 47.8095],
        "long": [-74.0060, 13.0550, 13.0550, 13.0550],
        "date": ["2023-01-06", "2023-01-06", "2023-01-07", "2023-01-10"]
    },
    column_metadata={"lat": {"data_category": "Latitude"}, "long": {"data_category": "Longitude"}},
)

df["date"] = pd.to_datetime(df["date"])

df_weather = df.add_weather_meteostat("lat", "long", "date")

```
