-
-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arohan Ajit
authored and
Arohan Ajit
committed
Nov 4, 2024
1 parent
77fb014
commit 81b96e2
Showing
1 changed file
with
180 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,184 @@ | ||
"""Python interface to launch GRASS GIS modules in scripts | ||
""" | ||
|
||
from .core import * | ||
from .db import * | ||
from .raster import * | ||
from .raster3d import * | ||
from .vector import * | ||
from .utils import * | ||
from .core import ( | ||
call, | ||
create_environment, | ||
create_location, | ||
create_project, | ||
compare_key_value_text_files, | ||
debug, | ||
debug_level, | ||
del_temp_region, | ||
error, | ||
exec_command, | ||
fatal, | ||
feed_command, | ||
find_file, | ||
find_program, | ||
gisenv, | ||
get_commands, | ||
get_real_command, | ||
handle_errors, | ||
get_raise_on_error, | ||
get_capture_stderr, | ||
info, | ||
legal_name, | ||
list_grouped, | ||
list_pairs, | ||
list_strings, | ||
locn_is_latlong, | ||
make_command, | ||
mapsets, | ||
message, | ||
overwrite, | ||
parse_command, | ||
parse_color, | ||
parser, | ||
percent, | ||
pipe_command, | ||
read_command, | ||
region, | ||
region_env, | ||
run_command, | ||
set_raise_on_error, | ||
start_command, | ||
sanitize_mapset_environment, | ||
set_capture_stderr, | ||
tempdir, | ||
tempfile, | ||
tempname, | ||
use_temp_region, | ||
version, | ||
verbose, | ||
verbosity, | ||
warning, | ||
write_command, | ||
) | ||
|
||
from .db import ( | ||
db_begin_transaction, | ||
db_commit_transaction, | ||
db_connection, | ||
db_describe, | ||
db_select, | ||
db_table_exist, | ||
db_table_in_vector, | ||
) | ||
|
||
from .raster import mapcalc, mapcalc_start, raster_history, raster_info, raster_what | ||
|
||
from .raster3d import mapcalc3d, raster3d_info | ||
|
||
from .utils import ( | ||
KeyValue, | ||
basename, | ||
decode, | ||
encode, | ||
float_or_dms, | ||
parse_key_val, | ||
try_remove, | ||
) | ||
|
||
from .vector import ( | ||
vector_db, | ||
vector_layer_db, | ||
vector_columns, | ||
vector_history, | ||
vector_info_topo, | ||
vector_info, | ||
vector_db_select, | ||
vector_what, | ||
) | ||
from . import setup # noqa: F401 | ||
|
||
__all__ = [ | ||
# utils imports | ||
"KeyValue", | ||
"basename", | ||
# core imports | ||
"call", | ||
"compare_key_value_text_files", | ||
"create_environment", | ||
"create_location", | ||
"create_project", | ||
# db imports | ||
"db_begin_transaction", | ||
"db_commit_transaction", | ||
"db_connection", | ||
"db_describe", | ||
"db_select", | ||
"db_table_exist", | ||
"db_table_in_vector", | ||
"debug", | ||
"debug_level", | ||
"decode", | ||
"del_temp_region", | ||
"encode", | ||
"error", | ||
"exec_command", | ||
"fatal", | ||
"feed_command", | ||
"find_file", | ||
"find_program", | ||
"float_or_dms", | ||
"get_capture_stderr", | ||
"get_commands", | ||
"get_raise_on_error", | ||
"get_real_command", | ||
"gisenv", | ||
"handle_errors", | ||
"info", | ||
"legal_name", | ||
"list_grouped", | ||
"list_pairs", | ||
"list_strings", | ||
"locn_is_latlong", | ||
"make_command", | ||
# raster imports | ||
"mapcalc", | ||
# raster3d imports | ||
"mapcalc3d", | ||
"mapcalc_start", | ||
"mapsets", | ||
"message", | ||
"overwrite", | ||
"parse_color", | ||
"parse_command", | ||
"parse_key_val", | ||
"parser", | ||
"percent", | ||
"pipe_command", | ||
"raster3d_info", | ||
"raster_history", | ||
"raster_info", | ||
"raster_what", | ||
"read_command", | ||
"region", | ||
"region_env", | ||
"run_command", | ||
"sanitize_mapset_environment", | ||
"set_capture_stderr", | ||
"set_raise_on_error", | ||
"start_command", | ||
"tempdir", | ||
"tempfile", | ||
"tempname", | ||
"try_remove", | ||
"use_temp_region", | ||
"vector_columns", | ||
# vector imports | ||
"vector_db", | ||
"vector_db", | ||
"vector_db_select", | ||
"vector_history", | ||
"vector_info", | ||
"vector_info_topo", | ||
"vector_layer_db", | ||
"vector_what", | ||
"verbose", | ||
"verbosity", | ||
"version", | ||
"warning", | ||
"write_command", | ||
] |