Dear community, now I can use telemac on windows without problems. But as you know post-processing is the vital key for show results of researches. In this way I´m used to produces graph wit python, specifically with postel, but when I tried to run the secript, an eeror message appear mentioning thta matplotlib doesn´t have a triangulation module, and also can´t read scikit-learn package even with the modules installed.
My libraries definitions is:
#import libraries from python
import os
import sys
#import vtk
#from vtk.util import numpy_support as VN
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib as mpl
from matplotlib.patches import Rectangle
#import matplotlib.tri as mtri
from scipy.interpolate import griddata
import random
sys.path.append("C:/Archivos/V8P4/scripts/python3")
#import libraries from telemac
import telapy.api.t2d
from telapy.api.t2d import Telemac2d
from data_manip.extraction.telemac_file import TelemacFile
from data_manip.formats.regular_grid import interpolate_on_grid
from postel.plot2d import *
Line where error appears:
plot2d_scalar_map(fig, ax, np.meshgrid(X,Y), velocity, data_name='U (m/s)', alpha=0.45,vmin=0, vmax=1.5,zorder=-1)
Could you help me with ideas to fix the problem?
Best regards