Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
apps:python [2024/01/17 18:11] – created enviadminapps:python [2024/01/17 18:15] (current) enviadmin
Line 1: Line 1:
-====== ENVI-met powered by Python ======+====== ENVI-met powered by python ======
  
-Make use of our netCDF output format to create output maps easily and quickly using python.+Visualizing netCDF outputs in python offers a quick and flexible solution for exploring ENVI-met's model output files. 
 +By using python libraries such as matplotlib, you can seamlessly load and display netCDF files
  
 Here is some sample code: Here is some sample code:
  
-<code python>  +<code python[enable_line_numbers="true"]>
 import matplotlib.pyplot as plt import matplotlib.pyplot as plt
 import netCDF4 import netCDF4
Line 39: Line 39:
     #plt.close()     #plt.close()
  
-<code python+</code> 
 +