diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 4a5708054..6d3d00652 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -78,4 +78,4 @@ body: attributes: label: Charge code placeholder: > - If you are at NREL and fixing this bug is urgent, please provide a charge code + If you are at NLR and fixing this bug is urgent, please provide a charge code diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index bfc643885..b418959b0 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -59,4 +59,4 @@ body: attributes: label: Charge code placeholder: > - If you are at NREL and implementing this feature is urgent, please provide a charge code + If you are at NLR and implementing this feature is urgent, please provide a charge code diff --git a/CITATION.cff b/CITATION.cff index 6eb8bab28..02d0a0880 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,19 +7,19 @@ type: software authors: - family-names: Pinchuk given-names: Pavlo - affiliation: National Renewable Energy Laboratory + affiliation: National Laboratory of the Rockies orcid: 'https://orcid.org/0000-0003-4736-4728' - family-names: Castelão given-names: Guilherme - affiliation: National Renewable Energy Laboratory + affiliation: National Laboratory of the Rockies orcid: 'https://orcid.org/0000-0002-6765-0708' - family-names: Lopez given-names: Anthony - affiliation: National Renewable Energy Laboratory + affiliation: National Laboratory of the Rockies orcid: 'https://orcid.org/0000-0002-5006-1675' - family-names: Buster given-names: Grant - affiliation: National Renewable Energy Laboratory + affiliation: National Laboratory of the Rockies orcid: 'https://orcid.org/0000-0001-8616-8100' identifiers: - type: doi diff --git a/Cargo.toml b/Cargo.toml index 2a763a062..8ba59b19c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ license = "BSD-3-Clause" rust-version = "1.87.0" repository = "https://github.com/NREL/COMPASS" categories = ["data-structures", "science"] -keywords = ["NREL", "database", "energy", "ordinance"] +keywords = ["NLR", "database", "energy", "ordinance"] [workspace.dependencies] infra-compass-db = { version = "0.0.8", path = "crates/compass" } diff --git a/README.rst b/README.rst index 891b28381..cd894f36d 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,7 @@ Infrastructure Continuous Ordinance Mapping for Planning and Siting Systems (INF .. |Pixi| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json :target: https://pixi.sh -.. |SWR| image:: https://img.shields.io/badge/SWR--25--62_-blue?label=NREL +.. |SWR| image:: https://img.shields.io/badge/SWR--25--62_-blue?label=NLR :alt: Static Badge .. |Zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.17173409.svg diff --git a/compass/scripts/process.py b/compass/scripts/process.py index c6dd6eba1..284de62e1 100644 --- a/compass/scripts/process.py +++ b/compass/scripts/process.py @@ -282,12 +282,12 @@ async def process_jurisdictions_with_openai( # noqa: PLR0917, PLR0913 url_ignore_substrings = [ "wikipedia", - "nrel.gov", + "nlr.gov", "www.co.delaware.in.us/documents/1649699794_0382.pdf", ] The above configuration would ignore all `wikipedia` articles, - all websites on the NREL domain, and the specific file located + all websites on the NLR domain, and the specific file located at `www.co.delaware.in.us/documents/1649699794_0382.pdf`. By default, ``None``. known_local_docs : dict or path-like, optional diff --git a/compass/utilities/base.py b/compass/utilities/base.py index 949c18a4f..84868d238 100644 --- a/compass/utilities/base.py +++ b/compass/utilities/base.py @@ -62,12 +62,12 @@ def __init__( url_ignore_substrings = [ "wikipedia", - "nrel.gov", + "nlr.gov", "www.co.delaware.in.us/documents/1649699794_0382.pdf", ] The above configuration would ignore all `wikipedia` - articles, all websites on the NREL domain, and the specific + articles, all websites on the NLR domain, and the specific file located at `www.co.delaware.in.us/documents/1649699794_0382.pdf`. By default, ``None``. diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 19a40a799..eb241beab 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.6" authors.workspace = true edition.workspace = true rust-version.workspace = true -description = "Command line application to manage and query NREL's INFRA-COMPASS data" +description = "Command line application to manage and query NLR's INFRA-COMPASS data" homepage = "https://github.com/NREL/COMPASS" repository = "https://github.com/NREL/COMPASS" license.workspace = true diff --git a/crates/compass/Cargo.toml b/crates/compass/Cargo.toml index f3c5682b2..319832ad9 100644 --- a/crates/compass/Cargo.toml +++ b/crates/compass/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true authors.workspace = true edition.workspace = true rust-version.workspace = true -description = "Parse and manage the NREL's INFRA-COMPASS data" +description = "Parse and manage the NLR's INFRA-COMPASS data" homepage = "https://github.com/NREL/COMPASS" repository.workspace = true license.workspace = true diff --git a/crates/compass/src/lib.rs b/crates/compass/src/lib.rs index b48dc9faf..2a373f723 100644 --- a/crates/compass/src/lib.rs +++ b/crates/compass/src/lib.rs @@ -1,6 +1,6 @@ #![deny(missing_docs)] -//! NREL's ordinance database +//! NLR's ordinance database mod error; mod scraper; diff --git a/docs/source/conf.py b/docs/source/conf.py index 2f962fe22..73c139bd1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ project = "COMPASS" copyright = "2025, Alliance for Sustainable Energy, LLC" -author = "NREL: Paul Pinchuk, Guilherme Pimenta Castelao" +author = "NLR: Paul Pinchuk, Guilherme Pimenta Castelao" pkg = os.path.dirname(os.path.abspath(os.path.dirname(__file__))) pkg = os.path.dirname(pkg) @@ -128,7 +128,7 @@ html_context = { "display_github": True, - "github_user": "nrel", + "github_user": "nlr", "github_repo": "COMPASS", "github_version": "main", "conf_py_path": "/docs/source/", diff --git a/examples/execution_basics/README.rst b/examples/execution_basics/README.rst index e3180be13..6925c3dce 100644 --- a/examples/execution_basics/README.rst +++ b/examples/execution_basics/README.rst @@ -94,7 +94,7 @@ You can also specify LLM credentials and endpoint details directly in the config Note that while this can be convenient for quick testing, storing credentials in plaintext is not recommended for production environments. **SSL Configuration** -Set ``verify_ssl`` to ``false`` in ``file_loader_kwargs`` to bypass certificate verification errors, especially useful when running behind the NREL VPN. +Set ``verify_ssl`` to ``false`` in ``file_loader_kwargs`` to bypass certificate verification errors, especially useful when running behind the NLR VPN. If you're not using the VPN, it's best to leave this value as the default (``true``). **OCR Integration** @@ -215,5 +215,5 @@ After completion, you'll find several outputs in the ``out_dir``: - **Metadata Files**: JSON files describing metadata parameters corresponding to your run. - **Logs and Debug Files**: Helpful for reviewing LLM prompts and tracing any issues. -You can now use these outputs for downstream analysis, visualization, or integration with other NREL tools like +You can now use these outputs for downstream analysis, visualization, or integration with other NLR tools like `reVX setbacks `_. diff --git a/examples/execution_basics/config_kitchen_sink.json5 b/examples/execution_basics/config_kitchen_sink.json5 index ae89c130c..046ab93a9 100644 --- a/examples/execution_basics/config_kitchen_sink.json5 +++ b/examples/execution_basics/config_kitchen_sink.json5 @@ -83,6 +83,7 @@ // useful to filter out known noise "wiki", "nrel.gov", + "nlr.gov", "openei.org", "windexchange.energy.gov", // but can also be very specific if needed diff --git a/pixi.lock b/pixi.lock index 7d7558e20..aa293b575 100644 --- a/pixi.lock +++ b/pixi.lock @@ -24207,8 +24207,8 @@ packages: timestamp: 1733408419340 - pypi: ./ name: nrel-compass - version: 0.11.3.dev24+g6d7035c.d20251128 - sha256: 48e5aead07863d7864f379973c8ae04b12293248bce30fd9cc7346f0e0411a39 + version: 0.11.3.dev23+g58a0f80.d20251203 + sha256: 511ee903cbb92d94df0de75d2bc4cdf106f5bc652ae4c1b159f0867658a8238a requires_dist: - click>=8.1.7,<9 - html5lib>=1.1,<2 diff --git a/pyproject.toml b/pyproject.toml index c0313f942..7264ffaa8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ maintainers = [ {name = "Guilherme Castelão", email = "gpimenta@nrel.gov"}, ] license = "BSD-3-Clause" -keywords = ["COMPASS", "NREL", "Ordinance", "Database"] +keywords = ["COMPASS", "NLR", "Ordinance", "Database"] requires-python = ">= 3.12" classifiers=[ "Development Status :: 4 - Beta",