Files
geo_tools/.env.example
2026-03-04 17:07:07 +08:00

27 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ============================================================
# geo_tools 环境变量配置示例
# 复制本文件为 .env 并按实际路径修改,.env 已在 .gitignore 中忽略
# ============================================================
# ── 目录配置 ─────────────────────────────────────────────────
# 输出文件根目录(绝对路径或相对于项目根)
GEO_TOOLS_OUTPUT_DIR=output
# 日志文件目录
GEO_TOOLS_LOG_DIR=logs
# ── 坐标系配置 ────────────────────────────────────────────────
# 默认投影坐标系 EPSG 编码地理坐标系4326中国常用4490
GEO_TOOLS_DEFAULT_CRS=EPSG:4326
# ── 日志配置 ──────────────────────────────────────────────────
# 日志等级DEBUG / INFO / WARNING / ERROR / CRITICAL
GEO_TOOLS_LOG_LEVEL=INFO
# 是否同时写出日志文件true / false
GEO_TOOLS_LOG_TO_FILE=true
# ── 性能配置 ──────────────────────────────────────────────────
# 并行处理时最大 CPU 核数0 = 自动检测)
GEO_TOOLS_MAX_WORKERS=0