Оси не в порядке на участке - PullRequest
3 голосов
/ 08 апреля 2019

Я пытался показать область, используя координаты.Когда я ввожу координаты непосредственно в список, он показывает область.Но когда я использую переменные, это не так.

#plotting a triangle using coordinates
print('Enter the coordinates')
Na = input('Northings of A = ')
Ea = input('Eastings of A = ')

Nb = input('Northings of B = ')
Eb = input('Eastings of B = ')

Nc = input('Northings of C = ')
Ec = input('Eastings of C = ')

import matplotlib.pyplot as plt
x = [Ea, Eb, Ec, Ea]
y = [Na, Nb, Nc, Na]
plt.plot(x, y, 'yellow')
plt.show()


x = [1500, 1720, 1244.52, 1500]
y = [5930.15, 6230.25, 3254.62, 5960.15]
plt.plot(x, y, 'purple')
plt.show()

1 Ответ

2 голосов
/ 08 апреля 2019

Я думаю, что приведение к int из ввода было проблемой и отсутствием переменных Nd и Ed.

print('Enter the coordinates')
Na = input('Northings of A = ')
Ea = input('Eastings of A = ')
Nb = input('Northings of B = ')
Eb = input('Eastings of B = ')
Nc = input('Northings of C = ')
Ec = input('Eastings of C = ')
Nd = input('Northings of D = ')
Ed = input('Eastings of D = ')
import matplotlib.pyplot as plt
x = [int(Ea), int(Eb), int(Ec), int(Ed)]
y = [int(Na), int(Nb), int(Nc), int(Nd)]
plt.plot(x, y, 'green')
plt.show()
x = [1500, 1720, 1244.52, 1500]
y = [5930.15, 6230.25, 3254.62, 5960.15]
plt.plot(x, y, 'purple')
plt.show()
...