Hi there, 
Assuming that you are looking to graphically model the “lighting performance” instead of “lightning performance” of distribution lines using geographic coordinates in MATLAB, you can utilize the Geographic Plots functionality. This allows you to visualize the distribution lines on a map and simulate lighting conditions. 
- Plotting the Distribution line: Use the “Geoplot” function to create a line plot of your distribution lines based on the geographic coordinates of the concrete poles. 
lat = [34.05, 34.06, 34.07]; 
lon = [-118.25, -118.26, -118.27]; 
geoplot(lat, lon, '-o', LineWidth=1.5, MarkerSize=6); 
title('Distribution Line Layout'); 
geobasemap('topographic');  
This will render your line on an interactive basemap. You can also overlay multiple lines or markers using hold on. 
 
2. Simulate Lighting intensities: You can represent lighting conditions by overlaying additional data, such as light intensity or other parameters, using scatter plots or bubble charts. 
geoplot(lat, lon, '-o', 'MarkerFaceColor', 'r'); 
title('Distribution Lines with Lighting Simulation'); 
light_intensity = [100, 750, 400]; 
geoscatter(lat, lon, light_intensity, 'filled', 'MarkerFaceColor', 'y'); 
text(latitudes, longitudes, string(light_intensity), 'VerticalAlignment', 'bottom'); 
geobasemap('topographic');  
geolimits([34.05 34.06], [-118.25 -118.24]);  
Following plot will be constructed simulating lighting positions along the distribution line:   
 You can refer to these resources to get an idea for wider picture:  
- Geoplot: https://www.mathworks.com/help/matlab/ref/geoplot.html 
- Create Maps using longitude and latitude data: https://www.mathworks.com/help/matlab/creating_plots/plot-in-geographic-coordinates.html 
- Geographic Plots: https://www.mathworks.com/help/matlab/geographic-plots.html 
- Geographic Axes: https://www.mathworks.com/help/matlab/ref/matlab.graphics.axis.geographicaxes-properties.html 
 
Hope this helps you!