Andrew_ECS
New Member
- Joined
- Jun 15, 2015
- Messages
- 1
Hello, I'm new to programming and have been tasked with creating a script that will represent a line on a map representing a oil pipeline. So far, I have been able to produce a script in notepad+ that will produce a line on the map, however, I'm in a need of a more efficient method. The problem now is using excel to create a formula to be able to put into notepad.
The script for the polyline:
L.polyline([
[48.34140573, -103.86343006],
[48.34141563, -103.87399147]
]).addTo(this.map);
Now in excel:
A1 = Longitude, B1= Latitude as the headers, followed by all of the numerical values for the surveyed points.
Is there anyway to be able to get the points into notepad efficiently?
The script for the polyline:
L.polyline([
[48.34140573, -103.86343006],
[48.34141563, -103.87399147]
]).addTo(this.map);
Now in excel:
A1 = Longitude, B1= Latitude as the headers, followed by all of the numerical values for the surveyed points.
Is there anyway to be able to get the points into notepad efficiently?