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
Keyword "location" should be changed to "project" depending on grass version
grass-gis-helpers/src/grass_gis_helpers/location.py
Line 69 in 0f56efa
WARNUNG: Please update the usage of <g.proj>: option <location> has been renamed to <project>
grass_version = [int(item) for item in grass_version_info.split('.')[:2]] if grass_version >= [8, 4]: loc_proj = "project" else: loc_proj = "location" v_kwargs = {"mapset": mapset, "input": aoi_map_to_set_region1, "output": aoi_map_to_set_region1, "quiet": True, loc_proj: loc, } grass.run_command( "v.proj", **v_kwargs )```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Keyword "location" should be changed to "project" depending on grass version
grass-gis-helpers/src/grass_gis_helpers/location.py
Line 69 in 0f56efa
WARNUNG: Please update the usage of <g.proj>: option <location> has been renamed to <project>
Solution approach similar to
The text was updated successfully, but these errors were encountered: