TNO Intern

Commit ebf66b7d authored by Hen Brett's avatar Hen Brett 🐔
Browse files

fixing the import statements

parent 6fcf9ba1
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
### 🧪 Basic Example

```python
from src.pythermogis import calculate_doublet_performance
from pythermogis import calculate_doublet_performance
import xarray as xr

input_data = xr.Dataset({
@@ -24,7 +24,7 @@ print(results)
### 🌍 2D Grid Example

```python
from src.pythermogis import calculate_doublet_performance
from pythermogis import calculate_doublet_performance
import xarray as xr
import numpy as np

@@ -47,7 +47,7 @@ print(results)
### 🗺️ Reading Raster Grids with pygridsio

```python
from src.pythermogis import calculate_doublet_performance
from pythermogis import calculate_doublet_performance
from pygridsio import read_grid

input_grids = read_grid("thickness.zmap").to_dataset(name="thickness_mean")
@@ -82,7 +82,7 @@ Here is an example, where the default utc_properties is used, but the UseHeatPum
`utc_properties` themselves, with the `.build()` method of the `utc_properties_builder`.

```python
from src.pythermogis import calculate_doublet_performance, instantiate_utc_properties_builder
from pythermogis import calculate_doublet_performance, instantiate_utc_properties_builder
import xarray as xr

input_data = xr.Dataset({
@@ -110,7 +110,7 @@ That being said, a plotting function is provided which will produce a plot of a
Check out the definition of `plot_doublet_performance_results` for more details.

```python
from src.pythermogis import calculate_doublet_performance, instantiate_utc_properties_builder, plot_doublet_performance_results
from pythermogis import calculate_doublet_performance, instantiate_utc_properties_builder, plot_doublet_performance_results
import xarray as xr

input_data = xr.Dataset({
@@ -253,7 +253,7 @@ The minimum parameters which are required in the XML file are:
| 110 | base_temperature                                                         |

```python
from src.pythermogis import calculate_doublet_performance, instantiate_utc_properties_from_xml
from pythermogis import calculate_doublet_performance, instantiate_utc_properties_from_xml
import xarray as xr

input_data = xr.Dataset({