We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if a user pass a tabular file with coordinates, I understand it should be like:
latitude longitude 40.5 10.0
Then selection_from_coords is weird:
selection_from_coords
def selection_from_coords(self): fcoords = pd.read_csv(self.coords, sep='\t') for row in fcoords.itertuples(): self.latvalN = row[0] self.lonvalE = row[1] print(self.latvalN, self.lonvalE) self.outfile = (os.path.join(self.outputdir, self.select + '_' + str(row.Index) + '.tabular'))
it won't select the proper location. We should have:
self.latvalN = row[1] self.lonvalE = row[2]
What do you think?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if a user pass a tabular file with coordinates, I understand it should be like:
Then
selection_from_coords
is weird:it won't select the proper location. We should have:
What do you think?
The text was updated successfully, but these errors were encountered: