Skip to content

FAQ/ What does the fill coord value mean?

When you open a project file (.fsxproj) as an XML file, the element contains values that look like coordinate values. <coord> Can I convert this value to latitude and longitude?

response

<coord> The value includes latitude and longitude. The unit is radian. degree, multiply by 57.29577951.

For example, in the project file (.fsxproj), the embankment is described as follows:

1
2
3
4
5
6
7
<fill name="盛土2" upperWidth="0" lowerWidth="0" valid="True"
lineStyle="0 2 80 80 80 255" display3d="False">
  <line>
    <coord>0.670000000000000 2.45000000000000 54.6 49.6</coord>
    <coord>0.670000000000292 2.45000000000036 55.2 50.2</coord>
  </line>
</fill>

It <coord>contains the following values:

1
<coord>緯度(radian), 経度(radian), 天端標高(T.P.m), 地形標高(T.P.m)</coord>

Therefore, from the values in the first and second columns, the latitude and longitude are obtained as follows.

Latitude (degree) Longitude (degree)
38.38817227 140.3746598
38.38818903 140.3767141

Last update: 2023-03-17