I have the coordinates of map of india. x-axis range is 65 to 100 and y-axis range is 0-100. I have generated grid in this range. I want to get the coordinates of the grid plot. how can i get that?
#!usr/bin/env python
import matplotlib.pyplot as plt
import numpy as np
f = np.loadtxt('New_Coordinate.txt')
fig = plt.figure()
ax = fig.gca()
ax.set_xticks(np.arange(65,100,1))
ax.set_yticks(np.arange(0,100,1))
plt.plot(f[:,:1],f[:,1:],'ro')
plt.grid()
plt.show()