commit 307a1c0cee1d7aada3e28cf0a852489b088fe3e1
Author: Asfmq <2696428814@qq.com>
Date: Mon Jun 8 17:23:27 2026 +0800
feat: 初始化 AstroResearch 核心系统代码及重构技术文档
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..36a200c
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,26 @@
+# AstroResearch Configuration Template
+# Copy this to .env and fill in your details
+
+# NASA ADS API Key (Get from ui.adsabs.harvard.edu)
+ADS_API_KEY=your_ads_api_key_here
+
+# LLM Translation Provider Settings (OpenAI-compatible endpoints)
+LLM_API_KEY=your_llm_api_key_here
+LLM_API_BASE=https://api.deepseek.com/v1
+# Examples: deepseek-chat, gpt-4o-mini, gemini-1.5-flash
+LLM_MODEL=deepseek-chat
+
+# Qiniu Cloud Storage Config (For hosting PDF-extracted layout images)
+QINIU_AK=your_qiniu_access_key_here
+QINIU_SK=your_qiniu_secret_key_here
+QINIU_BUCKET=your_bucket_name
+QINIU_DOMAIN=http://your_cdn_domain.com
+
+# MinerU PDF Layout Extractor Remote API (If not using HTML)
+MINERU_API_URL=http://mineru.remote-api.com/api/v1/extract
+MINERU_API_KEY=your_mineru_api_key
+
+# Local Data Paths
+LIBRARY_DIR=./library
+PORT=8000
+DATABASE_URL=sqlite://astro_research.db
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fc7b1bb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,21 @@
+# Rust build artifacts
+/target/
+
+# Local configuration
+.env
+
+# SQLite local database
+/astro_research.db
+/astro_research.db-journal
+/astro_research.db-shm
+/astro_research.db-wal
+
+# Local literature storage (contains downloaded PDFs, HTML, Markdowns and Translations)
+/library/
+
+# IDEs and OS files
+.vscode/
+.idea/
+.DS_Store
+*.suo
+*.swp
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..ea39267
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,3554 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "ahash"
+version = "0.8.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
+dependencies = [
+ "cfg-if",
+ "getrandom 0.3.4",
+ "once_cell",
+ "version_check",
+ "zerocopy",
+]
+
+[[package]]
+name = "aho-corasick"
+version = "1.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "allocator-api2"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
+
+[[package]]
+name = "android_system_properties"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "anyhow"
+version = "1.0.102"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
+
+[[package]]
+name = "astroresearch"
+version = "0.1.0"
+dependencies = [
+ "anyhow",
+ "axum",
+ "base64 0.22.1",
+ "chrono",
+ "dotenvy",
+ "futures-util",
+ "hmac",
+ "html2md",
+ "quick-xml",
+ "rand",
+ "regex",
+ "reqwest",
+ "serde",
+ "serde_json",
+ "sha1",
+ "sqlx",
+ "thiserror",
+ "tokio",
+ "tower-http 0.5.2",
+ "tracing",
+ "tracing-subscriber",
+ "url",
+ "urlencoding",
+]
+
+[[package]]
+name = "async-trait"
+version = "0.1.89"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "atoi"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
+name = "atomic-waker"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
+
+[[package]]
+name = "autocfg"
+version = "1.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
+
+[[package]]
+name = "axum"
+version = "0.7.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
+dependencies = [
+ "async-trait",
+ "axum-core",
+ "axum-macros",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "http-body-util",
+ "hyper",
+ "hyper-util",
+ "itoa",
+ "matchit",
+ "memchr",
+ "mime",
+ "percent-encoding",
+ "pin-project-lite",
+ "rustversion",
+ "serde",
+ "serde_json",
+ "serde_path_to_error",
+ "serde_urlencoded",
+ "sync_wrapper",
+ "tokio",
+ "tower",
+ "tower-layer",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "axum-core"
+version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
+dependencies = [
+ "async-trait",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "http-body-util",
+ "mime",
+ "pin-project-lite",
+ "rustversion",
+ "sync_wrapper",
+ "tower-layer",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "axum-macros"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "base64"
+version = "0.21.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
+
+[[package]]
+name = "base64"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+[[package]]
+name = "base64ct"
+version = "1.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
+
+[[package]]
+name = "bitflags"
+version = "2.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "block-buffer"
+version = "0.10.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "bumpalo"
+version = "3.20.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
+
+[[package]]
+name = "byteorder"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+[[package]]
+name = "bytes"
+version = "1.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
+
+[[package]]
+name = "cc"
+version = "1.2.63"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
+dependencies = [
+ "find-msvc-tools",
+ "shlex",
+]
+
+[[package]]
+name = "cesu8"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
+
+[[package]]
+name = "cfg-if"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
+
+[[package]]
+name = "chrono"
+version = "0.4.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
+dependencies = [
+ "iana-time-zone",
+ "js-sys",
+ "num-traits",
+ "serde",
+ "wasm-bindgen",
+ "windows-link",
+]
+
+[[package]]
+name = "combine"
+version = "4.6.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
+dependencies = [
+ "bytes",
+ "memchr",
+]
+
+[[package]]
+name = "const-oid"
+version = "0.9.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
+
+[[package]]
+name = "cookie"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
+dependencies = [
+ "percent-encoding",
+ "time",
+ "version_check",
+]
+
+[[package]]
+name = "cookie_store"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
+dependencies = [
+ "cookie",
+ "document-features",
+ "idna",
+ "log",
+ "publicsuffix",
+ "serde",
+ "serde_derive",
+ "serde_json",
+ "time",
+ "url",
+]
+
+[[package]]
+name = "core-foundation"
+version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "core-foundation"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "core-foundation-sys"
+version = "0.8.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
+
+[[package]]
+name = "cpufeatures"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "crc"
+version = "3.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
+dependencies = [
+ "crc-catalog",
+]
+
+[[package]]
+name = "crc-catalog"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
+
+[[package]]
+name = "crossbeam-queue"
+version = "0.3.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.8.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
+
+[[package]]
+name = "crypto-common"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
+dependencies = [
+ "generic-array",
+ "typenum",
+]
+
+[[package]]
+name = "der"
+version = "0.7.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
+dependencies = [
+ "const-oid",
+ "pem-rfc7468",
+ "zeroize",
+]
+
+[[package]]
+name = "deranged"
+version = "0.5.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
+dependencies = [
+ "powerfmt",
+]
+
+[[package]]
+name = "digest"
+version = "0.10.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+dependencies = [
+ "block-buffer",
+ "const-oid",
+ "crypto-common",
+ "subtle",
+]
+
+[[package]]
+name = "displaydoc"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "document-features"
+version = "0.2.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
+dependencies = [
+ "litrs",
+]
+
+[[package]]
+name = "dotenvy"
+version = "0.15.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
+
+[[package]]
+name = "either"
+version = "1.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "encoding_rs"
+version = "0.8.35"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "equivalent"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
+
+[[package]]
+name = "errno"
+version = "0.3.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
+dependencies = [
+ "libc",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "etcetera"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
+dependencies = [
+ "cfg-if",
+ "home",
+ "windows-sys 0.48.0",
+]
+
+[[package]]
+name = "event-listener"
+version = "2.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
+
+[[package]]
+name = "fastrand"
+version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
+
+[[package]]
+name = "find-msvc-tools"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
+
+[[package]]
+name = "flume"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
+dependencies = [
+ "futures-core",
+ "futures-sink",
+ "spin",
+]
+
+[[package]]
+name = "fnv"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+[[package]]
+name = "foldhash"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
+
+[[package]]
+name = "foreign-types"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
+dependencies = [
+ "foreign-types-shared",
+]
+
+[[package]]
+name = "foreign-types-shared"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
+
+[[package]]
+name = "form_urlencoded"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
+dependencies = [
+ "percent-encoding",
+]
+
+[[package]]
+name = "futf"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
+dependencies = [
+ "mac",
+ "new_debug_unreachable",
+]
+
+[[package]]
+name = "futures-channel"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
+dependencies = [
+ "futures-core",
+ "futures-sink",
+]
+
+[[package]]
+name = "futures-core"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
+
+[[package]]
+name = "futures-executor"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
+dependencies = [
+ "futures-core",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
+name = "futures-intrusive"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
+dependencies = [
+ "futures-core",
+ "lock_api",
+ "parking_lot",
+]
+
+[[package]]
+name = "futures-io"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
+
+[[package]]
+name = "futures-macro"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "futures-sink"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
+
+[[package]]
+name = "futures-task"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
+
+[[package]]
+name = "futures-util"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
+dependencies = [
+ "futures-core",
+ "futures-io",
+ "futures-macro",
+ "futures-sink",
+ "futures-task",
+ "memchr",
+ "pin-project-lite",
+ "slab",
+]
+
+[[package]]
+name = "generic-array"
+version = "0.14.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
+dependencies = [
+ "typenum",
+ "version_check",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "r-efi 5.3.0",
+ "wasip2",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "r-efi 6.0.0",
+ "wasip2",
+ "wasip3",
+]
+
+[[package]]
+name = "h2"
+version = "0.4.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
+dependencies = [
+ "atomic-waker",
+ "bytes",
+ "fnv",
+ "futures-core",
+ "futures-sink",
+ "http",
+ "indexmap",
+ "slab",
+ "tokio",
+ "tokio-util",
+ "tracing",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.14.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
+dependencies = [
+ "ahash",
+ "allocator-api2",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.15.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
+dependencies = [
+ "foldhash",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.17.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
+
+[[package]]
+name = "hashlink"
+version = "0.8.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
+dependencies = [
+ "hashbrown 0.14.5",
+]
+
+[[package]]
+name = "heck"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+dependencies = [
+ "unicode-segmentation",
+]
+
+[[package]]
+name = "heck"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
+[[package]]
+name = "hex"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
+
+[[package]]
+name = "hkdf"
+version = "0.12.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
+dependencies = [
+ "hmac",
+]
+
+[[package]]
+name = "hmac"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
+dependencies = [
+ "digest",
+]
+
+[[package]]
+name = "home"
+version = "0.5.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
+dependencies = [
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "html2md"
+version = "0.2.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8cff9891f2e0d9048927fbdfc28b11bf378f6a93c7ba70b23d0fbee9af6071b4"
+dependencies = [
+ "html5ever",
+ "jni",
+ "lazy_static",
+ "markup5ever_rcdom",
+ "percent-encoding",
+ "regex",
+]
+
+[[package]]
+name = "html5ever"
+version = "0.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
+dependencies = [
+ "log",
+ "mac",
+ "markup5ever",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "http"
+version = "1.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
+dependencies = [
+ "bytes",
+ "itoa",
+]
+
+[[package]]
+name = "http-body"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+dependencies = [
+ "bytes",
+ "http",
+]
+
+[[package]]
+name = "http-body-util"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "http",
+ "http-body",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "http-range-header"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
+
+[[package]]
+name = "httparse"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
+
+[[package]]
+name = "httpdate"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
+
+[[package]]
+name = "hyper"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
+dependencies = [
+ "atomic-waker",
+ "bytes",
+ "futures-channel",
+ "futures-core",
+ "h2",
+ "http",
+ "http-body",
+ "httparse",
+ "httpdate",
+ "itoa",
+ "pin-project-lite",
+ "smallvec",
+ "tokio",
+ "want",
+]
+
+[[package]]
+name = "hyper-rustls"
+version = "0.27.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
+dependencies = [
+ "http",
+ "hyper",
+ "hyper-util",
+ "rustls 0.23.40",
+ "tokio",
+ "tokio-rustls",
+ "tower-service",
+]
+
+[[package]]
+name = "hyper-tls"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
+dependencies = [
+ "bytes",
+ "http-body-util",
+ "hyper",
+ "hyper-util",
+ "native-tls",
+ "tokio",
+ "tokio-native-tls",
+ "tower-service",
+]
+
+[[package]]
+name = "hyper-util"
+version = "0.1.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "futures-channel",
+ "futures-util",
+ "http",
+ "http-body",
+ "hyper",
+ "ipnet",
+ "libc",
+ "percent-encoding",
+ "pin-project-lite",
+ "socket2",
+ "system-configuration",
+ "tokio",
+ "tower-service",
+ "tracing",
+ "windows-registry",
+]
+
+[[package]]
+name = "iana-time-zone"
+version = "0.1.65"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
+dependencies = [
+ "android_system_properties",
+ "core-foundation-sys",
+ "iana-time-zone-haiku",
+ "js-sys",
+ "log",
+ "wasm-bindgen",
+ "windows-core",
+]
+
+[[package]]
+name = "iana-time-zone-haiku"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "icu_collections"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
+dependencies = [
+ "displaydoc",
+ "potential_utf",
+ "utf8_iter",
+ "yoke",
+ "zerofrom",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_locale_core"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
+dependencies = [
+ "displaydoc",
+ "litemap",
+ "tinystr",
+ "writeable",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
+dependencies = [
+ "icu_collections",
+ "icu_normalizer_data",
+ "icu_properties",
+ "icu_provider",
+ "smallvec",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer_data"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
+
+[[package]]
+name = "icu_properties"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
+dependencies = [
+ "icu_collections",
+ "icu_locale_core",
+ "icu_properties_data",
+ "icu_provider",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_properties_data"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
+
+[[package]]
+name = "icu_provider"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
+dependencies = [
+ "displaydoc",
+ "icu_locale_core",
+ "writeable",
+ "yoke",
+ "zerofrom",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "id-arena"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
+
+[[package]]
+name = "idna"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
+dependencies = [
+ "idna_adapter",
+ "smallvec",
+ "utf8_iter",
+]
+
+[[package]]
+name = "idna_adapter"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
+dependencies = [
+ "icu_normalizer",
+ "icu_properties",
+]
+
+[[package]]
+name = "indexmap"
+version = "2.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
+dependencies = [
+ "equivalent",
+ "hashbrown 0.17.1",
+ "serde",
+ "serde_core",
+]
+
+[[package]]
+name = "ipnet"
+version = "2.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
+
+[[package]]
+name = "itoa"
+version = "1.0.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
+
+[[package]]
+name = "jni"
+version = "0.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"
+dependencies = [
+ "cesu8",
+ "combine",
+ "jni-sys 0.3.1",
+ "log",
+ "thiserror",
+ "walkdir",
+]
+
+[[package]]
+name = "jni-sys"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
+dependencies = [
+ "jni-sys 0.4.1",
+]
+
+[[package]]
+name = "jni-sys"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
+dependencies = [
+ "jni-sys-macros",
+]
+
+[[package]]
+name = "jni-sys-macros"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
+dependencies = [
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "js-sys"
+version = "0.3.99"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
+dependencies = [
+ "cfg-if",
+ "futures-util",
+ "once_cell",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "lazy_static"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
+dependencies = [
+ "spin",
+]
+
+[[package]]
+name = "leb128fmt"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
+
+[[package]]
+name = "libc"
+version = "0.2.186"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
+
+[[package]]
+name = "libm"
+version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
+
+[[package]]
+name = "libredox"
+version = "0.1.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
+dependencies = [
+ "bitflags",
+ "libc",
+ "plain",
+ "redox_syscall 0.8.1",
+]
+
+[[package]]
+name = "libsqlite3-sys"
+version = "0.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
+dependencies = [
+ "cc",
+ "pkg-config",
+ "vcpkg",
+]
+
+[[package]]
+name = "linux-raw-sys"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
+
+[[package]]
+name = "litemap"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
+
+[[package]]
+name = "litrs"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
+
+[[package]]
+name = "lock_api"
+version = "0.4.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
+dependencies = [
+ "scopeguard",
+]
+
+[[package]]
+name = "log"
+version = "0.4.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
+
+[[package]]
+name = "mac"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
+
+[[package]]
+name = "markup5ever"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
+dependencies = [
+ "log",
+ "phf",
+ "phf_codegen",
+ "string_cache",
+ "string_cache_codegen",
+ "tendril",
+]
+
+[[package]]
+name = "markup5ever_rcdom"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18"
+dependencies = [
+ "html5ever",
+ "markup5ever",
+ "tendril",
+ "xml5ever",
+]
+
+[[package]]
+name = "matchers"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
+dependencies = [
+ "regex-automata",
+]
+
+[[package]]
+name = "matchit"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
+
+[[package]]
+name = "md-5"
+version = "0.10.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
+dependencies = [
+ "cfg-if",
+ "digest",
+]
+
+[[package]]
+name = "memchr"
+version = "2.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
+
+[[package]]
+name = "mime"
+version = "0.3.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+
+[[package]]
+name = "mime_guess"
+version = "2.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
+dependencies = [
+ "mime",
+ "unicase",
+]
+
+[[package]]
+name = "minimal-lexical"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+[[package]]
+name = "mio"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
+dependencies = [
+ "libc",
+ "wasi",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "native-tls"
+version = "0.2.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
+dependencies = [
+ "libc",
+ "log",
+ "openssl",
+ "openssl-probe",
+ "openssl-sys",
+ "schannel",
+ "security-framework",
+ "security-framework-sys",
+ "tempfile",
+]
+
+[[package]]
+name = "new_debug_unreachable"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
+
+[[package]]
+name = "nom"
+version = "7.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+dependencies = [
+ "memchr",
+ "minimal-lexical",
+]
+
+[[package]]
+name = "nu-ansi-term"
+version = "0.50.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
+dependencies = [
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "num-bigint-dig"
+version = "0.8.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
+dependencies = [
+ "lazy_static",
+ "libm",
+ "num-integer",
+ "num-iter",
+ "num-traits",
+ "rand",
+ "smallvec",
+ "zeroize",
+]
+
+[[package]]
+name = "num-conv"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
+
+[[package]]
+name = "num-integer"
+version = "0.1.46"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
+name = "num-iter"
+version = "0.1.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
+dependencies = [
+ "autocfg",
+ "num-integer",
+ "num-traits",
+]
+
+[[package]]
+name = "num-traits"
+version = "0.2.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+dependencies = [
+ "autocfg",
+ "libm",
+]
+
+[[package]]
+name = "once_cell"
+version = "1.21.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
+
+[[package]]
+name = "openssl"
+version = "0.10.80"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
+dependencies = [
+ "bitflags",
+ "cfg-if",
+ "foreign-types",
+ "libc",
+ "openssl-macros",
+ "openssl-sys",
+]
+
+[[package]]
+name = "openssl-macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "openssl-probe"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
+
+[[package]]
+name = "openssl-sys"
+version = "0.9.116"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
+dependencies = [
+ "cc",
+ "libc",
+ "pkg-config",
+ "vcpkg",
+]
+
+[[package]]
+name = "parking_lot"
+version = "0.12.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
+dependencies = [
+ "lock_api",
+ "parking_lot_core",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.9.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "redox_syscall 0.5.18",
+ "smallvec",
+ "windows-link",
+]
+
+[[package]]
+name = "paste"
+version = "1.0.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
+
+[[package]]
+name = "pem-rfc7468"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
+dependencies = [
+ "base64ct",
+]
+
+[[package]]
+name = "percent-encoding"
+version = "2.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
+
+[[package]]
+name = "phf"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
+dependencies = [
+ "phf_shared",
+]
+
+[[package]]
+name = "phf_codegen"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
+dependencies = [
+ "phf_generator",
+ "phf_shared",
+]
+
+[[package]]
+name = "phf_generator"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
+dependencies = [
+ "phf_shared",
+ "rand",
+]
+
+[[package]]
+name = "phf_shared"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
+dependencies = [
+ "siphasher",
+]
+
+[[package]]
+name = "pin-project-lite"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
+
+[[package]]
+name = "pkcs1"
+version = "0.7.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
+dependencies = [
+ "der",
+ "pkcs8",
+ "spki",
+]
+
+[[package]]
+name = "pkcs8"
+version = "0.10.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
+dependencies = [
+ "der",
+ "spki",
+]
+
+[[package]]
+name = "pkg-config"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
+
+[[package]]
+name = "plain"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
+
+[[package]]
+name = "potential_utf"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
+dependencies = [
+ "zerovec",
+]
+
+[[package]]
+name = "powerfmt"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+[[package]]
+name = "ppv-lite86"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
+dependencies = [
+ "zerocopy",
+]
+
+[[package]]
+name = "precomputed-hash"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
+
+[[package]]
+name = "prettyplease"
+version = "0.2.37"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
+dependencies = [
+ "proc-macro2",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.106"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "psl-types"
+version = "2.0.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
+
+[[package]]
+name = "publicsuffix"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
+dependencies = [
+ "idna",
+ "psl-types",
+]
+
+[[package]]
+name = "quick-xml"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
+dependencies = [
+ "memchr",
+ "serde",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "r-efi"
+version = "5.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
+
+[[package]]
+name = "r-efi"
+version = "6.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
+
+[[package]]
+name = "rand"
+version = "0.8.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
+dependencies = [
+ "libc",
+ "rand_chacha",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+dependencies = [
+ "ppv-lite86",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+dependencies = [
+ "getrandom 0.2.17",
+]
+
+[[package]]
+name = "redox_syscall"
+version = "0.5.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
+dependencies = [
+ "bitflags",
+]
+
+[[package]]
+name = "redox_syscall"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b44b894f2a6e36457d665d1e08c3866add6ed5e70050c1b4ba8a8ddedb02ce7"
+dependencies = [
+ "bitflags",
+]
+
+[[package]]
+name = "regex"
+version = "1.12.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-automata",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.4.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.8.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
+
+[[package]]
+name = "reqwest"
+version = "0.12.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "cookie",
+ "cookie_store",
+ "encoding_rs",
+ "futures-core",
+ "futures-util",
+ "h2",
+ "http",
+ "http-body",
+ "http-body-util",
+ "hyper",
+ "hyper-rustls",
+ "hyper-tls",
+ "hyper-util",
+ "js-sys",
+ "log",
+ "mime",
+ "mime_guess",
+ "native-tls",
+ "percent-encoding",
+ "pin-project-lite",
+ "rustls-pki-types",
+ "serde",
+ "serde_json",
+ "serde_urlencoded",
+ "sync_wrapper",
+ "tokio",
+ "tokio-native-tls",
+ "tokio-util",
+ "tower",
+ "tower-http 0.6.11",
+ "tower-service",
+ "url",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "wasm-streams",
+ "web-sys",
+]
+
+[[package]]
+name = "ring"
+version = "0.17.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
+dependencies = [
+ "cc",
+ "cfg-if",
+ "getrandom 0.2.17",
+ "libc",
+ "untrusted",
+ "windows-sys 0.52.0",
+]
+
+[[package]]
+name = "rsa"
+version = "0.9.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
+dependencies = [
+ "const-oid",
+ "digest",
+ "num-bigint-dig",
+ "num-integer",
+ "num-traits",
+ "pkcs1",
+ "pkcs8",
+ "rand_core",
+ "signature",
+ "spki",
+ "subtle",
+ "zeroize",
+]
+
+[[package]]
+name = "rustix"
+version = "1.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
+dependencies = [
+ "bitflags",
+ "errno",
+ "libc",
+ "linux-raw-sys",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "rustls"
+version = "0.21.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
+dependencies = [
+ "ring",
+ "rustls-webpki 0.101.7",
+ "sct",
+]
+
+[[package]]
+name = "rustls"
+version = "0.23.40"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
+dependencies = [
+ "once_cell",
+ "rustls-pki-types",
+ "rustls-webpki 0.103.13",
+ "subtle",
+ "zeroize",
+]
+
+[[package]]
+name = "rustls-pemfile"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
+dependencies = [
+ "base64 0.21.7",
+]
+
+[[package]]
+name = "rustls-pki-types"
+version = "1.14.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
+dependencies = [
+ "zeroize",
+]
+
+[[package]]
+name = "rustls-webpki"
+version = "0.101.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
+dependencies = [
+ "ring",
+ "untrusted",
+]
+
+[[package]]
+name = "rustls-webpki"
+version = "0.103.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
+dependencies = [
+ "ring",
+ "rustls-pki-types",
+ "untrusted",
+]
+
+[[package]]
+name = "rustversion"
+version = "1.0.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
+
+[[package]]
+name = "ryu"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
+
+[[package]]
+name = "same-file"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
+name = "schannel"
+version = "0.1.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
+dependencies = [
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "scopeguard"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+
+[[package]]
+name = "sct"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
+dependencies = [
+ "ring",
+ "untrusted",
+]
+
+[[package]]
+name = "security-framework"
+version = "3.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
+dependencies = [
+ "bitflags",
+ "core-foundation 0.10.1",
+ "core-foundation-sys",
+ "libc",
+ "security-framework-sys",
+]
+
+[[package]]
+name = "security-framework-sys"
+version = "2.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "semver"
+version = "1.0.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
+
+[[package]]
+name = "serde"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
+dependencies = [
+ "serde_core",
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_core"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.150"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
+dependencies = [
+ "itoa",
+ "memchr",
+ "serde",
+ "serde_core",
+ "zmij",
+]
+
+[[package]]
+name = "serde_path_to_error"
+version = "0.1.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
+dependencies = [
+ "itoa",
+ "serde",
+ "serde_core",
+]
+
+[[package]]
+name = "serde_urlencoded"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
+dependencies = [
+ "form_urlencoded",
+ "itoa",
+ "ryu",
+ "serde",
+]
+
+[[package]]
+name = "sha1"
+version = "0.10.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
+dependencies = [
+ "cfg-if",
+ "cpufeatures",
+ "digest",
+]
+
+[[package]]
+name = "sha2"
+version = "0.10.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
+dependencies = [
+ "cfg-if",
+ "cpufeatures",
+ "digest",
+]
+
+[[package]]
+name = "sharded-slab"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
+dependencies = [
+ "lazy_static",
+]
+
+[[package]]
+name = "shlex"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
+
+[[package]]
+name = "signal-hook-registry"
+version = "1.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
+dependencies = [
+ "errno",
+ "libc",
+]
+
+[[package]]
+name = "signature"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
+dependencies = [
+ "digest",
+ "rand_core",
+]
+
+[[package]]
+name = "siphasher"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
+
+[[package]]
+name = "slab"
+version = "0.4.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
+
+[[package]]
+name = "smallvec"
+version = "1.15.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
+
+[[package]]
+name = "socket2"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
+dependencies = [
+ "libc",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "spin"
+version = "0.9.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
+dependencies = [
+ "lock_api",
+]
+
+[[package]]
+name = "spki"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
+dependencies = [
+ "base64ct",
+ "der",
+]
+
+[[package]]
+name = "sqlformat"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
+dependencies = [
+ "nom",
+ "unicode_categories",
+]
+
+[[package]]
+name = "sqlx"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa"
+dependencies = [
+ "sqlx-core",
+ "sqlx-macros",
+ "sqlx-mysql",
+ "sqlx-postgres",
+ "sqlx-sqlite",
+]
+
+[[package]]
+name = "sqlx-core"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6"
+dependencies = [
+ "ahash",
+ "atoi",
+ "byteorder",
+ "bytes",
+ "chrono",
+ "crc",
+ "crossbeam-queue",
+ "either",
+ "event-listener",
+ "futures-channel",
+ "futures-core",
+ "futures-intrusive",
+ "futures-io",
+ "futures-util",
+ "hashlink",
+ "hex",
+ "indexmap",
+ "log",
+ "memchr",
+ "once_cell",
+ "paste",
+ "percent-encoding",
+ "rustls 0.21.12",
+ "rustls-pemfile",
+ "serde",
+ "serde_json",
+ "sha2",
+ "smallvec",
+ "sqlformat",
+ "thiserror",
+ "tokio",
+ "tokio-stream",
+ "tracing",
+ "url",
+ "webpki-roots",
+]
+
+[[package]]
+name = "sqlx-macros"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "sqlx-core",
+ "sqlx-macros-core",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "sqlx-macros-core"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8"
+dependencies = [
+ "dotenvy",
+ "either",
+ "heck 0.4.1",
+ "hex",
+ "once_cell",
+ "proc-macro2",
+ "quote",
+ "serde",
+ "serde_json",
+ "sha2",
+ "sqlx-core",
+ "sqlx-mysql",
+ "sqlx-postgres",
+ "sqlx-sqlite",
+ "syn 1.0.109",
+ "tempfile",
+ "tokio",
+ "url",
+]
+
+[[package]]
+name = "sqlx-mysql"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
+dependencies = [
+ "atoi",
+ "base64 0.21.7",
+ "bitflags",
+ "byteorder",
+ "bytes",
+ "chrono",
+ "crc",
+ "digest",
+ "dotenvy",
+ "either",
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-util",
+ "generic-array",
+ "hex",
+ "hkdf",
+ "hmac",
+ "itoa",
+ "log",
+ "md-5",
+ "memchr",
+ "once_cell",
+ "percent-encoding",
+ "rand",
+ "rsa",
+ "serde",
+ "sha1",
+ "sha2",
+ "smallvec",
+ "sqlx-core",
+ "stringprep",
+ "thiserror",
+ "tracing",
+ "whoami",
+]
+
+[[package]]
+name = "sqlx-postgres"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
+dependencies = [
+ "atoi",
+ "base64 0.21.7",
+ "bitflags",
+ "byteorder",
+ "chrono",
+ "crc",
+ "dotenvy",
+ "etcetera",
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-util",
+ "hex",
+ "hkdf",
+ "hmac",
+ "home",
+ "itoa",
+ "log",
+ "md-5",
+ "memchr",
+ "once_cell",
+ "rand",
+ "serde",
+ "serde_json",
+ "sha2",
+ "smallvec",
+ "sqlx-core",
+ "stringprep",
+ "thiserror",
+ "tracing",
+ "whoami",
+]
+
+[[package]]
+name = "sqlx-sqlite"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa"
+dependencies = [
+ "atoi",
+ "chrono",
+ "flume",
+ "futures-channel",
+ "futures-core",
+ "futures-executor",
+ "futures-intrusive",
+ "futures-util",
+ "libsqlite3-sys",
+ "log",
+ "percent-encoding",
+ "serde",
+ "sqlx-core",
+ "tracing",
+ "url",
+ "urlencoding",
+]
+
+[[package]]
+name = "stable_deref_trait"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
+
+[[package]]
+name = "string_cache"
+version = "0.8.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
+dependencies = [
+ "new_debug_unreachable",
+ "parking_lot",
+ "phf_shared",
+ "precomputed-hash",
+ "serde",
+]
+
+[[package]]
+name = "string_cache_codegen"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
+dependencies = [
+ "phf_generator",
+ "phf_shared",
+ "proc-macro2",
+ "quote",
+]
+
+[[package]]
+name = "stringprep"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
+dependencies = [
+ "unicode-bidi",
+ "unicode-normalization",
+ "unicode-properties",
+]
+
+[[package]]
+name = "subtle"
+version = "2.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
+
+[[package]]
+name = "syn"
+version = "1.0.109"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "syn"
+version = "2.0.117"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "sync_wrapper"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "synstructure"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "system-configuration"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
+dependencies = [
+ "bitflags",
+ "core-foundation 0.9.4",
+ "system-configuration-sys",
+]
+
+[[package]]
+name = "system-configuration-sys"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "tempfile"
+version = "3.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
+dependencies = [
+ "fastrand",
+ "getrandom 0.4.2",
+ "once_cell",
+ "rustix",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "tendril"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
+dependencies = [
+ "futf",
+ "mac",
+ "utf-8",
+]
+
+[[package]]
+name = "thiserror"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
+dependencies = [
+ "thiserror-impl",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "thread_local"
+version = "1.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "time"
+version = "0.3.47"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
+dependencies = [
+ "deranged",
+ "itoa",
+ "num-conv",
+ "powerfmt",
+ "serde_core",
+ "time-core",
+ "time-macros",
+]
+
+[[package]]
+name = "time-core"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
+
+[[package]]
+name = "time-macros"
+version = "0.2.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
+dependencies = [
+ "num-conv",
+ "time-core",
+]
+
+[[package]]
+name = "tinystr"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
+dependencies = [
+ "displaydoc",
+ "zerovec",
+]
+
+[[package]]
+name = "tinyvec"
+version = "1.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
+dependencies = [
+ "tinyvec_macros",
+]
+
+[[package]]
+name = "tinyvec_macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+
+[[package]]
+name = "tokio"
+version = "1.52.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
+dependencies = [
+ "bytes",
+ "libc",
+ "mio",
+ "parking_lot",
+ "pin-project-lite",
+ "signal-hook-registry",
+ "socket2",
+ "tokio-macros",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "tokio-macros"
+version = "2.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "tokio-native-tls"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
+dependencies = [
+ "native-tls",
+ "tokio",
+]
+
+[[package]]
+name = "tokio-rustls"
+version = "0.26.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
+dependencies = [
+ "rustls 0.23.40",
+ "tokio",
+]
+
+[[package]]
+name = "tokio-stream"
+version = "0.1.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
+name = "tokio-util"
+version = "0.7.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "futures-sink",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
+name = "tower"
+version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
+dependencies = [
+ "futures-core",
+ "futures-util",
+ "pin-project-lite",
+ "sync_wrapper",
+ "tokio",
+ "tower-layer",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "tower-http"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
+dependencies = [
+ "bitflags",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "http-body-util",
+ "http-range-header",
+ "httpdate",
+ "mime",
+ "mime_guess",
+ "percent-encoding",
+ "pin-project-lite",
+ "tokio",
+ "tokio-util",
+ "tower-layer",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "tower-http"
+version = "0.6.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
+dependencies = [
+ "bitflags",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "pin-project-lite",
+ "tower",
+ "tower-layer",
+ "tower-service",
+ "url",
+]
+
+[[package]]
+name = "tower-layer"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
+
+[[package]]
+name = "tower-service"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
+
+[[package]]
+name = "tracing"
+version = "0.1.44"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
+dependencies = [
+ "log",
+ "pin-project-lite",
+ "tracing-attributes",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-attributes"
+version = "0.1.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "tracing-core"
+version = "0.1.36"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
+dependencies = [
+ "once_cell",
+ "valuable",
+]
+
+[[package]]
+name = "tracing-log"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
+dependencies = [
+ "log",
+ "once_cell",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-subscriber"
+version = "0.3.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
+dependencies = [
+ "matchers",
+ "nu-ansi-term",
+ "once_cell",
+ "regex-automata",
+ "sharded-slab",
+ "smallvec",
+ "thread_local",
+ "tracing",
+ "tracing-core",
+ "tracing-log",
+]
+
+[[package]]
+name = "try-lock"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
+
+[[package]]
+name = "typenum"
+version = "1.20.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
+
+[[package]]
+name = "unicase"
+version = "2.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
+
+[[package]]
+name = "unicode-bidi"
+version = "0.3.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
+
+[[package]]
+name = "unicode-normalization"
+version = "0.1.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
+dependencies = [
+ "tinyvec",
+]
+
+[[package]]
+name = "unicode-properties"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
+
+[[package]]
+name = "unicode-segmentation"
+version = "1.13.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
+
+[[package]]
+name = "unicode-xid"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
+
+[[package]]
+name = "unicode_categories"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
+
+[[package]]
+name = "untrusted"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
+
+[[package]]
+name = "url"
+version = "2.5.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
+dependencies = [
+ "form_urlencoded",
+ "idna",
+ "percent-encoding",
+ "serde",
+]
+
+[[package]]
+name = "urlencoding"
+version = "2.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
+
+[[package]]
+name = "utf-8"
+version = "0.7.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
+
+[[package]]
+name = "utf8_iter"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
+
+[[package]]
+name = "valuable"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
+
+[[package]]
+name = "vcpkg"
+version = "0.2.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
+
+[[package]]
+name = "version_check"
+version = "0.9.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
+
+[[package]]
+name = "walkdir"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
+dependencies = [
+ "same-file",
+ "winapi-util",
+]
+
+[[package]]
+name = "want"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
+dependencies = [
+ "try-lock",
+]
+
+[[package]]
+name = "wasi"
+version = "0.11.1+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
+
+[[package]]
+name = "wasip2"
+version = "1.0.3+wasi-0.2.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
+dependencies = [
+ "wit-bindgen 0.57.1",
+]
+
+[[package]]
+name = "wasip3"
+version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
+dependencies = [
+ "wit-bindgen 0.51.0",
+]
+
+[[package]]
+name = "wasite"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
+
+[[package]]
+name = "wasm-bindgen"
+version = "0.2.122"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
+dependencies = [
+ "cfg-if",
+ "once_cell",
+ "rustversion",
+ "wasm-bindgen-macro",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-futures"
+version = "0.4.72"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.122"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
+dependencies = [
+ "quote",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.122"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
+dependencies = [
+ "bumpalo",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.122"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "wasm-encoder"
+version = "0.244.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
+dependencies = [
+ "leb128fmt",
+ "wasmparser",
+]
+
+[[package]]
+name = "wasm-metadata"
+version = "0.244.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
+dependencies = [
+ "anyhow",
+ "indexmap",
+ "wasm-encoder",
+ "wasmparser",
+]
+
+[[package]]
+name = "wasm-streams"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
+dependencies = [
+ "futures-util",
+ "js-sys",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+]
+
+[[package]]
+name = "wasmparser"
+version = "0.244.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
+dependencies = [
+ "bitflags",
+ "hashbrown 0.15.5",
+ "indexmap",
+ "semver",
+]
+
+[[package]]
+name = "web-sys"
+version = "0.3.99"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "webpki-roots"
+version = "0.25.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
+
+[[package]]
+name = "whoami"
+version = "1.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
+dependencies = [
+ "libredox",
+ "wasite",
+]
+
+[[package]]
+name = "winapi-util"
+version = "0.1.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
+dependencies = [
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "windows-core"
+version = "0.62.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
+dependencies = [
+ "windows-implement",
+ "windows-interface",
+ "windows-link",
+ "windows-result",
+ "windows-strings",
+]
+
+[[package]]
+name = "windows-implement"
+version = "0.60.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "windows-interface"
+version = "0.59.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "windows-link"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
+
+[[package]]
+name = "windows-registry"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
+dependencies = [
+ "windows-link",
+ "windows-result",
+ "windows-strings",
+]
+
+[[package]]
+name = "windows-result"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-strings"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.48.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
+dependencies = [
+ "windows-targets 0.48.5",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+dependencies = [
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.61.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
+dependencies = [
+ "windows_aarch64_gnullvm 0.48.5",
+ "windows_aarch64_msvc 0.48.5",
+ "windows_i686_gnu 0.48.5",
+ "windows_i686_msvc 0.48.5",
+ "windows_x86_64_gnu 0.48.5",
+ "windows_x86_64_gnullvm 0.48.5",
+ "windows_x86_64_msvc 0.48.5",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
+dependencies = [
+ "windows_aarch64_gnullvm 0.52.6",
+ "windows_aarch64_msvc 0.52.6",
+ "windows_i686_gnu 0.52.6",
+ "windows_i686_gnullvm",
+ "windows_i686_msvc 0.52.6",
+ "windows_x86_64_gnu 0.52.6",
+ "windows_x86_64_gnullvm 0.52.6",
+ "windows_x86_64_msvc 0.52.6",
+]
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+
+[[package]]
+name = "windows_i686_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.48.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+
+[[package]]
+name = "wit-bindgen"
+version = "0.51.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
+dependencies = [
+ "wit-bindgen-rust-macro",
+]
+
+[[package]]
+name = "wit-bindgen"
+version = "0.57.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
+
+[[package]]
+name = "wit-bindgen-core"
+version = "0.51.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
+dependencies = [
+ "anyhow",
+ "heck 0.5.0",
+ "wit-parser",
+]
+
+[[package]]
+name = "wit-bindgen-rust"
+version = "0.51.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
+dependencies = [
+ "anyhow",
+ "heck 0.5.0",
+ "indexmap",
+ "prettyplease",
+ "syn 2.0.117",
+ "wasm-metadata",
+ "wit-bindgen-core",
+ "wit-component",
+]
+
+[[package]]
+name = "wit-bindgen-rust-macro"
+version = "0.51.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
+dependencies = [
+ "anyhow",
+ "prettyplease",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+ "wit-bindgen-core",
+ "wit-bindgen-rust",
+]
+
+[[package]]
+name = "wit-component"
+version = "0.244.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
+dependencies = [
+ "anyhow",
+ "bitflags",
+ "indexmap",
+ "log",
+ "serde",
+ "serde_derive",
+ "serde_json",
+ "wasm-encoder",
+ "wasm-metadata",
+ "wasmparser",
+ "wit-parser",
+]
+
+[[package]]
+name = "wit-parser"
+version = "0.244.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
+dependencies = [
+ "anyhow",
+ "id-arena",
+ "indexmap",
+ "log",
+ "semver",
+ "serde",
+ "serde_derive",
+ "serde_json",
+ "unicode-xid",
+ "wasmparser",
+]
+
+[[package]]
+name = "writeable"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
+
+[[package]]
+name = "xml5ever"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69"
+dependencies = [
+ "log",
+ "mac",
+ "markup5ever",
+]
+
+[[package]]
+name = "yoke"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
+dependencies = [
+ "stable_deref_trait",
+ "yoke-derive",
+ "zerofrom",
+]
+
+[[package]]
+name = "yoke-derive"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+ "synstructure",
+]
+
+[[package]]
+name = "zerocopy"
+version = "0.8.50"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
+dependencies = [
+ "zerocopy-derive",
+]
+
+[[package]]
+name = "zerocopy-derive"
+version = "0.8.50"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "zerofrom"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
+dependencies = [
+ "zerofrom-derive",
+]
+
+[[package]]
+name = "zerofrom-derive"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+ "synstructure",
+]
+
+[[package]]
+name = "zeroize"
+version = "1.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
+
+[[package]]
+name = "zerotrie"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
+dependencies = [
+ "displaydoc",
+ "yoke",
+ "zerofrom",
+]
+
+[[package]]
+name = "zerovec"
+version = "0.11.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
+dependencies = [
+ "yoke",
+ "zerofrom",
+ "zerovec-derive",
+]
+
+[[package]]
+name = "zerovec-derive"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.117",
+]
+
+[[package]]
+name = "zmij"
+version = "1.0.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..d5967ee
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,29 @@
+[package]
+name = "astroresearch"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+tokio = { version = "1", features = ["full"] }
+axum = { version = "0.7", features = ["macros"] }
+tower-http = { version = "0.5", features = ["cors", "fs"] }
+sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "chrono", "json"] }
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+reqwest = { version = "0.12", features = ["json", "stream", "multipart", "cookies"] }
+dotenvy = "0.15"
+quick-xml = { version = "0.31", features = ["serialize"] }
+anyhow = "1.0"
+thiserror = "1.0"
+tracing = "0.1"
+tracing-subscriber = { version = "0.3", features = ["env-filter"] }
+futures-util = { version = "0.3", features = ["io"] }
+rand = "0.8"
+regex = "1.10"
+chrono = { version = "0.4", features = ["serde"] }
+sha1 = "0.10"
+hmac = "0.12"
+base64 = "0.22"
+urlencoding = "2.1"
+url = "2.5"
+html2md = "0.2"
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7375a7f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,81 @@
+# AstroResearch 天文科研辅助系统
+
+AstroResearch 是一个基于 **Rust (Axum)** 后端与 **React (Vite + TypeScript)** 前端的天文文献一体化科研辅助系统。
+
+---
+
+## 1. 功能概述 (Overview)
+
+AstroResearch 为天文领域的学者与研究人员提供一站式的文献管理与智能阅读解决方案,核心功能包括:
+
+- 🌌 **统一学术检索**:一键跨源检索 NASA ADS 与 arXiv 数据库,支持去重元数据卡片式展示。
+- 📥 **智能双通道下载**:模拟浏览器请求头与延迟,自动绕过出版商防爬墙,官方 HTML 优先并支持 ar5iv 备用兜底。
+- 📝 **结构化文献解析**:解析 HTML 或调用 MinerU (PDF 降级解析) 输出标准 GFM Markdown,对 LaTeX 公式实施占位符保护。
+- 🗣️ **大模型双语翻译**:基于本地天文学词汇库 (Trie 树最长匹配) 构建翻译 Glossary,指导大模型进行公式级精准中英翻译。
+- 🪐 **引文网络星系图**:基于 HTML5 Canvas 的高性能力导向拓扑渲染,双击节点支持引文深度探索。
+- ✍️ **划词高亮与笔记**:在双语阅读器中自由划词、多色高亮并记录学术心得,数据与文献双向绑定。
+
+---
+
+## 2. 快速启动 (Quickstart)
+
+### 2.1 配置环境变量
+将根目录下的 `.env.example` 复制并重命名为 `.env`:
+```bash
+cp .env.example .env
+```
+用编辑器打开填入你的 `ADS_API_KEY`、`LLM_API_KEY`、`QINIU_` 等第三方服务的认证 Token。
+
+### 2.2 运行服务 (Run)
+
+#### 方案一:本地开发调试模式 (Development Mode)
+开发模式下分别启动后端 API 服务和前端 HMR 热更新服务:
+1. **启动后端 (Rust Axum)**:
+ ```bash
+ cargo run
+ ```
+ 后端服务默认运行在 `http://localhost:8000`,并会自动初始化本地 SQLite 数据库及运行 migrations 迁移。
+2. **启动前端 (React Vite)**:
+ ```bash
+ cd dashboard
+ npm install
+ npm run dev
+ ```
+ 前端开发服务器默认运行在 `http://localhost:5173`。前端的所有 `/api` 接口请求已配置反向代理,会自动转发到后端的 `8000` 端口。
+
+#### 方案二:生产打包与单程序部署模式 (Production Mode)
+生产模式下需要先编译前端静态文件,随后由后端进程统一托管分发:
+1. **打包编译前端**:
+ ```bash
+ cd dashboard
+ npm install
+ npm run build
+ ```
+ 静态资源将打包并输出在项目根目录下的 `dashboard/dist/` 目录。
+2. **运行后端服务**:
+ ```bash
+ cd ..
+ cargo run --release
+ ```
+ 运行后直接访问 `http://localhost:8000` 即可使用,此时所有 React 网页和后台 API 均由 Rust 进程统一分发托管,无需额外启动 Vite。
+
+---
+
+## 3. 技术文档结构 (Documentation Directory)
+
+详细的技术和部署设计文档已集中整理至 `docs/` 目录:
+
+- 🏗️ **[架构设计](docs/architecture.md)**:包含系统宏观流程图与序列图。
+- 🌐 **[API 接口规范](docs/api.md)**:后端 Axum 路由及 HTTP 接口格式。
+- 🗄️ **[数据库设计](docs/database.md)**:SQLite 表结构、ER 图与索引优化。
+- 🎨 **[视觉与交互设计](docs/design.md)**:浅色/深色磨砂玻璃、自研 Canvas 图谱引擎说明。
+- 🛠️ **[排障指南](docs/troubleshooting.md)**:人机校验、解析失败等常见问题解法。
+- 🚀 **[编译与部署指南](docs/deployment.md)**:单执行文件打包与发布流程。
+- 🤝 **[参与贡献指南](docs/contributing.md)**:开发规范及单元测试。
+
+---
+
+## 4. 目录组件 README 交叉引用 (Component READMEs)
+
+- 💻 **前端 React 控制台**:查看 [dashboard/README.md](dashboard/README.md)
+- ⚙️ **后端 Rust 源码**:参见 [src/README.md](src/README.md)
diff --git a/dashboard/.gitignore b/dashboard/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/dashboard/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/dashboard/README.md b/dashboard/README.md
new file mode 100644
index 0000000..c669f12
--- /dev/null
+++ b/dashboard/README.md
@@ -0,0 +1,45 @@
+# AstroResearch Dashboard / 前端仪表盘控制台
+
+本模块是 AstroResearch 的前端部分,基于 **React (TypeScript) + Vite + Tailwind CSS** 构建。
+
+---
+
+## 1. 本地开发与调试 (Setup & Dev)
+
+### 1.1 安装依赖
+确保已安装 Node.js (v18+),在当前目录下运行:
+```bash
+npm install
+```
+
+### 1.2 启动开发服务器
+```bash
+npm run dev
+```
+开发服务器将默认运行在 `http://localhost:5173`。Vite 已配置了对 `http://localhost:8000` (后端) 的代理转发,跨域请求会自动路由。
+
+---
+
+## 2. 核心功能及文件结构 (Core Modules)
+
+- `src/components/layout/`:侧边栏与基本布局组件。
+- `src/components/CitationGalaxyCanvas.tsx`:自研的 Canvas 力导向引文星系图渲染器。
+- `src/features/search/`:统一检索面板,支持跨源搜索与收藏。
+- `src/features/library/`:馆藏管理卡片,提供下载状态实时监测及重新下载操作。
+- `src/features/reader/`:左右对齐的双分栏阅读器,内置划词高亮笔记及 LLM 重新翻译触发。
+- `src/types.ts`:全局 TypeScript 静态类型定义。
+
+---
+
+## 3. 生产构建 (Build)
+
+若需打包生成生产环境静态文件:
+```bash
+npm run build
+```
+打包文件将输出至当前目录下的 `dist/`,后端 Axum 在编译时会直接将其静态托管。
+
+---
+
+## 4. 开发规范 (Coding Standards)
+- 本模块的详细前端开发约定,请参阅本目录下的 [前端开发规范-React篇.md](前端开发规范-React篇.md)。
diff --git a/dashboard/eslint.config.js b/dashboard/eslint.config.js
new file mode 100644
index 0000000..ef614d2
--- /dev/null
+++ b/dashboard/eslint.config.js
@@ -0,0 +1,22 @@
+import js from '@eslint/js'
+import globals from 'globals'
+import reactHooks from 'eslint-plugin-react-hooks'
+import reactRefresh from 'eslint-plugin-react-refresh'
+import tseslint from 'typescript-eslint'
+import { defineConfig, globalIgnores } from 'eslint/config'
+
+export default defineConfig([
+ globalIgnores(['dist']),
+ {
+ files: ['**/*.{ts,tsx}'],
+ extends: [
+ js.configs.recommended,
+ tseslint.configs.recommended,
+ reactHooks.configs.flat.recommended,
+ reactRefresh.configs.vite,
+ ],
+ languageOptions: {
+ globals: globals.browser,
+ },
+ },
+])
diff --git a/dashboard/index.html b/dashboard/index.html
new file mode 100644
index 0000000..984e31d
--- /dev/null
+++ b/dashboard/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ dashboard
+
+
+
+
+
+
diff --git a/dashboard/package-lock.json b/dashboard/package-lock.json
new file mode 100644
index 0000000..4801e0c
--- /dev/null
+++ b/dashboard/package-lock.json
@@ -0,0 +1,4675 @@
+{
+ "name": "dashboard",
+ "version": "0.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "dashboard",
+ "version": "0.0.0",
+ "dependencies": {
+ "axios": "^1.17.0",
+ "clsx": "^2.1.1",
+ "framer-motion": "^12.40.0",
+ "katex": "^0.17.0",
+ "lucide-react": "^1.17.0",
+ "react": "^19.2.6",
+ "react-dom": "^19.2.6",
+ "react-markdown": "^10.1.0",
+ "rehype-katex": "^7.0.1",
+ "remark-math": "^6.0.0",
+ "tailwind-merge": "^3.6.0"
+ },
+ "devDependencies": {
+ "@eslint/js": "^10.0.1",
+ "@tailwindcss/typography": "^0.5.19",
+ "@tailwindcss/vite": "^4.3.0",
+ "@types/node": "^24.12.3",
+ "@types/react": "^19.2.14",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^6.0.1",
+ "eslint": "^10.3.0",
+ "eslint-plugin-react-hooks": "^7.1.1",
+ "eslint-plugin-react-refresh": "^0.5.2",
+ "globals": "^17.6.0",
+ "tailwindcss": "^4.3.0",
+ "typescript": "~6.0.2",
+ "typescript-eslint": "^8.59.2",
+ "vite": "^8.0.12"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.29.7",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/generator": "^7.29.7",
+ "@babel/helper-compilation-targets": "^7.29.7",
+ "@babel/helper-module-transforms": "^7.29.7",
+ "@babel/helpers": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/template": "^7.29.7",
+ "@babel/traverse": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "@jridgewell/remapping": "^2.3.5",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.29.7",
+ "@babel/helper-validator-option": "^7.29.7",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-globals": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/traverse": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7",
+ "@babel/traverse": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/template": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.29.7"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/generator": "^7.29.7",
+ "@babel/helper-globals": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/template": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emnapi/core": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.2.1",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.9.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
+ "dev": true,
+ "dependencies": {
+ "eslint-visitor-keys": "^3.4.3"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.12.2",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
+ "dev": true,
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/config-array": {
+ "version": "0.23.5",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz",
+ "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==",
+ "dev": true,
+ "dependencies": {
+ "@eslint/object-schema": "^3.0.5",
+ "debug": "^4.3.1",
+ "minimatch": "^10.2.4"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ }
+ },
+ "node_modules/@eslint/config-helpers": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz",
+ "integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==",
+ "dev": true,
+ "dependencies": {
+ "@eslint/core": "^1.2.1"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ }
+ },
+ "node_modules/@eslint/core": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
+ "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.15"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
+ "dev": true,
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ },
+ "peerDependencies": {
+ "eslint": "^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@eslint/object-schema": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz",
+ "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==",
+ "dev": true,
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ }
+ },
+ "node_modules/@eslint/plugin-kit": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.2.tgz",
+ "integrity": "sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==",
+ "dev": true,
+ "dependencies": {
+ "@eslint/core": "^1.2.1",
+ "levn": "^0.4.1"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ }
+ },
+ "node_modules/@humanfs/core": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
+ "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
+ "dev": true,
+ "dependencies": {
+ "@humanfs/types": "^0.15.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/node": {
+ "version": "0.16.8",
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
+ "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
+ "dev": true,
+ "dependencies": {
+ "@humanfs/core": "^0.19.2",
+ "@humanfs/types": "^0.15.0",
+ "@humanwhocodes/retry": "^0.4.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/types": {
+ "version": "0.15.0",
+ "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
+ "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/retry": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.18"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/remapping": {
+ "version": "2.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "dev": true
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.31",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
+ "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@tybys/wasm-util": "^0.10.1"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "peerDependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1"
+ }
+ },
+ "node_modules/@oxc-project/types": {
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ }
+ },
+ "node_modules/@rolldown/binding-android-arm64": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-darwin-arm64": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-darwin-x64": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-freebsd-x64": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-x64-musl": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-openharmony-arm64": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
+ "dev": true
+ },
+ "node_modules/@tailwindcss/node": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz",
+ "integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/remapping": "^2.3.5",
+ "enhanced-resolve": "^5.21.0",
+ "jiti": "^2.6.1",
+ "lightningcss": "1.32.0",
+ "magic-string": "^0.30.21",
+ "source-map-js": "^1.2.1",
+ "tailwindcss": "4.3.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz",
+ "integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 20"
+ },
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.3.0",
+ "@tailwindcss/oxide-darwin-arm64": "4.3.0",
+ "@tailwindcss/oxide-darwin-x64": "4.3.0",
+ "@tailwindcss/oxide-freebsd-x64": "4.3.0",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.0",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.0",
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.0",
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.0",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.0",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz",
+ "integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz",
+ "integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz",
+ "integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz",
+ "integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz",
+ "integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz",
+ "integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz",
+ "integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz",
+ "integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz",
+ "integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz",
+ "integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==",
+ "bundleDependencies": [
+ "@napi-rs/wasm-runtime",
+ "@emnapi/core",
+ "@emnapi/runtime",
+ "@tybys/wasm-util",
+ "@emnapi/wasi-threads",
+ "tslib"
+ ],
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.10.0",
+ "@emnapi/runtime": "^1.10.0",
+ "@emnapi/wasi-threads": "^1.2.1",
+ "@napi-rs/wasm-runtime": "^1.1.4",
+ "@tybys/wasm-util": "^0.10.1",
+ "tslib": "^2.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz",
+ "integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz",
+ "integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/typography": {
+ "version": "0.5.19",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
+ "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
+ "dev": true,
+ "dependencies": {
+ "postcss-selector-parser": "6.0.10"
+ },
+ "peerDependencies": {
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
+ }
+ },
+ "node_modules/@tailwindcss/vite": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz",
+ "integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==",
+ "dev": true,
+ "dependencies": {
+ "@tailwindcss/node": "4.3.0",
+ "@tailwindcss/oxide": "4.3.0",
+ "tailwindcss": "4.3.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
+ }
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@types/debug": {
+ "version": "4.1.13",
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
+ "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
+ "dependencies": {
+ "@types/ms": "*"
+ }
+ },
+ "node_modules/@types/esrecurse": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
+ "dev": true
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg=="
+ },
+ "node_modules/@types/estree-jsx": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
+ "dependencies": {
+ "@types/estree": "*"
+ }
+ },
+ "node_modules/@types/hast": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
+ "dependencies": {
+ "@types/unist": "*"
+ }
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
+ "dev": true
+ },
+ "node_modules/@types/katex": {
+ "version": "0.16.8",
+ "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.8.tgz",
+ "integrity": "sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg=="
+ },
+ "node_modules/@types/mdast": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
+ "dependencies": {
+ "@types/unist": "*"
+ }
+ },
+ "node_modules/@types/ms": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA=="
+ },
+ "node_modules/@types/node": {
+ "version": "24.13.1",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.1.tgz",
+ "integrity": "sha512-RSpUJGmvsJ1ZeBehQZFhIdpsz+bIpES0nIQXko4Ybq+N+kX6XvOq3Jo+iJ82FWLdblFq85AsMikd3m35jgezYg==",
+ "dev": true,
+ "dependencies": {
+ "undici-types": "~7.18.0"
+ }
+ },
+ "node_modules/@types/react": {
+ "version": "19.2.17",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
+ "dependencies": {
+ "csstype": "^3.2.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.2.3",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
+ "dev": true,
+ "peerDependencies": {
+ "@types/react": "^19.2.0"
+ }
+ },
+ "node_modules/@types/unist": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="
+ },
+ "node_modules/@typescript-eslint/eslint-plugin": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.1.tgz",
+ "integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.12.2",
+ "@typescript-eslint/scope-manager": "8.60.1",
+ "@typescript-eslint/type-utils": "8.60.1",
+ "@typescript-eslint/utils": "8.60.1",
+ "@typescript-eslint/visitor-keys": "8.60.1",
+ "ignore": "^7.0.5",
+ "natural-compare": "^1.4.0",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "@typescript-eslint/parser": "^8.60.1",
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/@typescript-eslint/parser": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
+ "integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "8.60.1",
+ "@typescript-eslint/types": "8.60.1",
+ "@typescript-eslint/typescript-estree": "8.60.1",
+ "@typescript-eslint/visitor-keys": "8.60.1",
+ "debug": "^4.4.3"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/project-service": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
+ "integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/tsconfig-utils": "^8.60.1",
+ "@typescript-eslint/types": "^8.60.1",
+ "debug": "^4.4.3"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
+ "integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.60.1",
+ "@typescript-eslint/visitor-keys": "8.60.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/tsconfig-utils": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
+ "integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/type-utils": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.1.tgz",
+ "integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.60.1",
+ "@typescript-eslint/typescript-estree": "8.60.1",
+ "@typescript-eslint/utils": "8.60.1",
+ "debug": "^4.4.3",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/types": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
+ "integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
+ "integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/project-service": "8.60.1",
+ "@typescript-eslint/tsconfig-utils": "8.60.1",
+ "@typescript-eslint/types": "8.60.1",
+ "@typescript-eslint/visitor-keys": "8.60.1",
+ "debug": "^4.4.3",
+ "minimatch": "^10.2.2",
+ "semver": "^7.7.3",
+ "tinyglobby": "^0.2.15",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
+ "version": "7.8.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.2.tgz",
+ "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@typescript-eslint/utils": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.1.tgz",
+ "integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.9.1",
+ "@typescript-eslint/scope-manager": "8.60.1",
+ "@typescript-eslint/types": "8.60.1",
+ "@typescript-eslint/typescript-estree": "8.60.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
+ "integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.60.1",
+ "eslint-visitor-keys": "^5.0.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@ungap/structured-clone": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz",
+ "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ=="
+ },
+ "node_modules/@vitejs/plugin-react": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
+ "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
+ "dev": true,
+ "dependencies": {
+ "@rolldown/pluginutils": "^1.0.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "peerDependencies": {
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
+ "babel-plugin-react-compiler": "^1.0.0",
+ "vite": "^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@rolldown/plugin-babel": {
+ "optional": true
+ },
+ "babel-plugin-react-compiler": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/acorn": {
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dependencies": {
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.15.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
+ "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
+ "dev": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
+ "node_modules/axios": {
+ "version": "1.17.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.17.0.tgz",
+ "integrity": "sha512-J8SwNxprqqpbfenehxWYXE7CW+wM1BB4w3+N+g+/Wx40xM4rsLrfPmHHxSWIxJLYDgSY/HqlFPIYb2/S3rxafw==",
+ "dependencies": {
+ "follow-redirects": "^1.16.0",
+ "form-data": "^4.0.5",
+ "https-proxy-agent": "^5.0.1",
+ "proxy-from-env": "^2.1.0"
+ }
+ },
+ "node_modules/bail": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
+ "dev": true,
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.10.34",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.34.tgz",
+ "integrity": "sha512-IMDedajPifLnHNY0X9n8hKxRTQ6/eTHwr5bDo04WnuqxyKw6LYtQywCuuqPZwhl3aBXMvQpJov42GLCwRRdQzw==",
+ "dev": true,
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "5.0.6",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.28.2",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
+ "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "baseline-browser-mapping": "^2.10.12",
+ "caniuse-lite": "^1.0.30001782",
+ "electron-to-chromium": "^1.5.328",
+ "node-releases": "^2.0.36",
+ "update-browserslist-db": "^1.2.3"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001797",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001797.tgz",
+ "integrity": "sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ]
+ },
+ "node_modules/ccount": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-html4": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-legacy": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-reference-invalid": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/comma-separated-tokens": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/commander": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true,
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ=="
+ },
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decode-named-character-reference": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
+ "dependencies": {
+ "character-entities": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/devlop": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
+ "dependencies": {
+ "dequal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.368",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.368.tgz",
+ "integrity": "sha512-7RckJJK4uESJF9PxvfMWd3TGqIiieUTG4HxnKaKuIpGbcr+r2ZEB3g2gAhCP3Fqm42vJSzLfgab9eva/C4/XVw==",
+ "dev": true
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.23.0.tgz",
+ "integrity": "sha512-yJN/BOOLxcOW2aQgeif9mSnaUB8KtvmMMp56oA1kx1CRfBKbhZm2pJ+NBY+3eOboHxix8lfjWpHE0Ei5U8RbSA==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.3.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/entities": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "10.4.1",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.1.tgz",
+ "integrity": "sha512-AyIKhnOBuOAdueD7RB3xB+YeAWScb9jHsJBgH2Hcde8InP5JYhqrRR6iTMHyTEwgENK54Cp44e4v8BwNhsuHuw==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.8.0",
+ "@eslint-community/regexpp": "^4.12.2",
+ "@eslint/config-array": "^0.23.5",
+ "@eslint/config-helpers": "^0.6.0",
+ "@eslint/core": "^1.2.1",
+ "@eslint/plugin-kit": "^0.7.2",
+ "@humanfs/node": "^0.16.6",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@humanwhocodes/retry": "^0.4.2",
+ "@types/estree": "^1.0.6",
+ "ajv": "^6.14.0",
+ "cross-spawn": "^7.0.6",
+ "debug": "^4.3.2",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^9.1.2",
+ "eslint-visitor-keys": "^5.0.1",
+ "espree": "^11.2.0",
+ "esquery": "^1.7.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^8.0.0",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "minimatch": "^10.2.4",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ },
+ "peerDependencies": {
+ "jiti": "*"
+ },
+ "peerDependenciesMeta": {
+ "jiti": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
+ "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.24.4",
+ "@babel/parser": "^7.24.4",
+ "hermes-parser": "^0.25.1",
+ "zod": "^3.25.0 || ^4.0.0",
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-react-refresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
+ "dev": true,
+ "peerDependencies": {
+ "eslint": "^9 || ^10"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "9.1.2",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/esrecurse": "^4.3.1",
+ "@types/estree": "^1.0.8",
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
+ "dev": true,
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree": {
+ "version": "11.2.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
+ "dev": true,
+ "dependencies": {
+ "acorn": "^8.16.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^5.0.1"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estree-util-is-identifier-name": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
+ },
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/file-entry-cache": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
+ "dev": true,
+ "dependencies": {
+ "flat-cache": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
+ "dev": true,
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.4"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
+ "dev": true
+ },
+ "node_modules/follow-redirects": {
+ "version": "1.16.0",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
+ "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/form-data": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/framer-motion": {
+ "version": "12.40.0",
+ "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.40.0.tgz",
+ "integrity": "sha512-uaBd3qC1v3KQqBEjwTUd183K6PbS+j0yR9w9VmEOLWA/tnUcSn8Xa3uck7t4dgpDoUss8xQTcj8W2L07lrnLFg==",
+ "dependencies": {
+ "motion-dom": "^12.40.0",
+ "motion-utils": "^12.39.0",
+ "tslib": "^2.4.0"
+ },
+ "peerDependencies": {
+ "@emotion/is-prop-valid": "*",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/is-prop-valid": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/globals": {
+ "version": "17.6.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
+ "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
+ "dev": true,
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hast-util-from-dom": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz",
+ "integrity": "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hastscript": "^9.0.0",
+ "web-namespaces": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-from-html": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
+ "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "devlop": "^1.1.0",
+ "hast-util-from-parse5": "^8.0.0",
+ "parse5": "^7.0.0",
+ "vfile": "^6.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-from-html-isomorphic": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz",
+ "integrity": "sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-from-dom": "^5.0.0",
+ "hast-util-from-html": "^2.0.0",
+ "unist-util-remove-position": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-from-parse5": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
+ "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "devlop": "^1.0.0",
+ "hastscript": "^9.0.0",
+ "property-information": "^7.0.0",
+ "vfile": "^6.0.0",
+ "vfile-location": "^5.0.0",
+ "web-namespaces": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-is-element": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
+ "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
+ "dependencies": {
+ "@types/hast": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-parse-selector": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
+ "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
+ "dependencies": {
+ "@types/hast": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-js": "^1.0.0",
+ "unist-util-position": "^5.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-to-text": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
+ "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "hast-util-is-element": "^3.0.0",
+ "unist-util-find-after": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-whitespace": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
+ "dependencies": {
+ "@types/hast": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hastscript": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
+ "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "hast-util-parse-selector": "^4.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hermes-estree": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
+ "dev": true
+ },
+ "node_modules/hermes-parser": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
+ "dev": true,
+ "dependencies": {
+ "hermes-estree": "0.25.1"
+ }
+ },
+ "node_modules/html-url-attributes": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
+ "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
+ "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA=="
+ },
+ "node_modules/is-alphabetical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-alphanumerical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-hexadecimal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-plain-obj": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true
+ },
+ "node_modules/jiti": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
+ "dev": true,
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "dev": true,
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/katex": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.17.0.tgz",
+ "integrity": "sha512-Vdw0ATsQ9V+LuegM/BTwQqV/6cTl5lbGcIrU+BCgLxyf6bo38ybOr372tuSIxir3CN720flu1meYR6XzNMwQnw==",
+ "funding": [
+ "https://opencollective.com/katex",
+ "https://github.com/sponsors/katex"
+ ],
+ "dependencies": {
+ "commander": "^8.3.0"
+ },
+ "bin": {
+ "katex": "cli.js"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/lightningcss": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
+ "dev": true,
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-android-arm64": "1.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
+ }
+ },
+ "node_modules/lightningcss-android-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/longest-streak": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/lucide-react": {
+ "version": "1.17.0",
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.17.0.tgz",
+ "integrity": "sha512-9FA9evdox/JQL5PT57fdA1x/yg8T7knJ98+zjTL3UfKza6pflQUUh3XtaQIHKvnsJw1lmsEyHVlt5jchYxOQ5w==",
+ "peerDependencies": {
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.21",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/mdast-util-from-markdown": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-math": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-3.0.0.tgz",
+ "integrity": "sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.1.0",
+ "unist-util-remove-position": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-expression": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-jsx": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdxjs-esm": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-phrasing": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast": {
+ "version": "13.2.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@ungap/structured-clone": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "trim-lines": "^3.0.0",
+ "unist-util-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-core-commonmark": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-extension-math": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
+ "integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
+ "dependencies": {
+ "@types/katex": "^0.16.0",
+ "devlop": "^1.0.0",
+ "katex": "^0.16.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-math/node_modules/katex": {
+ "version": "0.16.47",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.47.tgz",
+ "integrity": "sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==",
+ "funding": [
+ "https://opencollective.com/katex",
+ "https://github.com/sponsors/katex"
+ ],
+ "dependencies": {
+ "commander": "^8.3.0"
+ },
+ "bin": {
+ "katex": "cli.js"
+ }
+ },
+ "node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-whitespace": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-character": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-resolve-all": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-sanitize-uri": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-subtokenize": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-symbol": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-types": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "10.2.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^5.0.5"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/motion-dom": {
+ "version": "12.40.0",
+ "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.40.0.tgz",
+ "integrity": "sha512-HxU3ZaBwNPVQUBQf1xxgq+7JrPNZvjLVxgbpEZL7RrWJnsxOf0/OM+yrHG9ogLQ31Do/r57Oz2gQWPK+6q62mg==",
+ "dependencies": {
+ "motion-utils": "^12.39.0"
+ }
+ },
+ "node_modules/motion-utils": {
+ "version": "12.39.0",
+ "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.39.0.tgz",
+ "integrity": "sha512-8nadJAJjTtqRkmRF36FoJTrywK9nnFmnPwnSMyxaOCU7GDjN9RTMJIxx9De8ErM+vpPhMccr/6fo5WciyQLnMQ=="
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.12",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.47",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.47.tgz",
+ "integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
+ "dev": true,
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse-entities": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "character-entities-legacy": "^3.0.0",
+ "character-reference-invalid": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0",
+ "is-hexadecimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/parse-entities/node_modules/@types/unist": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="
+ },
+ "node_modules/parse5": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
+ "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
+ "dependencies": {
+ "entities": "^6.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "dev": true
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.12",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "6.0.10",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
+ "dev": true,
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/property-information": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz",
+ "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/proxy-from-env": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
+ "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/react": {
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
+ "dependencies": {
+ "scheduler": "^0.27.0"
+ },
+ "peerDependencies": {
+ "react": "^19.2.7"
+ }
+ },
+ "node_modules/react-markdown": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
+ "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "hast-util-to-jsx-runtime": "^2.0.0",
+ "html-url-attributes": "^3.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.0.0",
+ "unified": "^11.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "@types/react": ">=18",
+ "react": ">=18"
+ }
+ },
+ "node_modules/rehype-katex": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/rehype-katex/-/rehype-katex-7.0.1.tgz",
+ "integrity": "sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/katex": "^0.16.0",
+ "hast-util-from-html-isomorphic": "^2.0.0",
+ "hast-util-to-text": "^4.0.0",
+ "katex": "^0.16.0",
+ "unist-util-visit-parents": "^6.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-katex/node_modules/katex": {
+ "version": "0.16.47",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.47.tgz",
+ "integrity": "sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==",
+ "funding": [
+ "https://opencollective.com/katex",
+ "https://github.com/sponsors/katex"
+ ],
+ "dependencies": {
+ "commander": "^8.3.0"
+ },
+ "bin": {
+ "katex": "cli.js"
+ }
+ },
+ "node_modules/remark-math": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-6.0.0.tgz",
+ "integrity": "sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-math": "^3.0.0",
+ "micromark-extension-math": "^3.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-parse": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-rehype": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rolldown": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
+ "dev": true,
+ "dependencies": {
+ "@oxc-project/types": "=0.133.0",
+ "@rolldown/pluginutils": "^1.0.0"
+ },
+ "bin": {
+ "rolldown": "bin/cli.mjs"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "optionalDependencies": {
+ "@rolldown/binding-android-arm64": "1.0.3",
+ "@rolldown/binding-darwin-arm64": "1.0.3",
+ "@rolldown/binding-darwin-x64": "1.0.3",
+ "@rolldown/binding-freebsd-x64": "1.0.3",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="
+ },
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/space-separated-tokens": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/stringify-entities": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
+ "dependencies": {
+ "character-entities-html4": "^2.0.0",
+ "character-entities-legacy": "^3.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/style-to-js": {
+ "version": "1.1.21",
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
+ "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
+ "dependencies": {
+ "style-to-object": "1.0.14"
+ }
+ },
+ "node_modules/style-to-object": {
+ "version": "1.0.14",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
+ "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
+ "dependencies": {
+ "inline-style-parser": "0.2.7"
+ }
+ },
+ "node_modules/tailwind-merge": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.6.0.tgz",
+ "integrity": "sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/dcastil"
+ }
+ },
+ "node_modules/tailwindcss": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz",
+ "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==",
+ "dev": true
+ },
+ "node_modules/tapable": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
+ "dev": true,
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/trim-lines": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/trough": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/ts-api-utils": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz",
+ "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.12"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
+ "dev": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/typescript-eslint": {
+ "version": "8.60.1",
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.1.tgz",
+ "integrity": "sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/eslint-plugin": "8.60.1",
+ "@typescript-eslint/parser": "8.60.1",
+ "@typescript-eslint/typescript-estree": "8.60.1",
+ "@typescript-eslint/utils": "8.60.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "7.18.2",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
+ "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
+ "dev": true
+ },
+ "node_modules/unified": {
+ "version": "11.0.5",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "bail": "^2.0.0",
+ "devlop": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-find-after": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
+ "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-is": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-position": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove-position": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
+ "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-visit": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-stringify-position": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit-parents": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true
+ },
+ "node_modules/vfile": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-location": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
+ "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-message": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vite": {
+ "version": "8.0.16",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
+ "dev": true,
+ "dependencies": {
+ "lightningcss": "^1.32.0",
+ "picomatch": "^4.0.4",
+ "postcss": "^8.5.15",
+ "rolldown": "1.0.3",
+ "tinyglobby": "^0.2.17"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^20.19.0 || >=22.12.0",
+ "@vitejs/devtools": "^0.1.18",
+ "esbuild": "^0.27.0 || ^0.28.0",
+ "jiti": ">=1.21.0",
+ "less": "^4.0.0",
+ "sass": "^1.70.0",
+ "sass-embedded": "^1.70.0",
+ "stylus": ">=0.54.8",
+ "sugarss": "^5.0.0",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "@vitejs/devtools": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/web-namespaces": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
+ "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/zod": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ },
+ "node_modules/zod-validation-error": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "zod": "^3.25.0 || ^4.0.0"
+ }
+ },
+ "node_modules/zwitch": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ }
+ }
+}
diff --git a/dashboard/package.json b/dashboard/package.json
new file mode 100644
index 0000000..dc03630
--- /dev/null
+++ b/dashboard/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "dashboard",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc -b && vite build",
+ "lint": "eslint .",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "axios": "^1.17.0",
+ "clsx": "^2.1.1",
+ "framer-motion": "^12.40.0",
+ "katex": "^0.17.0",
+ "lucide-react": "^1.17.0",
+ "react": "^19.2.6",
+ "react-dom": "^19.2.6",
+ "react-markdown": "^10.1.0",
+ "rehype-katex": "^7.0.1",
+ "remark-math": "^6.0.0",
+ "tailwind-merge": "^3.6.0"
+ },
+ "devDependencies": {
+ "@eslint/js": "^10.0.1",
+ "@tailwindcss/typography": "^0.5.19",
+ "@tailwindcss/vite": "^4.3.0",
+ "@types/node": "^24.12.3",
+ "@types/react": "^19.2.14",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^6.0.1",
+ "eslint": "^10.3.0",
+ "eslint-plugin-react-hooks": "^7.1.1",
+ "eslint-plugin-react-refresh": "^0.5.2",
+ "globals": "^17.6.0",
+ "tailwindcss": "^4.3.0",
+ "typescript": "~6.0.2",
+ "typescript-eslint": "^8.59.2",
+ "vite": "^8.0.12"
+ }
+}
diff --git a/dashboard/public/favicon.svg b/dashboard/public/favicon.svg
new file mode 100644
index 0000000..6893eb1
--- /dev/null
+++ b/dashboard/public/favicon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dashboard/public/icons.svg b/dashboard/public/icons.svg
new file mode 100644
index 0000000..e952219
--- /dev/null
+++ b/dashboard/public/icons.svg
@@ -0,0 +1,24 @@
+
diff --git a/dashboard/src/App.css b/dashboard/src/App.css
new file mode 100644
index 0000000..f90339d
--- /dev/null
+++ b/dashboard/src/App.css
@@ -0,0 +1,184 @@
+.counter {
+ font-size: 16px;
+ padding: 5px 10px;
+ border-radius: 5px;
+ color: var(--accent);
+ background: var(--accent-bg);
+ border: 2px solid transparent;
+ transition: border-color 0.3s;
+ margin-bottom: 24px;
+
+ &:hover {
+ border-color: var(--accent-border);
+ }
+ &:focus-visible {
+ outline: 2px solid var(--accent);
+ outline-offset: 2px;
+ }
+}
+
+.hero {
+ position: relative;
+
+ .base,
+ .framework,
+ .vite {
+ inset-inline: 0;
+ margin: 0 auto;
+ }
+
+ .base {
+ width: 170px;
+ position: relative;
+ z-index: 0;
+ }
+
+ .framework,
+ .vite {
+ position: absolute;
+ }
+
+ .framework {
+ z-index: 1;
+ top: 34px;
+ height: 28px;
+ transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
+ scale(1.4);
+ }
+
+ .vite {
+ z-index: 0;
+ top: 107px;
+ height: 26px;
+ width: auto;
+ transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
+ scale(0.8);
+ }
+}
+
+#center {
+ display: flex;
+ flex-direction: column;
+ gap: 25px;
+ place-content: center;
+ place-items: center;
+ flex-grow: 1;
+
+ @media (max-width: 1024px) {
+ padding: 32px 20px 24px;
+ gap: 18px;
+ }
+}
+
+#next-steps {
+ display: flex;
+ border-top: 1px solid var(--border);
+ text-align: left;
+
+ & > div {
+ flex: 1 1 0;
+ padding: 32px;
+ @media (max-width: 1024px) {
+ padding: 24px 20px;
+ }
+ }
+
+ .icon {
+ margin-bottom: 16px;
+ width: 22px;
+ height: 22px;
+ }
+
+ @media (max-width: 1024px) {
+ flex-direction: column;
+ text-align: center;
+ }
+}
+
+#docs {
+ border-right: 1px solid var(--border);
+
+ @media (max-width: 1024px) {
+ border-right: none;
+ border-bottom: 1px solid var(--border);
+ }
+}
+
+#next-steps ul {
+ list-style: none;
+ padding: 0;
+ display: flex;
+ gap: 8px;
+ margin: 32px 0 0;
+
+ .logo {
+ height: 18px;
+ }
+
+ a {
+ color: var(--text-h);
+ font-size: 16px;
+ border-radius: 6px;
+ background: var(--social-bg);
+ display: flex;
+ padding: 6px 12px;
+ align-items: center;
+ gap: 8px;
+ text-decoration: none;
+ transition: box-shadow 0.3s;
+
+ &:hover {
+ box-shadow: var(--shadow);
+ }
+ .button-icon {
+ height: 18px;
+ width: 18px;
+ }
+ }
+
+ @media (max-width: 1024px) {
+ margin-top: 20px;
+ flex-wrap: wrap;
+ justify-content: center;
+
+ li {
+ flex: 1 1 calc(50% - 8px);
+ }
+
+ a {
+ width: 100%;
+ justify-content: center;
+ box-sizing: border-box;
+ }
+ }
+}
+
+#spacer {
+ height: 88px;
+ border-top: 1px solid var(--border);
+ @media (max-width: 1024px) {
+ height: 48px;
+ }
+}
+
+.ticks {
+ position: relative;
+ width: 100%;
+
+ &::before,
+ &::after {
+ content: '';
+ position: absolute;
+ top: -4.5px;
+ border: 5px solid transparent;
+ }
+
+ &::before {
+ left: 0;
+ border-left-color: var(--border);
+ }
+ &::after {
+ right: 0;
+ border-right-color: var(--border);
+ }
+}
diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx
new file mode 100644
index 0000000..08118d0
--- /dev/null
+++ b/dashboard/src/App.tsx
@@ -0,0 +1,377 @@
+// dashboard/src/App.tsx
+import { useState, useEffect, useCallback } from 'react';
+import axios from 'axios';
+import { Sidebar } from './components/layout/Sidebar';
+import { SearchPanel } from './features/search/SearchPanel';
+import { LibraryPanel } from './features/library/LibraryPanel';
+import { ReaderPanel } from './features/reader/ReaderPanel';
+import { CitationPanel } from './features/citation/CitationPanel';
+import { SettingsPanel } from './features/settings/SettingsPanel';
+import type { StandardPaper, CitationNetwork, NoteRecord } from './types';
+
+export default function App() {
+ const [activeTab, setActiveTab] = useState<'search' | 'library' | 'reader' | 'citation' | 'settings'>('search');
+
+ // 共享数据状态
+ const [library, setLibrary] = useState([]);
+ const [selectedPaper, setSelectedPaper] = useState(null);
+
+ // 检索页状态
+ const [searchQuery, setSearchQuery] = useState('');
+ const [searchSource, setSearchSource] = useState<'all' | 'ads' | 'arxiv'>('all');
+ const [searchResults, setSearchResults] = useState([]);
+ const [searching, setSearching] = useState(false);
+ const [exportingList, setExportingList] = useState([]);
+ const [bibtexContent, setBibtexContent] = useState(null);
+ const [exporting, setExporting] = useState(false);
+
+ // 读者页状态
+ const [englishText, setEnglishText] = useState('');
+ const [chineseText, setChineseText] = useState('');
+ const [parsing, setParsing] = useState(false);
+ const [translating, setTranslating] = useState(false);
+
+ // 引用星系数据状态
+ const [citationNetwork, setCitationNetwork] = useState(null);
+ const [loadingCitations, setLoadingCitations] = useState(false);
+ const [citationHistory, setCitationHistory] = useState([]); // 多跳历史
+
+ // 笔记系统状态
+ const [notes, setNotes] = useState([]);
+ const [showNotesPanel, setShowNotesPanel] = useState(false);
+ const [newNoteText, setNewNoteText] = useState('');
+ const [newNoteColor, setNewNoteColor] = useState('yellow');
+ const [selectedParagraphIdx, setSelectedParagraphIdx] = useState(null);
+ const [selectedText, setSelectedText] = useState('');
+
+ // 下载进度状态
+ const [downloadingBibcodes, setDownloadingBibcodes] = useState>({});
+
+ // 1. 初始化时加载本地文献
+ useEffect(() => {
+ fetchLibrary();
+ }, []);
+
+ const fetchLibrary = async () => {
+ try {
+ const res = await axios.get('/api/library');
+ setLibrary(res.data);
+ } catch (e) {
+ console.error('加载本地文献库失败', e);
+ }
+ };
+
+ // 2. 检索文献
+ const handleSearch = async (e: React.FormEvent) => {
+ e.preventDefault();
+ if (!searchQuery.trim()) return;
+ setSearching(true);
+ setBibtexContent(null);
+ try {
+ const res = await axios.get('/api/search', {
+ params: { q: searchQuery, source: searchSource, rows: 15 }
+ });
+ setSearchResults(res.data);
+ } catch (e) {
+ console.error('检索文献失败', e);
+ alert('检索失败,请确认后端连接及 API 密钥配置。');
+ } finally {
+ setSearching(false);
+ }
+ };
+
+ // 3. 触发文献双格式下载
+ const handleDownload = async (bibcode: string, force = false) => {
+ setDownloadingBibcodes(prev => ({ ...prev, [bibcode]: true }));
+ try {
+ const res = await axios.post('/api/download', { bibcode, force });
+ // 更新库及检索列表中的状态
+ setSearchResults(prev => prev.map(p => p.bibcode === bibcode ? res.data : p));
+ setLibrary(prev => {
+ if (prev.some(p => p.bibcode === bibcode)) {
+ return prev.map(p => p.bibcode === bibcode ? res.data : p);
+ } else {
+ return [res.data, ...prev];
+ }
+ });
+ if (selectedPaper?.bibcode === bibcode) {
+ setSelectedPaper(res.data);
+ }
+ } catch (e) {
+ console.error('下载文献失败', e);
+ alert('文献下载失败,请检查 ADS 网络限制与网络代理!');
+ } finally {
+ setDownloadingBibcodes(prev => ({ ...prev, [bibcode]: false }));
+ }
+ };
+
+ // 4. 文献解析成 Markdown (优先 HTML, 其次 PDF MinerU)
+ const handleParse = async (bibcode: string, force = false) => {
+ setParsing(true);
+ try {
+ const res = await axios.post<{ markdown: string }>('/api/parse', { bibcode, force });
+ setEnglishText(res.data.markdown);
+
+ // 更新文献状态
+ setLibrary(prev => prev.map(p => p.bibcode === bibcode ? { ...p, has_markdown: true } : p));
+ if (selectedPaper?.bibcode === bibcode) {
+ setSelectedPaper(prev => prev ? { ...prev, has_markdown: true } : null);
+ }
+ } catch (e) {
+ console.error('文献解析失败', e);
+ alert('文献排版解析失败,请检查是否已完成 HTML/PDF 下载,并配置了 MinerU API 节点。');
+ } finally {
+ setParsing(false);
+ }
+ };
+
+ // 5. 对比翻译文本 (带天文学术语修正)
+ const handleTranslate = async (bibcode: string, force = false) => {
+ setTranslating(true);
+ try {
+ const res = await axios.post<{ translation: string }>('/api/translate', { bibcode, force });
+ setChineseText(res.data.translation);
+
+ setLibrary(prev => prev.map(p => p.bibcode === bibcode ? { ...p, has_translation: true } : p));
+ if (selectedPaper?.bibcode === bibcode) {
+ setSelectedPaper(prev => prev ? { ...prev, has_translation: true } : null);
+ }
+ } catch (e) {
+ console.error('文献翻译失败', e);
+ alert('翻译失败,请检查 .env 中的大模型 API 密钥与端点配置。');
+ } finally {
+ setTranslating(false);
+ }
+ };
+
+ // 6. 加载文献引用关系网络
+ const loadCitations = useCallback(async (bibcode: string, reset = false) => {
+ setLoadingCitations(true);
+ try {
+ const res = await axios.get('/api/citations', {
+ params: { bibcode }
+ });
+ setCitationNetwork(res.data);
+ setCitationHistory(prev => {
+ if (reset) {
+ return [res.data];
+ }
+ if (prev.some(net => net.bibcode === res.data.bibcode)) {
+ return prev;
+ }
+ return [...prev, res.data];
+ });
+ } catch (e) {
+ console.error('加载引用拓扑失败', e);
+ } finally {
+ setLoadingCitations(false);
+ }
+ }, []);
+
+ // 7. 进入阅读器
+ const openReader = async (paper: StandardPaper) => {
+ setSelectedPaper(paper);
+ setEnglishText('');
+ setChineseText('');
+ setNotes([]);
+ setShowNotesPanel(false);
+ setActiveTab('reader');
+
+ // 获取详情 (包含已有原文及翻译)
+ try {
+ const res = await axios.get<{ paper: StandardPaper, english_content?: string, translation_content?: string }>('/api/paper', {
+ params: { bibcode: paper.bibcode }
+ });
+ if (res.data.english_content) {
+ setEnglishText(res.data.english_content);
+ }
+ if (res.data.translation_content) {
+ setChineseText(res.data.translation_content);
+ }
+ } catch (e) {
+ console.error('加载文献详情失败', e);
+ }
+
+ // 加载该文献的所有笔记
+ try {
+ const nRes = await axios.get('/api/notes', { params: { bibcode: paper.bibcode } });
+ setNotes(nRes.data);
+ } catch (e) {
+ console.error('加载笔记失败', e);
+ }
+ };
+
+ // 8. 批量导出 BibTeX
+ const handleExportBibtex = async () => {
+ if (exportingList.length === 0) return;
+ setExporting(true);
+ try {
+ const res = await axios.post<{ bibtex: string }>('/api/export', { bibcodes: exportingList });
+ setBibtexContent(res.data.bibtex);
+ } catch (e) {
+ console.error('导出 BibTeX 失败', e);
+ alert('导出 BibTeX 失败,请检查 ADS Token。');
+ } finally {
+ setExporting(false);
+ }
+ };
+
+ // 批量选择引文
+ const toggleExportItem = (bibcode: string) => {
+ setExportingList(prev =>
+ prev.includes(bibcode) ? prev.filter(b => b !== bibcode) : [...prev, bibcode]
+ );
+ };
+
+ // 笔记相关操作
+ const handleCreateNote = async () => {
+ if (!selectedPaper || selectedParagraphIdx === null || !newNoteText.trim()) return;
+ try {
+ const res = await axios.post('/api/notes', {
+ bibcode: selectedPaper.bibcode,
+ paragraph_index: selectedParagraphIdx,
+ note_text: newNoteText.trim(),
+ highlight_color: newNoteColor,
+ selected_text: selectedText,
+ });
+ setNotes(prev => [...prev, res.data]);
+ setNewNoteText('');
+ setSelectedParagraphIdx(null);
+ setSelectedText('');
+ } catch (e) {
+ console.error('保存笔记失败', e);
+ }
+ };
+
+ const handleDeleteNote = async (id: number) => {
+ try {
+ await axios.delete('/api/notes', { params: { id } });
+ setNotes(prev => prev.filter(n => n.id !== id));
+ } catch (e) {
+ console.error('删除笔记失败', e);
+ }
+ };
+
+ // 选中文本时弹出笔记添加面板
+ const handleTextSelection = (paragraphIdx: number) => {
+ const sel = window.getSelection();
+ if (sel && sel.toString().trim().length > 3) {
+ setSelectedText(sel.toString().trim());
+ setSelectedParagraphIdx(paragraphIdx);
+ setShowNotesPanel(true);
+ }
+ };
+
+ return (
+
+
+ {/* 炫酷淡雅背景装饰 */}
+
+
+ {/* 导航左侧栏 */}
+
+
+ {/* 主工作区 */}
+
+ {/* 顶部状态条 */}
+
+
+ {/* 选项卡容器 */}
+
+ {activeTab === 'search' && (
+
+ )}
+
+ {activeTab === 'library' && (
+
+ )}
+
+ {activeTab === 'reader' && selectedPaper && (
+
+ )}
+
+ {activeTab === 'citation' && (
+
+ )}
+
+ {activeTab === 'settings' && (
+
+ )}
+
+
+
+ );
+}
diff --git a/dashboard/src/assets/hero.png b/dashboard/src/assets/hero.png
new file mode 100644
index 0000000..02251f4
Binary files /dev/null and b/dashboard/src/assets/hero.png differ
diff --git a/dashboard/src/assets/react.svg b/dashboard/src/assets/react.svg
new file mode 100644
index 0000000..6c87de9
--- /dev/null
+++ b/dashboard/src/assets/react.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dashboard/src/assets/vite.svg b/dashboard/src/assets/vite.svg
new file mode 100644
index 0000000..5101b67
--- /dev/null
+++ b/dashboard/src/assets/vite.svg
@@ -0,0 +1 @@
+
diff --git a/dashboard/src/components/CitationGalaxyCanvas.tsx b/dashboard/src/components/CitationGalaxyCanvas.tsx
new file mode 100644
index 0000000..886065a
--- /dev/null
+++ b/dashboard/src/components/CitationGalaxyCanvas.tsx
@@ -0,0 +1,272 @@
+// dashboard/src/components/CitationGalaxyCanvas.tsx
+import { useEffect, useRef } from 'react';
+import type { CitationNetwork } from '../types';
+
+interface CanvasProps {
+ networks: CitationNetwork[];
+ activeNetwork: CitationNetwork;
+ onNodeClick: (bibcode: string) => void;
+}
+
+interface Node {
+ id: string;
+ label: string;
+ x: number;
+ y: number;
+ vx: number;
+ vy: number;
+ radius: number;
+ color: string;
+ type: 'center' | 'reference' | 'citation';
+}
+
+interface Link {
+ source: string;
+ target: string;
+}
+
+export function CitationGalaxyCanvas({ networks, activeNetwork, onNodeClick }: CanvasProps) {
+ const canvasRef = useRef(null);
+
+ useEffect(() => {
+ const canvas = canvasRef.current;
+ if (!canvas) return;
+ const ctx = canvas.getContext('2d');
+ if (!ctx) return;
+
+ // 适配高清屏幕像素比
+ const dpr = window.devicePixelRatio || 1;
+ const rect = canvas.getBoundingClientRect();
+ canvas.width = rect.width * dpr;
+ canvas.height = rect.height * dpr;
+ ctx.scale(dpr, dpr);
+
+ // 合并所有 networks 的节点,去重,最多 50 个
+ const MAX_NODES = 50;
+ const allIds = new Set();
+ const nodes: Node[] = [];
+ const links: Link[] = [];
+
+ networks.forEach((net, netIdx) => {
+ const isActive = net.bibcode === activeNetwork.bibcode;
+ // 添加中心节点
+ if (!allIds.has(net.bibcode) && nodes.length < MAX_NODES) {
+ allIds.add(net.bibcode);
+ nodes.push({
+ id: net.bibcode,
+ label: net.bibcode,
+ x: rect.width / 2 + (netIdx === 0 ? 0 : (Math.random() - 0.5) * 200),
+ y: rect.height / 2 + (netIdx === 0 ? 0 : (Math.random() - 0.5) * 200),
+ vx: 0,
+ vy: 0,
+ radius: isActive ? 24 : 16,
+ color: isActive ? '#a855f7' : '#6366f1',
+ type: 'center',
+ });
+ }
+
+ // 添加参考文献节点
+ net.references.forEach((ref, idx) => {
+ if (nodes.length >= MAX_NODES) return;
+ if (!allIds.has(ref)) {
+ allIds.add(ref);
+ const angle = (idx / Math.max(1, net.references.length)) * Math.PI * 2;
+ const dist = 140 + Math.random() * 30;
+ const centerNode = nodes.find(n => n.id === net.bibcode);
+ nodes.push({
+ id: ref,
+ label: ref,
+ x: (centerNode?.x ?? rect.width / 2) + Math.cos(angle) * dist,
+ y: (centerNode?.y ?? rect.height / 2) + Math.sin(angle) * dist,
+ vx: 0,
+ vy: 0,
+ radius: 12,
+ color: '#d97706',
+ type: 'reference',
+ });
+ }
+ if (allIds.has(ref)) {
+ links.push({ source: ref, target: net.bibcode });
+ }
+ });
+
+ // 添加被引文献节点
+ net.citations.forEach((cit, idx) => {
+ if (nodes.length >= MAX_NODES) return;
+ if (!allIds.has(cit)) {
+ allIds.add(cit);
+ const angle = (idx / Math.max(1, net.citations.length)) * Math.PI * 2 + Math.PI;
+ const dist = 160 + Math.random() * 40;
+ const centerNode = nodes.find(n => n.id === net.bibcode);
+ nodes.push({
+ id: cit,
+ label: cit,
+ x: (centerNode?.x ?? rect.width / 2) + Math.cos(angle) * dist,
+ y: (centerNode?.y ?? rect.height / 2) + Math.sin(angle) * dist,
+ vx: 0,
+ vy: 0,
+ radius: 12,
+ color: '#4f46e5',
+ type: 'citation',
+ });
+ }
+ if (allIds.has(cit)) {
+ links.push({ source: net.bibcode, target: cit });
+ }
+ });
+ });
+
+ let animationFrameId: number;
+ let hoveredNode: Node | null = null;
+
+ // 经典力导向算法迭代
+ const updatePhysics = () => {
+ // 1. 斥力:任何两个节点之间均产生反向推力
+ for (let i = 0; i < nodes.length; i++) {
+ for (let j = i + 1; j < nodes.length; j++) {
+ let dx = nodes[j].x - nodes[i].x;
+ let dy = nodes[j].y - nodes[i].y;
+ let dist = Math.sqrt(dx * dx + dy * dy) || 1;
+ let minDist = nodes[i].radius + nodes[j].radius + 50;
+ if (dist < minDist) {
+ let force = (minDist - dist) * 0.08;
+ let fx = (dx / dist) * force;
+ let fy = (dy / dist) * force;
+
+ // 节点不强行推动中心大节点
+ if (nodes[i].type !== 'center' || nodes[i].id !== activeNetwork.bibcode) {
+ nodes[i].vx -= fx;
+ nodes[i].vy -= fy;
+ }
+ if (nodes[j].type !== 'center' || nodes[j].id !== activeNetwork.bibcode) {
+ nodes[j].vx += fx;
+ nodes[j].vy += fy;
+ }
+ }
+ }
+ }
+
+ // 2. 引力与向心力:被连线连接的节点之间产生向中心靠拢力
+ links.forEach(link => {
+ const sourceNode = nodes.find(n => n.id === link.source);
+ const targetNode = nodes.find(n => n.id === link.target);
+ if (sourceNode && targetNode) {
+ let dx = targetNode.x - sourceNode.x;
+ let dy = targetNode.y - sourceNode.y;
+ let dist = Math.sqrt(dx * dx + dy * dy) || 1;
+ let force = dist * 0.003; // 弹性系数
+ let fx = (dx / dist) * force;
+ let fy = (dy / dist) * force;
+
+ if (sourceNode.type !== 'center' || sourceNode.id !== activeNetwork.bibcode) {
+ sourceNode.vx += fx;
+ sourceNode.vy += fy;
+ }
+ if (targetNode.type !== 'center' || targetNode.id !== activeNetwork.bibcode) {
+ targetNode.vx -= fx;
+ targetNode.vy -= fy;
+ }
+ }
+ });
+
+ // 3. 应用阻尼阻力,限制极限加速
+ nodes.forEach(node => {
+ if (node.id !== activeNetwork.bibcode) {
+ node.x += node.vx;
+ node.y += node.vy;
+ node.vx *= 0.85; // 阻尼
+ node.vy *= 0.85;
+ }
+ });
+ };
+
+ // 画布渲染渲染循环
+ const render = () => {
+ updatePhysics();
+
+ ctx.clearRect(0, 0, rect.width, rect.height);
+
+ // 绘制连线
+ ctx.lineWidth = 1;
+ links.forEach(link => {
+ const sourceNode = nodes.find(n => n.id === link.source);
+ const targetNode = nodes.find(n => n.id === link.target);
+ if (sourceNode && targetNode) {
+ ctx.beginPath();
+ ctx.moveTo(sourceNode.x, sourceNode.y);
+ ctx.lineTo(targetNode.x, targetNode.y);
+ ctx.strokeStyle = sourceNode.type === 'reference' ? 'rgba(245, 158, 11, 0.25)' : 'rgba(129, 140, 248, 0.25)';
+ ctx.stroke();
+ }
+ });
+
+ // 绘制节点
+ nodes.forEach(node => {
+ const isHovered = hoveredNode?.id === node.id;
+ ctx.beginPath();
+ ctx.arc(node.x, node.y, node.radius + (isHovered ? 4 : 0), 0, Math.PI * 2);
+ ctx.fillStyle = node.color;
+ ctx.fill();
+
+ // 绘制光晕环绕
+ ctx.beginPath();
+ ctx.arc(node.x, node.y, node.radius + (isHovered ? 8 : 4), 0, Math.PI * 2);
+ ctx.strokeStyle = node.color + '40'; // 附加透明度光晕
+ ctx.lineWidth = 2;
+ ctx.stroke();
+
+ // 绘制 bibcode 文本说明
+ ctx.fillStyle = isHovered ? '#0f172a' : '#64748b';
+ ctx.font = isHovered ? 'bold 10px monospace' : '9px monospace';
+ ctx.textAlign = 'center';
+ ctx.fillText(node.label, node.x, node.y + node.radius + (isHovered ? 18 : 14));
+ });
+
+ animationFrameId = requestAnimationFrame(render);
+ };
+
+ render();
+
+ // 交互鼠标监听
+ const handleMouseMove = (e: MouseEvent) => {
+ const mouseX = e.clientX - rect.left;
+ const mouseY = e.clientY - rect.top;
+
+ let found: Node | null = null;
+ for (const node of nodes) {
+ let dx = node.x - mouseX;
+ let dy = node.y - mouseY;
+ let dist = Math.sqrt(dx * dx + dy * dy);
+ if (dist < node.radius + 5) {
+ found = node;
+ break;
+ }
+ }
+ hoveredNode = found;
+ canvas.style.cursor = found ? 'pointer' : 'default';
+ };
+
+ const handleCanvasClick = () => {
+ if (hoveredNode && hoveredNode.id !== activeNetwork.bibcode) {
+ onNodeClick(hoveredNode.id);
+ }
+ };
+
+ canvas.addEventListener('mousemove', handleMouseMove);
+ canvas.addEventListener('click', handleCanvasClick);
+
+ return () => {
+ cancelAnimationFrame(animationFrameId);
+ canvas.removeEventListener('mousemove', handleMouseMove);
+ canvas.removeEventListener('click', handleCanvasClick);
+ };
+ }, [networks, activeNetwork, onNodeClick]);
+
+ return (
+
+ );
+}
diff --git a/dashboard/src/components/layout/Sidebar.tsx b/dashboard/src/components/layout/Sidebar.tsx
new file mode 100644
index 0000000..fc41a19
--- /dev/null
+++ b/dashboard/src/components/layout/Sidebar.tsx
@@ -0,0 +1,77 @@
+// dashboard/src/components/layout/Sidebar.tsx
+import { Search, BookOpen, GitFork, Library, Settings } from 'lucide-react';
+import type { StandardPaper } from '../../types';
+
+interface SidebarProps {
+ activeTab: 'search' | 'library' | 'reader' | 'citation' | 'settings';
+ setActiveTab: (tab: 'search' | 'library' | 'reader' | 'citation' | 'settings') => void;
+ selectedPaper: StandardPaper | null;
+ loadCitations: (bibcode: string) => void;
+}
+
+export function Sidebar({ activeTab, setActiveTab, selectedPaper, loadCitations }: SidebarProps) {
+ return (
+
+ );
+}
diff --git a/dashboard/src/features/citation/CitationPanel.tsx b/dashboard/src/features/citation/CitationPanel.tsx
new file mode 100644
index 0000000..aaf5cc0
--- /dev/null
+++ b/dashboard/src/features/citation/CitationPanel.tsx
@@ -0,0 +1,114 @@
+// dashboard/src/features/citation/CitationPanel.tsx
+import { Loader, GitFork, RotateCcw } from 'lucide-react';
+import { CitationGalaxyCanvas } from '../../components/CitationGalaxyCanvas';
+import type { StandardPaper, CitationNetwork } from '../../types';
+
+interface CitationPanelProps {
+ selectedPaper: StandardPaper | null;
+ loadingCitations: boolean;
+ citationNetwork: CitationNetwork | null;
+ citationHistory: CitationNetwork[];
+ loadCitations: (bibcode: string, reset?: boolean) => void;
+}
+
+export function CitationPanel({
+ selectedPaper,
+ loadingCitations,
+ citationNetwork,
+ citationHistory,
+ loadCitations,
+}: CitationPanelProps) {
+ return (
+
+
+
+
引用星系拓扑网络
+
基于数据库快速检索生成的“参考文献 (References) - 核心文献 - 被引文献 (Citations)”扩散网络
+
+ {selectedPaper && (
+
+ )}
+
+
+ {loadingCitations ? (
+
+
+
正在从 SQLite 数据库提取文献层级引用数据...
+
+ ) : citationNetwork ? (
+
+ {/* 可视化画布 */}
+
+ {
+ loadCitations(bibcode, false);
+ }}
+ />
+
+ {/* 右侧关系详情面板 */}
+
+
+
中心节点
+
{citationNetwork.title}
+
{citationNetwork.bibcode}
+
+
+
+
+ 参考文献 (References: {citationNetwork.references.length})
+
+
+ {citationNetwork.references.length === 0 ? (
+
暂无参考文献 bibcode 数据
+ ) : (
+ citationNetwork.references.map(bib => (
+
loadCitations(bib)}
+ className="text-xs text-slate-600 hover:text-purple-600 cursor-pointer font-mono truncate py-1 hover:bg-slate-100 px-2 rounded"
+ >
+ {bib}
+
+ ))
+ )}
+
+
+
+
+
+ 被引文献 (Citations: {citationNetwork.citations.length})
+
+
+ {citationNetwork.citations.length === 0 ? (
+
暂无被引文献 bibcode 数据
+ ) : (
+ citationNetwork.citations.map(bib => (
+
loadCitations(bib)}
+ className="text-xs text-slate-600 hover:text-purple-600 cursor-pointer font-mono truncate py-1 hover:bg-slate-100 px-2 rounded"
+ >
+ {bib}
+
+ ))
+ )}
+
+
+
+
+ ) : (
+
+ )}
+
+ );
+}
diff --git a/dashboard/src/features/library/LibraryPanel.tsx b/dashboard/src/features/library/LibraryPanel.tsx
new file mode 100644
index 0000000..8f485c7
--- /dev/null
+++ b/dashboard/src/features/library/LibraryPanel.tsx
@@ -0,0 +1,131 @@
+// dashboard/src/features/library/LibraryPanel.tsx
+import { Library, RotateCw, Download, Loader, RefreshCw } from 'lucide-react';
+import type { StandardPaper } from '../../types';
+
+interface LibraryPanelProps {
+ library: StandardPaper[];
+ fetchLibrary: () => void;
+ openReader: (paper: StandardPaper) => void;
+ setSelectedPaper: (paper: StandardPaper | null) => void;
+ setActiveTab: (tab: 'search' | 'library' | 'reader' | 'citation' | 'settings') => void;
+ loadCitations: (bibcode: string) => void;
+ downloadingBibcodes: Record;
+ handleDownload: (bibcode: string, force?: boolean) => void;
+}
+
+export function LibraryPanel({
+ library,
+ fetchLibrary,
+ openReader,
+ setSelectedPaper,
+ setActiveTab,
+ loadCitations,
+ downloadingBibcodes,
+ handleDownload,
+}: LibraryPanelProps) {
+ return (
+
+
+
+
本地文献库
+
已同步保存在本地物理文献库中的所有数据索引
+
+
+
+
+ {library.length === 0 ? (
+
+
+
本地文献库空空如也
+
您检索到的天文学文献会在下载后自动同步到此处进行离线保存
+
+
+ ) : (
+
+ {library.map(paper => {
+ const isDownloading = downloadingBibcodes[paper.bibcode] || false;
+ return (
+
+
+
+
openReader(paper)}
+ >
+ {paper.title}
+
+ {paper.is_downloaded ? (
+ 已下载
+ ) : (
+ 未下载
+ )}
+
+
+ {paper.authors.slice(0, 2).join(', ')}{paper.authors.length > 2 ? ' et al.' : ''} | {paper.year}
+
+
{paper.abstract_text}
+
+
+
+
+
+
+ {paper.is_downloaded ? (
+
+ ) : (
+
+ )}
+
+
+
+
+
+ {paper.bibcode}
+
+
+
+ );
+ })}
+
+ )}
+
+ );
+}
diff --git a/dashboard/src/features/reader/ReaderPanel.tsx b/dashboard/src/features/reader/ReaderPanel.tsx
new file mode 100644
index 0000000..5cde2c7
--- /dev/null
+++ b/dashboard/src/features/reader/ReaderPanel.tsx
@@ -0,0 +1,287 @@
+// dashboard/src/features/reader/ReaderPanel.tsx
+import ReactMarkdown from 'react-markdown';
+import remarkMath from 'remark-math';
+import rehypeKatex from 'rehype-katex';
+import 'katex/dist/katex.min.css';
+import { FileText, Loader, Languages, RotateCw, Pencil, X, PlusCircle, Trash2 } from 'lucide-react';
+import type { StandardPaper, NoteRecord } from '../../types';
+
+interface ReaderPanelProps {
+ selectedPaper: StandardPaper;
+ parsing: boolean;
+ handleParse: (bibcode: string, force?: boolean) => void;
+ translating: boolean;
+ handleTranslate: (bibcode: string, force?: boolean) => void;
+ showNotesPanel: boolean;
+ setShowNotesPanel: (show: boolean) => void;
+ notes: NoteRecord[];
+ englishText: string;
+ chineseText: string;
+ handleTextSelection: (paragraphIdx: number) => void;
+ selectedParagraphIdx: number | null;
+ setSelectedParagraphIdx: (idx: number | null) => void;
+ selectedText: string;
+ setSelectedText: (text: string) => void;
+ newNoteColor: string;
+ setNewNoteColor: (color: string) => void;
+ newNoteText: string;
+ setNewNoteText: (text: string) => void;
+ handleCreateNote: () => void;
+ handleDeleteNote: (id: number) => void;
+}
+
+const NOTE_COLORS: Record = {
+ yellow: { bg: 'bg-yellow-500/20', border: 'border-yellow-500/40', label: '黄色' },
+ green: { bg: 'bg-emerald-500/20', border: 'border-emerald-500/40', label: '绿色' },
+ blue: { bg: 'bg-blue-500/20', border: 'border-blue-500/40', label: '蓝色' },
+ pink: { bg: 'bg-pink-500/20', border: 'border-pink-500/40', label: '粉色' },
+};
+
+export function ReaderPanel({
+ selectedPaper,
+ parsing,
+ handleParse,
+ translating,
+ handleTranslate,
+ showNotesPanel,
+ setShowNotesPanel,
+ notes,
+ englishText,
+ chineseText,
+ handleTextSelection,
+ selectedParagraphIdx,
+ setSelectedParagraphIdx,
+ selectedText,
+ setSelectedText,
+ newNoteColor,
+ setNewNoteColor,
+ newNoteText,
+ setNewNoteText,
+ handleCreateNote,
+ handleDeleteNote,
+}: ReaderPanelProps) {
+ return (
+
+ {/* 控制头部 */}
+
+
+
{selectedPaper.title}
+
+ 期刊: {selectedPaper.pub_journal}
+ •
+ Bibcode: {selectedPaper.bibcode}
+
+
+
+ {!selectedPaper.has_markdown ? (
+
+ ) : (
+
+ )}
+
+ {selectedPaper.has_markdown && (
+
+ )}
+
+ {selectedPaper.has_translation && (
+
+ )}
+
+
+
+ {/* 并排对比阅读器 */}
+
+ {/* 英文正文面板 */}
+
+
+
英文解析正文 (Markdown/LaTeX)
+
+
+
+ {parsing ? (
+
+
+
优先解析本地 HTML 转换为 MD,回退则调用 MinerU 解析 PDF 并自动同步图床...
+
+ ) : englishText ? (
+
+ {englishText.split('\n\n').map((para, idx) => (
+
handleTextSelection(idx)}
+ className={`cursor-text relative rounded px-1 -mx-1 transition-colors ${
+ notes.some(n => n.paragraph_index === idx)
+ ? `${NOTE_COLORS[notes.find(n => n.paragraph_index === idx)!.highlight_color]?.bg || ''} ${NOTE_COLORS[notes.find(n => n.paragraph_index === idx)!.highlight_color]?.border || ''} border`
+ : 'hover:bg-slate-100'
+ }`}
+ >
+
+ {para}
+
+
+ ))}
+
+ ) : (
+
+
+
本篇文献暂无已解析的英文 Markdown 正文
+
请点击右上方按钮开始结构化正文解析
+
+ )}
+
+
+ {/* 中文翻译面板 */}
+
+
中文翻译 (天文学术语修正)
+
+ {translating ? (
+
+
+
加载天文学词典模糊词库映射,生成定制学术 prompt 发送至大模型...
+
+ ) : chineseText ? (
+
+
+ {chineseText}
+
+
+ ) : (
+
+
+
本篇文献暂无已缓存的翻译结果
+
需点击上方“大模型对比翻译”按钮开始翻译
+
+ )}
+
+
+ {/* 笔记侧边栏 */}
+ {showNotesPanel && (
+
+
+ 段落笔记 ({notes.length})
+
+
+
+ {/* 新建笔记输入区 */}
+ {selectedParagraphIdx !== null && (
+
+
选中段落 #{selectedParagraphIdx + 1}
+ {selectedText &&
"{selectedText}"
}
+ {/* 高亮颜色选择 */}
+
+ {Object.entries(NOTE_COLORS).map(([color, style]) => (
+
+
+ )}
+
+ {/* 笔记列表 */}
+
+ {notes.length === 0 ? (
+
+ ) : (
+ notes.map(note => (
+
+
段落 #{note.paragraph_index + 1}
+ {note.selected_text &&
"{note.selected_text}"
}
+
{note.note_text}
+
+ {note.created_at.split('T')[0]}
+
+
+
+ ))
+ )}
+
+
+ )}
+
+
+ );
+}
diff --git a/dashboard/src/features/search/SearchPanel.tsx b/dashboard/src/features/search/SearchPanel.tsx
new file mode 100644
index 0000000..a97eb52
--- /dev/null
+++ b/dashboard/src/features/search/SearchPanel.tsx
@@ -0,0 +1,230 @@
+// dashboard/src/features/search/SearchPanel.tsx
+import React from 'react';
+import { Search, Loader, CheckCircle, Copy, Download, RefreshCw } from 'lucide-react';
+import type { StandardPaper } from '../../types';
+
+interface SearchPanelProps {
+ searchQuery: string;
+ setSearchQuery: (query: string) => void;
+ searchSource: 'all' | 'ads' | 'arxiv';
+ setSearchSource: (src: 'all' | 'ads' | 'arxiv') => void;
+ searching: boolean;
+ handleSearch: (e: React.FormEvent) => void;
+ searchResults: StandardPaper[];
+ exportingList: string[];
+ toggleExportItem: (bibcode: string) => void;
+ handleExportBibtex: () => void;
+ exporting: boolean;
+ bibtexContent: string | null;
+ downloadingBibcodes: Record;
+ handleDownload: (bibcode: string, force?: boolean) => void;
+ selectedPaper: StandardPaper | null;
+ setSelectedPaper: (paper: StandardPaper | null) => void;
+ openReader: (paper: StandardPaper) => void;
+ setActiveTab: (tab: 'search' | 'library' | 'reader' | 'citation' | 'settings') => void;
+ loadCitations: (bibcode: string, reset?: boolean) => void;
+}
+
+export function SearchPanel({
+ searchQuery,
+ setSearchQuery,
+ searchSource,
+ setSearchSource,
+ searching,
+ handleSearch,
+ searchResults,
+ exportingList,
+ toggleExportItem,
+ handleExportBibtex,
+ exporting,
+ bibtexContent,
+ downloadingBibcodes,
+ handleDownload,
+ selectedPaper,
+ setSelectedPaper,
+ openReader,
+ setActiveTab,
+ loadCitations,
+}: SearchPanelProps) {
+ return (
+
+ {/* 搜索框 */}
+
+
+ {/* BibTeX 导出结果显示 */}
+ {bibtexContent && (
+
+
+ BibTeX 导出成功
+
+
+ {bibtexContent}
+
+
+
+ )}
+
+ {/* 检索列表 */}
+
+ {searchResults.map(paper => {
+ const isDownloading = downloadingBibcodes[paper.bibcode] || false;
+ const isSelected = selectedPaper?.bibcode === paper.bibcode;
+ return (
+
+
+
openReader(paper)}
+ >
+ {paper.title}
+
+
+ {paper.is_downloaded ? (
+
+ 已下载
+
+
+ ) : (
+
+ )}
+
toggleExportItem(paper.bibcode)}
+ className="rounded text-purple-600 border-slate-300 bg-white focus:ring-purple-500"
+ />
+
+
+
+
+
+ {paper.authors.slice(0, 3).join(', ')}{paper.authors.length > 3 ? ' et al.' : ''}
+
+ •
+ {paper.year}
+ •
+ {paper.pub_journal}
+ {paper.citation_count > 0 && (
+ <>
+ •
+ 被引: {paper.citation_count}
+ >
+ )}
+
+
+
{paper.abstract_text}
+
+
+
+
+
+
+
+
+ {paper.doi && DOI: {paper.doi}}
+ Bibcode: {paper.bibcode}
+
+
+
+ );
+ })}
+
+
+ );
+}
diff --git a/dashboard/src/features/settings/SettingsPanel.tsx b/dashboard/src/features/settings/SettingsPanel.tsx
new file mode 100644
index 0000000..8539f57
--- /dev/null
+++ b/dashboard/src/features/settings/SettingsPanel.tsx
@@ -0,0 +1,25 @@
+// dashboard/src/features/settings/SettingsPanel.tsx
+
+export function SettingsPanel() {
+ return (
+
+
+
系统设置
+
AstroResearch 核心系统运行参数配置
+
+
+
+
+
配置文件 (.env) 运作模式
+
+ 依据实施方案,所有的 API 密钥及鉴权 Token 统一保存在项目根目录下的 .env 配置文件中,避免在数据库内泄露。
+
+
+
+
+ 提示 系统在后端启动时,会自动创建本地文献库物理目录并向数据库及天文学字典导入缓存。如需使用天文学中英翻译修正,请确保本地 /home/fmq/下载/astrodict_241020/astrodict241020_ec.txt 路径文件内容完整可用。
+
+
+
+ );
+}
diff --git a/dashboard/src/index.css b/dashboard/src/index.css
new file mode 100644
index 0000000..80856d1
--- /dev/null
+++ b/dashboard/src/index.css
@@ -0,0 +1,54 @@
+@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');
+@import "tailwindcss";
+@plugin "@tailwindcss/typography";
+
+:root {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ color-scheme: light;
+}
+
+body {
+ margin: 0;
+ background-color: #f8fafc;
+ color: #0f172a;
+ min-height: 100vh;
+}
+
+/* Custom premium scrollbar styling */
+::-webkit-scrollbar {
+ width: 6px;
+ height: 6px;
+}
+::-webkit-scrollbar-track {
+ background: #f1f5f9;
+}
+::-webkit-scrollbar-thumb {
+ background: #cbd5e1;
+ border-radius: 3px;
+}
+::-webkit-scrollbar-thumb:hover {
+ background: #94a3b8;
+}
+
+/* Glassmorphism utility for light mode */
+.glass {
+ background: rgba(255, 255, 255, 0.45);
+ backdrop-filter: blur(16px);
+ -webkit-backdrop-filter: blur(16px);
+ border: 1px solid rgba(255, 255, 255, 0.6);
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
+}
+
+.glass-accent {
+ border: 1px solid rgba(192, 132, 252, 0.2);
+}
+
+/* Animations */
+@keyframes pulse-slow {
+ 0%, 100% { opacity: 0.4; }
+ 50% { opacity: 0.8; }
+}
+
+.animate-pulse-slow {
+ animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+}
diff --git a/dashboard/src/main.tsx b/dashboard/src/main.tsx
new file mode 100644
index 0000000..bef5202
--- /dev/null
+++ b/dashboard/src/main.tsx
@@ -0,0 +1,10 @@
+import { StrictMode } from 'react'
+import { createRoot } from 'react-dom/client'
+import './index.css'
+import App from './App.tsx'
+
+createRoot(document.getElementById('root')!).render(
+
+
+ ,
+)
diff --git a/dashboard/src/types.ts b/dashboard/src/types.ts
new file mode 100644
index 0000000..0509920
--- /dev/null
+++ b/dashboard/src/types.ts
@@ -0,0 +1,37 @@
+// dashboard/src/types.ts
+
+export interface StandardPaper {
+ bibcode: string;
+ title: string;
+ authors: string[];
+ year: string;
+ pub_journal: string;
+ keywords: string[];
+ abstract_text: string;
+ doi: string;
+ arxiv_id: string;
+ citation_count: number;
+ reference_count: number;
+ is_downloaded: boolean;
+ has_markdown: boolean;
+ has_translation: boolean;
+}
+
+export interface CitationNetwork {
+ bibcode: string;
+ title: string;
+ citation_count: number;
+ reference_count: number;
+ references: string[];
+ citations: string[];
+}
+
+export interface NoteRecord {
+ id: number;
+ bibcode: string;
+ paragraph_index: number;
+ note_text: string;
+ highlight_color: string;
+ selected_text: string;
+ created_at: string;
+}
diff --git a/dashboard/tsconfig.app.json b/dashboard/tsconfig.app.json
new file mode 100644
index 0000000..7f42e5f
--- /dev/null
+++ b/dashboard/tsconfig.app.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "es2023",
+ "lib": ["ES2023", "DOM"],
+ "module": "esnext",
+ "types": ["vite/client"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"]
+}
diff --git a/dashboard/tsconfig.json b/dashboard/tsconfig.json
new file mode 100644
index 0000000..1ffef60
--- /dev/null
+++ b/dashboard/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "files": [],
+ "references": [
+ { "path": "./tsconfig.app.json" },
+ { "path": "./tsconfig.node.json" }
+ ]
+}
diff --git a/dashboard/tsconfig.node.json b/dashboard/tsconfig.node.json
new file mode 100644
index 0000000..d3c52ea
--- /dev/null
+++ b/dashboard/tsconfig.node.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "es2023",
+ "lib": ["ES2023"],
+ "module": "esnext",
+ "types": ["node"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+
+ /* Linting */
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/dashboard/vite.config.ts b/dashboard/vite.config.ts
new file mode 100644
index 0000000..2a5f1f2
--- /dev/null
+++ b/dashboard/vite.config.ts
@@ -0,0 +1,19 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+import tailwindcss from '@tailwindcss/vite'
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [
+ react(),
+ tailwindcss(),
+ ],
+ server: {
+ proxy: {
+ '/api': {
+ target: 'http://localhost:8000',
+ changeOrigin: true,
+ }
+ }
+ }
+})
diff --git a/dashboard/前端开发规范-React篇.md b/dashboard/前端开发规范-React篇.md
new file mode 100644
index 0000000..3828883
--- /dev/null
+++ b/dashboard/前端开发规范-React篇.md
@@ -0,0 +1,580 @@
+# 前端开发规范\-React篇
+
+React 开发实践指南
+
+V1\.0 \| 2026年5月 \
+
+# 一、概述与总则
+
+本文档旨在统一前端开发团队的技术实践标准,确保代码质量、可维护性和团队协作效率。规范覆盖 React 技术栈的核心开发场景,同时涵盖 HTML/CSS、JavaScript/TypeScript 等基础层面的通用准则。
+
+## 1\.1 适用范围
+
+本规范适用于所有使用 React 技术栈的前端项目,包括但不限于:
+
+1. 使用 React 18\+ 的 Web 应用项目
+
+2. 基于 Next\.js、Remix 等元框架的服务端渲染项目
+
+3. 使用 React Native 的移动端跨平台项目(部分适用)
+
+## 1\.2 规范层级
+
+规范条目按强制程度分为三个层级,开发者应根据项目实际情况合理遵循:
+
+|**层级**|**标识**|**说明**|
+|---|---|---|
+|必须(Must)|\[M\]|所有项目必须严格遵守,Code Review 中必检项|
+|推荐(Should)|\[S\]|强烈建议遵循,特殊场景经评估后可调整|
+|可选(May)|\[O\]|根据项目实际情况选择性采纳|
+
+## 1\.3 技术栈版本要求
+
+新项目应优先采用以下技术栈版本,已有项目应在迭代周期内逐步升级:
+
+|**技术项**|**推荐版本**|**说明**|
+|---|---|---|
+|React|18\.x / 19\.x|使用最新稳定版|
+|TypeScript|5\.5\+|strict 模式启用|
+|Vite|6\.x|构建工具首选|
+|Next\.js|15\.x|SSR/SSG 场景|
+|Tailwind CSS|4\.x|原子化 CSS 方案|
+|ESLint|9\.x|Flat Config 格式|
+
+# 二、React 开发规范
+
+React 是本规范的核心关注领域。本章从组件设计、Hooks 使用、状态管理、TypeScript 类型约束和性能优化五个维度,系统性地定义 React 开发的最佳实践。
+
+## 2\.1 组件设计规范
+
+### 2\.1\.1 组件分类与组织
+
+React 组件应按职责明确划分为以下类别,并在项目目录中保持清晰的组织结构:
+
+|**组件类型**|**存放路径**|**职责说明**|
+|---|---|---|
+|Page 组件|app/ 或 pages/|路由级别的页面组件,负责数据获取和页面级布局|
+|Layout 组件|components/layout/|页面布局框架,如 Header、Sidebar、Footer|
+|UI 组件|components/ui/|基础 UI 元素,Button、Input、Modal 等纯展示组件|
+|Feature 组件|features/\*/components/|业务功能组件,与特定功能域紧耦合|
+|HOC / 工具|components/hoc/|高阶组件和渲染工具(render props)|
+
+### 2\.1\.2 函数组件优先
+
+自 React 16\.8 引入 Hooks 以来,函数组件已成为官方推荐的标准写法。所有新开发组件必须使用函数组件,类组件仅在维护遗留代码时允许存在。
+
+```TypeScript
+// 推荐:函数组件 + Hooks
+import { useState, useCallback } from 'react';
+
+interface UserCardProps {
+ user: User;
+ onSelect: (id: string) => void;
+}
+
+export function UserCard({ user, onSelect }: UserCardProps) {
+ const [expanded, setExpanded] = useState(false);
+
+ const handleClick = useCallback(() => {
+ onSelect(user.id);
+ setExpanded(prev => !prev);
+ }, [onSelect, user.id]);
+
+ return (
+
+
+ {user.name}
+ {expanded && }
+
+ );
+}
+```
+
+### 2\.1\.3 Props 设计原则
+
+组件的 Props 接口设计直接影响组件的可复用性和可维护性。遵循以下原则:
+
+4. 单一职责:每个组件只接收其渲染所需的最小数据集合,避免传递冗余数据
+
+5. 显式接口:使用 TypeScript interface 定义 Props,禁止隐式 any 类型
+
+6. 默认值策略:对可选 Props 提供合理的默认值,或使用解构赋值简化处理
+
+7. 事件命名:自定义事件处理器以 on 为前缀(如 onSelect、onValueChange),遵循 React 原生事件命名惯例
+
+8. 避免过度透传:不要简单地将父组件的 Props 全部展开传递给子组件,应显式声明所需属性
+
+### 2\.1\.4 组件文件结构
+
+每个组件应按以下结构组织,确保关注点分离和可测试性:
+
+```TypeScript
+// components/UserCard/index.tsx
+export { UserCard } from './UserCard';
+export type { UserCardProps } from './types';
+
+// components/UserCard/UserCard.tsx
+import { useState } from 'react';
+import type { UserCardProps } from './types';
+import { useUserCard } from './useUserCard';
+import * as S from './styles';
+
+export function UserCard({ user, onSelect }: UserCardProps) {
+ const { expanded, handleClick } = useUserCard(user, onSelect);
+ return (
+ ...
+ );
+}
+
+// components/UserCard/types.ts
+export interface UserCardProps {
+ user: User;
+ onSelect: (id: string) => void;
+}
+
+// components/UserCard/useUserCard.ts
+export function useUserCard(user: User, onSelect: (id: string) => void) {
+ // 业务逻辑抽离到自定义 Hook
+}
+
+// components/UserCard/styles.ts (styled-components / CSS Modules)
+```
+
+## 2\.2 Hooks 使用规范
+
+### 2\.2\.1 Hooks 基础规则
+
+Hooks 是 React 16\.8 引入的革命性特性,必须严格遵循以下使用规则,否则可能导致不可预期的行为:
+
+9. 只在最顶层调用 Hooks:不要在循环、条件判断或嵌套函数中调用 Hooks
+
+10. 只在 React 函数中调用 Hooks:在函数组件或自定义 Hook 中调用,不要在普通 JavaScript 函数中调用
+
+11. 以 use 开头命名:自定义 Hook 必须以 use 开头命名,以便 ESLint 插件识别
+
+12. 依赖数组诚实原则:useEffect、useMemo、useCallback 的依赖数组必须完整列出所有依赖项
+
+### 2\.2\.2 useEffect 最佳实践
+
+useEffect 是最常用的 Hook 之一,也是最容易滥用的。遵循以下实践:
+
+```JavaScript
+// 推荐:单一职责的 Effect
+useEffect(() => {
+ const controller = new AbortController();
+ fetchUser(userId, { signal: controller.signal })
+ .then(setUser)
+ .catch(setError);
+ return () => controller.abort();
+}, [userId]); // 依赖数组必须完整
+
+// 推荐:逻辑拆分到独立 Effect
+useEffect(() => {
+ // 数据获取逻辑
+}, [params]);
+
+useEffect(() => {
+ // DOM 操作或订阅逻辑
+ return () => { /* 清理逻辑 */ };
+}, []);
+
+// 禁止:缺失依赖项
+useEffect(() => {
+ fetchData(page); // page 未在依赖数组中!
+}, []); // eslint-disable-line 是临时方案,应尽快修复
+```
+
+### 2\.2\.3 useMemo 与 useCallback
+
+性能优化 Hooks 应在有明确性能问题时使用,避免过早优化。遵循以下准则:
+
+13. useMemo:用于缓存昂贵的计算结果,仅在计算成本显著高于缓存开销时使用
+
+14. useCallback:用于缓存事件处理函数,主要配合 React\.memo 使用,避免子组件不必要的重渲染
+
+15. 避免滥用:简单的计算和事件处理不需要 memoization,React 的渲染性能通常优于预期
+
+16. 依赖数组完整性:与 useEffect 同样,必须确保依赖数组的完整性
+
+```JavaScript
+// 推荐:复杂数据转换使用 useMemo
+const filteredUsers = useMemo(() => {
+ return users
+ .filter(u => u.active)
+ .sort((a, b) => b.score - a.score)
+ .slice(0, 100);
+}, [users]);
+
+// 推荐:配合 React.memo 使用 useCallback
+const handleSubmit = useCallback((values: FormData) => {
+ api.submit(values).then(onSuccess);
+}, [onSuccess]);
+
+// 禁止:对简单值使用 useMemo
+const fullName = useMemo(
+ () => `$${firstName} $${lastName}`,
+ [firstName, lastName] // 字符串拼接成本极低,无需缓存
+);
+```
+
+## 2\.3 状态管理规范
+
+### 2\.3\.1 状态管理策略
+
+React 应用的状态管理应按状态的作用域和复杂度选择适当的方案,避免过度工程化:
+
+|**状态类型**|**管理方案**|**适用场景**|
+|---|---|---|
+|本地 UI 状态|useState|组件内部的临时状态,如表单输入、展开/收起|
+|派生状态|useMemo / 计算|可从已有状态计算得出的值|
+|共享状态|Context / Props|跨 2\-3 层组件传递的状态|
+|全局状态|Zustand / Jotai|应用级共享状态,如用户信息、主题设置|
+|服务端状态|TanStack Query|服务器数据缓存和同步|
+|表单状态|React Hook Form|复杂表单的状态和验证管理|
+
+### 2\.3\.2 Context 使用规范
+
+React Context 适用于跨组件层级的数据传递,但不当使用会导致性能问题:
+
+17. 拆分 Context:将高频变化和低频变化的状态拆分到独立的 Context,避免不必要的重渲染
+
+18. 避免过度使用:仅在真正需要跨多级组件传递数据时使用,简单的父子组件通信仍应通过 Props
+
+19. 结合 useReducer:对于复杂状态逻辑,Context 配合 useReducer 可以实现轻量级的 Redux\-like 方案
+
+```TypeScript
+// 推荐:拆分 Context 避免重渲染
+const ThemeContext = createContext('light');
+const UserContext = createContext(null);
+
+// ThemeProvider 更新时,只消费 ThemeContext 的组件重渲染
+// UserProvider 更新时,只消费 UserContext 的组件重渲染
+
+// 推荐:Context + useReducer 组合
+type Action = { type: 'increment' } | { type: 'decrement' };
+const CounterContext = createContext<{
+ state: number;
+ dispatch: React.Dispatch;
+} | null>(null);
+```
+
+### 2\.3\.3 外部状态管理(Zustand/Jotai)
+
+对于中大型企业级应用,推荐使用轻量级的原子化状态管理方案,如 Zustand 或 Jotai:
+
+20. Zustand:适合模块化的 Store 架构,API 极简,无 Provider 包裹问题
+
+21. Jotai:适合原子化的细粒度状态管理,状态依赖自动追踪
+
+22. 避免 Redux 过度使用:仅在需要 Redux DevTools 时间旅行调试、复杂中间件链时考虑 Redux Toolkit
+
+## 2\.4 TypeScript 类型规范
+
+### 2\.4\.1 组件 Props 类型
+
+所有组件 Props 必须使用 TypeScript 接口显式定义,禁止使用 any 类型绕过类型检查:
+
+```TypeScript
+// 推荐:显式 Props 接口
+interface ButtonProps {
+ variant?: 'primary' | 'secondary' | 'ghost';
+ size?: 'sm' | 'md' | 'lg';
+ disabled?: boolean;
+ loading?: boolean;
+ onClick?: (event: React.MouseEvent) => void;
+ children: React.ReactNode;
+}
+
+export function Button({
+ variant = 'primary',
+ size = 'md',
+ disabled = false,
+ loading = false,
+ onClick,
+ children,
+}: ButtonProps) {
+ // 实现...
+}
+
+// 禁止:隐式 any 或缺少类型
+// function Button(props) { // 错误!props 为 any
+// return ;
+// }
+```
+
+### 2\.4\.2 泛型组件
+
+对于数据展示类组件,使用泛型实现类型安全的通用组件:
+
+```TypeScript
+// 推荐:泛型表格组件
+interface DataTableProps {
+ data: T[];
+ columns: ColumnDef[];
+ keyExtractor: (item: T) => string;
+ onRowClick?: (item: T) => void;
+}
+
+export function DataTable({
+ data, columns, keyExtractor, onRowClick,
+}: DataTableProps) {
+ return (
+
+
+ {data.map(item => (
+ onRowClick?.(item)}>
+ {columns.map(col => (
+ | {col.render(item)} |
+ ))}
+
+ ))}
+
+
+ );
+}
+```
+
+### 2\.4\.3 事件类型
+
+React 事件处理函数应使用 React 提供的泛型事件类型,而非原生 DOM 事件类型:
+
+|**事件类型**|**React 类型**|
+|---|---|
+|点击事件|React\.MouseEvent\|
+|输入事件|React\.ChangeEvent\|
+|表单提交|React\.FormEvent\|
+|键盘事件|React\.KeyboardEvent\|
+|拖拽事件|React\.DragEvent\|
+|触摸事件|React\.TouchEvent\|
+|通用事件|React\.SyntheticEvent|
+
+## 2\.5 性能优化规范
+
+### 2\.5\.1 渲染优化
+
+React 的渲染优化应从以下维度系统化地进行:
+
+23. React\.memo:对纯展示组件使用 React\.memo 进行浅比较优化,避免不必要的重渲染
+
+24. useMemo / useCallback:对昂贵的计算和传递给子组件的回调进行缓存
+
+25. 虚拟列表:长列表使用 react\-window 或 react\-virtualized 实现虚拟滚动
+
+26. 代码分割:使用 React\.lazy \+ Suspense 实现路由级别和组件级别的懒加载
+
+```JavaScript
+// 推荐:React.memo + 自定义比较函数
+export const UserList = React.memo(function UserList({
+ users,
+ onSelect,
+}: UserListProps) {
+ return (
+
+ {users.map(user => (
+
+ ))}
+
+ );
+}, (prev, next) => prev.users === next.users);
+
+// 推荐:React.lazy 代码分割
+const Dashboard = React.lazy(() => import('./Dashboard'));
+const Settings = React.lazy(() => import('./Settings'));
+
+function App() {
+ return (
+ }>
+
+ } />
+ } />
+
+
+ );
+}
+```
+
+### 2\.5\.2 状态更新优化
+
+状态更新方式直接影响渲染性能,应遵循以下最佳实践:
+
+27. 批量更新:React 18 自动批处理所有状态更新,无需手动合并
+
+28. 不可变数据:始终使用不可变更新模式,配合 useMemo/React\.memo 进行引用比较
+
+29. 状态拆分:将独立变化的状态拆分为多个 useState,避免不必要的联合更新
+
+30. 派生状态:优先使用 useMemo 计算派生状态,避免在状态中存储可计算的值
+
+# 三、HTML/CSS 规范
+
+HTML 和 CSS 是前端开发的基础,良好的标记和样式实践是构建可维护应用的前提。
+
+## 3\.1 HTML 语义化
+
+语义化的 HTML 不仅有利于可访问性(A11y),也有助于 SEO 和代码的可读性:
+
+31. 使用恰当的语义化标签:header、nav、main、article、section、aside、footer
+
+32. 表单元素必须关联 label,使用 aria\-label 或 aria\-labelledby 补充描述
+
+33. 图片必须提供有意义的 alt 文本,装饰性图片使用 alt=""
+
+34. 遵循标题层级顺序(h1 → h2 → h3),不要跳级使用
+
+## 3\.2 CSS 架构
+
+推荐采用CSS Modules,避免全局命名空间污染:
+
+```JavaScript
+// 推荐:CSS Modules
+import styles from './Button.module.css';
+
+export function Button({ children }) {
+ return ;
+}
+
+/* Button.module.css */
+.button {
+ padding: 8px 16px;
+ border-radius: 4px;
+ background: var(--color-primary);
+ color: white;
+}
+
+.button:hover {
+ background: var(--color-primary-dark);
+}
+```
+
+## 3\.3 响应式设计
+
+所有界面必须适配至少三种断点,采用移动优先的设计策略:
+
+|**断点名**|**尺寸范围**|**适配策略**|
+|---|---|---|
+|Mobile|\< 768px|单列布局、触摸友好的交互、简化导航|
+|Tablet|768px \- 1024px|双列布局、侧边栏可收起、适配触控|
+|Desktop|\> 1024px|完整多列布局、 hover 交互、固定侧边栏|
+
+# 四、JavaScript/TypeScript 通用规范
+
+除 React 特定规范外,团队应遵循以下 JavaScript/TypeScript 通用编码规范。
+
+## 4\.1 命名规范
+
+35. 文件名:PascalCase 用于组件文件(UserCard\.tsx),camelCase 用于工具文件(formatDate\.ts)
+
+36. 组件名:PascalCase,与文件名保持一致
+
+37. Hook 名:以 use 开头,后跟 PascalCase(useUserData)
+
+38. 常量:UPPER\_SNAKE\_CASE(MAX\_RETRY\_COUNT)
+
+39. 布尔变量:使用 is、has、should 等前缀(isLoading、hasError)
+
+## 4\.2 代码风格
+
+统一使用 ESLint \+ Prettier 进行代码格式化和质量检查,配置文件纳入版本控制:
+
+```Java
+// .eslintrc.cjs
+module.exports = {
+ extends: [
+ 'eslint:recommended',
+ '@typescript-eslint/recommended',
+ 'plugin:react-hooks/recommended',
+ ],
+ rules: {
+ '@typescript-eslint/no-explicit-any': 'error',
+ '@typescript-eslint/explicit-function-return-type': 'warn',
+ 'react-hooks/exhaustive-deps': 'error',
+ },
+};
+
+// .prettierrc
+{
+ "semi": true,
+ "singleQuote": true,
+ "tabWidth": 2,
+ "trailingComma": "all"
+}
+```
+
+## 4\.3 类型安全
+
+40. strict 模式:TypeScript 配置必须启用 strict: true
+
+41. 禁止 any:原则上禁止使用 any 类型,必要时应使用 unknown 并配合类型收窄
+
+42. 返回值类型:公共函数应显式声明返回值类型,利用类型推断的边界情况除外
+
+43. 类型导出:组件 Props 接口应随组件一起导出,便于复用
+
+# 五、工程化与项目结构
+
+良好的项目结构和工程化配置是团队协作的基石。
+
+## 5\.1 目录结构
+
+推荐采用以下目录组织方式,Feature\-based 结构优先:
+
+```Python
+src/
+├── app/ # 路由页面(Next.js / React Router)
+│ ├── layout.tsx
+│ ├── page.tsx
+│ └── dashboard/
+│ └── page.tsx
+├── components/ # 共享组件
+│ ├── ui/ # 基础 UI 组件(Button, Input, Modal)
+│ └── layout/ # 布局组件(Header, Sidebar, Footer)
+├── features/ # 功能模块
+│ └── auth/ # 认证功能
+│ ├── api/ # API 请求
+│ ├── components/ # 功能组件
+│ ├── hooks/ # 功能 Hooks
+│ ├── stores/ # 状态管理
+│ └── types.ts # 功能类型
+├── hooks/ # 全局共享 Hooks
+├── lib/ # 工具库和配置
+│ ├── api.ts # Axios 实例配置
+│ └── utils.ts # 通用工具函数
+├── types/ # 全局类型定义
+└── styles/ # 全局样式和主题配置
+```
+
+## 5\.2 开发工作流
+
+44. Git 分支策略:采用 Git Flow 或 Trunk\-based 开发,功能分支命名格式 feature/描述 或 fix/描述
+
+45. 代码审查:所有代码变更必须通过 Pull Request 审查,至少 1 人 approving 后方可合并
+
+46. 提交规范:遵循 Conventional Commits 规范(feat:、fix:、docs:、refactor:、test: 等前缀)
+
+47. CI/CD:集成自动化测试、代码质量检查(ESLint、TypeScript 编译检查)到 CI 流水线
+
+# 六、性能优化与最佳实践
+
+性能优化是前端开发的重要环节,应贯穿整个开发周期。
+
+## 6\.1 加载性能
+
+48. 资源压缩:启用 Gzip/Brotli 压缩,图片使用 WebP/AVIF 格式
+
+49. 懒加载:路由、图片、非首屏组件均使用懒加载策略
+
+50. 预加载:对关键资源使用 rel=preload,对后续路由使用 rel=prefetch
+
+51. Bundle 分析:定期使用 @next/bundle\-analyzer 或 webpack\-bundle\-analyzer 分析打包体积
+
+## 6\.2 运行时性能
+
+52. 避免频繁的状态更新:使用防抖(debounce)和节流(throttle)控制高频事件
+
+53. Web Workers:将复杂计算 offload 到 Web Worker,避免阻塞主线程
+
+54. 内存管理:及时清理定时器、事件监听器和订阅,防止内存泄漏
+
+55. 虚拟化:长列表使用虚拟滚动,大数据集使用分页或虚拟表格
+
diff --git a/dictionary.txt b/dictionary.txt
new file mode 100755
index 0000000..46f3c24
--- /dev/null
+++ b/dictionary.txt
@@ -0,0 +1,30094 @@
+'Oumuamua 奥陌陌
+1-mirror telescope 单反光面望远镜
+1/f noise 1/f 噪声
+10-day period 旬
+10-meter-class telescope 10米级望远镜
+11-year solar cycle 11年太阳活动周
+12 Jupiter-stations 十二次
+160-minute oscillation 160分钟振荡
+2-body problem 二体问题
+2-color photometry 二色测光
+2-dimensional classification 二元分类
+2-dimensional photometry 二维测光
+2-lens objective 双合物镜
+2-meter-class telescope 2米级望远镜
+2-mirror telescope 二反光面望远镜
+2-prism spectrograph 双棱镜摄谱仪
+2-μ Sky Survey 缩写:TMSS。2微米巡天
+2001 Mars Odyssey 2001火星奥德赛号
+21 Centimeter Array 缩写:21CMA。21厘米[射电望远镜]阵
+21 cm forest 21厘米森林; 21厘米线丛
+21 cm intensity mapping 21厘米强度映射
+21 cm tomography 21厘米层析
+21-cm radiation 21厘米辐射
+21CMA 全称:21 Centimeter Array。21厘米[射电望远镜]阵
+21cm line 21厘米谱线
+22° halo 22°日晕
+28 lunar mansions 二十八宿
+2MASS 全称:Two Micron All Sky Survey。2微米全天巡视
+2dF Galaxy Redshift Survey 缩写:2dFGRS。2度视场星系红移巡天
+2dF Survey 全称:Two-degree-field redshift survey。2度视场红移巡天
+2dFGRS 全称:Two-degree-Field Galaxy Redshift Survey; 2dF Galaxy Redshift Survey。2度视场星系红移巡天
+3 kpc Arm 三千秒差距臂
+3-axis mounting 三轴装置
+3-body problem 三体问题
+3-color photometry 三色测光
+3-dimensional classification 三元分类
+3-lens objective 三合物镜
+3-mirror telescope 三反光面望远镜
+3-prism spectrograph 三棱镜摄谱仪
+3C catalogue 全称:Third Cambridge Catalogue of Radio Sources。第3剑桥射电源表; 3C射电源表
+3K radiation 3K辐射
+4-axis mounting 四轴装置
+4-body problem 四体问题
+4-color photometry 四色测光
+4-dimensional universe 四维宇宙
+4-lens objective 四合物镜
+4-meter-class telescope 4米级望远镜
+4000 Å break 4000埃跳变
+46° halo 46°日晕
+4C catalogue 全称:Fourth Cambridge Survey catalogue。第4剑桥巡天星表; 4C星表
+5-Kilometer Telescope 五千米射电望远镜
+5-color photometry 五色测光
+5-minute oscillation 五分钟振荡
+6-color photometry 六色测光
+6-meter-class telescope 6米级望远镜
+6C survey 全称:Sixth Cambridge Survey of radio sources。第6剑桥射电源巡天
+6dF Galaxy Survey 缩写:6dFGS。6度视场星系巡天
+6dFGS 全称:Six-degree Field Galaxy Survey; 6dF Galaxy Survey。6度视场星系巡天
+7-color photometry 七色测光
+8-meter-class telescope 8米级望远镜
+A Broadband Imaging X-ray All-sky Survey X-ray Satellite 缩写:ABRIXAS X-ray Satellite。ABRIXAS宽带成像X射线卫星
+A band A谱带
+A coefficient A系数
+A dwarf star A型矮星
+A giant star A型巨星
+A star A型星
+A subdwarf star A型亚矮星
+A subgiant star A型亚巨星
+A supergiant star A型超巨星
+A&A 全称:Astronomy and Astrophysics。天文学和天体物理学
+A-type asteroid A型小行星
+A-type star A型星
+A.A. 全称:Air Almanac。美国航空历书
+A.D. 全称:Anno Domini。公元
+A.E. 全称:astronomical ephemeris; astronomical almanac; astronomical year book。天文年历
+A.H. 全称:Anno Hegirae。伊斯兰纪元
+A.L. 全称:Anno Lucis。露西纪元
+A1 全称:Atomic Time 1。A1原子时
+AAA 全称:Astronomy and Astrophysics Abstracts。天文学和天体物理学文摘
+AAO 1、全称:Anglo-Australian Observatory。英澳天文台; 2、全称:Australian Astronomical Observatory。澳大利亚天文台
+AAPS 全称:Automated Astronomical Positioning System。自动天文定位系统
+AAS 全称:American Astronomical Society。美国天文学会
+AAT 1、全称:Anglo-Australian Telescope。英澳望远镜; 2、全称:Australian Astronomical Telescope。澳大利亚望远镜
+AAVSO 全称:American Association of Variable Star Observers。美国变星观测者协会
+AAp 全称:Astronomy and Astrophysics。天文学和天体物理学
+AB magnitude AB星等
+ABRIXAS X-ray Satellite 全称:A Broadband Imaging X-ray All-sky Survey X-ray Satellite。ABRIXAS宽带成像X射线卫星
+AC 1、全称:Arctic Circle。北极圈; 2、全称:Astrographic Catalogue。照相天图星表
+ACBAR 全称:Arcminute Cosmology Bolometer Array Receiver。角分宇宙学辐射热计阵
+ACE 全称:Advanced Composition Explorer。高新成分探测器
+ACN 全称:automatic celestial navigation。自动天文导航
+ACT 全称:Atacama Cosmology Telescope。阿塔卡马宇宙学望远镜
+ADAF 全称:advection-dominated accretion flow。径移占优吸积流
+ADAS 全称:Astronomical Data Archiving System。天文数据存档系统
+ADIOS 全称:adiabatic inflow-outflow solution。绝热内外流解
+ADM formalism 全称:Arnowitt-Deser-Misner formalism。ADM 形式
+ADP 全称:automatic data processing。自动数据处理
+ADS 1、全称:Aitken's Double Star Catalogue。艾特肯双星表; ADS双星表; 2、全称:Astrophysics Data System。天体物理数据系统
+ADU 全称:Analog-Digital Unit。模数转换单元
+AFS 1、全称:active filament system。活动暗条系统; 2、全称:arch filament system。拱状暗条系统
+AG 全称:Astronomische Gesellschaft。德国天文学会
+AG catalogue AGK星表
+AGASA 全称:Akeno Giant Air Shower Array。明野巨型空气簇射阵
+AGB 全称:asymptotic giant branch。渐近巨星支
+AGB star 全称:asymptotic branch giant。渐近支巨星; AGB星
+AGB variable 渐近巨星支变星; AGB变星
+AGILE 全称:Gamma-ray Light Detector。敏捷号γ射线天文卫星
+AGK 全称:Astronomische Gesellschaft Katalog。AGK星表
+AGN 全称:active galactic nucleus。活动星系核
+AGN beaming 活动星系核集束效应
+AGN classification 活动星系核分类
+AGN emission line 活动星系核发射线
+AGN evolution 活动星系核演化
+AGN host galaxy 活动星系核宿主星系
+AI Vel star 全称:AI Velorum star。船帆AI型星
+AI Velorum star 缩写:AI Vel star。船帆AI型星
+AIC 全称:Akaike information criterion。赤池信息判据
+AIP 全称:Leibniz-Instituts für Astrophysik Potsdam。波茨坦天体物理研究所
+AIPS 全称:astronomical image-processing system。天文图像处理系统
+AIS 全称:automatic interplanetary station。自动行星际站
+AJ 全称:Astronomical Journal。天文学报
+AJB 全称:Astronomischer Jahresbericht。天文年报
+ALEXIS 全称:Array of Low-Energy X-ray Imaging Sensors。亚历克西斯号; 低能X射线成像传感器阵列
+ALFALFA 全称:Arecibo Legacy Fast ALFA Survey。阿雷西博遗珍快速ALFA巡天; 苜蓿巡天
+ALMA 全称:Atacama Large Millimeter/sub-millimeter Array。阿塔卡马大型毫米[/亚毫米]波阵
+ALP 全称:axion like particle。类轴子粒子
+ALPACA 全称:Advanced Liquid-mirror Probe for Astrophysics,Cosmology and Asteroids。阿尔帕卡望远镜
+ALSEP 全称:Apollo Lunar Surface Experiments Package。阿波罗月面实验装置
+AM 全称:amplitude modulation。调幅
+AM CVn binary 全称:AM Canum Venaticorum binary。猎犬AM型双星
+AM CVn star 全称:AM Canum Venaticorum star。猎犬AM型星
+AM CVn variable 全称:AM Canum Venaticorum variable。猎犬AM型变星
+AM Canum Venaticorum binary 缩写:AM CVn binary。猎犬AM型双星
+AM Canum Venaticorum star 缩写:AM CVn star。猎犬AM型星
+AM Canum Venaticorum variable 缩写:AM CVn variable。猎犬AM型变星
+AM Her binary 全称:AM Herculis binary。武仙AM型双星
+AM Herculis binary 缩写:AM Her binary。武仙AM型双星
+AMANDA 全称:Antarctic Muon And Neutrino Detector Array。南极μ子和中微子探测器阵
+AMC 全称:Automatic Meridian Circle。自动子午环
+AMPTE 全称:Active Magnetospheric Particle Tracer Explorer。活动磁层粒子示踪探测器
+AMR 1、全称:adaptive mesh refinement。自适应网格细化; 2、全称:age-metallicity relationship。年龄-金属丰度关系
+AMS-02 全称:Alpha Magnetic Spectrometer。阿尔法磁谱仪
+AMiBA 全称:Yuan Tseh Lee Array for Microwave Background Anisotropy。李远哲宇宙背景辐射阵
+AN 全称:Astronomische Nachrichten。天文通报
+ANS 全称:Astronomical Netherlands Satellite。荷兰天文卫星
+ANTARES 全称:Astronomy with α Neutrino Telescope and Abyss environmental RESearch project。天蝎座α中微子望远镜
+AO 全称:Arecibo Observatory。阿雷西博天文台
+AORS 全称:acousto-optic radio spectrometer。射电声光频谱计
+AOS 全称:acousto-optical spectrometer|; acousto-optic spectrograph。声光频谱仪
+AP 全称:Arecibo Pulsar。阿雷西博天文台脉冲星
+AP test 全称:Alcock-Paczynski test。阿尔科克-帕金斯基检验; AP检验
+APC 全称:automatic phase corrector。自动相位改正器
+APD 全称:avalanche photodiode。雪崩光电二极管
+APEX 全称:Atacama Pathfinder Experiment telescope。阿塔卡马探路者实验望远镜
+APFS 全称:Apparent Places of Fundamental Stars。基本星视位置表
+APM 1、全称:Automated Plate-Measuring System。底片自动测量系统; 2、全称:automatic plate-measuring machine。底片自动测量仪
+APM Survey 全称:Automated Plate Measuring Survey。底片自动测量巡天; APM巡天
+APM galaxy catalogue 全称:Automatic Plate Measuring galaxy catalogue。底片自动测量星系表; APM星系表
+APO 全称:Apache Point Observatory。阿帕奇天文台
+APR 全称:active prominence region。活动日珥区
+APS 全称:active pixel detector。主动像元传感器
+APT 1、全称:Australian Patrol Telescope。澳洲巡天望远镜; 2、全称:automatic photoelectric telescope。自动光电测光望远镜
+AR Lac star 全称:AR Lacertae star。蝎虎AR型星
+AR Lacertae star 缩写:AR Lac star。蝎虎AR型星
+ARAA 全称:Annual Review of Astronomy and Astrophysics。天文学和天体物理学年评
+ARC 全称:Australian Research Council。澳大利亚研究委员会
+ARC projection 心射投影
+ARGO-YBJ 全称:Astrophysical Radiation with Ground-based Observatory at YangBaJing。羊八井ARGO实验
+ARIEL 全称:Atmospheric Remote-sensing Infrared Exoplanet Large-survey。系外行星大气遥感红外大型巡天; 瞪羚号[系外行星探测器]
+ARISE 全称:Advanced Radio Interferometer between Space and Earth。高新空地射电干涉仪
+ARMA 全称:autoregressive-moving average。自回归移动平均
+ARO 全称:Algonquin Radio Observatory。阿尔冈金射电天文台
+ARTEMIS 全称:Acceleration, Reconnection, Turbulence and Electrodynamics of the Moon's Interaction with the Sun。阿尔忒弥斯号月球探测器
+ASA 全称:Astronomical Society of Australia。澳大利亚天文学会
+ASAS 全称:All-Sky Automated Survey。自动化全天巡视
+ASCA 全称:Advanced Satellite for Cosmology and Astrophysics; Astro-D。宇宙学与天体物理先进卫星; 飞鸟号
+ASJ 全称:Astronomical Society of Japan。日本天文学会
+ASKAP 全称:Australian Square Kilometre Array Pathfinder。澳大利亚平方千米阵探路者
+ASP 全称:Astronomical Society of the Pacific。太平洋天文学会
+ASSA 全称:Astronomical Society of Southern Africa。南非天文学会
+AST 全称:Atlantic Standard Time。大西洋标准时间
+ASTP 全称:Apollo-Soyuz Test Project。阿波罗-联盟号实验计划
+ASTRO-F 光亮号
+ASTRO-H ASTRO-H X射线天文卫星
+ASTRON 全称:automatic astronomical station。天体号
+AT 1、全称:Australia Telescope。澳大利亚巨型望远镜; 2、全称:atomic time。原子时
+AT-cut AT切割
+ATA 全称:Allen Telescope Array。艾伦望远镜阵
+ATC 全称:Automatic Transit Circle。自动子午环
+ATCA 全称:Australia Telescope Compact Array。澳大利亚望远镜致密阵
+ATHENA 全称:Advanced Telescope for High ENergy Astrophysics。高能天体物理高新望远镜; 雅典娜望远镜
+ATIC 全称:Advanced Thin Ionization Calorimeter experiment。高新薄离子量能器实验
+ATM 全称:Apollo Telescope Mount。阿波罗望远镜装置
+ATNF 全称:Australia Telescope National Facility。澳大利亚望远镜国家研究所
+ATST 全称:Advanced Technology Solar Telescope。高新技术太阳望远镜
+AU 全称:astronomical unit。天文单位
+AU Microscopii 显微镜座AU型星
+AURA 全称:Association of Universities for Research in Astronomy。大学天文研究联合组织
+AVO 全称:Astrophysical Virtual Observatory。天体物理虚拟天文台
+AXAF 全称:Advanced X-ray Astrophysics Facility。高新X射线天体物理台
+AXP 全称:anomalous X-ray pulsar。反常X射线脉冲星
+Abalos Colles 阿瓦洛斯小丘群
+Abalos Mensa 阿瓦洛斯桌山
+Abalos Scopuli 阿瓦洛斯断崖群
+Abalos Undae 阿瓦洛斯沙丘群
+Aban crater 阿班陨击坑
+Abbe comparator 阿贝比长仪
+Abbe crater 阿贝环形山
+Abel crater 阿贝尔环形山
+Abel integral 阿贝尔积分
+Abel's integral equation 阿贝尔积分方程
+Abelian symmetry 阿贝尔对称性
+Abell Catalogue 艾贝尔星系团表
+Abell cluster 艾贝尔星系团
+Abell radius 艾贝尔半径
+Abell richness class 艾贝尔富度
+Abulfeda crater 艾布·菲达环形山
+Abus Vallis 阿布斯峡谷
+Ac 全称:actinium。锕
+Acamar 天园六
+Acceleration, Reconnection, Turbulence and Electrodynamics of the Moon's Interaction with the Sun 缩写:ARTEMIS。阿尔忒弥斯号月球探测器
+Achar crater 阿查尔陨击坑
+Achernar 水委一
+Acheron Catena 阿刻戎坑链
+Acheron Fossae 阿刻戎堑沟群
+Achilles 阿基里斯
+Achilles group 阿基里斯群
+Achird 王良三
+Acidalia Colles 阿西达利亚小丘群
+Acidalia Mensa 阿西达利亚桌山
+Acidalia Planitia 阿西达利亚平原
+Acrab 房宿四
+Acraman crater 阿克拉曼陨星坑
+Acrux 十字架二
+Acta Astronomica 天文学报
+Active Magnetospheric Particle Tracer Explorer 缩写:AMPTE。活动磁层粒子示踪探测器
+Acubens 柳宿增三
+AdS 全称:anti-de Sitter space。反德西特空间
+AdS/CFT correspondence 全称:Anti-de Sitter/Conformal Field Theory correspondence。反德西特/共形场论对应性
+Ada crater 埃达陨击坑
+Adamas Labyrinthus 阿达马斯沟网
+Adams crater 1、亚当斯环形山; 2、亚当斯陨击坑
+Adams ring 亚当斯环
+Adams-Russell phenomenon 亚当斯-罗素现象
+Adara 弧矢七
+Addams crater 亚当斯环形山
+Adhafera 轩辕十一
+Adhara 弧矢七
+Adhil 天大将军增一; 天大将军增二
+Adib 右枢; 紫微右垣一
+Adlivun Cavus 埃德里文凹地
+Adonis 阿多尼斯
+Adrastea 木卫十五
+Advanced Composition Explorer 缩写:ACE。高新成分探测器
+Advanced Laser Interferometer Gravitational-wave Observatory 缩写:aLIGO。高新激光干涉仪引力波天文台
+Advanced Liquid-mirror Probe for Astrophysics,Cosmology and Asteroids 缩写:ALPACA。阿尔帕卡望远镜
+Advanced Radio Interferometer between Space and Earth 缩写:ARISE。高新空地射电干涉仪
+Advanced Satellite for Cosmology and Astrophysics 缩写:ASCA。宇宙学与天体物理先进卫星; 飞鸟号
+Advanced Technology Solar Telescope 缩写:ATST。高新技术太阳望远镜
+Advanced Telescope for High ENergy Astrophysics 缩写:ATHENA。高能天体物理高新望远镜; 雅典娜望远镜
+Advanced Thin Ionization Calorimeter experiment 缩写:ATIC。高新薄离子量能器实验
+Advanced X-ray Astrophysics Facility 缩写:AXAF。高新X射线天体物理台
+Advances In Space Research 空间研究进展
+Ae star Ae星; A型发射线星
+Aegaeon 土卫五十三
+Aegina 河神星
+Aegir 土卫三十六
+Aegis 慧卫一
+Aegle 辉神星
+Aeneas crater 埃涅阿斯环形山
+Aeolis 埃俄利斯
+Aeolis Chaos 埃俄利斯混杂地
+Aeolis Dorsa 埃俄利斯山脊群
+Aeolis Mensae 埃俄利斯桌山群
+Aeolis Mons 埃俄利斯山
+Aeolis Palus 埃俄利斯沼
+Aeolis Planum 埃俄利斯高原
+Aeolis Serpens 埃俄利斯蛇状脊
+Aeria 埃里亚
+Aesacus Dorsum 埃萨科斯山脊
+Aetheria 埃忒里亚
+Aethiopis 埃塞俄比斯
+Affleck-Dine mechanism 阿弗莱克-戴恩机制
+Ag 全称:silver。银
+Agamemnon 阿伽梅农
+Aganippe Fossa 阿伽尼佩堑沟
+Agassiz crater 阿加西陨击坑
+Agena 马腹一
+Aglaja 仁神星
+Aglaonice crater 艾格洛尼克环形山
+Ahfa al Farkadain 勾陈四
+Ahnighito meteorite 阿尼吉托陨星
+Aiguoxiang 艾国祥
+Ain 毕宿一
+Ain al Rami 人马座ν
+Ainalrami 建增六
+Air Almanac 缩写:A.A.。美国航空历书
+Airy crater 艾里陨击坑
+Airy diffraction pattern 艾里衍射图样
+Airy disk 艾里斑
+Airy function 艾里函数
+Airy transit circle 艾里子午环
+Airy-0 crater 艾里-0陨击坑
+Aitken crater 艾特肯环形山
+Aitken's Double Star Catalogue 缩写:ADS。艾特肯双星表; ADS双星表
+Aitne 木卫三十一
+Ajon crater 艾翁陨击坑
+Akaike information criterion 缩写:AIC。赤池信息判据
+Akari 光亮号
+Akatsuki 拂晓号
+Akeno Giant Air Shower Array 缩写:AGASA。明野巨型空气簇射阵
+Aki crater 安艺陨击坑
+Akna Montes 阿克娜山脉
+Aktaj crater 阿克泰陨击坑
+Al 全称:aluminium。铝
+Al Dhanab 败臼一
+Al Gieba 轩辕十二
+Al Giedi 摩羯座α
+Al Jabhah 轩辕十三
+Al Kalb al Rai 少卫增七
+Al Kaprah 上台二; 二台二
+Al Kurud 孙二
+Al Maaz 柱一
+Al Minliar al Asad 轩辕七
+Al Minliar al Shuja 柳宿二
+Al Nasl 箕宿一
+Al Niyat 心宿一
+Al Rukbah al Dajajah 天津增三十四
+Al Sharas 翼宿十六
+Al Sharasif 翼宿十六
+Al Suhail al Muhlif 天社一
+Al Suhail al Wazn 天记
+Al Tarf 柳宿增十
+Al-Amal probe 祈望号探测器
+Al-Biruni crater 比鲁尼环形山
+Al-Idrisi Montes 伊德里西山脉
+Al-Qahira Vallis 卡希拉峡谷
+Al-Zij-Ilkhani 《伊尔汗历表》; 《波斯历书》
+Aladfar 辇道; 辇道二
+Alamos crater 阿拉莫斯陨击坑
+Alaraph 右执法; 太微右垣一
+Alasco 勾陈增九
+Alathfar 织女增三
+Alba Catena 阿尔巴坑链
+Alba Fossae 阿尔巴堑沟群
+Alba Mons 阿尔巴山
+Alba Patera 阿尔巴山口
+Albaldah 建三
+Albali 女宿一
+Albany crater 奥尔巴尼陨击坑
+Albategnius crater 巴塔尼环形山
+Albert 阿尔伯特
+Albi crater 阿尔比陨击坑
+Albion 阿尔比翁
+Albiorix 土卫二十六
+Albireo 辇道增七
+Albor Fossae 阿尔沃尔堑沟群
+Albor Tholus 阿尔沃尔山丘
+Albulaan 女宿一
+Alchiba 右辖
+Alcock-Paczynski test 缩写:AP test。阿尔科克-帕金斯基检验; AP检验
+Alcor 辅; 开阳增一
+Alcott crater 奥尔科特环形山
+Alcyone 昴宿六
+Alcyonia Lacus 阿尔库俄涅湖
+Aldebaran 毕宿五
+Alden crater 奥尔登环形山
+Alder crater 阿尔德环形山
+Alderamin 天钩五
+Aldhanab 败臼一
+Aldhibah 上弼; 紫微右垣四
+Aldhibain 少宰; 紫微左垣三
+Aldrin crater 奥尔德林环形山
+Aldulfin 败瓜一
+Alekhin crater 阿廖欣环形山
+Alexander Wylie 伟烈亚力
+Alexander crater 亚历山大环形山
+Alexander de Gouvea 汤士选
+Alexandra 哲女星
+Alexandra family 哲女星族
+Alexandrian calendar 亚历山大历
+Alexey Tolstoy crater 阿列克谢·托尔斯泰陨击坑
+Alexhelios 艳卫一
+Alfard 星宿一
+Alfecca Meridiana 鳖六
+Alfirk 上卫增一
+Alfven drift wave 阿尔文漂移波
+Alfven frequency 阿尔文频率
+Alfven number 阿尔文数
+Alfven speed 阿尔文速率
+Alfven surface 阿尔文表面
+Alfven turbulence 阿尔文湍动
+Alfven velocity 阿尔文速度
+Alfven wave 阿尔文波
+Alfven wave instability 阿尔文波不稳定性
+Alfven's theory 阿尔文理论
+Alga 徐; 天市左垣七
+Alga crater 阿尔加陨击坑
+Algedi 摩羯座α
+Algedi Prima 牛宿增六
+Algedi Secunda 牛宿二
+Algenib 壁宿一
+Algenubi 轩辕九
+Algieba 轩辕十二
+Algiedi Secunda 牛宿二
+Algjebba 参宿增三
+Algol 大陵五
+Algol binary 大陵型双星
+Algol paradox 大陵佯谬
+Algol star 大陵型星
+Algol system 大陵型双星
+Algol variable 大陵型变星
+Algol-type binary 大陵型双星
+Algol-type eclipsing variable 大陵型食变星
+Algol-type variable 大陵型变星
+Algols 大陵型星
+Algomeyla 南河二
+Algonquin Radio Observatory 缩写:ARO。阿尔冈金射电天文台
+Algorab 轸宿三
+Alharem 海山增二
+Alhena 井宿三
+Alioth 玉衡; 北斗五
+Alitus crater 阿利图斯陨击坑
+Aljanah 天津九
+Alkaid 摇光; 北斗七
+Alkalurops 七公六
+Alkaphrah 太阳守
+Alkarab 危宿增六
+Alkes 翼宿一
+Alkmene 怨女星
+All-Sky Automated Survey 缩写:ASAS。自动化全天巡视
+All-Sky Release Catalogue 全天辐射源表
+Allan hills 84001 艾伦丘陵陨石84001
+Allan variance 阿伦方差
+Allegheny Observatory 阿勒格尼天文台
+Allegheny Vallis 阿勒格尼峡谷
+Allen Telescope Array 缩写:ATA。艾伦望远镜阵
+Allende crater 阿连德陨星坑
+Allende meteorite 阿连德陨星
+Almaaz 柱一
+Almach 天大将军一
+Almagest 《天文学大成》; 《至大论》
+Almahata Sitta Meteorite 六号车站陨石
+Almuredin 东次将; 太微左垣四
+Alnair 鹤一
+Alnasl 箕宿一
+Alnath 五车五
+Alnif crater 艾勒尼夫陨击坑
+Alnilam 参宿二
+Alnitak 参宿一
+Alniyat 心宿一
+Alofi crater 阿洛菲陨击坑
+Alpha Cygnids 天鹅座α流星群
+Alpha Magnetic Spectrometer 缩写:AMS-02。阿尔法磁谱仪
+Alpha Regio 阿尔法区
+Alpha Scorpiids 天蝎座α流星群
+Alphard 星宿一
+Alphecca 贯索四
+Alpheratz 壁宿二
+Alpherg 右更二
+Alpheus Colles 阿尔甫斯小丘群
+Alphikra Australis 上台二; 二台二
+Alphonsus crater 阿方索环形山
+Alps crater 阿尔卑斯环形山
+Alrakis 天棓增九
+Alrami 天渊三
+Alrescha 外屏七
+Alsafi 天厨二
+Alsahm 左旗一
+Alschain 河鼓一
+Alsciaukat 上台增四
+Alsephina 天社三
+Alshain 虚宿一
+Alshat 牛宿增七
+Alsuhail 天记
+Altair 河鼓二; 牛郎星; 牵牛星
+Altais 天厨一
+Altawabi 五车一
+Alterf 轩辕八
+Althalimain 天弁七
+Altjira 寰神星
+Aludra 弧矢二
+Alula Australis 下台二; 三台六
+Alula Borealis 下台一; 三台五
+Alvaldi 土卫六十五
+Alwaid 天棓三
+Alya 徐; 天市左垣七
+Alzirr 井宿四
+Am 全称:americium。镅
+Am star Am星; A型金属线星
+Amalthea 1、木卫五; 2、羊神星
+Amati relation 阿马蒂关系
+Amazonis 亚马孙
+Amazonis Mensa 亚马孙桌山
+Amazonis Planitia 亚马孙平原
+Amazonis Sulci 亚马孙沟脊地
+Amelia Creek crater 阿米利亚溪陨星坑
+Amenthes 阿蒙蒂斯
+Amenthes Cavi 阿蒙蒂斯凹地群
+Amenthes Fossae 阿蒙蒂斯堑沟群
+Amenthes Planum 阿蒙蒂斯高原
+Amenthes Rupes 阿蒙蒂斯峭壁
+American Association of Variable Star Observers 缩写:AAVSO。美国变星观测者协会
+American Astronomical Society 缩写:AAS。美国天文学会
+Ames Research Center 艾姆斯研究中心
+Amet crater 阿梅德陨击坑
+Amici crater 阿米奇环形山
+Amici prism 阿米奇棱镜
+Ammavaru Volcano 阿玛瓦鲁火山
+Ammonii Rupes 阿摩尼峭壁
+Amor 阿莫尔
+Amor asteroid 阿莫尔型小行星
+Amor group 阿莫尔群
+Amors 阿莫尔型小行星
+Amphitrite 海后星
+Amphitrites Patera 安菲特里忒山口
+Amsterdam crater 阿姆斯特丹陨击坑
+Amundsen crater 阿蒙森环形山
+Analog-Digital Unit 缩写:ADU。模数转换单元
+Ananke 木卫十二
+Anaximander crater 阿那克西曼德环形山
+Anaximenes crater 阿那克西米尼环形山
+Ancha 泣二
+Anchentenar 天苑九
+Anchises 安希塞斯
+And 全称:Andromeda。仙女座
+Andapa crater 安达帕陨击坑
+Anderson crater 安德森环形山
+Andoyer variable 安多耶变量
+Andrew Patton Happer 哈巴安德
+Andromeda 缩写:And。仙女座
+Andromeda galaxy 仙女星系
+Andromeda nebula 仙女星云
+Andromeda subgroup 仙女次星系群
+Andromedids 仙女流星群; 仙女座流星群
+Andréas Pereira 徐懋德
+Aneas 阿涅阿斯
+Angelica crater 安杰利卡陨击坑
+Angelina 安杰利纳
+Angetenar 天苑九
+Anglee 李安
+Anglo-Australian Observatory 缩写:AAO。英澳天文台
+Anglo-Australian Planet Search 英澳行星搜寻计划
+Anglo-Australian Telescope 缩写:AAT。英澳望远镜
+Angrboda 土卫五十五
+Angu crater 安古陨击坑
+Angusta Patera 安古斯图斯山口
+Angustus Labyrinthus 安古斯图斯沟网
+Anhui 安徽
+Aniak crater 阿尼亚克陨击坑
+Anio Valles 阿尼奥峡谷群
+Ankaa 火鸟六
+Annales Geophysicae 地球物理学年鉴
+Annapolis crater 安纳波利斯陨击坑
+Annefrank 安妮
+Anno Domini 缩写:A.D.。公元
+Anno Hegirae 缩写:A.H.。伊斯兰纪元
+Anno Lucis 缩写:A.L.。露西纪元
+Annual Review of Astronomy and Astrophysics 缩写:ARAA。天文学和天体物理学年评
+Annual Review of Earth and Planetary Sciences 地球与行星科学年评
+Anoré Rodrgues 安国宁
+Anser 齐增五
+Anseris Cavus 安西瑞斯凹地
+Anseris Mons 安西瑞斯山
+Ansgarius crater 安斯加尔环形山
+Anshan 鞍山
+Ant 全称:Antlia。唧筒座
+Ant Nebula 蚂蚁星云
+Antarctic Muon And Neutrino Detector Array 缩写:AMANDA。南极μ子和中微子探测器阵
+Antarctic astronomy 南极天文学
+Antares 心宿二; 大火
+Antennae Galaxies 触须星系
+Anthe 土卫四十九
+Anthropic Cosmological Principle 宇宙学人择原理
+Anti-de Sitter/Conformal Field Theory correspondence 缩写:AdS/CFT correspondence。反德西特/共形场论对应性
+Antilochus 安蒂洛库斯
+Antiope 休神星
+Antlia 缩写:Ant。唧筒座
+Antlia Dwarf Galaxy 唧筒座矮星系
+Antoine Thomas 安多
+Antoniadi crater 1、安东尼亚迪环形山; 2、安东尼亚迪陨击坑
+Antoniadi scale 安东尼亚迪视宁标度
+Antonius Gogeisl 鲍友管
+Antonov-Lebovitz theorem 安东诺夫-列波维茨定理
+Anuchin crater 阿努钦环形山
+Aoede 木卫四十一
+Aokeda 澳科大
+Aonia Mons 阿俄尼亚山
+Aonia Planum 阿俄尼亚高原
+Aonia Terra 阿俄尼亚台地
+Aonia Tholus 阿俄尼亚山丘
+Aonium Sinus 阿俄尼欧姆湾
+Aouelloul crater 奥埃洛陨星坑
+Aoyunzhiyuanzhe 奥运志愿者
+Ap index Ap指数
+Ap star 全称:peculiar A star。Ap星; A型特殊星
+ApJ 全称:Astrophysical Journal。天体物理学报
+ApJL 全称:Astrophysical Journal Letters。天体物理学报通信
+ApJS 全称:Astrophysical Journal Supplement Series。天体物理学报增刊
+ApSS 全称:Astrophysics and Space Science。天体物理和空间科学
+Apache Point Observatory 缩写:APO。阿帕奇天文台
+Aphrodite Terra 阿佛洛狄忒台地
+Apia crater 阿皮亚陨击坑
+Apis 蜜蜂座
+Apodis Catena 阿波迪斯坑链
+Apollinaris Mons 阿波利纳里斯山
+Apollinaris Patera 阿波利纳里斯山口
+Apollinaris Sulci 阿波利纳里斯沟脊地
+Apollinaris Tholus 阿波利纳里斯山丘
+Apollo 1、北河二; 2、阿波罗; 3、阿波罗飞船
+Apollo Lunar Surface Experiments Package 缩写:ALSEP。阿波罗月面实验装置
+Apollo Patera 阿波罗山口
+Apollo Telescope Mount 缩写:ATM。阿波罗望远镜装置
+Apollo asteroid 阿波罗型小行星
+Apollo crater 阿波罗环形山
+Apollo group 阿波罗群
+Apollo mission 阿波罗任务
+Apollo project 阿波罗计划
+Apollo-Amor object 阿波罗-阿莫尔型天体
+Apollo-Soyuz Test Project 缩写:ASTP。阿波罗-联盟号实验计划
+Apollonius crater 阿波罗尼奥斯环形山
+Apollos 阿波罗型小行星
+Apophis 毁神星
+Apparent Places of Fundamental Stars 缩写:APFS。基本星视位置表
+Appleton crater 阿普顿环形山
+Appleton layer 阿普顿层
+April Lyrid meteor shower 四月天琴流星雨; 四月天琴座流星雨
+Aps 全称:Apus。天燕座
+Apsus Vallis 阿卜苏斯峡谷
+Apt crater 阿普特陨击坑
+Apus 缩写:Aps。天燕座
+Aql 全称:Aquila。天鹰座
+Aqr 1、全称:Aquarius。宝瓶宫; 玄枵; 子宫; 2、全称:Aquarius。宝瓶座
+Aquarids 宝瓶流星群; 宝瓶座流星群
+Aquarius 1、缩写:Aqr。宝瓶宫; 玄枵; 子宫; 2、缩写:Aqr。宝瓶座
+Aquila 缩写:Aql。天鹰座
+Aquila Rift 天鹰座暗隙
+Ar 全称:argon。氩
+ArVO 全称:Armenian Virtual Observatory。亚美尼亚虚拟天文台
+Ara 1、天坛座; 2、阿拉
+Arabia 阿拉伯
+Arabia Terra 阿拉伯台地
+Arago Dorsa 阿拉戈山脊群
+Arago crater 阿拉戈陨击坑
+Arago distance 阿拉戈距离
+Arago point 阿拉戈点
+Arago ring 阿拉戈环
+Araguainha crater 阿拉瓜伊尼亚陨星坑
+Aram Chaos 阿拉姆混杂地
+Aram Dorsum 阿拉姆山脊
+Arandas crater 阿兰达斯陨击坑
+Arcadia 阿耳卡狄亚
+Arcadia Dorsa 阿耳卡狄亚山脊群
+Arcadia Planitia 阿耳卡狄亚平原
+Arche 木卫四十三
+Archeops 祖翼鸟
+Arches cluster 弓星团
+Archimedes crater 阿基米德环形山
+Archimedes spiral 阿基米德螺线
+Archimedes spiral field 阿基米德旋涡场
+Arcminute Cosmology Bolometer Array Receiver 缩写:ACBAR。角分宇宙学辐射热计阵
+Arctic Circle 缩写:AC。北极圈
+Arctic pole 北极
+Arctic zone 北极区
+Arcturus 大角
+Arcturus group 大角星群
+Arda Valles 阿尔达峡谷群
+Arecibo Legacy Fast ALFA Survey 缩写:ALFALFA。阿雷西博遗珍快速ALFA巡天; 苜蓿巡天
+Arecibo Observatory 缩写:AO。阿雷西博天文台
+Arecibo Pulsar 缩写:AP。阿雷西博天文台脉冲星
+Arecibo radio telescope 阿雷西博射电望远镜
+Arena Colles 阿雷纳小丘群
+Arena Dorsum 阿雷纳山脊
+Arena Rupes 阿雷纳峭壁
+Arend-Roland comet 阿连德-罗兰彗星
+Ares Vallis 阿瑞斯峡谷
+Arete 阿雷特
+Arethusa 源神星
+Argas crater 阿尔加斯陨击坑
+Argelander method 阿格兰德法
+Argentea Planum 银色高原
+Argo 全称:Argo Navis。天舟座; 南船座
+Argo Chasma 阿尔戈深谷
+Argo Navis 缩写:Argo。天舟座; 南船座
+Argyre 阿耳古瑞
+Argyre Cavi 阿耳古瑞凹地群
+Argyre Mons 阿耳古瑞山
+Argyre Planitia 阿耳古瑞平原
+Argyre Rupes 阿耳古瑞峭壁
+Ari 1、全称:Aries。白羊宫; 降娄; 戌宫; 2、全称:Aries。白羊座
+Ariadne 爱女星
+Ariadnes Colles 阿里阿德涅小丘群
+Ariane 阿丽亚娜运载火箭
+Arica crater 阿里卡陨击坑
+Ariel 1、天卫一; 2、羚羊号
+Ariel 6 羚羊6号天文卫星
+Ariel VI 羚羊6号天文卫星
+Aries 1、缩写:Ari。白羊宫; 降娄; 戌宫; 2、缩写:Ari。白羊座
+Arietids 白羊流星群; 白羊座流星群
+Arima crater 阿里马陨击坑
+Arimanes Rupes 阿里曼峭壁
+Aristarchus crater 阿利斯塔克环形山
+Aristoteles crater 亚里士多德环形山
+Arizona crater 亚利桑那陨星坑
+Arizona meteor crater 亚利桑那陨星坑
+Arkab Posterior 天渊一
+Arkab Prior 天渊二
+Arkhangelsky crater 阿尔汉格尔斯基陨击坑
+Armenian Virtual Observatory 缩写:ArVO。亚美尼亚虚拟天文台
+Armenian calendar 亚美尼亚历
+Armstrong crater 阿姆斯特朗环形山
+Arneb 厕一
+Arnold crater 阿诺尔德环形山
+Arnold diffusion 阿诺德扩散
+Arnold web 阿诺德网
+Arnon 亚嫩
+Arnowitt-Deser-Misner formalism 缩写:ADM formalism。ADM 形式
+Arnus Vallis 阿努斯峡谷
+Aromatum Chaos 阿罗马特姆混杂地
+Array of Low-Energy X-ray Imaging Sensors 缩写:ALEXIS。亚历克西斯号; 低能X射线成像传感器阵列
+Arrhenius crater 阿雷纽斯陨击坑
+Arsia Chasmata 阿尔西亚深谷群
+Arsia Mons 阿尔西亚山
+Arsia Sulci 阿尔西亚沟脊地
+Arsinoes Chaos 阿耳西诺厄混杂地
+Arta crater 阿尔塔陨击坑
+Artamonov crater 阿尔塔莫诺夫环形山
+Artemis 群女星
+Artemis Chasma 阿尔忒弥斯深谷
+Artemis Corona 阿尔忒弥斯地冕
+Artik crater 阿尔蒂克陨击坑
+Artynia Catena 阿提尼亚坑链
+Arzachel crater 阿尔扎赫尔环形山
+As 全称:arsenic。砷
+Asad Australis 轩辕九
+Asau crater 阿绍陨击坑
+Ascella 斗宿六
+Aschere 狼星; 天狼[星]
+Ascraeus Chasmata 阿斯克劳深谷群
+Ascraeus Mensa 阿斯克劳桌山
+Ascraeus Mons 阿斯克劳山
+Ascraeus Sulci 阿斯克劳沟脊地
+Ascuris Planum 阿斯库里斯高原
+Asellus Australis 鬼宿四
+Asellus Borealis 鬼宿三
+Asellus Primus 天枪三
+Asellus Secundus 天枪二
+Asellus Tertius 天枪一
+Ashbrook crater 阿什布鲁克环形山
+Ashlesha 柳宿五
+Asia 亚女星; 亚细亚
+Asimov crater 阿西莫夫陨击坑
+Asmidiske 弧矢增十七
+Asopus Vallis 阿索波斯峡谷
+Aspen crater 阿斯彭陨击坑
+Aspidiske 海石二
+Aspledon Undae 阿斯普勒冬沙丘群
+Association of Universities for Research in Astronomy 缩写:AURA。大学天文研究联合组织
+Astapus Colles 阿斯塔普斯小丘群
+Asterion 常陈四
+Asterope 昴宿三
+Astraea 义神星
+Astro-1 天星一号
+Astro-2 天星二号
+Astro-A 火鸟号
+Astro-B 天马号
+Astro-C 银河号
+Astro-D 缩写:ASCA。宇宙学与天体物理先进卫星; 飞鸟号
+Astro-EⅡ 朱雀号
+AstroGrid 全称:Virtual Observatory United Kingdom。英国虚拟天文台
+Astrobiology 天体生物学
+Astrographic Catalogue 缩写:AC。照相天图星表
+Astroinformatics 天文信息学
+Astronomer Royal 1、太史令; 2、皇家天文学家
+Astronomer Royal for Scotland 苏格兰皇家天文学家
+Astronomical Bureau 钦天监; 司天监
+Astronomical Chapter 天文志
+Astronomical Data Archiving System 缩写:ADAS。天文数据存档系统
+Astronomical Journal 缩写:AJ。天文学报
+Astronomical Netherlands Satellite 缩写:ANS。荷兰天文卫星
+Astronomical Society of Australia 缩写:ASA。澳大利亚天文学会
+Astronomical Society of Japan 缩写:ASJ。日本天文学会
+Astronomical Society of Southern Africa 缩写:ASSA。南非天文学会
+Astronomical Society of the Pacific 缩写:ASP。太平洋天文学会
+Astronomische Gesellschaft 缩写:AG。德国天文学会
+Astronomische Gesellschaft Katalog 缩写:AGK。AGK星表
+Astronomische Nachrichten 缩写:AN。天文通报
+Astronomischer Jahresbericht 缩写:AJB。天文年报
+Astronomy & Geophysics 天文学与地球物理学
+Astronomy Letters 天文学通信
+Astronomy Reports 天文学报告
+Astronomy Satellite D2B D2B号天文卫星
+Astronomy and Astrophysics 缩写:A&A; AAp。天文学和天体物理学
+Astronomy and Astrophysics Abstracts 缩写:AAA。天文学和天体物理学文摘
+Astronomy and Astrophysics Review 天文学与天体物理学评论
+Astronomy with α Neutrino Telescope and Abyss environmental RESearch project 缩写:ANTARES。天蝎座α中微子望远镜
+Astroparticle Physics 天体粒子物理学
+Astrophysical Journal 缩写:ApJ。天体物理学报
+Astrophysical Journal Letters 缩写:ApJL。天体物理学报通信
+Astrophysical Journal Supplement Series 缩写:ApJS。天体物理学报增刊
+Astrophysical Radiation with Ground-based Observatory at YangBaJing 缩写:ARGO-YBJ。羊八井ARGO实验
+Astrophysical Virtual Observatory 缩写:AVO。天体物理虚拟天文台
+Astrophysics 天体物理学
+Astrophysics Data System 缩写:ADS。天体物理数据系统
+Astrophysics and Space Science 缩写:ApSS。天体物理和空间科学
+Astrosat 天文号卫星
+At 全称:astatine。砹
+Atacama Cosmology Telescope 缩写:ACT。阿塔卡马宇宙学望远镜
+Atacama Large Millimeter/sub-millimeter Array 缩写:ALMA。阿塔卡马大型毫米[/亚毫米]波阵
+Atacama Pathfinder Experiment telescope 缩写:APEX。阿塔卡马探路者实验望远镜
+Atalante 驰神星
+Ate 苟神星
+Aten 阿登
+Aten asteroid 阿登型小行星
+Aten group 阿登群
+Athabasca Valles 阿萨巴斯卡峡谷群
+Athebyne 少宰; 紫微左垣三
+Athena Patera 雅典娜山口
+Ati 卷舌增七
+Atik 卷舌增七
+Atira 阿提娜
+Atlantic Standard Time 缩写:AST。大西洋标准时间
+Atlantis Chaos 亚特兰蒂斯混杂地
+Atlantis Mons 亚特兰蒂斯山
+Atlas 1、土卫十五; 2、昴宿七
+Atlas crater 阿特拉斯环形山
+Atlas of Peculiar Galaxies 特殊星系图集
+Atmospheric Imaging Assembly 大气成像组件
+Atmospheric Remote-sensing Infrared Exoplanet Large-survey 缩写:ARIEL。系外行星大气遥感红外大型巡天; 瞪羚号[系外行星探测器]
+Atomic Time 1 缩写:A1。A1原子时
+Atomichron 原子钟
+Atrax Dorsum 阿特腊克斯山脊
+Atrax Fossa 阿特腊克斯堑沟
+Atria 三角形三
+Au 全称:gold。金
+Auce crater 奥采陨击坑
+Auger effect 俄歇效应
+Auger shower 俄歇簇射
+August meteors 八月流星雨
+Augusta 奥古斯塔
+Augusta family 奥古斯塔族
+Augustin Von Hallerstein 刘松龄
+Auki crater 奥基陨击坑
+Auqakuh Vallis 奥卡库峡谷
+Aur 全称:Auriga。御夫座
+Aura 1、大气号; 2、奥拉号
+Aureole 日晕号
+Aureum Chaos 金色混杂地
+Auriga 缩写:Aur。御夫座
+Aurora 1、彩神星; 2、极光号
+Aurorae 曙光号
+Aurorae Chaos 奥罗拉混杂地
+Aurorae Planum 奥罗拉高原
+Aurorae Sinus 奥罗拉湾
+Aus-VO 全称:Australian Virtual Observatory。澳大利亚虚拟天文台
+Ausonia 1、奥索尼亚; 2、奥索尼亚
+Ausonia Cavus 奥索尼亚凹地
+Ausonia Mensa 奥索尼亚桌山
+Ausonia Montes 奥索尼亚山脉
+Australe Lingula 南极舌状地
+Australe Mensa 南极桌山
+Australe Montes 南极山脉
+Australe Scopuli 南极断崖群
+Australe Sulci 南极沟脊地
+Australia Telescope 缩写:AT。澳大利亚巨型望远镜
+Australia Telescope Compact Array 缩写:ATCA。澳大利亚望远镜致密阵
+Australia Telescope National Facility 缩写:ATNF。澳大利亚望远镜国家研究所
+Australian Astronomical Observatory 缩写:AAO。澳大利亚天文台
+Australian Astronomical Telescope 缩写:AAT。澳大利亚望远镜
+Australian Patrol Telescope 缩写:APT。澳洲巡天望远镜
+Australian Research Council 缩写:ARC。澳大利亚研究委员会
+Australian Square Kilometre Array Pathfinder 缩写:ASKAP。澳大利亚平方千米阵探路者
+Australian Virtual Observatory 缩写:Aus-VO。澳大利亚虚拟天文台
+Australis Patera 南极山口
+Australis Tholus 南极山丘
+Automated Astronomical Positioning System 缩写:AAPS。自动天文定位系统
+Automated Plate Measuring Survey 缩写:APM Survey。底片自动测量巡天; APM巡天
+Automated Plate-Measuring System 缩写:APM。底片自动测量系统
+Automatic Meridian Circle 缩写:AMC。自动子午环
+Automatic Plate Measuring galaxy catalogue 缩写:APM galaxy catalogue。底片自动测量星系表; APM星系表
+Automatic Transit Circle 缩写:ATC。自动子午环
+Autonoe 木卫二十八
+Autumnal Equinox 秋分
+Auva 东次相; 太微左垣三
+Auxo Dorsum 奥克索山脊
+Avan crater 阿万陨击坑
+Avarua crater 阿瓦鲁阿陨击坑
+Aveiro crater 阿威罗陨击坑
+Avernus Cavi 阿佛纳斯凹地群
+Avernus Colles 阿佛纳斯小丘群
+Avernus Dorsa 阿佛纳斯山脊群
+Avernus Rupes 阿佛纳斯峭壁
+Avicenna crater 阿维森纳环形山
+Avior 海石一
+Avire crater 阿维尔陨击坑
+Avogadro crater 阿伏伽德罗环形山
+Awakening from Hibernation 惊蛰
+Axilla 斗宿六
+Axius Valles 阿克西奥司峡谷群
+Ayacucho crater 阿亚库乔陨击坑
+Ayr crater 艾尔陨击坑
+Azelfafage 螣蛇四
+Azha 天苑六
+Azimech 角宿一
+Azmidi 弧矢增十七
+Azmidiske 弧矢增十七
+Azul crater 阿苏尔陨击坑
+Azur 蓝天号
+Azure Dragon 苍龙
+Azusa crater 阿祖萨陨击坑
+B 全称:boron。硼
+B band B谱带
+B coefficient B系数
+B galaxy B星系
+B layer B层
+B mode polarization B模式偏振
+B star B型星
+B subdwarf B型亚矮星
+B supergiant B型超巨星
+B-L conservation 重子轻子差守恒
+B-V color index B-V色指数
+B-magnitude B星等
+B-type asteroid B型小行星
+B-type star B型星
+B2FH B2FH理论
+BAA 全称:British Astronomical Association。英国天文协会
+BAC 全称:British Association Catalogue。英国天文协会星表
+BAL 全称:broad absorption line。宽吸收线
+BAL quasar 全称:broad absorption-line quasar。宽吸收线类星体
+BAO 1、全称:Beijing Astronomical Observatory。北京天文台; 2、全称:Byurakan Astrophysical Observatory。布拉堪天文台; 3、全称:baryon acoustic oscillation; baryonic acoustic oscillation。重子声学振荡
+BASS 全称:Beijing Arizona sky survey。BASS巡天
+BAT 全称:γ-ray Burst Alert Telescope。γ暴预警望远镜
+BATC Survey 全称:Beijing‐Arizona‐Taiwan‐Connecticut Sky Survey。北京-亚利桑那-台北-康涅狄格巡天
+BBGKY hierarchy 全称:Bogoliubov-Born-Green-Kirkwood-Yvon hierarchy。BBGKY方程组
+BBKS transfer function 全称:Bardeen-Bond-Kaiser-Szalay transfer function。BBKS转移函数
+BBN 全称:Big Bang nucleosynthesis。大爆炸核合成
+BC 全称:bolometric correction。热改正
+BCA model 全称:Bilderberg continuum atmosphere model。比德伯格连续大气模型
+BCDG 全称:blue compact dwarf galaxy。蓝致密矮星系
+BCG 1、全称:blue compact galaxy。蓝致密星系; 2、全称:brightest cluster galaxy。最亮团星系
+BCRS 全称:Barycentric Celestial Reference System。质心天球参考系
+BD 全称:Bonner Durchmusterung。波恩星表; BD星表
+BDS 全称:Burnham's General Catalogue of Double Stars。伯纳姆双星总表
+BDUNT 全称:Baikal Deep Underwater Neutrino Telescope。贝加尔湖深水中微子望远镜
+BE 全称:Bayesian evidence。贝叶斯证据
+BGO 全称:Burke-Gaffney Observatory。伯克-加夫尼天文台
+BGO scintillator 锗酸铋闪烁体
+BH 全称:black hole。黑洞
+BIB detector 全称:blocked impurity band detector。阻杂带探测器
+BIC 全称:Bayesian information criterion。贝叶斯信息判据
+BIH 全称:Bureau International de l'Heure。国际时间局
+BIMA array 全称:Berkeley-Illinois-Maryland Association array。伯克利-伊利诺斯-马里兰联合[射电]阵; BIMA射电望远镜阵
+BIPM 全称:Bureau International des Poids et Mesures。国际计量局
+BL Her star 全称:BL Herculis star。武仙BL型星
+BL Herculis star 缩写:BL Her star。武仙BL型星
+BL Lac 全称:BL Lacertid; BL Lacertae object; Lacertid。蝎虎天体
+BL Lacertae object 缩写:BL Lac。蝎虎天体
+BL Lacertid 缩写:BL Lac。蝎虎天体
+BLR 全称:broad-line region。宽线区
+BLRG 全称:broad-line radio galaxy。宽线射电星系
+BM area BM区
+BMR 全称:bipolar magnetic region。双极磁区
+BN object 全称:Becklin-Neugebauer object。BN天体; 贝克林-诺伊格鲍尔天体
+BOSS 全称:baryon oscillation spectroscopic survey。重子振荡光谱巡天
+BP mechanism 全称:Blandford-Payne mechanism of jet formation。BP[喷流形成]机制
+BPS 全称:Bogomol'nyi-Prasad-Sommerfield bound。博格莫尼-普拉萨德-萨默菲尔德限
+BRITE Constellation 全称:BRight Target Explorer - Constellation。亮目标探测器卫星网
+BRight Target Explorer - Constellation 缩写:BRITE Constellation。亮目标探测器卫星网
+BS 全称:The Bright Star Catalogue; Catalogue of Bright Stars。亮星星表
+BSD 全称:Bergedorfer Spectral Durchmusterung。贝格多夫恒星光谱表
+BSI 全称:Bibliographical Star Index。恒星文献索引
+BTA 全称:Large Altazimuth Telescope。大型地平装置望远镜
+BV 全称:Bamberg variable。班贝格变星
+BV photometry BV测光
+BY Draconis star 天龙座BY型星
+BY Draconis variable 天龙BY型变星
+BZ mechanism 全称:Blandford-Znajek mechanism of jet formation。BZ[喷流形成]机制
+Ba 全称:barium。钡
+Ba II star 电离钡星
+Ba star 钡星
+Baade crater 巴德环形山
+Baade's Window 巴德窗
+Baade's star 巴德星
+Baade-Wesselink analysis 巴德-韦塞林克分析
+Baade-Wesselink mass 巴德-韦塞林克质量
+Baade-Wesselink method 巴德-韦塞林克方法
+Baade-Wesselink radius 巴德-韦塞林克半径
+Babakin crater 巴巴金陨击坑
+Babbage crater 巴贝奇环形山
+Babcock crater 巴布科克环形山
+Babcock magnetograph 巴布科克磁像仪
+Babinet compensator 巴俾涅补偿器
+Babylonian calendar 巴比伦历
+Bach crater 巴赫环形山
+Bacht crater 巴赫特陨击坑
+Back-Paschen effect 贝克-帕邢效应
+Backlund crater 巴克伦德环形山
+Baco crater 培根环形山
+Bacolor crater 巴科洛尔陨击坑
+Bada crater 巴达陨击坑
+Badger's equation 巴德格方程
+Badwater crater 巴德沃特陨击坑
+Baetis Chaos 巴埃蒂斯混杂地
+Baetis Chasma 巴埃蒂斯深谷
+Baetis Labēs 巴埃蒂斯坡带
+Baetis Mensa 巴埃蒂斯桌山
+Baghdad Sulcus 巴格达沟
+Baham 危宿二
+Bahn crater 巴恩陨击坑
+Bahram Vallis 巴赫拉姆峡谷
+Baikal Deep Underwater Neutrino Telescope 缩写:BDUNT。贝加尔湖深水中微子望远镜
+Bailey type variable 贝利型变星
+Baillaud crater 巴约环形山
+Bailly crater 巴伊环形山
+Baily's Beads 贝利珠
+Bajin 巴金
+Bak crater 包克陨击坑
+Baker-Nunn camera 贝克-纳恩相机
+Baker-Schmidt mirror system 贝克-施密特反射镜系统
+Baker-Schmidt telescope 贝克-施密特望远镜
+Bakhuysen crater 巴克赫伊森陨击坑
+Baktun 白克顿
+Balboa crater 1、巴尔博亚陨击坑; 2、巴尔沃亚环形山
+Balch crater 鲍尔奇环形山
+Baldet crater 1、巴尔代环形山; 2、巴尔代陨击坑
+Baldet-Johnson band 巴尔德特-约翰逊谱带
+Baldwin effect 鲍德温效应
+Ball of wool 昴宿
+Ballik-Ramsay band 巴利克-拉姆塞谱带
+Balloon Observations of Millimetric Extragalactic Radiation and Geophysics telescope 缩写:Boomerang telescope。回旋镖球载望远镜; 河外毫米波辐射气球观测和地球物理望远镜
+Balmer continuum 巴耳末连续区
+Balmer crater 巴尔末环形山
+Balmer decrement 巴耳末减幅
+Balmer discontinuity 巴耳末跳跃; 巴耳末跃变
+Balmer jump 巴耳末跳跃; 巴耳末跃变
+Balmer limit 巴耳末系限
+Balmer line 巴耳末谱线
+Balmer progression 巴耳末渐进
+Balmer series 巴耳末线系
+Balta crater 巴尔塔陨击坑
+Baltia 波罗的亚
+Baltic Astronomy 波罗的海天文学
+Baltis Valli 巴尔提斯峡谷
+Baltisk crater 波罗的斯克陨击坑
+Balvicar crater 博尔维卡陨击坑
+Bam crater 巴姆陨击坑
+Bamba crater 班巴陨击坑
+Bamberg crater 班贝格陨击坑
+Bamberg variable 缩写:BV。班贝格变星
+Bamberga 班贝格
+Banach space 巴纳赫空间
+Banachiewicz crater 巴纳赫维奇环形山
+Bancroft crater 班克罗夫特环形山
+Bandpowers 带功率
+Banes crater 巴内斯陨击坑
+Banff crater 班夫陨击坑
+Banh crater 班赫陨击坑
+Banting crater 班廷环形山
+Baphyras Catena 巴菲拉斯
+Baptistina 巴普提斯蒂娜
+Bar crater 巴尔陨击坑
+Barabashov crater 巴拉巴绍夫陨击坑
+Barbier crater 巴尔比耶环形山
+Bardeen-Bond-Kaiser-Szalay transfer function 缩写:BBKS transfer function。BBKS转移函数
+Baret Montes 巴蕾山脉
+Barlow lens 巴罗透镜
+Barnard Gap 巴纳德环缝
+Barnard crater 1、巴纳德环形山; 2、巴纳德陨击坑
+Barnard satellite 巴纳德木卫
+Barnard's Galaxy 巴纳德星系
+Barnard's Loop 巴纳德环; 巴纳德圈
+Barnard's Merope Nebula 巴纳德昴宿五星云
+Barnard's Ring 巴纳德环; 巴纳德圈
+Barnard's star 巴纳德星
+Barnett effect 巴涅特效应
+Baro crater 巴罗陨击坑
+Barringer crater 巴林杰陨星坑
+Barrow crater 巴罗环形山
+Barsukov crater 巴尔苏科夫陨击坑
+Bartel's diagram 巴特尔图
+Bartels crater 巴特尔斯环形山
+Bartels' Rotation Number 巴特尔斯转数
+Barth crater 巴思陨击坑
+Barycentric Celestial Reference System 缩写:BCRS。质心天球参考系
+Barycentric Coordinate Time 缩写:TCB。质心坐标时
+Barycentric Dynamical Time 缩写:TDB。质心力学时
+Bashkaus Valles 巴什考斯峡谷群
+Basin crater 贝森陨击坑
+Basket 箕宿
+Baten Kaitos 天仓四
+Bathys Planum 巴蒂斯高原
+Batoka crater 巴托卡陨击坑
+Batoş crater 巴托什陨击坑
+Batson crater 巴特森陨击坑
+Baucau crater 包考陨击坑
+Bauhinia 洋紫荆
+Baum crater 鲍姆陨击坑
+Baumbach corona 鲍姆巴赫日冕
+Baumbach formula 鲍姆巴赫公式
+Bautz-Morgan type 鲍茨-摩根形态型
+Bavaria 巴伐利亚
+Bay of Astronauts 宇航员湾
+Bayer constellation 拜尔星座
+Bayer designation 拜耳命名法
+Bayer letter 拜尔星名字母
+Bayer name 拜尔星名
+Bayes network 贝叶斯网
+Bayes theorem 贝叶斯定理
+Bayesian evidence 缩写:BE。贝叶斯证据
+Bayesian information criterion 缩写:BIC。贝叶斯信息判据
+Bayesian network 贝叶斯网
+Bayesian statistics 贝叶斯统计
+Baykonyr crater 拜科努尔陨击坑
+Bazas crater 巴扎斯陨击坑
+Be 全称:beryllium。铍
+Be dwarf Be矮星
+Be star Be星
+Be/X-ray binary Be/X射线双星
+Beagle 2 Mars lander 猎兔犬2火星着陆器
+Beal's classification 比尔分类
+Beatrice Fossa 贝雅特丽齐堑沟
+Beatrix 欣女星
+Beaumont crater 博蒙环形山
+Beaverhead crater 比弗黑德陨星坑
+Bebhionn 土卫三十七
+Becklin-Neugebauer object 缩写:BN object。BN天体; 贝克林-诺伊格鲍尔天体
+Becquerel crater 贝克勒耳陨击坑
+Becrux 十字架三
+Beehive Cluster 蜂巢星团
+Beemim 九州殊口四
+Beer crater 贝尔陨击坑
+Beer-Lambert law 比尔-朗伯定律
+Beethoven region 贝多芬地区
+Beginning of Autumn 立秋
+Beginning of Spring 立春
+Beginning of Summer 立夏
+Beginning of Winter 立冬
+Behaim crater 贝海姆环形山
+BeiDou Navigation Satellite System 北斗卫星导航系统
+Beid 九州殊口二
+Beiguan 北京天文馆
+Beihang 北航
+Beijerinck crater 拜耶林克环形山
+Beijing Ancient Observatory 北京古观象台
+Beijing Arizona sky survey 缩写:BASS。BASS巡天
+Beijing Astronomical Observatory 缩写:BAO。北京天文台
+Beijing Observatory 北京观象台
+Beijingaoyun 北京奥运
+Beijingdaxue 北京大学
+Beijing‐Arizona‐Taiwan‐Connecticut Sky Survey 缩写:BATC Survey。北京-亚利桑那-台北-康涅狄格巡天
+Beishida 北师大
+Beishizhang 贝时璋
+Bekenstein-Hawking entropy of black hole 贝肯斯坦-霍金黑洞熵
+Bel'kovich crater 别利科维奇环形山
+Beli 土卫六十一
+Belinda 天卫十四
+Bell crater 贝尔环形山
+Bell's theorem 贝尔定理
+Bellatrix 参宿五
+Bellingshausen crater 别林斯高晋环形山
+Bellinsgauzen crater 别林斯高晋环形山
+Bellona 战神星
+Beloha crater 贝卢哈陨击坑
+Belopol'skiy crater 别洛波利斯基环形山
+Belt of Orion 猎户腰带
+Beltra crater 贝尔特拉陨击坑
+Belva crater 贝尔瓦陨击坑
+Belyaev crater 别利亚耶夫环形山
+Belyov crater 别廖夫陨击坑
+Belz crater 贝尔兹陨击坑
+Bend crater 本德陨击坑
+Benetnash 摇光; 北斗七
+Benett comet 贝内特彗星
+Benjamin Hobson 合信
+Bennu 贝努
+Bentham crater 本特姆陨击坑
+Bentong crater 文冬陨击坑
+BepiColombo 贝比科隆博水星探测计划
+BeppoSAX 全称:Satellite per Astronomia X。贝波X射线天文卫星
+Bergedorfer Spectral Durchmusterung 缩写:BSD。贝格多夫恒星光谱表
+Bergelmir 土卫三十八
+Bergman series 伯格曼线系
+Berkeley-Illinois-Maryland Association array 缩写:BIMA array。伯克利-伊利诺斯-马里兰联合[射电]阵; BIMA射电望远镜阵
+Berkner crater 伯克纳环形山
+Berlage crater 伯尔拉赫环形山
+Bernard crater 贝尔纳陨击坑
+Bernoulli probability 伯努利概率
+Bernoulli's equation 伯努利方程
+Berosus crater 贝罗索斯环形山
+Berseba crater 贝尔塞巴陨击坑
+Beruri crater 贝鲁里陨击坑
+Berzelius crater 贝尔塞柳斯环形山
+Bessel Gap 贝塞尔环缝
+Bessel crater 贝塞尔环形山
+Bessel equation 贝塞尔方程
+Besselian date 贝塞尔日期
+Besselian day number 贝塞尔日数
+Besselian elements 贝塞尔根数
+Besselian epoch 贝塞尔历元
+Besselian solar year 贝塞尔太阳年
+Besselian star constant 贝塞尔恒星常数
+Besselian star number 贝塞尔星数
+Besselian year 贝塞尔年
+Bestia 土卫三十九
+Beta Regio 贝塔区
+Beta Taurid meteor shower 金牛座β流星雨
+Beta Taurids 金牛座β流星雨
+Betelgeuse 参宿四
+Bethe cycle 贝蒂循环
+Bethe-Weizsäcker cycle 贝蒂-魏茨泽克循环
+Betio crater 贝蒂奥陨击坑
+Betria 三角形二
+Bettina 贝蒂
+Bečvář crater 贝奇瓦日环形山
+Bhabha crater 巴巴环形山
+Bharani 胃宿三
+Bhor crater 波尔陨击坑
+Bi 全称:bismuth。铋
+Bianca 天卫八
+Bianchi cosmology 比安基宇宙论
+Bianchi identity 比安基恒等式
+Bianchini crater 比安基尼陨击坑
+Biandepei 卞德培
+Bibliographical Star Index 缩写:BSI。恒星文献索引
+Biblis Patera 比布利斯山口
+Biblis Tholus 比布利斯山丘
+Biela crater 比拉环形山
+Biela's comet 比拉彗星
+Bielid meteors 比拉流星群
+Bielids 比拉流星群
+Big Bang chronology 大爆炸年代学
+Big Bang cosmology 大爆炸宇宙论
+Big Bang model 大爆炸模型
+Big Bang nucleosynthesis 缩写:BBN。大爆炸核合成
+Big Bang singularity 大爆炸奇点
+Big Bang theory 大爆炸理论
+Big Bear Solar Observatory 大熊湖太阳观测台
+Big Dipper 北斗[七星]
+BigBOSS experiment BigBOSS 实验
+Bigbee crater 比格比陨击坑
+Biham 危宿二
+Bilderberg continuum atmosphere model 缩写:BCA model。比德伯格连续大气模型
+Bira crater 比拉陨击坑
+Birkeland crater 伯克兰环形山
+Birkhoff crater 伯克霍夫环形山
+Birkhoff regularization 伯克霍夫正规化
+Birkhoff theorem 伯克霍夫定理
+Birmingham crater 伯明翰环形山
+Bise crater 备濑陨击坑
+Bison crater 拜森陨击坑
+Bjerknes crater 比耶克内斯陨击坑
+Bk 全称:berkelium。锫
+Blaauw mechanism 布劳机制
+Black Tortoise 玄武
+Black Warrior 玄武
+Black Widow Pulsar 毒蜘蛛脉冲星
+Black-eye Galaxy 黑眼睛星系
+Blackett crater 布莱克特环形山
+Bland crater 布兰德陨击坑
+Blandford-Payne mechanism of jet formation 缩写:BP mechanism。BP[喷流形成]机制
+Blandford-Znajek mechanism of jet formation 缩写:BZ mechanism。BZ[喷流形成]机制
+Blashko effect 布拉什科效应
+Blaze Star 闪耀星
+Blazhko crater 布拉日科环形山
+Blazhko effect 布拉日科效应
+Bled crater 布莱德陨击坑
+Blinking Planetary Nebula 闪视行星状星云
+Blitta crater 布利塔陨击坑
+Bloch-Siegert [frequency] shift 布洛赫-西格特频移
+Bloch-Siegert effect 布洛赫-西格特效应
+Blois crater 布卢瓦陨击坑
+Blue Channel Spectrograph 蓝通道光谱仪
+Blue Dragon 苍龙
+Blue Planetary Nebula 蓝行星状星云
+Blue Snowball 蓝雪球
+Blue Snowball Nebula 蓝雪球星云
+Bluff crater 布拉夫陨击坑
+Blunck crater 布隆克陨击坑
+Bode's Galaxy 波德星系
+Bode's law 波得定则
+Boeddicker crater 伯迪克陨击坑
+Bogia crater 博吉亚陨击坑
+Bogoliubov-Born-Green-Kirkwood-Yvon hierarchy 缩写:BBGKY hierarchy。BBGKY方程组
+Bogomol'nyi-Prasad-Sommerfield bound 缩写:BPS。博格莫尼-普拉萨德-萨默菲尔德限
+Bogra crater 博格拉陨击坑
+Boguslawsky crater 博古斯瓦夫斯基环形山
+Bohlin group method 波林群法
+Bohr crater 玻尔环形山
+Bohr magneton 玻尔磁子
+Bohr radius 玻尔半径
+Bohr-Coster diagram 玻尔-科斯特图
+Bok crater 博克陨击坑
+Bok globule 博克球状体
+Bole crater 博莱陨击坑
+Bologna survey 博洛尼亚星表
+Boltysh crater 波泰士陨星坑
+Boltzmann brain paradox 玻尔兹曼大脑佯谬
+Boltzmann constant 玻尔兹曼常量
+Boltzmann crater 玻尔兹曼环形山
+Boltzmann distribution 玻尔兹曼分布
+Boltzmann equation 玻尔兹曼方程
+Boltzmann equation of state 玻尔兹曼物态方程
+Boltzmann excitation formula 玻尔兹曼激发公式
+Boltzmann factor 玻尔兹曼因子
+Boltzmann formula 玻尔兹曼公式
+Boltzmann statistics 玻尔兹曼统计
+Boltzmann-Einstein equations 玻尔兹曼-爱因斯坦方程
+Boltzmann-Einstein system of equations 玻尔兹曼-爱因斯坦方程组
+Boltzmann-Saha theory 玻尔兹曼-萨哈理论
+Bolyai crater 鲍耶环形山
+Bombala crater 邦巴拉陨击坑
+Bond 娄宿
+Bond Gap 邦德环缝
+Bond albedo 邦德反照率
+Bond crater 邦德陨击坑
+Bondi accretion 邦迪吸积
+Bonestell crater 博恩斯泰尔陨击坑
+Bonn Telescope 波恩射电望远镜
+Bonner Durchmusterung 缩写:BD。波恩星表; BD星表
+Bonnor-Ebert mass 邦纳-埃伯特质量
+Bonpland crater 邦普朗环形山
+Boo 全称:Bootes。牧夫座
+Boola crater 博拉陨击坑
+Boole crater 布尔环形山
+Boomerang Nebula 旋镖星云
+Boomerang telescope 全称:Balloon Observations of Millimetric Extragalactic Radiation and Geophysics telescope。回旋镖球载望远镜; 河外毫米波辐射气球观测和地球物理望远镜
+Bootes 缩写:Boo。牧夫座
+Bootes void 牧夫巨洞
+Bootids 牧夫流星群
+Bopolu crater 博波卢陨击坑
+Bor crater 博尔陨击坑
+Borasisi 博拉西西
+Bordeaux crater 波尔多陨击坑
+Boreal sign 北方宫
+Boreales Scopuli 北极断崖群
+Borealis Planitia 北方平原
+Boreosyrtis 北瑟提斯
+Boreum Cavus 北极凹地
+Borman crater 博尔曼环形山
+Born approximation 玻恩近似
+Born-Oppenheimer approximation 玻恩-奥本海默近似
+Borrelly Comet 博雷利彗星
+Boru crater 博鲁陨击坑
+Bose crater 博斯环形山
+Bose-Einstein distribution 玻色-爱因斯坦分布
+Bose-Einstein nuclei 玻色-爱因斯坦核
+Bose-Einstein statistics 玻色-爱因斯坦统计
+Bosonic string 玻色弦
+Bosporos Planum 博斯普鲁斯高原
+Bosporos Rupes 博斯普鲁斯峭壁
+Boss General Catalogue 缩写:GC。博斯总星表; GC星表
+Botein 天阴四
+Bottlinger diagram 玻特林格图
+Bottlinger model 玻特林格模型
+Bouguer crater 布给陨击坑
+Bouguer plot 布格图
+Boulia crater 布利亚陨击坑
+Boussinesq approximation 博欣内斯克近似
+Boussinesq convection 博欣内斯克反演
+Boussinesq equation 博欣内斯克方程
+Boussingault crater 布森戈环形山
+Bouwers telescope 鲍维尔斯望远镜
+Bowen compensator 鲍恩补偿器
+Bowen fluorescence mechanism 鲍恩荧光机制
+Bowen image slicer 鲍恩像切分器
+Bowen line 鲍恩谱线
+Bowen mechanism 鲍恩荧光机制
+Bowen-Walraven image slicer 鲍恩-瓦尔拉文像切分器; B-W像切分器
+Boxhole crater 博克斯霍尔陨星坑
+Boyer-Lindquist coordinate 博耶-林德奎斯特坐标
+Boyle crater 玻意耳环形山
+Bozkir crater 博兹克尔陨击坑
+Bp star 全称:peculiar B star。B型特殊星
+Br 全称:bromine。溴
+Brabo crater 布拉博坑
+Brachium 折威七
+Brackett continuum 布拉开连续区
+Brackett limit 布拉开系限
+Brackett series 布拉开线系
+Bradbury crater 布雷德伯里陨击坑
+Bragg angle 布拉格角
+Bragg cell spectrometer 布拉格盒频谱仪
+Bragg crater 布喇格环形山
+Bragg crystal spectrometer 布拉格晶体分光计
+Brahms crater 布拉姆斯环形山
+Brans-Dicke cosmology 布兰斯-迪克宇宙论
+Brans-Dicke gravity 布兰斯-迪克引力
+Brans-Dicke theory 布兰斯-迪克理论
+Brashear crater 1、布拉希尔环形山; 2、布拉希尔陨击坑
+Brazos Valles 布拉索斯峡谷群
+Bredikhin crater 布列季欣环形山
+Bree crater 布雷陨击坑
+Breit-Wigner equation 布赖特-维格纳方程
+Bremerhaven crater 不来梅港陨击坑
+Bremsstrahlung 轫致辐射; 阻尼辐射
+Brent crater 布伦特陨星坑
+Brianchon crater 布利安生环形山
+Briault crater 布里奥陨击坑
+Bridgetown crater 布里奇敦陨击坑
+Bridgman crater 布里奇曼环形山
+Brillouin scattering 布里渊散射
+Brillouin spectrum 布里渊谱
+Brillouin zone 布里渊区
+Bristol crater 布里斯托尔陨击坑
+British Association Catalogue 缩写:BAC。英国天文协会星表
+British Astronomical Association 缩写:BAA。英国天文协会
+Broach crater 珀鲁杰陨击坑
+Brocchi's Cluster 布罗基星团
+Bronk crater 布朗克环形山
+Bronkhorst crater 布龙克霍斯特陨击坑
+Brontë crater 勃朗特环形山
+Brooks comet 布鲁克斯彗星
+Brouwer crater 布劳威尔环形山
+Brown's lunar theory 布朗月离理论
+Brown-Twiss interferometer 布朗-特威斯干涉仪
+Brucia 布鲁斯
+Brunner crater 布隆内尔环形山
+Bruns theorem 勃隆斯定理
+Brush crater 布拉什陨击坑
+Bubble Nebula 气泡星云
+Buch crater 布赫环形山
+Budrosa family 蓓蕾玫瑰族
+Buffon crater 布丰环形山
+Bug Nebula 小虫星云
+Buisson crater 比松环形山
+Bulhar crater 布拉哈尔陨击坑
+Bullet Cluster 子弹星系团
+Bulletin of The Astronomical Society of India 印度天文学会通报
+Bunch-Davies vacuum 邦奇-戴维斯真空
+Bunda 天垒城一
+Buneman instability 布尼曼不稳定性
+Bunge crater 本格陨击坑
+Bunnik crater 宾尼克陨击坑
+Bunsen crater 本生环形山
+Bunsen photometer 本生光度计
+Burckhardt crater 布尔克哈特环形山
+Bureau International de l'Heure 缩写:BIH。国际时间局
+Bureau International des Poids et Mesures 缩写:BIPM。国际计量局
+Bureau of Astronomy 钦天监; 司天监
+Burgers equation 伯格斯方程
+Burke-Gaffney Observatory 缩写:BGO。伯克-加夫尼天文台
+Burney crater 伯妮坑
+Burnham's General Catalogue of Double Stars 缩写:BDS。伯纳姆双星总表
+Burnham's Nebula 伯纳姆星云
+Burns Cliff 伯恩斯峭壁
+Burroughs crater 伯勒斯陨击坑
+Burton crater 伯顿陨击坑
+Buta crater 布塔陨击坑
+Butcher-Oemler effect 布彻-厄姆勒效应
+Butler Mons 巴特勒山
+Butler matrix 巴特勒矩阵
+Butte crater 比尤特陨击坑
+Butterfly Cluster 蝴蝶星团
+Butterfly Nebula 蝴蝶星云
+Buvinda Vallis 布文达峡谷
+Buys-Ballot crater 白贝罗环形山
+Bw star B型弱氦线星; Bw型星
+Byala crater 比亚拉陨击坑
+Byrd crater 1、伯德环形山; 2、伯德陨击坑
+Byske crater 比斯克陨击坑
+Byurakan Astrophysical Observatory 缩写:BAO。布拉堪天文台
+Byzantine era 拜占庭纪年
+Büsching crater 比兴环形山
+C 1、全称:Cambridge Catalogue of Radio Sources。剑桥射电源表; 2、全称:carbon。碳
+C band C谱带
+C galaxy C星系
+C line C 谱线
+C star 全称:carbon star。碳星
+C-O white dwarf 碳氧白矮星
+C-S star C-S型星; 强氰线星
+C-field 全称:creation field。创生场
+C-type asteroid C型小行星
+C/NOFS 全称:Communication/Navigation Outage Forecasting System。通信/导航中断预报系统
+CA 全称:center of activity; active center。活动中心
+CAHA 全称:Centro Astronómico Hispano-Alemán。德国-西班牙天文中心
+CAI 全称:calcium-aluminium-rich inclusion; Ca–Al-rich inclusion。富钙铝包体
+CALET 全称:Calorimetric Electron Telescope。量热电子望远镜
+CAMB 全称:CAMB program。CAMB 程序
+CAMB program 缩写:CAMB。CAMB 程序
+CAMC 全称:Carlsberg Automatic Meridian Circle。卡尔斯伯格自动子午环
+CANDELS 全称:Cosmic Assembly Near-infrared Deep Extragalactic Legacy Survey。宇宙星系近红外遗珍巡天;烛光巡天
+CARMA 全称:Combined Array for Research in Millimeter-wave Astronomy。CARMA毫米波组合阵
+CAS 全称:Chinese Astronomical Society。中国天文学会
+CASA 全称:Common Astronomy Software Applications。CASA通用天文软件包
+CAT 1、全称:Cambridge Anisotropy Telescope。剑桥各向异性望远镜; 2、全称:Cosmic Anisotropy Telescope。宇宙各向异性望远镜
+CATSat 全称:Cooperative Astrophysics and Technology Satellite。天体物理和技术卫星
+CBC 全称:compact binary coalescence。致密双星并合
+CBI 全称:Cosmic Background Imager。宇宙背景成像仪
+CCD 全称:charge-coupled device。电荷耦合器件
+CCD array CCD阵
+CCD astrometry CCD天体测量
+CCD astronomy CCD天文学
+CCD camera CCD照相机
+CCD detector CCD探测器
+CCD fringing CCD条纹
+CCD imaging CCD成像
+CCD meridian circle CCD子午环
+CCD mosaic CCD拼接
+CCD observation CCD观测
+CCD photometer CCD光度计
+CCD photometry CCD测光
+CCD polarimeter CCD偏振计
+CCD radiation damage CCD辐射损伤
+CCD spectrograph CCD摄谱仪
+CCD spectrometer CCD分光计
+CCD spectroscopy CCD分光
+CCD spectrum CCD光谱
+CCDS 全称:Comité Consultatif pour la Definition de la Seconde。秒定义咨询委员会
+CCIR 全称:International Radio Consultative Committee。国际电信咨询委员会
+CCRS 全称:conventional celestial reference system。习用天球参考系
+CCTF 全称:Comité Consultatif du Temps et des Fréquences。时间频率咨询委员会
+CD 全称:Cordoba Durchmusterung。科尔多瓦巡天星表
+CD-ROM 全称:compact disc read-only memory。只读光盘
+CDF 1、全称:Chandra Deep Field。钱德拉深空区; 2、全称:cumulative distribution function。累积分布函数
+CDFN 全称:Chandra Deep Field North。钱德拉北深空区
+CDFS 全称:Chandra Deep Field South。钱德拉南深空区
+CDM 全称:cold dark matter。冷暗物质
+CDM model 全称:cold dark matter model。冷暗物质模型
+CDMS 全称:Cryogenic Dark Matter Search。暗物质低温搜寻计划
+CDQ 全称:core-dominated quasar。核主导类星体
+CDS 1、全称:Centre de Donnees Stellaires。恒星数据中心; 2、全称:Centre de Données astronomiques de Strasbourg。斯特拉斯堡天文数据中心
+CDW 全称:centrifugally driven wind。离心力驱星风
+CE 全称:color excess。色余
+CELT 全称:California Extremely Large Telescope。加州特大望远镜
+CEO 全称:Celestial Ephemeris Origin 。天球历书零点
+CEP 全称:celestial ephemeris pole。天球历书极
+CERI 全称:connected-element radio interferometry。联线射电干涉测量
+CERN 全称:European Centre for Nuclear Research。欧洲核子研究中心
+CET 全称:central European time。欧洲中部时间
+CETI 全称:communication with extra-terrestrial intelligence。地外智能生物通信
+CF 全称:cold front。冷锋
+CFHT 全称:Canada-France-Hawaii Telescope。加拿大-法国-夏威夷望远镜; CFH望远镜
+CFRP mirror 全称:carbon fiber reinforced polymer mirror。碳纤维复合材料镜
+CFRS 全称:Canada-France redshift survey。加拿大-法国红移巡天; CFRS 巡天
+CGCG 全称:Catalogue of Galaxies and Clusters of Galaxies。星系和星系团表
+CGM 全称:circumgalactic medium。星系周介质
+CGPM 全称:Conférence Générale des Poids et Mesures。国际计量大会
+CGRO 全称:Compton Gamma-Ray Observatory; Compton γ-Ray Observatory。康普顿伽马射线天文台
+CH anomaly 碳氢反常
+CH star 碳氢星; CH星
+CHARA 全称:Center for High Angular Resolution Astronomy。高角分辨率天文中心
+CHARA Array 高角分辨率天文中心望远镜阵
+CHDM 全称:cold hot dark matter model。冷热暗物质混合模型
+CHEOPS 1、全称:CHaracterising EXOPlanets Satellite。系外行星特性探测卫星; 2、全称:CHaracterising ExOPlanet Satellite。系外行星特性探测卫星; 基奥普斯
+CHIPS 全称:Cosmic Hot Interstellar Plasma Spectrometer Satellite。星际热等离子体光谱卫星
+CHaracterising EXOPlanets Satellite 缩写:CHEOPS。系外行星特性探测卫星
+CHaracterising ExOPlanet Satellite 缩写:CHEOPS。系外行星特性探测卫星; 基奥普斯
+CI 全称:color index。色指数
+CIB 全称:cosmic infrared background。宇宙红外背景
+CID 全称:charge injected device。电荷注入器件
+CIO 1、全称:Celestial Intermediate Origin。天球中间零点; 2、全称:Conventional International Origin。国际协议原点
+CIO locator CIO 定位角
+CIP 全称:Celestial Intermediate Pole。天球中间极
+CIPM 全称:Comité International des Poids et Mesures。国际计量委员会
+CIRS 全称:Celestial Intermediate Reference System。天球中间参考系
+CIS 全称:conventional inertial system。习用惯性系
+CL-AGN 全称:changing-look active galactic nucleus。变脸活动星系核
+CLASS 全称:Cosmic Lens All-Sky Survey。宇宙透镜巡天
+CLEAN 全称:CLEAN algorithm。洁化算法
+CLEAN algorithm 缩写:CLEAN。洁化算法
+CLEP 中国探月工程
+CLFST 全称:Cambridge Low-Frequency Synthesis Telescope。剑桥低频综合孔径望远镜
+CLOUDY 全称:CLOUDY program。CLOUDY 程序
+CLOUDY program 缩写:CLOUDY。CLOUDY 程序
+CM 1、全称:central meridian。中央子午线; 日心子午线; 2、全称:command module。指令舱
+CMB 全称:cosmic microwave background。宇宙微波背景
+CMB anisotropy 全称:cosmic microwave background anisotropy。宇宙微波背景各向异性
+CMB experiment 全称:cosmi microwave background experiment。宇宙微波背景实验装置
+CMB polarization 全称:cosmic microwave background polarization。宇宙微波背景偏振; 宇宙微波背景极化
+CMB spectral distortion 全称:cosmic microwave background spectral distortion。宇宙微波背景谱畸变
+CMBR 全称:cosmic microwave background radiation。宇宙微波背景辐射
+CMBfast program CMBfast程序
+CMD 1、全称:central meridian distance。日心距; 2、全称:color-magnitude diagram。颜色-星等图
+CME 全称:coronal mass ejection。日冕物质抛射
+CMOS detector CMOS探测器
+CMP 全称:central meridian path。日心经日期
+CMR 全称:cosmic microwave radiation。宇宙微波辐射
+CMZ 全称:central molecular zone。中心分子区
+CMa 全称:Canis Major。大犬座
+CMi 全称:Canis Minor。小犬座
+CN anomaly 碳氮反常
+CN band CN 谱带
+CN cycle 全称:carbon-nitrogen cycle。碳氮循环
+CN index 碳氮指数
+CN star CN星
+CND 1、全称:Circumnuclear Disc。[银河]核周盘; 2、全称:circumnuclear disk。核周盘
+CNES 全称:Centre National d'Etudes Spatiales。法国国家空间研究中心
+CNM 全称:circumnuclear medium。核周介质
+CNN 全称:convolutional neural network。卷积神经网络
+CNO anomaly 碳氮氧反常
+CNO bi-cycle 碳氮氧双循环
+CNO cycle 全称:carbon-nitrogen-oxygen cycle。碳氮氧循环
+CNO tri-cycle 碳氮氧三循环
+CNRS 全称:Centre National de la Recherche Scientifique。国家科学研究中心
+CO-AGN 全称:changing-obscuration active galactic nucleus。遮变活动星系核
+COAST 全称:Cambridge Optical Aperture Synthesis Telescope。剑桥光学综合孔径望远镜
+COBE 全称:Cosmic Background Explorer。宇宙背景探测器
+COBE normalization COBE 归一化
+CONTOUR 全称:Comet Nucleus Tour。CONTOUR彗核探测器
+CORAVEL spectrometer 全称:Correlation Radial Velocities spectrometer。相关式视向速度仪
+COS 全称:Celestial Observation Satellite。COS天文卫星
+COS-B 宇宙线卫星B号
+COS-B Catalogue COS-B伽马源表
+COSMOMC program COSMOMC 程序
+COSMOS 全称:Cosmic Evolution Survey。宇宙演化巡天
+COSMOS machine COSMOS多功能底片测量仪
+COSPAR 全称:Committee on Space Research。国际空间研究委员会
+COSTAR 全称:The Corrective Optics Space Telescope Axial Replacement。COSTAR光学改正系统
+CP 全称:Cambridge pulsar。剑桥脉冲星
+CP violation 全称:Charge-Parity violation。电荷-宇称破坏; CP破坏
+CPC 全称:Cape Photographic Catalogue。好望角照相星表
+CPD 全称:Cape Photographic Durchmusterung。好望角照相巡天
+CPT invariance 全称:Charge-Parity-Time reversal invariance。电荷-宇称-时间反演不变性; CPT不变性
+CRS 全称:Celestial Reference System。天球参考系
+CS-AGN 全称:changing-state active galactic nucleus。态转变活动星系核
+CSA 全称:Canadian Space Agency。加拿大宇航局
+CSI 全称:Catalogue for Stellar Identification。恒星证认表
+CSM 全称:command and service module。指令-服务舱
+CSO 1、全称:Caltech Submillimeter Observatory。加州理工学院亚毫米波天文台; 2、全称:compact symmetric object。致密对称天体
+CSS 全称:Catalina Sky Survey。卡塔利娜巡天
+CSST 全称:Chinese Survey Space Telescope。中国巡天空间望远镜
+CST 全称:central standard time。美国中部标准时
+CT 全称:central time。中部时
+CTA 全称:Cherenkov Telescope Array。CTA切伦科夫望远镜阵
+CTC 全称:closed timelike curve。闭合类时曲线
+CTD 全称:charge transfer device。电荷转移器件
+CTIO 全称:Cerro Tololo Inter-American Observatory。托洛洛山美洲天文台
+CTRS 全称:conventional terrestrial reference system。习用地球参考系
+CTS 1、全称:Catalogue of Time Services。授时星表; 2、全称:conventional terrestrial system。习用地面参考系
+CTX 全称:Context Camera。背景相机
+CVF 全称:circular variable filter。圆形可变滤光片
+CVN 全称:Chinese VLBI network。中国甚长基线干涉网
+CVO 全称:Canadian Virtual Observatory。加拿大虚拟天文台
+CVn 全称:Canes Venatici。猎犬座
+CW 全称:continuous wave。连续波
+CZ 全称:Cordoba Zone Catalogue。科尔多瓦分区星表
+CZT array 全称:CdZnTe detector array。碲锌镉面阵
+Ca 全称:calcium。钙
+Cabannes crater 卡巴纳环形山
+Cabibbo angle 卡比博角
+Cae 全称:Caelum。雕具座
+Caelum 缩写:Cae。雕具座
+Cagli crater 卡利陨击坑
+Cailleux crater 卡耶环形山
+Cairns crater 凯恩斯陨击坑
+Cajori crater 卡约里环形山
+Calabash Nebula 葫芦星云
+Calabi-Yau manifold 卡拉比-丘流形
+Calabi-Yau spaces 卡拉比-丘空间
+Calahorra crater 卡拉奥拉陨击坑
+Calamar crater 卡拉马尔陨击坑
+Calar Alto Observatory 卡拉阿托天文台
+Calbe crater 卡尔伯陨击坑
+Caldwell Catalog 考德威尔星表
+Calendrical Chapter 历志
+Calendrical Treatise 《历志》
+Caleuche Chasma 卡莱巫切深谷
+Caliban 天卫十六
+California Extremely Large Telescope 缩写:CELT。加州特大望远镜
+California Nebula 加利福尼亚星云
+Callipic cycle 卡利普周
+Callirrhoe 木卫十七
+Callisto 木卫四
+Calorimetric Electron Telescope 缩写:CALET。量热电子望远镜
+Caloris Planitia 卡路里平原
+Caltech Infrared Catalogue 缩写:IRC。加州理工学院红外源表
+Caltech Submillimeter Observatory 缩写:CSO。加州理工学院亚毫米波天文台
+Calydon Fossa 卡吕冬堑沟
+Calypso 土卫十四
+Cam 全称:Camelopardalis。鹿豹座
+Camargo crater 卡马戈陨击坑
+Cambridge Anisotropy Telescope 缩写:CAT。剑桥各向异性望远镜
+Cambridge Catalogue of Radio Sources 缩写:C。剑桥射电源表
+Cambridge Low-Frequency Synthesis Telescope 缩写:CLFST。剑桥低频综合孔径望远镜
+Cambridge Optical Aperture Synthesis Telescope 缩写:COAST。剑桥光学综合孔径望远镜
+Cambridge pulsar 缩写:CP。剑桥脉冲星
+Camelopardalis 缩写:Cam。鹿豹座
+Camichel crater 卡米歇尔陨击坑
+Camiling crater 卡米灵陨击坑
+Camilla 驶神星
+Camiri crater 卡米里陨击坑
+Campbell crater 1、坎贝尔环形山; 2、坎贝尔陨击坑
+Campos crater 坎普斯陨击坑
+Can crater 恰恩陨击坑
+Canada-France redshift survey 缩写:CFRS。加拿大-法国红移巡天; CFRS 巡天
+Canada-France-Hawaii Telescope 缩写:CFHT。加拿大-法国-夏威夷望远镜; CFH望远镜
+Canadian Space Agency 缩写:CSA。加拿大宇航局
+Canadian Virtual Observatory 缩写:CVO。加拿大虚拟天文台
+Canala crater 卡纳拉陨击坑
+Canaveral crater 卡纳维拉尔陨击坑
+Canberra crater 堪培拉陨击坑
+Cancer 1、缩写:Cnc。巨蟹宫; 鹑首; 未宫; 2、缩写:Cnc。巨蟹座
+Candor 坎多尔
+Candor Chaos 坎多尔混杂地
+Candor Chasma 坎多尔深谷
+Candor Colles 坎多尔小丘群
+Candor Labes 坎多尔坡地
+Candor Mensa 坎多尔桌山
+Candor Sulci 坎多尔沟脊地
+Canes Venatici 缩写:CVn。猎犬座
+Cangwu crater 苍梧陨击坑
+Canicula 狼星; 天狼[星]
+Canillo crater 卡尼略陨击坑
+Canis Major 缩写:CMa。大犬座
+Canis Major Dwarf Galaxy 大犬矮星系
+Canis Minor 缩写:CMi。小犬座
+Cankuzo crater 坎库佐陨击坑
+Cannizzaro crater 坎尼扎罗环形山
+Cannon crater 坎农环形山
+Cannonball 炮弹号
+Canon der Finsternisse 《日月食典》
+Canopus 老人星
+Canso crater 坎索陨击坑
+Cantabras Dorsum 坎塔布里亚山脊
+Cantabras Serpens 坎塔布里亚蛇状脊
+Cantor crater 康托尔环形山
+Cantoura crater 坎陶拉陨击坑
+Canyon Diablo meteorite 代阿布洛峡谷陨星
+Cap 1、全称:Capricornus。摩羯宫; 星纪; 丑宫; 2、全称:Capricornus。摩羯座
+Cape Canaveral 卡纳维拉尔角
+Cape Photographic Atlas 好望角照相星图
+Cape Photographic Catalogue 缩写:CPC。好望角照相星表
+Cape Photographic Durchmusterung 1、好望角照相星表; 2、缩写:CPD。好望角照相巡天
+Cape RI photometry 好望角RI测光
+Cape St Vincent 圣文森特角
+Cape York meteorite 约克角陨石
+Cape photometry 好望角测光
+Capella 五车二
+Capen crater 卡彭陨击坑
+Caph 王良一
+Capri Chasma 卡普里深谷
+Capri Mensa 卡普里桌山
+Capri Montes 卡普里山脉
+Capricornid meteor shower 摩羯流星雨; 摩羯座流星雨
+Capricornids 摩羯流星群; 摩羯座流星群
+Capricornus 1、缩写:Cap。摩羯宫; 星纪; 丑宫; 2、缩写:Cap。摩羯座
+Caput Trianguli 娄宿增六
+Car 全称:Carina。船底座
+Car A 船底射电源
+Car-Cyg arm 全称:Carina-Cygnus Arm。船底-天鹅臂
+Carafe Galaxy 水瓶星系
+Caralis Chaos 卡拉利斯混杂地
+Cardona crater 卡尔多纳陨击坑
+Carina 缩写:Car。船底座
+Carina Dwarf Galaxy 船底座矮星系
+Carina Nebula 船底星云
+Carina OB 2 船底OB 2 星协
+Carina arm 船底臂
+Carina system 船底星系
+Carina-Cygnus Arm 缩写:Car-Cyg arm。船底-天鹅臂
+Carina-Sagittarius arm 船底-人马臂
+Carlini crater 卡利尼环形山
+Carlsberg Automatic Meridian Circle 缩写:CAMC。卡尔斯伯格自动子午环
+Carme 木卫十一
+Carnegie Observatories 卡耐基天文台
+Carnot crater 卡诺环形山
+Carnot cycle 卡诺循环
+Carpenter crater 卡彭特环形山
+Carpo 木卫四十六
+Carrington coordinate 卡林顿坐标
+Carrington longitude 卡林顿经度
+Carrington meridian 卡林顿子午圈
+Carrington rotation number 卡林顿自转序号
+Carswell crater 卡斯韦尔陨星坑
+Cartago crater 卡塔戈陨击坑
+Carte du Ciel 缩写:CdC。照相天图
+Carter theorem 卡特定理
+Cartesian coordinate 笛卡儿坐标
+Cartwheel galaxy 车轮星系
+Carver crater 卡弗环形山
+Cas 全称:Cassiopeia。仙后座
+Cas A 仙后A
+Cas B 仙后B
+Cas X-1 仙后X-1
+Casimir effect 卡西米尔效应
+Casius 卡西乌斯
+Cassegrain antenna 卡塞格林天线
+Cassegrain beam 卡塞格林射束
+Cassegrain configuration 卡塞格林系统
+Cassegrain crater 卡塞格林环形山
+Cassegrain focus 卡塞格林焦点; 卡氏焦点
+Cassegrain focus corrector 卡焦改正镜
+Cassegrain reflector 卡氏反射望远镜
+Cassegrain spectrograph 卡塞格林摄谱仪; 卡焦摄谱仪
+Cassegrain telescope 卡塞格林望远镜
+Cassini 卡西尼号土星探测器
+Cassini Regio 卡西尼区
+Cassini crater 1、卡西尼环形山; 2、卡西尼陨击坑
+Cassini division 卡西尼环缝
+Cassini spacecraft 卡西尼号土星探测器
+Cassini state 卡西尼态
+Cassini's law 卡西尼定律
+Cassini-Huygens spacecraft 卡西尼-惠更斯号土星探测器
+Cassiopeia 缩写:Cas。仙后座
+Cassiopeia Nebula 仙后星云
+Cassiopeids 仙后流星群; 仙后座流星群
+Castor 北河二
+Castril crater 卡斯特里尔陨击坑
+Castula 造父五
+Cat's Eye Nebula 猫眼星云
+Cat's Paw Nebula 猫爪星云
+Catafo Saxum 卡塔福岩
+Catalina Observatory 卡塔利娜天文台
+Catalina Sky Survey 缩写:CSS。卡塔利娜巡天
+Catalogue for Stellar Identification 缩写:CSI。恒星证认表
+Catalogue of Bright Stars 缩写:BS。亮星星表
+Catalogue of Cometary Orbits 彗星轨道表
+Catalogue of Faint Stars 缩写:KSZ。暗星星表; 暗星表
+Catalogue of Galaxies and Clusters of Galaxies 缩写:CGCG。星系和星系团表
+Catalogue of Geodetical Stars 测地星表
+Catalogue of Nearby Stars 近星星表
+Catalogue of QSO and Active Nuclei 类星体和活动星系核表
+Catalogue of Time Services 缩写:CTS。授时星表
+Catena Abulfeda 艾布·菲达坑链
+Catena Artamonov 阿尔塔莫诺夫坑链
+Catena Davy 戴维坑链
+Catena Dziewulski 杰武尔斯基坑链
+Catena Humboldt 洪堡坑链
+Catena Krafft 克拉夫特坑链
+Catena Kurchatov 库尔恰托夫坑链
+Catena Lucretius 卢克莱修坑链
+Catena Mendeleev 门捷列夫坑链
+Catena Sumner 萨姆纳坑链
+Catena Sylvester 西尔维斯特坑链
+Cathysia 华夏古陆
+Catota crater 卡托塔陨击坑
+Cauchy crater 柯西环形山
+Cauchy distribution 柯西分布
+Cauchy horizon 柯西视界
+Cauchy profile 柯西轮廓
+Cauchy sequence 柯西序列
+Cauchy's dispersion formula 柯西色散公式
+Cave Nebula 洞穴星云
+Cave crater 凯夫陨击坑
+Cavendish crater 卡文迪什环形山
+Cavi Angusti 安古斯图斯凹地群
+Cavi Frigorēs 极寒凹地群
+Cavi Novi 诺维凹地群
+Caxias crater 卡希亚斯陨击坑
+Cayley formation 凯利形成
+Cayon crater 卡永陨击坑
+Cañas crater 卡尼亚斯陨击坑
+Ca–Al-rich inclusion 缩写:CAI。富钙铝包体
+CaⅡ emission line CaⅡ发射线; 电离钙发射线
+Cd 全称:cadmium。镉
+CdC 全称:Carte du Ciel。照相天图
+CdTe detector array 碲化镉面阵
+CdZnTe detector array 缩写:CZT array。碲锌镉面阵
+Ce 全称:cerium。铈
+Cebalrai 宗正一
+Cebrenia 刻布壬尼亚
+Cecropia 刻克罗皮亚
+Cefalù crater 切法卢陨击坑
+Celaeno 昴宿增十六
+Celbalrai 宗正一
+Celescope 天空巡视仪
+Celescope Catalogue of UV Magnitude 天空巡视紫外星等表
+Celestial Ephemeris Origin 缩写:CEO。天球历书零点
+Celestial Intermediate Origin 缩写:CIO。天球中间零点
+Celestial Intermediate Pole 缩写:CIP。天球中间极
+Celestial Intermediate Reference System 缩写:CIRS。天球中间参考系
+Celestial Market Enclosure 天市垣
+Celestial Mechanics & Dynamical Astronomy 天体力学和动力天文学
+Celestial Observation Satellite 缩写:COS。COS天文卫星
+Celestial Reference System 缩写:CRS。天球参考系
+Cen 全称:Centaurus。半人马座
+Cen A 全称:Centaurus A。半人马射电源A
+Cen B 全称:Centaurus B。半人马射电源B
+Cen X-1 全称:Centaurus X-1。半人马X-1
+Cen X-3 全称:Centaurus X-3。半人马X-3
+Cendrillon crater 灰姑娘坑
+Centaur 1、半人马型小行星; 2、半人马座火箭
+Centaur group 半人马群
+Centauri Montes 半人马山脉
+Centaurus 缩写:Cen。半人马座
+Centaurus A 缩写:Cen A。半人马射电源A
+Centaurus B 缩写:Cen B。半人马射电源B
+Centaurus X-1 缩写:Cen X-1。半人马X-1
+Centaurus X-3 缩写:Cen X-3。半人马X-3
+Centaurus arm 半人马臂
+Centaurus cluster 半人马星系团
+Center for High Angular Resolution Astronomy 缩写:CHARA。高角分辨率天文中心
+Center of land 地中
+Central Bureau for Astronomical Telegrams 天文电报中央局
+Centre National d'Etudes Spatiales 缩写:CNES。法国国家空间研究中心
+Centre National de la Recherche Scientifique 缩写:CNRS。国家科学研究中心
+Centre de Donnees Stellaires 缩写:CDS。恒星数据中心
+Centre de Données astronomiques de Strasbourg 缩写:CDS。斯特拉斯堡天文数据中心
+Centro Astronómico Hispano-Alemán 缩写:CAHA。德国-西班牙天文中心
+Cep 全称:Cepheus。仙王座
+Cepheid 1、造父一; 2、造父变星
+Cepheid distance 造父距离
+Cepheid distance scale 造父距离标尺
+Cepheid instability strip 造父变星不稳定带
+Cepheid parallax 造父视差
+Cepheid variable 造父变星
+Cepheids 仙王流星群
+Cepheus 缩写:Cep。仙王座
+Cepheus Flare 仙王雾斑
+Ceraski crater 采拉斯基环形山
+Ceraunius 刻拉尼俄斯
+Ceraunius Catena 刻拉尼俄斯坑链
+Ceraunius Fossae 刻拉尼俄斯堑沟群
+Ceraunius Tholus 刻拉尼俄斯山丘
+Cerberus 1、刻耳柏洛斯; 2、地狱犬座
+Cerberus Dorsa 刻耳柏洛斯山脊群
+Cerberus Fossae 刻耳柏洛斯堑沟群
+Cerberus Palus 刻耳柏洛斯沼
+Cerberus Rupēs 刻耳柏洛斯峭壁
+Cerberus Tholi 刻耳柏洛斯山丘群
+Cerenkov counter 切伦科夫计数器
+Cerenkov effect 切伦科夫效应
+Cerenkov radiation 切伦科夫辐射
+Ceres 谷神星
+Cerro Tololo Inter-American Observatory 缩写:CTIO。托洛洛山美洲天文台
+Cerulli crater 切鲁利陨击坑
+Cervantes 龟四
+Cet 全称:Cetus。鲸鱼座
+Ceti Chasma 鲸鱼深谷
+Ceti Labes 鲸鱼坡地
+Ceti Mensa 鲸鱼桌山
+Cetids 鲸鱼流星群; 鲸鱼座流星群
+Cetus 缩写:Cet。鲸鱼座
+Cetus Arc 鲸鱼弧形星云
+Cf 全称:californium。锎
+CfA 全称:Harvard-Smithsonian Center for Astrophysics。哈佛史密松天体物理中心
+CfA Redshift Survey CfA红移巡天
+ChJAA 全称:Chinese Journal of Astronomy and Astrophysics。中国天文和天体物理学报
+Cha 全称:Chamaeleon。蝘蜓座
+Chabrier initial mass function 夏布里埃初始质量函数
+Chacornac crater 沙科纳克环形山
+Chaf 王良一
+Chafe crater 查费陨击坑
+Chalawan 天牢三
+Chalce 卡尔刻
+Chalce Fossa 卡尔刻堑沟
+Chalce Montes 卡尔刻山脉
+Chalcoporos Rupēs 卡尔刻峡峭壁
+Chaldene 木卫二十一
+Chaliubieju 查刘璧如
+Challis crater 查理士环形山
+Chamaeleon 缩写:Cha。蝘蜓座
+Chaman crater 杰曼陨击坑
+Chamba crater 昌巴陨击坑
+Chamber 房宿
+Chamberlin crater 1、钱伯林陨击坑; 2、钱柏林环形山
+Champollion crater 商博良环形山
+Chamukuy 毕宿增十三
+Chandler crater 钱德勒环形山
+Chandler motion 钱德勒运动
+Chandler number 钱德勒数
+Chandler period 钱德勒周期
+Chandler wobble 钱德勒摆动
+Chandra Deep Field 缩写:CDF。钱德拉深空区
+Chandra Deep Field North 缩写:CDFN。钱德拉北深空区
+Chandra Deep Field South 缩写:CDFS。钱德拉南深空区
+Chandra X-ray Observatory 钱德拉X射线天文台
+Chandrasekhar dynamical friction 钱德拉塞卡动力摩擦
+Chandrasekhar limit 钱德拉塞卡极限
+Chandrasekhar mass 钱德拉塞卡质量
+Chandrasekhar potential energy tensor 钱德拉塞卡势能张量
+Chandrasekhar-Schoenberg limit 钱德拉塞卡-申贝格极限
+Chandrayaan 月船号
+Chang 张钰哲
+Chang'e 嫦娥
+Chang'e 1 lunar probe 嫦娥1号月球探测器
+Chang'e Program 嫦娥工程
+Changchun 长春
+Changjiangcun 长江村
+Changmeemann 1、张弥曼; 2、张弥曼
+Changshi 常熟
+Changsŏng crater 长城陨击坑
+Chanmatchun 陈密珍
+Chanwainam 陈伟南
+Chanyikhei 陈易希
+Chaokuangpiu 曹光彪
+Chaos 卡俄斯
+Chaoyichi 赵依祈
+Chaozhou 潮州
+Chapais crater 沙佩陨击坑
+Chaplygin crater 恰普雷金环形山
+Chaplygin gas 恰普雷金气体
+Chapman crater 查普曼环形山
+Chapman equation 查普曼方程
+Chapman layer 查普曼层
+Chapman-Jouguet detonation 查普曼-儒居特爆炸
+Chappe crater 沙佩环形山
+Chappell crater 查普尔环形山
+Chara 常陈四
+Charge-Parity violation 缩写:CP violation。电荷-宇称破坏; CP破坏
+Charge-Parity-Time reversal invariance 缩写:CPT invariance。电荷-宇称-时间反演不变性; CPT不变性
+Chariot Platform 轸宿
+Chariot cross-board 轸宿
+Charis Dorsum 卡里斯山脊
+Charitum Montes 查瑞腾山脉
+Charitum Tholus 查瑞腾山丘
+Charles' Wain 北斗[七星]
+Charles' law 查理定律
+Charleston crater 查尔斯顿陨击坑
+Charlevoix crater 夏洛瓦陨星坑
+Charlier crater 1、沙利叶环形山; 2、沙利耶陨击坑
+Charlier universe 沙利叶宇宙
+Charlieu crater 沙尔略陨击坑
+Charon 冥卫一
+Charybdis Scopulus 卡律布狄斯断崖
+Chasma Australe 南极深谷
+Chasma Boreale 北极深谷
+Chatturat crater 乍都拉陨击坑
+Chauk crater 稍埠陨击坑
+Chauvenet crater 肖夫内环形山
+Cheb crater 海布陨击坑
+Chebyshev crater 切比雪夫环形山
+Chefu crater 谢富陨击坑
+Chekalin crater 切卡林陨击坑
+Cheleb 宗正一
+Chelyabinsk meteor 车里雅宾斯克陨落事件
+Chen Jiageng 陈嘉庚
+Chendonghua 陈栋华
+Chenfangyun 陈芳允
+Chengbruce 郑崇华
+Chengdu 成都
+Chengmaolan 程茂兰
+Chengyuhsuan 郑雨轩
+Chenhungjen 陈泓任
+Chenjiansheng 陈建生
+Chenjingrun 陈景润
+Chenkegong 陈克攻
+Chenqian 陈骞
+Chentao 陈韬
+Chentsaiwei 蔡辰葳
+Cherenkov Telescope Array 缩写:CTA。CTA切伦科夫望远镜阵
+Cherenkov counter 切伦科夫计数器
+Cherenkov effect 切伦科夫效应
+Cherenkov neutrino telescope 切伦科夫[式]中微子望远镜
+Cherenkov radiation 切伦科夫辐射
+Chern 陈省身
+Chern-Simons interaction term 陈-西蒙斯相互作用项
+Chernyshev crater 切尔内绍夫环形山
+Chersonesus 刻索尼苏斯
+Chertan 西次相; 太微右垣四
+Chesapeake Bay crater 切萨皮克湾陨星坑
+Chevallier crater 谢瓦利尔环形山
+Chia crater 恰城陨击坑
+Chiayi 嘉义
+Chico Valles 奇科峡谷群
+Chicxulub crater 1、奇克苏鲁布陨星坑; 2、奇克苏鲁布陨星坑
+Chimbote crater 钦博特陨击坑
+China 中华
+China-VO 全称:Chinese Virtual Observatory。中国虚拟天文台
+Chincoteague crater 钦科蒂格陨击坑
+Chinese Astronomical Society 缩写:CAS。中国天文学会
+Chinese Astronomy and Astrophysics 天文学报
+Chinese Calendar 农历
+Chinese Journal of Astronomy and Astrophysics 缩写:ChJAA。中国天文和天体物理学报
+Chinese Lunar Exp-loration Program 中国探月工程
+Chinese Survey Space Telescope 缩写:CSST。中国巡天空间望远镜
+Chinese VLBI network 缩写:CVN。中国甚长基线干涉网
+Chinese Virtual Observatory 缩写:China-VO。中国虚拟天文台
+Ching-Sung Yu 余青松
+Chinju crater 晋州陨击坑
+Chinook crater 奇努克陨击坑
+Chirikov's constant 奇里科夫常数
+Chiron 喀戎
+Chiron-like object 类喀戎型天体
+Chiron-type object 喀戎型天体
+Chive crater 奇韦陨击坑
+Choctaw crater 查克托陨击坑
+Choikaiyau 蔡继有
+Chom crater 卓木陨击坑
+Chong Zhen Reign-period Treatise on Calendrical Science 《崇祯历书》
+Chongqing 重庆
+Choo 杵二
+Chort 西次相; 太微右垣四
+Chow 天市右垣五
+Chowmeeyee 周美儿
+Choyr crater 乔伊尔陨击坑
+Christiansen cross 克里斯琴森十字
+Christiansen interferometer 克里斯琴森干涉仪
+Christiansen model 克里斯琴森模型
+Christmas Tree Cluster 圣诞树星团
+Christmas tree model 圣诞树模型
+Christoffel symbol 克里斯托弗尔符号
+Chronius Mons 克罗尼乌斯山
+Chrysas Mensa 赫里萨斯桌山
+Chryse 克律塞
+Chryse Chaos 克律塞混杂地
+Chryse Colles 克律塞小丘群
+Chryse Planitia 克律塞平原
+Chryseis 赫露斯
+Chrysokeras 黄金角
+Chrétien crater 克雷蒂安环形山
+Chubb crater 丘布陨星坑
+Chukhung crater 朱孔陨击坑
+Chungchiyung 钟期荣
+Chupadero crater 丘帕德罗陨击坑
+Chur crater 丘尔陨击坑
+Churyumov-Gerasimenko Comet 丘留莫夫-格拉西缅科彗星
+Chushuho 朱树豪
+Chuwinghung 朱永鸿
+Cigar Galaxy 雪茄星系
+Cilaos crater 锡拉奥陨击坑
+Cimmeria Tholi 客墨里亚山丘群
+Cir 全称:Circinus。圆规座
+Circe 巫神星
+Circinus 缩写:Cir。圆规座
+Circinus Galaxy 圆规座星系
+Circle crater 瑟克尔陨击坑
+Circlet of Pisces 双鱼座小环
+Circumnuclear Disc 缩写:CND。[银河]核周盘
+Cirrus Nebula 卷毛星云
+Cl 全称:chlorine。氯
+Clairaut's theorem 克莱罗定理
+Clanis Valles 克拉尼斯峡谷群
+Clapeyron equation 克拉珀龙方程
+Claritas 克拉里塔斯
+Claritas Fossae 克拉里塔斯堑沟群
+Claritas Rupes 克拉里塔斯峭壁
+Clark crater 克拉克陨击坑
+Clarke Montes 克拉克山脉
+Clasia Vallis 克拉西亚峡谷
+Classic of the Stars 星经
+Classical and Quantum Gravity 经典引力和量子引力
+Clausius-Clapeyron relation 克劳修斯-克拉珀龙方程
+Clavius crater 克拉维乌斯环形山
+Clayden effect 克莱登效应
+Clear and Bright 清明
+Clearwater Lake crater 清水湖陨星坑
+Cleia Dorsum 克勒亚山脊
+Clementine 克莱芒蒂娜号
+Cleomedes crater 克莱奥迈季斯环形山
+Cleopatra crater 克莱奥帕特拉环形山
+Cleoselene 艳卫二
+Clogh crater 克洛赫陨击坑
+Clota Vallis 克洛塔峡谷
+Clova crater 克洛瓦陨击坑
+Cloverleaf quasar 四叶形类星体
+Clown Face Nebula 小丑脸星云
+Cluny crater 克吕尼陨击坑
+Cluster 簇群空间探测器
+Cm 全称:curium。锔
+Cnc 1、全称:Cancer。巨蟹宫; 鹑首; 未宫; 2、全称:Cancer。巨蟹座
+Co 全称:cobalt。钴
+CoD 全称:Cordoba Durchmusterung。科尔多瓦巡天星表
+CoRoT 全称:Convection rotation and planetary transits。柯罗号天文卫星; 对流、旋转与行星凌星[卫星]
+Coalsack Dark Nebula 煤袋星云
+Coalsack Nebula 煤袋星云
+Coathanger Cluster 衣架星团
+Cobalt crater 科博尔特陨击坑
+Coblentz crater 柯布伦茨陨击坑
+Cobres crater 科夫雷斯陨击坑
+Cockcroft crater 考克饶夫环形山
+Cocoon Nebula 蚕茧星云; 茧状星云
+Coetano Pires 毕学源
+Coimbra crater 科英布拉陨击坑
+Col 全称:Columba。天鸽座
+Cold Bokkeveld meteorite 冷伯克费尔德陨星
+Cold Dew 寒露
+Coleman-Weinberg potential 科尔曼-温伯格势
+Colles Nili 尼罗小丘群
+Coloe Fossae 科勒堑沟群
+Colombo Gap 科隆博环缝
+Colombo crater 哥伦布环形山
+Columba 缩写:Col。天鸽座
+Columbia Valles 哥伦比亚峡谷群
+Columbus crater 哥伦布陨击坑
+Colón crater 科隆陨击坑
+Com 全称:Coma Berenices。后发座
+Coma Berenices 缩写:Com。后发座
+Coma Star Cluster 后发星团
+Coma cluster 后发星系团
+Coma-Virgo Cluster 后发-室女星系团
+Comas Sola crater 科马斯-索拉陨击坑
+Comas Solá Comet 科马斯-索拉彗星
+Combined Array for Research in Millimeter-wave Astronomy 缩写:CARMA。CARMA毫米波组合阵
+Comet Austin 奥斯汀彗星
+Comet Bennett 本内特彗星
+Comet Donati 多纳蒂彗星
+Comet Encke 恩克彗星
+Comet Hale-Bopp 海尔-波普彗星
+Comet Hyakutake 百武彗星
+Comet ISON 艾森彗星
+Comet Interceptor 彗星拦截探测器
+Comet Machholz 麦克霍尔茨彗星
+Comet NEOWISE 新智彗星
+Comet Nucleus Tour 缩写:CONTOUR。CONTOUR彗核探测器
+Comet Pan-STARRS 泛星彗星
+Comet Shoemaker-Levy 9 缩写:SL9。舒梅克-列维9号彗星
+Comet West 韦斯特彗星
+Comet de Chéseaux 德塞瑟彗星
+Comité Consultatif du Temps et des Fréquences 缩写:CCTF。时间频率咨询委员会
+Comité Consultatif pour la Definition de la Seconde 缩写:CCDS。秒定义咨询委员会
+Comité International des Poids et Mesures 缩写:CIPM。国际计量委员会
+Committee on Space Research 缩写:COSPAR。国际空间研究委员会
+Common Astronomy Software Applications 缩写:CASA。CASA通用天文软件包
+Communication/Navigation Outage Forecasting System 缩写:C/NOFS。通信/导航中断预报系统
+Compendium of Calen-drical Science and Astronomy 《历象考成》
+Compendium of the Imperial Astronomical Instruments 《仪象考成》
+Complex Orbital Observations Near-Earth of Activity of the Sun 缩写:Koronas。日冕系列卫星
+Comptes Rendus Physique 法国科学院报告:物理学
+Compton Gamma-Ray Observatory 缩写:CGRO。康普顿伽马射线天文台
+Compton cooling 康普顿冷却
+Compton crater 康普顿环形山
+Compton cross-section 康普顿截面
+Compton effect 康普顿效应
+Compton frequency 康普顿频率
+Compton heating 康普顿加热
+Compton loss 康普顿耗损
+Compton recoil particle 康普顿反冲粒子
+Compton scattering 康普顿散射
+Compton scattering cross-section 康普顿散射截面
+Compton telescope 康普顿望远镜
+Compton wavelength 康普顿波长
+Compton y-parameter 康普顿y参数
+Compton γ-Ray Observatory 缩写:CGRO。康普顿伽马射线天文台
+Comptonization 康普顿化
+Comrie crater 科姆里环形山
+Conches crater 孔什陨击坑
+Concord crater 康科德陨击坑
+Concordia 协神星
+Concordia family 协神星族
+Condorcet crater 孔多塞环形山
+Cone nebula 锥状星云
+Confucius 孔子
+Confusion 致淆
+Conférence Générale des Poids et Mesures 缩写:CGPM。国际计量大会
+Congreve crater 康格里夫环形山
+Connaissance des Temps 法国天文年历
+Constellation-X 星座号X射线望远镜
+Context Camera 缩写:CTX。背景相机
+Contributions of The Astronomical Observatory Skalnate Pleso 斯洛伐克天文台论文集
+Convection rotation and planetary transits 缩写:CoRoT。柯罗号天文卫星; 对流、旋转与行星凌星[卫星]
+Conventional International Origin 缩写:CIO。国际协议原点
+Coogoon Valles 库贡峡谷群
+Cook crater 库克环形山
+Cooke method 库克法
+Cooma crater 库马陨击坑
+Cooperative Astrophysics and Technology Satellite 缩写:CATSat。天体物理和技术卫星
+Coordinated Universal Time 缩写:UTC。协调世界时
+Copais Palus 科帕伊斯沼
+Copeland's Septet 科普兰七重星系
+Copenhagen category 哥本哈根判据
+Copenhagen classification 哥本哈根分类
+Copenhagen problem 哥本哈根问题
+Copernican Principle 哥白尼原理
+Copernican argument 哥白尼论点
+Copernican period 哥白尼纪
+Copernican system 哥白尼体系
+Copernicus 哥白尼天文卫星
+Copernicus crater 1、哥白尼环形山; 2、哥白尼陨击坑
+Coprates 科普莱特斯
+Coprates Catena 科普莱特斯坑链
+Coprates Chasma 科普莱特斯深谷
+Coprates Labes 科普莱特斯坡地
+Coprates Mensa 科普莱特斯桌山
+Coprates Montes 科普莱特斯山脉
+Coptic calendar 科普特历
+Cor Caroli 常陈一
+Cor Hydrae 星宿一
+Cor Leonis 轩辕十四
+Cor Scorpii 心宿二; 大火
+Cor Serpentis 天市右垣七; 蜀
+Cor Tauri 毕宿五
+Coracis Fossae 科拉奇斯堑沟群
+Corby crater 科比陨击坑
+Cordelia 天卫六
+Cordoba Durchmusterung 缩写:CD; CoD。科尔多瓦巡天星表
+Cordoba Zone Catalogue 缩写:CZ。科尔多瓦分区星表
+Cori crater 科里环形山
+Corinto crater 科林托陨击坑
+Coriolis coupling 科里奥利耦合
+Coriolis crater 科里奥利环形山
+Coriolis distortion 科里奥利畸变
+Coriolis effect 科里奥利效应
+Coriolis force 科里奥利力
+Cornu prism 考纽棱镜
+Corona Australids 南冕流星群
+Corona Australis 缩写:CrA。南冕座
+Corona Borealis 缩写:CrB。北冕座
+Corona Borealis cluster 北冕星系团
+Coronae Montes 科罗纳山脉
+Coronae Planum 科罗纳高原
+Coronae Scopulus 科罗纳断崖
+Coronas-Photon 日冕质子号卫星
+Corozal crater 科罗萨尔陨击坑
+Correlation Radial Velocities spectrometer 缩写:CORAVEL spectrometer。相关式视向速度仪
+Corsa-B 天鹅号
+Corvus 缩写:Crv。乌鸦座
+Cosmic Anisotropy Telescope 缩写:CAT。宇宙各向异性望远镜
+Cosmic Assembly Near-infrared Deep Extragalactic Legacy Survey 缩写:CANDELS。宇宙星系近红外遗珍巡天;烛光巡天
+Cosmic Background Explorer 缩写:COBE。宇宙背景探测器
+Cosmic Background Imager 缩写:CBI。宇宙背景成像仪
+Cosmic Evolution Survey 缩写:COSMOS。宇宙演化巡天
+Cosmic Hot Interstellar Plasma Spectrometer Satellite 缩写:CHIPS。星际热等离子体光谱卫星
+Cosmic Lens All-Sky Survey 缩写:CLASS。宇宙透镜巡天
+Cosmic Research 宇宙研究
+Cosmos 宇宙系列卫星
+Cost crater 科斯特陨击坑
+Coster-Kronig transition 科斯特-克勒尼希跃迁
+Coughlin crater 库格林坑
+Coulomb attraction 库仑引力
+Coulomb barrier 库仑势垒
+Coulomb collision 库仑碰撞
+Coulomb coupling 库仑耦合
+Coulomb crater 库仑环形山
+Coulomb drag 库仑阻力
+Coulomb field 库仑场
+Coulomb force 库仑力
+Coulomb interaction 库仑互作用
+Coulomb law 库仑定律
+Coulomb logarithm 库仑对数
+Coulomb scattering 库仑散射
+Coulomb wave function 库仑波函数
+Coulomb-Born approximation 库仑-玻恩近似
+Courant condition 柯朗条件
+Cousins color system 卡曾斯颜色系统
+Cowell method 科威尔方法
+Cowling approximation 柯林近似
+Cowling mechanism 柯林机制
+Coxa 西次相; 太微右垣四
+Cr 全称:chromium。铬
+CrA 全称:Corona Australis。南冕座
+CrAO 全称:Crimean Astrophysical Observatory。克里米亚天体物理台
+CrB 全称:Corona Borealis。北冕座
+Crab Nebula 蟹状星云
+Crab pulsar 蟹状星云脉冲星
+Crablike source 类蟹源
+Crater 缩写:Crt。巨爵座
+Cray crater 克雷陨击坑
+Creel crater 克雷尔陨击坑
+Cremona crater 克雷莫纳环形山
+Crepe ring C环
+Crescent Nebula 蛾眉星云
+Cressida 天卫九
+Crewe crater 克鲁陨击坑
+Crimean Astrophysical Observatory 缩写:CrAO。克里米亚天体物理台
+Crivitz crater 克里维茨陨击坑
+Crocco crater 克罗科环形山
+Crommelin crater 1、克罗姆林环形山; 2、克罗姆林陨击坑
+Crommelin's comet 克罗姆林彗星
+Cross crater 克罗斯陨击坑
+Cross-stick at back of chariot 轸宿
+Crotone crater 克罗托内陨击坑
+Crt 全称:Crater。巨爵座
+Cru 全称:Crux。南十字座
+Cruls crater 克鲁尔斯陨击坑
+Crux 缩写:Cru。南十字座
+Crux-Scutum arm 南十字-盾牌臂
+Cruz crater 克鲁斯陨击坑
+Crv 全称:Corvus。乌鸦座
+Cryogenic Dark Matter Search 缩写:CDMS。暗物质低温搜寻计划
+Cs 全称:caesium。铯
+Cu 全称:copper。铜
+Cubic Kilometre Neutrino Telescope 缩写:KM3NeT。立方千米中微子望远镜
+Cue crater 克尤陨击坑
+Cujam 斗一
+Culann Patera 库兰山口
+Culter crater 库特陨击坑
+Cunitz crater 库尼茨环形山
+Cupid 天卫二十七
+Curie crater 1、居里环形山; 2、居里陨击坑
+Curie temperature 居里温度
+Curiosity rover 好奇号火星车
+Cursa 玉井三
+Curtius crater 库尔提乌斯环形山
+Cusus Valles 库苏斯峡谷群
+Cuvier crater 居维叶环形山
+Cyane Catena 库阿涅坑链
+Cyane Fossae 库阿涅堑沟群
+Cyane Sulci 库阿涅沟脊地
+Cybele 原神星
+Cybele group 库柏勒群
+Cyclopia 库克罗匹亚
+Cyclops project 独眼神计划
+Cydnus Rupēs 居奴士峭壁
+Cydonia 基多尼亚
+Cydonia Colles 基多尼亚小丘群
+Cydonia Labyrinthus 基多尼亚沟网
+Cydonia Mensae 基多尼亚桌山群
+Cyg 全称:Cygnus。天鹅座
+Cygnids 天鹅流星群
+Cygnus 缩写:Cyg。天鹅座
+Cygnus A 天鹅射电源A
+Cygnus Cloud 天鹅暗云
+Cygnus Loop 天鹅圈
+Cygnus Rift 天鹅座暗隙
+Cygnus Star Cloud 天鹅恒星云
+Cygnus X-1 天鹅X-1
+Cygnus X-2 天鹅X-2
+Cygnus X-3 天鹅X-3
+Cyllene 木卫四十八
+Cypress crater 赛普里斯陨击坑
+Cyrano crater 西哈诺环形山
+Cyrillid Shower 西里尔流星雨
+Cyrillids 西里尔流星雨
+Cyrillus crater 西里尔环形山
+Cytherean atmosphere 金星大气
+Czerny-Turner spectrometer 切尔尼-特纳光谱仪
+Cádiz crater 加的斯陨击坑
+CⅠ emission line CⅠ发射线; 中性碳发射线
+CⅡ region CⅡ区; 电离碳区
+D abundance 氘丰度
+D bottleneck 氘瓶颈效应
+D galaxy D星系
+D layer D层
+D line D线
+D star D 型星
+D-BD 全称:degenerate brown dwarf。简并褐矮星
+D-brane D-膜
+D-class asteroid D型小行星
+D-region D区
+D-type asteroid D型小行星
+DA white dwarf DA型白矮星
+DAMA/NaI dark matter search experiment DAMA碘化钠暗物质探测实验
+DAMPE 全称:Dark Matter Particle Explorer。暗物质粒子探测器
+DAO 全称:Dominion Astrophysical Observatory。自治领天体物理台
+DAOPHOT 全称:Dominion Astrophysical Observatory Photometry。自治领天体物理台测光包
+DAP 全称:digital area photometer。数字面积光度计
+DASI 全称:Degree Angular Scale Interferometer。度角尺度干涉仪
+DATS 全称:Despun Antenna Test Satellite。消旋天线试验卫星
+DB white dwarf DB型白矮星
+DBI action 全称:Dirac-Born-Infeld action。狄拉克-玻恩-因费尔德作用量
+DC 全称:dispersion constant。色散常数
+DC white dwarf DC型白矮星
+DDO 全称:David Dunlap Observatory。大卫·邓拉普天文台; DDO天文台
+DDO classification DDO分类
+DDO color system DDO颜色系统
+DDO photometry DDO测光
+DDO system 全称:David Dunlap Observatory system。DDO分类系统
+DDT 全称:Deflagration-to-Detonation Transition。爆燃-爆轰转变
+DEIS 全称:deeply embedded infrared source。深埋红外源
+DEM 全称:differential emission measure。微分发射度
+DENIS 全称:DEep Near Infrared Survey of the Southern Sky。南天近红外深度巡天
+DEPFET pixel sensor 全称:depleted p-channel field effect transistor pixel sensor。DEPFET像元传感器
+DES 全称:dark energy survey。暗能量巡天
+DESI 全称:Dark Energy Spectroscopic Instrument。暗能量光谱仪
+DESI Legacy Imaging Surveys DESI遗珍成像巡天
+DESTINY+ 全称:Demonstration and Experiment of Space Technology for INterplanetary voYage Phaethon fLyby dUSt science。法厄同掠飞、尘埃科学及行星际航行技术实验; 命运号[探测器]
+DEep Near Infrared Survey of the Southern Sky 缩写:DENIS。南天近红外深度巡天
+DFC 全称:discrete Fourier convolution。离散傅里叶卷积
+DFG 全称:Deutsche Forschungsgemeinschaft。德国科学基金会
+DFT 全称:discrete Fourier transform。离散傅里叶变换
+DGP gravity 全称:Dvali-Gabadadz-Porrati gravity。DGP引力
+DIB 全称:diffuse interstellar band。弥漫星际谱带
+DIDC 全称:dense interstellar dust cloud。稠密星际尘云
+DIMM 全称:differentional image motion monitor。差分图像运动测量仪
+DIRBE 全称:Diffuse Infrared Background Experiment。弥漫红外背景实验
+DKIST 全称:Daniel K. Inouye Solar Telescope。丹尼尔·井上建太阳望远镜
+DLA 全称:damped Lyman α system。阻尼莱曼α系统
+DLS 全称:Deep Lens Survey。引力透镜深空巡天
+DM 全称:dispersion measure。频散量
+DME 全称:distance-measuring equipment。测距装置
+DMR 全称:differential microwave radiometer。较差微波辐射计
+DO white dwarf DO型白矮星
+DPAC 全称:Data Processing and Analysis Consortium。[盖亚]数据处理分析联盟
+DPMS 1、全称:Dahlgren Polar Monitoring Service。达尔格伦地极监测服务; 2、全称:Doppler Polar Monitoring Service。多普勒地极监测服务
+DQ Her star 全称:DQ Herculis star。武仙DQ型星
+DQ Herculis star 缩写:DQ Her star。武仙DQ型星
+DQ white dwarf DQ型白矮星
+DQE 全称:detective quantum efficiency。探测量子效率
+DRAO 全称:Dominion Radio Astrophysical Observatory。自治领射电天体物理台
+DRS 全称:data-relay satellite。数据转播卫星
+DS 全称:double star。双星
+DS1 全称:Deep Space 1。深空1号
+DSA 全称:diffusive shock acceleration。扩散激波加速
+DSFG 全称:dusty star-forming galaxy。富尘产星星系
+DSN 全称:Deep Space Network。深空探测网
+DSS 全称:Digitized Sky Survey。数字化巡天
+DST 全称:daylight saving time; summer time。夏令时
+DW 全称:Dwingeloo list。德文格洛射电源表
+DZ white dwarf DZ型白矮星
+Da Vinci crater 达芬奇陨击坑
+Daan crater 大安陨击坑
+Dabih 牛宿一
+Dabih Major 牛宿一
+Dabih Minor 牛宿增十二
+Dabu 大埔
+Dacono crater 达科诺陨击坑
+Dactyl 艾卫
+Daedalia Planum 代达利亚高原
+Daedalus crater 代达罗斯环形山
+Daet crater 达特陨击坑
+Daga Vallis 达加峡谷
+Dagon 大衮
+Dahlgren Polar Monitoring Service 缩写:DPMS。达尔格伦地极监测服务
+Daiwensai 戴文赛
+Dalgaranga crater 达尔加兰加陨星坑
+Dali Chasma 达利深谷
+Dalian 大连
+Dalim 天苑增三(增四)
+Dall-Kirkham Cassegrain telescope D-K式卡塞格林望远镜
+Dall-Kirkham telescope 多尔-柯卡姆望远镜
+Dalton crater 道尔顿环形山
+Dalu Cavus 达卢凹地
+Daly crater 戴利陨击坑
+Dampier crater 丹皮尔陨击坑
+Damsel 女宿
+Dana crater 达纳陨击坑
+Danaë 囚神星
+Dangun Era 檀君纪年
+Daniel K. Inouye Solar Telescope 缩写:DKIST。丹尼尔·井上建太阳望远镜
+Danielson crater 丹尼尔森陨击坑
+Danieltsui 崔琦
+Danilova crater 丹尼洛娃环形山
+Danjon astrolabe 丹戎等高仪
+Danjon crater 丹戎环形山
+Danjon scale 丹戎标度
+Dank crater 丹克陨击坑
+Dante crater 但丁环形山
+Dao Vallis 达奥峡谷
+Daphne 桂神星
+Daphnis 土卫三十五
+Dark Energy Spectroscopic Instrument 缩写:DESI。暗能量光谱仪
+Dark Matter Particle Explorer 缩写:DAMPE。暗物质粒子探测器
+Dark S Nebula 蛇形暗云
+Dark Shadow 暗虚; 闇虚
+Darke equation 达克方程
+Darvel crater 达弗尔陨击坑
+Darwin Space Interferometer 达尔文空间干涉仪
+Darwin crater 1、达尔文环形山; 2、达尔文陨击坑
+Darwin ellipsoid 达尔文椭球体
+Data Processing and Analysis Consortium 缩写:DPAC。[盖亚]数据处理分析联盟
+David Dunlap Observatory 缩写:DDO。大卫·邓拉普天文台; DDO天文台
+David Dunlap Observatory system 缩写:DDO system。DDO分类系统
+Davida 戴维
+Davies crater 戴维斯陨击坑
+Davies-Cotton Cherenkov telescope 戴维斯-科顿型切伦科夫望远镜
+Davis-Greenstein effect 戴维斯-格林斯坦效应
+Davisson crater 戴维孙环形山
+Davy Crater Chain 戴维环形山链
+Dawes Gap 道斯环缝
+Dawes crater 道斯陨击坑
+Dawes limit 道斯极限
+Dawn Spacecraft 曙光号小行星探测器
+De Forest crater 德福雷斯特环形山
+De Vries crater 德弗里斯环形山
+De la Rue crater 德拉鲁环形山
+De revolutionibus orbium coelestium 天体运行论
+Deba crater 代巴陨击坑
+Debye crater 德拜环形山
+Debye frequency 德拜频率
+Debye length 德拜长度
+Debye potential 德拜势
+Debye radius 德拜半径
+Debye shielding distance 德拜屏蔽距离
+Debye sphere 德拜球
+Debye unit 德拜单位
+Debye-Hückel model 德拜-许克尔模型
+December Solstice 冬至
+December solstice 冬至点
+Dechu crater 德丘陨击坑
+Decrux 十字架四
+Dedekind ellipsoid 迪特金椭球体
+Deep Bay crater 深湾陨星坑
+Deep Impact space probe 深度撞击空间探测器
+Deep Lens Survey 缩写:DLS。引力透镜深空巡天
+Deep Space 1 缩写:DS1。深空1号
+Deep Space Network 缩写:DSN。深空探测网
+Deflagration-to-Detonation Transition 缩写:DDT。爆燃-爆轰转变
+Degana crater 代加纳陨击坑
+Degas crater 德加环形山
+Degree Angular Scale Interferometer 缩写:DASI。度角尺度干涉仪
+Deimos 火卫二
+Dein crater 德恩陨击坑
+Dejnev crater 杰日尼奥夫陨击坑
+Dekker mask 德科掩模
+Del 全称:Delphinus。海豚座
+Delambre crater 德朗布尔环形山
+Delaunay element 德洛奈根数
+Delaunay theory 德洛奈理论
+Delaunay variable 德洛奈变量
+Dellinger crater 德林杰环形山
+Delphinus 缩写:Del。海豚座
+Delta 奎宿五
+Delta Aquarid meteor shower 宝瓶δ流星雨
+Delta crater 德尔塔陨击坑
+Deltoton Sinus 三角湾
+Deltotum 天大将军九
+Demon Star 恶魔星
+Demonax crater 泽莫纳克斯环形山
+Demonstration and Experiment of Space Technology for INterplanetary voYage Phaethon fLyby dUSt science 缩写:DESTINY+。法厄同掠飞、尘埃科学及行星际航行技术实验; 命运号[探测器]
+Deneb 天津四
+Deneb Alased 五帝座一
+Deneb Aleet 五帝座一
+Deneb Algedi 垒壁阵四
+Deneb Algenubi 天仓二
+Deneb Algiedi 垒壁阵四
+Deneb Cygni 天津四
+Deneb Dulfim 败瓜一
+Deneb Kaitos 1、土司空; 2、天仓一
+Deneb Okab 1、吴越; 2、吴越增一
+Denebola 五帝座一
+Dengfeng Observatory 登封观星台
+Dengfeng Star Observation Platform 登封观星台
+Denning crater 丹宁陨击坑
+Depressio Hellespontica 赫勒斯滂特低地
+Dersu crater 代尔苏陨击坑
+Desargues crater 德扎尔格环形山
+Descartes crater 笛卡儿环形山
+Descent of Hoar Frost 霜降
+Desdemona 天卫十
+Dese crater 德塞陨击坑
+Deseado crater 德塞阿多陨击坑
+Deslandres crater 德朗达尔环形山
+Despina 海卫五
+Despun Antenna Test Satellite 缩写:DATS。消旋天线试验卫星
+Dessau crater 德绍陨击坑
+Deucalion 丢卡利翁
+Deucalionis Regio 丢卡利翁区
+Deuteronilus 亚尼罗
+Deuteronilus Colles 亚尼罗小丘群
+Deuteronilus Mensae 亚尼罗桌山群
+Deutsch-Spanisches Astronomisches Zentrum 德国-西班牙天文中心
+Deutsche Forschungsgemeinschaft 缩写:DFG。德国科学基金会
+Deva Valles 德瓦峡谷群
+Deva Vallis 德瓦峡谷
+Devana Chasma 德瓦娜深谷
+Dewar crater 杜瓦环形山
+Deyoung-Axford model 德扬-阿克斯福德模型
+Dhur 西上相; 太微右垣五
+Dia 木卫五十三
+Dia-Cau crater 地裘陨击坑
+Diabolo Nebula 哑铃星云
+Diacria 迪阿克里亚
+Diacria Patera 迪阿克里亚山口
+Diadem 太微左垣五; 东上将
+Dial 日晷号
+Diana 月神星
+Dicke radiometer 迪克辐射计
+Dicke receiver 迪克接收机
+Dicke switch 迪克开关
+Dicke-switched receiver 迪克开关接收机
+Dido crater 迪多环形山
+Didymos 孪大星
+Difda al Thani 土司空
+Diffuse Infrared Background Experiment 缩写:DIRBE。弥漫红外背景实验
+Digitized Sky Survey 缩写:DSS。数字化巡天
+Dike 泰神星
+Dilly crater 迪利陨击坑
+Dimorphos 孪小星
+Dingo crater 丁戈陨击坑
+Dingzhong 定中
+Dinorwic crater 迪诺威克陨击坑
+Diogenite 奥长古铜无球粒陨石
+Diomedes 迪奥梅黛斯
+Dione 1、土卫四; 2、坤神星
+Dionysus Patera 狄俄尼索斯山口
+Diophantus crater 丢番图环形山
+Dioretsa 逆名星
+Dioscuria 狄俄斯枯里亚
+Diphda 土司空
+Dipole Repeller 偶极墟
+Dipper 斗宿
+Diptera 蜜蜂一
+Dirac cosmology 狄拉克宇宙学
+Dirac hypothesis 狄拉克假说
+Dirac mass term 狄拉克质量项
+Dirac neutrino 狄拉克中微子
+Dirac string 狄拉克弦
+Dirac's large-number hypothesis 缩写:LNH。狄拉克大数假说
+Dirac-Born-Infeld action 缩写:DBI action。狄拉克-玻恩-因费尔德作用量
+Dirac-Jordan cosmology 狄拉克-乔丹宇宙学
+Directorate of Astronomy and Calendar 司天监
+Discourse on the Conformation of the Heavens 安天论
+Discourse on the Diurnal Revolution of the Heavens 昕天论
+Discourse on the Vastness of the Heavens 穹天论
+Discoverer 发现者号
+Discovery Channel Telescope 发现频道望远镜
+Discovery Rupes 发现号峭壁
+Dison crater 迪松陨击坑
+Dittaino Valles 迪泰诺峡谷群
+Dixie crater 迪克西陨击坑
+Djanggawul Fossae 江嘎沃堑沟
+Doanus Vallis 多讷斯峡谷
+Doba crater 多巴陨击坑
+Dobsonian mounting 多布森装置
+Dobsonian reflector 多布森反射望远镜
+Dobsonian telescope 多布森望远镜
+Dobsonian telescope mount 多布森望远镜支架
+Dodecahedron 十二面体号
+Dodecapole 十二面体号
+Doerfel crater 德费尔环形山
+Dog Star 狼星; 天狼[星]
+Dogana crater 多加纳陨击坑
+Dokka crater 多卡陨击坑
+Dokuchaev crater 多库恰耶夫陨击坑
+Dollfus crater 多尔菲斯陨击坑
+Dollfus polarimeter 多尔富斯偏振计
+Domingos Ferreira 福文高
+Dominical Letter 主日字母
+Dominion Astrophysical Observatory 缩写:DAO。自治领天体物理台
+Dominion Astrophysical Observatory Photometry 缩写:DAOPHOT。自治领天体物理台测光包
+Dominion Radio Astrophysical Observatory 缩写:DRAO。自治领射电天体物理台
+Domoni crater 多莫尼陨击坑
+Domovoy crater 多莫伏伊环形山
+Donati's comet 多纳提彗星
+Dongguan 东莞
+Donner crater 唐纳环形山
+Doon crater 杜恩陨击坑
+Doppelmayer crater 多佩尔迈尔环形山
+Doppler Polar Monitoring Service 缩写:DPMS。多普勒地极监测服务
+Doppler boosting factor 多普勒提升因子
+Doppler broadening 多普勒致宽
+Doppler contour 多普勒轮廓
+Doppler core 多普勒线核
+Doppler counting 多普勒计数
+Doppler crater 多普勒环形山
+Doppler data 多普勒资料
+Doppler displacement 多普勒位移
+Doppler effect 多普勒效应
+Doppler equation 多普勒方程
+Doppler mapping 多普勒测绘
+Doppler motion 多普勒运动
+Doppler parameter 多普勒参数
+Doppler peak 多普勒峰
+Doppler positioning 多普勒定位
+Doppler profile 多普勒轮廓
+Doppler ranging 多普勒测距
+Doppler receiver 多普勒接收机
+Doppler relation 多普勒关系
+Doppler shift 多普勒频移
+Doppler spread 多普勒频散
+Doppler system with double frequency 双频多普勒
+Doppler system with single frequency 单频多普勒
+Doppler translocation 多普勒定位
+Doppler width 多普勒宽度
+Doppler-Fizeau effect 多普勒-菲佐效应
+Doppler-shift measurement 多普勒频移测量
+Dopplergram 多普勒图
+Dor 全称:Dorado。剑鱼座
+Dorado 缩写:Dor。剑鱼座
+Doris 昏神星
+Dorothy Crater 多萝茜坑
+Dorsa Aldrovandi 阿尔德罗万迪山脊
+Dorsa Andrusov 安德鲁索夫山脊
+Dorsa Argand 阿尔甘山脊
+Dorsa Argentea 银色山脊群
+Dorsa Barlow 巴洛山脊
+Dorsa Brevia 布雷维亚山脊群
+Dorsa Burnet 伯内特山脊
+Dorsa Cato 加图山脊
+Dorsa Dana 达纳山脊
+Dorsa Ewing 尤因山脊
+Dorsa Geikie 盖基山脊
+Dorsa Harker 哈克山脊
+Dorsa Lister 利斯特山脊
+Dorsa Mawson 莫森山脊
+Dorsa Rubey 鲁比山脊
+Dorsa Smirnov 斯米尔诺夫山脊
+Dorsa Sorby 索比山脊
+Dorsa Stille 施蒂勒山脊
+Dorsa Whiston 惠斯顿山脊
+Dorsum Arduino 阿尔杜伊诺山脊
+Dorsum Azara 阿萨拉山脊
+Dorsum Bucher 布赫山脊
+Dorsum Buckland 巴克兰山脊
+Dorsum Cayeux 卡耶山脊
+Dorsum Cloos 克洛斯山脊
+Dorsum Cushman 库什曼山脊
+Dorsum Gast 加斯特山脊
+Dorsum Grabau 葛利普山脊
+Dorsum Heim 海姆山脊
+Dorsum Higazy 希加兹山脊
+Dorsum Nicol 尼科尔山脊
+Dorsum Niggli 尼格利山脊
+Dorsum Oppel 奥佩尔山脊
+Dorsum Owen 欧文山脊
+Dorsum Scilla 希拉山脊
+Dorsum Termier 泰尔米埃山脊
+Dorsum Von Cotta 冯·科塔山脊
+Dorsum Zirkel 齐克尔山脊
+Douglass crater 道格拉斯陨击坑
+Dove prism 道威棱镜
+Dowa crater 多瓦陨击坑
+Downe crater 唐恩陨击坑
+Dra 全称:Draco。天龙座
+Draco 缩写:Dra。天龙座
+Draco Dwarf Galaxy 天龙矮星系
+Draco galaxy 天龙星系
+Draconid meteor shower 天龙流星雨; 天龙座流星雨
+Draconids 天龙流星群; 天龙座流星群
+Draconis Mons 天龙山
+Dragon Nebula 飞龙星云
+Dragonfly mission 蜻蜓号[土卫六探测器]
+Drake equation 德雷克方程
+Draper classification 德雷伯分类
+Drava Valles 德拉瓦峡谷群
+Drilon Vallis 德利龙峡谷
+Drinus Valles 德里努斯峡谷群
+Dritter Fundamental Katalog 缩写:FK3。FK3星表; 第三基本星表
+Dromore crater 德罗莫尔陨击坑
+Dryas Mons 仙女木山
+Dryden crater 德赖登环形山
+Drygalski crater 德里加尔斯基环形山
+Dschubba 房宿三
+Dsiban 女史增一
+Du Martheray crater 迪马特雷陨击坑
+Du Toit crater 杜托伊特陨击坑
+Dubhe 天枢; 北斗一
+Dubis Vallis 迪比峡谷
+Dubki crater 杜布基陨击坑
+Dubyago crater 杜比亚戈环形山
+Duck Bay 杜克湾
+Dufu 杜甫
+Dugan crater 杜根环形山
+Duhr 西上相; 太微右垣五
+Dukhan crater 杜汉陨击坑
+Dulce Vallis 杜尔塞峡谷
+Dulovo crater 杜洛沃陨击坑
+Dumbbell Nebula 哑铃星云
+Dumuzi Fossa 杜木兹堑沟
+Dunhuang 敦煌
+Dunhuang crater 敦煌陨击坑
+Dunhuang star chart 敦煌星图
+Dunkassa crater 敦卡萨陨击坑
+Dunér crater 杜奈尔环形山
+Durchmusterung 巡天星表
+Durius Valles 杜留斯峡谷群
+Dush crater 杜什陨击坑
+Dustpan 箕宿
+Dvali-Gabadadz-Porrati gravity 缩写:DGP gravity。DGP引力
+Dwingeloo Radio Observatory 德文格洛射电天文台
+Dwingeloo galaxy 德温格洛星系
+Dwingeloo list 缩写:DW。德文格洛射电源表
+Dy 全称:dysprosium。镝
+Dysnomia 阋卫
+Dyson crater 戴森环形山
+Dzeng crater 曾格陨击坑
+Dziban 女史增一
+Dzígai Vallis 泽盖峡谷
+E component E成分
+E corona E冕
+E galaxy 全称:elliptical galaxy; elliptical; elliptical system。椭圆星系
+E layer E层
+E line E 谱线
+E mode polarization E模式偏振
+E region E区
+E+A galaxy E+A星系
+E-class asteroid E 型小行星
+E-type asteroid E型小行星
+E. Mareotis Tholus 东玛莱奥提斯山丘
+EAT 全称:East African Time。东非时间
+EBCCD 全称:electron bombard CCD。电子轰击CCD
+EEI 全称:Exo-Earth Imager。系外类地行星成像器
+EELT 全称:European Extremely Large Telescope。欧洲特大望远镜
+EET 全称:East European Time。东欧时间
+EFR 全称:emerging flux region。射流区
+EFT 全称:effective field theory。有效场论
+EGG 全称:evaporating gaseous globule。蒸发气态球状体
+EGO 全称:European Gravitational Observatory。欧洲引力天文台
+EGRET 全称:Energetic Gamma Ray Experiment Telescope。高能伽马射线实验望远镜
+EGRET catalog EGRET 星表
+EHT 全称:Event Horizon Telescope。事件视界望远镜
+ELDO 全称:European Launcher Development Organization。欧洲发射器开发组织
+ELT 全称:Extremely Large Telescope。特大望远镜
+EM 全称:emission measure。发射量度
+EMCCD 全称:electron-multiplying CCD。电子倍增CCD
+EMF 全称:evolving magnetic feature。演化磁特征
+EMP 全称:Ephemeris of the Minor Planets。小行星星历表
+EMU 全称:Evolutionary Map of the Universe。宇宙演化图
+EOP 全称:earth orientation parameter。地球定向参数
+EPG 全称:extraplanar gas。盘外气体
+EPOXI 全称:Extrasolar Planet Observation and Deep Impact Extended Investigation 。EPOXI任务
+ERA 全称:Earth Rotation Angle。地球自转角
+ERC 全称:European Research Council。欧洲研究委员会
+ERF 全称:ephemeris reference frame。历书参考系
+ERO 全称:extremely red object。极红天体
+ERP 全称:earth rotation parameter。地球自转参数
+ERS 全称:European Remote Sensing Satellite。欧洲遥感卫星
+ERTS 全称:Earth Resources Technology Satellite。地球资源卫星
+ESA 全称:European Space Agency。欧洲空间局
+ESO 全称:European Southern Observatory。欧南台
+ESO-MIDAS 全称:European Southern Observatory - Munich Image Data Analysis System。欧洲南方天文台慕尼黑图像数据分析系统
+ESO/SERC Southern Sky Survey ESO/SERC南天天图
+ESRO 全称:European Space Research Organization。欧洲空间研究组织
+ESSENCE supernova survey ESSENCE超新星巡天
+EST 全称:Eastern Standard Time。东部标准时间
+ET 1、全称:Eastern Time。东部时间; 2、全称:Einstein Telescope。爱因斯坦望远镜; 3、全称:ephemeris time。历书时
+ETELS 全称:early-type emission-line star。早型发射线星
+EURECA 全称:European Retrievable Carrier。尤里卡
+EURO-VO 全称:European Virtual Observatory。欧洲虚拟天文台
+EUSO 全称:Extreme Universe Space Observatory。极端宇宙空间天文台
+EUV 全称:extreme-ultraviolet。极紫外
+EUV light 全称:Extreme ultraviolet light。极紫外射线
+EUVE 全称:Extreme Ultra-Violet Explorer。极紫外探测器
+EVA 全称:extravehicular activity。舱外活动
+EVLA 全称:Expanded Very Large Array。增容甚大阵
+EVN 全称:European VLBI Network。欧洲甚长基线干涉网
+EXOSAT 全称:European X-ray Observatory Satellite。EXOSAT欧洲X射线天文卫星
+Eads crater 伊兹陨击坑
+Eagle Nebula 鹰状星云; 鹰鹫星云
+Eagle crater 伊格尔陨击坑
+Eagle mounting 伊格尔装置
+Eagle spectrometer 伊格尔光谱仪
+Earendel 埃雅仁迪尔
+Earth 地球
+Earth Moon and Planets 地球、月球与行星
+Earth Resources Technology Satellite 缩写:ERTS。地球资源卫星
+Earth Rotation Angle 缩写:ERA。地球自转角
+Earth orbit telescope 环地轨道望远镜
+Earth shadow 地影
+Earth-Moon mass ratio 地月质量比
+Earth-Sun Distance 日地距离
+Earth-based observation 地基观测
+Earth-based telescope 地基望远镜
+Earth-crosser 越地小天体
+Earth-like exoplanet 地球型系外行星
+Earth-like planet 类地球行星
+Earth-orbiting observatory 地球轨道天文台
+Earth-orbiting probe 地球轨道探测器
+Earth-orbiting satellite 地球轨道卫星
+East African Time 缩写:EAT。东非时间
+East European Time 缩写:EET。东欧时间
+Eastern Standard Time 缩写:EST。东部标准时间
+Eastern Time 缩写:ET。东部时间
+Eastern Wall 东壁
+Eastern Well 东井
+Eberhard effect 埃伯哈德效应
+Eberswalde crater 埃伯斯瓦尔德陨击坑
+Ebert-Fastie spectrometer 艾勃特-法斯梯光谱仪
+Echidna 台卫
+Echo 司音星
+Echt crater 埃赫特陨击坑
+Echus Chaos 厄科混杂地
+Echus Chasma 厄科深谷
+Echus Fossae 厄科堑沟群
+Echus Montes 厄科山脉
+Echus Palus 厄科沼
+Ed Asich 紫微左垣一; 左枢
+Edam crater 埃丹陨击坑
+Edasich 紫微左垣一; 左枢
+Eddie crater 埃迪陨击坑
+Eddington approximation 爱丁顿近似
+Eddington crater 爱丁顿环形山
+Eddington limit 爱丁顿极限
+Eddington luminosity 爱丁顿光度
+Eddington standard model 爱丁顿标准模型
+Eddington time 爱丁顿时间
+Eddington's formula 爱丁顿公式
+Eddington-Barbier method 爱丁顿-巴比叶方法
+Eddington-Lemaître model 爱丁顿-勒梅特模型
+Eden Patera 伊甸园山口
+Edgeworth crater 埃奇沃思坑
+Edgeworth-Kuiper Belt 埃奇沃斯-柯伊伯带
+Edison crater 爱迪生环形山
+Edom 埃多姆
+Effelsberg Radio Telescope 埃菲尔斯伯格望远镜
+Effelsberg Telescope 埃菲尔斯伯格望远镜
+Egalité arc 平等环弧
+Eger crater 埃格尔陨击坑
+Egeria 芙女星
+Egg Nebula 卵形星云
+Eggther 土卫五十九
+Egyptian ancient astronomy 埃及古代天文学
+Egyptian calendar 埃及历
+Ehden crater 伊赫丁陨击坑
+Eight Burst Nebula 双环星云
+Eijkman crater 艾克曼环形山
+Eil crater 埃勒陨击坑
+Eilat crater 埃拉特陨击坑
+Einasto profile 埃纳斯托轮廓
+Einstein Observatory 缩写:HEAO-2。爱因斯坦天文台
+Einstein Observatory Catalogue 爱因斯坦天文台X射线源表
+Einstein Telescope 缩写:ET。爱因斯坦望远镜
+Einstein arc 爱因斯坦弧
+Einstein coefficient 爱因斯坦系数
+Einstein crater 爱因斯坦环形山
+Einstein cross 爱因斯坦十字
+Einstein effect 爱因斯坦效应
+Einstein equation 爱因斯坦方程
+Einstein field equation 爱因斯坦场方程
+Einstein probability coefficient 爱因斯坦概率系数
+Einstein radius 爱因斯坦半径
+Einstein ring 爱因斯坦环
+Einstein shift 爱因斯坦红移
+Einstein tensor 爱因斯坦张量
+Einstein universe 爱因斯坦宇宙
+Einstein's model 爱因斯坦模型
+Einstein-Bose statistics 爱因斯坦-玻色统计
+Einstein-Cartan gravity 爱因斯坦-嘉当引力
+Einstein-Hilbert Lagrangian 爱因斯坦-希尔伯特拉格朗日量
+Einstein-de Sitter cosmological model 爱因斯坦-德西特宇宙模型
+Einstein-de Sitter model 爱因斯坦-德西特模型
+Einstein-de Sitter universe 爱因斯坦-德西特宇宙
+Einthoven crater 埃因托芬环形山
+Eirene 木卫五十七
+Eistla Regio 艾斯特拉区
+Ejima Saxum 绘岛岩
+Ejriksson crater 埃里克松陨击坑
+Ekman layer 埃克曼层
+Ekpyrotic universe model 火劫宇宙模型
+El Nath 娄宿三
+Elaborate Equatorial Armillary Sphere 玑衡抚辰仪
+Elara 木卫七
+Elath crater 以拉他陨击坑
+Elaver Vallis 厄拉维尔峡谷
+Elcano Montes 埃尔卡诺山脉
+Eldsich 紫微左垣一; 左枢
+Electra 昴宿一
+Electris 厄勒克特里斯
+Electris Mons 厄勒克特里斯山
+Electron 电子号
+Electron-Positron Pair Wind 正负电子对风
+Elementary Astronomical Instrument 简平仪
+Elephant's Trunk Nebula 象鼻星云
+Elgafar 亢宿三
+Elim crater 埃利姆陨击坑
+Elkhiffa Australis 氐宿一
+Elkurud 孙二
+Ellerman bomb 埃勒曼炸弹
+Elliot crater 埃利奥特坑
+Ellsley crater 埃尔斯利陨击坑
+Elnath 五车五
+Elorza crater 埃洛萨陨击坑
+Elpis 乾神星
+Elston crater 埃尔斯顿陨击坑
+Eltanin 天棓四
+Elvey crater 埃尔维环形山
+Ely crater 伊利陨击坑
+Elysium 埃律西昂
+Elysium Catena 埃律西昂坑链
+Elysium Chasma 埃律西昂深谷
+Elysium Fossae 埃律西昂堑沟群
+Elysium Mons 埃律西昂山
+Elysium Planitia 埃律西昂平原
+Elysium Rupes 埃律西昂峭壁
+Emden crater 埃姆登环形山
+Emden equation 艾姆登方程
+Emden function 艾姆登函数
+Emptiness 虚宿
+Encampment 营室; 室宿
+Enceladus 土卫二
+Encke crater 恩克环形山
+Encke gap 恩克环缝
+Encke's comet 恩克彗星
+Encke's method 恩克方法
+End of Heat 处暑
+Endeavour crater 因代沃陨击坑
+Endurance crater 坚忍环形山
+Endymion crater 恩底弥昂环形山
+Energetic Gamma Ray Experiment Telescope 缩写:EGRET。高能伽马射线实验望远镜
+English mounting 英国式装置
+Enif 危宿三
+Enipeus Vallis 厄尼裴乌斯峡谷
+Enki Catena 恩基环形山链
+Ensisheim meteorite 恩希塞姆陨星
+EoR 全称:epoch of reionization。再电离时期
+EoS 全称:equation of state。物态方程
+Eos 曙神星
+Eos Chaos 厄俄斯混杂地
+Eos Chasma 厄俄斯深谷
+Eos Mensa 厄俄斯桌山
+Eos family 曙神星族
+Ep galaxy Ep星系
+Ephemeris of the Minor Planets 缩写:EMP。小行星星历表
+Epi 角宿一
+Epimetheus 土卫十一
+Equ 全称:Equuleus。小马座
+Equatorial Torquetum 简仪
+Equuleus 缩写:Equ。小马座
+Er 全称:erbium。铒
+Er Rai 少卫增八
+Erakis 造父四
+Erato 效神星
+Eratosthenes crater 厄拉多塞环形山
+Erebus Montes 厄瑞玻斯山脉
+Erfle eyepiece 尔弗利目镜
+Eri 全称:Eridanus。波江座
+Eridalus Filaments 波江纤维
+Eridalus Hot Spot 波江热斑
+Eridalus Shell 波江壳
+Eridania 艾利达尼亚
+Eridania Mons 艾利达尼亚山
+Eridania Planitia 艾利达尼亚平原
+Eridania Scopulus 艾利达尼亚断崖
+Eridanus 缩写:Eri。波江座
+Erinome 木卫二十五
+Eris 阋神星
+Eros 爱神星
+Errai 少卫增八
+Erriapus 土卫二十八
+Erro crater 埃罗环形山
+Ersa 木卫七十一
+Erythraea Fossa 厄立特里亚堑沟
+Erythraeum Chaos 厄立特里亚混杂地
+Erythraeum Planum 厄立特里亚高原
+Es 全称:einsteinium。锿
+Escalante crater 埃斯卡兰特陨击坑
+Escorial crater 埃斯科里亚尔陨击坑
+Esira crater 埃西拉陨击坑
+Esk crater 埃斯克陨击坑
+Eskimo Nebula 爱斯基摩星云
+Esnault-Pelterie crater 埃斯诺-佩尔蒂埃环形山
+Espino crater 埃斯皮诺陨击坑
+Eta Aquarid meteor shower 宝瓶η流星雨
+Eta Carina Nebula 船底星云
+Eta Carinae Nebula 船底η星云
+Etamin 天棓四
+Eu 全称:europium。铕
+Euanthe 木卫三十三
+Euclid satellite 欧几里得卫星
+Euclid space telescope 欧几里得空间望远镜
+Euclidean continuation 欧几里得延拓
+Euclidean source count 欧几里得源计数
+Euclidean space 欧几里得空间
+Euclidean time 欧几里得时间
+Euclidean universe 欧几里得宇宙
+Euclides crater 欧几里得环形山
+Eudoxus crater 1、欧多克索斯环形山; 2、欧多克索斯陨击坑
+Eugenia 香女星; 欧亨尼娅
+Eukelade 木卫四十七
+Euler angle 欧拉角
+Euler crater 欧拉环形山
+Euler equation 欧拉方程
+Euler-Lagrange equation 欧拉-拉格朗日方程
+Euler-Poincare characteristic 欧拉-庞加莱特征
+Eulerian coordinate 欧拉坐标
+Eulerian derivative 欧拉导数
+Eulerian motion 欧拉运动
+Eulerian period 欧拉周期
+Eumenides Dorsum 欧墨尼得斯山脊
+Eunomia 司法星
+Eunomia family 司法星族
+Eunostos 欧诺斯托斯
+Eupheme 木卫六十
+Euphrates 幼发拉底
+Euphrates Patera 幼发拉底山口
+Euphrosyne 丽神星
+Euporie 木卫三十四
+Eurasia plate 欧亚板块
+Eureka 尤里卡
+Euripus Mons 埃夫利波斯山
+Europa 1、木卫二; 2、欧女星; 欧罗巴
+Europa Clipper 木卫二快船
+Europa Orbiter 木卫二环轨探测器
+European Centre for Nuclear Research 缩写:CERN。欧洲核子研究中心
+European Extremely Large Telescope 缩写:EELT。欧洲特大望远镜
+European Gravitational Observatory 1、欧洲引力天文台; 2、缩写:EGO。欧洲引力天文台
+European Launcher Development Organization 缩写:ELDO。欧洲发射器开发组织
+European Remote Sensing Satellite 缩写:ERS。欧洲遥感卫星
+European Research Council 缩写:ERC。欧洲研究委员会
+European Retrievable Carrier 缩写:EURECA。尤里卡
+European Southern Observatory 缩写:ESO。欧南台
+European Southern Observatory - Munich Image Data Analysis System 缩写:ESO-MIDAS。欧洲南方天文台慕尼黑图像数据分析系统
+European Space Agency 缩写:ESA。欧洲空间局
+European Space Research Organization 缩写:ESRO。欧洲空间研究组织
+European VLBI Network 缩写:EVN。欧洲甚长基线干涉网
+European Virtual Observatory 缩写:EURO-VO。欧洲虚拟天文台
+European X-ray Observatory Satellite 缩写:EXOSAT。EXOSAT欧洲X射线天文卫星
+Eurydike 狱神星
+Eurydome 木卫三十二
+Eurynome 配女星
+Euterpe 司箫星
+Evans crater 埃文斯环形山
+Evdokimov crater 叶夫多基莫夫环形山
+Event Horizon Telescope 缩写:EHT。事件视界望远镜
+Evershed crater 埃弗谢德环形山
+Evershed effect 埃弗谢德效应
+Evolutionary Map of the Universe 缩写:EMU。宇宙演化图
+Evpatoriya crater 叶夫帕托里亚陨击坑
+Evros Vallis 埃夫罗斯峡谷
+ExAO 全称:extreme adaptive optics。极端自适应光学
+Exclamation Mark galaxy 惊叹号星系
+Exo-Earth Imager 缩写:EEI。系外类地行星成像器
+ExoMars 全称:Exobiology on Mars。火星生命探测计划
+Exobiology on Mars 缩写:ExoMars。火星生命探测计划
+Expanded Very Large Array 缩写:EVLA。增容甚大阵
+Experimental Astronomy 实验天文学
+Explorer 探险者号
+Explorer 11 探险者11号
+Extended Groth Strip 格罗斯延长带
+Extended net 张宿
+Extension 张宿
+Extrasolar Planet Observation and Deep Impact Extended Investigation 缩写:EPOXI。EPOXI任务
+Extreme Ultra-Violet Explorer 缩写:EUVE。极紫外探测器
+Extreme Universe Space Observatory 缩写:EUSO。极端宇宙空间天文台
+Extreme Universe Space Observatory onboard Japanese Experiment Module 缩写:JEM-EUSO。日本实验舱载极端宇宙空间天文台
+Extreme ultraviolet light 缩写:XUV light; EUV light。极紫外射线
+Extremely Large Telescope 缩写:ELT。特大望远镜
+Eötvös crater 厄缶环形山
+F 全称:fluorine。氟
+F band F 谱带
+F component F成分
+F corona F冕
+F dwarf F型矮星
+F giant F型巨星
+F layer F层
+F region F区
+F star F型星
+F subdwarf F型亚矮星
+F subgiant F型亚巨星
+F supergiant F型超巨星
+F-class asteroid F型小行星
+F-type asteroid F型小行星
+F-type star F型星
+FAME 全称:Full-sky Astrometric Mapping Explorer。全天天体测量卫星
+FAP 全称:false alarm probability。误报率
+FAST 1、全称:Fast Auroral Snapshot Explorer。极光快照探测器; 2、全称:Five-hundred-meter Aperture Spherical radio Telescope。500米口径球面射电望远镜;中国天眼
+FBOT 全称:Fast Blue Optical Transients。蓝色快速光学暂现源
+FCN 全称:free core nutation。自由核章动
+FELT 全称:Fast-Evolving Luminous Transients。快变暂现亮源
+FFP 全称:free-floating planet。自由飘荡行星
+FFS 全称:fast fine structure。快速精细结构
+FFT 全称:fast Fourier transform。快速傅里叶变换
+FG Sagittae star 天箭FG型星
+FG Sagittae variable 天箭FG型变星
+FGST 全称:Fermi Gamma-ray Space Telescope。费米γ射线空间望远镜
+FIR 全称:far infrared。远红外
+FIRAS 全称:Far Infrared Absolute Spectrophotometer。远红外绝对分光光度计
+FIRST 1、全称:Faint Images of the Radio Sky at Twenty-Centimeters catalogue。FIRST星表; 2、全称:Far-Infrared and Submillimeter Space Telescope。FIRST空间望远镜; 远红外和亚毫米波空间望远镜
+FITS 全称:Flexible Image Transport System。普适图像传输系统
+FITS Interferometry Data Interchange Format 缩写:FITS-IDI。干涉数据交换FITS格式
+FITS-IDI 全称:FITS Interferometry Data Interchange Format。干涉数据交换FITS格式
+FK 1、全称:Fundamental Catalogue。基本星表; FK星表; 2、全称:Fundamental Katalog。FK星表; 基本星表
+FK Comae Berenices star 后发FK型星
+FK Comae Berenices variable 后发FK型变星
+FK catalogue system FK星表系统
+FK3 全称:Dritter Fundamental Katalog。FK3星表; 第三基本星表
+FK4 全称:Vierter Fundamental Katalog。FK4星表; 第四基本星表
+FK5 全称:Fuenfter Fundamental Katalog。FK5星表; 第五基本星表
+FLA 全称:Florida Large Array。佛罗里达大型天线阵; FLA射电阵
+FLC modulator 全称:ferroelectric liquid crystal modulator。铁电液晶调制器
+FLRW model 全称:Friedmann-Lemaitre-Robertson-Walker model。弗里德曼-勒梅特-罗伯逊-沃克模型; FLRW模型
+FM 全称:frequency modulation。调频
+FME 全称:frequency measuring equipment。测频装置
+FMO 全称:fast moving object。快动天体
+FMS 全称:fast magnetosonic-wave speed。快磁声波速率
+FPA 全称:focal plane assembly。焦面组件
+FRB 全称:fast radio burst。快速射电暴
+FRD 全称:focal ratio degradation。焦比衰退
+FRW model 全称:Friedmann-Robertson-Walker model。弗里德曼-罗伯逊-沃克模型; FRW模型
+FSRQ 全称:flat spectrum radio quasar。平谱射电类星体
+FTOOLS FITS工具包
+FTS 1、全称:Fourier transform spectrometer。傅里叶变换分光仪; 2、全称:Fourier transform spectrometer。傅里叶变换频谱仪
+FU Orionis object 猎户FU型天体
+FU Orionis star 缩写:Fuor。猎户FU型星
+FU Orionis variable 猎户FU型变星
+FUSE 1、全称:Far Ultraviolet Space Explorer。远紫外空间探测器; 2、全称:Far Ultraviolet Spectroscopic Explorer。远紫外分光探测器
+FUV 全称:far ultraviolet。远紫外
+FWHM 全称:full width at half-maximum。半峰全宽
+FX correlator FX 相关器
+FZT 全称:floating zenith telescope。浮动天顶筒
+Fa 伐三
+Faber-Jackson law 费伯-杰克逊规律
+Faber-Jackson relation 费伯-杰克逊关系
+Fabricius crater 法布里休斯环形山
+Fabry crater 法布里环形山
+Fabry lens 法布里透镜
+Fabry-Perot etalon 法布里-珀罗标准具
+Fabry-Perot imaging spectrograph 法布里-珀罗成像摄谱仪
+Fabry-Perot interferometer 法布里-珀罗干涉仪
+Fabry-Perot interferometry 法布里-珀罗干涉测量
+Fabry-Perot spectrograph 法布里-珀罗摄谱仪
+Fabry-Perot spectrometer 法布里-珀罗分光计
+Fafnir 扶筐增二
+Faint Images of the Radio Sky at Twenty-Centimeters catalogue 缩写:FIRST。FIRST星表
+Faith crater 费斯陨击坑
+False Cross 赝十字
+Falun crater 法伦陨击坑
+Falx Italica 玄戈增二
+Family Mountain 家庭山
+Fanaroff-Riley class 法纳洛夫-里雷类型; FR类型
+Fanaroff-Riley type Ⅰ 法纳洛夫-里雷Ⅰ型射电星系; FRⅠ型射电星系
+Fanaroff-Riley type Ⅱ 法纳洛夫-里雷Ⅱ型射电星系; FRⅡ型射电星系
+Fancy crater 凡西陨击坑
+Fang 房宿一
+Fangfen 方芬
+Fanjingshan 梵净山
+Fanjinshi 樊锦诗
+Fanyang 杨帆
+Faqu crater 富古阿陨击坑
+Far Infrared Absolute Spectrophotometer 缩写:FIRAS。远红外绝对分光光度计
+Far Ultraviolet Camera/Spectrograph 远紫外相机/摄谱仪
+Far Ultraviolet Space Explorer 缩写:FUSE。远紫外空间探测器
+Far Ultraviolet Spectroscopic Explorer 缩写:FUSE。远紫外分光探测器
+Far-Infrared and Submillimeter Space Telescope 缩写:FIRST。FIRST空间望远镜; 远红外和亚毫米波空间望远镜
+Faraday crater 法拉第环形山
+Faraday cup 法拉第筒
+Faraday depolarization 法拉第消偏振
+Faraday effect 法拉第效应
+Faraday pulsation 法拉第脉动
+Faraday rotation 法拉第旋转
+Faraday rotation measure synthesis 缩写:RM Synthesis。法拉第旋转综合方法
+Farah Vallis 法拉峡谷
+Farbauti 土卫四十
+Farim crater 法林陨击坑
+Fast Auroral Snapshot Explorer 缩写:FAST。极光快照探测器
+Fast Blue Optical Transients 缩写:FBOT。蓝色快速光学暂现源
+Fast-Evolving Luminous Transients 缩写:FELT。快变暂现亮源
+Fastov crater 法斯蒂夫陨击坑
+Fawaris 天津二
+Faye's comet 费伊彗星
+Fe 全称:iron。铁
+Feather Ridge Observatory 费瑟山射电天文台
+Fechner crater 费希纳环形山
+Feijunlong 费俊龙
+Felicitas 祥神星
+Felis 家猫座
+Felis Dorsa 费利斯山脊群
+Felix da Rocha 傅作霖
+Fellgett advantage 费尔盖特增益
+Fenagh crater 费纳陨击坑
+Fengzikai 丰子恺
+Fenrir 土卫四十一
+Ferdinand 天卫二十四
+Ferdinand Verbiest 南怀仁
+Fermat principle 费马原理
+Fermi Gamma-ray Space Telescope 缩写:FGST。费米γ射线空间望远镜
+Fermi acceleration mechanism 费米加速机制
+Fermi crater 费米环形山
+Fermi distribution 费米分布
+Fermi energy 费米能
+Fermi gas 费米气体
+Fermi interaction 费米相互作用
+Fermi level 费米能级
+Fermi mechanism 费米机制
+Fermi momentum 费米动量
+Fermi normal coordinate system 费米标准坐标系
+Fermi pressure 费米压力
+Fermi sphere 费米球
+Fermi statistics 费米统计
+Fermi surface 费米面
+Fermi temperature 费米温度
+Fermi threshold 费米阈
+Fermi-Dirac distribution 费米-狄拉克分布
+Fermi-Dirac nucleus 费米-狄拉克核
+Fermi-Dirac statistics 费米-狄拉克统计
+Fermi-Walker transportation 费米-沃克移动
+Fermi-Yang model 费米-杨模型
+Feronia 期女星
+Fersman crater 费斯曼环形山
+Fesenkov crater 费先科夫陨击坑
+Feynman diagram 费曼图
+Feynman path integral 费曼路径积分
+Feynman rule 费曼规则
+Feynman-Gell-Mann hypothesis 费曼-盖尔-曼假设
+Feynman-Gell-Mann universal formula 费曼-盖尔-曼普适公式
+Fides 忠神星
+Field criterion for thermal instability 费尔德热不稳定性判据
+Finsen crater 芬森环形山
+Firsoff crater 菲尔索夫陨击坑
+Firsov crater 菲尔索夫环形山
+First Frost 霜降
+Fish on the Platter 盘鱼星云
+Fisher information 费希尔信息
+Fisher matrix 费希尔矩阵
+Fisher-Tropsch reaction 费希尔-特罗普什反应
+FitzGerald contraction 菲茨杰拉德收缩
+Fitzgerald crater 菲茨杰拉德环形山
+Fitzroy crater 菲茨罗伊陨击坑
+Five College Observatory 五院校天文台
+Five-Kilometer Telescope 五千米射电望远镜
+Five-hundred-meter Aperture Spherical radio Telescope 缩写:FAST。500米口径球面射电望远镜;中国天眼
+Fizeau crater 菲佐环形山
+Fizeau interferometer 菲佐干涉仪
+Flame Nebula 火焰星云
+Flaming Star Nebula 烽火恒星云
+Flammarion Observatory 弗拉马里翁天文台
+Flammarion crater 1、弗拉马里翁环形山; 2、弗拉马里翁陨击坑
+Flamsteed Catalogue 弗兰斯蒂德星表
+Flamsteed number 弗兰斯蒂德星号
+Flat crater 弗拉特陨击坑
+Flateyri crater 弗拉泰里陨击坑
+Flaugergues crater 弗洛热尔格陨击坑
+Fleming crater 弗莱明环形山
+Fleurs Radio Observatory 弗勒尔射电天文台
+Flexible Image Transport System 缩写:FITS。普适图像传输系统
+Flocculent spiral galaxy 絮结旋涡星系
+Floq crater 弗洛格陨击坑
+Flora 花神星
+Flora crater 弗洛拉陨击坑
+Flora group 花神星群
+Florey crater 弗洛里环形山
+Florida Large Array 缩写:FLA。佛罗里达大型天线阵; FLA射电阵
+Flying Sandbank model 飞沙堆模型
+Fm 全称:fermium。镄
+Fm star Fm 型星
+FoF cluster finder algorithm 全称:friends-of-friends cluster finder algorithm。二度好友寻团算法
+FoV 全称:field of view; viewing field。视场
+Focas crater 福卡陨击坑
+Fokker-Planck approximation 福克-普朗克近似
+Fokker-Planck equation 福克-普朗克方程
+Fomalhaut 北落师门
+Fongyunwah 方润华
+Fontana crater 丰塔纳陨击坑
+Foo Pih 附白一
+Footprint Nebula 脚印星云
+For 全称:Fornax。天炉座
+Forbush decrease 福布希型下降
+Forbush effect 福布希效应
+Fornacis 天苑增三; 天苑增四
+Fornax 缩写:For。天炉座
+Fornax Dwarf Galaxy 天炉矮星系
+Fornax cluster 天炉星系团
+Fornax system 天炉星系
+Fornjot 土卫四十二
+Foros crater 福罗斯陨击坑
+Fortuna 命神星
+Fortuna Fortunarum 虚宿一
+Fortuna Fossae 福尔图娜堑沟群
+Fortuna Tessera 命运女神镶嵌地块
+Foshan 佛山
+Foucault knife-edge test 傅科刀口检验
+Foucault test 傅科检验
+Foucault's pendulum 傅科摆
+Foucaultgram 傅科检验图样
+Fourier analysis 傅里叶分析
+Fourier coefficient 傅里叶系数
+Fourier component 傅里叶分量
+Fourier crater 傅里叶环形山
+Fourier decomposition 傅里叶分解
+Fourier frequency 傅里叶频率
+Fourier series 傅里叶级数
+Fourier spectrometer 傅里叶分光仪; 傅里叶频谱仪
+Fourier spectroscopy 傅里叶分光
+Fourier tachometer 傅里叶转速计
+Fourier transform 傅里叶变换
+Fourier transform spectrometer 1、缩写:FTS。傅里叶变换分光仪; 2、缩写:FTS。傅里叶变换频谱仪
+Fourier transform spectroscopy 傅里叶变换分光
+Fourier transformer 傅里叶变换计
+Fournier crater 富尼耶陨击坑
+Fourth Cambridge Survey catalogue 缩写:4C catalogue。第4剑桥巡天星表; 4C星表
+Fowler crater 福勒环形山
+Fowler sampling 福勒采样
+Fp star F 型特殊星
+Fr 全称:francium。钫
+Fra Mauro crater 弗拉·毛罗环形山
+Fracastorius crater 弗拉卡斯托罗环形山
+Francais 法兰西号
+Francisco 天卫二十二
+Franck-Condon factor 富兰克-康登因子
+Franck-Condon principle 富兰克-康登原理
+Franklin crater 富兰克林环形山
+Franklin-Adams Survey 富兰克林-亚当斯巡天
+Franklin-Adams chart 富兰克林-亚当斯星图
+Frankshu 徐遐生
+Franzia 法兰西
+Fraternité arc 友谊环弧
+Fraunhofer component 夫琅和费分量
+Fraunhofer corona 夫琅和费日冕
+Fraunhofer crater 夫琅和费环形山
+Fraunhofer diffraction 夫琅和费衍射
+Fraunhofer line 夫琅和费谱线
+Fraunhofer spectrum 夫琅和费光谱
+Fred Lawrence Whipple Observatory 惠普尔天文台
+Freedom 自由号空间站
+Freedom crater 弗里德姆陨击坑
+Freeman's bar 弗里曼棒
+Freia 舒女星
+Frento Vallis 弗伦托峡谷
+Fresh Green 清明
+Fresnel X-ray telescope 菲涅尔X射线望远镜
+Fresnel diffraction 菲涅尔衍射
+Fresnel lens 菲涅尔透镜
+Fresnel pattern 菲涅尔图样
+Fresnel rhomb 菲涅尔菱形
+Fresnel scale 菲涅尔尺度
+Fresnel zone 菲涅尔区
+Fresnel zone plate 菲涅尔环板
+Fresnel zone plate telescope 菲涅尔波带片望远镜
+Fresnel γ-ray telescope 菲涅尔γ射线望远镜
+Freud crater 弗洛伊德环形山
+Freundlich crater 弗罗因德利希环形山
+Fridman crater 弗里德曼环形山
+Fried Egg Galaxy 煎蛋星系
+Fried constant 弗里德常数
+Fried parameter 弗里德参数
+Friedmann cosmological model 弗里德曼宇宙学模型
+Friedmann crater 弗里德曼环形山
+Friedmann equation 弗里德曼方程
+Friedmann model 弗里德曼模型
+Friedmann time 弗里德曼时间
+Friedmann universe 弗里德曼宇宙
+Friedmann-Lemaitre universe 弗里德曼-勒梅特宇宙
+Friedmann-Lemaitre-Robertson-Walker model 缩写:FLRW model。弗里德曼-勒梅特-罗伯逊-沃克模型; FLRW模型
+Friedmann-Robertson-Walker cosmology 弗里德曼-罗伯逊-沃克宇宙学
+Friedmann-Robertson-Walker model 缩写:FRW model。弗里德曼-罗伯逊-沃克模型; FRW模型
+Frigga 寒神星
+Frigoris Scopulus 极寒断崖
+Froelich crater 弗勒利希环形山
+Frost's Descent 霜降
+Frosty Leo Nebula 霜狮星云
+Froude number 弗劳德数
+Fuenfter Fundamental Katalog 缩写:FK5。FK5星表; 第五基本星表
+Fuhsiehhai 傅学海
+Fujian 福建
+Full-sky Astrometric Mapping Explorer 缩写:FAME。全天天体测量卫星
+Fulton gap 富尔顿空缺
+Fulu 附路
+Fum al Samakah 霹雳一
+Fumalsamakah 霹雳一
+Funchal crater 丰沙尔陨击坑
+Fundamental Catalogue 缩写:FK。基本星表; FK星表
+Fundamental Katalog 缩写:FK。FK星表; 基本星表
+Fuor 全称:FU Orionis star。猎户FU型星
+Furud 孙增一
+Fuyue 傅说
+Fuzhougezhi 福州格致
+G band G谱带
+G dwarf problem G矮星问题
+G giant G型巨星
+G star G型星
+G subdwarf G型亚矮星
+G subgiant G型亚巨星
+G supergiant G型超巨星
+G-class asteroid G 型小行星
+G-dwarf problem G型矮星问题
+G-parity G宇称
+G-type asteroid G型小行星
+G-type star G型星
+GAIA-Enceladus 盖亚-恩刻拉多斯
+GALAXY 全称:General Automatic Luminosity and X Y Measuring Engine。GALAXY底片自动测量仪
+GALEX 全称:Galaxy Evolution Explorer。GALEX星系演化探测器
+GAVO 全称:German Astrophysical Virtual Observatory。德国天体物理虚拟天文台
+GBT 全称:Green Bank Telescope。绿岸射电望远镜
+GC 全称:Boss General Catalogue。博斯总星表; GC星表
+GCE 全称:ground cosmic rays enhancement。地面宇宙线增强
+GCN 全称:GRB Coordinates Network。伽马暴坐标网
+GCR 全称:Galactic cosmic rays。银河系宇宙线
+GCRS 全称:Geocentric Celestial Reference System。地心天球参考系
+GCT 全称:Greenwich civil time。格林尼治民用时
+GCVS 全称:General Catalogue of Variable Stars。变星总表
+GDS 全称:Great Dark Spot。大暗斑
+GE 全称:greatest elongation; elongation。大距
+GEM 全称:gas electron multiplier。气体电子倍增器
+GEMS 全称:Global Environmental Monitoring System。全球环境监测系统
+GEOS 1、全称:Geodetic Earth-Orbiting Satellite。GEOS测地卫星; 2、全称:Geodynamic Experimental Ocean Satellite。海洋地球动力实验卫星; 3、全称:Geostationary Orbit Satellite。静地轨道卫星
+GFH 全称:Geschichte des Fixsternhimmels。《星空史》
+GGSE 全称:Gravity Gradient Satellite Experiment。重力梯度稳定实验卫星
+GGTS 全称:Gravity Gradient Test Satellite。重力梯度实验卫星
+GHA 全称:Greenwich hour angle。格林尼治时角
+GHA of the equinox 春分点格林尼治时角
+GID 全称:gradual ionospheric disturbance。电离层渐扰
+GLAO 全称:ground-layer adaptive optics。地面层自适应光学
+GLAST 全称:Gamma-ray Large Area Space Telescope。伽马射线大视场空间望远镜; γ射线太空大面积望远镜
+GLE 全称:ground level event。地面粒子事件
+GMAT 全称:Greenwich mean astronomical time。格林尼治平天文时
+GMC 全称:giant molecular cloud。巨分子云
+GMN 全称:Greenwich mean noon。格林尼治平午
+GMRT 全称:Giant Metrewave Radio Telescope。大型米波射电望远镜
+GMST 全称:Greenwich mean sidereal time。格林尼治平恒星时
+GMT 1、全称:Giant Magellan Telescope。巨麦镜; 巨麦哲伦望远镜; 2、全称:Greenwich mean time。格林尼治平时
+GNSS 全称:Global Navigation Satellite System。全球导航卫星系统
+GOES 全称:Geostationary Operational Environmental Satellite。环境应用静地卫星
+GONG 全称:Global Oscillation Network Group。全球[太阳]振荡监测网
+GOODS 全称:Great Observatories Origins Deep Survey。大型天文台起源深空巡天
+GP galaxy 全称:green pea galaxy。青豆星系
+GP-B 全称:Gravity Probe B。引力探测器B
+GPI 全称:Gemini Planet Imager。双子座行星成像仪
+GPS 全称:Global Positioning System。全球定位系统
+GR 全称:general relativity。广义相对论
+GRACE 全称:Gravity Recovery and Climate Experiment。重力测量和气候实验
+GRAIL 全称:Gravity Recovery and Interior Laboratory。圣杯号
+GRB 全称:γ-ray burst; Gamma-ray burst。γ射线暴
+GRB Coordinates Network 缩写:GCN。伽马暴坐标网
+GRS 1、全称:Geophysics Research Satellite。地球物理研究卫星; 2、全称:Great Red Spot。大红斑
+GSC 全称:Guide Star Catalogue。GSC导星星表
+GSD 全称:Greenwich sidereal date。格林尼治恒星日期
+GSFC 全称:Goddard Space Flight Center。戈达德航天中心
+GSMT 全称:Giant Segmented Mirror Telescope。巨型拼合镜面望远镜
+GSO scintillator 硅酸钆闪烁体
+GST 全称:Greenwich sidereal time。格林尼治恒星时
+GTC 全称:Gran Telescopio CANARIAS。加那利大型望远镜
+GTRS 全称:Geocentric Terrestrial Reference System。地心地球参考系
+GUSTO 全称:Galactic/Extragalactic ULDB Spectroscopic Terahertz Observatory。银河/河外超长航时球载分光太赫兹天文台
+GUT 全称:grand unified theory。大统一理论
+GW 全称:gravitational wave。引力波
+GW Vir star 室女GW型星
+GW Vir variable 全称:GW Virginis variable。室女GW型变星
+GW Virginis instability strip 室女GW不稳定带
+GW Virginis star 室女GW型星
+GW Virginis variable 缩写:GW Vir variable。室女GW型变星
+GWS 全称:Great White Spot。大白斑
+GX 全称:Galactic X-ray source。银河X射线源
+GZK limit 全称:Greisen-Zatsepin-Kuzmin limit。格莱森-查泽品-库兹敏极限; GZK极限
+Ga 全称:gallium。镓
+Gaan crater 加安陨击坑
+Gabi 加比
+Gacobini comet 贾科比尼彗星
+Gacrux 十字架一
+Gadomski crater 加多姆斯基环形山
+Gaea crater 盖亚环形山
+Gagarin crater 加加林环形山
+Gagra crater 加格拉陨击坑
+Gah crater 加城陨击坑
+Gaia 全称:Global Astrometric Interferometer for Astrophysics。盖亚; 全天天体测量干涉仪
+Gaia Astrometry Satellite 盖亚天文卫星
+Galactic Cepheid 银河造父变星
+Galactic HⅡ disk 银河系电离氢盘
+Galactic IR emission 全称:Galactic infrared emission。银河系红外辐射
+Galactic System 银河系
+Galactic X-ray source 缩写:GX。银河X射线源
+Galactic absorbing layer 银河吸光层
+Galactic absorption 银河吸光; 河内吸收
+Galactic aggregate 银河星集
+Galactic anticenter 反银心; 反银心方向
+Galactic arm 银河臂
+Galactic arm-population 银河系臂族
+Galactic astronomy 银河系天文学
+Galactic astrophysics 银河系天体物理
+Galactic background 银河背景
+Galactic background X-ray radiation 银河X射线背景辐射
+Galactic background infrared radiation 银河红外背景辐射
+Galactic background radiation 银河背景辐射
+Galactic background radio radiation 银河射电背景辐射
+Galactic background γ-ray radiation 银河γ射线背景辐射
+Galactic bar 银棒
+Galactic brightness 银河亮度
+Galactic bulge 银河系核球
+Galactic center 银心
+Galactic center region 银心区
+Galactic center source 银心辐射源
+Galactic chimney 银河系通道
+Galactic circle 银道圈
+Galactic cloud 银河云
+Galactic cluster 疏散星团
+Galactic component 银河系子系
+Galactic concentration 银面聚度
+Galactic core 银核
+Galactic core source 银核源
+Galactic core star 银核星
+Galactic corona 银冕
+Galactic cosmic rays 缩写:GCR。银河系宇宙线
+Galactic dark halo 银河系暗晕
+Galactic diffuse light 银河弥漫光
+Galactic disk 银盘
+Galactic disk-population 银盘族
+Galactic dynamics 银河系动力学
+Galactic evolution 银河系演化
+Galactic field 银河场
+Galactic fountain 银道喷流
+Galactic globular cluster system 银河系球状星团系统
+Galactic gusher 银河喷射源
+Galactic halo 银晕
+Galactic halo emission 银晕射电
+Galactic halo-population 银晕族
+Galactic high-energy astrophysics 银河系高能天体物理
+Galactic infrared astronomy 银河系红外天文学
+Galactic infrared emission 缩写:Galactic IR emission。银河系红外辐射
+Galactic kinematics 银河系运动学
+Galactic light 银河光
+Galactic luminosity 银河系光度
+Galactic magnetic cavity 银河磁穴
+Galactic magnetic field 银河系磁场
+Galactic model 银河系模型
+Galactic nebula 银河星云
+Galactic noise 银河系噪声
+Galactic nova 银河新星
+Galactic nucleus 银核
+Galactic orbit 银心轨道
+Galactic plane 银道面
+Galactic potential 银河系势
+Galactic radio astronomy 银河系射电天文学
+Galactic radio astrophysics 银河系射电天体物理
+Galactic radio emission 银河系射电
+Galactic radio noise 银河系射电噪声
+Galactic radio radiation 银河系射电
+Galactic radio spur 银河射电支
+Galactic ridge 银脊
+Galactic rotation 银河系自转
+Galactic rotation curve 银河系自转曲线
+Galactic source 银河源
+Galactic spiral structure 银河系旋涡结构
+Galactic spur 银河射电支
+Galactic stellar disk 银河系恒星盘
+Galactic structure 银河系结构
+Galactic subsystem 银河次系
+Galactic supernova 银河超新星
+Galactic supernova remnant 银河超新星遗迹
+Galactic variable 银河变星
+Galactic warp 银河系翘曲
+Galactic window 银河系窗口
+Galactic year 银河年
+Galactic/Extragalactic ULDB Spectroscopic Terahertz Observatory 缩写:GUSTO。银河/河外超长航时球载分光太赫兹天文台
+Galactocentric concentration 银心聚度
+Galactocentric distance 银心距
+Galap crater 加拉普陨击坑
+Galatea 1、巫女星; 2、海卫六
+Galaxias Chaos 盖勒克西亚斯混杂地
+Galaxias Colles 盖勒克西亚斯小丘群
+Galaxias Fluctūs 盖勒克西亚斯波纹群
+Galaxias Fossae 盖勒克西亚斯堑沟群
+Galaxias Mensae 盖勒克西亚斯桌山群
+Galaxius Mons 盖勒克西乌斯山
+Galaxy 银河系
+Galaxy Evolution Explorer 缩写:GALEX。GALEX星系演化探测器
+Galaxy model 银河系模型
+Galdakao crater 加尔达考陨击坑
+Gale crater 盖尔陨击坑
+Gali crater 加利陨击坑
+Galilaei crater 1、伽利略环形山; 2、伽利略陨击坑
+Galilean moon 伽利略卫星
+Galilean satellite 伽利略卫星
+Galilean telescope 伽利略望远镜
+Galilean transformation 伽利略变换
+Galileo National Telescope 缩写:TNG。国立伽利略望远镜
+Galileo spacecraft 伽利略木星探测器
+Galileo's telescope 伽利略望远镜
+Galileon 伽利略子
+Galileon field 伽利略场
+Galle crater 伽勒陨击坑
+Galle ring 伽勒环
+Galois crater 伽罗瓦环形山
+Galu crater 加卢陨击坑
+Galvani crater 伽伐尼环形山
+Gamboa crater 甘博阿陨击坑
+Gamma 伽马号
+Gamma Cassiopeiae star 仙后γ型星
+Gamma Crucis 南十字γ
+Gamma-ray Large Area Space Telescope 缩写:GLAST。伽马射线大视场空间望远镜; γ射线太空大面积望远镜
+Gamma-ray Light Detector 缩写:AGILE。敏捷号γ射线天文卫星
+Gamma-ray burst 缩写:GRB。γ射线暴
+Gamow crater 伽莫夫环形山
+Gan crater 甘岛陨击坑
+Gander crater 甘得陨击坑
+Gandu crater 甘杜陨击坑
+Gandzani crater 甘贾尼陨击坑
+Ganges Catena 恒河坑链
+Ganges Cavus 恒河凹地
+Ganges Chaos 恒河混杂地
+Ganges Chasma 恒河深谷
+Ganges Mensa 恒河桌山
+Gansu 甘肃
+Ganswindt crater 甘斯文特环形山
+Ganymede 木卫三
+Gaolu 高鲁
+Gaoshiqi 高士其
+Gaoyaojie 高耀洁
+Garavito crater 加拉维托环形山
+Gardo crater 加尔多陨击坑
+Gari crater 加里陨击坑
+Garm crater 加尔姆陨击坑
+Garnet star 石榴石星
+Garni crater 加尔尼陨击坑
+Garu crater 加鲁陨击坑
+Gasa crater 加萨陨击坑
+Gaspra 加斯普拉
+Gassendi crater 伽桑狄环形山
+Gastre crater 加斯特雷陨击坑
+Gatico crater 加蒂科陨击坑
+Gatria 三角形一
+Gaunt factor 冈特因子
+Gauss constant 高斯常数
+Gauss crater 高斯环形山
+Gauss distribution 高斯分布
+Gauss equation 高斯方程
+Gauss eyepiece 高斯目镜
+Gauss line profile 高斯谱线轮廓
+Gauss method 高斯方法
+Gauss noise 高斯噪声
+Gauss normal coordinate 高斯正则坐标
+Gauss pattern 高斯方向图
+Gauss theorem 高斯定理
+Gauss-Bonnet term 高斯-博内项
+Gauss-Bonnet theorem 高斯-博内定理
+Gauss-Codacci equation 高斯-科达奇方程
+Gaussia 高斯
+Gaussian beam 高斯波束
+Gaussian curvature 高斯曲率
+Gaussian density perturbation 高斯密度扰动
+Gaussian distribution 高斯分布
+Gaussian filter 高斯滤波器
+Gaussian gravitational constant 高斯引力常数
+Gaussian perturbation 高斯扰动
+Gaussian random field 高斯随机场
+Gaussian random variable 高斯随机变量
+Gaussian year 高斯年
+Gavrilov crater 加夫里洛夫环形山
+Gd 全称:gadolinium。钆
+Ge 全称:germanium。锗
+Ge γ-ray detector 锗γ射线探测器
+Ge:Ga infrared array 锗掺镓红外面阵
+Gediz Vallis 盖迪兹峡谷
+Gehon 基训
+Geiger-Muller counter 盖革-弥勒计数器
+Geiger-tube telescope 盖革计数望远镜
+Geirrod 土卫六十六
+Gem 1、全称:Gemini。双子宫; 实沈; 申宫; 2、全称:Gemini。双子座
+Gemina Lingula 双子舌状地
+Geminga 杰敏卡伽马射线源
+Geminga Pulsar 杰敏卡脉冲星
+Gemini 1、缩写:Gem。双子宫; 实沈; 申宫; 2、缩写:Gem。双子座
+Gemini Nebula 双子星云
+Gemini Planet Imager 缩写:GPI。双子座行星成像仪
+Gemini Scopuli 双子断崖群
+Gemini Telescope 双子望远镜
+Gemini project 双子载人卫星计划
+Geminid meteor shower 双子流星雨
+Geminids 双子流星群
+Gemma 贯索四
+Genam 天棓一
+Genan 天棓一
+General Automatic Luminosity and X Y Measuring Engine 缩写:GALAXY。GALAXY底片自动测量仪
+General Catalogue of Variable Stars 缩写:GCVS。变星总表
+General Relativity and Gravitation 广义相对论与引力
+Genesis 起源号探测器
+Genesis rock 创世岩
+Geneva color system 日内瓦颜色系统
+Geneva photometric system 日内瓦测光系统
+Geneva photometry 日内瓦测光
+Geoalert 全称:Geophysical Alert Broadcast。地球物理警报广播
+Geocentric Celestial Reference System 缩写:GCRS。地心天球参考系
+Geocentric Coordinate Time 缩写:TCG。地心坐标时
+Geocentric Terrestrial Reference System 缩写:GTRS。地心地球参考系
+Geodetic Earth-Orbiting Satellite 缩写:GEOS。GEOS测地卫星
+Geodetic Reference System 大地参考系
+Geodynamic Experimental Ocean Satellite 缩写:GEOS。海洋地球动力实验卫星
+Geographos 地理星
+Geophysical Alert Broadcast 缩写:Geoalert。地球物理警报广播
+Geophysical and Astrophysical Fluid Dynamics 地球物理与天体物理流体动力学
+Geophysics Research Satellite 缩写:GRS。地球物理研究卫星
+Geostationary Operational Environmental Satellite 缩写:GOES。环境应用静地卫星
+Geostationary Orbit Satellite 缩写:GEOS。静地轨道卫星
+Gerard crater 杰勒德环形山
+Gerasimovich crater 格拉西莫维奇环形山
+Gerd 土卫五十七
+German Astrophysical Virtual Observatory 缩写:GAVO。德国天体物理虚拟天文台
+German mounting 德国式装置
+German-Spanish Astronomical Centre 德国-西班牙天文中心
+Germania 德意志
+Gertrude crater 格特鲁德环形山
+Geryon Montes 革律翁山脉
+Geschichte des Fixsternhimmels 缩写:GFH。《星空史》
+Geschichte und Literatur des Lichtwechsels der Veränderlichen Sterne 缩写:GuL。变星光变史和文献
+Ghirlanda relation 吉兰达关系
+Ghost 鬼宿
+Ghost Nebula 鬼魂星云
+Ghost Stream 鬼流
+Ghost Vehicle 舆鬼
+Ghost of Jupiter 木魂星云
+Giacobini-Zinner comet 贾科比尼-津纳彗星
+Giacobinid meteor shower 贾科比尼流星雨
+Giacobinids 贾科比尼流星群
+Giacomo Rho 罗雅谷
+Gianfar 上辅; 紫微右垣三
+Giant Magellan Telescope 缩写:GMT。巨麦镜; 巨麦哲伦望远镜
+Giant Metrewave Radio Telescope 缩写:GMRT。大型米波射电望远镜
+Giant Segmented Mirror Telescope 缩写:GSMT。巨型拼合镜面望远镜
+Giausar 上辅; 紫微右垣三
+Gibbs crater 吉布斯环形山
+Gibbs ensemble 吉布斯系综
+Gibbs free energy 吉布斯自由能
+Gienah 1、天津九; 2、轸宿一
+Gienah Cygni 天津九
+Gienah Ghurab 轸宿一
+Gigas Fossae 吉加斯堑沟群
+Gigas Sulci 吉加斯沟脊地
+Gilbert crater 1、吉尔伯特环形山; 2、吉尔伯特陨击坑
+Gill crater 1、吉尔环形山; 2、吉尔陨击坑
+Ginan 十字架增一
+Ginga 银河号
+Giordano Bruno crater 焦尔达诺·布鲁诺环形山
+Giotto 乔托号行星际探测器
+Girl 女宿
+Girtab 尾宿七
+Giulio Aleni 艾儒略
+Glan-Foucault prism 格兰-傅科棱镜
+Glan-Thompson prism 格兰-汤姆森棱镜
+Glatton meteorite 格拉顿陨星
+Glauke 格劳克
+Glazov crater 格拉佐夫陨击坑
+Gledhill crater 格莱德希尔陨击坑
+Gleissberg period 格莱斯伯格周期
+Glendore crater 格伦多尔陨击坑
+Glide crater 格莱德陨击坑
+Gliese Catalogue of Nearby Stars 格利泽近星星表
+Global Astrometric Interferometer for Astrophysics 缩写:Gaia。盖亚; 全天天体测量干涉仪
+Global Environmental Monitoring System 缩写:GEMS。全球环境监测系统
+Global Microlensing Alert Network 全球微引力透镜预警网络
+Global Navigation Satellite System 缩写:GNSS。全球导航卫星系统
+Global Oscillation Network Group 缩写:GONG。全球[太阳]振荡监测网
+Global Positioning System 缩写:GPS。全球定位系统
+Globe crater 格洛布陨击坑
+Globus Aerostaticus 热气球座
+Gnevyshev-Ohl rule 格涅维舍夫-奥尔规则
+Goba crater 戈巴陨击坑
+Goddard Space Flight Center 缩写:GSFC。戈达德航天中心
+Goddard crater 戈达德环形山
+Goethe Link Observatory 哥德林克天文台
+Goff crater 戈夫陨击坑
+Gokwe crater 戈奎陨击坑
+Gol crater 古尔陨击坑
+Golay cell 高莱探测器
+Gold crater 戈尔德陨击坑
+Golden crater 戈尔登陨击坑
+Goldschmidt crater 戈尔德施米特环形山
+Goldstack interferometer 戈德斯塔克干涉仪
+Goldstino 戈德斯通微子
+Goldstone Radio Astronomy Station 金石射电天文站
+Goldstone boson 戈德斯通玻色子
+Goldstone crater 戈尔德斯通陨击坑
+Goldstone-Haystack interferometer 戈德斯通-海斯塔克干涉仪
+Gomeisa 南河二
+Gomez's Hamburger Nebula 戈麦斯汉堡星云
+Gonggong 共工
+Gongyi 巩义
+Gonnus Mons 冈努斯山
+Google Sky 谷歌天空
+Gordii Dorsum 戈尔迪山脊
+Gordii Fossae 戈尔迪堑沟群
+Gordon equation 戈登方程
+Gorgonea Quarta 大陵增十八
+Gorgonea Secunda 积尸
+Gorgonea Tertia 大陵六
+Gorgoneion 慧卫二
+Gorgonum Chaos 戈尔工混杂地
+Gorgonum Mons 戈尔工山
+Gori crater 哥里陨击坑
+Gossamer Ring 薄纱环
+Gosses Bluff crater 戈斯崖陨星坑
+Gould belt 古德带
+Gould's belt 古德带
+Gr. 全称:Groombridge's Catalogue of Circumpolar Stars。格鲁姆布里奇拱极星表
+Graff crater 格拉夫陨击坑
+Graffias 房宿四
+Grafias 尾宿三
+Grain Fills 小满
+Grain Rain 谷雨
+Grain in Ear 芒种
+Gran Telescopio CANARIAS 缩写:GTC。加那利大型望远镜
+Granat 石榴号
+Granicus Valles 格拉尼卡斯峡谷群
+Gratteri crater 格拉泰里陨击坑
+Gravity Gradient Satellite Experiment 缩写:GGSE。重力梯度稳定实验卫星
+Gravity Gradient Test Satellite 缩写:GGTS。重力梯度实验卫星
+Gravity Probe B 缩写:GP-B。引力探测器B
+Gravity Recovery and Climate Experiment 缩写:GRACE。重力测量和气候实验
+Gravity Recovery and Interior Laboratory 缩写:GRAIL。圣杯号
+Great Attractor 巨引源
+Great Cold Spot 大冷斑
+Great Dark Spot 缩写:GDS。大暗斑
+Great Looped Nebula 大圈星云
+Great Nebula in Orion 猎户[大]星云
+Great Observatories Origins Deep Survey 缩写:GOODS。大型天文台起源深空巡天
+Great Orion Nebula 猎户[大]星云
+Great Red Spot 缩写:GRS。大红斑
+Great Rift 大暗隙
+Great September Comet 九月大彗星
+Great Wall 巨壁
+Great White Spot 缩写:GWS。大白斑
+Great cluster of Hercules 武仙大星团
+Great sequence 大序
+Great square of Pegasus 飞马大四边形
+Greater Cold 大寒
+Greater Heat 大暑
+Greater Snow 大雪
+Grecian era 希腊纪元
+Greek alphabet 希腊字母命名
+Greek group 希腊群
+Greeley crater 格里利陨击坑
+Green Bank Telescope 缩写:GBT。绿岸射电望远镜
+Green crater 1、格林环形山; 2、格林陨击坑
+Green theorem 格林定理
+Green's function 格林函数
+Greenwich Observatory 格林尼治天文台
+Greenwich apparent noon 格林尼治视午
+Greenwich apparent sidereal time 格林尼治视恒星时
+Greenwich apparent time 格林尼治视时
+Greenwich civil time 缩写:GCT。格林尼治民用时
+Greenwich hour angle 缩写:GHA。格林尼治时角
+Greenwich hour angle of the equinox 春分点格林尼治时角
+Greenwich interval 格林尼治时间间隔
+Greenwich lunar time 格林尼治太阴时
+Greenwich mean astronomical time 缩写:GMAT。格林尼治平天文时
+Greenwich mean noon 缩写:GMN。格林尼治平午
+Greenwich mean sidereal time 缩写:GMST。格林尼治平恒星时
+Greenwich mean time 缩写:GMT。格林尼治平时
+Greenwich meridian 格林尼治子午线; 格林尼治子午圈
+Greenwich sidereal date 缩写:GSD。格林尼治恒星日期
+Greenwich sidereal day number 格林尼治恒星日数
+Greenwich sidereal time 缩写:GST。格林尼治恒星时
+Greg crater 格雷格陨击坑
+Gregorian antenna 格里式天线
+Gregorian calendar 格里历
+Gregorian telescope 格里高利望远镜
+Gregorian year 格里年
+Greip 土卫五十一
+Greisen-Zatsepin-Kuzmin limit 缩写:GZK limit。格莱森-查泽品-库兹敏极限; GZK极限
+Gridr 土卫五十四
+Griffith John 杨格非
+Griffith Observatory 格里菲斯天文台
+Grigg-Skjellerup comet 格里格-斯基勒鲁普彗星
+Grimaldi crater 格里马尔迪环形山
+Grindavik crater 格林达维克陨击坑
+Gringauz crater 格林高兹陨击坑
+Grissom crater 格里索姆环形山
+Grjótá Valles 格廖特峡谷群
+Groombridge's Catalogue of Circumpolar Stars 缩写:Gr.。格鲁姆布里奇拱极星表
+Grotrian diagram 格罗特利安图
+Groves crater 格罗夫斯陨击坑
+Gru 全称:Grus。天鹤座
+Grumium 天棓一
+Grus 缩写:Gru。天鹤座
+Grus Quartet 天鹤四重星系
+Grójec crater 格鲁耶茨陨击坑
+GuL 全称:Geschichte und Literatur des Lichtwechsels der Veränderlichen Sterne。变星光变史和文献
+Guangcaishiye 光彩事业
+Guangdong 广东
+Guangxi 广西
+Guangzhou 广州
+Guaymas crater 瓜伊马斯陨击坑
+Guchaohao 谷超豪
+Gudja 周增八
+Gueiren 归仁
+Guericke crater 居里克环形山
+Guide Star Catalogue 缩写:GSC。GSC导星星表
+Guillaume crater 纪尧姆环形山
+Guinevere Planitia 吉尼维尔平原
+Guir crater 吉尔陨击坑
+Guizhou 贵州
+Gujiang crater 古绛陨击坑
+Gula Mons 古拉山
+Gulch crater 古勒克陨击坑
+Gum Nebula 古姆星云
+Gum crater 古姆环形山
+Guniibuu 天江二
+Gunjur crater 贡朱尔陨击坑
+Gunn effect 冈恩效应
+Gunn-Peterson effect 冈恩-彼得森效应
+Gunn-Peterson test 冈恩-彼得森检验
+Gunn-Peterson trough 冈恩-彼得森槽
+Gunnison crater 甘尼森陨击坑
+Gunnlod 土卫六十二
+Guo Shou-Jing 郭守敬
+Guo Shoujing Telescope 缩写:LAMOST。大天区面积多目标光纤光谱天文望远镜; 郭守敬望远镜
+Guoyonghuai 郭永怀
+Gusev crater 古谢夫陨击坑
+Gutenberg crater 谷登堡环形山
+Gutian crater 古田陨击坑
+Guyot crater 盖奥特环形山
+Guyuzhou 顾宇洲
+Gwash crater 格瓦什陨击坑
+Gylden method 吉尔当法
+Gyrochronology 自转测年法
+Gärtner crater 格特纳环形山
+Gödel universe 哥德尔宇宙
+Göttingen University Observatory 哥廷根大学天文台
+H 全称:hydrogen。氢
+H abundance 氢丰度
+H and K lines H-K谱线
+H deficient star 贫氢星
+H index 氢指数
+H line 氢线; 电离H线
+H magnitude H星等
+H-component H分量
+H-ion 负氢离子
+H. G. Wells crater 赫·乔·威尔斯环形山
+H.E.S.S. 全称:High Energy Stereoscopic System。高能立体视野望远镜阵
+H.I. 全称:heat index。热指数
+HA 1、全称:Harvard Annual。哈佛天文台纪事; 2、全称:hour angle。时角
+HALCA 全称:Highly Advanced Laboratory for Communications and Astronomy。哈尔卡实验室
+HAO 全称:High Altitude Observatory。高山天文台
+HARPS 全称:the High Accuracy Radial velocity Planet Searcher 。高精度视向速度行星搜索器
+HAWC 全称:High-Altitude Water Cherenkov observatory。高海拔水体切伦科夫天文台
+HB 全称:Harvard Bulletin。哈佛天文台公报
+HBV 全称:Hamburg variable。汉堡天文台变星
+HC 全称:Harvard Circular。哈佛天文台简报
+HCG 全称:Hickson Compact Group。希克森致密星系群
+HCO 全称:Harvard College Observatory。哈佛天文台
+HD Catalogue 全称:Henry Draper catalogue。德雷伯星表; HD星表
+HD classification 全称:Henry Draper classification; Henry Draper stellar classification。HD恒星光谱分类
+HD curve 全称:Hurter-Driffield curve。赫特-德里菲尔德曲线; HD曲线
+HD system 全称:Henry Draper system。HD分类系统
+HDE 全称:Henry Draper Extension。HD星表补编
+HDF 全称:Hubble Deep Field。哈勃深场
+HDM scenario 全称:hot dark matter scenario。热暗物质图景
+HEAO 全称:High Energy Astronomical Observatory。高能天文台
+HEAO-2 全称:Einstein Observatory。爱因斯坦天文台
+HEASARC 全称:High Energy Astrophysics Science Archive Research Center。高能天体物理科学数据库研究中心
+HEAsoft 全称:High Energy Astrophysics Software。高能天体物理软件包
+HEB 全称:hot electron bolometer。热电子测辐射热计
+HEB mixer 全称:superconducting hot electron bolometer mixer。超导HEB混频器
+HED meteorite 全称:howardite-eucrite-diogenite meteorite。HED陨星; 古铜钙长无球粒-钙长辉长-奥长古铜无球粒陨星
+HEDLA 全称:high energy density laboratory astrophysics。高能量密度实验室天体物理学
+HEDP 全称:high energy density physics。高能量密度物理学
+HEGRA 全称:High-Energy-Gamma-Ray Astronomy telescope。高能伽马射线天文望远镜
+HEMT amplifier 全称:high-electron-mobility transistor amplifier。高电子迁移率晶体管放大器
+HEOS 全称:highly eccentric orbit satellite。大偏心轨道卫星
+HESSI 全称:High Energy Solar Spectroscopy Imager。高能太阳光谱成像探测器
+HET 全称:Hobby-Eberly Telescope。霍比-埃伯利望远镜
+HETE 1、全称:High Energy Transient Experiment。高能暂现源实验; 2、全称:High Energy Transient Explorer。高能暂现源探测器
+HETE 2 全称:High Energy Transient Explorer 2。高能暂现源探测器2号
+HEW 全称:Half Energy Width。半能宽
+HH flow 全称:Herbig-Haro flow。赫比格-阿罗流
+HH nebula 全称:Herbig-Haro nebula。赫比格-阿罗星云; HH星云
+HH object 全称:Herbig-Haro object。赫比格-阿罗天体; HH天体
+HIPASS 全称:HⅠ Parkes All Sky Survey。帕克斯中性氢巡天
+HJD 全称:heliocentric Julian date。日心儒略日
+HKLM procedure 全称:Hamilton-Kumar-Lu-Matthews procedure。HKLM程序
+HLA 全称:Hubble Legacy Archive。哈勃遗珍档案
+HMA 全称:high magnetic arcade。高磁拱
+HMC 全称:horizontal transit circle; horizontal meridian circle。水平子午环
+HMF 全称:heliomagnetic field。日球磁场
+HMXB 全称:high-mass X-ray binary。大质量X射线双星
+HN 全称:hypernova。极超新星; 骇新星
+HOD 全称:halo occupation distribution。暗晕占居数分布
+HP 1、全称:Harvard Photometry。哈佛恒星测光表; 2、全称:Harvard pulsar。哈佛天文台脉冲星; 3、全称:horizontal parallax。地平视差
+HPBW 全称:half-power beam width。半功率束宽
+HPQ 全称:highly polarized quasar。高偏振类星体
+HR diagram 全称:Hertzsprung-Russell diagram。赫罗图
+HR number HR 星表序号
+HS variable star 全称:Hubble-Sandage variable star。哈勃-桑德奇型变星; HS型变星
+HSE 全称:hydrostatic equilibrium。流体静力平衡
+HSO 全称:Herschel Space Observatory。赫歇尔空间天文台
+HSP, HBL 全称:High Synchrotron Peaked blazar。高同步峰频耀变体
+HSR 全称:Harvard Standard Region。哈佛标准选区
+HSRA 全称:Harvard-Smithsonian Reference Atmosphere。哈佛-史密松参考大气
+HST 全称:Hubble Space Telescope。哈勃空间望远镜
+HStr 全称:Helmi stream。海尔米恒星流
+HUDF 全称:Hubble Ultra Deep Field。哈勃极深场
+HV 全称:Harvard variable。哈佛天文台变星
+HVC 全称:high-velocity cloud。高速云
+HVO 全称:Hungarian Virtual Observatory。匈牙利虚拟天文台
+HWHM 全称:half width at half maximum。半峰半宽
+HXMT 全称:Hard X-ray Modulation Telescope。硬X射线调制望远镜; 慧眼号天文卫星
+HZ Herculis star 武仙HZ型星
+HZ star 全称:Humason-Zwicky star。HZ型星; 哈马森-兹威基型星
+Haber crater 哈伯环形山
+Hadar 马腹一
+Hadley Rille 哈德利沟纹
+Hadley circulation 哈德利环流
+Hadley crater 哈得来陨击坑
+Hadriaca Patera 亚得里亚山口
+Hadriacus Cavi 亚得里亚凹地群
+Hadriacus Mons 亚得里亚山
+Hadriacus Palus 亚得里亚沼
+Haedus 柱二
+Hagedorn equation of state 哈格多恩状态方程
+Hagen crater 哈根环形山
+Hagongda 哈工大
+Hahn crater 哈恩环形山
+Haig mount 黑格基架
+Hainan 海南
+Haining 海宁
+Hainzel crater 海因泽尔环形山
+Hakucho 天鹅号
+Halawe 芝麻片糖
+Halba crater 哈勒巴陨击坑
+Haldane crater 霍尔丹陨击坑
+Hale Observatories 海尔天文台
+Hale Telescope 海尔望远镜
+Hale crater 1、海尔环形山; 2、海耳陨击坑
+Hale period 海尔周期
+Hale sector boundary 海尔扇形边界
+Hale's law 海尔定律
+Halex Fossae 哈莱克斯堑沟群
+Half Energy Width 缩写:HEW。半能宽
+Halimede 海卫九
+Halley crater 1、哈雷环形山; 2、哈雷陨击坑
+Halley's comet 哈雷彗星
+Halley-type comet 哈雷型彗星
+Hallstatt circle 哈尔史塔特周期
+Hallstatt zeit 哈尔史塔特期
+Halo ring 哈洛环
+Ham crater 哈姆陨击坑
+Hamaguir crater 哈马吉尔陨击坑
+Hamal 娄宿三
+Hamburg Observatory 汉堡天文台
+Hamburg variable 缩写:HBV。汉堡天文台变星
+Hamelin crater 哈默尔恩陨击坑
+Hamilton principle 哈密顿原理
+Hamilton's equation 哈密顿方程
+Hamilton-Jacobi method 哈密顿-雅可比方法
+Hamilton-Kumar-Lu-Matthews procedure 缩写:HKLM procedure。HKLM程序
+Hamiltonian function 哈密顿函数
+Hamiltonian operator 哈密顿算符
+Hamiltonian system 哈密顿系统
+Hamlet Crater 哈姆雷特陨击坑
+Han 韩; 天市右垣十一
+Handbuch der Astrophysik 缩写:HdAp。天体物理手册
+Handlová crater 汉德洛瓦陨击坑
+Hanggao 杭高
+Hangtianyuan 航天员
+Hankel function 汉克函数
+Hankel transform 汉克变换
+Hanle effect 汉勒效应
+Hanning method 汉宁方法
+Hanno crater 汉诺环形山
+Hansen coefficient 汉森系数
+Hansen theory 汉森理论
+Haozhang 张昊
+Harad̦ crater 哈赖德陨击坑
+Harbin 哈尔滨
+Hard X-ray Modulation Telescope 缩写:HXMT。硬X射线调制望远镜; 慧眼号天文卫星
+Hardaway crater 哈达韦坑
+Hardie crater 哈迪坑
+Hargraves crater 哈格雷夫斯陨击坑
+Haris 招摇
+Harkins rule 哈金斯定则
+Harlan crater 哈伦环形山
+Harmakhis Vallis 哈马基斯峡谷
+Harman-Seaton sequence 哈曼-西顿序列
+Harmonia 谐神星
+Haro classification 阿罗分类
+Haro galaxy 阿罗星系
+Harpalus crater 哈帕洛斯环形山
+Harpalyke 木卫二十二
+Harriot crater 哈里奥特环形山
+Harris crater 哈里斯陨击坑
+Harrison-Zel'dovich spectrum 哈里森-泽尔多维奇谱
+Harrison-Zel'dovich-Peebles spectrum 哈里森-泽尔多维奇-皮布尔斯谱
+HartRAO 全称:Hartebeesthoek Radio Astronomy Observatory。哈特射电天文台
+Hartebeesthoek Radio Astronomy Observatory 缩写:HartRAO。哈特射电天文台
+Hartley 2 Comet 哈特利2号彗星
+Hartmann crater 哈特曼环形山
+Hartmann diaphragm 哈特曼光阑
+Hartmann dispersion formula 哈特曼色散公式
+Hartmann test 哈特曼检验
+Hartmann-Cornu formula 哈特曼-考纽公式
+Hartwell crater 哈特韦尔陨击坑
+Hartwig crater 1、哈特维希环形山; 2、哈特维希陨击坑
+Harvard Annual 缩写:HA。哈佛天文台纪事
+Harvard Bulletin 缩写:HB。哈佛天文台公报
+Harvard Circular 缩写:HC。哈佛天文台简报
+Harvard College Observatory 缩写:HCO。哈佛天文台
+Harvard Photometry 缩写:HP。哈佛恒星测光表
+Harvard Region 哈佛选区
+Harvard Revised Photometry 缩写:RHP。哈佛测光星表修订版
+Harvard Standard Region 缩写:HSR。哈佛标准选区
+Harvard classification 哈佛分类
+Harvard pulsar 缩写:HP。哈佛天文台脉冲星
+Harvard variable 缩写:HV。哈佛天文台变星
+Harvard-Smithsonian Center for Astrophysics 缩写:CfA。哈佛史密松天体物理中心
+Harvard-Smithsonian Reference Atmosphere 缩写:HSRA。哈佛-史密松参考大气
+Harvey crater 哈维环形山
+Hase crater 哈泽环形山
+Hashir crater 哈舍尔陨击坑
+Hassaleh 五车一
+Hat Creek Observatory 帽子溪射电天文台
+Hati 土卫四十三
+Hatysa 伐三
+Haughton crater 霍顿陨星坑
+Haumea 妊神星
+Hausen crater 豪森环形山
+Haute Provence Observatory 缩写:OHP。上普罗旺斯天文台
+Havel Vallis 哈弗尔峡谷
+Haviland crater 哈维兰陨星坑
+Hawkin notch 霍金切口
+Hawking radiation 霍金辐射
+Hawking temperature 霍金温度
+Hawking's rule 霍金定则
+Hawking-Hartle wave function 霍金-哈特尔波函数
+Hay spot 哈伊斑
+Hayabusa 隼鸟号
+Hayabusa Terra 隼鸟号台地
+Hayashi limit 林忠四郎极限
+Hayashi line 林忠四郎线
+Hayashi model 林忠四郎模型
+Hayashi phase 林忠四郎阶段
+Hayashi theorem 林忠四郎定理
+Hayashi track 林忠四郎迹程
+Hayn crater 海因环形山
+Haystack Observatory 海斯塔克天文台
+HdAp 全称:Handbuch der Astrophysik。天体物理手册
+He 全称:helium。氦
+He abundance 全称:helium abundance。氦丰度
+Heart 心宿
+Heaviside crater 1、亥维赛环形山; 2、亥维赛陨击坑
+Heaviside layer 亥维塞层
+Heaviside step function 亥维赛阶梯函数
+Heavy Snow 大雪
+Hebe 韶神星
+Hebei 河北
+Hebes Chasma 赫柏斯深谷
+Hebes Mensa 赫柏斯桌山
+Hebrus Valles 赫布罗斯峡谷群
+Hecataeus crater 赫卡泰奥斯环形山
+Hecates Tholus 赫卡忒山丘
+Hecuba 犬后星
+Hecuba gap 犬后星空隙
+Hecuba group 犬后星群
+Hedda 赫达
+Hedin crater 斯文赫定环形山
+Heeschen-Poskovski relationship 希申-博斯科夫斯基关系
+Hegemone 木卫三十九
+Hegemone Dorsum 赫革摩涅山脊
+Heggie's law 赫吉定律
+Heilongjiang 黑龙江
+Heimdal crater 海姆达尔陨击坑
+Heinlein crater 海因莱因陨击坑
+Heinsius crater 海因修斯环形山
+Heisenberg uncertainties principle 海森伯不确定性原理; 海森伯测不准原理
+Hekate 权神星
+Hekla Cavus 海克拉凹地
+Hektor 赫克托
+Helena 海伦; 拐女星
+Helene 土卫十二
+Helike 木卫四十五
+Helio-1 太阳神-1空间探测器
+Helio-2 太阳神-2空间探测器
+Helios 太阳神
+Helix Galaxy 螺旋星系
+Helix Nebula 螺旋星云
+Hellas 希腊
+Hellas Basin 希腊盆地
+Hellas Chaos 希腊混杂地
+Hellas Chasma 希腊深谷
+Hellas Montes 希腊山脉
+Hellas Planitia 希腊平原
+Hellespontus 赫勒斯滂
+Hellespontus Montes 赫勒斯滂山脉
+Helmholtz contraction 亥姆霍兹收缩
+Helmholtz contraction time 亥姆霍兹收缩时间
+Helmholtz crater 1、亥姆霍兹环形山; 2、亥姆霍兹陨击坑
+Helmholtz free energy 亥姆霍兹自由能
+Helmholtz time scale 亥姆霍兹时标
+Helmholtz-Kelvin contraction 亥姆霍兹-开尔文收缩
+Helmi stream 缩写:HStr。海尔米恒星流
+Helvetios 室宿增一
+Hemmungspunkt 爆炸点
+Henan 河南
+Henbury crater 1、亨伯里陨击坑; 2、亨伯里陨星坑
+Heng-o Corona 姮娥地冕
+Henon-Helies model 埃农-海利斯模型
+Henry Draper Extension 缩写:HDE。HD星表补编
+Henry Draper catalogue 缩写:HD Catalogue。德雷伯星表; HD星表
+Henry Draper classification 缩写:HD classification。HD恒星光谱分类
+Henry Draper stellar classification 缩写:HD classification。HD恒星光谱分类
+Henry Draper system 缩写:HD system。HD分类系统
+Henry Moore crater 亨利·穆尔陨击坑
+Henry crater 亨利陨击坑
+Henyey track 亨耶迹
+Hephaestus Fossae 赫菲斯托斯堑沟群
+Hephaestus Rupēs 赫菲斯托斯峭壁
+Hephaistos 冶神星
+Her 全称:Hercules。武仙座
+Her Desher Vallis 赫德谢尔峡谷
+Hera 后神星
+Hera Patera 赫拉山口
+Heraclitus crater 赫拉克利特环形山
+Herbig Ae star 赫比格Ae型星
+Herbig Ae-Be star 赫比格Ae-Be型星
+Herbig Ae/Be star 赫比格Ae/Be型星
+Herbig Be star 赫比格Be 型星
+Herbig emission-line star 赫比格发射线星
+Herbig star 赫比格变星
+Herbig-Haro flow 缩写:HH flow。赫比格-阿罗流
+Herbig-Haro nebula 缩写:HH nebula。赫比格-阿罗星云; HH星云
+Herbig-Haro object 缩写:HH object。赫比格-阿罗天体; HH天体
+Herbig-Haro shock wave 赫比格-阿罗激波
+Herculaneum crater 赫库兰尼姆陨击坑
+Hercules 1、北河三; 2、缩写:Her。武仙座
+Hercules Cluster 武仙星系团
+Hercules Ridge 武仙脊
+Hercules X-1 武仙X-1
+Herculina 大力神星
+Hermes 使神星
+Hermes Patera 赫尔墨斯山口
+Hermippe 木卫三十
+Hermite crater 埃尔米特环形山
+Hermitian matrix 厄密矩阵
+Hermod Fossae 赫尔莫德堑沟群
+Hermus Vallis 海尔谟斯峡谷
+Hernquist profile 赫恩奎斯特轮廓
+Herschel Gap 赫歇尔环缝
+Herschel Space Observatory 缩写:HSO。赫歇尔空间天文台
+Herschel Telescope 赫歇尔望远镜
+Herschel crater 1、赫歇尔环形山; 2、赫歇尔环形山; 3、赫歇尔陨击坑
+Herschel effect 赫歇尔效应
+Herschel infrared space telescope 赫歇尔红外空间望远镜
+Herschel wedge 赫歇尔光劈
+Herschel-Rigollet comet 赫歇尔-里戈莱彗星
+Herschelian telescope 赫歇尔望远镜
+Herse 木卫五十
+Hersilia 埃西莉亚
+Hertha 沃神星
+Hertha family 沃神星族
+Hertz crater 赫兹环形山
+Hertzsprung crater 赫茨普龙环形山
+Hertzsprung gap 赫氏空隙
+Hertzsprung-Russell diagram 缩写:HR diagram。赫罗图
+Hesperia 1、夕神星; 2、赫斯珀里亚
+Hesperia Dorsa 赫斯珀里亚山脊群
+Hesperia Planum 赫斯珀里亚高原
+Hesperus 长庚; 昏星
+Hesperus Tholus 赫斯珀勒斯山丘
+Hess crater 赫斯环形山
+Hess diagram 赫斯[频数]图
+Hessian matrix 海森矩阵
+Hestia 司祭星
+Hestia gap 司祭星空隙
+Hevelius crater 赫维留环形山
+Hevelius formation 赫维留结构
+Heymans crater 海曼斯环形山
+Heyuan 河源
+Heze 角宿二
+Hf 全称:hafnium。铪
+Hg 全称:mercury。汞
+HgCdTe infrared array 碲镉汞红外面阵
+Hi'iaka 妊卫一
+HiRes 全称:High Resolution Fly's Eye cosmic ray detector。高分辨率蝇眼宇宙线探测器
+Hibes Montes 希贝斯山脉
+Hickson Compact Group 缩写:HCG。希克森致密星系群
+Hickson compact group 希克森致密群
+Hidalgo 希达尔戈
+Hiddekel 希底结
+Hiddekel Cavus 希底结凹地
+Hiddekel Rupes 希底结峭壁
+Higgs boson 希格斯玻色子
+Higgs field 希格斯场
+Higgs mechanism 希格斯机制
+High Altitude Observatory 缩写:HAO。高山天文台
+High Energy Astronomical Observatory 缩写:HEAO。高能天文台
+High Energy Astrophysics Science Archive Research Center 缩写:HEASARC。高能天体物理科学数据库研究中心
+High Energy Astrophysics Software 缩写:HEAsoft。高能天体物理软件包
+High Energy Solar Spectroscopy Imager 缩写:HESSI。高能太阳光谱成像探测器
+High Energy Stereoscopic System 缩写:H.E.S.S.。高能立体视野望远镜阵
+High Energy Transient Experiment 缩写:HETE。高能暂现源实验
+High Energy Transient Explorer 缩写:HETE。高能暂现源探测器
+High Energy Transient Explorer 2 缩写:HETE 2。高能暂现源探测器2号
+High Precision Parallax Collecting Satellite 缩写:Hipparcos。依巴谷天文卫星
+High Resolution Fly's Eye cosmic ray detector 缩写:HiRes。高分辨率蝇眼宇宙线探测器
+High Synchrotron Peaked blazar 缩写:HSP, HBL。高同步峰频耀变体
+High-Altitude Water Cherenkov observatory 缩写:HAWC。高海拔水体切伦科夫天文台
+High-Energy-Gamma-Ray Astronomy telescope 缩写:HEGRA。高能伽马射线天文望远镜
+Highly Advanced Laboratory for Communications and Astronomy 缩写:HALCA。哈尔卡实验室
+Hilasmus 骑官二
+Hilbert crater 希尔伯特环形山
+Hilbert space 希尔伯特空间
+Hilbert transformation 希尔伯特变换
+Hilda 希尔达
+Hilda asteroid 希尔达型小行星
+Hilda group 希尔达群
+Hill element 希尔根数
+Hill equation 希尔方程
+Hill problem 希尔问题
+Hill sphere 希尔球
+Hill stability 希尔稳定性
+Hill's approximation 希尔近似
+Hill-Brown theory 希尔-布朗理论
+Hillary Montes 希拉里山脉
+Hilo crater 希洛陨击坑
+Hiltner-Hall effect 希尔特纳-霍尔效应
+Himalia 木卫六
+Himera Valles 希美拉峡谷群
+Hind's Crimson star 缩写:R Lep。欣德深红星
+Hind's Nebula 欣德星云
+Hind's Variable Nebula 欣德变星云
+Hinode 日出号
+Hinotori 火鸟号
+Hipparchus crater 1、依巴谷环形山; 2、依巴谷陨击坑
+Hipparcos 全称:High Precision Parallax Collecting Satellite。依巴谷天文卫星
+Hipparcos Catalogue 依巴谷星表
+Hippocamp 1、海卫十四; 2、海卫十四
+Hippocrates crater 希波克拉底环形山
+Hirayama crater 平山环形山
+Hirayama family 平山族
+Hisaki 火崎号
+Hiten 飞天号
+Ho 全称:holmium。钬
+Hoag's Object 霍格天体
+Hoba West meteorite 西霍巴陨星
+Hoba meteorite 霍巴陨星
+Hobby-Eberly Telescope 缩写:HET。霍比-埃伯利望远镜
+Hoedus I 柱二
+Hoedus Ⅱ 柱三
+Hoffmeister's Cloud 霍夫麦斯特星云
+Hohai 河海
+Hohhot 呼和浩特
+Hohmann orbit 霍曼轨道
+Hohmann transfer 霍曼转移
+Hohmann transfer orbit 霍曼转移轨道
+Holden crater 霍尔登陨击坑
+Holeungholee 何梁何利
+Holmberg classification 霍姆伯格分类
+Holmberg criterion 霍姆伯格判据
+Holmberg radius 霍姆伯格半径
+Holmes crater 霍姆斯陨击坑
+Holtsmark approximation 霍茨马克近似
+Holtsmark broadening 霍茨马克致宽
+Homam 雷电一
+Homestake experiment 霍姆斯特克实验
+Hommel crater 霍梅尔环形山
+Homunculus Nebula 侏儒星云
+Honda crater 翁达陨击坑
+Hong Kong 香港
+Hooke crater 1、胡克环形山; 2、胡克陨击坑
+Hooker Telescope 胡克望远镜
+Hope crater 霍普陨击坑
+Hope probe 祈望号探测器
+Hopf bifurcation 霍普夫分岔
+Hopf-Cole substitution 霍普夫-科尔替换
+Hopkins Observatory 霍普金斯天文台
+Hopmann crater 霍普曼环形山
+Hor 全称:Horologium。时钟座
+Horai Fossa 蓬莱沟
+Horarum Mons 霍莉山
+Horn 角宿
+Horndeski's theory 霍恩戴斯基理论
+Horologium 缩写:Hor。时钟座
+Horowitz crater 霍罗威茨陨击坑
+Horrebow-Talcott method 赫瑞堡-太尔各特法
+Horsehead Nebula 马头星云
+Horseshoe Nebula 马蹄星云
+Hour star 辰星
+Hourenzhi 侯仁之
+Hourglass Nebula 沙漏星云
+House 营室; 室宿
+Houston crater 休斯敦陨击坑
+Houxianglin 侯祥麟
+Houzeau crater 乌佐环形山
+Howardite 古铜钙长无球粒陨石
+Hoyin 何贤
+Hoyle-Narlikar cosmology 霍伊尔-纳里卡宇宙学
+Hoyle-Narlikar theory 霍伊尔-纳里卡理论
+Hrad Vallis 赫拉德峡谷
+Hsūanch'eng crater 宣城陨击坑
+Huallaga Vallis 瓦亚加峡谷
+Huancayo crater 万卡约陨击坑
+Huangkun 黄昆
+Huanglin 黄磷
+Huangpu 黄浦
+Huangrunqian 黄润乾
+Huangshan 黄山
+Huangsushu 黄授书
+Huazhongkejida 华中科技大
+Hubble Atlas of Galaxies 哈勃星系图册
+Hubble Deep Field 缩写:HDF。哈勃深场
+Hubble Heritage Project 哈勃传承计划
+Hubble Legacy Archive 缩写:HLA。哈勃遗珍档案
+Hubble Nebula 哈勃星云
+Hubble Space Telescope 缩写:HST。哈勃空间望远镜
+Hubble Ultra Deep Field 缩写:HUDF。哈勃极深场
+Hubble age 哈勃年龄
+Hubble classification 哈勃分类
+Hubble constant 哈勃常数
+Hubble crater 哈勃环形山
+Hubble diagram 哈勃图
+Hubble distance 哈勃距离
+Hubble drag 哈勃拖曳
+Hubble effect 哈勃效应
+Hubble expansion 哈勃膨胀
+Hubble flow 哈勃流
+Hubble horizon 哈勃视界
+Hubble law 哈勃定律
+Hubble length 哈勃长度
+Hubble parameter 哈勃参数
+Hubble radius 哈勃半径
+Hubble rate 哈勃率
+Hubble relation 哈勃关系
+Hubble sequence 哈勃序列
+Hubble sphere 哈勃球
+Hubble stage 哈勃分类参数
+Hubble tension 哈勃常数争议
+Hubble test 哈勃检验
+Hubble time 哈勃时间
+Hubble velocity 哈勃速度
+Hubble's Nebula 哈勃星云
+Hubble's Variable Nebula 哈勃变光星云
+Hubble's classification system 哈勃分类系统
+Hubble's law 哈勃定律
+Hubble-Oemler law 哈勃-欧姆勒律
+Hubble-Reynolds law 哈勃-雷诺规律
+Hubble-Sandage variable 哈勃-桑德奇型变星
+Hubble-Sandage variable star 缩写:HS variable star。哈勃-桑德奇型变星; HS型变星
+Hubei 湖北
+Huggins crater 1、哈金斯环形山; 2、哈金斯陨击坑
+Hugoniot curve 于戈尼奥曲线
+Hugoniot equation 于戈尼奥方程
+Hugoniot relation 于戈尼奥关系
+Hugoniot shock 于戈尼奥激波
+Huhunglick 胡鸿烈
+Huichiming 许智明
+Hujingyao 胡景耀
+Hulse-Taylor pulsar 赫尔斯-泰勒脉冲星
+Humason-Zwicky star 缩写:HZ star。HZ型星; 哈马森-兹威基型星
+Humboldt crater 洪堡环形山
+Hume crater 休姆环形山
+Hun Kal crater 珲卡尔环形山
+Hunahpu Valles 乌纳普谷
+Hunan 湖南
+Hund's rule 洪德定则
+Hungaria 匈牙利
+Hungaria group 匈牙利群
+Hungarian Virtual Observatory 缩写:HVO。匈牙利虚拟天文台
+Huningsheng 胡宁生
+Hunten crater 亨滕陨击坑
+Huo Hsing Vallis 荧惑峡谷
+Hurter-Driffield curve 缩写:HD curve。赫特-德里菲尔德曲线; HD曲线
+Husband Hill 赫斯本德山
+Hushicheng 胡诗成
+Hussey crater 赫西陨击坑
+Hutton crater 1、赫顿环形山; 2、赫顿陨击坑
+Huxiang crater 胡襄陨击坑
+Huxley crater 1、赫胥黎环形山; 2、赫胥黎陨击坑
+Huya 雨神星
+Huygenian eyepiece 惠更斯目镜
+Huygenian region 惠更斯区
+Huygenian telescope 惠更斯望远镜
+Huygens Gap 惠更斯环缝
+Huygens crater 惠更斯陨击坑
+Huygens eyepiece 惠更斯目镜
+Huygens lander 惠更斯号着陆器
+Huygens probe 惠更斯空间探测器
+Huygens telescope 惠更斯望远镜
+Huygens' principle 惠更斯原理
+Hya 全称:Hydra。长蛇座
+Hyad 毕团星
+Hyades 毕星团
+Hyades group 毕宿星群
+Hyades supercluster 毕宿超级星团
+Hyadum I 毕宿四
+Hyadum Ⅱ 毕宿三
+Hyblaeus Catena 希布莱乌斯坑链
+Hyblaeus Chasma 希布莱乌斯深谷
+Hyblaeus Dorsa 希布莱乌斯山脊群
+Hyblaeus Fossae 希布莱乌斯堑沟群
+Hydaspis Chaos 海达斯皮斯混杂地
+Hydra 1、冥卫三; 2、缩写:Hya。长蛇座
+Hydra Cluster 长蛇星系团
+Hydra Ridge 长蛇脊
+Hydra-Centaurus supercluster 长蛇-半人马超星系团
+Hydrae Cavus 许德拉凹地
+Hydrae Chaos 许德拉混杂地
+Hydrae Chasma 许德拉深谷
+Hydraotes Chaos 海德拉奥提斯混杂地
+Hydraotes Colles 海德拉奥提斯小丘群
+Hydrus 缩写:Hyi。水蛇座
+Hyecho Palus 慧超沼
+Hygiea 健神星
+Hyginus crater 希吉努斯环形山
+Hyi 全称:Hydrus。水蛇座
+Hypanis Valles 叙帕尼司峡谷群
+Hyper Suprime-Cam 超广角主焦相机
+Hyperborea Lingula 极北舌状地
+Hyperboreae Undae 极北沙丘群
+Hyperborei Cavi 极北凹地群
+Hyperboreus Labyrinthus 极北沟网
+Hyperboreus Lacus 极北湖
+Hyperboreus Scopulus 极北断崖
+Hyperion 土卫七
+Hypernotius Scopulus 极南断崖
+Hypsas Vallis 海普萨斯峡谷
+Hyrrokkin 土卫四十四
+Hédervári crater 海代尔瓦里环形山
+Hīt crater 希特陨击坑
+Hα emission-line star Hα发射线星
+Hα photometry Hα测光
+Hα spectroscopy Hα分光
+Hα survey Hα巡天
+Hβ photometry Hβ测光
+HⅠ Parkes All Sky Survey 缩写:HIPASS。帕克斯中性氢巡天
+HⅠ absorption 中性氢吸收
+HⅠ cloud 中性氢云
+HⅠ complex 中性氢复合体
+HⅠ content 中性氢含量
+HⅠ emission 中性氢发射
+HⅠ region 中性氢区
+HⅠ stream 中性氢流
+HⅡ cloud 电离氢云
+HⅡ condensation 电离氢凝聚体
+HⅡ galaxy 电离氢星系
+HⅡ region 电离氢区
+I 全称:iodine。碘
+I-magnitude I星等
+IAC 全称:Instituto de Astrofísica de Canarias。加那利天体物理研究所
+IAF 全称:International Astronautical Federation。国际航天联合会
+IAG 全称:International Association of Geodesy。国际测地协会
+IAGA 全称:International Association of Geomagnetism and Aeronomy。国际地磁和高层大气物理协会
+IAGC 全称:International Association of Geochemistry and Cosmochemistry。国际地球化学和宇宙化学协会
+IAMAP 全称:International Association of Meteorology and Atmospheric Physics。国际气象和大气物理协会
+IASPEI 全称:International Association of Seismology and Physics of the Earth's Interior。国际地震和地球内部物理协会
+IASY 全称:International Active Sun Year。国际活动太阳年
+IATME 全称:International Association of Terrestrial Magnetism and Electricity。国际地磁和地电协会
+IAU 全称:International Astronomical Union。国际天文学联合会
+IAU Circular 缩写:IAUC。IAU快报
+IAU Oort constants IAU奥尔特常数
+IAU Planetary Photograph Center IAU行星照相中心
+IAU System of Astronomical constants IAU天文常数系统
+IAU Working Group for Future large scale facilities IAU今后大型设施工作组
+IAU Working Group for Planetary system nomenclature IAU行星系命名工作组
+IAU Working Group in History of astronomy IAU天文史工作组
+IAU Working Group on Astronomiacl data IAU天文数据工作组
+IAU Working Group on Astronomical standards IAU天文标准工作组
+IAU Working Group on Comets IAU彗星工作组
+IAU Working Group on Designations IAU命名工作组
+IAU Working Group on Earth rotation in the HIPPARCOS reference frame IAU依巴谷参考架内地球自转工作组
+IAU Working Group on Lunar based astronomy IAU月基天文工作组
+IAU Working Group on Minor planets and Meteorites IAU小行星和陨星工作组
+IAU Working Group on Near Earth objects IAU近地天体工作组
+IAU Working Group on Parallax standards IAU视差标准星工作组
+IAU Working Group on Peculiar stars IAU特殊星工作组
+IAU Working Group on Planetary nebulae IAU行星状星云工作组
+IAU Working Group on Reference frames IAU参考架工作组
+IAU Working Group on Satellites IAU卫星工作组
+IAU Working Group on Spectroscopic data archives IAU分光资料档案工作组
+IAU Working Group on Supernovae IAU超新星工作组
+IAU Working Group on Wide-field imaging IAU大视场成像工作组
+IAU galactic coordinate system IAU银道坐标系
+IAU galactocentric distance IAU银心距
+IAUC 全称:IAU Circular。IAU快报
+IBC detector 全称:impurity band conduction detector。杂带导通探测器
+IBEX 全称:Interstellar Boundary Explorer。星际边界探测器
+IBVS 全称:Information Bulletin on Variable Stars。变星快报
+IC 全称:Index Catalogue of Nebulae and Clusters of Stars。星云星团新总表续编
+IC Ⅱ 全称:Second Index Catalogue of Nebulae and Clusters of Stars。星云星团新总表续编Ⅱ
+ICE 1、全称:International Cometary Explorer。国际彗星探测器; 2、全称:inverse Compton effect。逆康普顿效应
+ICET 全称:International Center of Earth Tide。国际固体潮中心
+ICM 1、全称:intercloud matter。云际物质; 2、全称:intercloud medium。云际介质; 3、1、全称:intercluster matter。星团际物质; 2、全称:intercluster matter。星系团际物质; 4、1、全称:intracluster matter。星团内物质; 2、全称:intracluster matter。星系团内物质; 3、1、全称:intracluster medium。星团内介质; 2、全称:intracluster medium。星系团内介质
+ICRF 全称:International Celestial Reference Frame。国际天球参考架
+ICRS 全称:International Celestial Reference System。国际天球参考系
+ICRS place ICRS 位置
+ICSO 全称:international coordinated solar observations。国际太阳联合观测
+IDA 1、全称:International Dark-Sky Association。国际夜空保护协会; 2、全称:integrated diode array。集成二极管阵
+IDP 全称:interplanetary dust particle; interplanetary grain。行星际尘粒
+IDS 全称:image-dissector scanner。析像扫描器
+IDV 全称:Intraday variabilit。日内变化
+IEH 全称:International Extreme-UV Hitchhiker。国际极紫外飞行器
+IERS 全称:International Earth Rotation and Reference Systems Service。国际地球自转服务
+IFO 全称:identified flying object。已证认飞行物
+IFRB 全称:International Frequency Registration Board。国际频率登记委员会
+IFU 全称:integral field unit。集成视场单元
+IGC 全称:International Geophysical Cooperation。国际地球物理协作
+IGM 1、全称:intergalactic matter。星系际物质; 2、全称:intergalactic medium。星系际介质
+IGM metallicity 全称:Intergalactic medium metallicity。星系际介质金属丰度
+IGY 全称:International Geophysical Year。国际地球物理年
+IHY 全称:International Heliophysical Year。国际太阳物理年
+II Thyle I 图勒
+IIBAE 全称:International Information Bureau on Astronomical Ephemerides。国际天文历表信息局
+IKAROS 全称:Interplanetary Kite-craft Accelerated by Radiation Of the Sun。太阳光帆行星际飞船; 伊卡洛斯号
+ILE 全称:Improved Lunar Ephemeris。改进月球历表
+ILO 全称:International Latitude Observatory。国际纬度台
+ILOT 全称:intermediate-luminosity optical transient。中间光度光学暂现源
+ILRT 全称:intermediate-luminosity red transient。中间光度红色暂现源
+ILS 全称:International Latitude Service。国际纬度服务
+IME 全称:International Magnetospheric Explorer。国际磁层探测器
+IMEX 全称:Inner Magnetosphere Explorer。内磁层探测器
+IMF 1、全称:initial mass function。初始质量函数; 2、全称:interplanetary magnetic field。行星际磁场; 3、全称:interstellar magnetic field。星际磁场
+IMP 全称:Interplanetary Monitoring Platform。行星际监测站
+IMS 全称:International Magnetosphere Study。国际磁层研究
+INAF 全称:Istituto Nazionale di Astrofisica。意大利国家天体物理研究所
+INFN 全称:Istituto Nazionale di Fisica Nucleare。国家核物理研究院
+ING 全称:Isaac Newton Group。牛顿望远镜群
+INT 全称:Isaac Newton Telescope。INT牛顿望远镜
+INTEGRAL 全称:International Gamma-Ray Astrophysics Laboratory。国际γ射线天体物理实验室
+IOTA 全称:International Occultation Timing Association。国际掩食测时协会
+IPC 全称:imaging proportional counter。成像正比计数器
+IPCS 全称:image photon-counting system。图像光子计数器; 图像光子计数系统
+IPHAS 全称:Isaac Newton Telescope Photometric H-alpha Survey。牛顿望远镜Hα测光巡天
+IPM 1、全称:interplanetary matter。行星际物质; 2、全称:interplanetary medium。行星际介质
+IPMS 全称:International Polar Motion Service。国际极移服务
+IPN 全称:Interplanetary Network。行星际观测网
+IPS 1、全称:inertial positioning system。惯性定位系统; 2、全称:interplanetary scattering。行星际散射; 3、全称:interplanetary scintillation。行星际闪烁
+IPY 全称:International Polar Year。国际极地年
+IQSY 1、全称:International Quiet Sun Year。国际宁静太阳年; 2、全称:International Years of the Quiet Sun。国际太阳宁静年
+IR 全称:infrared。红外
+IRAF 全称:Image Reduction and Analysis Facility。图像处理和分析软件
+IRAM 全称:Institut de Radioastronomie Millimétrique。毫米波射电天文所
+IRAS 全称:Infrared Astronomical Satellite。红外天文卫星
+IRAS galaxy IRAS星系
+IRAS-Iraki-Alcock comet IRAS-荒木-阿尔科克彗星
+IRC 全称:Caltech Infrared Catalogue。加州理工学院红外源表
+IRC source IRC红外源
+IRCS 全称:inertial radio source coordinate system。射电源惯性坐标系
+IRDC 全称:Infrared Dark Cloud。红外暗云
+IRIS 1、全称:Infrared Imager/Spectrograph。红外成像器/摄谱仪; 2、全称:Interface Region Imaging Spectrograph。过渡区成像摄谱仪
+IRLS 全称:International Rapid Latitude Service。国际纬度快速服务
+IRPS 全称:Infrared Photometer/Spectrometer。红外光度计/分光仪
+IRTF 全称:NASA Infrared Telescope Facility。[美国]航天局红外望远镜
+IRTS 全称:Infrared Telescope in Space。IRTS空间红外望远镜
+ISEE 全称:International Sun-Earth Explorer。国际日地探测器
+ISI 全称:Infrared Spatial Interferometer。红外空间干涉仪
+ISIS 全称:International Satellite for Ionospheric Studies。国际电离层科学卫星
+ISM 全称:interstellar medium; interstellar matter。星际介质; 星际物质
+ISO 1、全称:Infrared Space Observatory。红外空间天文台; 2、全称:Interstellar object。星际天体
+ISON 全称:International Scientific Optical Network。国际光学监测网
+ISRU 全称:International Scientific Radio Union。国际无线电科学联合会
+ISS 1、全称:International Space Station。国际空间站; 2、全称:inertial surveying system。惯性勘测系统; 3、1、全称:interstellar scintillation。星际闪烁; 2、全称:scattering by interstellar media。星际散射
+ISS-CRÈME 全称:ISS-Cosmic Ray Energetics and Mass experiment。国际空间站宇宙线能谱和质量实验
+ISS-Cosmic Ray Energetics and Mass experiment 缩写:ISS-CRÈME。国际空间站宇宙线能谱和质量实验
+ISTS 全称:International Solar and Terrestrial Service。国际日地服务
+ISW effect 全称:integrated Sachs-Wolfe effect。累积萨克斯-沃尔夫效应; ISW效应
+ITRF 全称:International Terrestrial Reference Frame。国际地球参考架
+ITRS 全称:International Terrestrial Reference System。国际地球参考系
+ITU 全称:International Telecommunication Union。国际电信联盟
+IUAA 全称:International Union of Amateur Astronomers。国际天文爱好者联合会
+IUE 全称:International Ultraviolet Explorer。国际紫外探测器
+IUGG 全称:International Union of Geodesy and Geophysics。国际测地和地球物理联合会
+IVOA 全称:International Virtual Observatory Alliance。国际虚拟天文台联盟
+IXO 全称:International X-ray Observatory。国际X射线天文台
+IXPE 全称:Imaging X-ray Polarimetry Explorer。成像X射线偏振探测器
+IYA2009 全称:International Year of Astronomy 2009。国际天文年2009
+Iamuna Chaos 亚穆纳混杂地
+Iamuna Dorsa 亚穆纳山脊群
+Iani Chaos 亚尼混杂地
+Ianthe 佳女星
+Iapetus 土卫八
+Iapigia 雅庇吉亚
+Iapygia 雅庇吉亚
+Iaxartes Tholus 雅克萨特山丘
+Iazu crater 亚祖陨击坑
+Iberus Vallis 伊贝鲁斯峡谷
+Ibn Yunus crater 伊本·尤努斯环形山
+Ibragimov crater 易卜拉欣莫夫陨击坑
+Icaria 伊卡里亚
+Icaria Fossae 伊卡里亚堑沟群
+Icaria Planum 伊卡里亚高原
+Icaria Rupes 伊卡里亚峭壁
+Icarus 1、伊卡洛斯; 2、伊卡洛斯
+Icarus crater 伊卡洛斯环形山
+IceCube Neutrino Observatory 冰立方中微子天文台
+Iceland spar 冰洲石
+Ida 艾达
+Idaeus Fossae 伊代俄斯堑沟群
+Igal crater 伊高尔陨击坑
+Ignatius Kögler 戴进贤
+Ijiraq 土卫二十二
+Ikej crater 伊克伊陨击坑
+Ikeya-Seki comet 池谷-关彗星
+Ikeya-Zhang Comet 池谷-张彗星
+Iklil 房宿二
+Ilmare 伊尔玛瑞
+Image Reduction and Analysis Facility 缩写:IRAF。图像处理和分析软件
+Imaging Fourier transform spectrometer 成像傅里叶变换光谱仪
+Imaging X-ray Polarimetry Explorer 缩写:IXPE。成像X射线偏振探测器
+Imai 十字架四
+Imbrian System 雨海地层系统
+Imbrium Basin 雨海盆地
+Imgr crater 伊姆格特陨击坑
+Improved Lunar Ephemeris 缩写:ILE。改进月球历表
+In 全称:indium。铟
+InGaAs infrared array 铟镓砷红外面阵
+InSight 全称:Interior Exploration using Seismic Investigations, Geodesy and Heat Transport。震波、测地和热传输法内部探测任务; 洞察号[火星探测器]
+Inanna Fossa 依南娜堑沟
+Ind 全称:Indus。印第安座
+Index Catalogue of Nebulae and Clusters of Stars 缩写:IC。星云星团新总表续编
+Indian era 印度纪元
+Indus 缩写:Ind。印第安座
+Indus Vallis 印度峡谷
+Infinite Empty Space 宣夜说
+Information Bulletin on Variable Stars 缩写:IBVS。变星快报
+Infrared Astronomical Satellite 缩写:IRAS。红外天文卫星
+Infrared Dark Cloud 缩写:IRDC。红外暗云
+Infrared Imager/Spectrograph 缩写:IRIS。红外成像器/摄谱仪
+Infrared Photometer/Spectrometer 缩写:IRPS。红外光度计/分光仪
+Infrared Space Observatory 缩写:ISO。红外空间天文台
+Infrared Spatial Interferometer 缩写:ISI。红外空间干涉仪
+Infrared Telescope in Space 缩写:IRTS。IRTS空间红外望远镜
+Ingenuity Mars Helicopter 灵巧号火星直升机
+Inghirami crater 因吉拉米环形山
+Inglis-Teller limit 英格利斯-特勒极限
+Inner Magnetosphere Explorer 缩写:IMEX。内磁层探测器
+Innsbruck crater 因斯布鲁克陨击坑
+Ins crater 因斯陨击坑
+Insects Awakening 惊蛰
+Institut de Radioastronomie Millimétrique 缩写:IRAM。毫米波射电天文所
+Instituto de Astrofísica de Canarias 缩写:IAC。加那利天体物理研究所
+Inta crater 因塔陨击坑
+Integral Sign galaxy 积分号星系
+Interamnia 因太拉尼亚
+Intercosmos program 国际宇宙计划
+Intercrus 上台增七
+Interface Region Imaging Spectrograph 缩写:IRIS。过渡区成像摄谱仪
+Intergalactic medium metallicity 缩写:IGM metallicity。星系际介质金属丰度
+Interior Exploration using Seismic Investigations, Geodesy and Heat Transport 缩写:InSight。震波、测地和热传输法内部探测任务; 洞察号[火星探测器]
+Interkosmos program 国际宇宙计划
+International Active Sun Year 缩写:IASY。国际活动太阳年
+International Association of Geochemistry and Cosmochemistry 缩写:IAGC。国际地球化学和宇宙化学协会
+International Association of Geodesy 缩写:IAG。国际测地协会
+International Association of Geomagnetism and Aeronomy 缩写:IAGA。国际地磁和高层大气物理协会
+International Association of Meteorology and Atmospheric Physics 缩写:IAMAP。国际气象和大气物理协会
+International Association of Seismology and Physics of the Earth's Interior 缩写:IASPEI。国际地震和地球内部物理协会
+International Association of Terrestrial Magnetism and Electricity 缩写:IATME。国际地磁和地电协会
+International Astronautical Federation 缩写:IAF。国际航天联合会
+International Astronomical Union 缩写:IAU。国际天文学联合会
+International Atomic Time 国际原子时
+International Celestial Reference Frame 缩写:ICRF。国际天球参考架
+International Celestial Reference System 缩写:ICRS。国际天球参考系
+International Center of Earth Tide 缩写:ICET。国际固体潮中心
+International Comet Explorer 国际彗星探测器
+International Cometary Explorer 缩写:ICE。国际彗星探测器
+International Dark-Sky Association 缩写:IDA。国际夜空保护协会
+International Earth Rotation and Reference Systems Service 缩写:IERS。国际地球自转服务
+International Extreme-UV Hitchhiker 缩写:IEH。国际极紫外飞行器
+International Frequency Registration Board 缩写:IFRB。国际频率登记委员会
+International Gamma-Ray Astrophysics Laboratory 缩写:INTEGRAL。国际γ射线天体物理实验室
+International Geophysical Cooperation 缩写:IGC。国际地球物理协作
+International Geophysical Year 缩写:IGY。国际地球物理年
+International Heliophysical Year 缩写:IHY。国际太阳物理年
+International Information Bureau on Astronomical Ephemerides 缩写:IIBAE。国际天文历表信息局
+International Journal of Modern Physics D 国际现代物理学杂志D辑
+International Latitude Observatory 缩写:ILO。国际纬度台
+International Latitude Service 缩写:ILS。国际纬度服务
+International Latitude Station 国际纬度站
+International Magnetosphere Study 缩写:IMS。国际磁层研究
+International Magnetospheric Explorer 缩写:IME。国际磁层探测器
+International Occultation Timing Association 缩写:IOTA。国际掩食测时协会
+International Polar Motion Service 缩写:IPMS。国际极移服务
+International Polar Year 缩写:IPY。国际极地年
+International Quiet Sun Year 缩写:IQSY。国际宁静太阳年
+International Radio Consultative Committee 缩写:CCIR。国际电信咨询委员会
+International Rapid Latitude Service 缩写:IRLS。国际纬度快速服务
+International Satellite for Ionospheric Studies 缩写:ISIS。国际电离层科学卫星
+International Scientific Optical Network 缩写:ISON。国际光学监测网
+International Scientific Radio Union 缩写:ISRU。国际无线电科学联合会
+International Solar and Terrestrial Service 缩写:ISTS。国际日地服务
+International Space Station 缩写:ISS。国际空间站
+International Sun-Earth Explorer 缩写:ISEE。国际日地探测器
+International Telecommunication Union 缩写:ITU。国际电信联盟
+International Terrestrial Reference Frame 缩写:ITRF。国际地球参考架
+International Terrestrial Reference System 缩写:ITRS。国际地球参考系
+International Ultraviolet Explorer 缩写:IUE。国际紫外探测器
+International Union of Amateur Astronomers 缩写:IUAA。国际天文爱好者联合会
+International Union of Geodesy and Geophysics 缩写:IUGG。国际测地和地球物理联合会
+International Union of Radio Science 缩写:URSI。国际无线电科学联合会
+International Virtual Observatory Alliance 缩写:IVOA。国际虚拟天文台联盟
+International X-ray Observatory 缩写:IXO。国际X射线天文台
+International Year of Astronomy 2009 缩写:IYA2009。国际天文年2009
+International Years of the Quiet Sun 缩写:IQSY。国际太阳宁静年
+Interplanetary Kite-craft Accelerated by Radiation Of the Sun 缩写:IKAROS。太阳光帆行星际飞船; 伊卡洛斯号
+Interplanetary Monitoring Platform 缩写:IMP。行星际监测站
+Interplanetary Network 缩写:IPN。行星际观测网
+Interstellar Boundary Explorer 缩写:IBEX。星际边界探测器
+Interstellar object 缩写:ISO。星际天体
+Intraday variabilit 缩写:IDV。日内变化
+Intrometida 十字架增一
+Inuvik crater 伊努维克陨击坑
+Investigator 参宿
+Io 1、木卫一; 2、犊神星
+Iocaste 木卫二十四
+Ioffe crater 约费环形山
+Ionnina 天弁一
+Iota Aquarid meteor shower 宝瓶ι流星雨
+Iphigenia 祭神星
+Ir 全称:iridium。铱
+Irbit crater 伊尔比特陨击坑
+Irene 司宁星
+Irharen crater 伊尔赫兰陨击坑
+Iris 1、虹神号; 2、虹神星
+Iris Nebula 鸢尾星云
+Iritjinga 马尾三
+Irr Ⅰ galaxy Ⅰ型不规则星系
+Irr Ⅱ galaxy Ⅱ不规则型星系
+Isaac Newton Group 缩写:ING。牛顿望远镜群
+Isaac Newton Telescope 缩写:INT。INT牛顿望远镜
+Isaac Newton Telescope Photometric H-alpha Survey 缩写:IPHAS。牛顿望远镜Hα测光巡天
+Isaev crater 伊萨耶夫环形山
+Isara Valles 伊萨拉峡谷群
+Ishtar Terra 伊斯塔台地
+Isidis Dorsa 伊希斯山脊群
+Isidis Planitia 伊希斯平原
+Isidis Regio 伊希斯区
+Isil crater 伊西尔陨击坑
+Isis 育神星
+Ismenia Patera 伊斯墨纽斯山口
+Ismeniae Fossae 伊斯墨纽斯堑沟群
+Ismenius Cavus 伊斯墨纽斯凹地
+Ismenius Lacus 伊斯墨纽斯湖
+Isonoe 木卫二十六
+Israel-Robinson theorem 伊斯雷尔-鲁宾逊定理
+Issedon Paterae 伊塞顿山口群
+Issedon Tholus 伊塞顿山丘
+Ister Chaos 伊斯特混杂地
+Istituto Nazionale di Astrofisica 缩写:INAF。意大利国家天体物理研究所
+Istituto Nazionale di Fisica Nucleare 缩写:INFN。国家核物理研究院
+Istok crater 伊斯托克陨击坑
+Italian Virtual Observatory 缩写:Vobs.it。意大利虚拟天文台
+Ithaca Chasma 伊萨卡深谷
+Itokawa 丝川; 糸川
+Ituxi Vallis 伊图希峡谷
+Ius Chasma 尤斯深谷
+Ius Labes 尤斯坡地
+Ius Mensa 尤斯桌山
+Ixion 伊克西翁
+Izamal crater 伊萨马尔陨击坑
+Izar 梗河一
+Izendy crater 伊津德陨击坑
+Izola Mensa 伊佐拉桌山
+Izola crater 伊佐拉陨击坑
+J-magnitude J星等
+J-type star J型星
+J-value J值
+J. Herschel crater 约·赫歇尔环形山
+JAC 全称:Joint Astronomy Centre。联合天文中心
+JASMINE 全称:Japan Astrometry Satellite Mission for INfrared Exploration。日本红外天体测量卫星任务; 茉莉卫星
+JAXA 全称:Japan Aerospace Exploration Agency。日本航天局
+JBIS 全称:Journal of The British Interplanetary Society。英国行星际学会志
+JCMT 全称:James Clerk Maxwell Telescope。麦克斯韦望远镜
+JD 全称:Julian date。儒略日期
+JDEM 全称:Joint Dark Energy Mission。联合暗能量任务
+JED 全称:Julian ephemeris date。儒略历书日期
+JEM-EUSO 全称:Extreme Universe Space Observatory onboard Japanese Experiment Module。日本实验舱载极端宇宙空间天文台
+JIMO 全称:Jupiter Icy Moons Orbiter。冰质木卫轨道飞行器
+JKT 全称:Jacobus Kapteyn Telescope。卡普坦望远镜
+JOCR 全称:Joint Observatory for Cometary Research。彗星研究联合天文台
+JOSO 全称:Joint Organization of Solar Observation。太阳联合观测组织
+JP 1、全称:Jodrell Bank Pulsar。焦德雷班克脉冲星; 2、全称:Julian period。儒略周期
+JPL 全称:Jet Propulsion Laboratory。喷气推进实验室
+JPL Julian calendar JPL 儒略历
+JSC 全称:Johnson Space Center。约翰逊空间中心
+JSPS 全称:Japan Society for the Promotion of Science。日本学术振兴会
+JST 全称:Japan Standard Time。日本标准时
+JUICE 全称:Jupiter Icy moons Explorer。冰质木卫探测器
+JVLA 全称:Karl G. Jansky Very Large Array。央斯基甚大阵
+JVO 全称:Japanese Virtual Observatory。日本虚拟天文台
+JWST 全称:James Webb Space Telescope。韦布空间望远镜
+Jabbah 键闭
+Jabhat al Akrab 钩钤一 和 钩钤二
+Jackson crater 杰克逊环形山
+Jacobi constant 雅可比常数
+Jacobi crater 雅可比环形山
+Jacobi ellipsoid 雅可比椭球
+Jacobi identity 雅可比恒等式
+Jacobi limit 雅可比极限
+Jacobi's integral 雅可比积分
+Jacobi-type bar 雅可比型棒
+Jacobus Kapteyn Telescope 缩写:JKT。卡普坦望远镜
+Jaffe profile 贾菲轮廓
+Jain calendar 耆那历
+Jaisalmer crater 杰伊瑟尔梅尔陨击坑
+Jal crater 贾尔陨击坑
+Jama crater 杰迈陨击坑
+James Clerk Maxwell Telescope 缩写:JCMT。麦克斯韦望远镜
+James Webb Space Telescope 缩写:JWST。韦布空间望远镜
+Jampur crater 坚布尔陨击坑
+Jamuna 贾木纳
+Jansky crater 央斯基环形山
+Jansky noise 央斯基噪声
+Janssen crater 1、让桑环形山; 2、让桑陨击坑
+Janus 土卫十
+Jaotsungi 饶宗颐
+Japan Aerospace Exploration Agency 缩写:JAXA。日本航天局
+Japan Astrometry Satellite Mission for INfrared Exploration 缩写:JASMINE。日本红外天体测量卫星任务; 茉莉卫星
+Japan Society for the Promotion of Science 缩写:JSPS。日本学术振兴会
+Japan Standard Time 缩写:JST。日本标准时
+Japanese Virtual Observatory 缩写:JVO。日本虚拟天文台
+Japanese era 日本纪元
+Japetus 土卫八
+Jarnsaxa 土卫五十
+Jarry-Desloges crater 雅里-德洛热陨击坑
+Jason crater 伊阿宋环形山
+Jean-François Gerbillon 张诚
+Jeanne crater 珍妮环形山
+Jeans crater 1、金斯环形山; 2、金斯陨击坑
+Jeans criterion 金斯判据
+Jeans equation 金斯方程
+Jeans escape formula 金斯逃逸公式
+Jeans instability 金斯不稳定性
+Jeans length 金斯长度
+Jeans mass 金斯质量
+Jeans model 金斯模型
+Jeans rate 金斯速率
+Jeans spheroid 金斯球体
+Jeans swindle 金斯假说
+Jeans theorem 金斯定理
+Jeans velocity 金斯速度
+Jeans wavelength 金斯波长
+Jeans wavenumber 金斯波数
+Jed Prior 梁; 天市右垣九
+Jeffreys Gap 杰弗里斯环缝
+Jeki crater 杰吉陨击坑
+Jen crater 真城陨击坑
+Jenner crater 詹纳环形山
+Jet Propulsion Laboratory 缩写:JPL。喷气推进实验室
+Jewel Box 宝盒星团
+Jewish calendar 犹太历
+Jewish era 犹太纪元
+Jezero Mons 耶泽罗山
+Jezero crater 耶泽罗陨击坑
+Jezža crater 杰兹扎陨击坑
+Jhongda 中大
+Jia-Xiang Zhang 张家祥
+Jia-xiang 张家祥
+Jiangxi 江西
+Jiji crater 集集陨击坑
+Jijiga crater 吉吉加陨击坑
+Jilin 吉林
+Jilin meteorite 吉林陨星
+Jiling meteorite 吉林陨星
+Jinxiuzhonghua 锦绣中华
+Jinyilian 金怡濂
+Jinyong 金庸
+Jishui 北河增二
+Joachim Bouvet 白晋
+Job's Coffin 乔布之棺
+Jodrell Bank Pulsar 缩写:JP。焦德雷班克脉冲星
+Jodrell crater 焦德雷陨击坑
+Johann Terrenz 邓玉函
+Johanna 约翰娜
+Johannesburg crater 约翰内斯堡陨击坑
+John Adam Schall Von Bel 汤若望
+John Fryer 傅兰雅
+Johnson Space Center 缩写:JSC。约翰逊空间中心
+Johnson color system 约翰逊颜色系统
+Johnson noise 约翰逊噪声
+Johnson photometry 约翰逊测光
+Johnson-Morgan photometric system 约翰逊-摩根测光系统
+Johnson-Morgan photometry 约翰逊-摩根测光
+Johnson-Morgan system 约翰逊-摩根系统
+Johnstown crater 约翰斯敦陨击坑
+Joint Astronomy Centre 缩写:JAC。联合天文中心
+Joint Dark Energy Mission 缩写:JDEM。联合暗能量任务
+Joint Observatory for Cometary Research 缩写:JOCR。彗星研究联合天文台
+Joint Organization of Solar Observation 缩写:JOSO。太阳联合观测组织
+Jojutla crater 霍胡特拉陨击坑
+Joliot crater 约里奥环形山
+Joly crater 乔利陨击坑
+Jones crater 琼斯陨击坑
+Jordan elementary time 约旦单元时间
+Jori crater 条理陨击坑
+Jose Ribeiro 李拱辰
+Joseph Bernard d’Almeida 索德超
+Joseph d’Espinha 高慎思
+Josephson effect 约瑟夫森效应
+Josephson junction mixer 约瑟夫森结混频器
+Joule crater 焦耳环形山
+Joule dissipation 焦耳耗散
+Joule energy 焦耳能
+Joule heat 焦耳热
+Joule heating 焦耳致热
+Journal of Astrophysics and Astronomy 天体物理学与天文学杂志
+Journal of Cosmology and Astroparticle Physics 宇宙学与天体粒子物理学学报
+Journal of Geophysical Research 地球物理学研究杂志
+Journal of The British Interplanetary Society 缩写:JBIS; Journal of the BIS。英国行星际学会志
+Journal of The Korean Astronomical Society 韩国天文学会志
+Journal of the BIS 全称:Journal of The British Interplanetary Society。英国行星际学会志
+Jovian atmosphere 木星大气
+Jovian burst 木星暴
+Jovian exoplanet 系外类木行星
+Jovian family 木族
+Jovian ionosphere 木星电离层
+Jovian magnetosphere 木星磁层
+Jovian planet 类木行星
+Jovian plasmasphere 木星等离子层
+Jovian radiation belt 木星辐射带
+Jovian radio burst 木星射电暴
+Jovian radio radiation 木星射电
+Jovian ring 木星环
+Jovian ringlet 木星细环
+Jovian satellite 木卫
+Jovian seismology 木震学
+Jovis Fossae 朱维斯堑沟群
+Jovis Tholus 朱维斯山丘
+Juewa 瑞华星
+Jules Verne crater 儒勒·凡尔纳环形山
+Julia 信女星
+Julian calendar 儒略历
+Julian century 儒略世纪
+Julian date 缩写:JD。儒略日期
+Julian day 儒略日
+Julian day calendar 儒略日历
+Julian day number 儒略日数
+Julian ephemeris century 儒略历书世纪
+Julian ephemeris date 缩写:JED。儒略历书日期
+Julian epoch 儒略历元
+Julian era 儒略纪元
+Julian number 儒略日数
+Julian period 缩写:JP。儒略周期
+Julian year 儒略年
+Juliet 天卫十一
+Julius Caesar crater 儒略·凯撒环形山
+Jumla crater 久姆拉陨击坑
+June Lyrid meteor shower 六月天琴流星雨
+June Solstice 夏至
+June solstice 夏至点
+Juno 1、婚神星; 2、朱诺号
+Jupiter 1、岁星; 2、木星
+Jupiter Icy Moons Orbiter 缩写:JIMO。冰质木卫轨道飞行器
+Jupiter Icy moons Explorer 缩写:JUICE。冰质木卫探测器
+Jupiter atmosphere 木星大气
+Jupiter burst 木星暴
+Jupiter comet family 木族彗星
+Jupiter cycle 岁星纪年
+Jupiter ionosphere 木星电离层
+Jupiter magnetosphere 木星磁层
+Jupiter plasmasphere 木星等离子层
+Jupiter radiation belt 木星辐射带
+Jupiter radio burst 木星射电暴
+Jupiter radio radiation 木星射电
+Jupiter's Ghost 木魂星云
+Jupiter's asteroid family 木族小行星
+Jupiter's comet family 木族彗星
+Jupiter's family 木族
+Jupiter's family of comets 木族彗星
+Jupiter's ring 木星环
+Jupiter's ringlet 木星细环
+Jupiter's satellite 木卫
+Jupiter-Trojan asteroid 木星-特洛伊族小行星
+Jupiter-crosser 越木天体
+Jupiter-crossing asteroid 越木小行星
+Jupiter-like exoplanet 系外类木行星
+Jupiter-type comet 木族彗星
+Justus Doolittle 卢公明
+Juventae Cavi 青春凹地群
+Juventae Chasma 青春深谷
+Juventae Dorsa 青春山脊群
+Juventae Fons 青春泉
+Juventae Mensa 青春桌山
+Juza 上辅; 紫微右垣三
+Jy 全称:jansky。央
+Jörn crater 约恩陨击坑
+K 1、全称:kelvin。开; 2、全称:potassium。钾
+K band K波段
+K component K成分
+K corona K冕
+K coronameter K冕光度计
+K doublet K双重线
+K dwarf K型矮星
+K giant K型巨星
+K giant variable 缩写:KGV。K型变光巨星
+K line K线
+K star K型星
+K subdwarf K型亚矮星
+K subgiant K型亚巨星
+K supergiant K型超巨星
+K'atun 卡顿
+K'in 金
+K-S regularization 全称:Kustaanheimo-Stiefel regularization。K-S正规化
+K-S test 全称:Kolmogorov-Smirnov test。科尔莫戈罗夫-斯米尔诺夫检验
+K-capture K俘获
+K-correction K改正
+K-doubling K双重性
+K-edge K限
+K-effect K效应
+K-magnitude K星等
+K-shell K层
+K-term K项
+K-type star K型星
+KAGRA 全称:Kamioka Gravitational wave detector。神冈引力波探测器
+KAGUYA 缩写:SELENE。月球学与工程探测器; 月亮女神号
+KAM theorem 全称:Kolmogorov-Arnold-Moser theorem。KAM定理
+KAO 全称:Kuiper Airborne Observatory。柯伊伯机载天文台
+KBO 全称:Kuiper belt object。柯伊伯带天体
+KDA 全称:kinematic distance ambiguity。运动学距离模糊
+KDP crystal 全称:Potassium Dihydrogen Phosphate crystal。KDP晶体
+KGV 全称:K giant variable。K型变光巨星
+KID 全称:kinetic inductance detector。动态电感探测器
+KL Nebula 全称:Kleinmann-Low Nebula。克莱因曼-洛星云; KL星云
+KL method 全称:Karhunen-Loeve method。卡尔胡宁-勒夫方法; KL 方法
+KL object 全称:Kleinmann-Low object。克莱因曼-洛天体; KL天体
+KL source 全称:Kleinmann-Low source。克莱因曼-洛源; KL源
+KM matrix 全称:Kobayashi-Maskawa matrix。小林-益川矩阵
+KM3NeT 全称:Cubic Kilometre Neutrino Telescope。立方千米中微子望远镜
+KPNO 全称:Kitt Peak National Observatory。基特峰国家天文台
+KREEP norite 克里普岩
+KS 全称:Kolmogorov-Smirnov test。科尔莫戈罗夫-斯米尔诺夫检验, KS检验
+KSC 全称:Kennedy Space Center。肯尼迪空间中心
+KSZ 全称:Catalogue of Faint Stars。暗星星表; 暗星表
+KVO 全称:Korean Virtual Observatory。韩国虚拟天文台
+Ka band Ka 波段
+Kachina Chasmata 克奇纳深谷
+Kachug crater 卡丘格陨击坑
+Kaff 王良一
+Kaffaljidhma 天囷八
+Kagoshima crater 鹿儿岛陨击坑
+Kagul crater 卡胡尔陨击坑
+Kaifeng 开封
+Kaiser crater 凯泽陨击坑
+Kaiser effect 凯泽效应
+Kaitain 外屏七
+Kaj crater 卡伊陨击坑
+Kakinchan 陈嘉键
+Kaknú Fossa 卡努沟
+Kakori crater 加戈里陨击坑
+Kalba crater 凯勒巴陨击坑
+Kale 木卫三十七
+Kaliningrad crater 加里宁格勒陨击坑
+Kallichore 木卫四十四
+Kalliope 司赋星
+Kalman filter 卡尔曼滤波器
+Kalman filter theory 卡尔曼滤波理论
+Kalnajs disk 卡纳斯盘
+Kalocsa crater 考洛乔陨击坑
+Kalpin crater 柯坪陨击坑
+Kaluza-Klein particle 卡卢察-克莱因粒子
+Kaluza-Klein theory 卡卢察-克莱因理论
+Kalyke 木卫二十三
+Kalypso 岛神星
+Kamativi crater 卡马蒂维陨击坑
+Kamensk crater 卡缅斯克陨星坑
+Kamerlingh Onnes crater 开默林·昂内斯环形山
+Kamioka Gravitational wave detector 缩写:KAGRA。神冈引力波探测器
+Kamloops crater 坎卢普斯陨击坑
+Kamnik crater 卡姆尼克陨击坑
+Kampot crater 贡布陨击坑
+Kanab crater 卡纳布陨击坑
+Kandi crater 康迪陨击坑
+Kane crater 凯恩环形山
+Kang 亢宿一
+Kankossa crater 康科萨陨击坑
+Kansk crater 坎斯克陨击坑
+Kant crater 康德环形山
+Kant theory 康德学说
+Kant-Laplace nebular theory 康德-拉普拉斯星云说
+Kant-Laplace theory 康德-拉普拉斯学说
+Kantang crater 干当陨击坑
+Kantowski-Sachs solution 康托斯基-萨克斯解
+Kaohsiung 高雄
+Kaokuen 高锟
+Kaon κ介子
+Kaporo crater 卡波罗陨击坑
+Kappa Crucis Cluster 南十字κ星团
+Kappa Cygnid meteor shower 天鹅κ流星雨
+Kappa mechanism κ机制
+Kapteyn Astronomical Laboratory 卡普坦天文实验室
+Kapteyn Region 卡普坦天区
+Kapteyn Selected Area 卡普坦选区
+Kapteyn Telescope 卡普坦望远镜
+Kapteyn Universe 卡普坦宇宙
+Kapteyn's star 卡普坦星
+Kara crater 卡拉河陨星坑
+Karakul crater 卡拉库尔湖陨星坑
+Karatepe 卡拉泰佩地区
+Kardashev scale 卡尔达肖夫指数
+Karhunen-Loeve method 缩写:KL method。卡尔胡宁-勒夫方法; KL 方法
+Kari 土卫四十五
+Karl G. Jansky Very Large Array 缩写:JVLA。央斯基甚大阵
+Karl-Schwarzschild Observatory 施瓦西天文台
+Karpinsk crater 卡尔平斯克陨击坑
+Karpinskiy crater 卡尔平斯基环形山
+Karratha crater 卡拉萨陨击坑
+Karrer crater 卡勒环形山
+Karshi crater 卡尔希陨击坑
+Kartabo crater 卡塔博陨击坑
+Karzok crater 克尔佐克陨击坑
+Kasabi crater 卡萨比陨击坑
+Kasei Valles 卡塞峡谷群
+Kashimamachi Station 鹿岛射电天文站
+Kashira crater 卡希拉陨击坑
+Kasimov crater 卡西莫夫陨击坑
+Kasner solution 卡斯纳解
+Kasra crater 基斯拉陨击坑
+Kassandra 见神星
+Katoomba crater 卡通巴陨击坑
+Kaup crater 考普陨击坑
+Kaus Australis 箕宿三
+Kaus Borealis 斗宿二
+Kaus Media 箕宿二
+Kaus Meridionalis 箕宿二
+Kaw crater 科镇陨击坑
+Kayne crater 卡内陨击坑
+Kazan University Observatory 喀山大学天文台
+Ke Kouan 骑官四
+Ke Kwan 骑官四
+Keck Interferometer 凯克干涉仪
+Keck Ⅰ Telescope 凯克望远镜Ⅰ
+Keck Ⅱ Telescope 凯克望远镜Ⅱ
+Keeler Gap 基勒环缝
+Keeler crater 1、基勒环形山; 2、基勒陨击坑
+Keid 九州殊口增七; 九州殊口增十一
+Kekulé crater 凯库勒环形山
+Keller-Meyerott opacity 凯勒-麦耶洛特不透明度
+Kellner eyepiece 凯尔纳目镜
+Kellner ocular 凯尔纳目镜
+Kelvin contraction 开尔文收缩
+Kelvin scale 开尔文温标
+Kelvin temperature scale 开氏温标
+Kelvin time scale 开氏时标
+Kelvin's circulation theorem 开尔文环流定理
+Kelvin-Helmholtz contraction 开尔文-亥姆霍兹收缩
+Kelvin-Helmholtz instability 开尔文-亥姆霍兹不稳定性
+Kelvin-Helmholtz mechanism 开尔文-亥姆霍兹机制
+Kelvin-Helmholtz time scale 开尔文-亥姆霍兹时标
+Kem' crater 凯姆陨击坑
+Kemble's Cascade 甘伯串珠
+Kemurdzhian crater 克穆尔迪安陨击坑
+Kenge crater 肯盖陨击坑
+Kennedy Space Center 缩写:KSC。肯尼迪空间中心
+Kennelly-Heaviside layer 肯内利-亥维塞层
+Kennicutt-Schmidt law 肯尼科特-施密特定律
+Kepler 开普勒
+Kepler crater 1、开普勒环形山; 2、开普勒陨击坑
+Kepler element 开普勒根数
+Kepler ellipse 开普勒椭圆
+Kepler equation 开普勒方程
+Kepler mission 开普勒计划
+Kepler motion 开普勒运动
+Kepler orbit 开普勒轨道
+Kepler potential 开普勒势
+Kepler problem 开普勒问题
+Kepler's disk 开普勒盘
+Kepler's equation 开普勒方程
+Kepler's law 开普勒定律
+Kepler's nova 开普勒新星
+Kepler's star 开普勒星
+Kepler's supernova 开普勒超新星
+Keplerian disk 开普勒盘
+Keplerian motion 开普勒运动
+Keplerian orbit 开普勒轨道
+Keplerian region 开普勒区
+Keplerian rotation 开普勒自转
+Keplerian shear 开普勒剪切
+Keplerian speed 开普勒速度
+Keplerian telescope 开普勒望远镜
+Keplerian velocity 开普勒速度
+Kerberos 冥卫四
+Keren crater 克伦陨击坑
+Kerr black hole 克尔黑洞
+Kerr metric 克尔度规
+Kerr-Newman black hole 克尔-纽曼黑洞
+Kerr-Newman metric 克尔-纽曼度规
+Ketu 计都
+Keul' crater 克乌利陨击坑
+Keurusselkä crater 凯乌鲁塞尔凯湖陨星坑
+Keyhole Nebula 钥匙孔星云
+Keystone 拱顶石
+Khad Posterior 觜宿三
+Khad Prior 觜宿二
+Khambalia 亢宿四
+Khanpur crater 汗布尔陨击坑
+Khare crater 卡雷坑
+Kharkov University Observatory 哈尔科夫大学天文台
+Kholm crater 霍尔姆陨击坑
+Khujirt crater 库热特陨击坑
+Khurli crater 胡尔利陨击坑
+Khvol'son crater 赫沃尔松环形山
+Kiang 江涛
+Kiangsu 江苏
+Kibal'chich crater 基巴利契奇环形山
+Kibble mechanism 基布尔机制
+Kibidango crater 吉备团子坑
+Kibuye crater 基布耶陨击坑
+Kidinnu crater 西丹努斯环形山
+Kied 九州殊口增七; 九州殊口增十一
+Kiel University Radio Observatory 基尔大学射电天文台
+Kiess crater 基斯环形山
+Kiev University Observatory 基辅大学天文台
+Kiffa Australis 氐宿增七
+Kiffa Borealis 氐宿四
+Kifrī crater 基夫里陨击坑
+Kiladze crater 基拉泽坑
+Kilian Stumpf 纪理安
+Kilkhampton crater 基尔克汉普顿陨击坑
+Killing vector 基林矢量
+Kilmia crater 基勒米埃陨击坑
+Kimry crater 基姆雷陨击坑
+Kimura term 木村项
+Kin crater 金武陨击坑
+Kinda crater 金达陨击坑
+King crater 金环形山
+King law 金氏定律
+King model 金氏模型
+King profile 金氏轮廓
+King radius 金氏半径
+Kingston crater 金斯敦陨击坑
+Kinkora crater 金科拉陨击坑
+Kintaro crater 金太郎坑
+Kipini crater 基皮尼陨击坑
+Kircher crater 基歇尔环形山
+Kirchhoff law 基尔霍夫定律
+Kirchhoff's law 基尔霍夫定律
+Kirin meteorite 吉林陨星
+Kirkpatrick-Baez type X-ray telescope K-B型X射线望远镜
+Kirkwood Observatory 柯克伍德天文台
+Kirkwood crater 柯克伍德环形山
+Kirkwood gap 柯克伍德空隙
+Kirs crater 基尔斯陨击坑
+Kirsanov crater 基尔萨诺夫陨击坑
+Kisambo crater 基桑博陨击坑
+Kison Tholus 基森山丘
+Kita crater 基塔陨击坑
+Kitabpha 虚宿二
+Kitalpha 虚宿二
+Kitt Peak National Observatory 缩写:KPNO。基特峰国家天文台
+Kitt Peak Station of Steward Observatory 斯图尔德天文台基特峰站
+Kiviuq 土卫二十四
+Klaproth crater 克拉普罗特环形山
+Klein hypothesis 克莱因假说
+Klein-Alfven cosmology 克莱因-阿尔文宇宙学
+Klein-Alfven hypothesis 克莱因-阿尔文假说
+Klein-Nishina cross-section 克莱因-仁科截面
+Klein-Nishina formula 克莱因-仁科公式
+Kleinmann-Low Nebula 缩写:KL Nebula。克莱因曼-洛星云; KL星云
+Kleinmann-Low object 缩写:KL object。克莱因曼-洛天体; KL天体
+Kleinmann-Low source 缩写:KL source。克莱因曼-洛源; KL源
+Kleopatra 艳后星
+Klio 史神星
+Klotho 纺神星
+Klute crater 克卢特环形山
+Klymene 伴女星
+Klytia 芥神星
+Knife Edge Galaxy 刀锋星系
+Knobel crater 克诺贝尔陨击坑
+Knudsen number 克努森数
+Kobayashi-Maskawa matrix 缩写:KM matrix。小林-益川矩阵
+Kocab 帝; 北极二
+Koch crater 科赫环形山
+Kochab 帝; 北极二
+Kodaikanal Astrophysical Observatory 科代卡纳天体物理台
+Kodak astronomical plate 柯达天文底片
+Kodak plate 柯达底片
+Kodak spectroscopic plate 柯达光谱片
+Koga crater 科加陨击坑
+Kohlschütter crater 科尔许特环形山
+Kohoutek comet 科胡特克彗星
+Kok crater 科克陨击坑
+Kolmogorov spectrum 科莫戈洛夫频谱
+Kolmogorov turbulence 科莫戈洛夫湍流
+Kolmogorov-Arnold-Moser theorem 缩写:KAM theorem。KAM定理
+Kolmogorov-Smirnov test 1、缩写:K-S test。科尔莫戈罗夫-斯米尔诺夫检验; 2、缩写:KS。科尔莫戈罗夫-斯米尔诺夫检验, KS检验
+Kolobok crater 小圆饺坑
+Kolonga crater 科隆加陨击坑
+Komarov crater 科马罗夫环形山
+Kompaneets equation 科姆帕尼茨方程
+Kondratyuk crater 孔德拉秋克环形山
+Kong crater 孔城陨击坑
+Konig eyepiece 科尼希目镜
+Konkoly Observatory 康科利天文台
+Kontum crater 昆嵩陨击坑
+Kore 木卫四十九
+Korean Virtual Observatory 缩写:KVO。韩国虚拟天文台
+Kormendy relation 科曼蒂关系
+Korneforos 河中; 天市右垣一
+Kornephoros 河中; 天市右垣一
+Korolev crater 1、科罗廖夫环形山; 2、科罗廖夫陨击坑
+Koronas 全称:Complex Orbital Observations Near-Earth of Activity of the Sun。日冕系列卫星
+Koronas-Foton 日冕质子号卫星
+Koronis family 科朗尼斯族
+Koronis family, asteroids 科朗尼斯族, 小行星
+Korph crater 科尔夫陨击坑
+Korsch system 柯尔施光学系统
+Koshoba crater 科绍巴陨击坑
+Kostinskiy crater 科斯京斯基环形山
+Kostinsky effect 科斯京斯基效应
+Kotido crater 科蒂多陨击坑
+Kotka crater 科特卡陨击坑
+Kourou crater 库鲁撞击坑陨击坑
+Koval'sky crater 科瓦利斯基陨击坑
+Kovalevskaya crater 柯瓦列夫斯卡娅环形山
+Koy crater 科伊陨击坑
+Kozai resonance 古在共振
+Kozova crater 科佐瓦陨击坑
+Kp index Kp 指数
+Kr 全称:krypton。氪
+Krafft crater 克拉夫特环形山
+Kraken Mare 克拉肯海
+Kramers opacity 克拉默斯不透明度
+Kramers''law 克拉默斯定律
+Kramers-Kronig dispersion relation 克拉默斯-克勒尼希色散关系
+Krammers absorption cross-section 克拉默斯吸收截面
+Krasnoye crater 克拉斯诺耶陨击坑
+Krasovskiy crater 克拉索夫斯基环形山
+Kraus-type radio telescope 克劳斯型射电望远镜
+Kraz 轸宿四
+Kreutz group 克罗伊策群
+Kreutz group of comets 克罗伊策群
+Kreutz sungrazer 克罗伊策掠日彗星
+Kribi crater 克里比陨击坑
+Kris 马尾三
+Krishtofovich crater 克里什托福维奇陨击坑
+Kron electrographic camera 克朗电子照相机
+Kroupa initial mass function 克劳帕初始质量函数
+Krupac crater 克鲁帕茨陨击坑
+Kruskal diagram 克鲁斯卡图
+Kruskal metric 克鲁斯卡度规
+Kruskal-Szekeres coordinates 克鲁斯卡-塞凯赖什坐标
+Krzeminski's star 库兹明斯基星
+Ku band Ku波段
+Kuba crater 库巴陨击坑
+Kubrick Mons 库布里克山
+Kufra crater 库夫拉陨击坑
+Kufstein crater 库夫施泰因陨击坑
+Kugler crater 库格勒环形山
+Kuiper Airborne Observatory 缩写:KAO。柯伊伯机载天文台
+Kuiper Gap 柯伊伯环缝
+Kuiper belt 柯伊伯带
+Kuiper belt object 缩写:KBO。柯伊伯带天体
+Kuiper crater 柯伊伯陨击坑
+Kuiper disk 柯伊伯盘
+Kuiper's star 柯伊伯星
+Kuiper-Belt asteroid 柯伊伯带小行星
+Kuiper-Edgeworth belt 柯伊伯-埃奇沃思带
+Kular crater 库拉尔陨击坑
+Kulik crater 库利克环形山
+Kuma 天棓二
+Kumak crater 库马克陨击坑
+Kumara crater 库马拉陨击坑
+Kunes crater 许内斯陨击坑
+Kunlun 昆仑
+Kunming 昆明
+Kunowsky crater 库诺夫斯基陨击坑
+Kuo Shou Ching crater 郭守敬环形山
+Kuotzuhao 郭子豪
+Kurchatov crater 库尔恰托夫环形山
+Kurhah 天钩六
+Kushva crater 库什瓦陨击坑
+Kustaanheimo-Stiefel regularization 缩写:K-S regularization。K-S正规化
+Kutne's Nebula 库特勒星云
+Kuzmin disk 库兹敏盘
+Kvant 量子号
+Kwant 量子号
+Kwasan Observatory 花山天文台
+Kyokko 北极光
+Kähler potential 卡勒势
+Kästner crater 克斯特纳环形山
+Kāid crater 卡伊德陨击坑
+Kārūn Valles 卡伦峡谷群
+L band L波段
+L component L成分
+L corona L冕
+L dwarf L型矮星
+L galaxy L星系
+L star L型星
+L'Aigle meteorite shower 莱格勒陨石雨
+L* galaxy 特征亮度星系
+L-magnitude L星等
+L-shaped array L形阵
+L3CCD 全称:low light level CCD。微光CCD
+LAB 全称:Lyman-α blob。莱曼α团块
+LADEE 全称:Lunar Atmosphere and Dust Environment Explorer。月球大气及尘埃环境探测器
+LAE 全称:Lyman alpha emitter; Lyα emitter。莱曼α发射体
+LAGEOS 全称:LAser GEOdynamics Satellite。激光地球动力学卫星
+LAMA 全称:Large Liquid-Aperture Mirror Array。大口径液[态]镜[面]阵
+LAMOST 全称:Large Sky Area Multi-Object Fiber Spectroscopic Telescope; Guo Shoujing Telescope。大天区面积多目标光纤光谱天文望远镜; 郭守敬望远镜
+LAser GEOdynamics Satellite 缩写:LAGEOS。激光地球动力学卫星
+LBA 全称:Long Baseline Array。长基线望远镜阵
+LBG 全称:Lyman break galaxy。莱曼断裂星系
+LBI 1、全称:long baseline interferometer。长基线干涉仪; 2、全称:long baseline interferometry。长基线干涉测量
+LBT 全称:Large Binocular Telescope。LBT大型双筒望远镜
+LBTI 全称:Large Binocular Telescope Interferometer。大型双筒望远镜干涉仪
+LBV 全称:luminous blue variable。高光度蓝变星
+LCN 全称:Lyapunov characteristic number。李雅普诺夫特征数
+LCO 全称:Las Campanas Observatory。拉斯坎帕纳斯天文台
+LCROSS 全称:Lunar Crater Observation and Sensing Satellite。月球环形山观测与遥感卫星
+LCRS 全称:Las Campanas Redshift Survey。拉斯坎帕纳斯红移巡天
+LCVR 全称:liquid crystal variable retarder。液晶相位可变延迟器
+LDEF 全称:Long Duration Exposure Facility。长期曝露飞行器
+LDN 全称:Lynds' Catalogue of Dark Nebulae。林茨暗星云表
+LEM 全称:lunar excursion module。登月舱
+LEO 全称:low earth orbit。近地轨道
+LEP 全称:Large Electron Positron Collider。大型正负电子对撞机
+LERG 全称:low excitation radio galaxy。低激发射电星系
+LEST 全称:Large Earth-based Solar Telescope。大型地基太阳望远镜
+LF time and frequency 低频时频
+LF time and frequency dissemination 低频时频发播
+LFC 全称:laser frequency comb。激光频率梳
+LGS 3 Irregular Galaxy LGS 3 不规则星系
+LHA 全称:local hour-angle。地方时角
+LHAASO 1、全称:Large High Altitude Air Shower Observatory。高海拔宇宙线观测站; 2、全称:Large High Altitude Air Shower Observatory。高海拔宇宙线观测站
+LHC 全称:Large Hadron Collider。大型强子对撞机
+LIGO 全称:Laser Interferometer Gravitational-wave Observatory。激光干涉引力波观测台
+LIGO Scientific Collaboration 缩写:LSC。LIGO科学合作组织
+LINEAR 全称:Lincoln Near-Earth Object Research。林肯近地天体研究
+LINER 全称:low ionization nuclear emission-line region。低电离星系核
+LIR 全称:low intensity reciprocity。低强度倒易性
+LIRF 全称:low intensity reciprocity failure。低强度倒易性失效
+LIRG 全称:luminous infrared galaxy。亮红外星系
+LISA 全称:Laser Interferometer Space Antenna。空间激光干涉仪
+LLNL 全称:Lawrence Livermore National Laboratory。劳伦斯利物莫国家实验室
+LLR 全称:lunar laser ranging。激光测月
+LM 全称:lunar module。登月舱
+LMC 全称:Large Magellanic Cloud。大麦云; 大麦哲伦云
+LMC X-3 大麦云X-3
+LMT 1、全称:Large Millimeter Telescope。LMT大型毫米波望远镜; 2、全称:local mean time。地方平时
+LMXB 全称:low-mass X-ray binary。小质量X射线双星
+LMi 全称:Leo Minor。小狮座
+LNH 全称:Dirac's large-number hypothesis。狄拉克大数假说
+LO 全称:local oscillator。本振
+LOFAR 全称:Low Frequency Array。LOFAR低频阵
+LONEOS 全称:Lowell Observatory Near-Earth Object Search。洛厄尔近地天体搜索
+LPL 全称:Lunar and Planetary Laboratory。月球和行星实验室
+LPV 全称:long period variable。长周期变星
+LRG 全称:luminous red galaxy。亮红星系
+LRIS 全称:low resolution imaging spectrograph。低分辨率成像光谱仪
+LRN 全称:luminous red nova。亮红新星
+LRO 全称:Lunar Reconnaissance Orbiter。月球勘测轨道飞行器
+LRV 全称:Lunar Roving Vehicle。月球车
+LS coupling LS耦合
+LSB galaxy 全称:low surface-brightness galaxy。低面亮度星系; LSB星系
+LSC 全称:LIGO Scientific Collaboration。LIGO科学合作组织
+LSP 全称:lightest supersymmetric particle。最轻超对称粒子
+LSR 全称:local standard of rest。本地静止标准; 局域静止标准
+LSS 全称:large scale structure。大尺度结构
+LSST 1、全称:Large Synoptic Survey Telescope。大口径全天巡视望远镜; 2、全称:Legacy Survey of Space and Time。时空遗珍巡天
+LST 全称:local sidereal time。地方恒星时
+LT 1、全称:lag time。滞后时间; 2、全称:local time。地方时
+LTB model 全称:Lemaitre-Tolman-Bondi model。勒梅特-托尔曼-邦迪模型
+LTE 1、全称:local thermal equilibrium。局部热平衡; 2、全称:local thermodynamic equilibrium。局部热动平衡
+LTP 全称:lunar transient phenomenon。月球暂现现象
+LUT 1、全称:Lunar-based Ultraviolet Telescope。月基紫外天文望远镜; 2、全称:look-up table。对照表
+LZT 全称:Large Zenith Telescope。大型天顶望远镜
+La 全称:lanthanum。镧
+La Caille crater 拉卡耶环形山
+La Palma Observatory 拉帕尔玛天文台
+La Paz crater 拉巴斯陨击坑
+La Plata Observatory 拉普拉塔天文台
+La Pérouse crater 拉彼鲁兹环形山
+La Silla Observatory 拉西亚天文台
+La Superba 猎犬Y
+LaCoste pendulum 拉考斯特摆
+Labeatis Catenae 拉贝亚提斯坑链群
+Labeatis Fossae 拉贝亚提斯堑沟群
+Labeatis Mensa 拉贝亚提斯桌山
+Labeatis Mons 拉贝亚提斯山
+Labou Vallis 拉布峡谷
+Labria crater 拉布里亚陨击坑
+Labrum 翼宿七
+Labyrinthus 迷径沟网
+Lac 全称:Lacerta。蝎虎座
+Lacchini crater 拉基尼环形山
+Lace Nebula 花边星云
+Lacerta 缩写:Lac。蝎虎座
+Lacertid 缩写:BL Lac。蝎虎天体
+Lacework Nebula 花边星云
+Lacey-Cole merger rate 莱西-科尔并合率
+Lachute crater 拉许特陨击坑
+Lacus Aestatis 夏湖
+Lacus Autumni 秋湖
+Lacus Bonitatis 仁慈湖
+Lacus Doloris 忧伤湖
+Lacus Excellentiae 秀丽湖
+Lacus Felicitatis 幸福湖
+Lacus Gaudii 欢乐湖
+Lacus Hiemalis 冬湖
+Lacus Lenitatis 温柔湖
+Lacus Luxuriae 华贵湖
+Lacus Mortis 死湖
+Lacus Oblivionis 忘湖
+Lacus Odii 怨恨湖
+Lacus Perseverantiae 长存湖
+Lacus Solitudinis 孤独湖
+Lacus Somniorum 梦湖
+Lacus Spei 希望湖
+Lacus Temporis 时令湖
+Lacus Timoris 恐怖湖
+Lacus Veris 春湖
+Lada Terra 拉达台地
+Lade crater 拉德环形山
+Ladon Valles 拉冬峡谷群
+Laestrigon 莱斯特律贡
+Laestrygon 莱斯特律贡
+Laetitia 喜神星
+Laf crater 拉夫陨击坑
+Lagalla crater 拉加拉环形山
+Lagarto crater 拉加尔图陨击坑
+Lagoon Nebula 礁湖星云
+Lagrange bracket 拉格朗日括号
+Lagrange crater 拉格朗日环形山
+Lagrange invariant 拉格朗日不变量
+Lagrange parenthesis 拉格朗日括号
+Lagrange particular solution 拉格朗日特解
+Lagrange planetary equation 拉格朗日行星运动方程
+Lagrange point 拉格朗日点
+Lagrange's equation 拉格朗日方程
+Lagrange's planetary equation 拉格朗日行星运动方程
+Lagrangian 拉格朗日算子
+Lagrangian density 拉格朗日密度
+Lagrangian derivative 拉格朗日导数
+Lagrangian formulation 拉格朗日表达
+Lagrangian function 拉格朗日函数
+Lagrangian perturbation theory 拉格朗日扰动理论
+Lagrangian point 拉格朗日点
+Laitsaita 赖才达
+Lake Tai crater 太湖陨星坑
+Lakshmi Planum 吉祥天女高原
+Lalande 21185 拉朗德21185号星
+Lallemand electronic camera 拉勒芒电子照相机
+Lamarck crater 拉马克环形山
+Lamas crater 拉马斯陨击坑
+Lamb crater 兰姆环形山
+Lamb shift 兰姆位移
+Lambert albedo 朗伯反照率
+Lambert crater 兰贝特陨击坑
+Lambert equation 朗伯方程
+Lambert series 朗伯级数
+Lambert's law 朗伯定律
+Lamchiuying 林超英
+Lame constant 拉梅常数
+Lame elastic parameter 拉梅弹性参数
+Lame parameter 拉梅参数
+Lamont crater 1、拉蒙特环形山; 2、拉蒙特陨击坑
+Lampland crater 兰普兰德陨击坑
+Lamé crater 拉梅环形山
+Land crater 兰德陨击坑
+Landau crater 朗道环形山
+Landau damping 朗道阻尼
+Landau energy level 朗道能级
+Landau length 朗道长度
+Lande factor 朗德因子
+Lande g value 朗德g值
+Lande splitting factor 朗德劈裂因子
+Lane crater 莱恩环形山
+Lane-Emden equation 莱恩-埃姆登方程
+Langemak crater 朗格马克环形山
+Langevin crater 朗之万环形山
+Langevin theory 朗之万定理
+Langley crater 兰利环形山
+Langmuir crater 朗缪尔环形山
+Langmuir frequency 朗缪尔频率
+Langmuir oscillation 朗缪尔振荡
+Langmuir probe 朗缪尔测量仪
+Langmuir wave 朗缪尔波
+Langmuir wave instability 朗缪尔波不稳定性
+Langmuir wave turbulence 朗缪尔波湍动
+Langrenus crater 朗格伦环形山
+Langtang crater 伦格滕格陨击坑
+Langyatai 琅琊台
+Laniakea 拉尼亚凯亚
+Laomedeia 海卫十二
+Laotse 老子
+Laplace Gap 拉普拉斯环缝
+Laplace azimuth 拉普拉斯方位角
+Laplace coefficient 拉普拉斯系数
+Laplace plane 拉普拉斯平面
+Laplace point 拉普拉斯点
+Laplace resonance 拉普拉斯共振
+Laplace theory 拉普拉斯学说
+Laplace transform 拉普拉斯变换
+Laplace vector 拉普拉斯矢量
+Laplace's equation 拉普拉斯方程
+Laplace's nebular hypothesis 拉普拉斯星云假说
+Laplacian 拉普拉斯算子
+Laplacian plane 拉普拉斯平面
+Laplacian surface 拉普拉斯面
+Lappajärvi crater 拉帕湖陨星坑
+Lapri crater 拉普里陨击坑
+Lar crater 拉尔陨击坑
+Larawag 尾宿二
+Large Altazimuth Telescope 缩写:BTA。大型地平装置望远镜
+Large Binocular Telescope 缩写:LBT。LBT大型双筒望远镜
+Large Binocular Telescope Interferometer 缩写:LBTI。大型双筒望远镜干涉仪
+Large Earth-based Solar Telescope 缩写:LEST。大型地基太阳望远镜
+Large Electron Positron Collider 缩写:LEP。大型正负电子对撞机
+Large Field Multi-Color Sky Survey 大视场多色巡天
+Large Hadron Collider 缩写:LHC。大型强子对撞机
+Large High Altitude Air Shower Observatory 1、缩写:LHAASO。高海拔宇宙线观测站; 2、缩写:LHAASO。高海拔宇宙线观测站
+Large Liquid-Aperture Mirror Array 缩写:LAMA。大口径液[态]镜[面]阵
+Large Magellanic Cloud 缩写:LMC。大麦云; 大麦哲伦云
+Large Millimeter Telescope 缩写:LMT。LMT大型毫米波望远镜
+Large Sky Area Multi-Object Fiber Spectroscopic Telescope 缩写:LAMOST。大天区面积多目标光纤光谱天文望远镜; 郭守敬望远镜
+Large Synoptic Survey Telescope 缩写:LSST。大口径全天巡视望远镜
+Large Zenith Telescope 缩写:LZT。大型天顶望远镜
+Larissa 海卫七
+Larmor crater 拉莫尔环形山
+Larmor frequency 拉莫尔频率
+Larmor precession 拉莫尔进动
+Larmor radius 拉莫尔半径
+Las Campanas Observatory 缩写:LCO。拉斯坎帕纳斯天文台
+Las Campanas Redshift Survey 缩写:LCRS。拉斯坎帕纳斯红移巡天
+Laser Interferometer Gravitational-wave Observatory 缩写:LIGO。激光干涉引力波观测台
+Laser Interferometer Space Antenna 缩写:LISA。空间激光干涉仪
+Lassell crater 拉塞尔陨击坑
+Lassell ring 拉塞尔环
+Lasso 娄宿
+Lasswitz crater 拉斯维茨陨击坑
+Lau crater 劳氏陨击坑
+Laue crater 劳厄环形山
+Laue lens telescope 劳厄透镜望远镜
+Lauritsen crater 劳里森环形山
+Lautakkin 刘德健
+Lautakshing 刘德诚
+Lavoisier crater 拉瓦锡环形山
+Lawrence Livermore National Laboratory 缩写:LLNL。劳伦斯利物莫国家实验室
+Layl Cavus 莱尔凹地
+Laylá crater 莱拉陨击坑
+Layzer-Irvine equation 雷泽-欧文方程
+Lb variable Lb 型变星
+Lc variable Lc 型变星
+Le Gentil crater 勒让蒂环形山
+Le Monnier crater 勒莫尼耶环形山
+Le Verrier crater 勒威耶陨击坑
+Leander McCormick Observatory 利安德·麦考密克天文台
+Lebedev crater 列别捷夫环形山
+Lebedinskiy crater 列别金斯基环形山
+Lebesgue integral 勒贝格积分
+Lebu crater 莱布陨击坑
+Leda 1、卵神星; 2、木卫十三
+Lederberg crater 莱德伯格陨击坑
+Lee model 李模型
+Lee wave 李波
+Lee-Weinberg limit 李-温伯格极限
+Leechaohsi 李诏熙
+Leesuikwan 李瑞均
+Leetsungdao 李政道
+Leeuwenhoek crater 列文虎克环形山
+Legacy Survey of Space and Time 缩写:LSST。时空遗珍巡天
+Legendre crater 勒让德环形山
+Legendre polynomial 勒让德多项式
+Legs 奎宿
+Lehmann crater 勒曼环形山
+Leibnitz crater 莱布尼兹环形山
+Leibniz-Instituts für Astrophysik Potsdam 缩写:AIP。波茨坦天体物理研究所
+Leiden University Observatory 莱顿大学天文台
+Leighton crater 莱顿陨击坑
+Leipzig University Observatory 莱比锡大学天文台
+Leleque crater 莱莱克陨击坑
+Lemaitre cosmological model 勒梅特宇宙学模型
+Lemaitre cosmology 勒梅特宇宙学
+Lemaitre model 勒梅特模型
+Lemaitre regularization 勒梅特正规化
+Lemaitre universe 勒梅特宇宙
+Lemaitre-Tolman-Bondi model 缩写:LTB model。勒梅特-托尔曼-邦迪模型
+Lemaître crater 勒梅特环形山
+Lemgo crater 莱姆戈陨击坑
+Lemuria 利莫里亚[古大陆]
+Lennard-Jones potential 伦纳德-琼斯势
+Lense-Thirring effect 伦泽-蒂林效应
+Lents crater 楞次环形山
+Lenya crater 莱尼亚陨击坑
+Lenz crater 楞次环形山
+Lenz law 楞次定律
+Leo 1、全称:Leo。狮子宫; 鹑火; 午宫; 2、全称:Leo。狮子座; 3、1、缩写:Leo。狮子宫; 鹑火; 午宫; 2、缩写:Leo。狮子座
+Leo Doublet 狮子双重星系
+Leo I galaxy 狮子座I星系
+Leo Minor 缩写:LMi。小狮座
+Leo Triplet 狮子三重星系
+Leonid meteor shower 狮子流星雨
+Leonids 狮子流星群
+Leopold-Figl Observatory 利奥波德-菲格天文台
+Lep 全称:Lepus。天兔座
+Lepus 缩写:Lep。天兔座
+Lesath 尾宿九
+Leschath 尾宿九
+Lesser Cold 小寒
+Lesser Fullness 小满
+Lesser Heat 小暑
+Lethe Vallis 利希峡谷
+Leto 明神星
+Leto family 明神星族
+Letronne crater 勒特罗纳环形山
+Leucippus crater 留基伯环形山
+Leuk crater 洛伊克陨击坑
+Leukothea 沉神星
+Leuschner Observatory 劳希纳天文台
+Leverrier ring 勒威耶环
+Levi-Civita crater 列维-齐维塔环形山
+Levi-Civita pseudotensor 列维-奇维塔赝张量
+Levi-Civita regularization 列维-齐维塔正规化
+Lexell crater 莱克塞尔环形山
+Lexell's comet 莱克塞尔彗星
+Lexington crater 列克星敦陨击坑
+Ley crater 莱伊环形山
+Lhasa 拉萨
+Li 全称:lithium。锂
+Li Fan crater 李梵陨击坑
+Li abundance 全称:lithium abundance。锂丰度
+Li star 全称:lithium star。锂星
+Li-poor star 全称:lithium poor star。贫锂星
+Li-rich star 全称:lithium rich star。富锂星
+Liais crater 利艾陨击坑
+Liaoning 辽宁
+Liaoyenting 廖彦婷
+Lib 1、全称:Libra。天秤宫; 寿星; 辰宫; 2、全称:Libra。天秤座
+Libai 李白
+Liberta crater 利伯塔陨击坑
+Libertad crater 利伯塔德陨击坑
+Libertas 河鼓增八
+Liberté arc 自由环弧
+Libra 1、缩写:Lib。天秤宫; 寿星; 辰宫; 2、缩写:Lib。天秤座
+Librids 天秤流星群
+Libya 利比亚
+Libya Montes 利比亚山脉
+Lick Observatory 利克天文台
+Lick catalogue 利克星表
+Lick index 利克指数
+Licus Vallis 利库斯峡谷
+Lidaksum 李达三
+Lie derivative 李导数
+Lie series 李级数
+Lie transformation 李变换
+Liebig crater 李比希环形山
+Lienard-Wiechert potential 李纳-维谢尔势
+Ligeia Mare 丽姬娅海
+Light Snow 小雪
+Lijiang 丽江
+Lilii Borea 胃宿二
+Lilith 月孛
+Liloketai 李陆大
+Limber equation 林伯方程
+Limber hypothesis 林伯假说
+Limit of Heat 处暑
+Limporyen 林百欣
+Linchen 林晨
+Linchinghsia 林青霞
+Lincoln Near-Earth Object Research 缩写:LINEAR。林肯近地天体研究
+Lindblad crater 林德布拉德环形山
+Lindblad dispersion orbit 林德布拉德弥散轨道
+Lindblad radius 林德布拉德半径
+Lindblad resonance 林德布拉德共振
+Lindblad's ring 林德布拉德环
+Linde-Weinberg bound 林德-温伯格约束
+Lindenau crater 林德瑙环形山
+Lindstedt equation 林德斯塔方程
+Lingchen 凌晨
+Linpu crater 临浦陨击坑
+Lins crater 林斯陨击坑
+Lintingnien 林庭年
+Linus 赋卫一
+Linyuanpei 林元培
+Linzexu 林则徐
+Liouville equation 刘维尔方程
+Liouville theorem 刘维尔定理
+Lipany crater 利帕尼陨击坑
+Lipei 李佩
+Lipik crater 利皮克陨击坑
+Lippmann crater 李普曼环形山
+Lipschitz condition 利普希茨条件
+Lipskiy crater 利普斯基环形山
+Liris Valles 利里斯峡谷群
+Lisboa crater 里斯本陨击坑
+Lisiguang 李四光
+Lismore crater 利斯莫尔陨击坑
+Lissajous figure 利萨茹图形
+Lissajous pattern 利萨茹图
+Lite satellite for the studies of B-mode polarization and Inflation from cosmic background Radiation Detection 缩写:LiteBIRD。宇宙背景辐射探测B模偏振研究轻型卫星; 轻鸟号
+LiteBIRD 全称:Lite satellite for the studies of B-mode polarization and Inflation from cosmic background Radiation Detection。宇宙背景辐射探测B模偏振研究轻型卫星; 轻鸟号
+Little Dipper 小北斗
+Little Dumbbell 小哑铃星云
+Little Veil Nebula 月牙星云
+Littleton crater 利特尔顿陨击坑
+Littrow condition 利特洛条件
+Littrow spectrograph 利特洛摄谱仪
+Liu 廖庆齐
+Liu Hsin crater 刘歆陨击坑
+Liucixin 刘慈欣
+Liudongyan 刘栋艳
+Liutingchun 刘亭均
+Liutungsheng 刘东生
+Liuzongli 刘宗礼
+Livny crater 利夫内陨击坑
+Lixiaohua 李晓华
+Liyuan 李元
+Liyulin 李育霖
+Lizhensheng 李振声
+Llanesco crater 利亚内斯科陨击坑
+Lob crater 洛布环形山
+Lobachevskiy crater 罗巴切夫斯基环形山
+Lobachevsky space 罗巴切夫斯基空间
+Lobo Vallis 洛博峡谷
+Lobster Nebula 龙虾星云
+Local Bubble 本地泡
+Local Group 本星系群
+Local Interstellar Cloud 本星际云
+Local System 本恒星系统
+Local arm 近域旋臂
+Local cluster of galaxies 本星系团
+Local group of galaxies 本星系群
+Local supercluster 本超星系团
+Local supergalaxy 本超星系
+Locana crater 洛卡纳陨击坑
+Lockyer crater 洛克耶陨击坑
+Locras Valles 洛克拉峡谷群
+Lod crater 卢德陨击坑
+Lodwar crater 洛德瓦尔陨击坑
+Lodygin crater 洛德金环形山
+Logancha crater 洛甘察陨星坑
+Loge 土卫四十六
+Logos 逻各斯
+Lohmann-Bottlinger method 洛曼-玻林格方法
+Lohse crater 洛泽陨击坑
+Loire Valles 卢瓦尔峡谷群
+Loja crater 洛哈陨击坑
+Lomela crater 洛梅拉陨击坑
+Lomia 罗女星
+Lommel-Seeliger law 隆梅尔-西利格定律
+Lommel-Seeliger surface 隆梅尔-西利格面
+Lomonosov crater 1、罗蒙诺索夫环形山; 2、罗蒙诺索夫陨击坑
+Lonar crater 洛纳尔陨击坑
+London University Observatory 伦敦大学天文台
+Long Baseline Array 缩写:LBA。长基线望远镜阵
+Long Count 长期积日制
+Long Duration Exposure Facility 缩写:LDEF。长期曝露飞行器
+Longa crater 隆加陨击坑
+Longboh crater 隆博陨击坑
+Longomontanus crater 隆哥蒙塔努斯环形山
+Loon crater 卢恩陨击坑
+Loop Ⅰ 一号圈
+Loop Ⅱ 二号圈
+Loop Ⅲ 三号圈
+Loran 全称:long range navigation。远程导航; 罗兰
+Loran triad 罗兰三角形
+Loran-A 罗兰A
+Loran-A chain 罗兰A链
+Loran-A system 罗兰A系统
+Loran-C chain 罗兰C链
+Loran-C system 罗兰C系统
+Lorentz contraction 洛伦兹收缩
+Lorentz crater 洛伦兹环形山
+Lorentz damping 洛伦兹阻尼
+Lorentz factor 洛伦兹因子
+Lorentz force 洛伦兹力
+Lorentz force equation 洛伦兹力方程
+Lorentz gas 洛伦兹气体
+Lorentz group 洛伦兹群
+Lorentz invariance 洛伦兹不变性
+Lorentz line profile 洛伦兹谱线轮廓
+Lorentz metric 洛伦兹度规
+Lorentz transformation 洛伦兹变换
+Lorentz unit 洛伦兹单位
+Lorentz-FitzGerald contraction 洛伦兹-菲茨杰拉德收缩
+Lorentz-Weisskopf broadening 洛伦兹-韦斯科夫致宽
+Lorentzian profile 洛伦兹轮廓
+Lorica crater 洛里卡陨击坑
+Los crater 卢斯陨击坑
+Loschmidt number 洛施密特数
+Lost City meteorite 洛斯特陨星
+Lota crater 洛塔陨击坑
+Loto crater 洛托陨击坑
+Louros Valles 卢罗斯峡谷群
+Louth crater 劳斯陨击坑
+Love crater 勒夫环形山
+Love horn 勒夫喇叭
+Love number 勒夫数
+Lovejoy Comet 洛夫乔伊彗星
+Lovelace crater 洛夫莱斯环形山
+Lovell Radio Telescope 洛弗尔射电望远镜
+Lovell Telescope 洛弗尔望远镜
+Low Frequency Array 缩写:LOFAR。LOFAR低频阵
+Lowbury crater 洛伯里陨击坑
+Lowell Observatory 洛厄尔天文台
+Lowell Observatory Near-Earth Object Search 缩写:LONEOS。洛厄尔近地天体搜索
+Lowell Regio 洛厄尔区
+Lowell crater 1、洛厄尔环形山; 2、洛厄尔陨击坑
+Lowell's band 洛厄尔带
+Lowly concubine of emperor 须女
+Loytsianski's theorem 洛伊强斯基定理
+Lr 全称:lawrencium。铹
+Lu 全称:lutetium。镥
+Luba crater 卢巴陨击坑
+Lucaya crater 卢卡亚陨击坑
+Luchijen 吕其润
+Lucifer 启明星
+Luck crater 拉克陨击坑
+Lucretius crater 卢克莱修环形山
+Lucus Planum 卢库斯高原
+Lucy 露西
+Lucy algorithm 卢西算法
+Lucy mission 露西号[小行星探测器]
+Luga crater 卢加陨击坑
+Luguhu 泸沽湖
+Luichewoo 吕志和
+Lujiaxi 卢嘉锡
+Lukeqin crater 鲁克沁陨击坑
+Luki crater 卢基陨击坑
+Lulin 鹿林
+Luna 月球; 太阴
+Luna probe 月球探测器
+Luna programme 露娜月球探测项目
+Lunae Mensa 卢娜桌山
+Lunae Palus 卢娜沼
+Lunae Planum 卢娜高原
+Lunar Atmosphere and Dust Environment Explorer 缩写:LADEE。月球大气及尘埃环境探测器
+Lunar Crater Observation and Sensing Satellite 缩写:LCROSS。月球环形山观测与遥感卫星
+Lunar Orbiter 月球轨道飞行器
+Lunar Prospector 月球勘探者
+Lunar Reconnaissance Orbiter 缩写:LRO。月球勘测轨道飞行器
+Lunar Rover 月球巡视器; 月球车
+Lunar Roving Vehicle 缩写:LRV。月球车
+Lunar and Planetary Laboratory 缩写:LPL。月球和行星实验室
+Lunar-based Ultraviolet Telescope 缩写:LUT。月基紫外天文望远镜
+Lund Royal University Observatory 伦德皇家大学天文台
+Lundmark crater 伦德马克环形山
+Lundquist number 伦德奎斯特数
+Lunik programme 露娜月球探测项目
+Lunokhod 月球车
+Lunokhod Planitia 月球车平原
+Luoxiahong 落下闳
+Lup 全称:Lupus。豺狼座
+Lupus 缩写:Lup。豺狼座
+Lupus Loop 豺狼圈
+Lupus Nebula 豺狼圈
+Lupus Z Dark Cloud 豺狼Z暗云
+Luqa crater 卢卡陨击坑
+Lutan 陆埮
+Lutetia 巴黎; 鲁泰西亚
+Lutsk crater 卢茨克陨击坑
+Lutz-Kelker Bias 卢茨-凯克尔偏差
+Luyajia 吕亚佳
+Luyi 鹿邑
+Luzin crater 卢津陨击坑
+Ly-α cloud 全称:Lyman-α cloud。莱曼α云
+Ly-α forest 全称:Lyman-α forest。莱曼α森林
+Ly-α galaxy 全称:Lyman-α galaxy。莱曼α星系
+Ly-α line 全称:Lyman-α line。莱曼α线
+Ly-β line 全称:Lyman-β line。莱曼β线
+Lyapunov characteristic number 缩写:LCN。李雅普诺夫特征数
+Lyapunov exponent 李雅普诺夫指数
+Lyapunov function 李雅普诺夫函数
+Lyapunov stability 李雅普诺夫稳定性
+Lycus Sulci 吕科斯沟脊地
+Lydda crater 卢德陨击坑
+Lydia 吕底亚
+Lydia family 吕底亚族
+Lyell crater 赖尔陨击坑
+Lyman alpha absorption 莱曼α吸收
+Lyman alpha emitter 缩写:LAE。莱曼α发射体
+Lyman break galaxy 缩写:LBG。莱曼断裂星系
+Lyman break method 莱曼断裂方法
+Lyman continuum 莱曼连续区
+Lyman crater 莱曼环形山
+Lyman discontinuity 莱曼跃变
+Lyman ghost 莱曼鬼线
+Lyman jump 莱曼跳变
+Lyman limit 莱曼系限
+Lyman line 莱曼线
+Lyman series 莱曼系
+Lyman-Werner photon 莱曼-沃纳光子
+Lyman-limit absorption 莱曼系限吸收
+Lyman-limit galaxy 莱曼系限星系
+Lyman-limit system 莱曼系限系统
+Lyman-α blob 缩写:LAB。莱曼α团块
+Lyman-α cloud 缩写:Ly-α cloud。莱曼α云
+Lyman-α forest 缩写:Ly-α forest。莱曼α森林
+Lyman-α galaxy 缩写:Ly-α galaxy。莱曼α星系
+Lyman-α line 缩写:Ly-α line。莱曼α线
+Lyman-β line 缩写:Ly-β line。莱曼β线
+Lyn 全称:Lynx。天猫座
+Lynds' Catalogue of Dark Nebulae 缩写:LDN。林茨暗星云表
+Lynx 缩写:Lyn。天猫座
+Lyons University Observatory 里昂大学天文台
+Lyot coronagraph 李奥星冕仪; 李奥日冕仪
+Lyot crater 1、李奥环形山; 2、李奥陨击坑
+Lyot depolarizer 李奥消偏振镜
+Lyot division 李奥环缝
+Lyot filter 李奥滤光器
+Lyot stop 李奥光阑
+Lyot-Oehman filter 李奥-欧曼滤光器
+Lyr 全称:Lyra。天琴座
+Lyra 缩写:Lyr。天琴座
+Lyrid meteor shower 天琴座流星雨
+Lyrids 天琴流星群
+Lysithea 木卫十
+Lyα absorption 莱曼α吸收
+Lyα emitter 缩写:LAE。莱曼α发射体
+Lyα scattering 莱曼α散射
+López crater 洛佩斯陨击坑
+M 全称:Messier Catalogue。梅西叶星表
+M burst M型暴
+M dwarf M型矮星
+M giant M型巨星
+M region M区
+M star M型星
+M subdwarf M型亚矮星
+M subgiant M型亚巨星
+M supergiant M型超巨星
+M variable M型变星
+M-L relation 全称:mass-luminosity relation。质光关系
+M-area M区
+M-class asteroid M 型小行星
+M-discontinuity 全称:Mohorovičić discontinuity。莫霍间断面
+M-magnitude M星等
+M-region storm M区暴
+M-theory M理论
+M-type asteroid M型小行星
+M-type star M型星
+MACHO 全称:massive compact halo object。晕族大质量致密天体
+MAG 全称:Mitteilungen der Astronomischen Gesellschaft。天文学会会刊
+MAGIC 全称:Major Atmospheric Gamma-ray Imaging Cherenkov Telescopes。大型大气伽马射线成像切伦科夫望远镜
+MAMA 全称:multi-anode microchannel array。多阳极微通道阵
+MAP 1、全称:Microwave Anisotropy Probe。微波各向异性探测器; 2、全称:multichannel astrometric photometer。多通道天测光度计
+MASCOT 全称:Mobile Asteroid Surface Scout。小行星表面侦测器; 吉祥物号[小行星侦测器]
+MAST 全称:Mikulski Archive for Space Telescopes。米库斯基空间望远镜数据库
+MAVEN 全称:Mars Atmosphere and Volatile Evolution。专家号
+MAXI 全称:Monitor of All-sky X-ray Image。全天X射线图像监视器
+MAXIMA 全称:Millimeter Anisotropy eXperiment IMaging Array。毫米波各向异性实验成像阵
+MBR 全称:microwave background radiation。微波背景辐射
+MBTS 全称:moon bounce time synchronization。月球回波时间同步
+MC 全称:meridian circle; transit circle。子午环
+MCAO 全称:multi-congugate adaptive optics。多重共轭自适应光学
+MCF 全称:mutual coherence function。互相干函数
+MCG 全称:Morphological Catalogue of Galaxies。星系形态表
+MCMC method 全称:Markov chain Monte Carlo method。马尔可夫链蒙特卡洛方法
+MCO 全称:Mars Climate Orbiter。环火星气候探测器
+MCP 全称:micro-channel plate。微通道板
+MCP detector 全称:micro-channel plate detector。微通道板检测器
+MCP optics 全称:microchannel plate optics。微通道板光学系统
+MD 全称:Melchior-Dejaiffe Catalogue。MD测纬星表
+MDM 全称:mixed dark matter。混合暗物质
+MDM model 全称:mixed dark matter model。混合暗物质模型
+MECO 全称:magnetospheric eternally collapsing object。磁层永坍缩体
+MEDOC 全称:Motion of the Earth by Doppler Observation Campaign。多普勒观测地球运动计划
+MEM 全称:maximum entropy method。最大熵法
+MERIT 全称:Monitoring of Earth-Rotation and Intercomparison of the Techniques of Observation and Analysis。MERIT地球自转监测
+MERLIN 全称:Multi-Element Radio Linked Interferometer Network。默林[多元射电联合干涉网]
+MESSENGER 全称:Mercury Surface Space Environment Geochemistry and Ranging。信使号
+MGC 全称:Millennium Galaxy Catalogue。千僖星系表
+MGIO 全称:Mount Graham International Observatory。格雷厄姆山国际天文台
+MGS 全称:Mars Global Surveyor。火星环球勘测者
+MHD 全称:magnetohydrodynamics。磁流[体动]力学
+MINERVA 全称:Micro-Nano Experimental Robot Vehicle for Asteroid。微纳实验小行星车; 密涅瓦号[小行星巡视器]
+MIT 全称:Massachusetts Institute of Technology。麻省理工学院
+MJD 全称:modified Julian date。简化儒略日期
+MJD system 全称:modified Julian date system。简化儒略日期
+MJUO 全称:Mount John University Observatory; Mt. John University Observatory。约翰山大学天文台
+MK classification MK光谱分类
+MK luminosity class 全称:Morgan-Keenan luminosity class。MK光度级
+MK system 全称:Morgan-Keenan system。MK分类系统
+MKK classification 全称:Morgan-Keenan-Kellman classification。MKK光谱分类
+MKK system 全称:Morgan-Keenan-Kellman system。MKK分类系统
+MKO 全称:Mauna Kea Observatory。莫纳克亚天文台
+MLE 全称:maximum likelihood estimation。极大似然估计
+MLO 全称:Mount Lemmon Observatory; Mt. Lemmon Observatory。莱蒙山天文台
+MMA 全称:Milli-Meter Array。毫米波射电望远镜阵
+MMC 全称:Mini Magellanic Cloud。微麦哲伦云
+MMIC 全称:monolithic microwave integrated circuit。微波单片集成电路
+MMO 全称:Mercury Magnetospheric Orbiter。水星磁层轨道器
+MMS 全称:multimission modular spacecraft。多任务模块化空间飞行器
+MMT 全称:Multiple-Mirror Telescope。MMT望远镜
+MMX 全称:Martian Moons eXploration。火卫探测器
+MN 全称:Monthly Notices of the Royal Astronomical Society。皇家天文学会月刊
+MNRAS 全称:Monthly Notices of the Royal Astronomical Society。皇家天文学会月刊
+MOAO 全称:multi-object adaptive optics。多目标自适应光学
+MOC 全称:Multi-Order Coverage map。多级覆盖图
+MOF 全称:magneto-optical filter。磁光滤光器
+MOL 全称:Manned Orbiting Laboratory。载人环地轨道实验室
+MOND 全称:Modified Newtonian Dynamics。修改的牛顿动力学; MOND理论
+MONSEE 全称:Monitoring of the Sun-Earth Environment。MONSEE日地环境监测
+MOST 1、全称:Microvariability and Oscillations of Stars telescope。恒星微变和振荡望远镜; 2、全称:Molonglo Observatory Synthesis Telescope。莫隆格勒综合孔径望远镜
+MOXIE 全称:Mars Oxygen In-Situ Resource Utilization Experiment。火星氧气原位资源利用实验
+MP 全称:Molonglo pulsar。莫隆格勒脉冲星
+MPA 全称:Max-Planck-Institute for Astrophysics。马普天体物理研究所
+MPC 全称:Minor Planet Center。小行星中心
+MPE 全称:Max-Planck-Institut für extraterrestrische Physik。马克斯·普朗克地外物理研究所
+MPIfA 全称:Max-Planck-Institut fur Astronomie。马普天文研究所
+MPIfPA 全称:Max-Planck-Institut fur Physik und Astrophysik。马普物理和天体物理研究所
+MPIfR 全称:Max-Planck-Institut fur Radioastronomie。马普射电天文研究所
+MPL 全称:Mars Polar Lander。火星极地着陆器
+MPO 1、全称:Mercury Planetary Orbiter。环水星轨道器; 2、全称:micropore optics。微孔光学系统
+MPP CCD 全称:multi-pinned phase CCD。多相钉扎型CCD
+MRAO 全称:Mullard Radio Astronomy Observatory。玛拉德射电天文台
+MRI 全称:magnetorotational instability。磁转动不稳定性
+MRO 全称:Mars Reconnaissance Orbiter。火星勘测轨道飞行器
+MROI 全称:Magdalena Ridge Optical Interferometer。马格达莱纳岭光学干涉仪
+MS star 全称:main sequence star。主序星
+MSAM experiment 全称:Medium Scale Anisotropy Measurement Experiment。中等尺度各向异性测量实验
+MSFC 全称:Marshall Space Flight Center。马歇尔空间中心
+MSH 全称:Mills-Slee-Hill Catalogue of Radio Sources。MSH射电源表
+MSL 全称:Mars Science Laboratory。火星科学实验室
+MSO 1、全称:Mount Stromlo Observatory; Mt. Stromlo Observatory。斯特朗洛山天文台; 2、全称:medium-size symmetric objects。中型对称天体
+MSP 全称:millisecond pulsar。毫秒脉冲星
+MSS 全称:multi-spectral scanner。多谱扫描仪
+MSSM 全称:minimal supersymmetric standard model。最小超对称模型
+MSSSO 全称:Mount Stromlo and Siding Spring Observatory。斯特朗洛山和赛丁泉天文台
+MSW effect 全称:Mikheyev-Smirnov-Wolfenstein effect。MSW效应
+MSX 全称:Midcourse Space Experiment。太空中途红外实验
+MTF 全称:modulation transfer function。调制传递函数
+MTRLI 全称:Multi-Telescope Radio-Linked Interferometer。多望远镜射电联合干涉仪
+MUSE 全称:Multi Unit Spectroscopic Explorer。多元光谱探测仪
+MVL-300 全称:Mikhailo Lomonosov satellite。罗蒙诺索夫天文卫星
+MVS 全称:Mitteilungen über Veränderliche Sterne。变星通报
+MW 全称:Milky Way。银河; 天河
+MWA 全称:Murchison Widefield Array。默奇森大视场[射电]阵
+MWC 全称:Mount Wilson Catalogue of Early Type Emission Stars。MWC早型发射线星表
+MWT 全称:Millimeter-Wave Telescope。MWT毫米波望远镜
+MXRB 全称:massive X-ray binary。大质量X射线双星
+Ma'adim Vallis 马阿迪姆峡谷
+Maasym 赵; 天市左垣二
+Maat Mons 玛阿特山
+Mab 天卫二十六
+Mabsuthat 上台增四
+MacLaurin crater 麦克劳林环形山
+MacLaurin disk 麦克劳林盘
+MacLaurin spheroid 麦克劳林球体
+MacLaurin stage of light curve 麦克劳林光变曲线分段
+Macao 澳门
+Mach crater 马赫环形山
+Mach number 马赫数
+Mach principle 马赫原理
+Mach's principle 马赫原理
+Machina Electrica 电机座
+Macrobius crater 马克罗比乌斯环形山
+Mad Vallis 马德峡谷
+Madau plot 马道图
+Madrid Astronomical Observatory 马德里天文台
+Madrid crater 马德里陨击坑
+Maffei 1 马费伊 1
+Maffei 2 马费伊 2
+Maffei galaxy 马费伊星系
+Maffei group 马费伊星系群
+Mafra crater 马夫拉陨击坑
+Magadi crater 马加迪陨击坑
+Magdalena Ridge Optical Interferometer 缩写:MROI。马格达莱纳岭光学干涉仪
+Magelhaens crater 1、麦哲伦环形山; 2、麦哲伦陨击坑
+Magellan Telescopes 麦哲伦望远镜
+Magellan spacecraft 麦哲伦号金星探测器
+Magellanic Cloud-type galaxy 麦哲伦云型星系
+Magellanic Clouds 麦哲伦云
+Magellanic Stream 麦哲伦流
+Magellanic System 麦哲伦系
+Magellanic irregular galaxies 麦哲伦型不规则星系
+Maggini crater 马吉尼陨击坑
+Magnanimity 宽容
+Magnetic Field Satellite 缩写:Magsat。磁场科学卫星
+Mago crater 马戈陨击坑
+Magong crater 马公陨击坑
+Magsat 全称:Magnetic Field Satellite。磁场科学卫星
+Mahasim 五车四
+Maia 昴宿四
+Maia sequence 昴宿四变星序
+Maid 女宿
+Maidstone crater 梅德斯通陨击坑
+Main Ring 主环
+Main crater 梅因陨击坑
+Maja 光神星
+Maja Valles 墨戈峡谷群
+Maji crater 马集陨击坑
+Major Atmospheric Gamma-ray Imaging Cherenkov Telescopes 缩写:MAGIC。大型大气伽马射线成像切伦科夫望远镜
+Majorana mass term 马约拉纳质量项
+Majorana neutrino 马约拉纳中微子
+Majorana particle 马约拉纳粒子
+Majorana representation 马约拉纳表象
+Majuro crater 马朱罗陨击坑
+Makemake 鸟神星
+Makhambet crater 马汉别特陨击坑
+Maksutov camera 马克苏托夫照相机
+Maksutov corrector 马克苏托夫改正镜
+Maksutov crater 马克苏托夫环形山
+Maksutov telescope 马克苏托夫望远镜
+Malam Cavus 马拉姆凹地
+Malea Patera 马莱阿山口
+Malea Planum 马莱阿高原
+Malino crater 马利诺陨击坑
+Mallet crater 马利特环形山
+Malmquist bias 马姆奎斯特偏差
+Malmquist correction 马姆奎斯特改正
+Malus 船桅座
+Mambali crater 曼巴利陨击坑
+Mamers Valles 马墨耳斯峡谷群
+Manah crater 迈奈赫陨击坑
+Mandel'shtam crater 曼德尔施塔姆环形山
+Mandjet Chasma 曼杰特深谷
+Mandora crater 曼多拉陨击坑
+Mangala Fossa 曼加拉堑沟
+Mangala Valles 曼加拉峡谷群
+Mangalyaan 火星轨道飞行器任务
+Manicouagan crater 马尼夸根陨星坑
+Manley-Rowe equation 曼利-罗氏方程
+Manned Orbiting Laboratory 缩写:MOL。载人环地轨道实验室
+Manson crater 曼森陨星坑
+Manti crater 曼泰陨击坑
+Manuel Diaz 阳玛诺
+Manwe 曼威
+Manzī crater 曼齐陨击坑
+Maoyisheng 茅以升
+Mapihsia 马碧霞
+Maraldi crater 马拉尔迪陨击坑
+Marbach crater 马尔巴赫陨击坑
+Marca crater 马尔卡陨击坑
+Marchab 室宿一
+Marco Polo crater 马可·波罗环形山
+Marconi crater 马可尼环形山
+Mare Acidalium 阿西达利亚海
+Mare Anguis 蛇海
+Mare Australe 1、南海; 2、南海
+Mare Boreum 北海
+Mare Chronium 克罗尼乌斯海
+Mare Cimmerium 客墨里亚海
+Mare Cognitum 知海
+Mare Crisium 危海
+Mare Desiderii 梦海
+Mare Erythraeum 厄立特里亚海
+Mare Fecunditatis 丰富海
+Mare Frigoris 冷海
+Mare Hadriacum 亚得里亚海
+Mare Humboldtianum 洪堡海
+Mare Humorum 湿海
+Mare Imbrium 雨海
+Mare Ingenii 智海
+Mare Insularum 岛海
+Mare Marginis 界海
+Mare Moscoviense 莫斯科海
+Mare Nectaris 酒海
+Mare Nubium 云海
+Mare Orientale 东海
+Mare Serenitatis 澄海
+Mare Serpentis 巨蛇海
+Mare Sirenum 塞壬海
+Mare Smythii 史密斯海
+Mare Spumans 泡沫海
+Mare Tranquillitatis 静海
+Mare Tyrrhenum 第勒尼安海
+Mare Undarum 浪海
+Mare Vaporum 汽海
+Mareotis Fossae 玛莱奥提斯堑沟群
+Marfak 1、天船三; 2、晋; 天市右垣三
+Marfic 列肆二
+Marfik 列肆二
+Margaret 天卫二十三
+Margaritifer Chaos 珍珠混杂地
+Margaritifer Sinus 珍珠湾
+Margaritifer Terra 珍珠台地
+Margulis crater 马古利斯陨击坑
+Mari crater 马里陨击坑
+Maria family 玛利亚星族
+Maricourt crater 马里库尔陨击坑
+Marikh Vallis 马里赫峡谷
+Marilyn 玛莉琳
+Mariner 水手号
+Mariner crater 水手号陨击坑
+Marinus crater 马里纳斯环形山
+Mariotte crater 马略特环形山
+Marisat 海事通信卫星
+Markab 1、天社五; 2、室宿一
+Markarian galaxy 马卡良星系
+Markarian object 马卡良天体
+Markeb 天社五
+Markov chain 马尔可夫链
+Markov chain Monte Carlo method 缩写:MCMC method。马尔可夫链蒙特卡洛方法
+Markov process 马尔可夫过程
+Markowitz moon camera 马科维茨月球照相机
+Mars 火星; 荧惑
+Mars 2020 火星2020任务
+Mars Atmosphere and Volatile Evolution 缩写:MAVEN。专家号
+Mars Climate Orbiter 缩写:MCO。环火星气候探测器
+Mars Exploration Rover 火星探险漫游者
+Mars Express 火星快车
+Mars Global Surveyor 缩写:MGS。火星环球勘测者
+Mars Observer 火星观测者
+Mars Orbiter Mission 火星轨道飞行器任务
+Mars Oxygen In-Situ Resource Utilization Experiment 缩写:MOXIE。火星氧气原位资源利用实验
+Mars Pathfinder 火星探路者
+Mars Polar Lander 缩写:MPL。火星极地着陆器
+Mars Reconnaissance Orbiter 缩写:MRO。火星勘测轨道飞行器
+Mars Science Laboratory 缩写:MSL。火星科学实验室
+Mars Surveyor 2003 火星勘探者
+Mars globe 火星仪
+Mars probe 火星探测器
+Mars-Trojan asteroid 火星-特洛伊族小行星
+Mars-crossing asteroid 越火小行星
+Marseilles National Observatory 马赛国立天文台
+Marshall Space Flight Center 缩写:MSFC。马歇尔空间中心
+Marsic 列肆二
+Marsik 晋; 天市右垣三
+Marte Vallis 马尔特峡谷
+Marth crater 马特陨击坑
+Martian Moons eXploration 缩写:MMX。火卫探测器
+Martian atmosphere 火星大气
+Martian dust storm 火星尘暴
+Martian moon 火卫
+Martian opposition 火星大冲
+Martian probe 火星探测器
+Martian satellite 火卫
+Martian year 火星年
+Martin crater 马丁陨击坑
+Martynov crater 马丁诺夫陨击坑
+Martz crater 马茨陨击坑
+Marut 天社六
+Maryland Point Observatory 马里兰射电观测站
+Marysville crater 马里斯维尔陨击坑
+Massachusetts Institute of Technology 缩写:MIT。麻省理工学院
+Massalia 马赛
+Mastung crater 默斯东陨击坑
+Masursky crater 马苏尔斯基陨击坑
+Matar 离宫四
+Matara crater 马特勒陨击坑
+Mathieu equation 马蒂厄方程
+Mathilde 玛蒂尔德
+Matrona Vallis 马特隆纳峡谷
+Matteo Ricci 利玛窦
+Matterania 马特尔
+Mattig formula 马蒂希公式
+Maumee Valles 莫米峡谷群
+Mauna Kea Observatory 缩写:MKO。莫纳克亚天文台
+Maunder crater 1、蒙德环形山; 2、蒙德陨击坑
+Maunder minimum 蒙德极小期
+Mawrth Vallis 茅尔斯峡谷
+Max-Planck-Institut fur Astronomie 缩写:MPIfA。马普天文研究所
+Max-Planck-Institut fur Physik und Astrophysik 缩写:MPIfPA。马普物理和天体物理研究所
+Max-Planck-Institut fur Radioastronomie 缩写:MPIfR。马普射电天文研究所
+Max-Planck-Institut für extraterrestrische Physik 缩写:MPE。马克斯·普朗克地外物理研究所
+Max-Planck-Institute for Astrophysics 缩写:MPA。马普天体物理研究所
+Maxwell Gap 麦克斯韦环缝
+Maxwell Montes 麦克斯韦山脉
+Maxwell Observatory 麦克斯韦天文台
+Maxwell Telescope 麦克斯韦望远镜
+Maxwell crater 麦克斯韦环形山
+Maxwell distribution 麦克斯韦分布
+Maxwell equation 麦克斯韦方程
+Maxwell field equation 麦克斯韦场方程
+Maxwell force 麦克斯韦力
+Maxwell-Boltzmann distribution 麦克斯韦-玻尔兹曼分布
+Maxwellian plasma 麦克斯韦等离子体
+Maxwellian plasma gas 麦克斯韦等离子气体
+Maxwellian velocity distribution 麦克斯韦速度分布
+Mayall Reflector 梅奥尔反射望远镜
+Mayall Telescope 梅奥尔望远镜
+Mayan astronomy 玛雅天文学
+Mayer formula 梅耶公式
+Mayongsheng 马永生
+Mazamba crater 马赞巴陨击坑
+Mazim 赵; 天市左垣二
+Mazym 赵; 天市左垣二
+McCauley crater 麦考利陨击坑
+McDonald Observatory 麦克唐纳天文台
+McDonald crater 麦克唐纳环形山
+McGee spectracon 麦基光谱摄像管
+McGraw-Hill Observatory 麦格劳-希尔天文台
+McIntosh classification 麦金托什分类
+McIntosh scheme 麦金托什图式
+McKellar crater 麦凯勒环形山
+McLaughlin crater 1、麦克劳克林陨击坑; 2、麦克劳林环形山
+McMath Hulbert Observatory 麦克马思·赫伯特天文台
+McMath Telescope 麦克马思望远镜
+McMath crater 麦克马思环形山
+McMath-Pierce Solar Telescope 麦克马思-皮尔斯太阳望远镜
+McMath-Pierce Telescope 麦克马思-皮尔斯望远镜
+McMullan camera 麦克马伦电子照相机
+McMurdo crater 麦克默多陨击坑
+McNaught Comet 麦克诺特彗星
+Md 全称:mendelevium。钔
+Me star M型发射线星; Me型星
+Me variable Me型变星
+MeV 全称:mega-electron-volt。兆电子伏
+Mead crater 米德环形山
+Mebsuta 井宿五
+Media 箕宿二
+Medium Scale Anisotropy Measurement Experiment 缩写:MSAM experiment。中等尺度各向异性测量实验
+Medrissa crater 迈德里萨陨击坑
+Medusa Nebula 美杜莎星云
+Medusae Fossae 美杜莎堑沟群
+Medusae Sulci 美杜莎沟脊地
+Mee crater 米环形山
+Mees crater 米斯环形山
+Mega crater 梅加陨击坑
+Megaclite 木卫十九
+Megalithic astronomy 巨石天文学
+Megaregolith 巨石表土
+Meget crater 梅格特陨击坑
+Meggers crater 梅格斯环形山
+Megrez 天权; 北斗四
+Meinel band 迈内尔谱带
+Meinel optics 迈内尔光学系统
+Meissa 觜宿一
+Meitner crater 迈特纳环形山
+Meizhou 梅州
+Mekbuda 井宿七
+Melas Chasma 梅拉斯深谷
+Melas Dorsa 梅拉斯山脊群
+Melas Fossae 梅拉斯堑沟群
+Melas Labes 梅拉斯拉坡地
+Melas Mensa 梅拉斯桌山
+Melboula 井宿五
+Melchior-Dejaiffe Catalogue 缩写:MD。MD测纬星表
+Meleph 积尸增三
+Melete 中神星
+Mellish crater 梅利什陨击坑
+Mellit crater 迈利特陨击坑
+Melpomene 司曲星
+Melucta 井宿五
+Memnonia 门农尼亚
+Memnonia Fossae 门农尼亚堑沟群
+Memnonia Sulci 门农尼亚沟脊地
+Memoirs of the Royal Astronomical Society 缩写:MmRAS。皇家天文学会论文集
+Men 1、全称:Mensa。山案座; 2、骑官十
+Mena crater 梅纳陨击坑
+Menchib 卷舌三
+Mendel crater 1、孟德尔环形山; 2、孟德尔陨击坑
+Mendeleev crater 门捷列夫环形山
+Mendota crater 门多塔陨击坑
+Menghuan 孟奂
+Menkab 天囷一
+Menkalinan 五车三
+Menkar 1、天囷一; 2、天囷三
+Menkelb Posterior 军市增五
+Menkelb Prior 军市五
+Menkent 库楼三
+Menkhib 卷舌三
+Menkib 1、卷舌三; 2、室宿二
+Menoetius 墨诺提俄斯
+Mensa 缩写:Men。山案座
+Merak 天璇; 北斗二
+Mercator crater 墨卡托环形山
+Mercurial magnetosphere 水星磁层
+Mercurial precession 水星进动
+Mercurius crater 墨丘利环形山
+Mercury 水星; 辰星
+Mercury Magnetospheric Orbiter 缩写:MMO。水星磁层轨道器
+Mercury Planetary Orbiter 缩写:MPO。环水星轨道器
+Mercury Spacecraft 水星号飞船
+Mercury Surface Space Environment Geochemistry and Ranging 缩写:MESSENGER。信使号
+Merga 玄戈增二
+Meridiana 鳖六
+Meridiani Planum 子午高原
+Meridiani Serpentes 子午蛇状脊群
+Meroe 麦罗埃
+Meroe Patera 麦罗埃山口
+Merope 昴宿五
+Merope Nebula 昴宿星云
+Merrill crater 梅里尔环形山
+Mersenius crater 梅森环形山
+Mesarthim 娄宿二
+Mesartim 娄宿二
+Meshcherskiy crater 梅谢尔斯基环形山
+Mesopotamian astronomy 美索不达米亚天文学
+Messier Catalogue 缩写:M。梅西叶星表
+Messier crater 梅西叶环形山
+Messier number 梅西叶编号
+Messier object 梅西叶天体
+Mestel's disk 梅斯特尔盘
+Metagalaxy 总星系
+Meteorological Satellite 缩写:Meteosat。气象科学卫星
+Meteosat 全称:Meteorological Satellite。气象科学卫星
+Methone 土卫三十二
+Metis 1、木卫十六; 2、颖神星
+Metius crater 梅修斯环形山
+Metonic cycle 默冬章
+Meudon Observatory 墨东天文台
+Mexican hat potential 墨西哥帽势
+Mezentsev crater 梅津采夫环形山
+Mg 全称:magnesium。镁
+Miaplacidus 南船五
+Mic 全称:Microscopium。显微镜座
+Mice Galaxies 双鼠星系
+Michel Benoît 蒋友仁
+Michelson crater 迈克耳孙环形山
+Michelson interferometer 迈克耳孙干涉仪
+Michelson interferometry 迈克耳孙干涉测量
+Michelson stellar interferometer 迈克耳孙恒星干涉仪
+Michelson-Morley experiment 迈克耳孙-莫雷实验
+Michie model 米基模型
+Michigan State University Observatory 密歇根州立大学天文台
+Michigan University Radio Astronomy Observatory 密歇根大学射电天文台
+Micoud crater 米库陨击坑
+Micro-Nano Experimental Robot Vehicle for Asteroid 缩写:MINERVA。微纳实验小行星车; 密涅瓦号[小行星巡视器]
+Microlensing Planet Finder 微引力透镜行星探测器
+Microscopium 缩写:Mic。显微镜座
+Microvariability and Oscillations of Stars telescope 缩写:MOST。恒星微变和振荡望远镜
+Microwave Anisotropy Probe 缩写:MAP。微波各向异性探测器
+Midas 全称:Missile Defense Alarm System。麦达斯
+Midcourse Space Experiment 缩写:MSX。太空中途红外实验
+Mie crater 米氏陨击坑
+Mie scattering 米氏散射
+Mie theory 米氏理论
+Mikhailo Lomonosov satellite 缩写:MVL-300。罗蒙诺索夫天文卫星
+Mikheyev-Smirnov-Wolfenstein effect 缩写:MSW effect。MSW效应
+Mikulski Archive for Space Telescopes 缩写:MAST。米库斯基空间望远镜数据库
+Mikumi crater 米库米陨击坑
+Mila crater 米拉陨击坑
+Milagro telescope 奇迹伽马射线望远镜
+Milankovich theory 米兰科维奇理论
+Milankovič crater 1、米兰科维奇环形山; 2、米兰科维奇陨击坑
+Milford crater 米尔福德陨击坑
+Milk Dipper 南斗
+Milkomeda 银河仙女星系
+Milky Way 缩写:MW。银河; 天河
+Milky Way galaxy 银河系
+Millennium Galaxy Catalogue 缩写:MGC。千僖星系表
+Millennium simulation 千禧模拟
+Millennium-2 simulation 千禧-2 模拟
+Miller crater 米勒环形山
+Miller-Scalo initial mass function 米勒-斯喀勒初始质量函数
+Milli-Meter Array 缩写:MMA。毫米波射电望远镜阵
+Millikan crater 密立根环形山
+Millimeter Anisotropy eXperiment IMaging Array 缩写:MAXIMA。毫米波各向异性实验成像阵
+Millimeter-Wave Telescope 缩写:MWT。MWT毫米波望远镜
+Millman crater 米尔曼陨击坑
+Millochau crater 米约绍陨击坑
+Mills Cross 米尔斯十字
+Mills Cross antenna 米尔斯十字天线
+Mills-Slee-Hill Catalogue of Radio Sources 缩写:MSH。MSH射电源表
+Mills-Strurrock model 米尔斯-斯特鲁洛克模型
+Milna crater 米尔纳陨击坑
+Milne crater 米尔恩环形山
+Milne model 米尔恩模型
+Milne relation 米尔恩关系
+Milne universe 米尔恩宇宙
+Milne-Eddington approximation 米尔恩-爱丁顿近似
+Milne-Eddington model 米尔恩-爱丁顿模型
+Mimas 土卫一
+Mimosa 十字架三
+Minchir 轩辕七
+Minelauva 右执法; 太微右垣一
+Minenze 闵恩泽
+Minerva 慧神星
+Mineur crater 米纳尔环形山
+Mingantu 明安图
+Mini Magellanic Cloud 缩写:MMC。微麦哲伦云
+Minio Vallis 米尼奥峡谷
+Minisat 01 超小卫星1号
+Minkar 轸宿二
+Minkowski crater 闵可夫斯基环形山
+Minkowski functional 闵可夫斯基泛函
+Minkowski metric 闵可夫斯基度规
+Minkowski space 闵可夫斯基空间; 闵氏空间
+Minkowski spacetime 闵可夫斯基时空
+Minkowski world 闵可夫斯基宇宙
+Minnaert crater 米奈尔环形山
+Minor Planet Center 缩写:MPC。小行星中心
+Mintaka 参宿三
+Mintika 参宿三
+Mir 和平号空间站
+Mira 刍藁增二
+Mira Ceti variable 刍藁[型]变星
+Mira star 刍藁型星
+Mira variable 刍藁[型]变星
+Mira-type star 刍藁型星
+Mira-type variable 刍藁[型]变星
+Mirac 奎宿九
+Mirach 1、奎宿九; 2、梗河一
+Mirak 梗河一
+Miralaidjii Corona 米拉莱狄地冕
+Miram 天船一
+Miranda 1、天卫五; 2、米兰达科学卫星
+Mirfak 天船三
+Miriam 圣女星
+Mirphak 天船三
+Mirrak 梗河一
+Mirtos crater 米尔托斯陨击坑
+Mirzam 军市一
+Misam 大陵四
+Misk crater 米斯克陨击坑
+Missile Defense Alarm System 缩写:Midas。麦达斯
+Mistastin crater 米斯塔斯汀湖陨星坑
+Mistretta crater 米斯特雷塔陨击坑
+Mitchel crater 米切尔陨击坑
+Mitra crater 米特拉环形山
+Mitteilungen der Astronomischen Gesellschaft 缩写:MAG。天文学会会刊
+Mitteilungen über Veränderliche Sterne 缩写:MVS。变星通报
+Mittenzwey eyepiece 米腾兹威目镜
+Miyamoto crater 宫本陨击坑
+Mizar 北斗六; 开阳
+Mjølnir crater 米约涅尔陨星坑
+Mliba crater 姆利巴陨击坑
+MmRAS 全称:Memoirs of the Royal Astronomical Society。皇家天文学会论文集
+Mn 全称:manganese。锰
+Mneme 木卫四十
+Mnemosyne 忆神星
+Mo 全称:molybdenum。钼
+Moa Valles 莫阿峡谷群
+Moab 摩押
+Moanda crater 莫安达陨击坑
+Mobile Asteroid Surface Scout 缩写:MASCOT。小行星表面侦测器; 吉祥物号[小行星侦测器]
+Modified Newtonian Dynamics 缩写:MOND。修改的牛顿动力学; MOND理论
+Moeris Lacus 摩里斯湖
+Moessbauer effect 穆斯堡尔效应
+Mogel-Dellinger effect 默格尔-德林格尔效应
+Mohammedan calendar 伊斯兰历
+Mohammedan era 穆罕默德纪元
+Mohawk crater 莫霍克陨击坑
+Mohe Tholi 漠河山丘群
+Mohe crater 漠河陨击坑
+Moho surface 莫霍面
+Mohorovičić crater 莫霍洛维奇环形山
+Mohorovičić discontinuity 缩写:M-discontinuity。莫霍间断面
+Mohorovičić surface 莫霍面
+Moiseev crater 莫伊谢耶夫环形山
+Mojave crater 莫哈韦陨击坑
+Molesworth crater 莫尔斯沃思陨击坑
+Moller scattering 摩勒散射
+Molonglo Observatory Synthesis Telescope 缩写:MOST。莫隆格勒综合孔径望远镜
+Molonglo Radio Observatory 莫隆格勒射电天文台
+Molonglo pulsar 缩写:MP。莫隆格勒脉冲星
+Moloniya 闪电
+Momotaro crater 桃太郎坑
+Mon 全称:Monoceros。麒麟座
+Mongmanwai 蒙民伟
+Moni crater 莫尼陨击坑
+Monitor of All-sky X-ray Image 缩写:MAXI。全天X射线图像监视器
+Monitoring of Earth-Rotation and Intercomparison of the Techniques of Observation and Analysis 缩写:MERIT。MERIT地球自转监测
+Monitoring of the Sun-Earth Environment 缩写:MONSEE。MONSEE日地环境监测
+Monkar 天囷一
+Monocerids 麒麟流星群
+Monoceros 缩写:Mon。麒麟座
+Monoceros Hot Spot 麒麟热斑
+Monoceros Loop 麒麟圈
+Monogem Ring 麒麟圈
+Mons Ampère 安培山
+Mons Argaeus 阿尔加山
+Mons Huygens 惠更斯山
+Mons La Hire 拉希尔山
+Mons Pico 皮科山
+Mons Piton 皮通山
+Mons Ruemker 吕姆克尔山
+Mons Rümker 吕姆克山
+Mons Vinogradov 维诺格拉多夫山
+Mont Blanc 勃朗峰
+Montagnais crater 蒙塔格尼陨星坑
+Montanari crater 蒙塔纳里环形山
+Monte-Carlo method 蒙特卡罗方法
+Monte-Carlo technique 蒙特卡罗方法
+Montes Agricola 阿格里科拉山脉
+Montes Alpes 阿尔卑斯山脉
+Montes Altai 阿尔泰山脉
+Montes Apenninus 亚平宁山脉
+Montes Archimedes 阿基米德山脉
+Montes Carpatus 喀尔巴阡山脉
+Montes Caucasus 高加索山脉
+Montes Cordillera 科迪勒拉山脉
+Montes Haemus 海玛斯山脉
+Montes Harbinger 前锋山脉
+Montes Jura 侏罗山脉
+Montes Pyrenaeus 比利牛斯山脉
+Montes Recti 直列山脉
+Montes Riphaeus 里菲山脉
+Montes Rook 鲁克山脉
+Montes Secchi 塞奇山脉
+Montes Spitzbergen 施皮茨贝尔根山脉
+Montes Taurus 金牛山脉
+Montes Teneriffe 特内里费山脉
+Montevallo crater 蒙特瓦洛陨击坑
+Montgolfier crater 蒙戈尔费埃环形山
+Monthly Notices of the Royal Astronomical Society 缩写:MNRAS; MN。皇家天文学会月刊
+Moon 月球; 太阴
+Moon Mineralogy Mapper 月球矿藏勘測器
+Moore crater 穆尔环形山
+Moore density profile 穆尔密度轮廓
+Mopra Observatory 莫普拉天文台
+Morava Valles 摩拉瓦峡谷群
+Morella crater 莫雷利亚陨击坑
+Moreton wave 莫尔顿波
+Moretus crater 莫雷环形山
+Moreux crater 莫勒陨击坑
+Morgan's classification 摩根星系分类
+Morgan-Keenan classification MK光谱分类
+Morgan-Keenan luminosity class 缩写:MK luminosity class。MK光度级
+Morgan-Keenan system 缩写:MK system。MK分类系统
+Morgan-Keenan-Kellman classification 缩写:MKK classification。MKK光谱分类
+Morgan-Keenan-Kellman system 缩写:MKK system。MKK分类系统
+Morokweng crater 莫罗昆陨星坑
+Moroz crater 莫罗兹陨击坑
+Morpheos Rupes 摩耳甫斯峭壁
+Morpheus 摩耳甫斯
+Morphological Catalogue of Galaxies 缩写:MCG。星系形态表
+Morse crater 莫尔斯环形山
+Mosa Vallis 莫萨峡谷
+Moseley crater 莫塞莱环形山
+Moss crater 莫斯陨击坑
+Mothallah 娄宿增六
+Motion of the Earth by Doppler Observation Campaign 缩写:MEDOC。多普勒观测地球运动计划
+Mott scattering 莫特散射
+Mouchez crater 穆谢环形山
+Mount Graham International Observatory 缩写:MGIO。格雷厄姆山国际天文台
+Mount Hopkins Observatory 霍普金斯山天文台
+Mount John University Observatory 缩写:MJUO。约翰山大学天文台
+Mount Lemmon Observatory 缩写:MLO。莱蒙山天文台
+Mount Palomar Observatory 帕洛玛山天文台
+Mount Stromlo Observatory 缩写:MSO。斯特朗洛山天文台
+Mount Stromlo and Siding Spring Observatory 缩写:MSSSO。斯特朗洛山和赛丁泉天文台
+Mount Wilson Catalogue of Early Type Emission Stars 缩写:MWC。MWC早型发射线星表
+Mount Wilson Observatory 威尔逊山天文台
+Mouth 觜宿
+Moving Nebula 移动星云
+Mpc 全称:megaparsec。兆秒差距
+Mt. Hopkins Observatory 霍普金斯山天文台
+Mt. John University Observatory 缩写:MJUO。约翰山大学天文台
+Mt. Lemmon Observatory 缩写:MLO。莱蒙山天文台
+Mt. Palomar Observatory 帕洛玛山天文台
+Mt. Stromlo Observatory 缩写:MSO。斯特朗洛山天文台
+Mt. Wilson Observatory 威尔逊山天文台
+Muara crater 麻拉陨击坑
+Mufrid 右摄提一
+Mufride 右摄提一
+Muhlifain 库楼七
+Mukhanov-Sasaki equation 穆哈诺夫-佐佐木方程
+Muliphain 天狼增四
+Muliphein 天狼增四
+Muliphen 1、天狼增四; 2、宗正二
+Mullard Radio Astronomy Observatory 缩写:MRAO。玛拉德射电天文台
+Mulliken band 马勒肯谱带
+Multi Unit Spectroscopic Explorer 缩写:MUSE。多元光谱探测仪
+Multi-Element Radio Linked Interferometer Network 缩写:MERLIN。默林[多元射电联合干涉网]
+Multi-Order Coverage map 缩写:MOC。多级覆盖图
+Multi-Telescope Radio-Linked Interferometer 缩写:MTRLI。多望远镜射电联合干涉仪
+Multiple-Mirror Telescope 缩写:MMT。MMT望远镜
+Munda Vallis 蒙达峡谷
+Mundilfari 土卫二十五
+Mundrabilla meteorite 曼德拉比拉陨星
+Munich University Observatory 慕尼黑大学天文台
+Muphrid 右摄提一
+Murchison Widefield Array 缩写:MWA。默奇森大视场[射电]阵
+Murchison crater 默奇森环形山
+Murchison meteorite 默奇森陨石
+Murgab crater 默加布陨星坑
+Murgoo crater 默古陨击坑
+Murray crater 1、默里陨击坑; 2、默里陨星坑
+Murzim 军市一
+Mus 全称:Musca。苍蝇座
+Musca 缩写:Mus。苍蝇座
+Musca Borealis 北蝇座
+Muscida 1、内阶一; 2、内阶增七
+Muses-A 缪斯A月球探测器
+Musica 司非增二
+Musmar crater 穆斯马尔陨击坑
+Mut crater 穆特陨击坑
+Mutch crater 马奇陨击坑
+Mutus crater 穆图什环形山
+Mwindo Fossae 姆温都沟
+Myia 蜜蜂三
+Myr 全称:million years。百万年
+Mädler crater 梅德勒陨击坑
+Möbius crater 麦比乌斯环形山
+Müller crater 米勒陨击坑
+N 全称:nitrogen。氮
+N galaxy N星系
+N line N谱线
+N star N型星
+N-body model N体模型
+N-body problem n体问题
+N-body simulation n体模拟
+N-flation N-暴胀
+N-magnitude N星等
+N-particle distribution function N粒子分布函数
+N-type star N型星
+N. Mareotis Tholus 北玛莱奥提斯山丘
+N.S. 全称:New Style。新历
+NADC 全称:National Astronomical Data Center。国家天文科学数据中心
+NAIC 全称:National Astronomy and Ionosphere Center。美国国家天文和电离层中心
+NAO 全称:national astronomical observatory。国家天文台
+NAOC 全称:National Astronomical Observatories, Chinese Academy of Sciences。中国科学院国家天文台
+NAOJ 全称:National Astronomical Observatory of Japan。日本国立天文台
+NASA 全称:National Aeronautics and Space Administration。美国[国家]航天局
+NASA Infrared Telescope Facility 缩写:IRTF。[美国]航天局红外望远镜
+NASA/IPAC Extragalactic Database 缩写:NED。美国航天局河外数据库
+NATO Satellite 全称:North Atlantic Treaty Organization Satellite。纳托系列卫星; 北大西洋公约组织卫星
+NBS 全称:National Bureau of Standards。美国国家标准局
+NDRO 全称:non-destroy readout。无损示值读数
+NEA 全称:near-earth asteroid; earth-approaching asteroid。近地小行星
+NEAR 全称:Near Earth Asteroid Rendezvous。近地小行星探测器
+NEAR Shoemaker probe NEAR-舒梅克号探测器
+NEAT 全称:Near-Earth Asteroid Tracking。近地小行星跟踪
+NEB 1、全称:noise equivalent bandwidth。噪声等效带宽; 2、全称:north equatorial belt。[木星]北赤道带
+NEC 全称:noise equivalent charge。噪声等效电荷
+NED 全称:NASA/IPAC Extragalactic Database。美国航天局河外数据库
+NEMO 1、全称:Neutrino Ettore Majorana Observatory。马约拉纳中微子天文台; 2、全称:Neutrino Mediterranean Observatory。地中海中微子天文台
+NEO 全称:near-earth object; earth-approaching object。近地天体
+NEOSSat 全称:Near-Earth Object Surveillance Satellite。近地天体监测卫星
+NEP 全称:noise equivalent power。噪声等效功率
+NES 全称:near-earth space。近地空间
+NESTOR 全称:Neutrino Extended Submarine Telescope with Oceanographic Research project。涅斯托耳中微子望远镜
+NFW profile 全称:Navarro-Frenk-White density profile。NFW密度轮廓
+NGB 全称:Nambu-Goldstone boson。南部-戈德斯通玻色子
+NGC 全称:New General Catalogue of Nebulae and Clusters of Stars。星云星团新总表
+NGO 全称:New Gravitational wave Observatory。新引力波天文台
+NGS 全称:National Geodetic Survey。美国测地局
+NGST 全称:Next Generation Space Telescope。新一代太空望远镜
+NGT 全称:next generation telescope。下一代望远镜
+NH 全称:northern hemisphere。北半球
+NICER 全称:Neutron star Interior Composition Explorer。中子星内部组成探测器
+NIR 全称:near-infrared; near-IR。近红外
+NLC 全称:noctilucent cloud。夜光云
+NLR 全称:narrow-line region。窄线区
+NLRG 全称:narrow-line radio galaxy。窄线射电星系
+NLTE 全称:non-local thermodynamic equilibrium。非局部热动平衡
+NML Cygni 天鹅NML红外源
+NML Tauri 金牛NML红外源
+NML object 全称:Neugebauer-Martz-Leighton object。NML天体
+NML source 全称:Neugebauer-Martz-Leighton source。NML红外源
+NMR 全称:nuclear magnetic resonance。核磁共振
+NNTB 全称:north north temperate belt。[木星]北北温带
+NNTS 全称:Navy Navigation Technology Satellite。海军导航技术卫星
+NNTT 全称:National New Technology Telescope。美国新技术望远镜
+NOAA 全称:National Oceanic and Atmospheric Administration。美国国家海洋和大气管理局
+NOAO 全称:National Optical Astronomy Observatory。美国国家光学天文台
+NOIRLab 全称:National Optical-Infrared Astronomy Research Laboratory。美国国家光学红外天文研究实验室
+NOS 全称:National Oceanic Survey。美国海洋测量局
+NOT 全称:Nordic Optical Telescope。北欧光学望远镜
+NP 全称:NRAO pulsar。NRAO脉冲星
+NPD 全称:north polar distance。北极距
+NPOI 全称:Navy Precision Optical Interferometer。海军精确光学干涉仪
+NPS 全称:north polar sequence。北极星序
+NPZT 全称:Northern PZT program。北天PZT星纲要
+NQR 全称:nuclear quadrupole resonance。核四极共振
+NRAO 全称:National Radio Astronomy Observatory。美国国家射电天文台
+NRAO VLA Sky Survey 缩写:NVSS。NVSS巡天
+NRAO pulsar 缩写:NP。NRAO脉冲星
+NRF 全称:National Research Foundation of Korea。韩国国家研究基金会
+NRL 全称:Naval Research Laboratory。美国海军科研实验室
+NRT 全称:Nancay radio telescope。南赛射电望远镜
+NSD 全称:nuclear stellar disk。核区恒星盘
+NSERC 全称:Natural Sciences and Engineering Research Council of Canada。加拿大自然科学与工程研究委员会
+NSF 全称:National Science Foundation。国家科学基金会
+NSFC 全称:National Natural Science Foundation of China。中国国家自然科学基金委员会
+NSO 全称:National Solar Observatory。美国国家太阳观测台
+NSSDC 全称:National Space Science Data Center。国家空间科学数据中心
+NST 全称:New Solar Telescope。新太阳望远镜
+NTB 全称:north temperate belt。木星北温带
+NTE 全称:non-thermodynamic equilibrium。非热动平衡
+NTS 全称:Navigation Technology Satellite。NTS系列卫星; 导航技术卫星
+NTT 全称:New Technology Telescope。新技术望远镜
+NVO 全称:National Virtual Observatory,United States。美国国家虚拟天文台
+NVSS 全称:NRAO VLA Sky Survey。NVSS巡天
+Na 全称:sodium。钠
+NaI detector 全称:sodium-iodide detector。碘化钠探测器
+Naar crater 奈埃尔陨击坑
+Nagler eyepiece 纳格勒目镜
+Nahn 轩辕增二十四
+Naiad 海卫三
+Naic crater 奈克陨击坑
+Nain crater 内恩陨击坑
+Nair al Zaurak 火鸟六
+Nairc 耐尔思
+Naju crater 罗州陨击坑
+Nakhla and Chassigny meteorite 缩写:SNC meteorite。SNC陨星
+Nakhla meteorite 纳赫拉陨星
+Nakkar 七公增五
+Nako crater 纳科陨击坑
+Nakshatra 月站
+Naktong Vallis 洛东峡谷
+Nakusp crater 纳卡斯普陨击坑
+Namaka 妊卫二
+Nambu-Goldstone boson 缩写:NGB。南部-戈德斯通玻色子
+Nan crater 难府陨击坑
+Nancay Radio Astronomy Facility 南赛射电天文观测站
+Nancay radio telescope 缩写:NRT。南赛射电望远镜
+Nancy Grace Roman Space Telescope 南希·格雷丝·罗曼空间望远镜
+Nandatianwenners 南大天文学子
+Nanedi Valles 纳内迪峡谷群
+Nanjingdaxue 南京大学
+Nanking 南京
+Nano-JASMINE 全称:Nano-Japan Astrometry Satellite Mission for INfrared Exploration。纳茉莉天体测量卫星
+Nano-Japan Astrometry Satellite Mission for INfrared Exploration 缩写:Nano-JASMINE。纳茉莉天体测量卫星
+Nanrendong 南仁东
+Nansen crater 1、南森环形山; 2、南森陨击坑
+Nantong 南通
+Nantou 南投
+Nanyang 南阳
+Naos 弧矢增二十二
+Napo Vallis 纳波峡谷
+Nardo crater 纳尔多陨击坑
+Naro Vallis 纳罗峡谷
+Narrabri intensity interferometer 纳拉布赖强度干涉仪
+Naruko crater 鸣子陨击坑
+Narvi 土卫三十一
+Naryn crater 纳伦陨击坑
+Nashira 壁垒阵三
+Nasmyth crater 内史密斯环形山
+Nasmyth focus 内氏焦点
+Nasmyth spectrograph 内氏焦点摄谱仪
+Nasreddin Crater 纳斯尔丁坑
+Nassau crater 纳索环形山
+Nat Cavus 纳特凹地
+Nata 娜塔
+Nath 玉井三
+National Aeronautics and Space Administration 缩写:NASA。美国[国家]航天局
+National Astronomical Data Center 缩写:NADC。国家天文科学数据中心
+National Astronomical Observatories, Chinese Academy of Sciences 缩写:NAOC。中国科学院国家天文台
+National Astronomical Observatory of Japan 缩写:NAOJ。日本国立天文台
+National Astronomy and Ionosphere Center 缩写:NAIC。美国国家天文和电离层中心
+National Bureau of Standards 缩写:NBS。美国国家标准局
+National Geodetic Survey 缩写:NGS。美国测地局
+National Natural Science Foundation of China 缩写:NSFC。中国国家自然科学基金委员会
+National New Technology Telescope 缩写:NNTT。美国新技术望远镜
+National Oceanic Survey 缩写:NOS。美国海洋测量局
+National Oceanic and Atmospheric Administration 缩写:NOAA。美国国家海洋和大气管理局
+National Optical Astronomy Observatory 缩写:NOAO。美国国家光学天文台
+National Optical-Infrared Astronomy Research Laboratory 缩写:NOIRLab。美国国家光学红外天文研究实验室
+National Radio Astronomy Observatory 缩写:NRAO。美国国家射电天文台
+National Research Foundation of Korea 缩写:NRF。韩国国家研究基金会
+National Science Foundation 缩写:NSF。国家科学基金会
+National Solar Observatory 缩写:NSO。美国国家太阳观测台
+National Space Science Data Center 缩写:NSSDC。国家空间科学数据中心
+National Virtual Observatory,United States 缩写:NVO。美国国家虚拟天文台
+Natural Sciences and Engineering Research Council of Canada 缩写:NSERC。加拿大自然科学与工程研究委员会
+Naukan crater 瑙坎陨击坑
+Navagraha 九执历
+Naval Research Laboratory 缩写:NRL。美国海军科研实验室
+Navan crater 纳文陨击坑
+Navarro-Frenk-White density profile 缩写:NFW profile。NFW密度轮廓
+Navi 阁道二
+Navier-Stokes equation 纳维耶-斯托克斯方程
+Navigation Technology Satellite 缩写:NTS。NTS系列卫星; 导航技术卫星
+Navua Valles 纳武阿峡谷群
+Navy Navigation Satellite 海军导航卫星
+Navy Navigation Technology Satellite 缩写:NNTS。海军导航技术卫星
+Navy Precision Optical Interferometer 缩写:NPOI。海军精确光学干涉仪
+Nazca crater 纳斯卡陨击坑
+Nb 全称:niobium。铌
+Nd 全称:neodymium。钕
+Ne 全称:neon。氖
+Neander crater 内安德环形山
+Near Earth Asteroid Rendezvous 缩写:NEAR。近地小行星探测器
+Near-Earth Asteroid Tracking 缩写:NEAT。近地小行星跟踪
+Near-Earth Object Surveillance Satellite 缩写:NEOSSat。近地天体监测卫星
+Nearch crater 奈阿尔科环形山
+Nebra Disc 内布拉星象盘
+Neck 亢宿
+Necklace Nebula 项链星云
+Nectar 内克塔
+Nectarian System 酒海地层系统
+Nectaris Basin 酒海盆地
+Nectaris Fossae 内克塔堑沟群
+Nectaris Montes 内克塔山脉
+Needham 李约瑟
+Needle Galaxy 针状星系
+Negele crater 内盖莱陨击坑
+Negril crater 内格里尔陨击坑
+Nei Monggol 内蒙古
+Neil Gehrels Swift Observatory 缩写:Swift。格雷尔斯雨燕天文台
+Neith Regio 涅伊特区
+Neive crater 内伊韦陨击坑
+Nekkar 七公增五
+Nema crater 涅马陨击坑
+Nemausa 禽神星
+Nembus 天大将军三
+Nemesis 涅墨西斯
+Nemo Crater 尼摩坑
+Nengshun 能顺
+Nepa crater 涅帕陨击坑
+Nepenthes 内彭西斯
+Nepenthes Mensae 内彭西斯桌山群
+Nepenthes Patera 内彭西斯山口
+Nepenthes Planum 内彭西斯高原
+Neptune 海王星
+Neptune's ring 海王星环
+Neptune's satellite 海卫
+Neptune-Trojan asteroid 海王星-特洛伊族小行星
+Neptunian ring 海王星环
+Neptunian satellite 海卫
+Nereid 海卫二
+Nereidum Fretum 涅瑞伊德海峡
+Nereidum Montes 涅瑞伊德山脉
+Neretva Vallis 内雷特瓦峡谷
+Nernst crater 能斯特环形山
+Nernst theorem 能斯特定理
+Neso 海卫十三
+Nestor 内斯托
+Nestus Valles 奈斯托斯峡谷群
+Net 毕宿
+Network Nebula 天鹅圈
+Neugebauer-Martz-Leighton object 缩写:NML object。NML天体
+Neugebauer-Martz-Leighton source 缩写:NML source。NML红外源
+Neukum crater 诺伊库姆陨击坑
+Neumann band 诺伊曼条纹
+Neumann function 诺伊曼函数
+Neumann line 诺伊曼线
+Neumayer crater 诺伊迈尔环形山
+Neutrino Ettore Majorana Observatory 缩写:NEMO。马约拉纳中微子天文台
+Neutrino Extended Submarine Telescope with Oceanographic Research project 缩写:NESTOR。涅斯托耳中微子望远镜
+Neutrino Mediterranean Observatory 缩写:NEMO。地中海中微子天文台
+Neutron star Interior Composition Explorer 缩写:NICER。中子星内部组成探测器
+Never crater 涅韦尔陨击坑
+Neves crater 内维什陨击坑
+New Astronomy 新天文学
+New Astronomy Reviews 新天文学评论
+New Bern crater 新伯尔尼陨击坑
+New General Catalogue of Nebulae and Clusters of Stars 缩写:NGC。星云星团新总表
+New Gravitational wave Observatory 缩写:NGO。新引力波天文台
+New Haven crater 纽黑文陨击坑
+New Horizons 新视野号
+New Horizons mission 新视野任务
+New Plymouth crater 新普利茅斯陨击坑
+New Solar Telescope 缩写:NST。新太阳望远镜
+New Style 缩写:N.S.。新历
+New Technology Telescope 缩写:NTT。新技术望远镜
+Newcomb crater 纽康陨击坑
+Newcomb theory 纽康理论
+Newcomb's fundamental constants 纽康基本常数
+Newport crater 纽波特陨击坑
+Newton Tholus 牛顿山丘
+Newton crater 1、牛顿环形山; 2、牛顿陨击坑
+Newton-Raphson method 牛顿-拉弗森方法
+Newtonian cosmology 牛顿宇宙学
+Newtonian focus 牛顿焦点
+Newtonian gauge 牛顿规范
+Newtonian gravitation 牛顿引力
+Newtonian limit 牛顿极限
+Newtonian reflector 牛顿反射望远镜
+Newtonian telescope 牛顿望远镜
+Newtonian time 牛顿时
+Newtonian-Cassegrain telescope 牛顿-卡塞格林望远镜
+Next Generation Space Telescope 缩写:NGST。新一代太空望远镜
+Ney-Allen nebula 奈伊-艾伦星云
+Nganurganity 弧矢增二
+Ngwaikin 吴伟坚
+Nhill crater 尼尔陨击坑
+Ni 全称:nickel。镍
+Nia Chaos 尼亚混杂地
+Nia Fossae 尼亚堑沟群
+Nia Mensa 尼亚桌山
+Nia Tholus 尼亚山丘
+Nia Vallis 尼亚峡谷
+Nibiru 尼比鲁
+Niccoló Longobardo 龙华民
+Nice Observatory 尼斯天文台
+Nicer Vallis 内卡峡谷
+Nicholson Regio 尼科尔森地区
+Nicholson crater 尼科尔森陨击坑
+Nicol prism 尼科尔棱镜
+Nicolas Joseph Raux 罗广祥
+Niehaisheng 聂海胜
+Nier crater 尼尔陨击坑
+Niesten crater 尼斯滕陨击坑
+Nif crater 尼夫陨击坑
+Niger Vallis 尼日尔峡谷
+Nihal 厕二
+Nikolaus Smogulecki 穆尼阁
+Nili Fossae 尼罗堑沟群
+Nili Patera 尼罗山口
+Nili Planum 尼罗高原
+Nili Tholus 尼罗山丘
+Niliacus Lacus 尼罗湖
+Nilokeras 尼罗角
+Nilokeras Fossa 尼罗角堑沟
+Nilokeras Mensae 尼罗角桌山群
+Nilokeras Scopulus 尼罗角断崖
+Nilosyrtis 尼罗瑟提斯
+Nilosyrtis Mensae 尼罗瑟提斯桌山群
+Nilus Chaos 尼罗混杂地
+Nilus Dorsa 尼罗山脊群
+Nilus Mensae 尼罗桌山群
+Nimbus 雨云系列气象卫星
+Ningbo 宁波
+Ningxia 宁夏
+Niobe 司石星
+Nipigon crater 尼皮贡陨击坑
+Niquero crater 尼克罗陨击坑
+Nirgal Vallis 尼尔加尔峡谷
+Nishina crater 仁科芳雄环形山
+Nitro crater 奈特罗陨击坑
+Nix 冥卫二
+Nix Olympica 奥林波斯雪顶
+Niépce crater 尼埃普斯环形山
+Njesko crater 涅斯科陨击坑
+No 全称:nobelium。锘
+Noachis 挪亚
+Noachis Terra 挪亚台地
+Nobel crater 诺贝尔环形山
+Nobeyama Radio Observatory 野边山射电天文台
+Nobile crater 诺毕尔环形山
+Noc Cavus 诺茨凹地
+Noctis Fossae 诺克提斯堑沟群
+Noctis Labyrinthus 诺克提斯沟网
+Noctis Tholus 诺克提斯山丘
+Noctua 猫头鹰座
+Nodus I 上弼; 紫微右垣四
+Nodus Primus 上弼; 紫微右垣四
+Nodus Secundus 天厨一
+Nodus Ⅱ 天厨一
+Noether's theorem 纳脱定理
+Noma crater 诺马陨击坑
+Nonius crater 努内斯环形山
+Noord crater 诺德陨击坑
+Nor 全称:Norma。矩尺座
+Nordenskiöld crater 努登舍尔德陨击坑
+Nordic Optical Telescope 缩写:NOT。北欧光学望远镜
+Nordtvedt effect 诺特维特效应
+Norma 缩写:Nor。矩尺座
+Norma arm 矩尺臂
+North America Nebula 北美星云
+North America plate 北美板块
+North Atlantic Treaty Organization Satellite 缩写:NATO Satellite。纳托系列卫星; 北大西洋公约组织卫星
+North Galactic Cap 北银冠
+North Galactic Pole 北银极
+North Polar Region 北极区
+North Star 勾陈一; 北极星
+Northern Coalsack 北煤袋
+Northern Cross 北十字
+Northern Dipper 北斗[七星]
+Northern PZT program 缩写:NPZT。北天PZT星纲要
+Northern Palace Black Tor 北宫玄武
+Northern Palace Black Warrior 北宫玄武
+Northern Proper Motion Catalog 北天自行星表
+Northern tropic 北回归线
+Northport crater 诺斯波特陨击坑
+Nova Cygni 天鹅座新星
+Novara crater 诺瓦拉陨击坑
+November meteors 十一月流星雨
+November swarm 十一月流星雨
+Nozomi 希望号
+Np 全称:neptunium。镎
+Nqutu crater 恩古图陨击坑
+NuSTAR 全称:Nuclear Spectroscopic Telescope Array。核分光望远镜阵
+Nubecula Minor 小麦哲伦云
+Nubeculae 麦哲伦云
+Nuclear Spectroscopic Telescope Array 缩写:NuSTAR。核分光望远镜阵
+Nuffield Radio Astronomy Laboratories 纳菲尔德射电天文实验室
+Numerov crater 努梅罗夫环形山
+Nune crater 努内陨击坑
+Nunki 斗宿四
+Nuovo Cimento C 新试验C辑
+Nusakan 贯索三
+Nushaba 箕宿一
+Nut 努特
+Nutak crater 努塔克陨击坑
+Nuwa 女娲星
+Nybyen crater 尼比恩陨击坑
+Nyquist criterion 尼奎斯特判据
+Nyquist formula 尼奎斯特公式
+Nyquist frequency 尼奎斯特频率
+Nyquist limit 尼奎斯特极限
+Nyquist sampling 尼奎斯特采样
+Nysa 侍神星
+Nysa family 侍神星族
+Nördlinger Ries crater 诺德林格里斯陨星坑
+Nüsl crater 努斯尔环形山
+O 全称:oxygen。氧
+O association O星协
+O cluster O星团
+O dwarf O型矮星
+O giant O型巨星
+O magnitude O星等
+O star O型星
+O subdwarf O型亚矮星
+O supergiant O型超巨星
+O'Day crater 奥戴环形山
+O-C 观测值减计算值
+O-Ne-Mg white dwarf 氧氖镁白矮星
+O-type star O型星
+O.S. 全称:Old Style。旧历
+OA 全称:Ohio A。俄亥俄州立大学射电源A表
+OAO 全称:Orbiting Astronomical Observatory。轨道天文台
+OAO-3 哥白尼天文卫星
+OB association OB星协
+OB cluster OB星团
+OB star OB型星
+OB supergiant OB型超巨星
+OCDM model 全称:Open Cold Dark Matter model。冷暗物质开模型
+OD 全称:optical density。光学密度
+OG 全称:objective; object glass。物镜
+OGLE 全称:Optical Gravitational Lensing Experiment。光学引力透镜实验
+OGO 全称:Orbiting Geophysical Observatory。轨道地球物理台
+OH absorption 羟基吸收; OH吸收
+OH cloud 羟基云; OH云
+OH emission 羟基发射; OH发射
+OH line 羟基谱线; OH谱线
+OH maser 全称:hydroxyl maser。羟基微波激射; 羟基脉泽
+OH radical 全称:hydroxyl radical。羟基
+OH source 羟基源; OH源
+OH star 羟基星; OH星
+OH-IR source 羟基红外源
+OH/IR source 羟基红外源; OH/IR源
+OH/IR star 羟基红外星; OH/IR星
+OHANA 全称:Optical Hawaiian Array for Nanoradian Astronomy。夏威夷纳弧度天文光学阵
+OHP 全称:Haute Provence Observatory。上普罗旺斯天文台
+OIFITS 全称:Optical Interferometry Exchange Format。光学干涉FITS格式
+OMC 全称:Orion Molecular Cloud。猎户座分子云
+OMC-1 全称:Orion Molecular Cloud 1。OMC-1分子云
+OMC-2 全称:Orion Molecular Cloud 2。OMC-2分子云
+OMOTENSHI 全称:Outstanding Moon exploration Technologies demonstrated by Nano Semi-Hard Impactor。卓越探月技术验证超小型硬着陆器; 御持成号[月球探测器]
+ONOGO type time-signal ONOGO式时号
+OP 1、全称:Observatoire de Paris。巴黎天文台; 2、全称:Paris Observatory。巴黎天文台
+ORB 全称:Observatoire Royal de Belgique。比利时皇家天文台
+ORFEUS-SPAS 全称:Orbiting Retrievable Far and Extreme Ultraviolet Spectrometer - Astro Shuttle Pallet Satellite。航天飞机板台天文卫星奥菲斯任务
+ORM 全称:Observatorio del Roque de los Muchachos。穆查丘斯罗克天文台
+ORS 全称:Octahedral Research Satellite。八面体系列科学卫星
+ORT 全称:Ooty Radio Telescope。乌塔卡蒙德射电望远镜
+OSCAR 全称:Orbiting Satellite Carrying Amateur Radio。奥斯卡系列卫星
+OSIRIS-REx 全称:Origins Spectral Interpretation Resource Identification Security Regolith Explorer。起源-光谱-资源-安全-风化层探测器; 奥西里斯王号[小行星探测器]
+OSO 全称:Orbiting Solar Observatory。轨道太阳观测台
+OTCCD 全称:orthogonal transfer CCD。正交转移CCD
+OTF 全称:optical transfer function。光学转移函数
+OV 全称:Orbiting Vehicle。OV轨道飞行器
+OV-France 全称:Observatoire Virtuel France。法国虚拟天文台
+OVRO 全称:Owens Valley Radio Observatory。欧文斯谷射电天文台
+OVV quasar 全称:optically violent variable quasar; optically violently variable quasar。光剧变类星体; OVV类星体
+OWL 1、全称:Orbiting Wide-angle Light Collectors。广角集光卫星; 2、全称:Overwhelmingly Large Telescope。夜枭望远镜
+Oberon 天卫四
+Oberth crater 奥伯特环形山
+Obock crater 奥博克陨击坑
+Obolon' crater 奥博隆陨星坑
+Obruchev crater 奥布鲁切夫环形山
+Observatoire Royal de Belgique 缩写:ORB。比利时皇家天文台
+Observatoire Virtuel France 缩写:OV-France。法国虚拟天文台
+Observatoire de Paris 缩写:OP。巴黎天文台
+Observatorio del Roque de los Muchachos 缩写:ORM。穆查丘斯罗克天文台
+Observatorio del Teide 泰德峰天文台
+Observatory 天文台
+Ocampo crater 奥坎波陨击坑
+Oceana 奥希阿纳
+Oceanidum Fossa 俄刻阿尼得堑沟
+Oceanidum Mons 俄刻阿尼得山
+Oceanus Procellarum 风暴洋
+Ochakov crater 奥恰科夫陨击坑
+Ochus Valles 奥科斯峡谷群
+Oct 全称:Octans。南极座
+Octahedral Research Satellite 缩写:ORS。八面体系列科学卫星
+Octans 缩写:Oct。南极座
+Octantis Cavi 八分仪凹地群
+Octantis Mons 八分仪山
+Oculus Boreus 毕宿一
+Odessa Astronomical Observatory 敖德萨天文台
+Odessa crater 敖德萨陨星坑
+Odin 奥丁号
+Odysseus 奥德赛
+Odysseus crater 奥德赛环形山
+Oe star Oe型星
+Oef star Oef型星
+Oenotria Cavi 欧伊诺特里亚凹地群
+Oenotria Plana 欧伊诺特里亚高原群
+Oenotria Scopuli 欧伊诺特里亚断崖群
+Oenotria Scopulus 欧伊诺特里亚断崖
+Of star Of型星
+Offner relay system 奥夫纳中继光学系统
+Oglala crater 奥格拉拉陨击坑
+Ogygis Regio 俄古革斯区
+Ogygis Rupes 俄古革斯峭壁
+Ogygis Undae 俄古革斯沙丘群
+Ohara crater 大原陨击坑
+Ohio A 缩写:OA。俄亥俄州立大学射电源A表
+Ohio Sky Survey 俄亥俄射电巡天
+Ohio State University Radio Observatory 俄亥俄州立大学射电天文台
+Ohlson galactic plane 奥尔森银道面
+Ohlson galactic pole 奥尔森银极
+Ohm crater 欧姆环形山
+Ohsumi 大隅号
+Oituz crater 奥伊图兹陨击坑
+Okab 吴越
+Okavango Valles 奥卡万戈峡谷群
+Okda 外屏七
+Oken crater 奥肯环形山
+Okhotsk crater 鄂霍次克陨击坑
+Okotoks crater 奥科托克斯陨击坑
+Olbers crater 奥伯斯环形山
+Olbers' method 奥伯斯方法
+Olbers' paradox 奥伯斯佯谬
+Olbersia 奥伯斯
+Olcott crater 奥尔科特环形山
+Old Style 缩写:O.S.。旧历
+Olenek crater 奥列尼奥克陨击坑
+Oljato 奥加托
+Olom crater 奥洛姆陨击坑
+Oltis Valles 奥蒂斯峡谷群
+Olympia 奥林匹亚
+Olympia Cavi 奥林匹亚凹地群
+Olympia Mensae 奥林匹亚桌山群
+Olympia Planitia 奥林匹亚平原
+Olympia Planum 奥林匹亚高原
+Olympia Rupēs 奥林匹亚峭壁群
+Olympia Undae 奥林匹亚沙丘群
+Olympica Fossae 奥林波斯堑沟群
+Olympus Maculae 奥林波斯暗斑群
+Olympus Mons 奥林波斯山
+Olympus Paterae 奥林波斯山口群
+Olympus Rupes 奥林波斯峭壁
+Omar Khayyam crater 欧玛尔·海亚姆环形山
+Ome crater 青梅陨击坑
+Omega Nebula ω星云
+On the Revolution of the Heavenly Spheres 《天体运行论》
+Ondrejov Astrophysical Observatory 昂德列约夫天体物理台
+One-Mile Telescope 一英里射电望远镜
+Onon crater 鄂嫩陨击坑
+Onsala Space Observatory 翁萨拉天文台
+Oodnadatta crater 乌德纳达塔陨击坑
+Oort cloud 奥尔特云
+Oort cloud comet 奥尔特云彗星
+Oort cloud object 奥尔特云天体
+Oort comet cloud 奥尔特彗星云
+Oort constant 奥尔特常数
+Oort crater 奥尔特坑
+Oort cycle 奥尔特周
+Oort formulae 奥尔特公式
+Oort limit 奥尔特极限
+Oort's constant 奥尔特常数
+Oort's formulae 奥尔特公式
+Oort-Spitzer hypothesis 奥尔特-斯皮策假说
+Oort-Spitzer mechanism 奥尔特-斯皮策机制
+Oosterhoff class 奥斯特霍夫类型
+Oosterhoff group 奥斯特霍夫星群
+Ootacamund Radio Astronomy Centre 乌塔卡蒙德射电天文中心
+Ooty Radio Telescope 缩写:ORT。乌塔卡蒙德射电望远镜
+Opaque Era 不透明时期
+Open Cold Dark Matter model 缩写:OCDM model。冷暗物质开模型
+Oph 全称:Ophiuchus。蛇夫座
+Ophelia 1、天卫七; 2、奥菲丽亚
+Ophir 俄斐
+Ophir Catenae 俄斐坑链群
+Ophir Cavus 俄斐凹地
+Ophir Chasma 俄斐深谷
+Ophir Labes 俄斐坡地
+Ophir Mensa 俄斐桌山
+Ophir Planum 俄斐高原
+Ophiuchid meteor shower 蛇夫流星雨
+Ophiuchids 蛇夫流星群
+Ophiuchus 缩写:Oph。蛇夫座
+Ophiuchus Ridge 蛇夫脊
+Opik theory 欧皮克理论
+Opik-Oort cloud 欧皮克-奥尔特云
+Oppenheimer crater 奥本海默环形山
+Oppenheimer-Volkoff limit 奥本海默-沃尔科夫极限
+Opportunity Mars Exploration Rover 机遇号火星探测车
+Optical Gravitational Lensing Experiment 缩写:OGLE。光学引力透镜实验
+Optical Hawaiian Array for Nanoradian Astronomy 缩写:OHANA。夏威夷纳弧度天文光学阵
+Optical Interferometry Exchange Format 缩写:OIFITS。光学干涉FITS格式
+Oraibi crater 奥赖比陨击坑
+Orbit 轨道电讯卫星
+Orbiting Astronomical Observatory 缩写:OAO。轨道天文台
+Orbiting Geophysical Observatory 缩写:OGO。轨道地球物理台
+Orbiting Retrievable Far and Extreme Ultraviolet Spectrometer - Astro Shuttle Pallet Satellite 缩写:ORFEUS-SPAS。航天飞机板台天文卫星奥菲斯任务
+Orbiting Satellite Carrying Amateur Radio 缩写:OSCAR。奥斯卡系列卫星
+Orbiting Solar Observatory 缩写:OSO。轨道太阳观测台
+Orbiting Vehicle 缩写:OV。OV轨道飞行器
+Orbiting Wide-angle Light Collectors 缩写:OWL。广角集光卫星
+Orcus 亡神星
+Orcus Patera 俄耳枯斯山口
+Ore crater 奥雷陨击坑
+Oreol 日晕号
+Oresme crater 奥雷姆环形山
+Orgueil meteorite 奥盖尔陨星
+Ori 全称:Orion。猎户座
+Orientale Basin 东海盆地
+Origem Loop 猎户双子圈
+Original Gas hypothesis 原气说
+Origins Spectral Interpretation Resource Identification Security Regolith Explorer 缩写:OSIRIS-REx。起源-光谱-资源-安全-风化层探测器; 奥西里斯王号[小行星探测器]
+Orinda crater 奥林达陨击坑
+Orion 缩写:Ori。猎户座
+Orion Arm 猎户臂
+Orion Loop 猎户圈
+Orion Molecular Cloud 缩写:OMC。猎户座分子云
+Orion Molecular Cloud 1 缩写:OMC-1。OMC-1分子云
+Orion Molecular Cloud 2 缩写:OMC-2。OMC-2分子云
+Orion Nebula 猎户[大]星云
+Orion aggregate 猎户星集
+Orion association 猎户星协
+Orion population star 猎户族恒星
+Orion spectrum 猎户光谱
+Orion spur 猎户射电支
+Orion variable 猎户型变星
+Orion's belt 猎户腰带
+Orion's sword 猎户腰刀
+Orion-type flare star 猎户型耀星
+Orionid meteor shower 猎户座流星雨
+Orionids 猎户流星群
+Orlov crater 奥尔洛夫环形山
+Orson Welles crater 奥森·韦尔斯陨击坑
+Orthosie 木卫三十五
+Ortygia 俄耳梯癸亚
+Ortygia Colles 俄耳梯癸亚小丘群
+Ortygia Tholus 俄耳梯癸亚山丘
+Os 全称:osmium。锇
+Oschin Telescope 奥欣望远镜
+Oslo University Observatory 奥斯陆大学天文台
+Ostriker-Peebles criterion 奥斯特里克-皮布尔斯判据
+Ostriker-Vishniac effect 奥斯特里克-维希尼克效应
+Ostrov crater 奥斯特罗夫陨击坑
+Ostwald crater 奥斯特瓦尔德环形山
+Osuga Valles 奥苏加峡谷群
+Osumi 大隅号
+Otaared Planitia 欧泰埃雷德平原
+Oti Fossae 奥蒂堑沟群
+Otohime Saxum 乙姬岩
+Ottawa River Solar Observatory 渥太华河太阳观测台
+Otto Struve Telescope 斯特鲁维望远镜
+Ottumwa crater 奥塔姆瓦陨击坑
+Oudemans crater 奥德曼斯陨击坑
+Oujianquan 区鉴泉
+Outer Arm 外缘旋臂
+Outstanding Moon exploration Technologies demonstrated by Nano Semi-Hard Impactor 缩写:OMOTENSHI。卓越探月技术验证超小型硬着陆器; 御持成号[月球探测器]
+Ouyangtianjing 欧阳天晶
+Ouyangziyuan 欧阳自远
+Ovda Regio 奥华特地区
+Overwhelmingly Large Telescope 缩写:OWL。夜枭望远镜
+Owen crater 欧文陨击坑
+Owens Valley Radio Observatory 缩写:OVRO。欧文斯谷射电天文台
+Owl Cluster 夜枭星团
+Owl Nebula 夜枭星云
+Ox 牛宿
+Oxia Chaos 奥克夏混杂地
+Oxia Colles 奥克夏小丘群
+Oxia Palus 奥克夏沼
+Oxia Planum 奥克夏高原
+Oxus 奥克苏斯
+Oxus Cavus 奥克苏斯凹地
+Oxus Patera 奥克苏斯山口
+Oyama crater 大山陨击坑
+Ozma project 奥兹玛计划
+Ozza Mons 奥扎山
+P 全称:phosphorus。磷
+P Cyg star 全称:P-Cygni star; P-Cygni type star。天鹅P型星
+P branch P谱带
+P magnitude P星等
+P wave 全称:primary wave。P波; 初波; 地震纵波
+P-Cygni line profile 天鹅P谱线轮廓
+P-Cygni phenomenon 天鹅P现象
+P-Cygni profile 天鹅P谱线轮廓
+P-Cygni star 缩写:P Cyg star。天鹅P型星
+P-Cygni type star 缩写:P Cyg star。天鹅P型星
+P-Cygni variable 天鹅P型变星
+P-L relation 全称:period-luminosity relation。周光关系
+P-L-C relation 全称:period-luminosity-color relation。周光色关系
+P-class asteroid P 型小行星
+P-type asteroid P型小行星
+P.M. 全称:proper motion。自行
+P3M algorithm 全称:particle-particle-particle-mesh algorithm。质点-质点-质点-网格算法
+P3M code 全称:particle-particle-particle-mesh code。质点-质点-质点-网格程序
+PA 全称:position angle。位置角
+PAAS 全称:Publications of the American Astronomical Society。美国天文学会会刊
+PAH 全称:polycyclic aromatic hydrocarbon。多环芳烃
+PAMELA 全称:Payload for Antimatter Matter Exploration and Light-nuclei Astrophysics。PAMELA实验
+PAPA 全称:precision analog photon address。精密模拟光子定位
+PASA 全称:Proceedings of the Astronomical Society of Australia。澳大利亚天文学会会刊
+PASJ 全称:Publications of the Astronomical Society of Japan。日本天文学会会刊
+PASP 全称:Publications of the Astronomical Society of the Pacific。太平洋天文学会会刊
+PCA 1、全称:polar cap absorption。极冠吸收; 2、全称:principal component analysis。主成分分析
+PD 全称:Potsdamer Durchmusterung。波茨坦巡天星表
+PDE 全称:pure density evolution。纯密度演化
+PDF 全称:probability distribution function。概率分布函数
+PDR 全称:photo-dissociation region。光致离解区
+PDS 1、全称:photo-digitizing system。图像数字仪; 2、全称:photometric data system。测光数据仪
+PEM 全称:Photoelastic modulator。光弹调制器
+PG survey 全称:Palomar Green survey。帕洛玛-格林巡天
+PGC 全称:Preliminary General Catalogue。博斯总星表初编
+PHA 全称:potentially hazardous asteroid。潜在威胁小行星
+PHL 全称:Palomar-Haro-Luyten Catalogue of Blue Stellar Objects。PHL蓝星体表
+PIB model 全称:primordial isocurvature baryon model。原初等曲率重子模型
+PIONIER 全称:Precision Integrated-Optics Near-infrared Imaging ExpeRiment。精密集成光学近红外成像实验
+PKS 全称:Parkes Catalogue of Radio Sources。帕克斯射电源表
+PLATO 1、全称:PLAnetary Transits and Oscillations of stars。柏拉图探测器; 2、全称:Planetary Transits and Oscillations of stars。行星凌星与星震卫星; 柏拉图卫星
+PLAnetary Transits and Oscillations of stars 缩写:PLATO。柏拉图探测器
+PLE 全称:pure luminosity evolution。纯光度演化
+PM 全称:post meridiem。下午
+PM algorithm 全称:particle-mesh algorithm。质点-网格算法
+PM code 全称:Particle Mesh code。质点-网格程序
+PMC 全称:polar mesospheric cloud。极地中层云
+PMS 全称:pre-main sequence。主序前
+PMS object 全称:pre-main sequence object。主序前天体
+PMS star 全称:pre-main sequence star。主序前星
+PN 全称:planetary nebula。行星状星云
+POGO 全称:Polar Orbiting Geophysical Observatory。极轨地球物理台
+POLARIS 全称:Polar Motion Analysis by Radio Interferometric Surveying。射电干涉测量极移计划
+POP mirror 弹出镜
+POSS 全称:Palomar Observatory Sky Survey。帕洛玛天图
+PP 全称:Pulkovo pulsar。普尔科沃脉冲星
+PP algorithm 全称:particle-particle algorithm。质点-质点算法
+PPD 全称:Potsdamer Photometrische Durchmusterung。波茨坦测光星表
+PPM 全称:piecewise parabolic method。逐段抛物线法
+PPM Star Catalogue 全称:Positions and Proper Motions Star Catalogue。PPM恒星位置和自行表
+PPN formalism 全称:parameterized post-Newtonian formalism。参数化后牛顿形式
+PS mass function 全称:Press-Schechter mass function。普雷斯-谢克特质量函数
+PSCz survey 全称:Point Source Catalog Redshift Survey。点源星表红移巡天
+PSD 全称:Potsdamer Spektral-Durchmusterung。波茨坦恒星光谱表
+PSF 全称:point spread function。点扩散函数
+PSP 全称:Parker Solar Probe。帕克太阳探测器
+PSR 全称:pulsar。脉冲星
+PSS 1、全称:Palomar Sky Survey。帕洛玛天图; 2、全称:Planetary Space Science。行星空间科学
+PSS-Ⅰ 全称:Palomar Sky Survey-Ⅰ。帕洛玛天图-Ⅰ
+PSS-Ⅱ 全称:Palomar Sky Survey-Ⅱ。帕洛玛天图-Ⅱ
+PST 全称:Pacific standard time。太平洋标准时
+PTA 全称:pulsar timing array。脉冲星计时阵
+PTTI 全称:precise time and time interval。精密时刻和时间间隔
+PUNCH 全称:Polarimeter to Unify the Corona and Heliosphere。日冕和日球层偏振仪; 庞奇卫星
+PV Telescopii star 望远镜 PV 型星
+PVD 全称:pairwise velocity dispersion。成对速度弥散
+PWN 全称:pulsar wind nebula。脉冲星风星云
+PZT 全称:photographic zenith tube。照相天顶筒
+Pa 全称:protactinium。镤
+Paaliaq 土卫二十
+Pabo crater 帕博陨击坑
+Pabu 曝卫
+Pacific plate 太平洋板块
+Pacific standard time 缩写:PST。太平洋标准时
+Pacman Nebula 吃豆人星云
+Padua University Astrophysical Observatory 帕多瓦大学天体物理台
+Padus Vallis 帕杜斯峡谷
+Pai crater 拜县陨击坑
+Paikauhale 心宿三
+Paks crater 保克什陨击坑
+Palana crater 帕拉纳陨击坑
+Palermo Circle 巴勒莫环形仪
+Pales 牧神星
+Palikir crater 帕利克尔陨击坑
+Pallacopas Vallis 帕拉科帕斯峡谷
+Pallas 智神星
+Pallene 土卫三十三
+Palomar Green survey 缩写:PG survey。帕洛玛-格林巡天
+Palomar Observatory 帕洛玛天文台
+Palomar Observatory Sky Survey 缩写:POSS。帕洛玛天图
+Palomar Sky Survey 缩写:PSS。帕洛玛天图
+Palomar Sky Survey-Ⅰ 缩写:PSS-Ⅰ。帕洛玛天图-Ⅰ
+Palomar Sky Survey-Ⅱ 缩写:PSS-Ⅱ。帕洛玛天图-Ⅱ
+Palomar-Haro-Luyten Catalogue of Blue Stellar Objects 缩写:PHL。PHL蓝星体表
+Palos crater 帕洛斯陨击坑
+Palus Epidemiarum 疫沼
+Palus Nebularum 雾沼
+Palus Putredinis 腐沼
+Palus Somni 梦沼
+Pan 土卫十八
+Pan-STARRS 全称:Panoramic Survey Telescope and Rapid Response System。泛星计划
+Pancha-Siddhantika 五种历数全书
+Panchaia 潘凯亚
+Panchaia Rupēs 潘凯亚峭壁群
+Pandia 木卫六十五
+Pandora 1、土卫十七; 2、祸神星
+Pandorae Fretum 潘多拉海峡
+Paneth crater 帕内特环形山
+Pangboche crater 彭格博切陨击坑
+Panjunhua 潘君骅
+Panopaea 蟹神星
+Panoramic Survey Telescope and Rapid Response System 缩写:Pan-STARRS。泛星计划
+Papaleksi crater 帕帕列克西环形山
+Paranal Observatory 帕拉纳尔天文台
+Paraná Valles 巴拉那峡谷群
+Paris 帕里斯
+Paris Observatory 缩写:OP。巴黎天文台
+Paris classification 巴黎光谱分类
+Parker Solar Probe 缩写:PSP。帕克太阳探测器
+Parker instability 帕克不稳定性
+Parker model 帕克模型
+Parkes Catalogue of Radio Sources 缩写:PKS。帕克斯射电源表
+Parkes Observatory 帕克斯天文台
+Parkes Radio Telescope 帕克斯射电望远镜
+Parkhurst crater 帕克赫斯特环形山
+Paros crater 帕罗斯陨击坑
+Parrot crater 帕罗特环形山
+Parthenope 海妖星
+Particle Mesh code 缩写:PM code。质点-网格程序
+Parva Planum 帕尔瓦高原
+Pascal crater 帕斯卡环形山
+Pascal triangle 帕斯卡三角
+Paschal table 复活节历表
+Paschen continuum 帕邢连续区
+Paschen crater 帕邢环形山
+Paschen limit 帕邢系限
+Paschen lines 帕邢谱线
+Paschen series 帕邢线系
+Paschen-Back effect 帕邢-巴克效应
+Pasiphae 木卫八
+Pasithea Dorsum 帕西忒亚山脊
+Pasithee 木卫三十八
+Pasteur crater 1、巴斯德环形山; 2、巴斯德陨击坑
+Patapsco Vallis 帕塔普斯科峡谷
+Patientia 忍神星
+Patroclus 帕特洛克鲁斯
+Patroclus group 帕特洛克鲁斯群
+Pau crater 波城陨击坑
+Paul Wild Observatory 怀尔德天文台
+Paul trap 保罗俘获
+Paul-Baker telescope 保罗-贝克望远镜
+Pauli crater 泡利环形山
+Pav 全称:Pavo。孔雀座
+Pavlov crater 巴甫洛夫环形山
+Pavo 缩写:Pav。孔雀座
+Pavonis Chasma 孔雀深谷
+Pavonis Fossae 孔雀堑沟群
+Pavonis Mons 孔雀山
+Pavonis Sulci 孔雀沟脊群
+Pawsey crater 波西环形山
+Payload for Antimatter Matter Exploration and Light-nuclei Astrophysics 缩写:PAMELA。PAMELA实验
+Pb 全称:lead。铅
+Pd 全称:palladium。钯
+PdBI 全称:Plateau de Bure Interferometer。比尔高原干涉仪
+PeVatron 拍电子伏特[宇宙线]加速源
+Peace Vallis 皮斯峡谷
+Peacock 孔雀十一
+Peary crater 皮里环形山
+Pebas crater 佩瓦斯陨击坑
+Pecci-Quinn symmetry 佩奇-奎因对称性
+Peekskill meteorite 皮克斯基尔陨星
+Peg 全称:Pegasus。飞马座
+Pegasus 1、缩写:Peg。飞马座; 2、飞马座
+Pegasus Irregular Galaxy 飞马座不规则星系
+Pegasus Ridge 飞马脊
+Peilisheng 裴丽生
+Peixe crater 佩希陨击坑
+Peking 北京
+Pele 比利山
+Pelican Nebula 鹈鹕星云
+Peneus Mensa 佩纽斯桌山
+Peneus Mons 佩纽斯山
+Peneus Palus 佩纽斯沼
+Peneus Patera 佩纽斯山口
+Penghuanwu 彭桓武
+Pennae Caudalis 螣蛇三
+Penrose diagram 彭罗斯图
+Penrose process 彭罗斯过程
+Penrose singularity theorem 彭罗斯奇点定理
+Penticton crater 彭蒂克顿陨击坑
+Pentland crater 彭特兰环形山
+Per 全称:Perseus。英仙座
+Peraea Cavus 比利亚凹地
+Peraea Mons 比利亚山
+Perdita 天卫二十五
+Perepelkin crater 1、佩列佩尔金环形山; 2、佩列皮奥尔金陨击坑
+Peridier crater 佩里迪耶陨击坑
+Perkin crater 珀金环形山
+Perkins Observatory 珀金斯天文台
+Perot-Fabry interferometer 珀罗-法布里干涉仪
+Perot-Fabry spectrometer 珀罗-法布里分光计
+Perrine crater 珀赖因环形山
+Perrotin crater 佩罗坦陨击坑
+Persbo crater 佩尔斯博陨击坑
+Perseid meteor shower 1、英仙流星雨; 2、英仙流星雨
+Perseids 英仙流星群
+Perseids-September meteors 英仙九月流星群
+Perseus 缩写:Per。英仙座
+Perseus A 英仙射电源A
+Perseus Arm 英仙臂
+Perseus OB association 英仙OB星协
+Perseus association 英仙星协
+Perseus chimney 英仙通道
+Perseus cluster 英仙星团
+Perseus cluster of galaxies 英仙星系团
+Perseus-Pisces supercluster 英仙-双鱼超星系团
+Perseverance rover 毅力号火星车
+Perth Observatory 珀斯天文台
+Peta crater 派塔陨击坑
+Petermann crater 彼得曼环形山
+Peterpau 鲍德熹
+Petit-Prince 香卫一
+Petropavlovskiy crater 彼得罗帕夫洛夫斯基环形山
+Pettit crater 佩蒂特陨击坑
+Petzval surface 珀兹伐表面
+Pfaffian 普法夫[多项]式
+Pfund continuum 普丰德连续区
+Pfund lines 普丰德谱线
+Pfund series 普丰德线系
+Phacd 天玑; 北斗三
+Phachd 天玑; 北斗三
+Phack 丈人一
+Phact 丈人一
+Phad 1、丈人一; 2、天玑; 北斗三
+Phaenna Dorsum 法厄娜山脊
+Phaenomena 《物象》
+Phaet 丈人一
+Phaethon 法厄松
+Phaethontis 法厄同
+Phakt 丈人一
+Phase-Referenced Imaging and Microarcsecond Astrometry 缩写:Prima。相参成像和微角秒天体测量
+Phe 全称:Phoenix。凤凰座
+Phecda 天玑; 北斗三
+Phedra crater 法德拉陨击坑
+Pherasauval 司非二
+Pherkad 太子; 北极一
+Pherkad Minor 勾陈增五
+Philadelphia crater 费城陨击坑
+Philae lander 菲莱号着陆器
+Philippus Grimaldi 闵明我
+Phillips band 菲利普斯谱带
+Phillips crater 1、菲利普斯环形山; 2、菲利普斯陨击坑
+Phillips relation 菲利普斯关系
+Philolaus crater 菲洛劳斯环形山
+Philophrosyne 木卫五十八
+Philosophiæ Naturalis Principia Mathematica 缩写:Principia。自然哲学的数学原理
+Phison 比逊河
+Phison Patera 比逊山口
+Phison Rupes 比逊峭壁
+Phlegethon Catena 佛勒革同坑链
+Phlegra 佛勒格拉
+Phlegra Dorsa 佛勒格拉山脊群
+Phlegra Montes 佛勒格拉山脉
+Phobos 火卫一
+Phocaea 福后星
+Phocaea group 福后星群
+Phoebe 土卫九
+Phoenicid meteor shower 凤凰流星雨
+Phoenicids 凤凰流星群
+Phoenicis Lacus 凤凰湖
+Phoenix 缩写:Phe。凤凰座
+Phoenix Irregular Galaxy 凤凰座不规则星系
+Phoenix Universe 凤凰宇宙模型
+Pholus 福鲁斯
+Phon crater 喷县陨击坑
+Phospher 启明星
+Phospherus 启明星
+Photo Flo 除水渍液
+Photoelastic modulator 缩写:PEM。光弹调制器
+Phrixi Regio 佛里克索斯区
+Phrixi Rupes 佛里克索斯峭壁
+Physical Review D 物理学评论D辑
+Piautos 爟二
+Piazzi Smyth crater 皮亚齐·史密斯环形山
+Piazzi crater 皮亚齐环形山
+Piazzia 皮亚齐
+Pic 全称:Pictor。绘架座
+Pic du Midi Observatory 日中峰天文台
+Pica crater 皮卡陨击坑
+Piccard 皮卡尔
+Piccard Mons 皮卡尔山
+Piccolomini crater 皮科洛米尼环形山
+Pickering crater 皮克林陨击坑
+Pickering lines 皮克林谱线
+Pickering series 皮克林线系
+Pictet crater 皮克泰环形山
+Pictor 缩写:Pic。绘架座
+Pictun 匹克顿
+Pierre Auger Observatory 皮埃尔·俄歇天文台
+Pigafetta Montes 皮加费塔山脉
+Piktun 匹克顿
+Pillars of Creation 创生之柱
+Pilâtre crater 皮拉特尔环形山
+Pindus Mons 品都斯山
+Pingle crater 平乐陨击坑
+Pinglo crater 平罗陨击坑
+Pingré crater 潘格雷环形山
+Pingtang 平塘
+Pinwheel Galaxy 风车星系
+Pioneer 先驱者
+Pioneer Terra 先驱者号台地
+Pioneer-Venus 先驱者-金星号
+Pipe Nebula 烟斗星云
+Pipirima 尾宿增二
+Piri Rupes 皮里峭壁
+Pirquet crater 皮尔凯环形山
+Pirx Crater 珀珂斯坑
+Pisces 1、缩写:Psc。双鱼宫; 娵訾; 亥宫; 2、缩写:Psc。双鱼座
+Pisces-Perseus supercluster 双鱼-英仙超星系团
+Piscid meteor shower 双鱼流星雨
+Piscinas Serpentes 皮希纳斯蛇状脊群
+Piscinas crater 皮希纳斯陨击坑
+Piscis Australid meteor shower 南鱼流星雨
+Piscis Australids 南鱼流星群
+Piscis Austrinus 缩写:PsA。南鱼座
+Pistol Nebula 手枪星云
+Pistol Star 手枪星云星
+Pital crater 皮塔尔陨击坑
+Pityusa Dorsa 皮蒂乌萨山脊群
+Pityusa Mons 皮蒂乌萨山
+Pityusa Patera 皮蒂乌萨山口
+Pityusa Rupes 皮蒂乌萨峭壁
+Piyi crater 皮伊陨击坑
+Piña crater 皮尼亚陨击坑
+Planck blackbody 普朗克黑体
+Planck blackbody formula 普朗克黑体公式
+Planck blackbody function 普朗克黑体函数
+Planck constant 普朗克常数
+Planck crater 普朗克环形山
+Planck density 普朗克密度
+Planck distribution 普朗克分布
+Planck energy 普朗克能量
+Planck era 普朗克期
+Planck function 普朗克函数
+Planck length 普朗克长度
+Planck mass 普朗克质量
+Planck satellite 普朗克卫星
+Planck spectrum 普朗克谱
+Planck temperature 普朗克温度
+Planck time 普朗克时间
+Planck unit 普朗克单位
+Planck's law 普朗克定律
+Planck's radiation law 普朗克辐射定律
+Planet X X行星
+Planetary Science Journal 行星科学学报
+Planetary Space Science 缩写:PSS。行星空间科学
+Planetary Transits and Oscillations of stars 缩写:PLATO。行星凌星与星震卫星; 柏拉图卫星
+Planetary and Space Science 行星与空间科学
+Planitia Descensus 德森萨斯平原
+Planum Angustum 安古斯图斯高原
+Planum Australe 南极高原
+Planum Boreum 北极高原
+Planum Chronium 克罗尼乌斯高原
+Plaskett crater 普拉斯基特环形山
+Plaskett's star 普拉斯基特星
+Plateau de Bure Interferometer 缩写:PdBI。比尔高原干涉仪
+Plato crater 柏拉图环形山
+Platonic year 柏拉图年
+Platte crater 普拉特陨击坑
+Playfair crater 普莱费尔陨击坑
+Pleiad 昴团星
+Pleiades 昴星团
+Pleiades Nebula 昴星团星云
+Pleione 1、昴宿七星之母; 2、昴宿增十二
+Pliva Vallis 普利瓦峡谷
+Ploessl eyepiece 普勒斯尔目镜
+Plough 北斗[七星]
+Ploughman 牧夫
+Plow 北斗[七星]
+Plum crater 普拉姆陨击坑
+Plummer crater 普卢默环形山
+Plummer sphere 普卢默球
+Plummer's law 普卢默规律
+Plummer's model 普卢默模型
+Plutarch crater 普卢塔克环形山
+Pluto 冥王星
+Pluto-Kuiper Belt flyby 冥王星-柯伊伯带飞掠
+Pluto-Kuiper Express 冥王星-柯伊伯带快车
+Plutonian satellite 冥卫
+Plössl eyepiece 普洛目镜
+Pm 全称:promethium。鉕
+Po 全称:polonium。钋
+Pockels cell 泡克耳斯盒
+Pockels cell modulator 泡克耳斯盒调制器
+Pockels effect 泡克耳斯效应
+Poczobutt crater 波乔布特环形山
+Podor crater 波多尔陨击坑
+Pogson magnitude scale 波格森星等标
+Pogson ratio 波格森比值
+Pogson scale 波格森星等标
+Pogson step method 波格森阶梯法
+Poincare element 庞加莱根数
+Poincare group 庞加莱群
+Poincare invariant 庞加莱不变量
+Poincare invariant theorem 庞加莱不变量定理
+Poincare spheroid 庞加莱椭球体
+Poincare theorem 庞加莱定理
+Poincare variable 庞加莱变量
+Poincare's surface of section 庞加莱截面
+Poincaré crater 庞加莱环形山
+Point Source Catalog Redshift Survey 缩写:PSCz survey。点源星表红移巡天
+Pointers 指极星
+Poisson distribution 泊松分布
+Poisson equation 泊松方程
+Poisson error bar 泊松误差棒
+Poisson gauge 泊松规范
+Poisson noise 泊松噪声
+Poisson ratio 泊松比值
+Poisson sampling 泊松采样
+Poisson spectrum 泊松谱
+Polana 波兰
+Polar Motion Analysis by Radio Interferometric Surveying 缩写:POLARIS。射电干涉测量极移计划
+Polar Orbiting Geophysical Observatory 缩写:POGO。极轨地球物理台
+Polarimeter to Unify the Corona and Heliosphere 缩写:PUNCH。日冕和日球层偏振仪; 庞奇卫星
+Polaris 勾陈一; 北极星
+Polaris Australis 南极星
+Polaris almanac 北极星历
+Polaris monitor 北极星检测仪
+Polet 飞行
+Poleungkuk 保良局
+Polis 斗宿三
+Pollack crater 波拉克陨击坑
+Pollux 1、北河三; 2、波吕克斯
+Polotsk crater 波拉茨克陨击坑
+Polydeuces 土卫三十四
+Polyhymnia 司瑟星
+Polzunov crater 波尔祖诺夫环形山
+Pomona 果神星
+Pompeii crater 庞贝陨击坑
+Poncelet crater 彭赛列环形山
+Pontanus crater 蓬塔诺环形山
+Pontécoulant crater 蓬泰库朗环形山
+Poona crater 浦那陨击坑
+Popigai crater 波皮盖陨星坑
+Popov crater 波波夫环形山
+Population Ⅱ main sequence 星族Ⅱ主序
+Porcupine 十二面体号
+Porrima 东上相; 太微左垣二
+Porro Prism 波罗棱镜
+Port-Au-Prince crater 太子港陨击坑
+Porter crater 1、波特环形山; 2、波特陨击坑
+Porth crater 波斯陨击坑
+Portia 天卫十二
+Portsmouth crater 朴次茅斯陨击坑
+Porvoo crater 波尔沃陨击坑
+Positions and Proper Motions Star Catalogue 缩写:PPM Star Catalogue。PPM恒星位置和自行表
+Potassium Dihydrogen Phosphate crystal 缩写:KDP crystal。KDP晶体
+Potato 马铃薯
+Poti crater 波蒂陨击坑
+Potsdam Astrophysical Observatory 波茨坦天体物理台
+Potsdamer Durchmusterung 缩写:PD。波茨坦巡天星表
+Potsdamer Photometrische Durchmusterung 缩写:PPD。波茨坦测光星表
+Potsdamer Spektral-Durchmusterung 缩写:PSD。波茨坦恒星光谱表
+Poynting crater 1、坡印廷环形山; 2、坡印廷陨击坑
+Poynting-Robertson effect 坡印廷-罗伯逊效应
+Pr 全称:praseodymium。镨
+Praecipua 势四
+Praesepe 1、积尸增三; 2、鬼星团
+Prager crater 普拉格环形山
+Prancing Horse Nebula 跃马星云
+Prandtl crater 普朗特环形山
+Prandtl number 普朗特数
+Prao crater 布劳陨击坑
+Praxidike 木卫二十七
+Pre-Nectarian System 前酒海结构系统
+Precision Integrated-Optics Near-infrared Imaging ExpeRiment 缩写:PIONIER。精密集成光学近红外成像实验
+Preliminary General Catalogue 缩写:PGC。博斯总星表初编
+Presqu'île crater 半岛陨星坑
+Press-Schechter approach 普雷斯-谢克特方法
+Press-Schechter formalism 普雷斯-谢克特公式
+Press-Schechter mass function 缩写:PS mass function。普雷斯-谢克特质量函数
+Press-Schechter method 普雷斯-谢克特方法
+Press-Schechter theory 普雷斯-谢克特理论
+Priamus 普丽阿姆斯
+Priestley crater 1、普里斯特利环形山; 2、普里斯特利陨击坑
+Prijipati 八谷一
+Prima 全称:Phase-Referenced Imaging and Microarcsecond Astrometry。相参成像和微角秒天体测量
+Prima Giedi 牛宿增六
+Prima Hyadum 毕宿四
+Primary Atmosphere hypothesis 原气说
+Princeps 七公七
+Princeton crater 普林斯顿陨击坑
+Principia 全称:Philosophiæ Naturalis Principia Mathematica。自然哲学的数学原理
+Proceedings of the Astronomical Society of Australia 缩写:PASA。澳大利亚天文学会会刊
+Prochion 南河三
+Procion 南河三
+Proctor crater 1、普罗克特环形山; 2、普罗克特陨击坑
+Procyon 南河三
+Prodromus Astronomiae 《天文学导论》
+Prodromus astronomiae 天文学绪论
+Prognostication Classic of the Kaiyuan Era 《开元占经》
+Prognoz 预报号
+Progress 进步号
+Project Mercury 水星计划
+Promethei Chasma 普罗米修斯深谷
+Promethei Lingula 普罗米修斯舌状地
+Promethei Mons 普罗米修斯山
+Promethei Planum 普罗米修斯高原
+Promethei Rupes 普罗米修斯峭壁
+Promethei Sinus 普罗米修斯湾
+Promethei Terra 普罗米修斯台地
+Prometheus 土卫十六
+Promontorium Agarum 阿格鲁姆海角
+Promontorium Agassiz 阿加西海角
+Promontorium Archerusia 阿切鲁西亚海角
+Promontorium Deville 德维尔海角
+Promontorium Fresnel 菲涅尔海角
+Promontorium Heraclides 赫拉克利德海角
+Promontorium Herculis 武仙岬
+Promontorium Kelvin 开尔文海角
+Promontorium Laplace 拉普拉斯岬
+Promontorium Taenarium 泰纳里厄姆海角
+Propontis 普洛彭提斯
+Propus 钺
+Proserpina 冥后星
+Prospero 天卫十八
+Protei Regio 普罗透斯区
+Proteus 海卫八
+Proton 质子号
+Protonilus 初尼罗
+Protonilus Mensae 初尼罗桌山群
+Protva Valles 普罗特瓦峡谷群
+Proxima Centauri [半人马]比邻星
+Príbram meteorite 普日布拉姆陨星
+PsA 全称:Piscis Austrinus。南鱼座
+Psamathe 海卫十
+Psc 1、全称:Pisces。双鱼宫; 娵訾; 亥宫; 2、全称:Pisces。双鱼座
+Psyche 灵神星
+Psyche mission 灵神星探测器
+Pt 全称:platinum。铂
+Ptolemaeus crater 1、托勒玫环形山; 2、托勒玫陨击坑
+Ptolemaic constellation 托勒玫星座
+Ptolemaic system 托勒玫体系
+Ptolemaism 托勒玫学说
+Pu 全称:plutonium。钚
+Publications of The Astronomical Society of Australia 澳大利亚天文学会会刊
+Publications of The Astronomical Society of Japan 日本天文学会会刊
+Publications of the American Astronomical Society 缩写:PAAS。美国天文学会会刊
+Publications of the Astronomical Society of Japan 缩写:PASJ。日本天文学会会刊
+Publications of the Astronomical Society of the Pacific 缩写:PASP。太平洋天文学会会刊
+Puchezh-Katunki crater 普切日-卡通基陨星坑
+Puck 天卫十五
+Puiching 培正
+Pulcherrima 梗河一
+Pulfrich crater 普尔弗里希坑
+Pulkovo Main Astronomical Observatory 普尔科沃天文主台
+Pulkovo pulsar 缩写:PP。普尔科沃脉冲星
+Punga Mare 蓬加海
+Pup 全称:Puppis。船尾座
+Puppid-Velid meteor shower 船尾-船帆流星雨
+Puppis 缩写:Pup。船尾座
+Puppis A 船尾射电源A
+Purbach crater 普尔巴赫环形山
+Pure Brightness 清明
+Purkinje effect 浦尔金耶效应
+Purple Forbidden Enclosure 紫微垣
+Purple Mountain 紫金山
+Purple Mountain Observatory 紫金山天文台
+Purple Palace 紫宫
+Pursat crater 菩萨陨击坑
+Puyo crater 普约陨击坑
+Puławy crater 普瓦维陨击坑
+Puńsk crater 蓬斯克陨击坑
+Pwyll crater 浦伊尔环形山
+Pylos crater 皮洛斯陨击坑
+Pyramus Fossae 皮拉摩斯堑沟群
+Pyrrhae Chaos 皮拉混杂地
+Pyrrhae Fossae 皮拉堑沟群
+Pyrrhae Regio 皮拉[区]
+Pythagoras crater 毕达哥拉斯环形山
+Pyx 全称:Pyxis。罗盘座
+Pyxis 缩写:Pyx。罗盘座
+Pál crater 帕尔陨击坑
+Q magnitude Q星等
+Q value Q值
+Q-ball Q-球
+Q-branch Q谱带
+Q-type asteroid Q型小行星
+Q/U decomposition Q/U分解
+QBO 全称:quasi-biennial oscillation。准双年振荡
+QCD 全称:quantum chromodynamics。量子色动力学
+QED 全称:quantum electrodynamics。量子电动力学
+QPO 全称:quasi-periodic oscillation。准周期振荡
+QSA 全称:quasi-spherical accretion。类球吸积
+QSG 全称:quasi-stellar galaxy。类星星系
+QSO 全称:quasi-stellar object; quasar。类星体
+QSRS 全称:quasi-stellar source; quasi-stellar radio source。类星射电源
+QSS 全称:quasi-stellar source; quasi-stellar radio source。类星射电源
+QWIP 全称:quantum well infrared detector。量子阱红外探测器
+Qaqortoq crater 卡科尔托克陨击坑
+Qara crater 加拉陨击坑
+Qian 钱钟书
+Qiannan 黔南
+Qiansanqiang 钱三强
+Qianxuesen 钱学森
+Qibā crater 吉巴陨击坑
+Qidu Fossae 齐都堑沟群
+Qidu crater 齐都陨击坑
+Qinghai 青海
+Quadrans Muralis 象限仪座
+Quadrantid meteor shower 象限仪流星雨; 象限仪座流星雨
+Quadrantids 象限仪流星群; 象限仪座流星群
+Quanzhou 泉州
+Quaoar 创神星; 夸奥尔
+Quark era 夸克时期
+Quenisset crater 凯尼塞陨击坑
+Quetelet crater 凯特尔环形山
+Quick crater 奎克陨击坑
+Quines crater 基内斯陨击坑
+Quintuplet Cluster 五合星团
+Quintuplet Star Cluster 五合星团
+Quorn crater 阔恩陨击坑
+Quqinyue 曲钦岳
+Quthing crater 古廷陨击坑
+R CMa binary 大犬R型双星
+R CMa star 大犬R型星
+R CMa variable 大犬R型变星
+R Canis Majoris star 大犬 R 型星
+R Class asteroid R 型小行星
+R Coronae Borealis star 北冕 R 型星
+R CrA Dark Cloud 南冕R暗云
+R CrB star 北冕R型星
+R CrB variable 北冕R型变星
+R Lep 全称:Hind's Crimson star。欣德深红星
+R Monocerotis 麒麟R星云
+R Monocerotis nebula 麒麟R星云
+R association R星协
+R galaxy R星系
+R magnitude R星等
+R star R型星
+R zone R区
+R-branch R谱带
+R-parity conservation R宇称守恒
+R-region R区
+R-type star R型星
+R.A. 全称:right ascension。赤经
+RA 全称:right ascension。赤经
+RAA 全称:Research in Astronomy and Astrophysics。天文和天体物理学研究
+RAE 全称:Radio Astronomy Explorer。射电天文探测器
+RAM 全称:random access memory。随机存取存储器
+RAO 全称:Robotic Autonomous Observatory。程控自主天文台
+RAS 1、全称:Royal Astronomical Society。英国皇家天文学会; 2、全称:Russian Academy of Sciences。俄罗斯科学院
+RASC 全称:Royal Astronomical Society of Canada。加拿大皇家天文学会
+RATAN-600 全称:Radio Astronomical Telescope of the Academy of Sciences 600。RATAN600米射电望远镜
+RAVE 全称:RAdial Velocity Experiment。视向速度实验
+RAdial Velocity Experiment 缩写:RAVE。视向速度实验
+RC optics 全称:Ritchey-Chretien optics。RC光学系统
+RC system 全称:Ritchey-Chretien system。RC系统
+RC telescope 全称:Ritchey-Chretien telescope。RC望远镜
+RCBG 全称:Reference Catalogue of Bright Galaxies。亮星系表
+RCG 全称:red clump giant。红团簇巨星
+RCS 全称:reaction control system。反冲控制系统
+RDP 全称:radial density profile。径向密度轮廓
+RECONS 全称:Research Consortium on Nearby Stars。近星研究会
+RF 全称:radio frequency。射频
+RFI 全称:radio-frequency interference。射频干涉
+RFT 全称:richest-field telescope。特广视场望远镜
+RGB 全称:red giant branch。红巨星支
+RGO 全称:Royal Greenwich Observatory。格林尼治皇家天文台
+RGU color system RGU颜色系统
+RGU photometry RGU测光
+RHB 全称:red horizontal-branch。红水平支
+RHESSI 全称:Reuven Ramaty High Energy Solar Spectroscopic Imager。太阳高能光谱成像探测器
+RHP 全称:Revised Harvard Photometry; Harvard Revised Photometry。哈佛测光星表修订版
+RIAF 全称:radiatively inefficient accretion flow。辐射低效吸积流
+RICH detector 全称:ring imaging Cherenkov detector。环形成像切伦科夫探测器
+RM 全称:rotation measure。旋转量
+RM Synthesis 全称:Faraday rotation measure synthesis。法拉第旋转综合方法
+RMC 全称:Rosette Molecular Cloud。玫瑰分子云
+RNGC 全称:Revised New General Catalogue of Nonstellar Astronomical Objects。非星天体新总表修订版
+RNO 全称:red nebulous object。红色云状体
+ROE 全称:Royal Observatory, Edinburgh。爱丁堡皇家天文台
+ROM 全称:read only memory。只读存储器
+ROSAT 全称:Röntgen Satellite。伦琴X射线天文台
+RQPNMLK color system RQPNMLK颜色系统
+RR Lyrae star 天琴RR型变星; 天琴RR型星
+RR Lyrae variable 天琴RR型变星; 天琴RR型星
+RR Telescopii star 望远镜RR型星
+RR Telescopii variable 望远镜RR型变星
+RRAT 全称:rotating radio transient。自转型暂现射电源
+RRa Lyrae star 天琴RRa型星
+RRab Lyrae star 天琴RRab型星
+RRb Lyrae star 天琴RRb型星
+RRc Lyrae star 天琴RRc型星
+RRs Lyrae star 天琴RRs型星
+RRs variable RRs 型变星
+RS CVn binary 全称:RS Canum Venaticorum binary。猎犬RS型双星
+RS CVn star 全称:RS Canum Venaticorum star。猎犬RS型星
+RS CVn variable 全称:RS Canum Venaticorum variable。猎犬RS型变星
+RS Canum Venaticorum binary 缩写:RS CVn binary。猎犬RS型双星
+RS Canum Venaticorum star 缩写:RS CVn star。猎犬RS型星
+RS Canum Venaticorum variable 缩写:RS CVn variable。猎犬RS型变星
+RS Coupling 全称:Russell-Saunders coupling。罗素-桑德斯耦合
+RSA Catalog 全称:Revised Shapley-Ames Catalog。沙普利-艾姆斯星表修订版
+RSD 全称:redshift space distortion。红移空间畸变
+RSL 全称:Recurrent Slope Lines。季节性坡纹
+RSO 全称:Resident space object。空间常驻物
+RT 全称:real time。实时
+RT Ser star 巨蛇RT型星
+RT Ser variable 巨蛇RT型变星
+RTDS 全称:Real Time Data Service。实时资料服务
+RTG 全称:radioisotope thermoelectric generator。放射性同位素热电发生机
+RV Tauri star 金牛RV型星
+RV Tauri variable 金牛RV型变星
+RVO 全称:Russian Virtual Observatory。俄罗斯虚拟天文台
+RVS 全称:radial-velocity spectrometer; radial-velocity scanner。视向速度仪
+RW Aur star 全称:RW Aurigae star。御夫RW型星
+RW Aur variable 全称:RW Aurigae variable。御夫RW型变星
+RW Aurigae star 缩写:RW Aur star。御夫RW型星
+RW Aurigae variable 缩写:RW Aur variable。御夫RW型变星
+RWC 全称:Regional Warning Center。太阳活动区域警报中心
+RXTE 全称:Rossi X-ray Timing Explorer。罗西X射线时变探测器
+Ra 全称:radium。镭
+Rabbi Levi crater 拉比列维环形山
+Rabe crater 拉贝陨击坑
+Radau crater 拉道陨击坑
+Radcliffe Observatory 拉德克利夫天文台
+Radio Astronomical Telescope of the Academy of Sciences 600 缩写:RATAN-600。RATAN600米射电望远镜
+Radio Astronomy Explorer 缩写:RAE。射电天文探测器
+RadioAstron 射电天文号
+Raga crater 拉加陨击坑
+Rahe crater 拉厄陨击坑
+Rahu 罗睺
+Rahway Valles 罗韦峡谷群
+Raimond crater 雷蒙环形山
+Rain Water 雨水
+Rakke crater 拉凯陨击坑
+Raman effect 拉曼效应
+Raman scattering 拉曼散射
+Raman spectroscopy 拉曼光谱学
+Raman spectrum 拉曼光谱
+Ramanathan crater 拉马纳坦陨击坑
+Ramsauer effect 冉绍尔效应
+Ramsay crater 拉姆齐环形山
+Ramsden circle 冉斯登环
+Ramsden disk 冉斯登圆面
+Ramsden eyepiece 冉斯登目镜
+Ran 天苑四
+Rana 天苑三
+Rana crater 拉纳陨击坑
+Ranger 徘徊者号
+Ranger Planitia 徘徊者号平原
+Rankine temperature scale 兰氏温标
+Rankine-Hugoniot equation 兰金-于戈尼奥方程
+Rankine-Hugoniot jump condition 兰金-于戈尼奥跳变条件
+Rankine-Hugoniot relation 兰金-于戈尼奥关系
+Raoult's law 拉乌尔定律
+Raozihe 饶子和
+Ras Algethi 帝座
+Ras Elased Australis 轩辕九
+Rasalague 候
+Rasalas 轩辕十
+Rasalgethi 帝座
+Rasalhague 候
+Rastaban 天棓三
+Raub crater 劳勿陨击坑
+Rauch crater 劳奇陨击坑
+Rauna crater 劳纳陨击坑
+Ravi Vallis 拉维峡谷
+Ravius Valles 若维尤斯峡谷群
+Rayadurg crater 拉耶德鲁格陨击坑
+Raychudhuri equation 瑞楚德胡瑞方程
+Rayleigh crater 1、瑞利环形山; 2、瑞利陨击坑
+Rayleigh criterion 瑞利判据
+Rayleigh distribution 瑞利分布
+Rayleigh guide star 瑞利引导星
+Rayleigh limit 瑞利极限
+Rayleigh number 瑞利数
+Rayleigh resolution 瑞利分辨率
+Rayleigh scattering 瑞利散射
+Rayleigh-Jeans approximation 瑞利-金斯近似
+Rayleigh-Jeans formula 瑞利-金斯公式
+Rayleigh-Jeans law 瑞利-金斯定律
+Rayleigh-Jeans region 瑞利-金斯区域
+Rayleigh-Jeans side 瑞利-金斯侧边
+Rayleigh-Taylor instability 瑞利-泰勒不稳定性
+Razin effect 拉津效应
+Razin-Tsytovich effect 拉津-楚托维奇效应
+Razumov crater 拉祖莫夫环形山
+Rb 全称:rubidium。铷
+Re 全称:rhenium。铼
+Real Time Data Service 缩写:RTDS。实时资料服务
+Reaumur thermometric scale 列氏温标
+Recurrent Slope Lines 缩写:RSL。季节性坡纹
+Red Bird 朱鸟
+Red Oval 小红斑
+Red Rectangle Nebula 红矩形星云
+Red Spot 大红斑
+Red Spot hollow 大红斑穴
+Redi crater 雷迪陨击坑
+Rees-Sciama effect 里斯-夏默效应
+Reference Catalogue of Bright Galaxies 缩写:RCBG。亮星系表
+Regge pole 雷吉极点
+Regge trajectory 雷吉轨道
+Regge-Wheeler equation 雷吉-惠勒方程
+Regiomontanus crater 雷乔蒙塔努斯环形山
+Regional Warning Center 缩写:RWC。太阳活动区域警报中心
+Regor 天社一
+Regulus 轩辕十四
+Reichenbach crater 雷亨巴赫环形山
+Reiskessel crater 赖斯克塞尔陨星坑
+Reissner-Nordstrom metric 赖斯内尔-诺德斯特洛姆度规
+Remus 林卫二
+Renaudot crater 勒诺多陨击坑
+Rengo crater 伦戈陨击坑
+Renoir region 雷诺阿地区
+Research Associate Observatoire de Besancon 贝桑松联合天文台
+Research Consortium on Nearby Stars 缩写:RECONS。近星研究会
+Research in Astronomy and Astrophysics 缩写:RAA。天文和天体物理学研究
+Resen crater 雷森陨击坑
+Resident space object 缩写:RSO。空间常驻物
+Ret 全称:Reticulum。网罟座
+Reticon 雷地康管
+Reticon array 雷地康管阵
+Reticulum 缩写:Ret。网罟座
+Retina Nebula 视网膜星云
+Reull Vallis 鲁尔峡谷
+Reutov crater 列乌托夫陨击坑
+Reuven Ramaty High Energy Solar Spectroscopic Imager 缩写:RHESSI。太阳高能光谱成像探测器
+Reuyl crater 勒伊尔陨击坑
+Revati 外屏三
+Revati Crater 离婆底坑
+Revda crater 列夫达陨击坑
+Revised Harvard Photometry 缩写:RHP。哈佛测光星表修订版
+Revised New General Catalogue of Nonstellar Astronomical Objects 缩写:RNGC。非星天体新总表修订版
+Revised Shapley-Ames Catalog 缩写:RSA Catalog。沙普利-艾姆斯星表修订版
+Revista Mexicana De Astronomia Y Astrofisica 墨西哥天文学与天体物理学杂志
+Reykholt crater 雷克霍特陨击坑
+Reynold's number 雷诺数
+Reynolds crater 雷诺陨击坑
+Rh 全称:rhodium。铑
+Rhabon Valles 鲁哈本峡谷群
+Rhadamanthus 拉达曼提斯
+Rhea 土卫五
+Rhea Mons 瑞亚山
+Rheasilvia basin 雷亚希尔维亚盆地
+Ribe crater 里伯陨击坑
+Ricci scalar 里奇标量
+Ricci tensor 里奇张量
+Riccioli crater 里乔利环形山
+Riccius crater 利玛窦环形山
+Ricco crater 里科环形山
+Richardson crater 1、理查森陨击坑; 2、里查孙环形山
+Richardson-Lucy algorithm 理查森-卢西算法
+Riemann crater 黎曼环形山
+Riemann ellipsoid 黎曼椭球体
+Riemann space 黎曼空间
+Riemann space curvature 黎曼空间曲率
+Riemann tensor 黎曼张量
+Riemann-Christoffel curvature tensor 黎曼-克里斯托弗尔曲率张量
+Rigel 参宿七
+Rigil Kent 南门二
+Rigil Kentaurus 南门二
+Rigl al Awwa 亢宿增七
+Riley crater 赖利环形山
+Rima Agatharchides 阿格瑟奇德斯溪
+Rima Agricola 阿格里科拉溪
+Rima Archytas 阿契塔溪
+Rima Ariadaeus 阿里亚代乌斯溪
+Rima Artsimovich 阿尔齐莫维奇溪
+Rima Billy 比伊溪
+Rima Birt 伯特溪
+Rima Brayley 布雷利溪
+Rima Cauchy 柯西溪
+Rima Delisle 德利尔溪
+Rima Diophantus 丢番图溪
+Rima Draper 德雷伯溪
+Rima Euler 欧拉溪
+Rima Flammarion 弗拉马里翁溪
+Rima G.Bond 乔·邦德溪
+Rima Galilaei 伽利略溪
+Rima Hadley 哈德利溪
+Rima Hesiodus 赫西奥德溪
+Rima Hyginus 希吉努斯溪
+Rima Marius 马里乌斯溪
+Rima Messier 梅西叶溪
+Rima Oppolzer 奥波尔策溪
+Rima Planck 普朗克溪
+Rima Schroedinger 薛定谔溪
+Rima Sharp 夏普溪
+Rima Sheepshanks 希普尚克斯溪
+Rima Sirsalis 希萨利斯溪
+Rima Suess 休斯溪
+Rima T.Mayer 托·迈耶溪
+Rimac crater 里马克陨击坑
+Rimae Alphonsus 阿方索溪
+Rimae Apollonius 阿波罗尼奥斯溪
+Rimae Archimedes 阿基米德溪
+Rimae Aristarchus 阿利斯塔克溪
+Rimae Arzachel 阿尔扎赫尔溪
+Rimae Atlas 阿特拉斯溪
+Rimae Bode 波得溪
+Rimae Bürg 比格溪
+Rimae Daniell 丹聂耳溪
+Rimae Darwin 达尔文溪
+Rimae Doppelmayer 多佩尔迈尔溪
+Rimae Fresnel 菲涅尔溪
+Rimae Gassendi 伽桑狄溪
+Rimae Grimaldi 格里马尔迪溪
+Rimae Gutenberg 谷登堡溪
+Rimae Hase 哈泽溪
+Rimae Hevelius 赫维留溪
+Rimae Hypatia 希帕蒂娅溪
+Rimae Janssen 让桑溪
+Rimae Littrow 利特罗夫溪
+Rimae Maclear 麦克利尔溪
+Rimae Maestlin 梅斯特林溪
+Rimae Maupertuis 莫佩尔蒂溪
+Rimae Menelaus 米尼劳斯溪
+Rimae Mersenius 梅森溪
+Rimae Parry 帕里溪
+Rimae Pettit 佩蒂特溪
+Rimae Plato 柏拉图溪
+Rimae Plinius 普利纽斯溪
+Rimae Prinz 普林茨溪
+Rimae Ramsden 拉姆斯登溪
+Rimae Riccioli 里乔利溪
+Rimae Ritter 里特尔溪
+Rimae Römer 罗默溪
+Rimae Sosigenes 索西琴尼溪
+Rimae Sulpicius Gallus 加卢斯溪
+Rimae Theaetetus 特埃特图斯溪
+Rimae Triesnecker 特里斯内克尔月溪
+Rimae Vasco da Gama 达·伽马溪
+Rimae Zupus 祖皮溪
+Rincon crater 林孔陨击坑
+Rindler space 林德勒空间
+Ring Nebula 指环星云
+Ritchey crater 里奇陨击坑
+Ritchey-Chretien optics 缩写:RC optics。RC光学系统
+Ritchey-Chretien system 缩写:RC system。RC系统
+Ritchey-Chretien telescope 缩写:RC telescope。RC望远镜
+Ritz combination principle 里茨组合原则
+Ritz crater 里茨环形山
+Rn 全称:radon。氡
+Robert Sharp crater 罗伯特·夏普陨击坑
+Roberts crater 罗伯茨环形山
+Robertson crater 罗伯逊环形山
+Robertson-Walker metric 罗伯逊-沃克度规
+Robotic Autonomous Observatory 缩写:RAO。程控自主天文台
+Rocard scattering 罗卡散射
+Rocca crater 罗卡环形山
+Roche Division 洛希环缝
+Roche crater 洛希环形山
+Roche limit 洛希极限
+Roche lobe 洛希瓣
+Roche model 洛希模型
+Roche radius 洛希半径
+Roche surface 洛希面
+Roche zone 洛希带
+Roche-lobe overflow 洛希瓣溢流
+Rochechouart crater 罗什舒阿尔陨星坑
+Roddenberry crater 罗登伯里陨击坑
+Roddy crater 罗迪陨击坑
+Roemer crater 罗默陨击坑
+Roman Republican Calendar 罗马共和历
+Roman calendar 罗马历
+Roman era 罗马纪元
+Roman indiction 罗马小纪
+Rome Observatory 罗马天文台
+Romny crater 罗姆内陨击坑
+Romulus 林卫一
+Romulus and Remus crater 罗慕路斯与雷穆斯环形山
+Ronchi test 戎奇检验
+Rong crater 绒乡陨击坑
+Rongxar crater 绒辖陨击坑
+Rood-Sastry classification 路德-沙斯特里分类
+Rood-Sastry system 路德-沙斯特里分类系统
+Rood-Sastry type 鲁德-萨斯特瑞型
+Rooftop 危宿
+Room 房宿
+Root 氐宿
+Roque de los Muchachos Observatory 穆查丘斯罗克天文台
+Rosalind 天卫十三
+Rosalind Franklin rover 罗莎琳德·富兰克林号火星车
+Roseau crater 罗索陨击坑
+Rosemary Hill Observatory 罗斯玛丽山天文台
+Rosenberger crater 罗森贝格尔环形山
+Rosenbluth potential 罗森布卢特势
+Rosetta 全称:Rosetta spacecraft。罗塞塔号探测器
+Rosetta spacecraft 缩写:Rosetta。罗塞塔号探测器
+Rosette Molecular Cloud 缩写:RMC。玫瑰分子云
+Rosette Nebula 玫瑰星云
+Ross camera 罗斯照相机
+Ross crater 罗斯陨击坑
+Ross objective 罗斯物镜
+Ross telescope 罗斯望远镜
+Rossby crater 罗斯贝陨击坑
+Rossby number 罗斯贝数
+Rossby wave 罗斯贝波
+Rossby wave instability 罗斯贝波不稳定性
+Rosseland crater 罗斯兰环形山
+Rosseland mean 罗斯兰平均
+Rosseland mean absorption coefficient 罗斯兰平均吸收系数
+Rosseland mean opacity 罗斯兰平均不透明度
+Rosseland opacity 罗斯兰不透明度
+Rosseland theorem 罗斯兰定理
+Rossi X-ray Timing Explorer 缩写:RXTE。罗西X射线时变探测器
+Rossiter effect 罗西托效应
+Rotanev 瓠瓜四
+Rotten Egg Nebula 臭蛋星云
+Routh limit 劳斯极限
+Rowland crater 罗兰环形山
+Rowland ghost line 罗兰鬼线
+Rowland grating 罗兰光栅
+Rowland-circle spectrometer 罗兰圆光谱仪
+Royal Astronomical Society 缩写:RAS。英国皇家天文学会
+Royal Astronomical Society of Canada 缩写:RASC。加拿大皇家天文学会
+Royal Greenwich Observatory 缩写:RGO。格林尼治皇家天文台
+Royal Observatory, Edinburgh 缩写:ROE。爱丁堡皇家天文台
+Rozhdestvenskiy crater 罗日杰斯特文斯基环形山
+Ru 全称:ruthenium。钌
+Ruanjiangao 阮建高
+Rubicon Valles 鲁比肯峡谷群
+Rubin-Ford effect 鲁宾-福特效应
+Ruby crater 鲁比陨击坑
+Ruchba 天津增三十七
+Ruchbah 阁道三
+Rudaux crater 吕多陨击坑
+Rudolphine table 鲁道夫星表
+Ruhea crater 鲁黑阿陨击坑
+Ruianzhongxue 瑞安中学
+Rukbat 天渊三
+Rukh 天津二
+Rumford crater 拉姆福德环形山
+Runa Vallis 鲁纳峡谷
+Runanga crater 鲁南阿陨击坑
+Runge-Kutta method 龙格-库塔法
+Running Chicken Nebula 半人马λ星云
+Runrun Shaw 邵逸夫
+Rupes Altai 阿尔泰峭壁
+Rupes Boris 鲍里斯峭壁
+Rupes Cauchy 柯西峭壁
+Rupes Kelvin 开尔文峭壁
+Rupes Liebig 李比希峭壁
+Rupes Mercator 墨卡托峭壁
+Rupes Recta 1、直壁; 2、竖直峭壁
+Rupes Tenuis 特纽依斯峭壁
+Rupes Toscanelli 托斯卡内利峭壁
+Russell Gap 罗素环缝
+Russell crater 1、罗素环形山; 2、罗素陨击坑
+Russell diagram 罗素图
+Russell mixture 罗素混合物
+Russell model 罗素模型
+Russell-Saunders coupling 缩写:RS Coupling。罗素-桑德斯耦合
+Russell-Vogt theorem 罗素-福格特定理
+Russia 俄罗斯
+Russian Academy of Sciences 缩写:RAS。俄罗斯科学院
+Russian Space Agency 俄罗斯空间局
+Russian Virtual Observatory 缩写:RVO。俄罗斯虚拟天文台
+Rutherford crater 1、卢瑟福环形山; 2、卢瑟福陨击坑
+Rutilicus 河中; 天市右垣一
+Ruza crater 鲁扎陨击坑
+Rydberg constant 里德伯常数
+Rydberg correction 里德伯改正
+Rydberg frequency 里德伯频率
+Ryle Telescope 瑞尔射电望远镜
+Rynin crater 雷宁环形山
+Rynok crater 雷诺克陨击坑
+Rypin crater 雷平陨击坑
+Ryugu 龙宫
+Ryujin Dorsum 龙神山脊
+Röntgen Satellite 缩写:ROSAT。伦琴X射线天文台
+Röntgen crater 伦琴环形山
+S 全称:sulfur/sulphur。硫
+S Andromedae 仙女S超新星
+S Dor star 剑鱼S型星
+S Vul star 狐狸S型星
+S band S波段
+S galaxy 全称:spiral galaxy。旋涡星系
+S star S型星
+S wave S波
+S&T 全称:Sky and Telescope。天空与望远镜
+S-Z cooling 全称:Sunyaev-Zel'dovich cooling。苏尼阿耶夫-泽尔多维奇冷化; SZ冷化
+S-Z effect 全称:Sunyaev-Zel'dovich effect。苏尼阿耶夫-泽尔多维奇效应; SZ效应
+S-component 缩写:SVC。缓变分量
+S-duality S对偶
+S-type asteroid 1、S型小行星; 2、S型小行星
+S-type star S型星
+S/N 全称:signal/noise ratio; signal-noise ratio; signal to noise ratio。信噪比
+S0 galaxy S0星系
+SA 1、全称:selected area。选区; 2、全称:spherical aberration。球差
+SAAO 全称:South African Astronomical Observatory。南非天文台
+SAD 全称:supra–arcade downflow。凌环流
+SAF 全称:Société Astronomique de France。法国天文学会
+SAFIR 全称:Single Aperture Far-Infrared Observatory。单孔径远红外天文台
+SAI 全称:Societa Astronomica Italiana。意大利天文学会
+SALT 全称:Southern African Large Telescope。南非大型望远镜
+SAMBO 全称:simultaneous auroral multi-balloon observation。多气球同步极光观测
+SAMPEX 全称:Solar, Anomalous, and Magnetospheric Particle Explorer。太阳异常性/磁层粒子探索器
+SAO 全称:Smithsonian Astrophysical Observatory。史密松天体物理台
+SAO Catalog SAO星表
+SAO RAS 全称:Special Astrophysical Observatory。特设天体物理台
+SAO Star Catalogue 全称:Smithsonian Astrophysical Observatory Star Catalog。SAO星表
+SAR 全称:synthetic-aperture radar。综合孔径雷达
+SAS 全称:Small Astronomical Satellite。SAS小天文卫星
+SAS I 乌呼鲁X射线卫星
+SAS-A 乌呼鲁X射线卫星
+SAT 全称:stepped atomic time。跳跃原子时
+SAX 全称:Satellite per Astronomia X。贝波X射线天文卫星
+SB 全称:spectroscopic binary。分光双星
+SB 1 全称:single-lined spectroscopic binary; single-lined binary; single-spectrum binary。单谱分光双星; 单谱双星
+SB 2 全称:double-lined [spectroscopic] binary; double-spectrum binary; two-spectrum binary。双谱[分光]双星
+SB galaxy 全称:barred spiral galaxy。棒旋星系; SB型星系
+SBI 1、全称:short baseline interferometer。短基线干涉仪; 2、全称:short baseline interferometry。短基线干涉测量
+SBa galaxy SBa型星系
+SBb galaxy SBb型星系
+SBc galaxy SBc型星系
+SC star SC型星
+SCD 全称:swept charge device。扫式电荷器件
+SCNA 全称:sudden cosmic noise absorption。宇宙噪声突降
+SCP 全称:Supernova Cosmology Project。超新星宇宙学计划
+SCUBA 全称:Submillimetre Common User Bolometer Array。亚毫米波普通用户辐射热计阵列
+SD 全称:semi-diameter。半径
+SDC 全称:Stellar Data Center。恒星资料中心
+SDD 全称:silicon drift detector。硅漂移探测器
+SDM 全称:Solar Diameter Monitor。太阳直径监测器
+SDO 1、全称:Solar Dynamics Observatory。太阳动力学观测台; 2、全称:scattered disk object。SDO型天体; 散盘型天体
+SDSS 全称:Sloan Digital Sky Survey。斯隆数字化巡天
+SE 全称:standard earth。标准地球
+SEA 全称:sudden enhancement of atmospherics。天电突增
+SEB 全称:south equatorial belt。南赤道带
+SED 全称:spectral energy distribution。光谱能量分布; 能谱分布
+SEGUE 全称:Sloan Extension for Galactic Understanding and Exploration。SEGUE巡天
+SELENE 全称:Selenological and Engineering Explorer; KAGUYA。月球学与工程探测器; 月亮女神号
+SEP 全称:solar energetic particle。太阳高能粒子
+SEST 全称:Sweden-ESO Submillimetre Telescope。瑞典-欧南台亚毫米波望远镜; SEST亚毫米波望远镜
+SETI 全称:Search for Extraterrestrial Intelligence。地外文明探索
+SFA 全称:sudden field anomaly。场强突异
+SFD 全称:sudden frequency drift。频率突漂
+SFE 全称:star-formation efficiency。产星效率; 恒星形成效率
+SFH 全称:star formation history。恒星形成历史
+SFR 全称:star-formation rate。产星率; 恒星形成率
+SFTS 全称:standard frequency and time signal。标准时频
+SFU 全称:solar flux unit。太阳流量单位
+SGB 全称:subgiant branch。亚巨星支
+SGMC 全称:supergiant molecular cloud。超巨分子云
+SGR 全称:soft gamma repeater; soft γ-ray repeater。软γ射线复现源
+SGT 全称:soft γ-ray transient。软γ射线暂现源
+SH 全称:southern hemisphere。南半球
+SHG 全称:spectroheliography。太阳单色光照相术
+SHM 全称:simple harmonic motion。简谐运动
+SI 全称:international system of units。国际单位制
+SID 全称:sudden ionospheric disturbance。电离层突扰
+SIGNE 3 全称:Solar Interplanetary Gamma-Neutron Experiment 3。信使3号
+SII 全称:stellar intensity interferometer。恒星强度干涉仪
+SIM 全称:Space Interferometer Mission。太空天文光学干涉仪; 空间干涉测量探测
+SIM telescope 空间干涉测量望远镜
+SIMBAD 全称:Set of Identifications, Measurements, and Bibliography for Astronomical Data。辛巴达天文数据库
+SIRTF 全称:Space Infrared Telescope Facility。空间红外望远镜设备
+SIS mixer 全称:superconductor-insulator-superconductor mixer。超导SIS混频器
+SIT 全称:silicon intensifier target; silicon intensifying target。硅增强靶
+SKA 全称:Square Kilometer Array。平方千米[射电望远镜]阵
+SL9 全称:Comet Shoemaker-Levy 9。舒梅克-列维9号彗星
+SLIM 全称:Smart Lander for Investigating Moon。月球勘测机智着陆器; 机灵号[月球探测器]
+SLR 全称:satellite laser ranging。卫星激光测距
+SM 全称:service module。服务舱
+SMA 全称:Sub-Millimeter Array。SMA亚毫米波射电望远镜阵
+SMART-1 全称:Small Missions for Advanced Research and Technology。斯玛特-1月球探测器
+SMBH 全称:supermassive black hole。超大质量黑洞
+SMC 全称:Small Magellanic Cloud。小麦云; 小麦哲伦云
+SMC X-1 全称:Small Magellanic Cloud X-1。小麦云X-1
+SMD 全称:sudden magnetic disturbance。急始磁扰
+SMEX 全称:Small Explorer。小型探测器项目
+SMF 全称:stellar mass function。恒星质量函数
+SMG 全称:submillimeter galaxy。亚毫米波星系
+SMM 全称:Solar Maximum Mission。太阳极大[年]使者
+SMS 全称:slow magnetosonic-wave speed。慢磁声波速
+SMT 1、全称:Submillimeter Telescope。SMT亚毫米波望远镜; 2、全称:segmented mirror telescope。拼合镜面望远镜
+SMTO 全称:Submillimeter Telescope Observatory。亚毫米波天文台
+SMY 全称:solar maximum year。太阳峰年
+SN 全称:supernova。超新星
+SN type Ⅰ Ⅰ型超新星
+SN type Ⅱ Ⅱ型超新星
+SNC meteorite 全称:Shergotty; Nakhla and Chassigny meteorite。SNC陨星
+SNLS 全称:Supernova Legacy Survey。超新星遗珍巡天
+SNR 1、全称:signal/noise ratio; signal-noise ratio; signal to noise ratio。信噪比; 2、全称:supernova remnant; relic of supernova; remnant of supernova。超新星遗迹
+SNU 全称:solar neutrino unit。太阳中微子单位
+SOAR 全称:Southern Astrophysical Research Telescope。南方天体物理研究望远镜
+SOFIA 全称:Stratospheric Observatory for Infrared Astronomy。索菲亚平流层红外天文台
+SOHO 全称:Solar and Heliospheric Observatory。索贺号; 太阳和日球层探测器
+SOLRAD 全称:Solar Radiation Monitoring Satellite。索拉德号; 太阳辐射监测卫星
+SOPHIE 全称:Spectrographe pour l'Observation des Phénomènes des Intérieurs stellaires et des Exoplanètes。索菲光谱仪
+SORCE 全称:Solar Radiation and Climate Experiment。太阳辐射与大气实验卫星
+SPA 全称:sudden phase anomaly。位相突异
+SPAD 全称:single-photon avalanche photodiode。单光子雪崩光电二极管
+SPARTAN 全称:Shuttle Pointed Autonomous Research Tool for Astronomy。斯巴达人号
+SPB 全称:Slowly Pulsating B star。慢脉动B型星
+SPH 全称:smoothed-particle hydrodynamics。平滑质点流体动力学
+SPHEREx 全称:Spectro-Photometer for the History of the Universe, Epoch of Reionization, and Ices Explorer。宇宙历史与再电离期分光光度计及冰探测器; 天穹号[红外光谱探测器]
+SPICA 1、全称:Space Infrared Telescope for Cosmology and Astrophysics。宇宙学和天体物理空间红外望远镜; 天门号; 2、全称:Space Infrared telescope for Cosmology and Astrophysics。宇宙学与天体物理空间红外望远镜; 角宿[空间红外]望远镜
+SPO 1、全称:Sacramento Peak Observatory。萨克拉门托峰天文台; 2、全称:silicon pore optics。硅孔光学系统
+SPRINT-A 火崎号
+SPT 全称:South Pole Telescope。SPT南极点望远镜
+SQUID 全称:superconducting quantum interference device。超导量子干涉器件
+SR variable 全称:semi-regular variable。半规则变星
+SRATS 全称:Solar Radiation and Thermospheric Satellite; Taiyo。太阳号
+SRG 1、全称:Spectrum-Roentgen-Gamma。X射线-γ射线谱天文卫星; 2、全称:Spectrum-Röntgen-Gamma。X-γ能谱探测器
+SRS catalogue 全称:southern reference star catalogue。南天参考星表
+SS Cygni star 天鹅SS型星
+SS coupling SS耦合
+SSA 全称:synchrotron self-absorption。同步加速自吸收
+SSB 全称:Solar System barycenter。太阳系质心
+SSD 全称:silicon strip detector。硅条探测器
+SSM 全称:standard solar model。标准太阳模型
+SSO 全称:Siding Spring Observatory。赛丁泉天文台
+SSP 全称:simple stellar population。简单恒星星族
+SSS 全称:Small Scientific Satellite。SSS小科学卫星
+SST 1、全称:Space Solar Telescope。空间太阳望远镜; 2、全称:Spectroscopic Survey Telescope。分光巡天望远镜; 3、1、全称:Spitzer Space Telescope。斯皮策空间望远镜; 2、全称:satellite-to-satellite tracking。人卫-人卫跟踪
+SSTB 全称:south south temperate belt。南南温带
+SSWF 全称:sudden short-wave fade-out。短波突衰
+ST 全称:sidereal time。恒星时
+STB 全称:south temperate belt。南温带
+STEP 全称:Solar-Terrestrial Energy Programme。日地能源计划
+STEREO 全称:Solar Terrestrial Relations Observatory。日地关系观测台
+STEREO A 前导空间观测台
+STEREO B 后随空间观测台
+STFC 全称:Science and Technology Facilities Council。英国科学与技术设施委员会
+STJ 全称:superconducting tunnel junction。超导隧道结
+STSAT 全称:Science and Technology SATellite。科学技术卫星
+STSDAS 全称:Space Telescope Science Data Analysis System。空间望远镜科学数据分析系统
+STScI 全称:Space Telescope Science Institute。空间望远镜研究所
+STZ 全称:substellar transition zone。亚恒星过渡区
+SU UMa star 大熊SU型星
+SUSI 全称:Sydney University Stellar Interferometer。悉尼大学恒星干涉仪
+SVC 全称:slowly varying component; S-component。缓变分量
+SVD 全称:singular value decomposition。奇异值分解
+SVO 全称:Spanish Virtual Observatory。西班牙虚拟天文台
+SVOM 全称:Space Variable Objects Monitor。空间变源监视器
+SVS 全称:Soviet variable star。苏联变星
+SW Sex star 六分仪SW型星
+SWAS 全称:Submillimeter Wave Astronomy Satellite。SWAS亚毫米波天文卫星
+SWEEPS 全称:Sagittarius Window Eclipsing Extrasolar Planet Search。人马窗口凌星系外行星搜索
+SWF 全称:short-wave fade-out。短波衰退
+SX Ari star 白羊SX型星
+SX Phe star 凤凰SX型星
+SXR 全称:soft X-ray repeater。软X射线再现源
+SXT 全称:soft X-ray transient。软X射线暂现源
+Sa galaxy Sa型星系
+Sabatinode Ursis 熊三拔
+Sabik 宋; 天市左垣十一
+Sabis Vallis 萨比斯峡谷
+Sabo crater 萨博陨击坑
+Sabrina Vallis 萨布里纳峡谷
+Sacajawea Patera 萨卡贾维亚山口
+Sachs Patera 萨克斯山口
+Sachs-Wolfe effect 萨克斯-沃尔夫效应
+Saclateni 柱二
+Sacra Dorsa 萨克拉山脊群
+Sacra Fossae 萨克拉堑沟群
+Sacra Mensa 萨克拉桌山
+Sacra Sulci 萨克拉沟脊群
+Sacramento Peak Observatory 缩写:SPO。萨克拉门托峰天文台
+Sacrobosco crater 萨克罗博斯科环形山
+Sadachbia 坟墓二
+Sadalachbia 坟墓二
+Sadalbari 离宫二
+Sadalmelik 危宿一
+Sadalsuud 虚宿一
+Sadir 天津一
+Sadko Crater 萨特阔坑
+Sador 天津一
+Sadr 天津一
+Saenger crater 森格尔环形山
+Safronov number 萨夫罗诺夫数
+SagDEG 全称:Sagittarius Dwarf Elliptical Galaxy。人马矮椭圆星系
+SagDIG 全称:Sagittarius Dwarf Irregular Galaxy。人马不规则矮星系
+Sagan crater 萨根陨击坑
+Sagitta 缩写:Sge。天箭座
+Sagittarious Arm 人马臂
+Sagittarius 1、缩写:Sgr。人马宫; 析木; 寅宫; 2、缩写:Sgr。人马座
+Sagittarius A 人马A
+Sagittarius Arm 人马臂
+Sagittarius B 人马B
+Sagittarius Dwarf Elliptical Galaxy 缩写:SagDEG。人马矮椭圆星系
+Sagittarius Dwarf Galaxy 人马矮星系
+Sagittarius Dwarf Irregular Galaxy 缩写:SagDIG。人马不规则矮星系
+Sagittarius Window Eclipsing Extrasolar Planet Search 缩写:SWEEPS。人马窗口凌星系外行星搜索
+Sagittarius X-1 人马X-1
+Sagittarius cloud 人马星云
+Sagittarius star cloud 人马恒星云
+Saha crater 萨哈环形山
+Saha equation 萨哈方程
+Saha formula 萨哈公式
+Saha ionization equation 萨哈电离方程
+Saha ionization formula 萨哈电离公式
+Saheki crater 佐伯陨击坑
+Saint Martin crater 圣马丁陨星坑
+Saiph 参宿六
+Sakarya Vallis 萨卡里亚峡谷
+Sakata model 坂田模型
+Sakharov condition 萨哈罗夫条件
+Sakharov oscillation 萨哈罗夫振荡
+Sakigake 先驱号空间探测器
+Salacia 萨拉客亚
+Salaga crater 萨拉加陨击坑
+Salkhad crater 塞勒海德陨击坑
+Salm 离宫五
+Salpeter function 萨尔皮特函数
+Salpeter initial mass function 萨尔皮特初始质量函数
+Salpeter mass function 萨尔皮特质量函数
+Salpeter process 萨尔皮特过程
+Salpeter time 萨尔皮特时间
+Salyut 礼炮号
+Samara Valles 萨马拉峡谷群
+Samos 全称:Satellite and Missile Observation System。萨莫斯
+Samuel M. Russell 骆三畏
+San Juan crater 圣胡安陨击坑
+Sandage-Loeb test 桑德奇-勒布检验
+Sandila crater 森迪拉陨击坑
+Sanford crater 桑福德环形山
+Sangar crater 桑加尔陨击坑
+Sanshui 三水
+Santa Cruz crater 圣克鲁斯陨击坑
+Santa Fe crater 圣菲陨击坑
+Santaca crater 桑塔卡陨击坑
+Sao 海卫十一
+Sapas Mons 萨帕斯山
+Sappho 赋女星
+Saravan crater 沙拉湾陨击坑
+Sargas 尾宿五
+Sarh crater 萨尔陨击坑
+Sarin 魏; 天市左垣一
+Sarn crater 萨恩陨击坑
+Sarno crater 萨尔诺陨击坑
+Saros 沙罗周期
+Saros cycle 沙罗周期
+Saros series 沙罗食周
+Sarton crater 萨尔顿环形山
+Saskia crater 萨斯基亚环形山
+Satellite and Missile Observation System 缩写:Samos。萨莫斯
+Satellite per Astronomia X 缩写:SAX; BeppoSAX。贝波X射线天文卫星
+Satka crater 萨特卡陨击坑
+Saturn 土星; 镇星
+Saturn Nebula 土星状星云
+Saturn shine 土星反照
+Saturn's satellite 土卫
+Saturn-crossing asteroid 越土小行星
+Saturnian ring 土星环
+Saturnian ringlet 土星细环
+Saturnian satellite 土卫
+Sauk crater 索克陨击坑
+Saussure crater 索绪尔环形山
+Sava Vallis 萨瓦峡谷
+Savannah crater 萨凡纳陨击坑
+Savich crater 萨维奇陨击坑
+Sawiskera 萨维斯克拉
+Say crater 萨伊陨击坑
+Sb 全称:antimony。锑
+Sc 全称:scandium。钪
+Sc galaxy Sc型星系
+Scale-free spectrum 尺度无关功率谱
+Scaliger crater 斯卡利杰环形山
+Scamander Vallis 斯卡曼得耳峡谷
+Scandia 斯堪的亚
+Scandia Cavi 斯堪的亚凹地群
+Scandia Colles 斯堪的亚小丘群
+Scandia Tholi 斯堪的亚山丘群
+Scd galaxy Scd 型星系
+Sceptrum 九斿增四
+Schaeberle crater 1、舍贝勒环形山; 2、舍贝勒陨击坑
+Schatzman mechanism 沙兹曼机制
+Scheat 室宿二
+Schechter function 谢克特函数
+Schechter's law 谢克特定律
+Schedar 王良四
+Schedir 王良四
+Scheila 沙伊拉
+Scheiner crater 沙伊纳环形山
+Scheuer-Readhead hypothesis 朔伊尔-里德黑德假说
+Schiaparelli crater 斯基亚帕雷利陨击坑
+Schiller crater 席勒环形山
+Schilt photometer 西尔特光度计
+Schlesinger crater 施莱辛格环形山
+Schliemann crater 谢里曼环形山
+Schlüter crater 施吕特环形山
+Schmidt aplanatic camera 施密特齐明球透镜照相机
+Schmidt camera 施密特照相机
+Schmidt correcting plate 施密特改正镜
+Schmidt corrector 施密特改正镜
+Schmidt crater 施密特陨击坑
+Schmidt galactic model 施密特银河系模型
+Schmidt law 施密特定律
+Schmidt model 施密特模型
+Schmidt optics 施密特光学系统
+Schmidt plate 施密特改正镜
+Schmidt telescope 施密特望远镜
+Schmidt-Cassegrain configuration 施密特-卡塞格林光路系统
+Schmidt-Cassegrain telescope 施密特-卡塞格林望远镜
+Schmidt-Holsapple scaling law 施密特-霍尔萨普尔定标定律
+Schneller crater 施内勒尔环形山
+Schonberg-Chandrasekhar limit 申贝格-钱德拉塞卡极限
+Schottky barrier mixer 肖特基势垒混频管
+Schroeter crater 施洛特陨击坑
+Schrödinger crater 薛定谔环形山
+Schröter effect 施洛特效应
+Schubert crater 舒伯特环形山
+Schumacher crater 舒马赫环形山
+Schumann-Runge continuum 舒曼-龙格连续谱
+Schuster crater 舒斯特环形山
+Schuster mechanism 舒斯特机制
+Schuster problem 舒斯特问题
+Schuster-Schwarzschild atmosphere 舒斯特-施瓦西大气
+Schwabe cycle 施瓦贝循环
+Schwarz inequality 施瓦茨不等式
+Schwarzschild black hole 施瓦西黑洞
+Schwarzschild coordinate 施瓦西坐标
+Schwarzschild crater 施瓦西环形山
+Schwarzschild criterion 施瓦西判据
+Schwarzschild distribution function 施瓦西分布函数
+Schwarzschild filling factor 施瓦西填充因子
+Schwarzschild geometry 施瓦西几何
+Schwarzschild index 施瓦西指数
+Schwarzschild lens 施瓦西透镜
+Schwarzschild metric 施瓦西度规
+Schwarzschild model 施瓦西模型
+Schwarzschild radius 施瓦西半径
+Schwarzschild singularity 施瓦西奇点
+Schwarzschild sphere 施瓦西球
+Schwarzschild telescope 施瓦西望远镜
+Schwarzschild time 施瓦西时间
+Schwarzschild velocity ellipsoid 施瓦西速度椭球
+Schwarzschild-Couder Cherenkov telescope 施瓦西-库德型切伦科夫望远镜
+Schwarzschild-Milne equation 施瓦西-米尔恩方程
+Schwassmann-Wachmann 1 施瓦斯曼-瓦赫曼 1号彗星
+Schwassmann-Wachmann 2 施瓦斯曼-瓦赫曼 2号彗星
+Schwassmann-Wachmann 3 施瓦斯曼-瓦赫曼 3号彗星
+Schöner crater 舍纳陨击坑
+Science and Technology Facilities Council 缩写:STFC。英国科学与技术设施委员会
+Science and Technology SATellite 缩写:STSAT。科学技术卫星
+Scl 全称:Sculptor。玉夫座
+Scl-For galaxy 全称:Sculptor-Fornax galaxy。玉夫-天炉星系
+Sco 1、全称:Scorpius。天蝎宫; 大火; 卯宫; 2、全称:Scorpius。天蝎座
+Sco-Cen association 天蝎-半人马星协
+Scooter 滑行船
+Scoresby crater 斯科斯比环形山
+Scorpius 1、缩写:Sco。天蝎宫; 大火; 卯宫; 2、缩写:Sco。天蝎座
+Scorpius OB 1 天蝎OB 1星协
+Scorpius X-1 天蝎X-1
+Scorpius-Centaurus Association 天蝎-半人马星协
+Scorpius-Centaurus association 天蝎-半人马星协
+Scott crater 斯科特环形山
+Scott effect 斯科特效应
+Sct 全称:Scutum。盾牌座
+Sculptor 缩写:Scl。玉夫座
+Sculptor Dwarf Galaxy 玉夫座矮星系
+Sculptor galaxy 玉夫星系
+Sculptor group 玉夫星系群
+Sculptor supercluster 玉夫超星系团
+Sculptor system 玉夫星系
+Sculptor void 玉夫巨洞
+Sculptor-Fornax galaxy 缩写:Scl-For galaxy。玉夫-天炉星系
+Sculptorids 玉夫流星群
+Sculptured Hills 刻蚀坡
+Scutulum 海石二
+Scutum 缩写:Sct。盾牌座
+Scutum Star Cloud 盾牌座恒星云
+Scylla Scopulus 斯库拉断崖
+Sd galaxy Sd型星系
+Se 全称:selenium。硒
+Se star Se星; S型发射线星
+Seagull Nebula 海鸥星云
+Search for Extraterrestrial Intelligence 缩写:SETI。地外文明探索
+Seares crater 西尔斯环形山
+Seares' formulae 西尔斯公式
+Seashell Galaxy 扇贝星系
+Sebec crater 塞贝克陨击坑
+Secchi classification 塞奇分类
+Secchi crater 塞奇陨击坑
+Sechenov crater 谢切诺夫环形山
+Second Index Catalogue of Nebulae and Clusters of Stars 缩写:IC Ⅱ。星云星团新总表续编Ⅱ
+Secunda Giedi 牛宿二
+Secunda Hyadum 毕宿三
+Sedan Crater 色当弹坑
+Sedna 赛德娜
+Sednoid 类赛德娜天体
+Sedona crater 塞多纳陨击坑
+Sedov phase 谢多夫阶段
+Seeliger paradox 西利格佯谬
+Sefadu crater 塞法杜陨击坑
+Segin 阁道二
+Seginus 招摇
+Seidel crater 赛德尔环形山
+Sekhmet 狮女星
+Selenological and Engineering Explorer 缩写:SELENE。月球学与工程探测器; 月亮女神号
+Selevac crater 塞莱瓦茨陨击坑
+Selove receiver 塞洛夫接收机
+Selqet 蝎女星
+Semele 化女星
+Semeykin crater 谢梅金陨击坑
+Seminole crater 塞米诺尔陨击坑
+Senus Vallis 塞努斯峡谷
+Sepedet 天狗周
+Sepik Vallis 塞皮克峡谷
+September Perseids 九月英仙流星群
+September meteors 九月流星雨
+Ser 全称:Serpens。巨蛇座
+Sera crater 世罗陨击坑
+Serenitatis Basin 澄盆地
+Serpens 缩写:Ser。巨蛇座
+Serpens Caput 巨蛇头
+Serpens Cauda 巨蛇尾
+Serpens Dark Cloud 巨蛇暗云
+Serpens molecular cloud 巨蛇分子云
+Serrurier truss 赛路里桁架
+Sersic index 塞西克指数
+Sersic profile 塞西克轮廓
+Serving-maid 须女
+Set of Identifications, Measurements, and Bibliography for Astronomical Data 缩写:SIMBAD。辛巴达天文数据库
+Setebos 天卫十九
+Sevel crater 塞沃尔陨击坑
+Seven Luminaries 七曜; 七政
+Seven Sisters 七姊妹星
+Seven Stars 星宿
+Severe Cold 大寒
+Sevi crater 谢维陨击坑
+Sex 全称:Sextans。六分仪座
+Sextans 缩写:Sex。六分仪座
+Sextans Dwarf Galaxy 六分仪座矮星系
+Sextans Ridge 六分仪脊
+Sextractor 全称:Source Extractor。源提取包
+Seyfert crater 赛弗特环形山
+Seyfert galaxy 赛弗特星系
+Seyfert nucleus 赛弗特星系核
+Seyfert's Sextet 赛弗特六重星系
+Sfax crater 斯法克斯陨击坑
+Sge 全称:Sagitta。天箭座
+Sgr 1、全称:Sagittarius。人马宫; 析木; 寅宫; 2、全称:Sagittarius。人马座
+Shaanxi 陕西
+Shack-Hartmann wavefront sensor 沙克-哈特曼波前传感器
+Shadow-Planet 太岁; 岁阴
+Shakespeare region 莎士比亚地区
+Shakura-Sunyaev disc 沙库拉-苏尼阿耶夫盘
+Shalbatana Vallis 沙尔巴塔纳峡谷
+Sham 左旗一
+Shambe crater 尚贝陨击坑
+Shandong 山东
+Shandongdaxue 山东大学
+Shane Telescope 沙因望远镜
+Shanghai 上海
+Shanghaishida 上海师大
+Shantou 汕头
+Shao 邵正元
+Shapiro delay 夏皮罗时延
+Shapley Attractor 沙普利巨引源
+Shapley concentration 沙普利聚集度
+Shapley supercluster 沙普利超星系团
+Shapley-Ames catalogue 沙普利-艾姆斯星系表
+Sharatan 娄宿一
+Shardi crater 舍尔迪陨击坑
+Sharonov crater 1、沙罗诺夫环形山; 2、沙罗诺夫陨击坑
+Sharpless catalogue 沙普利斯亮星云表
+Shatskiy crater 沙茨基陨击坑
+Shaula 尾宿八
+Shawnee crater 肖尼陨击坑
+Shayn crater 沙因环形山
+Sheliak 渐台二
+Shelyak 渐台二
+Shen Guo 沈括
+Shenchunshan 沈君山
+Shenzhen 深圳
+Shenzhou 神舟
+Sheratan 娄宿一
+Shergotty 缩写:SNC meteorite。SNC陨星
+Shergotty meteorite 谢尔戈蒂陨星
+Sherrington crater 谢灵顿环形山
+Shi Shen crater 石申环形山
+Shichangxu 师昌绪
+Shihwingching 施永青
+Shiliak 渐台二
+Shinsei 新星太阳卫星
+Shirakatsi crater 希拉卡齐环形山
+Shizu-Mao 始祖懋
+Shoemaker crater 1、舒梅克环形山; 2、舒梅克陨星坑
+Shorrtt clock 雪特钟
+Short crater 肖特环形山
+Shortt clock 雪特钟
+Shorty crater 肖蒂环形山
+Shuttle Pointed Autonomous Research Tool for Astronomy 缩写:SPARTAN。斯巴达人号
+Si 全称:silicon。硅
+Si:As infrared array 硅掺砷红外面阵
+Si:Ga infrared array 硅掺镓红外面阵
+SiC mirror 碳化硅镜
+SiO maser 一氧化硅微波激射
+Sian crater 锡安陨击坑
+Siarnaq 土卫二十九
+Sibiti crater 锡比提陨击坑
+Sibu crater 诗巫陨击坑
+Sibut crater 锡布陨击坑
+Sichuan 四川
+Sickle of Leo 狮子座镰刀
+Siding Spring Observatory 缩写:SSO。赛丁泉天文台
+Siedentopf crater 西登托普夫环形山
+Sierpinski crater 谢尔平斯基环形山
+Sif Mons 西夫山
+Sigli crater 实格里陨击坑
+Sikhote-Alin meteorite 希霍特-阿林陨星
+Sikorsky crater 西科尔斯基环形山
+Silinka Vallis 锡林卡峡谷
+Siljan Ring crater 锡利扬湖陨星坑
+Silk damping 西尔克阻尼
+Siloe Patera 西洛厄山口
+Simaqian 司马迁
+Simois Colles 西摩伊斯小丘群
+Simois Mons 西摩伊斯山
+Simonelli crater 西莫内利坑
+Simud Valles 西穆德峡谷群
+Sinai 西奈
+Sinai Dorsa 西奈山脊群
+Sinai Fossae 西奈堑沟群
+Sinai Planum 西奈高原
+Sinai Tholus 西奈山丘
+Sinda crater 辛达陨击坑
+Singa crater 辛贾陨击坑
+Single Aperture Far-Infrared Observatory 缩写:SAFIR。单孔径远红外天文台
+Sinop crater 锡诺普陨击坑
+Sinope 木卫九
+Sinton crater 辛顿陨击坑
+Sinus Aestuum 浪湾
+Sinus Amoris 爱湾
+Sinus Asperitatis 狂暴湾
+Sinus Concordiae 和谐湾
+Sinus Fidei 信赖湾
+Sinus Honoris 荣誉湾
+Sinus Iridum 虹湾
+Sinus Lunicus 眉月湾
+Sinus Medii 中央湾
+Sinus Meridiani 子午湾
+Sinus Roris 露湾
+Sinus Sabaeus 示巴湾
+Sinus Successus 成功湾
+Siphon 渴乌
+Sippar Sulcus 西帕沟
+Sirenum Fossae 塞壬堑沟群
+Sirenum Mons 塞壬山
+Sirenum Tholus 塞壬山丘
+Sirian companion 天狼伴星
+Sirius 狼星; 天狼[星]
+Sirona 细女星
+Sirrah 壁宿二
+Sisyphi Cavi 西绪福斯凹地群
+Sisyphi Montes 西绪福斯山脉
+Sisyphi Planum 西绪福斯高原
+Sisyphi Tholus 西绪福斯山丘
+Sithonius Lacus 锡索尼亚湖
+Sitka crater 锡特卡陨击坑
+Siton Undae 西顿沙丘群
+Sitrah crater 锡特拉陨击坑
+Situla 虚梁三
+Six-degree Field Galaxy Survey 缩写:6dFGS。6度视场星系巡天
+Sixth Cambridge Survey of radio sources 缩写:6C survey。第6剑桥射电源巡天
+Skalnate Pleso Atlas of the Heavens 捷克天图
+Skamandrios 斯卡曼德里俄斯
+Skat 羽林军二十六
+Skathi 土卫二十七
+Sklodowska crater 1、斯克洛多夫斯卡环形山; 2、斯克洛多夫斯卡陨击坑
+Skoll 土卫四十七
+Skrymir 土卫五十六
+Sky and Telescope 缩写:S&T。天空与望远镜
+Skylab 天空实验室
+Skylark 云雀号
+Skynet 天网
+Slate Islands crater 斯莱特群岛陨星坑
+Sleipnir Fossae 斯雷普尼尔堑沟
+Slight Cold 小寒
+Slight Heat 小暑
+Slight Snow 小雪
+Slipher crater 1、斯里弗环形山; 2、斯里弗陨击坑
+Sloan Digital Sky Survey 缩写:SDSS。斯隆数字化巡天
+Sloan Extension for Galactic Understanding and Exploration 缩写:SEGUE。SEGUE巡天
+Slowly Pulsating B star 缩写:SPB。慢脉动B型星
+Sm 全称:samarium。钐
+Small Astronomical Satellite 缩写:SAS。SAS小天文卫星
+Small Explorer 缩写:SMEX。小型探测器项目
+Small Magellanic Cloud 缩写:SMC。小麦云; 小麦哲伦云
+Small Magellanic Cloud X-1 缩写:SMC X-1。小麦云X-1
+Small Missions for Advanced Research and Technology 缩写:SMART-1。斯玛特-1月球探测器
+Small Scientific Satellite 缩写:SSS。SSS小科学卫星
+Smart Lander for Investigating Moon 缩写:SLIM。月球勘测机智着陆器; 机灵号[月球探测器]
+Smith crater 史密斯陨击坑
+Smithsonian Astrophysical Observatory 缩写:SAO。史密松天体物理台
+Smithsonian Astrophysical Observatory Star Catalog 缩写:SAO Star Catalogue。SAO星表
+Smoluchowski crater 斯莫卢霍夫斯基环形山
+Sn 全称:tin。锡
+Snail Nebula 蜗牛星云
+Snake Nebula 蛇形暗云
+Snell's law 斯涅尔定律
+Snellius crater 斯涅尔环形山
+Snowman crater 雪人环形山
+Societa Astronomica Italiana 缩写:SAI。意大利天文学会
+Société Astronomique de France 缩写:SAF。法国天文学会
+Socket-Shaped Nebula 槽状星云
+Soffen crater 索芬陨击坑
+Sojourner 旅居者号火星车
+Sokol crater 索科尔陨击坑
+SolO 全称:Solar Orbiter。环日轨道器
+Solano crater 索拉诺陨击坑
+Solar Diameter Monitor 缩写:SDM。太阳直径监测器
+Solar Dynamics Observatory 缩写:SDO。太阳动力学观测台
+Solar Interplanetary Gamma-Neutron Experiment 3 缩写:SIGNE 3。信使3号
+Solar Maximum Mission 缩写:SMM。太阳极大[年]使者
+Solar Orbiter 缩写:SolO。环日轨道器
+Solar Physics 太阳物理
+Solar Probe Plus 1、太阳探测器+; 2、太阳探针+
+Solar Radiation Monitoring Satellite 缩写:SOLRAD。索拉德号; 太阳辐射监测卫星
+Solar Radiation and Climate Experiment 缩写:SORCE。太阳辐射与大气实验卫星
+Solar Radiation and Thermospheric Satellite 缩写:SRATS。太阳号
+Solar System Research 太阳系研究
+Solar System barycenter 缩写:SSB。太阳系质心
+Solar Terrestrial Relations Observatory 缩写:STEREO。日地关系观测台
+Solar and Heliospheric Observatory 缩写:SOHO。索贺号; 太阳和日球层探测器
+Solar, Anomalous, and Magnetospheric Particle Explorer 缩写:SAMPEX。太阳异常性/磁层粒子探索器
+Solar-A 阳光号
+Solar-B 日出号
+Solar-Terrestrial Energy Programme 缩写:STEP。日地能源计划
+Soleil compensator 索莱伊补偿器
+Solis Dorsa 索利斯山脊群
+Solis Lacus 索利斯湖
+Solis Planum 索利斯高原
+Solwind 太阳风号
+Sombrero Hat galaxy 草帽星系
+Sombrero galaxy 草帽星系
+Somerset crater 萨默塞特陨击坑
+Sommerfeld crater 索末菲环形山
+Song of Pacing the Heavens 步天歌
+Songyuan 松原
+Sonneberg Observatory 宗涅贝格天文台
+Sonneberg variable 宗涅贝格天文台变星
+Soochow astronomical chart 苏州石刻天文图
+Soochow crater 苏州陨击坑
+Soochow planisphere 苏州石刻天文图
+Sothic cycle 天狼周
+Sothic year 天狼年
+Source Extractor 缩写:Sextractor。源提取包
+Souris crater 苏里斯陨击坑
+South African Astronomical Observatory 缩写:SAAO。南非天文台
+South Atlantic Anomaly 南大西洋近点角
+South Galactic Cap 南银冠
+South Galactic Pole 南银极
+South Polar Group 南极星系群
+South Pole Telescope 缩写:SPT。SPT南极点望远镜
+South Pole-Aitken Basin 南极-艾特肯盆地
+South crater 1、索思环形山; 2、索思陨击坑
+Southern African Large Telescope 缩写:SALT。南非大型望远镜
+Southern Astrophysical Research Telescope 缩写:SOAR。南方天体物理研究望远镜
+Southern Coalsack 1、南煤袋; 2、煤袋星云
+Southern Dipper 南斗
+Southern Palace Red Bird 南宫朱鸟
+Southern Pinwheel 南风车星系
+Southern Pleiades 南天七姐妹星团
+Southern Sky Survey 南天天图
+Southern tropic 南回归线
+Soviet Mountains 苏维埃山脉
+Soviet variable star 缩写:SVS。苏联变星
+Soyuz 联盟号
+Space Infrared Telescope Facility 缩写:SIRTF。空间红外望远镜设备
+Space Infrared Telescope for Cosmology and Astrophysics 缩写:SPICA。宇宙学和天体物理空间红外望远镜; 天门号
+Space Infrared telescope for Cosmology and Astrophysics 缩写:SPICA。宇宙学与天体物理空间红外望远镜; 角宿[空间红外]望远镜
+Space Interferometer Mission 缩写:SIM。太空天文光学干涉仪; 空间干涉测量探测
+Space Science Reviews 空间科学评论
+Space Solar Telescope 缩写:SST。空间太阳望远镜
+Space Telescope Science Data Analysis System 缩写:STSDAS。空间望远镜科学数据分析系统
+Space Telescope Science Institute 缩写:STScI。空间望远镜研究所
+Space Variable Objects Monitor 缩写:SVOM。空间变源监视器
+Space Weather 空间天气
+Space Weather Prediction Center 空间天气预报中心
+Spacelab 空间实验室
+Spallanzani crater 斯帕兰扎尼陨击坑
+Spanish Virtual Observatory 缩写:SVO。西班牙虚拟天文台
+Special Astrophysical Observatory 缩写:SAO RAS。特设天体物理台
+Spectro-Photometer for the History of the Universe, Epoch of Reionization, and Ices Explorer 缩写:SPHEREx。宇宙历史与再电离期分光光度计及冰探测器; 天穹号[红外光谱探测器]
+Spectrographe pour l'Observation des Phénomènes des Intérieurs stellaires et des Exoplanètes 缩写:SOPHIE。索菲光谱仪
+Spectroscopic Survey Telescope 缩写:SST。分光巡天望远镜
+Spectrum-Roentgen-Gamma 缩写:SRG。X射线-γ射线谱天文卫星
+Spectrum-Röntgen-Gamma 缩写:SRG。X-γ能谱探测器
+Spektr-R 射电天文号
+Spencer Jones crater 斯潘塞·琼斯环形山
+Spica 角宿一
+Spindle galaxy 纺锤星系
+Spirit Mars Exploration Rover 勇气号火星探测车
+Spirograph Nebula 万花尺星云
+Spitzer Space Telescope 缩写:SST。斯皮策空间望远镜
+Spitzer-Oort hypothesis 斯皮策-奥尔特假说
+Splinter Galaxy 木刺星系
+Sponde 木卫三十六
+Spring Equinox 春分
+Spring Festival 春节
+Springfield mount 斯普林菲尔德装置
+Springfield mounting 斯普林菲尔德装置
+Sproul Observatory 斯普罗尔天文台
+Spry crater 斯普赖陨击坑
+Spur crater 斯珀陨击坑
+Sputnik Planitia 斯普特尼克号平原
+Spörer minimum 斯波勒极小期
+Spörer's law 斯波勒定律
+Square Kilometer Array 缩写:SKA。平方千米[射电望远镜]阵
+Sr 全称:strontium。锶
+Srīpur crater 斯里布尔陨击坑
+St. John crater 圣约翰环形山
+Stackel potential 斯塔克尔势
+Stadius crater 斯塔迪乌斯环形山
+Star Manual of the Masters Gan and Shi 甘石星经
+Stardust 星尘号
+Stark broadening 斯塔克展宽
+Stark effect 斯塔克效应
+Starlette 小星号
+Starlink 星联天文网络
+Stebbins crater 斯特宾斯环形山
+Stebbins-Whitford photometry 斯特宾斯-惠特福德测光
+Stebbins-Whitford system 斯特宾斯-惠特福德测光系统
+Steen River crater 斯廷河陨星坑
+Stefan crater 斯特藩环形山
+Stefan's constant 斯特藩常数
+Stefan's law 斯特藩定律
+Stefan-Boltzmann constant 斯特藩-玻尔兹曼常数
+Stefan-Boltzmann law 斯特藩-玻尔兹曼定律
+Stege crater 斯泰厄陨击坑
+Stein Crater Field crater 斯坦环形山群
+Steinheim crater 施泰因海姆陨击坑
+Steins 斯坦因斯
+Stella Mira 刍藁增二
+Stellar Data Center 缩写:SDC。恒星资料中心
+Stellarium Stellarium星空软件
+Steno crater 斯泰诺陨击坑
+Stephan's Quintet 斯蒂芬五重星系
+Stephano 天卫二十
+Stern molecular beam technique 斯特恩分子束技术
+Stern-Gerlach experiment 斯特恩-盖拉赫实验
+Sterope 昴宿三
+Stetson crater 斯特森环形山
+Steward Observatory 斯图尔德天文台
+Stingray Nebula 刺魟星云
+Stobs crater 斯托布斯陨击坑
+Stokes crater 1、斯托克斯环形山; 2、斯托克斯陨击坑
+Stokes meter 斯托克斯参数测量仪
+Stokes parameters 斯托克斯参数
+Stokes polarimetry 斯托克斯偏振测量
+Stokes' number 斯托克斯参数
+Stokes' parameter 斯托克斯参数
+Stomach 胃宿
+Ston crater 斯通陨击坑
+Stonehenge 巨石阵
+Stoney crater 斯托尼陨击坑
+Stopping-place 昴宿
+Strabo crater 斯特拉博环形山
+Strangways crater 斯特兰韦斯陨星坑
+Stratospheric Observatory for Infrared Astronomy 缩写:SOFIA。索菲亚平流层红外天文台
+Stratton crater 斯特拉顿环形山
+Street crater 斯特里特环形山
+Stride 奎宿
+Stroemberg asymmetrical drift 斯特龙贝格不对称漂移
+Stroemberg color system 斯特龙贝格颜色系统
+Stroemberg diagram 斯特龙贝格图
+Stroemgren four-color index 斯特龙根四色指数
+Stroemgren four-color photometry 斯特龙根四色测光
+Stroemgren photometry 斯特龙根测光
+Stroemgren radius 斯特龙根半径
+Stroemgren sphere 斯特龙根球区
+Stroemgren system 斯特龙根系统
+Strong Anthropic Principle 强人择原理
+Struve crater 斯特鲁维环形山
+Strömgren crater 斯特龙根环形山
+Stura Vallis 斯图拉峡谷
+Stygis Catena 斯堤克斯坑链
+Stygis Fossae 斯堤克斯堑沟群
+Styx 1、冥卫五; 2、斯堤克斯
+Styx Dorsum 斯堤克斯山脊
+Sualocin 瓠瓜一
+Suata crater 苏阿塔陨击坑
+Sub-Millimeter Array 缩写:SMA。SMA亚毫米波射电望远镜阵
+Subaru Telescope 昴星团望远镜
+Subbotin crater 苏博京环形山
+Submillimeter Telescope 缩写:SMT。SMT亚毫米波望远镜
+Submillimeter Telescope Observatory 缩写:SMTO。亚毫米波天文台
+Submillimeter Wave Astronomy Satellite 缩写:SWAS。SWAS亚毫米波天文卫星
+Submillimetre Common User Bolometer Array 缩写:SCUBA。亚毫米波普通用户辐射热计阵列
+Subra 轩辕十五
+Subuchin 苏步青星
+Subur Vallis 苏布尔峡谷
+Sucre crater 苏克雷陨击坑
+Sudbury crater 萨德伯里陨星坑
+Sudingqiang 苏定强
+Sudongpo 苏东坡
+Suess crater 聚斯陨击坑
+Suhail 老人星
+Suiqizhong 广州七中
+Suisei 彗星号探测器
+Sulafat 渐台三
+Sulak crater 苏拉克陨击坑
+Sulaphat 渐台三
+Sulci Gordii 戈尔迪沟脊群
+Sumgin crater 苏姆金陨击坑
+Summanus 苏曼努斯
+Summer Solstice 夏至
+Summer Triangle 夏夜大三角
+Sumner crater 萨姆纳环形山
+Sumner line 位置线; 萨姆纳线
+Sun-like activity 类太阳活动
+Sun-like oscillation 类太阳振荡
+Sun-like star 类太阳恒星
+Sundman theorem 宋德曼定理
+Sunflower Galaxy 葵花星系
+Sungari Vallis 松花江峡谷
+Sunguoyou 孙国佑
+Sunjiadong 孙家栋
+Sunweihsin 孙维新
+Sunyaev-Zel'dovich cooling 缩写:S-Z cooling。苏尼阿耶夫-泽尔多维奇冷化; SZ冷化
+Sunyaev-Zel'dovich distortion 苏尼阿耶夫-泽尔多维奇畸变
+Sunyaev-Zel'dovich effect 缩写:S-Z effect。苏尼阿耶夫-泽尔多维奇效应; SZ效应
+Super Kamiokande 缩写:Super-K。超级神冈
+Super-K 全称:Super Kamiokande。超级神冈
+Supercosmos 超级多功能底片测量仪
+Supernova Cosmology Project 缩写:SCP。超新星宇宙学计划
+Supernova Legacy Survey 缩写:SNLS。超新星遗珍巡天
+Supernova of 1054 1054年超新星
+Supreme Subtlety Enclosure 太微垣
+Surinda Valles 苏林达峡谷群
+Surius Vallis 苏里尤斯峡谷
+Surt crater 苏尔特陨击坑
+Surtur 土卫四十八
+Surveyor 探测者号
+Suttungr 土卫二十三
+Suzaku 朱雀号
+Suzhi crater 苏志陨击坑
+Suzhou 苏州
+Suzhou Planisphere 苏州石刻天文图
+Suzhousanzhong 苏州三中
+Swan Nebula 天鹅星云
+Swan band 斯旺谱带
+Swanage crater 斯沃尼奇陨击坑
+Sweden-ESO Submillimetre Telescope 缩写:SEST。瑞典-欧南台亚毫米波望远镜; SEST亚毫米波望远镜
+Swift 1、全称:Neil Gehrels Swift Observatory。格雷尔斯雨燕天文台; 2、全称:Swift Gamma-ray Burst Explorer。雨燕γ射线暴探测器
+Swift Gamma-ray Burst Explorer 缩写:Swift。雨燕γ射线暴探测器
+Swift spacecraft 雨燕太空飞船
+Swift γ-Ray Burst Mission 雨燕γ射线暴任务
+Swift γ-ray observatory 雨燕γ射线天文台
+Swift-Tuttle Comet 斯威夫特-塔特尔彗星
+Sycorax 天卫十七
+Sydney University Stellar Interferometer 缩写:SUSI。悉尼大学恒星干涉仪
+Sydney list 悉尼射电星表
+Sylvester crater 西尔维斯特环形山
+Sylvia 林神星
+Symphonie 交响曲号
+Syria 叙利亚
+Syria Colles 叙利亚小丘群
+Syria Mons 叙利亚山
+Syria Planum 叙利亚高原
+Syrma 亢宿二
+Syrtis Major 大瑟提斯
+Syrtis Major Planitia] [大瑟提斯平原]
+Syrtis Major Planum 大瑟提斯高原
+Sytinskaya crater 瑟京斯卡娅陨击坑
+Szilard crater 齐拉特环形山
+Sögel crater 瑟格尔陨击坑
+Sūf crater 苏夫陨击坑
+T Tauri phase 金牛T阶段
+T Tauri star 金牛T型星
+T Tauri variable 金牛T型变星
+T Tauri wind 金牛T星风
+T array T形天线阵
+T association T星协
+T dwarf T型矮星
+T star T型星
+T-BD 全称:transitional brown dwarf。过渡型褐矮星
+T-class asteroid T 型小行星
+T-corona T日冕
+T-duality T-对偶
+T-shaped array T形望远镜阵
+T-type asteroid T型小行星
+TAI 全称:Temp Atomique Internationale。国际原子时
+TAMS 全称:terminal-age main-sequence。终龄主序
+TAO 全称:Tokyo Astronomical Observatory。东京天文台
+TC 全称:meridian circle; transit circle。子午环
+TCB 全称:Barycentric Coordinate Time。质心坐标时
+TCDM 全称:Tilted Cold Dark Matter model。倾斜冷暗物质模型
+TCG 全称:Geocentric Coordinate Time。地心坐标时
+TD-1 全称:Thor-Delta-1。雷神德尔塔1号天文卫星
+TDB 全称:Barycentric Dynamical Time。质心力学时
+TDE 全称:tidal disruption event。潮汐瓦解事件
+TDI 全称:time-delay integration。时延积分
+TDRSS 全称:tracking and data-relay satellite system。跟踪和数据传输卫星系统
+TDT 全称:Terrestrial Dynamical Time。地球力学时
+TEO 全称:Terrestrial Ephemeris Origin。地球历书零点
+TES 全称:transition edge sensor。超导转换边界传感器
+TESS 全称:Transiting Exoplanet Survey Satellite。凌星系外行星巡天卫星
+TFD 全称:time and frequency dissemination。时频发播
+TGO 全称:Trace Gas Orbiter。痕量气体轨道器
+THEMIS 全称:Thermal Emission Imaging System。热辐射成像系统
+TIO 全称:Terrestrial Intermediate Origin。地球中间零点
+TIO locator TIO定位角
+TIO meridian TIO子午圈
+TIROS 全称:Television and Infrared Observation Satellite。泰罗斯号
+TIRS 全称:Terrestrial Intermediate Reference System。地球中间参考系
+TKR 全称:terrestrial kilometric radiation。地球千米波辐射
+TLP 全称:transient lunar phenomenon。月球暂现现象
+TMA 全称:three-mirror anastigmat。三反[射镜]消像散系统
+TMC 全称:Taurus molecular cloud。金牛分子云
+TMSS 全称:Two-Micron Sky Survey; 2-μ Sky Survey。2微米巡天
+TMT 全称:Thirty Meter Telescope。30米望远镜
+TNG 1、全称:Galileo National Telescope。国立伽利略望远镜; 2、全称:Telescopio Nazionale Galileo。国立伽利略望远镜
+TNO 全称:trans-Neptunian object。海王星外天体; 海外天体
+TOAD 全称:tremendous outburst amplitude dwarf nova。巨爆幅矮新星
+TOC 全称:time of coincidence。重合时间
+TP-AGB 全称:Thermally Pulsing Asymptotic Giant Branch。热脉动渐近巨星支
+TPF 全称:Terrestrial Planet Finder。类地行星搜索者
+TRACE 全称:Transition Region and Coronal Explorer。过渡区与日冕探测器; TRACE太阳探测器
+TRGB 全称:tip of the red giant branch。红巨星支上端
+TT 全称:Terrestrial Time。地球时
+TTS 全称:Test and Training Satellite。TTS试验和训练卫星
+TV camera 全称:television camera。电视照相机
+TV guider 全称:television guider。电视导星镜
+TV guiding 全称:television guiding。电视导星
+TWM 全称:traveling-wave maser。行波微波激射器
+TWT 全称:traveling-wave tube。行波管
+Ta 全称:tantalum。钽
+Ta Tsun 太尊
+Tabei Montes 田部井山脉
+Tabit 参旗六
+Tabou crater 塔布陨击坑
+Tacubaya National Observatory 塔库巴亚国立天文台
+Tader Valles 塔德峡谷群
+Taejin crater 大津陨击坑
+Tagish Lake meteorite 塔吉什湖陨石
+Tagus Valles 塔古斯峡谷群
+Tail 尾宿
+Taiwan 台湾
+Taiyangshou 太阳守
+Taiyi 太一
+Taiyo 缩写:SRATS。太阳号
+Taiyuan 太原
+Tak crater 达府陨击坑
+Tala crater 塔莱陨击坑
+Talas crater 塔拉斯陨击坑
+Talcott level 太尔各特水准
+Talcott method 太尔各特方法
+Talita 上台一; 三台一
+Talitha 上台一; 三台一
+Talitha Australis 上台二; 二台二
+Talsi crater 塔尔西陨击坑
+Taltal crater 塔尔塔尔陨击坑
+Talu crater 塔卢陨击坑
+Tame crater 塔梅陨击坑
+Tamyeunleung 谭远良
+Tana Vallis 塔纳峡谷
+Tanaica Montes 塔娜伊卡山脉
+Tanais 塔纳伊斯
+Tanais Fossae 塔纳伊斯堑沟群
+Tangauchin 唐敖庆
+Tangshan 唐山
+Tangtisheng 唐涤生
+Tania Australis 中台二; 三台四
+Tania Borealis 中台一; 三台三
+Tanjiazhen 谈家桢
+Tantalus Fluctus 坦塔罗斯波纹地
+Tantalus Fossae 坦塔罗斯堑沟群
+Taofanlin 陶蕃麟
+Tara crater 塔拉陨击坑
+Tarakan crater 打拉根陨击坑
+Tarantula 蜘蛛星云
+Tarantula Nebula 蜘蛛星云
+Tarata crater 塔拉塔陨击坑
+Tarazad 河鼓三
+Tarazed 河鼓三
+Tarf 柳宿增十
+Target of Opportunity 1、机遇目标; 2、缩写:ToO。机遇目标
+Tarma crater 塔尔马陨击坑
+Tarq crater 塔尔格陨击坑
+Tarqeq 土卫五十二
+Tarrafal crater 塔拉法尔陨击坑
+Tarsus crater 塔尔苏斯陨击坑
+Tartarus Colles 塔耳塔罗斯小丘群
+Tartarus Dorsa 塔耳塔洛斯山脊
+Tartarus Montes 塔耳塔罗斯山脉
+Tartarus Rupes 塔耳塔罗斯峭壁
+Tartarus Scopulus 塔耳塔罗斯断崖
+Tarvos 土卫二十一
+Tashikuergan 塔什库尔干
+Tau 1、全称:Taurus。金牛宫; 大梁 ; 酉宫; 2、全称:Taurus。金牛座
+Taurid meteor shower 金牛座流星雨
+Taurids 金牛流星群
+Taurus 1、缩写:Tau。金牛宫; 大梁 ; 酉宫; 2、缩写:Tau。金牛座
+Taurus Moving Cluster 金牛移动星团
+Taurus X-1 金牛X-1
+Taurus cluster 金牛星团
+Taurus molecular cloud 缩写:TMC。金牛分子云
+Taurus stream 金牛星流
+Taurus-Littrow Valley 金牛-利特罗峡谷
+Taus Vallis 陶斯峡谷
+Tavua crater 塔武阿陨击坑
+Taxco crater 塔斯科陨击坑
+Taygeta 昴宿二
+Taygete 1、昴宿二; 2、木卫二十
+Taylor column 泰勒柱
+Taylor instability 泰勒不稳定性
+Taytay crater 泰泰陨击坑
+Taza crater 塔扎陨击坑
+Tb 全称:terbium。铽
+Tc 全称:technetium。锝
+Te 全称:tellurium。碲
+TeV halo 太电子伏晕
+Tebbutt Comet 特巴特彗星
+Tecolote crater 特科洛特陨击坑
+Tegmen 水位四
+Tegmine 水位四
+Tehachapi crater 蒂哈查皮陨击坑
+Teharonhiawako 造神星
+Teide Observatory 泰德峰天文台
+Teisserenc crater 泰塞朗·德博尔环形山
+Teisserenc de Bort crater 泰瑟朗·德博尔特陨击坑
+Tejat 井宿一
+Tejat Posterior 井宿一
+Tejat Prior 钺
+Tejn crater 采恩陨击坑
+Tel 全称:Telescopium。望远镜座
+Telescopio Nazionale Galileo 缩写:TNG。国立伽利略望远镜
+Telescopium 缩写:Tel。望远镜座
+Telesto 土卫十三
+Television and Infrared Observation Satellite 缩写:TIROS。泰罗斯号
+Tellus Tessera 泰洛斯镶嵌地块
+Telz crater 特尔茨陨击坑
+Tem' crater 泰米陨击坑
+Temp Atomique Internationale 缩写:TAI。国际原子时
+Tempe 滕比
+Tempe Colles 滕比小丘群
+Tempe Fossae 滕比堑沟群
+Tempe Mensa 滕比桌山
+Tempe Terra 滕比台地
+Tempel's 1 comet 坦普尔1号彗星
+Tempel's comet 坦普尔彗星
+Tempel-Tuttle Comet 坦普尔-塔特尔彗星
+Tempel-Tuttle comet 坦普尔-塔特尔彗星
+Tengzhou 滕州
+Tenma 天马号
+Tenuis Cavus 特纽伊斯凹地
+Tenuis Mensa 特纽伊斯桌山
+Tenzing Montes 丹增山脉
+Tepko crater 特普科陨击坑
+Terby crater 特尔比陨击坑
+Terebellum 狗国
+Teresateng 邓丽君
+Termes Vallis 托尔梅斯峡谷
+Terpsichore 司舞星
+Terra Cimmeria 客墨里亚台地
+Terra Meridiani 子午台地
+Terra Sabaea 示巴台地
+Terra Sirenum 塞壬台地
+Terrestrial Dynamical Time 缩写:TDT。地球力学时
+Terrestrial Ephemeris Origin 缩写:TEO。地球历书零点
+Terrestrial Intermediate Origin 缩写:TIO。地球中间零点
+Terrestrial Intermediate Reference System 缩写:TIRS。地球中间参考系
+Terrestrial Planet Finder 缩写:TPF。类地行星搜索者
+Terrestrial Time 缩写:TT。地球时
+Test and Training Satellite 缩写:TTS。TTS试验和训练卫星
+Tethys 土卫三
+Teviot Vallis 蒂维厄特峡谷
+Th 全称:thorium。钍
+Thabit 参宿增卅六
+Thalassa 海卫四
+Thalia 司剧星
+Tharsis 塔尔西斯
+Tharsis Bulge 塔尔西斯突出部
+Tharsis Montes 塔尔西斯山脉
+Tharsis Tholus 塔尔西斯山丘
+Thaumasia 陶玛西亚
+Thaumasia Fossae 陶玛西亚堑沟群
+Thaumasia Planum 陶玛西亚高原
+The Bright Star Catalogue 缩写:BS。亮星星表
+The Corrective Optics Space Telescope Axial Replacement 缩写:COSTAR。COSTAR光学改正系统
+Thebe 木卫十四
+Theemim 天园九
+Theemin 九州殊口四
+Theemini 天苑三
+Theia 忒伊亚
+Theia Mons 忒伊亚山
+Thelxinoe 木卫四十二
+Themis 司理星
+Themis family 司理星族
+Themisto 木卫十八
+Theophilus crater 西奥菲勒斯环形山
+Theory of Bright Heavens 昕天论
+Theory of Canopy-Heavens 盖天说
+Theory of Sphere-Heavens 浑天说
+Theory of Stable Heavens 安天论
+Theory of Vaulting Heavens 穹天论
+Thermal Emission Imaging System 缩写:THEMIS。热辐射成像系统
+Thermally Pulsing Asymptotic Giant Branch 缩写:TP-AGB。热脉动渐近巨星支
+Thermia crater 塞尔米亚陨击坑
+Thetis 海女星
+Thiazzi 土卫六十三
+Thiele-Burrau regularization 蒂利-布劳正规化
+Thiessen crater 蒂森环形山
+Thila crater 西拉陨击坑
+Thira crater 锡拉陨击坑
+Third Cambridge Catalogue of Radio Sources 缩写:3C catalogue。第3剑桥射电源表; 3C射电源表
+Thirty Meter Telescope 缩写:TMT。30米望远镜
+Thisbe 尽女星
+Thom crater 吞城陨击坑
+Thomas Pereira 徐日昇
+Thomas-Fermi theory 托马斯-费米理论
+Thomson crater 汤姆孙环形山
+Thomson cross-section 汤姆孙截面
+Thomson effect 汤姆孙效应
+Thomson scattering 汤姆孙散射
+Thomson scattering coefficient 汤姆孙散射系数
+Thomson scattering cross-section 汤姆孙散射截面
+Thor-Delta-1 缩写:TD-1。雷神德尔塔1号天文卫星
+Thorne-Zytkow object 索恩-祖特阔夫天体
+Thorondor 索隆多
+Thoth 透特
+Three Enclosures 三垣
+Three Sequences Calendar 三统历
+Three-stars 参宿
+Thrymr 土卫三十
+Thuban 右枢; 紫微右垣一
+Thule 图勒
+Thule crater 图勒陨击坑
+Thule group 图勒群
+Thumbprint Nebula 指纹星云
+Thusia 骑官一
+Thyles Chasma 塞勒深谷
+Thyles Montes 塞勒山脉
+Thyles Rupes 塞勒峭壁
+Thymiamata 蒂米亚马塔
+Thymiamata Serpens 蒂米亚马塔蛇状脊
+Thyone 木卫二十九
+Thyra 赛娜
+Ti 全称:titanium。钛
+Tiaki 鹤二
+Tian-guan guest star 天关客星
+Tianchan 天谗
+Tianguan 天关
+Tianjin 天津
+Tianjindaxue 天津大学
+Tianyahaijiao 天涯海角
+Tianyi 天一
+Tianzhushan crater 天柱山陨击坑
+Tibrikot crater 蒂布里果德陨击坑
+Tidal circularization 潮汐圆化
+Tienchanglin 田长霖
+Tignish crater 蒂格尼什陨击坑
+Tigre Valles 蒂格雷峡谷群
+Tikhomirov crater 季霍米罗夫环形山
+Tikhonravov crater 吉洪拉沃夫陨击坑
+Tikhov crater 1、季霍夫环形山; 2、季霍夫陨击坑
+Tile crater 提莱陨击坑
+Tilted Cold Dark Matter model 缩写:TCDM。倾斜冷暗物质模型
+Timaru crater 蒂马鲁陨击坑
+Timbuktu crater 廷巴克图陨击坑
+Timiryazev crater 季米里亚泽夫环形山
+Timoshenko crater 季莫申科陨击坑
+Tinia Valles 蒂尼亚峡谷群
+Tinjar Valles 廷札峡谷群
+Tinkaping 田家炳
+Tinto Vallis 廷托峡谷
+Tiselius crater 蒂塞利乌斯环形山
+Tisia Valles 蒂西亚峡谷群
+Tisserand's criterion 蒂塞朗判据
+Tisserand's relation 蒂塞朗关系
+Titan 土卫六
+Titania 天卫三
+Titawin 天大将军六
+Tithoniae Catenae 提托诺斯坑链群
+Tithoniae Fossae 提托诺斯堑沟群
+Tithonium Chasma 提托诺斯深谷
+Tithonius Lacus 提托诺斯湖
+Titius crater 提丢斯环形山
+Titius-Bode law 提丢斯-波得定则
+Titius-Bode's law 提丢斯-波得定则
+Tiu Valles 蒂乌峡谷群
+Tivat crater 蒂瓦特陨击坑
+Tivoli crater 蒂沃利陨击坑
+Tiwi crater 提维陨击坑
+Tl 全称:thallium。铊
+Tm 全称:thulium。铥
+ToO 全称:Target of Opportunity。机遇目标
+Toby Jug Nebula 托比壶星云
+Toconao crater 托科瑙陨击坑
+Tohil Mons 托希尔山
+Tokamak 托卡马克
+Tokko crater 托科陨击坑
+Tokma crater 托克马陨击坑
+Tokoyo Fossa 常世沟
+Tokyo Astronomical Observatory 缩写:TAO。东京天文台
+Tolies eyepiece 托勒斯目镜
+Toliman 南门二
+Tolman-Bondi solution 托尔曼-邦迪解
+Tolon crater 托隆陨击坑
+Tomari crater 托马里陨击坑
+Tombaugh Regio 汤博区
+Tombaugh crater 汤博陨击坑
+Tombe crater 通贝陨击坑
+Tomini crater 托米尼陨击坑
+Tonantzintla National Astrophysical Observatory 托南钦特拉国立天文台
+Tonatiuh 大理增二
+Tongling 铜陵
+Tookoonooka crater 图库努卡陨星坑
+Toomre sequence 图姆尔星系并合序
+Toomre's model 图姆尔模型
+Toomre's stability criterion 图姆尔稳定性判据
+Tooting crater 图廷陨击坑
+Topola crater 托波拉陨击坑
+Torbay crater 托贝陨击坑
+Torcular 右更四
+Torcularis Septentrionalis 右更四
+Toro crater 托罗陨击坑
+Torsö crater 图什陨击坑
+Torup crater 图鲁普陨击坑
+Tournesol 向日葵号科学卫星
+Toutatis 托塔蒂斯
+Tr 全称:trace。迹
+TrA 全称:Triangulum Australe。南三角座
+Trace Gas Orbiter 缩写:TGO。痕量气体轨道器
+Tractus Albus 特拉克图斯亮带
+Tractus Catena 特拉克图斯坑链
+Tractus Fossae 特拉克图斯堑沟群
+Transiting Exoplanet Survey Satellite 缩写:TESS。凌星系外行星巡天卫星
+Transiting Exoplanet Survey Telescope 凌星系外行星巡天望远镜
+Transition Region and Coronal Explorer 缩写:TRACE。过渡区与日冕探测器; TRACE太阳探测器
+Trapezium Cluster 猎户四边形星团
+Trapezium of Orion 猎户四边形天体
+Treatise on Astrology in the Kaiyuan Reign 《开元占经》
+Trebia Valles 特雷比亚峡谷群
+Tremaine-Gunn limit 特里梅因-冈恩极限
+Tri 全称:Triangulum。三角座
+Triads 参宿
+Triangulum 缩写:Tri。三角座
+Triangulum Australe 缩写:TrA。南三角座
+Triangulum Galaxy 三角星系
+Triangulum Nebula 三角星系
+Trifid Nebula 三叶星云
+Trinacria 特里那克里亚
+Trinculo 天卫二十一
+Trinidad crater 特立尼达陨击坑
+Trio in Leo 狮子三重星系
+Triolet crater 特里奥莱陨击坑
+Triones 北斗[七星]
+Triton 海卫一
+Trivium Charontis 卡戎岔口
+Troika crater 特罗伊察陨击坑
+Troilus 特洛伊鲁斯
+Trojan asteroid 特洛伊型小行星
+Trojan group 特洛伊群
+Trojans 特洛伊型小行星
+Tropic of Cancer 北回归线
+Tropic of Capricorn 南回归线
+Trouvelot crater 特鲁夫洛陨击坑
+Troy crater 特洛伊陨击坑
+Trud crater 特鲁德陨击坑
+Trumpler crater 1、特朗普勒环形山; 2、特朗普勒陨击坑
+Trumpler's classification 特朗普勒分类
+Trumpler's star 特朗普勒星
+Tsai 蔡章献
+Tsander crater 灿德尔环形山
+Tsanghinchi 曾宪梓
+Tsau crater 察乌陨击坑
+Tseraskiy crater 采拉斯基环形山
+Tsih 策
+Tsinghua 清华
+Tsiolkovskii crater 齐奥科夫斯基环形山
+Tsiolkovskiy crater 齐奥尔科夫斯基环形山
+Tsuchinshan comet 紫金山彗星
+Tsuihark 徐克
+Tsukuba crater 筑波陨击坑
+Tsytovich effect 齐托维奇效应
+Tuapi crater 图阿皮陨击坑
+Tuc 全称:Tucana。杜鹃座
+Tucana 缩写:Tuc。杜鹃座
+Tucana Dwarf Galaxy 杜鹃座矮星系
+Tugaske crater 特加斯基陨击坑
+Tully-Fisher method 塔利-费希尔方法
+Tully-Fisher relation 塔利-费希尔关系
+Tumul crater 图穆尔陨击坑
+Tun 顿
+Tungla crater 通格拉陨击坑
+Tunguska crater 通古斯陨星坑
+Tunguska event 通古斯事件
+Tunguska-class NEA 通古斯型近地小行星
+Tunuunik crater 图努尼克陨星坑
+Tura crater 图拉陨击坑
+Turais 海石二
+Turbi crater 图尔比陨击坑
+Tureis 弧矢增卅二
+Turma crater 图尔马陨击坑
+Turner method 特纳法
+Turtle beak 觜宿
+Turyeish 海石二
+Tuscaloosa crater 塔斯卡卢萨陨击坑
+Tuskegee crater 塔斯基吉陨击坑
+Tuyouyou 屠呦呦
+Twin Jet Nebula 双喷流星云
+Two Micron All Sky Survey 缩写:2MASS。2微米全天巡视
+Two-Micron Sky Survey 缩写:TMSS。2微米巡天
+Two-degree-Field Galaxy Redshift Survey 缩写:2dFGRS。2度视场星系红移巡天
+Two-degree-field redshift survey 缩写:2dF Survey。2度视场红移巡天
+Tycho 第谷天测卫星
+Tycho Brahe crater 第谷 ·布拉赫陨击坑
+Tycho Catalogue 第谷星表
+Tycho crater 第谷环形山
+Tycho's nova 第谷新星
+Tycho's star 第谷星
+Tycho's supernova 第谷超新星
+Tychonic system 第谷体系
+Tyl 天厨三
+Tyndall crater 廷德耳陨击坑
+Typhon 台神星
+Tyras Vallis 第拉斯峡谷
+Tyrrhena Dorsa 第勒纳山脊群
+Tyrrhena Fossae 第勒纳堑沟群
+Tyrrhena Mons 第勒纳山
+Tyrrhena Patera 第勒纳山口
+Tyrrhena Terra 第勒纳台地
+Tyrrhenus Labyrinthus 第勒纳沟网
+Tyrrhenus Mons 第勒纳山
+Tyuratam crater 秋拉塔姆陨击坑
+Tzolk'in calendar 卓尔金历
+Tábor crater 塔博尔陨击坑
+Tōno crater 远野陨击坑
+U 全称:uranium。铀
+U Gem binary 缩写:UG。双子U型双星
+U Gem star 缩写:UG。双子U型星
+U Gem variable 缩写:UG。双子U型变星
+U Gem variable star 缩写:UG。双子U型变星
+U Geminorum star 缩写:UG。双子U型星
+U burst U型暴
+U line U谱线
+U-B color index U-B色指数
+U-class asteroid U 型小行星
+U-magnitude U星等
+UBC-Laval Telescope 全称:University of British Columbia and Laval University Telescope。UBC-拉瓦勒望远镜
+UBV color system UBV颜色系统
+UBV photometry UBV测光
+UBV system UBV系统
+UBVGRI photometry UBVGRI测光
+UBVRI color system UBVRI颜色系统
+UBVRI photometry UBVRI测光
+UBVRI system UBVRI系统
+UBVRIJKL photometry UBVRIJKL测光
+UCD 1、全称:Unified Content Descriptors。统一内容描述符; 2、全称:ultra-compact dwarf galaxy。超致密矮星系; 3、全称:ultracool dwarf。超冷矮星
+UCSD 全称:ultracool subdwarfs。超冷亚矮星
+UDG 全称:ultra diffuse galaxy。超弥散星系
+UFO 全称:unidentified flying object。不明飞行物
+UG 1、全称:U Gem binary。双子U型双星; 2、全称:U Gem variable; U Gem variable star。双子U型变星; 3、全称:U Geminorum star ; U Gem star。双子U型星
+UGC 全称:Uppsala General Catalogue of Galaxies。乌普萨拉星系总表
+UHECR 全称:ultra-high energy cosmic ray。特高能宇宙线
+UHF 全称:ultra-high frequency。特高频
+UK Schmidt Telescope 缩写:UKST。英国施密特望远镜
+UKIDSS 全称:UKIRT Infrared Deep Sky Survey。英国红外深空巡天
+UKIRT 1、全称:United Kingdom Infra-Red Telescope。英国红外望远镜; 2、全称:United Kingdom Infrared Telescope。英国红外望远镜; 3、全称:United Kingdom Infrared Telescope。英国红外望远镜
+UKIRT Infrared Deep Sky Survey 缩写:UKIDSS。英国红外深空巡天
+UKST 1、全称:UK Schmidt Telescope。英国施密特望远镜; 2、全称:United Kingdom Schmidt Telescope。英国施密特望远镜
+ULDB 全称:Ultra Long Duration Balloon。超长航时气球
+ULE 全称:ultra low expansion glass。超低膨胀玻璃
+ULIG 全称:ultraluminous infrared galaxy。特高光度红外星系
+ULIRG 全称:ultraluminous infrared galaxy。极亮红外星系
+UMa 全称:Ursa Major。大熊座
+UMa cluster 全称:Ursa Major cluster。大熊星团
+UMa group 1、全称:Ursa Major group。大熊星系群; 2、全称:Ursa Major group。大熊星群
+UMa Ⅰ 全称:Ursa Major Ⅰ dwarf。大熊矮星系Ⅰ
+UMa Ⅱ 全称:Ursa Major Ⅱ dwarf。大熊矮星系Ⅱ
+UMi 全称:Ursa Minor。小熊座
+UMi system 全称:Ursa Minor system。小熊星系
+URSI 全称:International Union of Radio Science。国际无线电科学联合会
+US Naval Observatory 缩写:USNO。美国海军天文台
+USNO 1、全称:US Naval Observatory。美国海军天文台; 2、全称:United States Naval Observatory。美国海军天文台
+UT 全称:universal time。世界时
+UTC 全称:Coordinated Universal Time。协调世界时
+UU Her star 武仙UU型星
+UV Cet star 鲸鱼UV型星
+UV Per star 英仙UV型星
+UV astronomy 全称:ultraviolet astronomy。紫外天文学
+UV background 全称:ultraviolet background。紫外背景
+UV band 全称:ultraviolet band。紫外波段
+UV bright star 全称:ultraviolet-bright star。紫外亮星
+UV camera 全称:ultraviolet camera。紫外照相机
+UV color 全称:ultraviolet color。紫外色
+UV continuum 全称:ultraviolet continuum。紫外连续谱
+UV counterpart 全称:ultraviolet counterpart。紫外对应体
+UV cutoff 全称:ultraviolet cutoff。紫外截断
+UV detector 全称:ultraviolet detector。紫外探测器
+UV drop-out 全称:ultraviolet drop-out。紫外漏失
+UV dwarf 全称:ultraviolet dwarf。紫外矮星
+UV excess 全称:ultraviolet excess。紫外超
+UV extinction 全称:ultraviolet extinction。紫外消光
+UV filter 全称:ultraviolet filter。紫外滤光片
+UV identification 全称:ultraviolet identification。紫外证认
+UV image 全称:ultraviolet image。紫外像
+UV ionization chamber 全称:ultraviolet ionization chamber。紫外电离室
+UV light 全称:ultraviolet light。紫外光
+UV line 全称:ultraviolet line。紫外谱线
+UV luminosity 全称:ultraviolet luminosity。紫外光度
+UV magnitude 全称:ultraviolet magnitude。紫外星等
+UV map 全称:ultraviolet map。紫外天图
+UV object 全称:ultraviolet object。紫外天体
+UV photography 全称:ultraviolet photography。紫外照相
+UV photometry 全称:ultraviolet photometry。紫外测光
+UV radiation 全称:ultraviolet radiation。紫外辐射
+UV radiation detector 全称:ultraviolet radiation detector。紫外辐射探测器
+UV satellite 全称:ultraviolet satellite。紫外卫星
+UV sky 全称:ultraviolet sky。紫外天空
+UV source 全称:ultraviolet source。紫外源
+UV spectrograph 全称:ultraviolet spectrograph。紫外摄谱仪
+UV spectrophotometry 全称:ultraviolet spectrophotometry。紫外分光光度测量
+UV spectroscopy 全称:ultraviolet spectroscopy。紫外分光
+UV spectrum 全称:ultraviolet spectrum。紫外光谱
+UV star 全称:ultraviolet star。紫外星
+UV survey 全称:ultraviolet surveys。紫外巡天
+UV telescope 全称:ultraviolet telescope。紫外望远镜
+UV-excess object 全称:ultraviolet-excess object。紫外超天体
+UV-excess star 全称:ultraviolet-excess star。紫外超恒星
+UX UMa star 大熊UX型星
+Uayeb 瓦耶勃
+Ubercal 全称:ubercalibration。上定标
+Ubud crater 乌布德陨击坑
+UcBV photometry UcBV测光
+Uchronia 乌克罗尼亚
+Udzha crater 乌贾陨击坑
+Uhuru 乌呼鲁X射线卫星
+Uhuru Catalogue of X-ray Sources 乌呼鲁X射线源表
+Ukdah 星宿四
+Ulricehamn crater 乌尔里瑟港陨击坑
+Ultima Lingula 乌尔蒂马舌状地
+Ultimi Cavi 乌尔蒂马凹地群
+Ultimi Scopuli 乌尔蒂马断崖群
+Ultimum Chasma 乌尔蒂马深谷
+Ultra Long Duration Balloon 缩写:ULDB。超长航时气球
+Ulu crater 乌卢陨击坑
+Ulya crater 乌利亚陨击坑
+Ulysses 尤利西斯号太阳探测器
+Ulysses Colles 尤利西斯小丘群
+Ulysses Fossae 尤利西斯堑沟群
+Ulysses Patera 尤利西斯山口
+Ulysses Tholus 尤利西斯山丘
+Ulyxis Rupes 尤利克西斯峭壁
+Umatac crater 乌马塔克陨击坑
+Umbra 温布拉
+Umbriel 天卫二
+Una Vallis 乌纳峡谷
+Uncama Fossa 翁卡玛堑沟
+Undina 波神星
+Undina family 波神星族
+Unified Content Descriptors 缩写:UCD。统一内容描述符
+United Kingdom Infra-Red Telescope 缩写:UKIRT。英国红外望远镜
+United Kingdom Infrared Telescope 1、缩写:UKIRT。英国红外望远镜; 2、缩写:UKIRT。英国红外望远镜
+United Kingdom Schmidt Telescope 缩写:UKST。英国施密特望远镜
+United States Naval Observatory 缩写:USNO。美国海军天文台
+University of British Columbia and Laval University Telescope 缩写:UBC-Laval Telescope。UBC-拉瓦勒望远镜
+Unruh radiation 盎鲁辐射
+Unuk al Hai 天市右垣七; 蜀
+Unukalhai 天市右垣七; 蜀
+Unurgunite 弧矢增二
+Uppsala General Catalogue of Galaxies 缩写:UGC。乌普萨拉星系总表
+Urakhga 1、天津二; 2、天津二
+Urania 司天星
+Uranian ring 天王星环
+Uranian ringlet 天王星窄环
+Uranian satellite 天卫
+Uranius Dorsum 乌拉纽斯山脊
+Uranius Fossae 乌拉纽斯堑沟群
+Uranius Mons 乌拉纽斯山
+Uranius Patera 乌拉纽斯山口
+Uranius Tholus 乌拉纽斯山丘
+Uranographia 《波德星图》
+Uranometria 《测天图》
+Uranus 天王星
+Uranus' ring 天王星环
+Urashima crater 浦岛坑
+Urca process 乌卡过程
+Urk crater 于尔克陨击坑
+Ursa Major 缩写:UMa。大熊座
+Ursa Major Moving Cluster 大熊移动星团
+Ursa Major cluster 缩写:UMa cluster。大熊星团
+Ursa Major group 1、缩写:UMa group。大熊星系群; 2、缩写:UMa group。大熊星群
+Ursa Major Ⅰ dwarf 缩写:UMa Ⅰ。大熊矮星系Ⅰ
+Ursa Major Ⅱ dwarf 缩写:UMa Ⅱ。大熊矮星系Ⅱ
+Ursa Minor 缩写:UMi。小熊座
+Ursa Minor system 缩写:UMi system。小熊星系
+Ursa Minorids 小熊流星群
+Ursid meteor shower 小熊流星雨
+Ursids 小熊流星群
+Urumqi 乌鲁木齐
+Usiku Cavus 乌西库凹地
+Utan crater 乌坦陨击坑
+Utopia 乌托邦
+Utopia Planitia 乌托邦平原
+Utopia Rupēs 乌托邦峭壁
+Uzboi Vallis 乌兹博伊峡谷
+Uzer crater 于泽尔陨击坑
+V 全称:vanadium。钒
+V-I color index V-I色指数
+V-R color index V-R色指数
+V-class asteroid V 型小行星
+V-magnitude V星等
+V-type asteroid V型小行星
+V/Vm test V/Vm 检验
+VAO 全称:Virtual Astronomical Observatory。虚拟天文台
+VATT 全称:Vatican Advanced Technology Telescope。梵蒂冈高新技术望远镜
+VBLUW color system VBLUW颜色系统
+VBLUW photometry VBLUW测光
+VERITAS 全称:Very Energetic Radiation Imaging Telescope Array System。甚高能辐射成像望远镜阵
+VEV 全称:vacuum expectation value。真空期望值
+VHECR 全称:very high energy cosmic ray。甚高能宇宙线
+VHF 全称:very high frequency。甚高频
+VISTA 1、全称:Visible and Infrared Survey Telescope for Astronomy。可见光及红外巡天望远镜; 2、全称:Visible and Infrared Survey Telescope for Astronomy。天文可见光及红外巡天望远镜
+VLA 全称:Very Large Array。甚大阵
+VLB 全称:very long baseline。甚长基线
+VLBA 全称:Very Long Baseline Array。甚长基线[射电望远镜]阵
+VLBI 1、全称:Very Long Baseline Interferometry。甚长基线干涉测量; 2、全称:very long baseline interferometer。甚长基线干涉仪
+VLBI Space Observatory Programme 缩写:VSOP。空间甚长基线干涉测量天文台计划
+VLF 全称:very low frequency。甚低频
+VLT 全称:Very Large Telescope。甚大望远镜
+VLT Survey Telescope 缩写:VST。VLT巡天望远镜
+VLTI 全称:Very Large Telescope Inteferometer。甚大望远镜干涉仪
+VMO 全称:very massive object。甚大质量天体
+VO-India 全称:Virtual Observatory India。印度虚拟天文台
+VRI color system VRI颜色系统
+VRO 1、全称:Vera C. Rubin Observatory。薇拉·鲁宾天文台; 2、全称:variable radio object。射电变化天体
+VRS 全称:variable radio source。射电变源
+VS 全称:variable star。变星
+VSH 全称:vector spherical harmonics。矢量球谐函数
+VSL giant 全称:very strong-lined giant。甚强线巨星
+VSL star 全称:very strong-lined star。甚强线星
+VSOP 全称:VLBI Space Observatory Programme。空间甚长基线干涉测量天文台计划
+VST 全称:VLT Survey Telescope。VLT巡天望远镜
+VSWR 全称:voltage standing wave ratio。电压驻波比
+VV Cep star 全称:VV Cephei star。仙王VV型星
+VV Cephei star 缩写:VV Cep star。仙王VV型星
+VV catalogue 全称:Vorontsov-Velyaminov Catalogue of Interacting Galaxies。沃隆佐夫-威廉明诺夫相互作用星系表
+VZT 全称:visual zenith telescope。目视天顶仪
+Vaals crater 法尔斯陨击坑
+Vaca Muerta meteorite 巴卡穆埃尔塔陨星
+Vaduz crater 瓦杜兹陨击坑
+Vainu Bappu Observatory 巴普天文台
+Valentine Nebula 情人星云
+Valetudo 木卫六十二
+Valga crater 瓦尔加陨击坑
+Valhalla Basin 瓦哈拉盆地
+Valles Marineris 水手号峡谷群
+Vallis Alpes 阿尔卑斯大峡谷
+Vallis Baade 巴德谷
+Vallis Bohr 玻尔谷
+Vallis Bouvard 布瓦尔谷
+Vallis Capella 卡佩拉谷
+Vallis Christel 克里斯特尔谷
+Vallis Inghirami 因吉拉米谷
+Vallis Krishna 克里希纳谷
+Vallis Palitzsch 帕利奇谷
+Vallis Planck 普朗克谷
+Vallis Rheita 里伊塔月谷
+Vallis Schrödinger 薛定谔谷
+Vallis Schröteri 施洛特月谷
+Vallis Snellius 斯涅尔谷
+Valverde crater 巴尔韦德陨击坑
+Van Allen belt 范艾伦带
+Van Allen radiation belt 范艾伦辐射带
+Vanguard 前锋
+Vanth 亡卫
+Varda 瓦尔达
+Variabilis Coronae 北冕座R
+Varuna 伐楼那
+Varus Valles 瓦鲁斯峡谷群
+Vasco da Gama crater 瓦斯科·达·伽马环形山
+Vastitas Borealis 北方荒原
+Vatican Advanced Technology Telescope 缩写:VATT。梵蒂冈高新技术望远镜
+Vatican Observatory 梵蒂冈天文台
+Vaux crater 沃堡陨击坑
+Vavilov crater 瓦维洛夫环形山
+Vedra Valles 韦德拉峡谷群
+Vega 1、织女一; 织女星; 2、维加号
+Vega Terra 维加号台地
+Vega crater 韦加环形山
+Vega phenomenon 织女星现象
+Vega-like object 类织女天体
+Veil Nebula 帷幕星云
+Vel 全称:Vela。船帆座
+Vel X-1 船帆X-1
+Vela 缩写:Vel。船帆座
+Vela Supernova 船帆座超新星
+Vela pulsar 船帆脉冲星
+Vela supernova remnant 船帆超新星遗迹
+Venera Terra 金星号台地
+Venera probe 金星号探测器
+Vening Meinesz crater 芬宁·梅因纳斯环形山
+Ventris crater 文特里斯环形山
+Venus 金星; 太白
+Venus Express 金星快车
+Venus globe 金星仪
+Vera C. Rubin Observatory 缩写:VRO。薇拉·鲁宾天文台
+Verde Vallis 弗德峡谷
+Verissimo Monteiro de Serra 高守谦
+Veritate 螣蛇增九
+Verlaine crater 韦尔莱讷陨击坑
+Vermilion Bird 朱鸟
+Vernadskiy crater 韦尔纳茨基环形山
+Vernal Equinox 春分
+Vernal crater 弗纳尔陨击坑
+Very Energetic Radiation Imaging Telescope Array System 缩写:VERITAS。甚高能辐射成像望远镜阵
+Very Large Array 缩写:VLA。甚大阵
+Very Large Telescope 缩写:VLT。甚大望远镜
+Very Large Telescope Inteferometer 缩写:VLTI。甚大望远镜干涉仪
+Very Long Baseline Array 缩写:VLBA。甚长基线[射电望远镜]阵
+Very Long Baseline Interferometry 缩写:VLBI。甚长基线干涉测量
+Very crater 维里陨击坑
+Vesalius crater 维萨里环形山
+Vesper 长庚; 昏星
+Vesperus 长庚; 昏星
+Vesta 灶神星
+Vesta-like asteroid 类灶小行星
+Vetchinkin crater 韦钦金环形山
+Viana crater 维亚纳陨击坑
+Vibilia 旅神星
+Vichada Valles 比查达峡谷群
+Victor M. Blanco Telescope 布兰科望远镜
+Victorchang 张任谦
+Victoria 凯神星
+Victoria crater 维多利亚陨击坑
+Vienna 维也纳
+Vierter Fundamental Katalog 缩写:FK4。FK4星表; 第四基本星表
+Vieta crater 韦达环形山
+Vik crater 维克陨击坑
+Viking Terra 海盗号台地
+Viking space probes 海盗号火星探测器
+Vilnius color system 维尔纽斯颜色系统
+Vilnius photometry 维尔纽斯测光
+Vils crater 菲尔斯陨击坑
+Vindemiatrix 东次将; 太微左垣四
+Vinogradov crater 维诺格拉多夫陨击坑
+Vinogradsky crater 维诺格拉茨基陨击坑
+Vir 1、全称:Virgo。室女宫; 鹑尾; 巳宫; 2、全称:Virgo。室女座
+Virgil Fossae 维吉尔堑沟
+Virginia 贞女星
+Virginid meteor shower 室女流星雨
+Virgo 1、缩写:Vir。室女宫; 鹑尾; 巳宫; 2、缩写:Vir。室女座
+Virgo cluster 室女星系团
+Virgo galaxy cluster 室女星系团
+Virgo gravitational wave detector 室女[座]引力波探测器
+Virgo supercluster 室女座超星系团;室女超星系团
+Virrat crater 维拉特陨击坑
+Virtual Astronomical Observatory 缩写:VAO。虚拟天文台
+Virtual Observatory India 缩写:VO-India。印度虚拟天文台
+Virtual Observatory United Kingdom 缩写:AstroGrid。英国虚拟天文台
+Vishniac crater 维什尼亚茨陨击坑
+Visible and Infrared Survey Telescope for Astronomy 1、缩写:VISTA。可见光及红外巡天望远镜; 2、缩写:VISTA。天文可见光及红外巡天望远镜
+Vistula Valles 维斯图拉峡谷群
+Vivaldi antenna 维瓦尔第天线
+Vivero crater 比韦罗陨击坑
+Vlacq crater 弗拉克环形山
+Vlasov equation 1、弗拉索夫方程; 2、弗拉索夫方程
+Vlasov-Maxwell equation 弗拉索夫-麦克斯韦方程
+Vobs.it 全称:Italian Virtual Observatory。意大利虚拟天文台
+Voeykov crater 沃耶伊科夫陨击坑
+Vogel crater 福格尔陨击坑
+Vogt-Russell theorem 福格特-罗素定理
+Void 虚宿
+Voigt effect 福格特效应
+Voigt line profile 福格特谱线轮廓
+Voigt profile 福格特轮廓
+Vol 全称:Volans。飞鱼座
+Vol'sk crater 沃利斯克陨击坑
+Volans 缩写:Vol。飞鱼座
+Volgograd crater 伏尔加格勒陨击坑
+Volta crater 伏打环形山
+Volterra crater 沃尔泰拉环形山
+Von Baeyer crater 冯·拜耳环形山
+Von Braun crater 冯·布劳恩环形山
+Von Békésy crater 冯·贝凯西环形山
+Von Kármán crater 1、冯·卡门环形山; 2、冯·卡门陨击坑
+Von Neumann crater 冯·诺伊曼环形山
+Von Zeipel crater 冯·蔡佩尔环形山
+Von der Pahlen crater 冯·德·帕伦环形山
+Vondrak method 冯德拉克平滑法
+Voo crater 沃奥陨击坑
+Vorontsov-Velyaminov Catalogue of Interacting Galaxies 缩写:VV catalogue。沃隆佐夫-威廉明诺夫相互作用星系表
+Voskhod 上升号
+Vostok 东方号
+Voyager 旅行者号
+Voyager Terra 旅行者号台地
+Voza crater 沃扎陨击坑
+Vredefort crater 弗里德堡陨星坑
+Vul 全称:Vulpecula。狐狸座
+Vulcan 祝融星
+Vulcan-like asteroid 祝融型小行星
+Vulcani Pelagus 伏尔甘海
+Vulpecula 缩写:Vul。狐狸座
+Vätö crater 韦特陨击坑
+W 全称:tungsten。钨
+W Ser star 巨蛇W型星
+W UMa binary 大熊W型双星
+W UMa star 大熊W型星
+W Vir star 室女W型星
+W Vir type star 室女W型星
+W Vir type variable 室女W型变星
+W Vir variable 室女W型变星
+W boson W玻色子
+W star 全称:Wolf-Rayet star。沃尔夫-拉叶星; WR型星
+W. Bond crater 威·邦德环形山
+W. M. Keck Observatory 缩写:WMKO。凯克天文台
+W. Mareotis Tholus 西玛莱奥提斯山丘
+W.Z. 全称:Weltzeit。世界时
+WBVR color system WBVR颜色系统
+WC star C型WR星
+WCN star CN型WR星
+WCS 全称:World Coordinate System。世界坐标系
+WD 全称:white dwarf。白矮星
+WDC 全称:World Data Center。世界数据中心
+WENSS 全称:Westerbork northern sky survey。韦斯特博克北天巡天
+WET 全称:Whole Earth Telescope。全球望远镜
+WFI 全称:wide field imager。大视场成像器
+WFIRST 全称:Wide-Field Infrared Survey Telescope。大视场红外巡天望远镜
+WFST 全称:Wide Field Survey Telescope。墨子巡天望远镜
+WHIM 全称:warm-hot intergalactic medium。星系际温热介质
+WHT 全称:William Herschel Telescope。赫歇尔望远镜
+WIMP 全称:weakly interacting massive particle。弱相互作用大质量粒子
+WIND 风太阳探测器
+WIRE 全称:Wide-Field Infrared Explorer。大视场红外探测器
+WISE 全称:Wide-field Infrared Survey Explorer。广域红外巡天探测器
+WIYN Observatory 全称:Wisconsin,Indiana,Yale and NOAO Observatory。WIYN天文台
+WIYN Telescope 全称:Wisconsin,Indiana,Yale and NOAO Telescope。WIYN望远镜
+WKB approximation 全称:Wentzel-Kramers-Brillouin approximation。WKB近似
+WKB method 全称:Wentzel-Kramers-Brillouin method。WKB方法
+WKBJ approximation 全称:Wentzel-Kramers-Brillouin-Jeffreys approximation。WKBJ近似
+WKBJ method 全称:Wentzel-Kramers-Brillouin-Jeffreys method。WKBJ方法
+WL 全称:weak lensing。弱引力透镜效应
+WLM system 全称:Wolf-Lundmark-Melotte system。沃尔夫-伦德马克-梅洛特分类法
+WMAP 全称:Wilkinson Microwave Anisotropy Probe。威尔金森微波各向异性探测器
+WMAP 7 year model 全称:Wilkinson Microwave Anisotropy Probe 7 year model。威尔金森微波各向异性探测器7年模型; WMAP7年数据模型
+WMKO 全称:W. M. Keck Observatory。凯克天文台
+WMS 全称:World Magnetic Survey。全球地磁普查
+WN star WN型星
+WO star WO型星
+WR galaxy 全称:Wolf-Rayet galaxy。沃尔夫-拉叶星系; WR星系
+WR nebula 全称:Wolf-Rayet nebula。沃尔夫-拉叶星云; WR星云
+WR star 全称:Wolf-Rayet star。沃尔夫-拉叶星; WR型星
+WSO-UV 全称:World Space Observatory-Ultraviolet。世界空间紫外天文台
+WSRT 全称:Westerbork Synthesis Radio Telescope。韦斯特博克综合孔径射电望远镜
+WWT 全称:WorldWide Telescope。万维望远镜
+WZ Sagittae star 缩写:WZ Sge star。天箭WZ型星
+WZ Sge star 全称:WZ Sagittae star。天箭WZ型星
+Wabar crater 瓦巴陨星坑
+Wabash crater 沃巴什陨击坑
+Wafra crater 沃夫拉陨击坑
+Wahoo crater 瓦胡陨击坑
+Waikato Vallis 怀卡托峡谷
+Wain 北斗[七星]
+Waiting-maid 须女
+Wajir crater 瓦吉尔陨击坑
+Waking of Insects 惊蛰
+Wall 壁宿
+Walla Walla Vallis 沃拉沃拉峡谷
+Wallace crater 1、华莱士环形山; 2、华莱士陨击坑
+Wallops crater 瓦勒普斯陨击坑
+Wallula crater 瓦卢拉陨击坑
+Walraven color system 瓦尔拉文颜色系统
+Walraven photometry 瓦尔拉文测光
+Walther crater 瓦尔特环形山
+Wanda crater 万达环形山
+Wang Shou-guan 王绶绾
+Wangchaohao 王超昊
+Wangdaheng 王大珩
+Wangdazhong 王大中
+Wangganchang 王淦昌
+Wangshouguan 王绶琯
+Wangxuan 王选
+Wangyinglai 1、王应睐; 2、王应睐
+Wangyongzhi 王永志
+Wangzhenyi 1、王振义; 2、王贞仪
+Wangzhongcheng 王忠诚
+Warra crater 沃拉陨击坑
+Warrego Valles 沃里戈峡谷群
+Wasat 天樽二
+Waspam crater 瓦斯帕姆陨击坑
+Wassamu crater 和寒陨击坑
+Waterman crater 沃特曼环形山
+Watson Mcmillen Hayes 赫士
+Watson crater 沃森环形山
+Watt crater 瓦特环形山
+Wau crater 瓦乌陨击坑
+Wayeb' 瓦耶勃
+Wazn 子二
+Weak Anthropic Principle 弱人择原理
+Weber crater 韦伯环形山
+Weert crater 韦尔特陨击坑
+Wegener crater 1、魏格纳环形山; 2、魏格纳陨击坑
+Wegener hypothesis 魏格纳假说
+Wei 尾宿二
+Weihai 威海
+Weinbaum crater 温鲍姆陨击坑
+Weinberg angle 温伯格角
+Weinberg-Salam theory 温伯格-萨拉姆理论
+Weiss crater 魏斯环形山
+Weizsacker theory 魏扎克理论
+Well 井宿
+Wells crater 威尔斯陨击坑
+Weltzeit 缩写:W.Z.。世界时
+Wenchuan 汶川
+Wenjiashi Mensa 文家市桌山
+Wenjiashi Tholi 文家市山丘群
+Wenjiashi crater 文家市陨击坑
+Wenlingshuguang 温岭曙光
+Wensayling 温世仁
+Wentzel-Kramers-Brillouin approximation 缩写:WKB approximation。WKB近似
+Wentzel-Kramers-Brillouin method 缩写:WKB method。WKB方法
+Wentzel-Kramers-Brillouin-Jeffreys approximation 缩写:WKBJ approximation。WKBJ近似
+Wentzel-Kramers-Brillouin-Jeffreys method 缩写:WKBJ method。WKBJ方法
+Wer crater 韦尔陨击坑
+Werner crater 维尔纳环形山
+Werner line 沃纳谱线
+Wesat 天樽二
+Wesselink analysis 韦塞林克分析
+Wesselink mass 韦塞林克质量
+Wesselink radius 韦塞林克半径
+West Comet 韦斯特彗星
+West Ford 西福特
+West comet 韦斯特彗星
+Westar 西联星
+Westerbork Radio Observatory 韦斯特博克射电天文台
+Westerbork Synthesis Radio Telescope 缩写:WSRT。韦斯特博克综合孔径射电望远镜
+Westerbork northern sky survey 缩写:WENSS。韦斯特博克北天巡天
+Westerhout catalogue 韦斯特豪特射电源表
+Wexler crater 韦克斯勒环形山
+Weyl crater 外尔环形山
+Weyl tensor 外尔张量
+Weyl unified field theory 外尔统一场论
+Weywot 创卫一
+Wezea 弧矢一
+Wezen 弧矢一
+Wezn 子二
+Whale Galaxy 鲸鱼星系
+Wheeler-de Witt equation 惠勒-德维特方程
+Whipple 10-m gamma-ray telescope 惠普尔10米伽马射线望远镜
+Whipple Observatory 惠普尔天文台
+Whipple model 惠普尔模型
+Whipple's comet 惠普尔彗星
+Whirlpool galaxy 涡状星系
+White Dew 白露
+White Tiger 白虎
+Whittaker criterion 惠特克判据
+Whole Earth Telescope 缩写:WET。全球望远镜
+Wicklow crater 威克洛陨击坑
+Wide Field Survey Telescope 缩写:WFST。墨子巡天望远镜
+Wide-Field Infrared Explorer 缩写:WIRE。大视场红外探测器
+Wide-Field Infrared Survey Telescope 缩写:WFIRST。大视场红外巡天望远镜
+Wide-field Infrared Survey Explorer 缩写:WISE。广域红外巡天探测器
+Widmanstatten figure 魏德曼花纹
+Widmanstatten pattern 魏德曼花纹
+Wiechert discontinuity 维歇特不连续
+Wien crater 维恩陨击坑
+Wien displacement law 维恩位移定律
+Wien side 维恩侧
+Wien's displacement law 维恩位移定律
+Wiener crater 维纳环形山
+Wiener deconvolution 维纳反卷积法
+Wiener filter 维纳滤波器
+Wiener-Khinchin theorem 维纳-辛钦定理
+Wienphilo 维也纳爱乐
+WiggleZ survey WiggleZ 巡天
+Wild 2 Comet 怀尔德2号彗星
+Wild Duck Nebula 野鸭星团
+Wild Duck cluster 野鸭星团
+Wild's Trio 怀尔德三合星系
+Wild's Triplet 怀尔德三合星系
+Wilhelm crater 威廉环形山
+Wilkins crater 威尔金斯环形山
+Wilkinson Microwave Anisotropy Probe 缩写:WMAP。威尔金森微波各向异性探测器
+Wilkinson Microwave Anisotropy Probe 7 year model 缩写:WMAP 7 year model。威尔金森微波各向异性探测器7年模型; WMAP7年数据模型
+William Alexander Parsons Martin 丁韪良
+William Herschel Telescope 缩写:WHT。赫歇尔望远镜
+Williams crater 威廉斯陨击坑
+Willman Ⅰ dwarf galaxy 威尔曼矮星系Ⅰ
+Willow 柳宿
+Willstrop telescope 威尔斯特罗普望远镜
+Wilmington crater 威尔明顿陨击坑
+Wilson crater 威尔逊环形山
+Wilson depression 威尔逊凹陷
+Wilson effect 威尔逊效应
+Wilson-Bappu effect 威尔逊-巴普效应
+Wilson-Harrington Comet 威尔逊-哈林顿彗星
+Wiltz crater 维尔茨陨击坑
+Windfall crater 温德福尔陨击坑
+Wings 翼宿
+Wink crater 温克陨击坑
+Winnowing-basket 箕宿
+Winslow crater 温斯洛陨击坑
+Winter Solstice 冬至
+Winter Triangle 冬季大三角
+Wirtanen Comet 维尔塔宁彗星
+Wirtz crater 维尔茨陨击坑
+Wisconsin,Indiana,Yale and NOAO Observatory 缩写:WIYN Observatory。WIYN天文台
+Wisconsin,Indiana,Yale and NOAO Telescope 缩写:WIYN Telescope。WIYN望远镜
+Wislicenus crater 维斯利策努斯陨击坑
+Witch Head Nebula 女巫头星云
+Woking crater 沃金陨击坑
+Wolf Creek crater 沃尔夫-克里克陨星坑
+Wolf diagram 沃尔夫图
+Wolf number 沃尔夫数
+Wolf sunspot number 伍尔夫太阳黑子数
+Wolf-Lundmark system 沃尔夫-伦德马克系统
+Wolf-Lundmark-Melotte system 缩写:WLM system。沃尔夫-伦德马克-梅洛特分类法
+Wolf-Rayet galaxy 缩写:WR galaxy。沃尔夫-拉叶星系; WR星系
+Wolf-Rayet nebula 缩写:WR nebula。沃尔夫-拉叶星云; WR星云
+Wolf-Rayet star 缩写:WR star; W star。沃尔夫-拉叶星; WR型星
+Wollaston prism 沃拉斯顿棱镜
+Wolter type I X-ray telescope 沃尔特I型X射线望远镜
+Wolter-Schwarzschild X-ray telescope 沃尔特-施瓦西型X射线望远镜
+Woman 女宿
+Wongkwancheng 王宽诚
+Wood color system 伍德颜色系统
+Wood crater 伍德环形山
+Wood photometry 伍德测光
+Wood's anomaly 伍德异常
+Woodleigh crater 伍德利陨星坑
+Woolgar crater 伍尔格陨击坑
+Woomera crater 伍默拉陨击坑
+Worcester crater 伍斯特陨击坑
+World Calendar 世界历
+World Coordinate System 缩写:WCS。世界坐标系
+World Data Center 缩写:WDC。世界数据中心
+World Magnetic Survey 缩写:WMS。全球地磁普查
+World Space Observatory-Ultraviolet 缩写:WSO-UV。世界空间紫外天文台
+WorldWide Telescope 缩写:WWT。万维望远镜
+Wouthuysen-Field process 沃休森-菲尔德过程
+Wright Mons 莱特山
+Wright crater 赖特陨击坑
+Wright telescope 怀特望远镜
+Wrongskian 朗斯基行列式
+Wrottesley crater 罗茨利环形山
+Wu 吴
+Wu Chien-Shiung 吴健雄
+Wuhan 武汉
+Wuheng 武衡
+Wukari crater 武卡里陨击坑
+Wulai crater 乌来陨击坑
+Wuliangyong 吴良镛
+Wum crater 武姆陨击坑
+Wumengchao 吴孟超
+Wuminchun 吴敏骏
+Wunda crater 文达环形山
+Wurren 水委二
+Wurukang 吴汝康
+Wutayou 吴大猷
+Wuwenjun 吴文俊
+Wuxing crater 五星陨击坑
+Wuyeesun 伍宜孙
+Wuzhengyi 吴征镒
+Wyld crater 怀尔德环形山
+Wynn-Williams crater 温-威廉斯陨击坑
+Wynne corrector 韦恩改正镜组
+Wyoming IR Observatory 怀俄明红外天文台
+Wyoming IR Telescope 怀俄明红外望远镜
+Wyoming Infrared Observatory 怀俄明红外天文台
+X band X波段
+X matter 未名物质
+X wind 未名类太阳风
+X-Ray Imaging and Spectroscopy Mission 缩写:XRISM。X射线成像与光谱任务; 克里斯姆计划
+X-band frequency X带频率
+X-boson X玻色子
+X-ray Analysis and Data Ulitilization 缩写:XANADU。X射线分析和数据应用包
+X-ray CCD X射线CCD
+X-ray Multi-Mirror Mission 缩写:XMM-Newton。多镜面X射线空间望远镜; XMM牛顿望远镜
+X-ray Timing Explorer 缩写:XTE。X射线时变探测器
+X-ray absorption X射线吸收
+X-ray afterglow X射线余辉
+X-ray amplification by stimulated emission of radiation 缩写:xaser。X射线激射
+X-ray astrometry X射线天体测量
+X-ray astronomy X射线天文学
+X-ray background X射线背景
+X-ray background radiation X射线背景辐射
+X-ray binary 缩写:XRB。X射线双星
+X-ray bright point X射线亮点
+X-ray burst X射线暴
+X-ray burst source X射线暴源
+X-ray burster X射线暴源
+X-ray calorimeter X 射线量能器
+X-ray catalogue X射线源表
+X-ray cavity X射线穴
+X-ray cluster X射线星系团
+X-ray continuum X射线连续谱
+X-ray corona X射线冕
+X-ray counterpart X射线对应体
+X-ray detector X射线探测器; X射线检测器
+X-ray diffraction X射线衍射
+X-ray eclipse X射线食
+X-ray eclipsing star X射线食变星
+X-ray emission X射线发射
+X-ray flare X射线耀斑
+X-ray flash 缩写:XRF。X闪; X射线闪变
+X-ray fluorescence X射线荧光
+X-ray galaxy X射线星系
+X-ray grating spectrometer X射线光栅能谱仪
+X-ray halo X射线晕
+X-ray identification X射线证认
+X-ray line X射线谱线
+X-ray luminosity X射线光度
+X-ray map X射线图; X射线天图
+X-ray nebula X射线星云
+X-ray nova X射线新星
+X-ray observation X射线观测
+X-ray observatory X射线天文台
+X-ray photon X射线光子
+X-ray polarization X射线偏振
+X-ray pulsar X射线脉冲星
+X-ray pulsation X射线脉动
+X-ray pulsator X射线脉冲体
+X-ray pulse X射线脉冲
+X-ray quasar X射线类星体
+X-ray satellite X射线卫星
+X-ray scattering X射线散射
+X-ray sky X射线天空
+X-ray source X射线源
+X-ray spectrograph X射线摄谱仪
+X-ray spectrometer X射线分光计
+X-ray spectroscopy X射线频谱学
+X-ray spectrum X射线谱
+X-ray star X射线星
+X-ray sun X射线太阳
+X-ray survey X射线巡天
+X-ray telescope X射线望远镜
+X-ray transient X射线暂现源
+X-ray-rich GRB 富X射线γ暴
+X-unit X单位
+X-wind model X风模式
+XANADU 全称:X-ray Analysis and Data Ulitilization。X射线分析和数据应用包
+XENON dark matter search experiment 氙暗物质探测实验
+XF correlator XF 相关器
+XMM-Newton 全称:X-ray Multi-Mirror Mission。多镜面X射线空间望远镜; XMM牛顿望远镜
+XMO 全称:Xingming Observatory。星明天文台
+XRB 全称:binary X-ray source; X-ray binary。X射线双星
+XRF 全称:X-ray flash。X闪; X射线闪变
+XRISM 全称:X-Ray Imaging and Spectroscopy Mission。X射线成像与光谱任务; 克里斯姆计划
+XTE 全称:X-ray Timing Explorer。X射线时变探测器
+XUV 全称:extreme-ultraviolet。极紫外
+XUV astronomy 全称:extreme ultraviolet astronomy。极紫外天文学
+XUV light 全称:Extreme ultraviolet light。极紫外射线
+Xainza crater 申扎陨击坑
+Xamidimura 尾宿一
+Xanthe 克珊忒
+Xanthe Chaos 克珊忒混杂地
+Xanthe Dorsa 克珊忒山脊群
+Xanthe Montes 克珊忒山脉
+Xanthe Scopulus 克珊忒断崖
+Xanthe Terra 克珊忒台地
+Xe 全称:xenon。氙
+Xena 齐娜
+Xenophanes crater 色诺芬尼环形山
+Xi'an 西安
+Xiajunchao 夏俊超
+Xiangliu 共卫
+Xianglupeak 香炉峰
+Xibaipo crater 西柏坡陨击坑
+Xida 西大
+Xiejialin 谢家麟
+Xingming Observatory 缩写:XMO。星明天文台
+Xingmingzhou 周兴明
+Xinjiang 新疆
+Xiuyanyu 岫岩玉
+Xiwanggongcheng 希望工程
+Xizang 西藏
+Xizezong 席泽宗
+Xuange 玄戈
+Xui crater 舒伊陨击坑
+Xuyi 盱眙
+Xuzhihong 许智宏
+Xuzhijian 徐智坚
+Y 全称:yttrium。钇
+Y array Y形天线阵
+YSO 全称:young stellar object。初期恒星体
+YY Ori star 全称:YY Orionis star。猎户YY型星
+YY Ori variable 全称:YY Orionis variable。猎户YY型变星
+YY Orionis star 缩写:YY Ori star。猎户YY型星
+YY Orionis variable 缩写:YY Ori variable。猎户YY型变星
+Yablochkov crater 雅勃洛奇科夫环形山
+Yagi antenna 八木天线; 波道式天线
+Yakima crater 亚基马陨击坑
+Yala crater 也拉陨击坑
+Yalata crater 亚拉塔陨击坑
+Yale Bright Star Catalogue 耶鲁天文台亮星星表
+Yalgoo crater 亚尔古陨击坑
+Yamamoto crater 山本一清环形山
+Yan'an 延安
+Yang-Mills field 杨-米尔斯场
+Yangchenning 杨振宁
+Yangel' crater 扬格利环形山
+Yangguanghua 杨光华
+Yangjiachi 杨嘉墀
+Yangliuqing crater 杨柳青陨击坑
+Yangliwei 杨利伟
+Yangmei 央美
+Yangxuejun 杨学军
+Yangzhou 扬州
+Yanhua 华演
+Yanjici 严济慈
+Yaobeina 姚贝娜
+Yaodian Fossae 窑店堑沟群
+Yaodian Tholus 窑店山丘
+Yaodian crater 窑店陨击坑
+Yaonis Regio 帝尧区
+Yar crater 亚尔陨击坑
+Yaren crater 亚伦陨击坑
+Yarkovsky effect 雅尔可夫斯基效应
+Yarrabubba crater 亚拉布巴陨星坑
+Yat crater 亚特陨击坑
+Yaushingtung 丘成桐
+Yb 1、全称:year book。年历; 2、全称:ytterbium。镱
+Yebra crater 耶夫拉陨击坑
+Yed Post 楚; 天市右垣十
+Yed Posterior 楚; 天市右垣十
+Yed Prior 梁; 天市右垣九
+Yeduzheng 叶笃正
+Yegros crater 耶格罗斯陨击坑
+Yelapa crater 耶拉帕陨击坑
+Yellowknife crater 耶洛奈夫陨击坑
+Yelwa crater 耶卢瓦陨击坑
+Yenuanchen 严婉祯
+Yepeijian 叶培建
+Yepeiyu 叶佩玉
+Yerkes Observatory 叶凯士天文台
+Yerkes classification 叶凯士分类
+Yerkes classification system 叶凯士分类系统
+Yeshuhua 叶叔华
+Yeungchuchiu 杨注潮
+Yi Xing 一行
+Yildun 勾陈二
+Yinhai 银海
+Yiwu 伊吾
+Ymir 土卫十九
+Yohkoh 阳光号
+Yorktown crater 约克敦陨击坑
+Yoro crater 约罗陨击坑
+Young John Allen 林乐知
+Young crater 杨环形山
+Yuan Tseh Lee Array for Microwave Background Anisotropy 缩写:AMiBA。李远哲宇宙背景辐射阵
+Yuanfengfang 袁凤芳
+Yuanlongping 袁隆平
+Yuchunshun 余纯顺
+Yukawa theory 汤川理论
+Yukawa theory of nuclear forces 汤川核力理论
+Yulong 玉龙
+Yungay crater 永盖陨击坑
+Yungchieh 陈永介
+Yunnan 云南
+Yushan 玉山
+Yuty crater 尤蒂陨击坑
+Z And star 仙女Z型星
+Z Cam star 鹿豹Z型星
+Z time 全称:Zulu time。格林尼治平时; Z时
+Z-direction Z向
+Z-number 原子序数
+Z-shaped nebula Z形星云
+Z-term Z项
+ZAHB 全称:zero-age horizontal branch。零龄水平支
+ZAMS 全称:zero-age main sequence。零龄主序
+ZC 全称:Zodical Catalogue。黄道带星表
+ZD 全称:zenith distance。天顶距
+ZHR 全称:zenithal hourly rate。天顶每时出现率
+ZPRSN 全称:Zurich provisional relative sunspot number。苏黎世临时相对黑子数
+ZRMS 全称:zero rotation main sequence。无自转主序
+ZTF 全称:Zwicky Transient Facility。茨威基暂现源设施
+ZZ Cet star 鲸鱼ZZ型星; 鲸鱼ZZ型变星
+ZZ Cet variable 鲸鱼ZZ型星; 鲸鱼ZZ型变星
+Zach crater 扎赫环形山
+Zagar crater 扎加尔坑
+Zaim crater 扎伊姆陨击坑
+Zander crater 灿德尔环形山
+Zania 左执法; 太微左垣一
+Zaniah 左执法; 太微左垣一
+Zanstra temperature 赞斯特拉温度
+Zanstra's theory 赞斯特拉理论
+Zarand crater 扎兰德陨击坑
+Zaranj crater 扎兰季陨击坑
+Zarqa Valles 扎尔卡峡谷群
+Zarya 曙光号
+Zaurak 天苑一
+Zavijava 右执法; 太微右垣一
+Zea Dorsa 塞亚山脊群
+Zeeman component 塞曼子线
+Zeeman crater 塞曼环形山
+Zeeman effect 塞曼效应
+Zeeman spectrogram 塞曼谱图
+Zeeman splitting 塞曼分裂
+Zeeman state 塞曼态
+Zeeman-Doppler imaging 塞曼-多普勒成像法
+Zel'dovich approximation 泽尔多维奇近似
+Zel'dovich pancake 泽尔多维奇薄饼
+Zel'dovich spectrum 泽尔多维奇功率谱
+Zelenchukskaya Observatory 泽连丘克斯卡亚天文台
+Zelentchouk Telescope 俄罗斯6米望远镜
+Zengguoshou 曾国寿
+Zengqingcun 曾庆存
+Zengweizhou 曾维舟
+Zeno crater 芝诺环形山
+Zeno paradox 芝诺徉谬
+Zephyria 仄费里亚
+Zephyria Fluctus 仄费里亚波纹地
+Zephyria Mensae 仄费里亚桌山群
+Zephyria Planum 仄费里亚高原
+Zephyria Tholus 仄费里亚山丘
+Zephyrus Fossae 仄费罗斯堑沟群
+Zeta Aurigae star 御夫ζ型星
+Zeus Patera 宙斯山口
+Zhang 张宿一
+Zhang Heng 张衡
+Zhang Heng crater 张衡环形山
+Zhangcunhao 张存浩
+Zhangdaning 张大宁
+Zhangguoxi 张果喜
+Zhangjiajie 张家界
+Zhangweiguo 张卫国
+Zhangyi 张翼
+Zhaojiuzhang 赵九章
+Zhejiang 浙江
+Zhejiangdaxue 浙江大学
+Zheng He Montes 郑和山脉
+Zhengji crater 郑集陨击坑
+Zhengjia 正佳
+Zhengzhemin 郑哲敏
+Zhigou crater 枳沟陨击坑
+Zhongda 中大
+Zhongguo 中国
+Zhongkeda 中科大
+Zhongkeyuan 中科院
+Zhongnanshan 钟南山
+Zhongyuechen 钟越尘
+Zhouguangzhao 周光召
+Zhoushan 舟山
+Zhouyouyuan 周又元
+Zhouzhuang crater 周庄陨击坑
+Zhuguangya 朱光亚
+Zhuhai 珠海
+Zhujin 朱进
+Zhukovskiy crater 茹科夫斯基环形山
+Zhuruochen 朱若辰
+Zhuyuanchen 朱元晨
+Zhuzhixin 朱执信
+Zi-qi 紫炁
+Zibal 天苑五
+Zilair crater 济莱尔陨击坑
+Zintun 日月潭
+Zir crater 济尔陨击坑
+Zirankexuejijin 自然科学基金
+Zn 全称:zinc。锌
+Zodical Catalogue 缩写:ZC。黄道带星表
+Zoe 佐伊
+Zond 探测号
+Zongo crater 宗戈陨击坑
+Zosma 西上相; 太微右垣五
+Zr 全称:zirconium。锆
+Zsigmondy crater 席格蒙迪环形山
+Zu Chong-zhi 祖冲之
+Zu Chong-zhi crater 祖冲之环形山
+Zuben Elakrab 氐宿三
+Zuben Elakribi 氐宿增一
+Zuben Elgenubi 氐宿一
+Zuben el Hakrabi 氐宿三
+Zubenalgubi 折威七
+Zubenelgenubi 氐宿增七
+Zubenelhakrabi 氐宿三
+Zubeneschamali 氐宿四
+Zubenhakrabi 西咸四
+Zucchius crater 祖基环形山
+Zulu time 缩写:Z time。格林尼治平时; Z时
+Zumba crater 孙巴陨击坑
+Zuni crater 祖尼陨击坑
+Zunil crater 苏尼尔陨击坑
+Zurich classification 苏黎世分类; 苏黎世黑子分类
+Zurich number 苏黎世数
+Zurich provisional relative sunspot number 缩写:ZPRSN。苏黎世临时相对黑子数
+Zurich relative sunspot number 苏黎世相对黑子数
+Zurich sunspot number 苏黎世太阳黑子数
+Zusatzstern 补充星
+Zutphen crater 聚特芬陨击坑
+Zwicky Transient Facility 缩写:ZTF。茨威基暂现源设施
+Zwicky blue object 兹威基蓝天体
+Zwicky catalogue 兹威基星系表
+Zwicky classification 兹威基分类
+Zwicky compact galaxy 兹威基致密星系
+Zwicky crater 兹威基环形山
+Zīj-i Īlkhānī 《伊尔汗历表》; 《波斯历书》
+a- 全称:atto-。阿
+a.m. 全称:ante meridiem。上午
+aLIGO 全称:Advanced Laser Interferometer Gravitational-wave Observatory。高新激光干涉仪引力波天文台
+ab variable ab型变星
+abaxial aberration 轴外像差
+abaxial astigmatism 轴外像散
+aberration 1、像差; 2、光行差
+aberration angle 光行差角
+aberration constant 光行差常数
+aberration day number 光行差日数
+aberration ellipse 光行差椭圆
+aberration image 像差像
+aberration of light 光行差
+aberration shift 光行差位移
+ablation 烧蚀
+ablation age 烧蚀年龄
+abnormal galaxy 1、不规则星系; 2、反常星系
+abnormal redshift 反常红移
+abnormal refraction 反常折射
+abnormal spectrum 反常光谱
+abridged armilla 简仪
+abridged nautical almanac 简明航海历
+absolute acceleration 绝对加速度
+absolute age 绝对年龄
+absolute altitude 绝对高度
+absolute black body 绝对黑体
+absolute blue magnitude 绝对蓝星等
+absolute bolometric luminosity 绝对热光度
+absolute bolometric magnitude 绝对热星等
+absolute brightness 绝对亮度
+absolute calibration 绝对定标
+absolute catalogue 绝对星表
+absolute coordinate 绝对坐标
+absolute degree 绝对温度
+absolute determination 绝对测定
+absolute energy distribution 绝对能量分布
+absolute error 绝对误差
+absolute frequency 绝对频率
+absolute gradient 绝对梯度
+absolute height 绝对高度
+absolute instability 绝对不稳定性
+absolute intensity 绝对强度
+absolute luminosity 绝对光度
+absolute magnitude 绝对星等
+absolute magnitude effect 绝对星等效应
+absolute magnitude scale 绝对星等标
+absolute measurement 绝对测量
+absolute orbit 绝对轨道
+absolute parallax 绝对视差
+absolute perturbation 绝对摄动
+absolute perturbation method 绝对摄动法
+absolute photoelectric magnitude 绝对光电星等
+absolute photographic magnitude 绝对照相星等
+absolute photometry 绝对测光
+absolute photovisual magnitude 绝对仿视星等
+absolute position 绝对位置
+absolute proper motion 绝对自行
+absolute radio magnitude 绝对射电星等
+absolute radiometric magnitude 绝对辐射星等
+absolute red magnitude 绝对红星等
+absolute spectrophotometric gradient 绝对分光光度梯度
+absolute stability 绝对稳定性
+absolute standard 绝对标准
+absolute star catalogue 绝对星表
+absolute temperature 绝对温度
+absolute temperature scale 绝对温标
+absolute time 绝对时间
+absolute unit 绝对单位
+absolute value 绝对值
+absolute velocity 绝对速度
+absolute visual magnitude 绝对目视星等
+absolute zero 绝对零度
+absorbability 可吸收性
+absorbed energy 吸收能
+absorbed light 吸收光
+absorber 吸收体; 吸收器
+absorbing cloud 吸收云
+absorbing dust mass 吸光尘埃质量
+absorbing layer 吸收层
+absorbing medium 吸收介质
+absorbing particle 吸收粒子
+absorbing power 吸收本领
+absorption 吸收
+absorption band 吸收带
+absorption capacity 吸收本领
+absorption cell 吸收泡
+absorption coefficient 吸收系数
+absorption condition 吸收条件
+absorption cross section 吸收截面
+absorption depth 吸收深度
+absorption edge 吸收限
+absorption feature 吸收特征; 吸收表象
+absorption flocculus 吸收谱斑
+absorption frequency 吸收频率
+absorption limit 吸收限
+absorption line 吸收线
+absorption line profile 吸收线轮廓
+absorption line system 吸收线系统
+absorption loss 吸收耗损
+absorption nebula 吸光星云
+absorption power 吸收本领
+absorption probability 吸收概率
+absorption profile 吸收线廓
+absorption resonance 吸收共振
+absorption spectrum 吸收谱
+absorption trough 吸收槽
+absorption-free space 无吸收空间
+absorption-poor space 低吸收空间
+absorptivity 可吸收性
+abstract index notation 抽象指标记号
+abstraction reaction 提取反应
+abstraction sequence 提取序列
+abundance 丰度
+abundance anomaly 丰度异常
+abundance broadening 丰度致宽
+abundance classification 丰度分类
+abundance effect 丰度效应
+abundance gradient 丰度梯度
+abundance of element 元素丰度
+abundance ratio 丰度比
+abundance standard star 丰度标准星
+accelerated frame 加速参考架
+accelerated motion 加速运动
+acceleration mechanism 加速机制
+acceleration of following 牵连加速度
+acceleration of gravity 重力加速度
+accelerometer 加速度计
+accepter 接收器
+acceptor 接收器
+accessibility 可接近性
+accessory 附件
+accident 偶然事件
+accidental accuracy 随机精度
+accidental coincidence 偶然符合
+accidental connection 偶然关联
+accidental error 偶然误差
+accommodation 调节
+accreting binary 吸积双星
+accretion 吸积
+accretion by black hole 黑洞吸积
+accretion by compact companion 致密伴星吸积
+accretion by compact object 致密天体吸积
+accretion by neutron star 中子星吸积
+accretion by white dwarf 白矮星吸积
+accretion column 吸积柱
+accretion disc 吸积盘
+accretion disk 吸积盘
+accretion efficiency 吸积效率
+accretion flow 吸积流
+accretion induced collapse 吸积致坍缩
+accretion model 吸积模型
+accretion mound 吸积堆
+accretion radius 吸积半径
+accretion ring 吸积环
+accretion shock 吸积激波
+accretion stream 吸积流
+accretion theory 吸积理论
+accretion wake 吸积尾流
+accumulated time 累积时间
+accumulated years from the grand epoch 上元积年
+accumulation 1、累积; 2、聚点
+accuracy 准[确]度
+accuracy user 准确度用户
+acetaldehyde 乙醛
+acetonitrile 乙腈
+acetylene 乙炔
+achievement factor 成就因子
+achondrite 无球粒陨石
+achromat 消色差透镜
+achromatic eyepiece 消色差目镜
+achromatic image 消色差像
+achromatic interference coronagraph 消色散干涉星冕仪
+achromatic lens 消色差透镜
+achromatic objective 消色差物镜
+achromatic prism 消色差棱镜
+achromatic telescope 消色差望远镜
+achromatism 消色差
+acicular nebula 针状星云
+acnode 孤点
+acoustic horizon 声学视界
+acoustic loss 声学损失
+acoustic mode 声模
+acoustic oscillation 声学振荡
+acoustic peak 声学峰
+acoustic velocity 声速
+acoustic wave 声波
+acoustic wave heating 声波致热
+acousto-optic image processor 声光像处理机
+acousto-optic light modulator 声光调制器
+acousto-optic radio spectrometer 缩写:AORS。射电声光频谱计
+acousto-optic spectrograph 缩写:AOS。声光频谱仪
+acousto-optical spectrometer| 缩写:AOS。声光频谱仪
+acquisition camera 导星相机
+acronical rising 偕日升; 晨出
+acronical setting 偕日落; 夕没
+acronychal rising 偕日升; 晨出
+acronychal setting 偕日落; 夕没
+actinicity 光化性
+actinium 缩写:Ac。锕
+actinogram 测光图
+actinograph 辐射仪
+actinometer 1、太阳辐射计; 2、感光计
+actinometry 辐射测量
+actinoscope 光能测定仪
+action at a distance 超距作用
+action principle 作用量原理
+action space 作用量空间
+action through the medium 媒递作用
+action variable 作用变量
+action-angle variable 作用角变量
+activation 激活
+activation coefficient 激活系数
+activation energy 激活能
+activation of spacecraft material 设备物质激发
+active binary 活动双星
+active center 缩写:CA。活动中心
+active chromosphere 活动色球
+active chromosphere binary 活动色球双星
+active chromosphere region 色球活动区
+active chromosphere star 活动色球星
+active comet 活跃彗星
+active complex 1、活动复合体; 2、活动复合体
+active corona 1、活动日冕; 2、活动星冕
+active day 活动日
+active device 主动装置
+active elliptical galaxy 椭圆活动星系
+active filament system 缩写:AFS。活动暗条系统
+active galactic nucleus 缩写:AGN。活动星系核
+active galaxy 活动星系
+active gravitational mass 主动引力质量
+active longitude 活动经度
+active maser oscillator 有源微波激射振荡器
+active mechanism 作用机制
+active nest 活动穴; 活动复合体
+active nucleus 活动核
+active optics 主动光学
+active photospheric region 光球活动区
+active pixel detector 缩写:APS。主动像元传感器
+active prominence 活动日珥
+active prominence region 缩写:APR。活动日珥区
+active region 活动区
+active satellite 有源卫星
+active shielding 主动屏蔽
+active star 活动星
+active sun 活动太阳
+active sunspot 活动太阳黑子
+active-region filament 活动区暗条
+active-region heating 活动区加热
+active-region loop 活动区环
+active-sunspot prominence 活动黑子日珥
+activity 活性
+activity index 活动指数
+activity sphere 活动范围
+actual aperture 1、实际口径; 2、实际孔径
+actual frequency 实际频率
+actual position 实际位置
+actuator 触动器
+adaptation 适应
+adapter 适配器; 转接器
+adapter module 过渡舱; 适配舱
+adaptive mesh refinement 缩写:AMR。自适应网格细化
+adaptive optics 自适应光学
+adding interferometer 相加干涉仪
+additional perturbation 附加摄动
+additive group 加法群
+additive noise 可加噪声
+adhesion model 黏连模型
+adiabat 绝热线
+adiabatic CDM model 绝热冷暗物质模型
+adiabatic HDM model 全称:adiabatic hot dark matter model。绝热热暗物质模型
+adiabatic baryon model 绝热重子模型
+adiabatic change 绝热变化
+adiabatic compression 绝热压缩
+adiabatic condition 绝热条件
+adiabatic contraction 绝热收缩
+adiabatic curve 绝热曲线
+adiabatic drift wave 绝热漂移波
+adiabatic equation 绝热方程
+adiabatic equilibrium 绝热平衡
+adiabatic expansion 绝热膨胀
+adiabatic exponent 绝热指数
+adiabatic fluctuation 绝热涨落
+adiabatic fluid 绝热流体
+adiabatic hot dark matter model 缩写:adiabatic HDM model。绝热热暗物质模型
+adiabatic index 绝热指数
+adiabatic inflow-outflow solution 缩写:ADIOS。绝热内外流解
+adiabatic invariance 绝热不变性
+adiabatic invariant 绝热不变量
+adiabatic line 绝热线
+adiabatic perturbation 绝热扰动
+adiabatic plasmon 绝热等离子体激元
+adiabatic process 绝热过程
+adiabatic pulsation 绝热脉动
+adiabatic sound speed 绝热声速
+adiabatic temperature gradient 绝热温度梯度
+adiabatic theory 绝热理论
+adjacency 邻接
+adjacency effect 邻接效应
+adjacent galaxy 邻近星系
+adjustable eyepiece 可调目镜
+adjusting screw 校正螺旋
+adjustment 1、平差; 2、校准; 调整
+adjustment parameter 平差参数
+adjustment residual 平差残差
+admissible error 容许误差
+admixture instability 混合不稳定性
+adopted latitude 纬度采用值
+adopted longitude 经度采用值
+adsorption 吸附作用
+adsorption equilibrium 吸附平衡
+adsorptive power 吸附本领
+advance of Mercury's perihelion 水星近日点进动
+advance of apsidal line 拱线运动; 近星点运动
+advance of the periastron 近星点进动
+advance of the perihelion 近日点进动
+advanced T/F system 先进时频系统
+advancing shock front 前进激波前
+advancing wave 前进波
+advection 径移
+advection dominated accretion 径移吸积流
+advection-dominated accretion flow 缩写:ADAF。径移占优吸积流
+aeolosphere 各向异性球
+aeolotropy 各向异性
+aeon 十亿年
+aerial camera 航空照相机
+aerial telescope 架空望远镜
+aerobraking 大气制动
+aerodynamic coefficient 气体动力系数
+aerodynamics 气体动力学
+aerogel 气凝胶
+aerolite 石陨星; 石陨石
+aerolith 石陨星; 石陨石
+aerolithology 陨星学; 陨石学
+aerolitics 陨星学; 陨石学
+aeronomy 高层大气[物理]学
+aeronomy satellite 高层大气科学卫星
+aerosiderite 铁陨星; 铁陨石; 陨铁
+aerosiderolite 铁石陨星; 铁石陨石
+aerosol 气溶胶
+aerospace 1、宇航空间; 2、航空航天
+aerosphere 大气层
+aerostatics 气体静力学
+aether 以太
+affine connection 仿射联络
+affine distance 仿射距离
+affine equation 仿射方程
+affine geometry 仿射几何
+affine parameter 仿射参量; 仿射参数
+affine plate constant 仿射底片常数
+affine transformation 仿射变换
+affinity 亲合性
+affix 附件
+afflight 近月飞行
+afocal system 无焦系统
+after effect 后效应
+after image 余像
+after-burner effect 爆后效应
+afterglow 余辉
+age characteristics 年龄特征
+age dating 年龄测定
+age determination 年龄测定
+age of the earth 地球年龄
+age of the moon 月龄
+age of the universe 宇宙年龄
+age problem 年龄问题
+age-metallicity relationship 缩写:AMR。年龄-金属丰度关系
+ageing 老化
+ageing process 老化过程
+ageing star 老化星
+agency 作用
+agglomeration 附聚
+aggregate 凝聚
+aggregation 1、凝聚; 2、团块
+aging 老化
+agitation 扰动
+agreement 符合
+ahargana 积日
+air cap 空气帽
+air conditioning 空调
+air drag 大气阻力
+air fluorescence cosmic ray detector 大气荧光式宇宙线探测器
+air mass 大气质量
+air path 大气路径
+air pollution 空气污染
+air pressure 气压
+air shower 大气簇射
+air shower array 大气簇射阵
+air wavelength 大气波长
+airborne observation 机载观测
+airborne platform 机载平台
+airborne telescope 机载望远镜
+aircraft flyover synchronization 飞机飞越同步
+airglow 大气辉光; 气辉
+airlock 密封舱
+airlock module 密封舱
+airplane borne instrument 机载仪器
+airplane borne telescope 机载望远镜
+airplane-based observatory 机载天文台
+airplane-based telescope 机载望远镜
+al-manazil 马纳吉尔
+alautun 阿劳顿
+albedo 反照率
+albedo feature 反照率特征
+albedo theory 反照率理论
+albedometer 反照率计
+aliased grating ring 混杂栅环
+aliased sidelobe 混杂旁瓣
+aliasing 混淆现象
+aliasing frequency 混杂频率
+alibile 钠长石
+alidade 1、游标盘; 2、照准仪
+alien creation 外星人
+alignment chart 列线图
+alignment star 校准星
+all-sky camera 全天照相机
+all-sky patrol 巡天
+all-sky photography 全天照相观测
+allocation of frequency 频率分配
+allowable error 容许误差
+allowable transition 容许跃迁
+allowed orbit 容许轨道
+allowed spectrum 容许光谱
+allowed transition 容许跃迁
+almanac 年历; 历书
+almost degenerate amplifier 近简并放大器
+almost periodic function 殆周期函数
+almucantar 1、地平纬圈; 平行圈; 2、高度-方位仪
+almucantur 高度-方位仪
+along-track component 沿迹分量
+along-track error 沿迹误差
+alpha element 阿尔法元素
+alt-alt mounting 全称:altitude-altitude mounting。地平-地平式装置
+altazimuth 地平经纬仪
+altazimuth mounting 地平装置; 经纬仪式装置
+altazimuth reflector 地平式反射镜
+altazimuth telescope 地平式望远镜
+alternating satellite 交错卫星
+alternative cosmology 非标准宇宙学; 备择宇宙学
+alternative gravity model 备择引力理论
+alternative theory of gravity 备择引力理论
+altimeter 测高仪
+altimetry 测高
+altitude 地平纬度; 高度
+altitude axis 高度轴; 水平轴
+altitude circle 地平纬圈; 平行圈
+altitude effect 高度效应
+altitude-altitude mounting 缩写:alt-alt mounting。地平-地平式装置
+altitude-azimuth coordinate system 地平坐标系
+aluminium 缩写:Al。铝
+aluminium mirror 铝镜
+aluminizing 镀铝
+aluminum coating 镀铝
+aluminum-rich star 富铝星
+amateur astronomer 天文爱好者
+amateur astronomy 业余天文学
+ambient background radiation 环境背景辐射
+ambient light illumination 环境光照度
+ambient medium number density 环境介质数密度
+ambient radiant power 环境辐射功率
+ambient temperature 环境温度
+ambiguity diagram 歧义图
+ambiplasma instability 双等离子体不稳定性
+ambipolar diffusion 双极扩散
+ambipolar field 双极场
+ambipolarity 双极性
+americium 缩写:Am。镅
+amino acid 氨基酸
+ammonia 氨
+ammonia beam maser 1、氨束微波激射; 氨束脉泽; 2、氨束微波激射器
+ammonia clock 氨钟
+ammonia inversion transition 氨反演跃迁
+ammonia maser 氨微波激射器; 氨脉泽
+ammonium hydrosulphide 硫氢化氨
+amorphous galaxy 无定形星系
+amphiscian region 日影双向区
+amphoteric chondrite 两性球粒陨石
+amphoterite 无粒古铜橄榄陨石
+amplification 放大率
+amplification bias 放大偏差
+amplification factor 放大因子
+amplification ratio 放大比
+amplifier 放大器
+amplitude 1、天体出没方位角; 2、幅度; 振幅
+amplitude discriminator 幅度鉴别器
+amplitude interferometer 振幅干涉仪
+amplitude interferometry 振幅干涉测量
+amplitude modulation 缩写:AM。调幅
+amplitude spectrum 幅谱
+anaberrational reflector 消像差反射望远镜
+anaberrational refractor 消像差折射望远镜
+anaberrational telescope 消像差望远镜
+anabibazon 白道升交点
+anaemic galaxy 弱臂星系
+anaemic spiral galaxy 弱臂星系
+analemma 1、地球正投影仪; 2、日行迹
+analog signal 模拟信号
+analogue 模拟装置
+analyser 检偏器; 分析器
+analyzer 检偏器; 分析器
+anamorphic magnification 畸变放大
+anastigmat 消像散透镜
+anastigmatic system 消像散系统
+anastigmatism 消像散
+ancient astronomy 古代天文学
+andrite 斜辉陨石
+anemone jets 海葵状喷流
+angle of commutation 太阳-行星角距
+angle of declination 偏角; 磁偏角
+angle of deflection 偏转角
+angle of departure 出射角
+angle of depression 俯角
+angle of deviation 偏向角; 磁偏角
+angle of diffraction 衍射角
+angle of eccentricity 偏心角
+angle of emergence 出射角
+angle of incidence 入射角
+angle of inclination 倾角; 交角; 水平差
+angle of lag 滞后角
+angle of minimum resolution 最小分辨角
+angle of polarization 偏振角
+angle of projection 投射角; 发射角
+angle of reflection 反射角
+angle of refraction 折射角
+angle of rotation 转动角; 自转角
+angle of sight 视线角
+angle of the vertical 垂线角
+angle of tilt 倾角
+angle of torsion 扭转角
+angle of total reflection 全反射角
+angle of twist 扭转角
+angle variable 角变量
+angrite 无球粒钛辉陨石
+angstrom 缩写:Å。埃
+angular acceleration 角加速度
+angular accuracy 角精度
+angular aperture 角孔径
+angular breadth 角宽度
+angular coordinate 角坐标
+angular correlation function 角相关函数
+angular diameter 角直径
+angular diameter distance 角直径距离
+angular diameter-redshift relation 角径-红移关系
+angular diameter-redshift test 角径-红移检验
+angular dimension 角大小
+angular dispersion 角色散
+angular displacement 角位移
+angular distance 角距离
+angular distribution 角分布
+angular element 角要素
+angular elongation 距角
+angular extent 角范围
+angular frequency 角频率
+angular magnification 角放大率
+angular measure 角量度
+angular momentum 角动量
+angular momentum density 角动量密度
+angular motion 角向运动
+angular path length 轨迹角长度
+angular power spectrum 角功率谱
+angular resolution 角分辨率
+angular resolving power 角分辨本领
+angular scale 角尺度
+angular semi-major axis 角半长径
+angular semi-minor axis 角半短径
+angular separation 角间距
+angular size 角大小
+angular spectrum 角谱
+angular variable 角变量
+angular velocity 角速度
+angular-momentum catastrophe 角动量灾难
+anharmonic pulsation 非谐脉动
+anharmonicity 非简谐性
+animal cycle 十二生肖
+anion 负离子; 阴离子
+anisotropic conductivity 各向异性传导率
+anisotropic correlation function 各向异性相关函数
+anisotropic cosmological model 各向异性宇宙学模型
+anisotropic cosmological space-time 各向异性宇宙学时空
+anisotropic cosmology 各向异性宇宙论
+anisotropic inertia 各向异性惯量
+anisotropic magnetohydrodynamics 各向异性磁流力学
+anisotropic medium 各向异性介质
+anisotropic orbit 各向异性轨道
+anisotropic parameter 各向异性参数
+anisotropic plasma jet instability 各向异性等离子体喷流不稳定性
+anisotropic power spectrum 各向异性功率谱
+anisotropic pressure 各向异性压力
+anisotropic propagation 各向异性传播
+anisotropic scattering 各向异性散射
+anisotropic universe 各向异性宇宙
+anisotropic velocity dispersion 各向异性速度弥散
+anisotropism 各向异性
+anisotropy 各向异性
+anisotropy instability 各向异性不稳定性
+anisotropy parameter 各向异性参数
+annihilation 湮灭
+annihilation of electron pair 电子对湮灭
+annihilation photon 湮灭光子
+annihilation process 湮灭过程
+annihilation radiation 湮灭辐射
+annual aberration 周年光行差
+annual catalogue 年星表
+annual epact 年闰余
+annual equation 周年差
+annual inequality 周年差
+annual motion 周年运动
+annual parallax 周年视差
+annual period 年周期
+annual precession 周年岁差
+annual proper motion 周年自行
+annual register 年鉴
+annual variation 周年变化
+annular aperture 环状孔径
+annular eclipse 环食
+annular gap 环状隙
+annular nebula 环状星云
+annular phase 环食相
+annular solar eclipse 日环食
+annular-total eclipse 全环食
+annularity 环食态
+annulus 环带
+annum 年
+anomalistic mean motion 近点平运动
+anomalistic month 近点月
+anomalistic period 近点周期
+anomalistic revolution 近点周
+anomalistic year 近点年
+anomalous X-ray pulsar 缩写:AXP。反常X射线脉冲星
+anomalous Zeeman effect 反常塞曼效应
+anomalous absorption 反常吸收
+anomalous cosmic ray 反常宇宙线
+anomalous coupling 反常耦合
+anomalous dispersion 反常色散
+anomalous refraction 反常折射
+anomalous scattering 反常散射
+anomalous tail 反常彗尾
+anomalous transport 反常输运
+anomaly 近点角
+anonymous galaxy 未名星系
+anorthite 钙长石
+anorthosite 斜长岩
+ansa 环脊; 尖脊
+antalgol 逆大陵变星
+antapex 背点
+antarctic circle 南极圈
+antarctic observatory 南极天文台
+antarctic pole 南极
+antarctic zone 南极区
+ante meridiem 缩写:a.m.。上午
+antecedence 逆行
+antenna aperture 天线孔径
+antenna array 天线阵
+antenna baseline 天线基线
+antenna calibration 天线校准; 天线定标
+antenna diagram 天线方向图
+antenna efficiency 天线效率
+antenna element 天线单元; 天线辐射元
+antenna gain 天线增益
+antenna illumination 天线照明
+antenna impedance 天线阻抗
+antenna matching 天线匹配
+antenna pattern 天线方向图
+antenna pattern solid angle 天线方向图立体角
+antenna power pattern 天线功率图
+antenna spacing 天线间距
+antenna temperature 天线温度
+anthelic arc 反日弧
+anthelion 反假日
+anthropic principle 人择原理
+anti-de Sitter space 缩写:AdS。反德西特空间
+anti-dwarf nova 逆反矮新星
+anti-inversion 逆反演
+anti-jovian point 对木点
+anti-parallel 逆平行
+anti-spiral theorem 反旋涡定理
+anti-twilight 反辉
+anticenter 反银心; 反银心方向
+anticenter region 反银心区
+anticoincidence 反符合
+anticommutation relation 反对易关系
+anticommutator 反对易子
+anticommute 反对易
+anticrepuscular ray 反曙暮辉
+antielectron 正电子
+antigalaxy 反物质星系
+antiglow 反日照
+antigravity 反引力
+antihalo 消晕
+antimatter 反物质
+antimatter cosmology 反物质宇宙论
+antimatter problem 反物质问题
+antimeridian 下子午圈
+antimony 缩写:Sb。锑
+antimony-doped germanium 锗掺锑
+antineutrino 反中微子
+antinode 背交点
+antinucleon 反核子
+antiparticle 反粒子
+antiphase 反相
+antiproton 反质子
+antiquark 反夸克
+antireflection coating 减反射镀膜
+antireflection film 减反射膜
+antiresonance 反共振
+antiselena 反假月
+antisolar point 对日点
+antisymmetrical state 反对称态
+antitail 逆向彗尾
+antivertex 奔离点
+antumbra 伪本影
+apareon 远火点
+apastron 远星点
+aperiodic comet 非周期彗星
+aperiodic motion 非周期运动
+aperiodicity 非周期性
+aperture 1、口径; 2、孔径
+aperture angle 孔径角
+aperture array 孔径阵
+aperture blocking 孔径遮挡
+aperture diaphragm 孔径光阑
+aperture efficiency 孔径效率
+aperture function 孔径函数
+aperture illumination function 孔径照明函数
+aperture masking interferometry 孔径遮挡干涉测量
+aperture photometry 孔径测光
+aperture ratio 口径比
+aperture synthesis 综合孔径
+aperture synthesis radiotelescope 综合孔径射电望远镜
+aperture-synthesis array 综合孔径阵
+aperture-synthesis telescope 综合孔径望远镜
+apex 向点
+apex of the earth's motion 地球向点
+apex star 向点星
+aphelic conjunction 远日点合
+aphelic distance 远日[点]距
+aphelic opposition 远日点冲
+aphelion 远日点
+aphesperian 远金点
+aplanat 消球差透镜; 齐明透镜
+aplanatic lens 消球差透镜; 齐明透镜
+aplanatic system 消球差系统; 齐明系统
+aplanatic telescope 消球差望远镜; 齐明望远镜
+aplanatism 消球差; 齐明
+apoapse 远质心点
+apoapse distance 远质心距
+apoapsis 远点; 远拱点
+apoastron 远星点
+apocenter 远心点
+apochromat 复消色差透镜
+apochromatic lens 复消色差透镜
+apochromatic objective 复消色差物镜
+apochromatic refractor 复消色差折射望远镜
+apochromatism 复消色差
+apocronus 远土点
+apocynthion 远月点
+apodisation 切趾法
+apodization 切趾法
+apodized-pupil Lyot coronagraph 切趾瞳李奥星冕仪
+apodizing phase plate 切趾相位板
+apofocus 远主焦点
+apogalacteum 远银心点
+apogalacticon 远银心点
+apogalacticum 远银心点
+apogean tide 远地点潮
+apogee 远地点
+apogee distance 远地点距
+apogeic tide 远地点潮
+apojove 远木点
+apolune 远月点
+apomartian 远火点
+apomercurian 远水点
+apoplutonian 远冥[王]点
+apoposeidon 远海[王]点
+aposaturnian 远土点
+aposelene 远月点
+apouranian 远天[王]点
+apouranium 远天[王]点
+apparatus 仪器; 装置
+apparatus function 仪器函数
+apparent absorption 视吸收
+apparent altitude 视地平纬度; 视高度
+apparent angle 视角
+apparent anomaly 视近点角
+apparent antivertex 视奔离点
+apparent area 视面积
+apparent association 表观成协
+apparent binary 视双星; 光学双星
+apparent bolometric magnitude 视热星等
+apparent brightness 视亮度
+apparent coordinate 视坐标
+apparent declination 视赤纬
+apparent depression of the horizon 视地平俯角
+apparent diameter 视直径
+apparent direction 视方向
+apparent disc 视圆面
+apparent distance 视距离
+apparent diurnal motion 周日视动
+apparent diurnal path 视周日轨迹
+apparent equatorial coordinate 视赤道坐标
+apparent exterior contact 视外切
+apparent field 可见视场
+apparent flattening 视扁率
+apparent flux 视流量
+apparent horizon 视地平
+apparent intensity 视强度
+apparent interior contact 视内切
+apparent latitude 视黄纬
+apparent libration 视天平动
+apparent longitude 视黄经
+apparent luminosity function 视光度函数
+apparent magnitude 视星等
+apparent magnitude-color index diagram 视星等-色指数图
+apparent mass 表观质量
+apparent mean place 视平位置
+apparent modulus 视距离模数
+apparent motion 视运动
+apparent noon 视正午
+apparent orbit 视轨道
+apparent path 视轨迹
+apparent photographic magnitude 视照相星等
+apparent photovisual magnitude 视仿视星等
+apparent place 视位置
+apparent position 视位置
+apparent radiant 视辐射点
+apparent radiometric magnitude 视辐射星等
+apparent revolution 视公转
+apparent right ascension 视赤经
+apparent rotation 视自转
+apparent rotational potential 视自转势
+apparent semi-diameter 视半径
+apparent sidereal time 真恒星时
+apparent sky brightness 视天空亮度
+apparent solar day 视太阳日
+apparent solar time 真太阳时
+apparent sun 视太阳
+apparent superluminal motion 视超光速运动
+apparent superluminal velocity 视超光速
+apparent temperature 视温度
+apparent velocity 视速度
+apparent vertex 视奔赴点
+apparent visual magnitude 视目视星等
+apparent zenith distance 视天顶距
+apparition 出现; 可见期
+appearance 出现
+appearance height 出现点高度
+appearance in the day 昼见
+appearance point 出现点
+applied astronomy 应用天文学
+applied force 外加力
+approximate solution 近似解
+approximate value 近似值
+approximation 近似法
+appulse 1、半影月食; 2、犯; 最小角距
+apse 拱点
+apse line 拱线
+apse-node terms 拱交项
+apsidal advance 拱线进动; 近星点进动
+apsidal constant 近星点常数
+apsidal line 拱线
+apsidal motion 拱线运动; 近星点运动
+apsidal period 拱线转动周期; 近星点运动周期
+apsidal precession 拱线进动; 近星点进动
+apsidal resonance 拱线共振; 近星点共振
+apsidal rotation 拱线运动; 近星点运动
+apsis 拱点
+aqueous alteration 水蚀变
+aqueous meteor 水流星
+arachnoid 蛛网地形
+arc 弧
+arc crater 弧坑
+arc degree 度
+arc length 弧长
+arc line 弧光谱线
+arc minute 缩写:arcmin。角分
+arc second 缩写:arcsec。角秒
+arc spectrum 弧光谱
+arch filament 拱状暗条
+arch filament system 缩写:AFS。拱状暗条系统
+archaeoastronomy 考古天文学
+archeoastronomy 考古天文学
+arcmin 全称:minute of arc; arc minute。角分
+arcsec 全称:second of arc; arc second。角秒
+arctic circle 极圈
+area image sensor 面成像传感器
+area of audibility 能听范围
+area of coverage 覆盖区; 观测区
+area of visibility 能见范围
+area photometer 面积光度计
+area photometry 面源测光
+area spectroscopy 面源分光
+area-mass ratio 面质比
+area-preserving map 保积映射
+areal velocity 面积速度; 掠面速度
+areocentric coordinate 火心坐标
+areodesy 火星测地学
+areographic chart 火面图
+areographic coordinate 火面坐标
+areographic latitude 火面纬度
+areographic longitude 火面经度
+areographic map 火面图
+areographic pole 火面极
+areography 火面学
+areology 火星学
+areophysics 火星物理学
+argon 缩写:Ar。氩
+argon-potassium method 氩钾纪年法
+argument 幅角; 辐角; 角距
+argument of latitude 升交角距
+argument of periapsis 近点幅角
+argument of pericenter 近心点幅角
+argument of perigee 近地点幅角
+argument of perihelion 近日点幅角
+arm class 臂类型
+arm population 臂族; 极端星族Ⅰ
+armillary sphere 浑仪
+array 阵列
+array antennae 阵列天线
+array configuration 阵列构型
+array feed 阵列馈源
+array processor 阵列处理器
+array telescope 阵列望远镜
+arrival time 到达时间
+arsenic 缩写:As。砷
+artificial asteroid 人造小行星
+artificial comet 人造彗星
+artificial crater 人造环形山
+artificial guide star 人造引导星
+artificial horizon 假地平
+artificial meteor 人造流星
+artificial object 人造天体
+artificial planet 人造行星
+artificial planetoid 人造小行星
+artificial radiation belt 人造辐射带
+artificial satellite 人造卫星
+artificial star 假星
+ascend 上升
+ascendant 星位
+ascending branch 上升支
+ascending node 升交点
+ascension 上升
+ascent 上升
+ashen light 灰光
+asiderite 石陨星; 石陨石
+aspect 视方位
+aspect angle 视界角
+aspect astrology 星象
+aspect of the moon 月相
+aspect ratio 纵横比
+aspheric surface 非球面
+aspherical lens 非球面透镜
+aspherical mirror 非球面镜
+asphericity 非球面度
+assemblage 系综
+assembly 系集
+assembly bias 组装偏袒; 组装偏差
+assembly of five planets 五星连珠
+assembly time 组装时间
+associated Legendre function 缔合勒让德函数
+association in time 时间关联
+association of galaxies 星系协
+astatine 缩写:At。砹
+aster 天体
+asterism 1、星官; 星宿; 2、星组; 3、星芒
+asteroid 小行星
+asteroid belt 小行星带
+asteroid family 小行星族
+asteroid group 小行星群
+asteroid ring 小行星环
+asteroid zone 小行星带
+asteroid-like comet 类小行星彗星
+asteroid-like object 类小行星天体
+asteroid-mass object 小行星质量天体
+asteroidal belt 小行星带
+asteroidal dynamics 小行星动力学
+asteroidal meteor 小行星流星
+asteroidal resonance 小行星共振
+asteroseismology 星震学
+asthenosphere 软流层
+astigmatism 像散
+astraction 物质改造
+astration 循环创造
+astrionics 天文电子学
+astro-position line 天文位置线
+astroarchaeology 天文考古学
+astrobiology 天体生物学
+astrobleme 陨星撞迹
+astrobotany 天体植物学
+astrocamera 天体照相机
+astrochemistry 天体化学
+astrochronology 天体年代学
+astroclimate 天文气候
+astroclimatology 天文气候学
+astrodome 天文圆顶
+astrodynamics 天文动力学
+astroecology 宇宙生态学
+astrofundamental physics 天体基本物理学
+astrogeodesy 天文测地学
+astrogeodetic deflection 天文大地测量偏差
+astrogeodynamics 天文地球动力学
+astrogeography 天体地理学
+astrogeology 天体地质学
+astrogeophysics 天文地球物理学
+astrognosy 恒星学
+astrogony 恒星演化学
+astrogram 天文电报
+astrograph 天体照相仪
+astrographic atlas 照相星图
+astrographic camera 天体照相机
+astrographic catalogue 照相星表
+astrographic chart 照相星图
+astrographic doublet 天体照相双合透镜
+astrographic map 照相星图
+astrographic objective 天体照相物镜
+astrographic plate 天体照相底片
+astrographic position 天体照相位置
+astrographic refractor 折射天体照相仪
+astrography 天体照相学
+astrolabe 1、星盘; 2、等高仪
+astrolatry 星体崇拜
+astrolithology 陨星学; 陨石学
+astrologer 占星术士
+astrology 占星术
+astromagnetism 天体磁学
+astromechanics 天体力学
+astrometeorology 天体气象学
+astrometer 天体测量仪
+astrometric aspect 天体测量方位
+astrometric baseline 天体测量基线
+astrometric binary 天测双星; 天体测量双星
+astrometric declination 天体测量赤纬
+astrometric distance 天测距离; 天体测量距离
+astrometric error 天测误差; 天体测量误差
+astrometric expectation 天测期望; 天体测量期望
+astrometric instrument 天测仪器; 天体测量仪器
+astrometric orbit 天测轨道; 天体测量轨道
+astrometric photograph 天测照相; 天体测量照相; 天测照片
+astrometric place 天体测量位置
+astrometric position 天体测量位置
+astrometric precision 天测精度
+astrometric right ascension 天体测量赤经
+astrometrist 天体测量学家
+astrometry 天体测量学
+astrometry satellite 天体测量卫星
+astronaut 宇航员
+astronautic ZHR 航天天顶每时出现率
+astronautics 宇航学
+astronavigation 天文导航
+astronegative 天文底片
+astronette 女宇航员
+astronomer 天文学家
+astronomical aberration 天文光行差
+astronomical almanac 缩写:A.E.。天文年历
+astronomical chronicle 天文历书
+astronomical climate 天文气候
+astronomical clock 天文钟
+astronomical clock-tower 水运仪象台
+astronomical compass 天文罗盘
+astronomical constant 天文常数
+astronomical constant system 天文常数系统
+astronomical coordinate 天文坐标
+astronomical coordinate system 天文坐标系统
+astronomical data center 天文数据中心
+astronomical date 天文日期
+astronomical day 天文日
+astronomical distance 天文距离
+astronomical ephemeris 缩写:A.E.。天文年历
+astronomical geodesy 天文测地学
+astronomical geology 天体地质学
+astronomical image reconstruction 天文图像复原
+astronomical image-processing system 缩写:AIPS。天文图像处理系统
+astronomical instrument 天文仪器
+astronomical interferometer 天文干涉仪
+astronomical latitude 天文纬度
+astronomical levelling 天文水准测量
+astronomical limitation 天文极限
+astronomical longitude 天文经度
+astronomical measurement 天文测量
+astronomical meridian 天文子午圈; 天文子午线
+astronomical method 天文方法
+astronomical nomenclature 天文命名
+astronomical object 天体
+astronomical observation 天文观测
+astronomical observatory 天文台
+astronomical optics 天文光学
+astronomical orientation 天文定向
+astronomical photography 天体照相学
+astronomical photometry 天体测光
+astronomical plate 天文底片
+astronomical point 天文点
+astronomical polarimetry 天体偏振测量
+astronomical pyrometer 天体高温计
+astronomical reference system 天文参考系
+astronomical refraction 大气折射
+astronomical research 天文研究
+astronomical satellite 天文卫星
+astronomical seeing 天文视宁度; 星像视宁度
+astronomical sign 天文符号
+astronomical spectrograph 天体摄谱仪
+astronomical spectrophotometer 天体分光光度计
+astronomical spectrophotometry 天体分光光度测量
+astronomical spectroscope 天体分光镜
+astronomical spectroscopy 天体光谱学
+astronomical technique 天文技术
+astronomical telegram 天文电报
+astronomical telescope 天文望远镜
+astronomical test 天文检验
+astronomical theodolite 天文经纬仪
+astronomical time 天文时
+astronomical time scale 天文时标
+astronomical triangle 天文三角形
+astronomical twilight 天文晨昏蒙影
+astronomical unit 缩写:au; AU。天文单位
+astronomical vertical 天文垂线
+astronomical year book 缩写:A.E.。天文年历
+astronomical zenith 天文天顶
+astronomy 天文学
+astronomy satellite 天文卫星
+astroparticle 天文粒子的; 宇宙粒子的
+astroparticle physics 天文粒子物理学; 天体粒子物理学
+astrophile 天文爱好者
+astrophotocamera 天体照相机
+astrophotogram 天文照片
+astrophotograph 天体照相仪
+astrophotography 天体照相学
+astrophotometer 天体光度计
+astrophotometry 天体测光
+astrophotonics 天文光子学
+astrophysical astrometry 天体物理测量
+astrophysical jet 天体物理喷流
+astrophysical maser 天体物理微波激射器
+astrophysical method 天体物理方法
+astrophysical technique 天体物理技术
+astrophysicist 天体物理学家
+astrophysics 天体物理学
+astropolarimeter 天体偏振计
+astropolarimetry 天体偏振测量
+astrorelativity 宇宙相对论
+astroscope 天文仪; 星宿仪
+astroseismology 星震学
+astrospectrograph 天体摄谱仪
+astrospectrometer 天体分光计
+astrospectrometry 天体分光测量
+astrospectroscope 天体分光镜
+astrospectroscopy 1、天体光谱学; 2、天体波谱学
+astrostatistics 天文统计学
+astrostereogram 天文立体照片
+astrotelevision 天文电视
+astrotomography 天体层析摄像
+astrovelocimeter 天体视向速度仪
+asymmetric drift 非对称星流
+asymmetric effect 非对称效应
+asymmetric periodic orbit 非对称周期轨道
+asymmetric radiation 非对称辐射
+asymmetric top 非对称陀螺
+asymmetrical galaxy 非对称星系
+asymmetry 非对称
+asymmetry spectrum 非对称谱
+asymptotic approximations 渐近近似
+asymptotic branch 渐近支
+asymptotic branch giant 缩写:AGB star。渐近支巨星; AGB星
+asymptotic freedom 渐近自由
+asymptotic giant branch 缩写:AGB。渐近巨星支
+asymptotic model 渐近模型
+asymptotic orbit 渐近轨道
+asymptotic representation 渐近表示
+asymptotic solution 渐近解
+asymptotic stability 渐近稳定性
+asynchronous correlator 非同步相关器
+atautun 阿托顿; 玛雅历日
+ataxite 杂陨石
+atlas 1、天图; 2、星图
+atmosphere 大气
+atmospheric Cherenkov telescope 大气切伦科夫望远镜
+atmospheric absorption 大气吸收
+atmospheric agitation 大气抖动
+atmospheric attenuation 大气衰减
+atmospheric collapse 大气坍塌
+atmospheric composition 大气成分
+atmospheric concentration 大气浓度
+atmospheric correction 大气改正
+atmospheric correlation length 大气相关长度
+atmospheric correlation time 大气相关时间
+atmospheric density 大气密度
+atmospheric depth 大气深度
+atmospheric dispersion 大气色散
+atmospheric dispersion compensator 大气色散补偿器
+atmospheric drag 大气阻力
+atmospheric eclipse 大气食
+atmospheric effect 大气效应
+atmospheric electricity 大气电学
+atmospheric entry trajectory 大气进入轨道
+atmospheric extinction 大气消光
+atmospheric fluctuation 大气起伏
+atmospheric fluorescence 大气荧光
+atmospheric interference 天电干扰
+atmospheric layer 大气层
+atmospheric line 大气谱线
+atmospheric loading 大气负载
+atmospheric mass density 大气质量密度
+atmospheric model 大气模型
+atmospheric noise 大气噪声
+atmospheric optics 大气光学
+atmospheric parameter 大气参量
+atmospheric perturbation 大气扰动
+atmospheric pressure 大气压
+atmospheric radiation 大气辐射
+atmospheric refraction 大气折射
+atmospheric refraction corrector 大气折射改正器
+atmospheric scattering 大气散射
+atmospheric scintillation 大气闪烁
+atmospheric seeing 大气视宁度
+atmospheric tide 大气潮
+atmospheric transmission 大气透射
+atmospheric transparency 大气透明度
+atmospheric turbulence 大气湍流
+atmospheric window 大气窗
+atmospherics 1、天电; 2、天电干扰
+atmospherium 云象仪
+atomic absorption coefficient 原子吸收系数
+atomic beam 原子束
+atomic beam frequency standard 原子束频标
+atomic beam magnetic resonance 原子束磁共振
+atomic beam tube 原子束管
+atomic clock 原子钟
+atomic constant 原子常数
+atomic density 原子密度
+atomic diffusion 原子扩散
+atomic energy level 原子能级
+atomic frequency standard 原子频标
+atomic hydrogen maser 氢原子激射器; 氢原子脉泽
+atomic kernel 原子实
+atomic level 原子能级
+atomic line 原子谱线
+atomic mass unit 原子质量单位
+atomic process 原子过程
+atomic second 原子时秒
+atomic selective absoption coefficient 原子选择吸收系数
+atomic spectrum 原子光谱
+atomic spin 原子自旋
+atomic standard 原子标准
+atomic state 原子能态
+atomic time 缩写:AT。原子时
+atomic time scale 原子时标度
+atomic time standard 原子时标准
+atomic unit 原子单位
+atomic unit of time interval 原子时单位
+attachment 附加; 附属装置
+attachment coefficient 附着系数
+attenuation 衰减
+attenuation constant 衰减常量
+attenuation curve 衰减曲线
+attenuation distance 衰减距离
+attenuation factor 衰减因子
+attenuator 衰减器
+attitude 姿态; 位置
+attitude control 姿态控制
+attitude parameter 姿态参数
+atto- 缩写:a-。阿
+attraction 吸引
+attractive force 引力
+au 全称:astronomical unit。天文单位
+aubrite 无球粒顽辉陨石
+audiofrequency 声频
+augmentation 增大
+aureole 日晕
+aurora 极光
+aurora australis 南极光
+aurora borealis 北极光
+aurora brightness 极光亮度
+auroral arc 极光弧
+auroral corona 极光冕
+auroral crown 极光冕
+auroral electrojet 极光电喷流
+auroral hiss 极光嘘声
+auroral jet 极光喷流
+auroral latitude 极光纬区
+auroral line 极光谱线
+auroral oval 卵形极光
+auroral proton flux 极光质子流量
+auroral storm 极光暴
+auroral substorm 极光亚暴
+auroral zone 极光带
+auspicious star 瑞星
+auspicious vapour 瑞气
+australite 澳洲玻璃陨体
+auto-guiding system 自动导星系统
+autocoder 自动编码器
+autocoding 自动编码
+autocollimation 自准直
+autocollimation spectrograph 自准直摄谱仪
+autocollimator 自准直管
+autocontrol 自动控制
+autocorrection 自动校正
+autocorrelation 自相关
+autocorrelation coefficient 自相关系数
+autocorrelation function 自相关函数
+autocorrelation radiometer 自相关型辐射计
+autocorrelation spectrometer 自相关频谱计
+autocorrelator 自相关器
+autocovariance 自协方差
+autoexcitation 自激发
+autographic record 自动记录
+autoguider 自动导星装置
+autoionization 自电离
+automated telescope 自动化望远镜
+automatic astronomical station 缩写:ASTRON。天体号
+automatic celestial navigation 缩写:ACN。自动天文导航
+automatic coding 自动编码
+automatic comet-seeker 自动寻彗器
+automatic control 自动控制
+automatic data processing 缩写:ADP。自动数据处理
+automatic gain control 自动增益控制
+automatic guider 自动导星装置
+automatic guiding 自动导星
+automatic interplanetary station 缩写:AIS。自动行星际站
+automatic measuring machine 自动量度仪
+automatic observatory 自动观测台
+automatic patrol telescope 自动巡天望远镜
+automatic phase corrector 缩写:APC。自动相位改正器
+automatic photoelectric telescope 缩写:APT。自动光电测光望远镜
+automatic plate-measuring machine 缩写:APM。底片自动测量仪
+automatic tidemeter 自动潮汐计
+automatic tracking 自动跟踪
+automatic zenith tube 自动天顶筒
+automation system 自动系统
+automorph 自守
+autonomous system 自控系统
+autoregression 自回归
+autoregressive coefficient 自回归系数
+autoregressive-moving average 缩写:ARMA。自回归移动平均
+autosyn 自整角机
+autumnal equinox 秋分点
+autumnal point 秋分点
+auxiliary 辅助
+auxiliary circle 辅助圆
+auxiliary instrument 附属仪器
+auxiliary lens 辅助透镜
+auxiliary level 辅助水准
+auxiliary mirror 辅助反射镜
+auxiliary optics 辅助光学系统
+auxiliary variable 辅助变量
+available electron 可用电子
+available energy 可用能
+available photon 可用光子
+available power 可用功率
+available work 可用功
+avalanche photodiode 缩写:APD。雪崩光电二极管
+average brightness 平均亮度
+average clock 平均钟
+average coherence 平均相干
+average departure 平均偏差
+average distance 平均距离
+average error 平均误差
+average life 平均寿命
+average magnitude 平均星等
+average power 平均功率
+average rate 平均速率
+average sample 平均取样
+average speed 平均速率
+average time 平均时间; 平均时刻
+average variance 平均方差
+average velocity 平均速度
+averaging method 平均法
+averted hemisphere 背面半球
+averted vision 眼角余光法
+aviation astronomy 航空天文学
+avoided crossing 交叉过渡区
+axial aberration 轴向像差
+axial acceleration 轴向加速度
+axial defocusing 轴向离焦
+axial deformation 轴向形变
+axial force 轴向力
+axial period 自转周期
+axial ratio 轴比
+axial ray 近轴光线; 轴上光线
+axial rotation 自转
+axial symmetry 轴对称
+axial tilt 轴倾角
+axial vector coupling 轴矢量耦合
+axino 轴微子
+axion 轴子
+axion like particle 缩写:ALP。类轴子粒子
+axis 轴
+axis of angular momentum 角动量轴
+axis of coordinate 坐标轴
+axis of figure 形状轴
+axis of inertia 惯量轴
+axis of reference 参考轴
+axis of rotation 自转轴
+axisymmetric accretion 轴对称吸积
+axisymmetric system 轴对称系统
+azel 方位和高度
+azimuth 方位角; 地平经度
+azimuth axis 方位轴; 垂直轴
+azimuth circle 1、地平经圈; 垂直圈; 2、方位圈; 地平经圈
+azimuth constant 方位差
+azimuth correction 方位改正
+azimuth equation 方位差
+azimuth error 方位误差
+azimuth line 方位线
+azimuth mark 方位标
+azimuth mounting 地平装置; 经纬仪式装置
+azimuth quadrant 地平象限仪
+azimuth shift 方位变化
+azimuth star 测方位星
+azimuth surveying 方位测量
+azimuth telescope 方位仪
+azimuth-elevation 方位和高度
+azimuth-range 方位和距离
+azimuthal action 周向作用量
+azimuthal angle 方位角; 地平经度
+azimuthal control 方位控制
+azimuthal equidistant projection 等距方位投影
+azimuthal period 周向周期
+azimuthal telescope 方位仪
+azimuthal velocity dispersion 周向速度弥散度
+azran 方位和距离
+b-lines b三重线
+back end 后端
+back feed factor 反馈因子
+back focus 后焦点
+back lobe 后瓣
+back surface 后表面
+back warming 反向致热
+back wave 回波; 反向波
+back-off 补偿
+background 背景
+background Compton scattering 背景康普顿散射
+background brightness 背景亮度
+background continuum 背景连续谱
+background count 背景计数
+background elimination 背景消除
+background fluctuation 背景起伏
+background galaxy 背景星系
+background galaxy cluster 背景星系团
+background glow 背景光
+background intensity 背景强度
+background noise 背景噪声
+background radiation 背景辐射
+background radiation intensity 背景辐射强度
+background radio radiation 背景射电
+background rejection 本底抑制
+background source 背景源
+background source function 背景源函数
+background star 背景星
+background subtraction 背景减除
+background temperature 背景温度
+background-noise level 背景噪声电平
+backlash 齿隙; 空回
+backlit view 背照视像
+backscatter 反向散射
+backscatter cross-section 反向散射截面
+backscatter peak 反向散射峰
+backside-illuminated CCD 背照式CCD
+backside-illuminated CMOS 背照式CMOS
+backup structure 背架
+backward difference 反向较差
+backward movement 逆行
+backwarming 返回加热
+bad pixel 坏像元
+baffle 遮光罩
+balance force 平衡力
+balance out 抵消平衡
+balance wheel 摆轮
+balancer 平衡器
+bald patch 秃斑
+ballistic camera 弹道照相机
+ballistic curve 弹道
+ballistic trajectory 弹道
+balloon astronomy 球载天文学
+balloon photography 气球照相
+balloon platform 球载平台
+balloon satellite 球载卫星
+balloon telescope 球载望远镜
+balloon theodolite 球载经纬仪
+balloon-based IR astronomy 球载红外天文学
+balloon-based UV astronomy 球载紫外天文学
+balloon-based X-ray astronomy 球载X射线天文学
+balloon-based astronomy 球载天文学
+balloon-based γ-ray astronomy 球载γ射线天文学
+balloon-borne IR telescope 球载红外望远镜
+balloon-borne UV telescope 球载紫外望远镜
+balloon-borne X-ray telescope 球载X射线望远镜
+balloon-borne astronomy 球载天文学
+balloon-borne instrument 球载仪器
+balloon-borne photometer 球载光度计
+balloon-borne spectroscope 球载分光镜
+balloon-borne telescope 球载望远镜
+balloon-borne γ-ray telescope 球载γ射线望远镜
+balun 平衡-不平衡变换器
+banana orbit 香蕉形轨道
+band 带; 谱带
+band constant 谱带常数
+band envelope 谱带包络
+band filter 带通滤波器
+band half-width 通带半宽
+band head 谱带头
+band lamp 条形灯
+band of rotation 转动谱带
+band of rotation-vibration 转振谱带
+band of the Milky Way 银河带
+band origin 谱带基线
+band profile 谱带轮廓
+band series 谱带系
+band spectrum 带光谱
+band splitting 谱带分裂
+band width 带宽
+band-gap energy 带隙能
+band-limit coronagraph 带限星冕仪
+band-limit mask 带限掩模
+bandpass 带通
+bandpass filter 带通滤波器
+bandwidth 带宽
+bandwidth effect 带宽效应
+bar 巴
+bar instability 棒不稳定性
+bar mode 棒模式
+bare mass 裸质量
+bare nucleon 裸核子
+bare nucleus 裸核
+bare particle 裸粒子
+barium 缩写:Ba。钡
+barium star 钡星
+barn 靶; 靶恩
+barometer 气压计
+barometric disturbance 气压扰动
+barometric pressure 气压
+barothermograph 气压-温度记录仪
+barotropic equation of state 正压状态方程
+barotropic gas 正压气体
+barotropic star 正压恒星
+barred galaxy 有棒星系
+barred spiral galaxy 缩写:SB galaxy。棒旋星系; SB型星系
+barrel distortion 桶形畸变; 负畸变
+barrel shutter 筒状快门
+barrier film 阻挡膜
+barrier penetration 势垒穿透
+barycenter 质心
+barycentric coordinate 质心坐标
+barye 微巴
+baryogenesis 重子合成
+baryon 重子
+baryon acoustic oscillation 缩写:BAO。重子声学振荡
+baryon asymmetry 重子不对称性
+baryon catastrophe 重子灾难
+baryon conservation 重子守恒
+baryon density 重子密度
+baryon density parameter 重子密度参数
+baryon number 重子数
+baryon oscillation 重子振荡
+baryon oscillation spectroscopic survey 缩写:BOSS。重子振荡光谱巡天
+baryon star 重子星
+baryon-photon fluid 重子-光子流体
+baryon-radiation coupling 重子-辐射耦合
+baryon-radiation plasma 重子-辐射等离子体
+baryon-to-entropy ratio 重子-熵比
+baryon-to-photon ratio 重子-光子比
+baryonic acoustic oscillation 缩写:BAO。重子声学振荡
+baryonic dark matter 重子暗物质
+baryonic matter 重子物质
+baryton 介子
+barytron 重电子
+basal flux 基流量
+basal plane 底平面
+basalt 玄武岩
+basaltic achondrite 玄武岩无球粒陨石
+basaltic layer 玄武岩层
+base 基点; 基线
+base field 基域
+base level 背景辐射电平; 宁静辐射电平
+baseband 基带
+baseline 基线
+baseline bootstrapping 基线自举法
+baseline curvature 基线弯曲
+baseline fitting 基线拟合
+baseline ripple 基线波纹
+baseline vector 基线矢量
+basin of the Moon 月面盆地
+basis transformation 基变换
+basis vector 基矢量; 基矢
+basket weaving 织篮法
+batholite 岩基
+batholith 岩盘
+bathyseism 深源地震
+beaded structure 带珠结构
+beam 光束; 波束
+beam angle of scattering 散射束锥角
+beam antenna 定向天线
+beam aperture 波束孔径
+beam area 波束面积
+beam broadening 波束展宽
+beam combiner 光束合束器
+beam current convective instability 束流对流不稳定性
+beam diaphragm 束光阑
+beam dilution 波束稀化
+beam efficiency 波束效率
+beam instability 波束不稳定性
+beam intensity 束强度
+beam leakage 波束渗漏
+beam line 光束线
+beam maser 束微波激射器; 束脉泽
+beam model 束流模型
+beam optics 束光学
+beam pattern 波束方向图
+beam reducer 光束缩束器
+beam reversal 束反向
+beam solid angle 束立体角
+beam splitter 分束器; 光束分离器
+beam stabilization 束稳定化
+beam steering 波束控制
+beam switching 波束切换
+beam thermal velocity 束热速度
+beam tube 束管
+beam waveguide 束波导
+beam-limiting aperture 束限制孔径
+beam-plasma interaction 束等离子体相互作用
+beam-reducing telescope 光束缩束望远镜
+beamed radiation 成束辐射
+beamformer 波束形成器
+beaming effect 束流效应; 聚束效应
+beaming in AGN 活动星系核集束效应
+beamsplitter 分束器; 光束分离器
+beamwidth 波束宽度
+beard 向阳彗尾
+bearing 方位; 支承
+bearing mark 象限角
+bearing strain 承压应变
+bearing stress 支承应力
+beat Cepheid 拍频造父变星
+beat effect 拍频效应
+beat frequency 拍频
+beat mass 拍频质量
+beat period 拍频周期
+bediasite 贝迪阿熔融石
+beginning height 出现点高度
+beginning of lunation 朔; 新月
+beginning of morning twilight 晨光始
+beginning of partial eclipse 初亏; 偏食始
+beginning of the year 正朔
+beginning of totality 食既; 全食始
+beginning of year 岁首
+beginning point 出现点
+being ahead and lag 盈缩
+bell tower 钟楼
+belt 带; 带纹
+belt of totality 全食带
+belt stars 腰带星
+bench mark 水准点
+bending instability 弯曲不稳定性
+bending of light 光线弯曲
+bending wave 弯曲波
+bent double radio source 弧形双射电源
+bent-pillar mounting 弧形基架
+berkelium 缩写:Bk。锫
+beryllium 缩写:Be。铍
+beryllium mirror 铍镜
+betatron acceleration 电子感应加速
+betatron effect 电子感应加速效应
+betatron mechanism 电子感应加速机制
+betatron process 电子感应加速过程
+bi-Maxwellian distribution 双麦克斯韦分布
+bias 1、偏向; 2、偏差; 3、本底
+bias correction 偏离改正; 本底改正
+bias field 本底场
+bias parameter 偏袒参数
+bias uncertainty 偏离不定度
+biased error 系统误差
+biased galaxy formation 星系偏袒形成
+biconcave lens 双凹透镜
+biconvex lens 双凸透镜
+bicrystal 双晶体
+bidimensional spectrography 二维摄谱
+bidimensional spectroscopy 二维分光
+bifid 二叉彗尾
+bifurcated E-layer 分叉E层
+bifurcation 分歧; 分支
+bifurcation point 歧点
+big bounce 大反弹
+big chill 冷寂
+big crunch 大挤压
+big flare 大耀斑
+big rip 大撕裂
+big splash 大溅撞
+bilateral observation 对向观测
+billiard-ball collision 弹性碰撞
+billitonite 勿里洞玻璃陨石
+bimolecular 双分子
+bimorph mirror 双压电晶片镜
+bin size 分格尺寸
+binarity 成双性
+binary 双星
+binary X-ray source 缩写:XRB。X射线双星
+binary asteroid 双小行星
+binary collision 二体碰撞
+binary combination head 双复合谱带头
+binary flare star 耀发双星
+binary frequency 双星出现率
+binary galaxy 双重星系
+binary mask 二元掩模
+binary millisecond pulsar 毫秒脉冲双星
+binary planet 双行星
+binary population synthesis 双星星族合成
+binary protostar 原双星
+binary pulsar 脉冲双星
+binary quasar 双类星体
+binary radio pulsar 射电脉冲双星
+binary star 双星
+binary system 双星系统; 双重星系
+binding energy 结合能
+binding force 结合力
+bineutron 中子对
+binocular telescope 双目望远镜; 双筒望远镜
+binoculars 双目望远镜; 双筒望远镜
+binomial array 二项式天线阵
+binomial coefficient 二项式系数
+binomial distribution 二项式分布
+binomial probability 二项式概率
+binormal 副法线
+bioastronomy 生物天文学
+biological effect 生物效应
+biosignature 生命征迹
+biosphere 生物圈
+bipolar coordinate 双极坐标
+bipolar flow 偶极流
+bipolar galaxy 偶极星系
+bipolar group 双极群
+bipolar jet 双极喷流
+bipolar magnetic region 缩写:BMR。双极磁区
+bipolar nebula 偶极星云
+bipolar outflow 偶极外向流
+bipolar planetary nebula 双极行星状星云
+bipolar sunspot 双极太阳黑子
+bipolar sunspots 双极黑子
+biprism 双棱镜
+birefringence 双折射
+birefringent filter 双折射滤光器
+birefringent interferometer 双折射干涉仪
+birefringent monochrometer 双折射单色计
+birefringent prism 双折射棱镜
+bisection 平分
+bisection error 平分误差
+bisector 平分线; 等分线
+bismuth 缩写:Bi。铋
+bispectrum 双谱
+bissextile 闰
+bissextile day 闰日
+bissextile year 闰年
+bistatic radar 双站雷达
+bivariate distribution 双变量分布
+bizarre variable 奇异变星
+black body 黑体
+black brane 黑膜
+black drop 黑滴
+black dwarf 黑矮星
+black hole 缩写:BH。黑洞
+black hole accretion 黑洞吸积
+black hole binary 黑洞双星
+black hole dynamics 黑洞动力学
+black hole entropy 黑洞熵
+black hole neighbourhood 黑洞邻域
+black hole spin 黑洞自旋
+black radiation 黑体辐射
+black widow pulsar 毒蜘蛛型脉冲星
+blackbody photocell 黑体光电管
+blackbody radiation 黑体辐射
+blackbody temperature 黑体温度
+blackening 致黑
+blackout 中断
+blade shutter 叶片快门
+blank field 空场
+blanketing effect 覆盖效应
+blanketing factor 覆盖因子
+blanking 间歇; 断路
+blast wave 爆震波
+blazar 耀变体
+blazar-like activity 类耀活动
+blazar-like object 类耀变体
+blaze angle 闪耀角
+blaze wavelength 闪耀波长
+blazed grating 定向光栅
+blend line 混合谱线
+blind spot 盲点
+blind survey 盲巡天
+blink comparator 闪视仪; 闪视比较仪
+blink microscope 闪视镜
+blinking 闪视
+blitzar 坍闪星
+blob 小斑点; 小云
+block adjustment 面积平差
+block diagram 方框图
+block movement 断块运动
+blocked impurity band detector 缩写:BIB detector。阻杂带探测器
+blocking filter 截止滤光片
+bloomed lens 消晕透镜
+blooming 消晕
+blow-out jet 爆裂喷流
+blue band 蓝波段
+blue branch 蓝分支
+blue bump 蓝鼓包
+blue clearing 蓝洁化
+blue cloud galaxy 蓝云星系
+blue compact dwarf galaxy 缩写:BCDG。蓝致密矮星系
+blue compact galaxy 缩写:BCG。蓝致密星系
+blue dwarf 蓝矮星
+blue edge 蓝界
+blue flash 蓝闪
+blue galaxy 蓝星系
+blue giant 蓝巨星
+blue halo star 蓝晕星
+blue horizontal branch 蓝水平支
+blue horizontal branch star 蓝水平支星
+blue loop 蓝回绕
+blue magnitude 蓝星等
+blue moon 蓝月亮
+blue object 蓝天体
+blue populous cluster 蓝族星团
+blue shift 蓝移
+blue star 蓝星
+blue straggler 蓝离散星
+blue supergiant 蓝超巨星
+blue variable 蓝变星
+blue-green flame 蓝绿闪
+blue-sensitive plate 蓝敏底片
+blueberry galaxy 蓝莓星系
+bodily wave 体波
+body force 彻体力
+body tide 固体潮
+body wave 体波
+body-fixed coordinate system 本体坐标系,星固坐标系
+bolide 火流星
+bolograph 测辐射热仪
+bolometer 测辐射热计
+bolometer array 测辐射热计面阵
+bolometric absolute magnitude 绝对热星等
+bolometric albedo 热反照率
+bolometric amplitude 热星等变幅
+bolometric correction 缩写:BC。热改正
+bolometric light curve 热光变曲线
+bolometric luminosity 热光度
+bolometric magnitude 热星等
+bolometric radiation 热辐射
+bolometric temperature 热温度
+bombardment 照射
+bond 束; 结合
+booster 助推器; 运载火箭
+boot strap 自举作用
+bootstrap resampling 自举复采样
+boresight 视轴; 漏孔
+boron 缩写:B。硼
+borosilicate glass 硅酸硼玻璃
+boson 玻色子
+boson star 玻色子星
+bottle stone 暗绿玻璃
+bottom-up galaxy formation 1、自下而上式星系形成; 2、自下而上星系形成
+bottom-up scenario 1、自下而上图景; 2、自下而上式图景
+bounce resonance 反冲共振
+bounce-back 反冲
+bouncing model 弹跳模型
+bound electron 束缚电子
+bound model 束缚模型
+bound orbit 束缚轨道
+bound-bound absorption 束缚-束缚吸收
+bound-bound transition 束缚-束缚跃迁
+bound-free absorption 束缚-自由吸收
+bound-free transition 束缚-自由跃迁
+boundary layer 边界层
+boundary plane 边界面
+boundary temperature 边界温度
+boundary value 边界值
+bow shock 弓形激波
+bow-shock nebula 弓形激波星云
+bowtie antenna 领结天线
+box orbit 盒轨道
+box photometry 方格测光法
+boxy elliptical galaxy 盒型椭圆星系
+brachy-axis 短轴
+braking absorption 阻尼吸收
+braking index 转慢指数; 制动指数
+braking orbit 制动轨道
+braking parameter 转慢参数; 制动参数
+braking radiation 轫致辐射; 阻尼辐射
+branch 支; 分支
+branch point 分支点
+branching network 分支网络
+branching ratio 分支比
+brane 膜
+brane collision 膜碰撞
+braneworld 膜世界
+breadth of spectral line 谱线宽度
+breakdown potential 击穿电势
+breakdown voltage 击穿电压
+breaking point 断点
+breccia 角砾岩
+brick-wall method 砖墙方法
+bright band 亮带
+bright bridge 亮桥
+bright component 亮子星
+bright core 亮核
+bright flocculus 亮谱斑
+bright galaxy 亮星系
+bright giant 亮巨星
+bright grain 亮颗粒
+bright hydrogen flocculus 亮氢谱斑
+bright limb 亮边缘
+bright line 明线
+bright line spectrum 明线光谱
+bright mottle 亮日芒
+bright nebula 亮星云
+bright nebulosity 亮星云状物质
+bright point 亮点
+bright rays 亮纹
+bright rim structure 亮环结构
+bright ring 亮环
+bright spot 亮点
+bright star 亮星
+brightening 增亮
+brightening towards the limb 临边增亮
+brightest cluster galaxy 1、最亮团星系; 2、缩写:BCG。最亮团星系
+brightness 亮度
+brightness coefficient 亮度系数
+brightness contour 等亮度线
+brightness distribution 亮度分布
+brightness function 亮度函数
+brightness ratio 亮度比
+brightness temperature 亮温度
+brilliance 辉度
+brilliancy 辉度
+broad absorption line 缩写:BAL。宽吸收线
+broad absorption-line quasar 缩写:BAL quasar。宽吸收线类星体
+broad emission line 宽发射线
+broad halo 延伸晕
+broad resonance 宽共振
+broad-line radio galaxy 缩写:BLRG。宽线射电星系
+broad-line region 缩写:BLR。宽线区
+broadband continuum 宽带连续区
+broadband imaging 宽带成像
+broadband photometry 宽带测光
+broadband spectral measurement 宽带分光测量
+broadband width 宽带宽度
+broadcast ephemeris 广播星历表
+broadening 致宽; 展宽
+broadening by damping 阻尼致宽
+broadside array 垂射天线阵
+broken transit 折轴中星仪
+broken transit instrument 折轴中星仪
+broken-beam technique 截止束技术
+bromine 缩写:Br。溴
+bronzite 古铜辉石
+broom star 帚星
+brown dwarf 褐矮星
+bubble model of reionization 再电离泡模型
+bubble nucleation 泡核化
+bubble sextant 气泡六分仪
+bubble tube 水准管
+bubble vial 水准管
+buckling instability 翘曲不稳定性
+build-up effect 积累效应
+bulge 核球
+bulge X-ray source 核球X射线源
+bulk flow 体流
+bulk motion 体运动
+bulk property 体特性
+bulk viscosity 体黏滞
+bump Cepheid 驼峰造父变星
+bunch of particles 粒子束
+bundle frame 标架丛
+buried-channel CCD 埋入沟道型CCD
+burning incense-clock 香漏
+burst 暴
+burst noise 暴噪
+burst source 暴源
+burster 暴源
+bursting pulsar 暴态脉冲星
+butt 触
+butterfly diagram 蝴蝶图
+c-m diagram 全称:color-magnitude diagram。颜色-星等图
+c-m relation 全称:color-magnitude relation。颜色-星等关系
+c.p.m. 全称:common proper motion。共自行
+cD galaxy 全称:central-Dominated galaxy。中央主导星系; cD星系
+cadmium 缩写:Cd。镉
+cadmium sulfide 硫化镉
+caesium 缩写:Cs。铯
+caesium antimonide 含锑铯
+caesium atomic beam 铯原子束
+caesium clock 铯钟
+caesium cycle 铯周期
+caesium resonator 铯共振器
+cage 观测笼
+calbtun 卡勃顿
+calcite 方解石
+calcium 缩写:Ca。钙
+calcium cloud 钙云
+calcium flocculus 钙谱斑
+calcium line 钙线
+calcium network 钙网络
+calcium parallax 钙吸收视差
+calcium plage 钙谱斑
+calcium prominence 钙日珥
+calcium star 钙星
+calcium-aluminium-rich inclusion 缩写:CAI。富钙铝包体
+caldera 火山喷口
+calendar 历
+calendar clock 历钟
+calendar date 历日期
+calendar day 历日
+calendar month 历月
+calendar reform 改历
+calendar stone 历石
+calendar year 历年
+calendarist 历算家
+calibrating receiver 校准接收机
+calibrating source 校准发生器
+calibration 校准; 定标
+calibration curve 定标曲线
+calibration procedure 定标程序
+calibration source 定标源
+calibration spectrum 定标谱
+calibration star 定标星
+calibration system 定标系统
+calibrator 校准器
+californium 缩写:Cf。锎
+calm day 宁静日
+calorimetric spectrometer 量能器能谱仪
+calorimetry 量热学
+cam 凸轮
+camera lens 照相透镜
+canal of Mars 火星运河
+cancellation 对消
+candle power 烛光
+candle-flame star 烛星
+candoluminescence 烛发光率
+canicular days 偕日升前后
+cannibalism 吞食
+cannibalizing of galaxies 星系吞食
+canonical Big Bang 典型大爆炸
+canonical assemblage 正则系综
+canonical change 正则变化
+canonical commutation relation 正则置换关系
+canonical conjugate 正则共轭
+canonical constants 正则常数
+canonical coordinate 正则坐标
+canonical distribution 正则分布
+canonical elements 正则根数
+canonical ensemble 正则系综
+canonical extension 正则扩充
+canonical map 正则映射
+canonical model 正则模型
+canonical momentum 正则动量
+canonical nonthermal source 典型非热源
+canonical time unit 正则时间单位
+canonical transformation 正则变换
+cantaloupe terrain 甜瓜形地表
+canyon 深峡谷
+cap 角; 冠
+cap prominence 冠状日珥
+capping shutter 叠合快门
+capsule 密封舱
+capture 俘获
+capture cross-section 俘获截面
+capture event 俘获事件
+capture hypothesis 俘获假说
+capture theory 俘获理论
+capture time 俘获时间
+captured rotation 受俘自转; 同步自转
+carbon 缩写:C。碳
+carbon branch 碳分支
+carbon burning 碳燃烧
+carbon cloud 碳云
+carbon cycle 碳循环
+carbon detonation 碳爆轰
+carbon dioxide 二氧化碳
+carbon dwarf star 碳矮星
+carbon fiber reinforced polymer mirror 缩写:CFRP mirror。碳纤维复合材料镜
+carbon flash 碳闪
+carbon line 碳谱线
+carbon monosulfide 一硫化碳
+carbon monoxide 一氧化碳
+carbon sequence 碳序
+carbon star 缩写:C star。碳星
+carbon-carbon bond 碳-碳键
+carbon-deflagration model 碳暴燃模型
+carbon-nitrogen cycle 缩写:CN cycle。碳氮循环
+carbon-nitrogen-oxygen cycle 缩写:CNO cycle。碳氮氧循环
+carbon-poor star 贫碳星
+carbon-rich planet 富碳行星
+carbon-rich star 富碳星
+carbonaceous asteroid 碳质小行星
+carbonaceous chondrite 碳粒陨星
+carbonyl sulfide 氧硫化碳
+card catalogue 卡片型星表
+cardinal direction 基向
+cardinal point 四方点; 基点
+cardinal signs 黄道带主宫
+cargo bay 货舱
+carrier frequency 载频
+carrier signal 载波信号
+carrier vehicle 运载飞行器
+carrier wave 载波
+carrier-to-noise ratio 载波噪声比
+carte synoptique 日面综合图
+cartographic projection 制图式投影
+cascade 级联
+cascade transition 级联跃迁
+cascaded image converter 级联像转换器
+case A recombination A情形复合
+case B recombination B情形复合
+cat-eye interferometer 猫眼干涉仪
+cataclysm 激变
+cataclysmic binary 激变双星
+cataclysmic event 激变事件
+cataclysmic explosion 激变爆发
+cataclysmic variable 激变变星
+catadioptric objective 折反射物镜
+catadioptric system 折反射系统
+catadioptric telescope 折反射望远镜
+catalog place 星表位置
+catalogue astronomy 星表天文学
+catalogue equinox 星表分点
+catalogue number 星表编号
+catalogue of stars 星表
+catalogue parameter 星表参数
+catarinite 镍铁陨星
+catastrophe 灾变
+catastrophe theory 突变理论
+catastrophic collision 灾变碰撞
+catastrophic event 灾变事件
+catastrophic explosion 灾变爆发
+catastrophic hypothesis 灾变假说; 灾变说
+catastrophic theory 灾变理论
+catastrophic variable 灾变变星
+catena 坑链; 环形山串
+cathodoluminescence 阴极发光
+cation 阳离子
+catoptric system 反射系统
+catoptric telescope 反射望远镜
+catoptrics 反射光学
+causality 因果律
+caustics 焦散线
+cavity 空腔
+cavity clocking 空腔计时
+cavity coupling 腔体耦合
+cavity pulling 腔牵引
+cavus 深坑, 凹地
+celestial UV telescope 紫外空间望远镜
+celestial X-ray source 宇宙X射线源
+celestial axis 天轴
+celestial baton 天杵
+celestial body 天体
+celestial chart 天图
+celestial clock 天体钟
+celestial coordinate 天球坐标
+celestial coordinate system 天球坐标系
+celestial cryptography 天体密码学
+celestial dog 天狗
+celestial ephemeris pole 缩写:CEP。天球历书极
+celestial equator 天赤道
+celestial equator system of coordinate 天赤道坐标系
+celestial flail 天棓
+celestial globe 天球仪; 浑象
+celestial guidance 天文导航
+celestial horizon 天球地平
+celestial inertial guidance 天文惯性导航
+celestial lance 天枪
+celestial latitude 黄纬
+celestial longitude 黄经
+celestial maser 天体微波激射; 天体脉泽
+celestial matter 宇宙物质
+celestial mechanician 天体力学家
+celestial mechanics 天体力学
+celestial meridian 天球子午圈
+celestial navigation 天文导航
+celestial object 天体
+celestial parallel 天球纬圈
+celestial perimeter parts 周天分
+celestial photograph 天体照片
+celestial photography 天体照相
+celestial planisphere 平面星图
+celestial polar distance 天极距
+celestial pole 天极
+celestial pole offsets 天极偏差
+celestial revolution 天周
+celestial source 宇宙源
+celestial spear 天锋
+celestial sphere 1、天球; 2、天球仪; 浑象
+celestial stem 天干
+celestial system 天球坐标系
+celestial thermal background 天空热背景
+celestial γ-ray source 宇宙γ射线源
+cell field model 蜂窝场模型
+cell summing 网格和
+cell variances 单格方差
+cellular structure 蜂窝状结构
+centennial variation 百年变化
+center of activity 缩写:CA。活动中心
+center of curvature 曲率中心
+center of gravity 重心
+center of gyration 回转中心
+center of inertia 惯性中心
+center of light 光心
+center of mass 质心
+center of mass angle 质心角
+center of mass frame 质心系
+center of oscillation 振动中心
+center of rotation 转动中心
+center-limb variation 中心-边缘变化
+centigrade scale 百分度
+centigrade system 百分度制
+centimeter wave 厘米波
+centimeter-excess object 厘米波超天体
+centimetric emission 厘米波辐射
+centimetric radiation 厘米波辐射
+central European time 缩写:CET。欧洲中部时间
+central angle 中心角
+central axis 中心轴
+central blockage 中心遮拦
+central concentration 中心聚集度
+central condensation 中心凝聚物
+central configuration 中心构形
+central core 中心核
+central date 中央日期
+central eclipse 中心食
+central figure 中心构形
+central force 有心力
+central image 中心像
+central intensity 线心强度
+central line 中心线
+central lobe 中心瓣
+central meridian 缩写:CM。中央子午线; 日心子午线
+central meridian distance 缩写:CMD。日心距
+central meridian path 缩写:CMP。日心经日期
+central molecular zone 缩写:CMZ。中心分子区
+central mountain 中央峰
+central overlap technique 中心重叠法
+central peak 中央峰
+central standard time 缩写:CST。美国中部标准时
+central star 中央星
+central temperature 中心温度
+central time 缩写:CT。中部时
+central-Dominated galaxy 缩写:cD galaxy。中央主导星系; cD星系
+centrally directed field of force 中心力场
+centrifugal acceleration 离心加速度
+centrifugal force 离心力
+centrifugally driven wind 缩写:CDW。离心力驱星风
+centring error 对心误差
+centripetal acceleration 向心加速度
+centripetal force 向心力
+centroid 矩心; 质心; 形心
+centroid of stars 恒星群形心
+centrosphere 地心圈
+centurial year 世纪年
+century 世纪
+cerium 缩写:Ce。铈
+certain event 确定事件
+cervit 微晶玻璃
+cesium clock 铯钟
+cesium frequency standard 铯频标
+cesium iodide 碘化铯
+cesium resonanc frequency 铯共振频率
+cesium transition frequency 铯跃迁频率
+cesium-beam clock 铯钟
+cesium-beam resonator 铯束共振器
+cesium-beam tube 铯束管
+chain 链; 山岭
+chain method 链锁法
+chain of QSOs 类星体链
+chain of bursts 爆发链
+chain of galaxies 星系链
+chain reaction 链式反应
+chameleon field 变色龙场
+changing-look active galactic nucleus 缩写:CL-AGN。变脸活动星系核
+changing-obscuration active galactic nucleus 缩写:CO-AGN。遮变活动星系核
+changing-state active galactic nucleus 缩写:CS-AGN。态转变活动星系核
+channel 通道; 波道
+channel filter 通道滤波器; 波道滤波器
+channel plate 通道板
+chaos 混沌; 破碎地貌
+chaos theory 混沌理论
+chaotic cosmology 混沌宇宙论
+chaotic dynamics 混沌动力学
+chaotic inflation 混沌暴胀
+chaotic layer 混沌层
+chaotic model 混沌模型
+chaotic orbit 混沌轨道; 不规则轨道
+chaotic region 混沌区
+chaotic spiral arm 混沌状旋臂
+chaotic theory 混沌理论
+characteristic age 特征年龄
+characteristic asteroid 特征小行星
+characteristic constant 特征常数
+characteristic curve 特征曲线
+characteristic dyadic 特征并矢
+characteristic envelope 特征包络
+characteristic equation 特征方程
+characteristic exponent 特征指数
+characteristic frequency 特征频率
+characteristic function 特征函数
+characteristic index 特征指标
+characteristic length 特征长度
+characteristic number 特征数
+characteristic radius 特征半径
+characteristic root 特征根
+characteristic temperature 特征温度
+characteristic thickness 特征厚度
+characteristic time 特征时间
+characteristic time scale 特征时标
+characteristic value 特征值
+characteristic velocity 特征速度
+charactron 字码管
+charge conjugation 电荷共轭
+charge conservation 电荷守恒
+charge density 电荷密度
+charge excess plasma 电荷过剩等离子体
+charge exchange 电荷交换
+charge injected device 缩写:CID。电荷注入器件
+charge multiplet 电荷多重态
+charge number 电荷数
+charge transfer device 缩写:CTD。电荷转移器件
+charge-coupled device 缩写:CCD。电荷耦合器件
+charge-space symmetry 荷空对称性
+charge-to-mass ratio 荷质比
+charged particle 荷电粒子
+charged particle track 荷电粒子迹
+chasma 深谷
+chassignite 纯橄无球粒陨石
+check sum 检验和
+chemical abundance 化学丰度
+chemical composition 化学组成
+chemical enrichment 化学增丰
+chemical equilibrium 化学平衡
+chemical evolution 化学演化
+chemical potential 化学势
+chemically peculiar star 化学组成特殊星
+chemiluminiscence 化学发光
+chemosphere 光化层
+chevelure 云状包层
+chiral anomaly 手征反常
+chiral symmetry 手征对称性
+chirality 手征性
+chirality operator 手征算符
+chirp mass 啁啾质量
+chirp signal 啁啾信号
+chirp transform spectrometer 线性调频变换频谱仪; 啁啾变换频谱仪
+chladnite 顽辉石陨石
+chlorine 缩写:Cl。氯
+chondrite 球粒陨石
+chondrule 粒状体
+chopper 斩波器
+chopper wheel method 斩波轮法
+chopping 斩波法
+chopping angle 切角
+chopping primary mirror 斩波主镜
+chopping secondary mirror 斩波副镜
+chopping shutter 断口快门
+chopping technique 斩波技术
+chromatic aberration 色差
+chromatic curve 色差曲线
+chromatic difference of magnification 倍率色差
+chromatic dispersion 色散
+chromatic image 色差像
+chromatic refraction 色折射
+chromatic resolution 色分解
+chromatism 色差
+chromite 陨星铬铁
+chromium 缩写:Cr。铬
+chromium star 铬星
+chromosphere 色球
+chromosphere-corona transition region 色球-日冕过渡区
+chromosphere-corona transition zone 色球-日冕过渡区
+chromospheric ablation 色球蒸发
+chromospheric activity 色球活动
+chromospheric activity index 色球活动指数
+chromospheric bubble 色球泡
+chromospheric condensation 色球压缩区
+chromospheric ejection 色球抛射
+chromospheric eruption 色球爆发
+chromospheric evaporation 色球蒸发
+chromospheric facula 色球光斑
+chromospheric fine structure 色球精细结构
+chromospheric flare 色球耀斑
+chromospheric flocculus 色球谱斑
+chromospheric knot 色球结
+chromospheric line 色球谱线
+chromospheric material 色球物质
+chromospheric mottling 色球日芒
+chromospheric network 色球网络
+chromospheric plage 色球谱斑
+chromospheric spectrum 色球光谱
+chromospheric spicule 色球针状体
+chromospheric spike 色球针状体
+chromospheric telescope 色球望远镜
+chromospheric temperature 色球温度
+chromospheric whirl 色球旋涡
+chromospherically active binary star 色球活动双星
+chromospherically active star 色球活动星
+chronicle 编年史
+chronogeometry 计时几何学
+chronograph 记时仪
+chronological table 年表
+chronology 纪年法
+chronometer 时计
+chronometer correction 时计改正
+chronometer rate 时计日速
+chronometric invariant 时计不变量
+chronometry 计时学
+chronon 双时元
+chronoscope 记时镜
+cine theodolite 电影经纬仪
+cinematography 电影照相
+circle division 度盘分划
+circle left 盘左; 正镜
+circle of altitude 地平纬圈; 平行圈
+circle of confusion 模糊圈
+circle of declination 赤纬圈
+circle of equal altitudes 等位圈
+circle of geodesic curvature 大地曲率圈
+circle of longitude 1、经度圈; 2、黄经圈
+circle of perpetual apparition 上规; 恒显圈
+circle of perpetual occultation 恒隐圈; 下规
+circle of position 位置圈
+circle of right ascension 赤经圈
+circle reading 度盘读数
+circle right 盘右; 倒镜
+circle scanner 度盘扫描器
+circular Gaussian brightness distribution 圆高斯亮度分布
+circular aperture 圆形孔径
+circular array 环形阵
+circular dichroism 圆振二向色性
+circular frequency 圆频率
+circular map 盖图
+circular motion 圆周运动
+circular orbit 圆轨道
+circular polarization 圆偏振
+circular polarized radiation 圆偏振辐射
+circular repolarization 再生圆偏振
+circular restricted three-body problem 圆型限制性三体问题
+circular solution 圆轨解
+circular variable filter 缩写:CVF。圆形可变滤光片
+circular velocity 环绕速度
+circularity 正圆性
+circulation 环流
+circulation cell 环流圈
+circulator 环形器
+circulatory motion 环形运动
+circumbinary disc 双星星周盘
+circumbinary planet 环双星行星
+circumgalactic medium 缩写:CGM。星系周介质
+circumhorizontal arc 环地平弧; 日承
+circumlunar flight 环月飞行
+circumlunar orbit 环月轨道
+circumlunar satellite 环月卫星
+circumlunar space 月周空间
+circumlunar trajectory 环月轨道
+circummeridian altitude 拱子午线高度
+circumnuclear disk 缩写:CND。核周盘
+circumnuclear medium 缩写:CNM。核周介质
+circumnuclear star formation 核周产星
+circumnuclear star-forming ring 核周产星环
+circumplanetary flight 环行星飞行
+circumplanetary matter 行星周物质
+circumplanetary orbit 环行星轨道
+circumplanetary satellite 环行星卫星
+circumplanetary space 行星周空间
+circumplanetary trajectory 环行星轨道
+circumpolar constellation 拱极星座
+circumpolar region 拱极区
+circumpolar star 拱极星
+circumpolar zone 拱极区
+circumscribed halo 外接日晕
+circumsolar flight 环日飞行
+circumsolar orbit 环日轨道
+circumsolar satellite 环日卫星
+circumsolar space 日周空间
+circumsolar trajectory 环日轨道
+circumstances of eclipse 交食概况
+circumstances of meteorite fall 陨降概况
+circumstellar astrophysics 星周天体物理
+circumstellar cloud 星周云
+circumstellar debris disk 星周碎屑盘
+circumstellar disc 星周盘
+circumstellar disk 星周盘
+circumstellar dust 星周尘
+circumstellar dust disk 星周尘盘
+circumstellar dust shell 星周尘壳
+circumstellar envelope 星周包层
+circumstellar gas 星周气体
+circumstellar grain 星周粒子
+circumstellar line 星周谱线
+circumstellar maser 星周脉泽
+circumstellar material 星周物质
+circumstellar matter 星周物质
+circumstellar nebula 星周云
+circumstellar shell 星周壳
+circumsystem material 双星周物质
+circumterrestrial flight 环地飞行
+circumterrestrial orbit 环地轨道
+circumterrestrial satellite 环地卫星
+circumterrestrial space 地周空间
+circumterrestrial trajectory 环地轨道
+circumzenithal 拱天顶仪
+circumzenithal arc 环天顶弧; 日载
+circus 圆谷
+cis-Neptunian object 海王星内天体
+cis-cytherean space 金地空间
+cis-martian space 火地空间
+cis-planetary space 行星内空间
+cislunar space 月地空间
+civil calendar 民用历
+civil date 民用日期
+civil day 民用日
+civil time 民用时
+civil twilight 民用晨昏蒙影
+civil year 民用年
+civilization 文明
+clamp screw 制动螺旋
+class S spectra S类频谱
+class T spectra T类频谱
+classical Algol system 经典大陵双星
+classical Cepheid 经典造父变星
+classical Compton scattering 经典康普顿散射
+classical Kuiper belt object 经典柯伊伯带天体
+classical R CrB star 经典北冕R型星
+classical T Tauri star 经典金牛T型星
+classical astronomy 经典天文学
+classical cosmology 经典宇宙学
+classical damping constant 经典阻尼常数
+classical integral 经典积分
+classical nova 经典新星
+classical planet 经典行星
+classical quasar 经典类星体
+classical theory 经典理论
+classical transport 经典输运
+classification 分类
+classification criterion 分类判据
+clast 碎崤
+clathrate 包合物
+clean beam 洁束
+clean method 洁化方法
+cleaned map 洁化图
+cleaning 洁化
+cleft 裂痕
+clepsydra 漏壶; 漏刻
+clepsydra on horseback 马上漏刻
+cliff interferometer 海岸干涉仪
+climate 气候
+climatology 气候学
+clinopyroxene 单斜辉石
+clipped signal 限幅信号
+clock 时钟
+clock aging 钟老化
+clock comparison 时钟比对
+clock coordination 时钟协调
+clock correction 时钟改正
+clock dial 钟面
+clock drift 时钟漂移
+clock drive 转仪钟
+clock ensemble 钟组
+clock error 钟差
+clock hand 指针
+clock indication 钟面读数
+clock malfunction 时钟失调
+clock mechanism 时钟机构
+clock offset 钟差
+clock rate 钟速
+clock room 钟房
+clock star 测时星
+clock tower 钟楼
+clock transportation 时钟搬运
+clock weight 钟锤
+clockwise 顺时针方向
+clockwork water-driven armillary sphere 水运仪象台
+close binary 密近双星
+close binary galaxy 密近双重星系
+close binary star 密近双星
+close binary system 密近双重天体
+close configuration 闭合位形
+close encounter 密近交会
+close satellite 密近卫星
+closed fork mounting 闭合型叉式装置
+closed form 闭形式
+closed long-axis orbit 闭合长轴轨道
+closed loop orbit 闭合圈形轨道
+closed model 闭模型
+closed orbit 闭合轨道
+closed string 闭弦
+closed system 闭合系
+closed timelike curve 缩写:CTC。闭合类时曲线
+closed universe 闭宇宙
+closed-box model 闭箱模型
+closely coiled arm 紧卷旋臂
+closely coupled state 密耦态
+closest approach 最接近态; 最接近时刻
+closest approach point 近站点
+closing error 闭合误差
+closing sum 闭合和
+closure 闭合; 闭合差
+closure amplitude 闭合幅度
+closure density 闭合密度
+closure phase 闭合相位
+closure phase imaging technique 锁相成像技术
+cloud 云
+cloud chamber 云室
+cloud cover 云量
+cloud structure 星云结构
+cloud-in-cloud problem 云中云问题
+clouding 云蔽
+cloudlet 小云
+clumping 簇聚
+cluster 1、星团; 2、星系团
+cluster Cepheid 星团造父变星
+cluster center 团中心
+cluster galaxy 团星系
+cluster infall [星系]团沉降
+cluster member 1、星团成员; 2、星系团成员
+cluster model 束状模型
+cluster nebula 团星云
+cluster normalization [星系]团归一化
+cluster of galaxies 星系团
+cluster of nebulae 星云团
+cluster of stars 星团
+cluster parallax 星团视差
+cluster point 丛点
+cluster rotation 1、星团自转; 2、星系团自转
+cluster star 团星
+cluster variable 星团变星
+cluster-type Cepheid 星团造父变星
+cluster-type variable 星团变星
+clustering 成团
+clustering evolution 成团性演化
+clustering of galaxies 星系成团
+clustering of peaks 峰值成团性
+co-altitude 余高度
+co-orbit 共轨
+coacervate 凝聚层
+coaction 公共作用
+coalesced star 并合星
+coalescence 并合
+coarse grain 粗粒
+coarse motion 粗动
+coarse mottle 粗日芒
+coarse-grained distribution function 粗粒分布函数
+coating 镀膜
+cobalt 缩写:Co。钴
+cobalt star 钴星
+cocoon star 茧星
+code translator 译码器
+codeclination 余赤纬; 极距; 去极度
+coded CW waveform 编码连续波波形
+coded aperture imaging 遮幅孔径成像
+coded aperture telescope 编码孔径望远镜
+coded disk 码盘
+coded mask 编码[孔]板; 编码掩模; 编码遮罩
+coded mask imaging 编码掩模成像
+coded mask telescope 编码孔罩望远镜
+coder 编码器
+coding 编码
+coefficient of absorption 吸收系数
+coefficient of amplification 放大系数
+coefficient of autocorrelation 自相关系数
+coefficient of correlation 相关系数
+coefficient of elasticity 弹性系数
+coefficient of expansion 膨胀系数
+coefficient of opacity 不透明系数
+coefficient of reflection 反射系数
+coefficient of refraction 折射系数
+coefficient of selective absorption 选择吸收系数
+coefficient of true selective absorption 真选择吸收系数
+coefficient of viscosity 黏性系数
+coelosphere 天球
+coelostat 定天镜
+coesite 联台址
+coherence 相干性
+coherence bandwidth 相干带宽
+coherence function 相干函数
+coherence length 相干长度
+coherence time 相干时间
+coherence width 相干宽度
+coherency 相干性
+coherent averager 相干平均器
+coherent communication system 相干通信系统
+coherent detector 相干检测器
+coherent emission 相干发射
+coherent light 相干光
+coherent object 相干天体
+coherent radiometer 相干式接收机
+coherent receiver 相干式接收机
+coherent reflection 相干反射
+coherent scattering 相干散射
+coherent synchrotron radiation 相干同步加速辐射
+cohesion 内聚力
+cohesive force 内聚力
+coincidence 符合; 切拍
+coincidence argument 巧合论点
+coincidence detector 符合探测器
+coincidence problem 巧合问题
+colatitude 余纬度; 余黄纬
+cold atom clock 冷原子钟
+cold camera 冷相机
+cold dark matter 缩写:CDM。冷暗物质
+cold dark matter model 缩写:CDM model。冷暗物质模型
+cold emission 冷辐射
+cold front 缩写:CF。冷锋
+cold hot dark matter model 缩写:CHDM。冷热暗物质混合模型
+cold intergalactic medium 冷星系际介质
+cold phase 冷相
+cold plasma 冷等离子体
+cold relic particle 冷遗迹粒子
+cold sky 无源天区
+cold stop 冷光阑
+cold supergiant 冷超巨星
+cold universe 冷宇宙
+cold-gas approximation 冷气体近似
+collapsar 坍缩星
+collapse 坍缩
+collapse fraction 坍缩比例
+collapse simulation 坍缩模拟
+collapse time 坍缩时间
+collapsed object 坍缩天体
+collapsed star 坍缩星
+collapsing cloud 坍缩云
+collapsing instability 坍缩不稳定性
+collapsing star 坍缩星
+collecting area 接收面积
+collecting lens 聚光透镜
+collective interaction 集聚相互作用
+collective plasma 集合等离子体
+colliding galaxy 碰撞星系
+colliding-wind binary 星风碰撞双星
+collimated γ-ray scintillation spectrometer 准直γ射线闪烁谱仪
+collimating device 准直器
+collimating lens 准直透镜
+collimating telescope 准直望远镜
+collimation 准直
+collimation axis 准直轴
+collimation constant 准直常数
+collimation error 准直误差
+collimation lens 准直透镜
+collimation plane 准直面
+collimator 准直器
+collinear point 共线点
+collis 矮丘
+collision 碰撞
+collision broadening 碰撞致宽
+collision cross-section 碰撞截面
+collision ejection hypothesis 碰撞抛射假说
+collision frequency 碰撞频率
+collision hypothesis 碰撞假说
+collision induced instability 碰撞感生不稳定性
+collision induced spectrum 碰撞感生谱
+collision induced transition 碰撞感生跃迁
+collision ionization 碰撞电离
+collision lifetime 碰撞寿命
+collision line broadening 谱线碰撞致宽
+collision loss 碰撞损失
+collision narrowing 碰撞致窄
+collision of the first kind 第一类碰撞
+collision of the second kind 第二类碰撞
+collision orbit 碰撞轨道
+collision parameter 碰撞参数
+collision probability 碰撞概率
+collision process 碰撞过程
+collision radiation 碰撞辐射
+collision rate 碰撞速率
+collision spectroscopy 碰撞光谱学
+collision strength 碰撞强度
+collision term 碰撞项
+collision time 碰撞时间
+collision-free bow shock 无碰撞弓形激波
+collisional bremsstrahlung 碰撞轫致辐射
+collisional broadening 碰撞致宽
+collisional damping 碰撞阻尼
+collisional excitation 碰撞激发
+collisional ionization 碰撞电离
+collisional plasma 碰撞等离子体
+collisional radio source 碰撞射电源
+collisional shock wave 碰撞激波
+collisional turbulence 碰撞湍流
+collisionless Boltzmann equation 无碰撞玻尔兹曼方程
+collisionless damping 无碰撞阻尼
+collisionless gas 无碰撞气体
+collisionless magnetosonic shock wave 无碰撞磁声激波
+collisionless plasma 无碰撞等离子体
+collisionless shock wave 无碰撞激波
+collisionless system 无碰撞系统
+collisionless tearing instability 无碰撞撕裂不稳定性
+collumn diameter 迹厚度
+colocational observation 并址观测
+colongitude 余经度; 余黄经
+color coding 色码
+color contrast 色衬度
+color correction 色改正
+color curve 颜色曲线
+color dependent error 色相关误差
+color development 彩色显影
+color difference photography 色较差照相
+color distortion 色畸变
+color equivalent 色当量
+color excess 缩写:CE。色余
+color factor 色因子
+color filter 滤色器
+color force 色力
+color gradient 色梯度
+color image 彩色图像
+color index 缩写:CI。色指数
+color magnification error 色放大率误差
+color singlet 色单态
+color standard 色标准
+color subcarrier 彩色副载波
+color superconductivity 色超导
+color television 彩色电视
+color temperature 色温度
+color-apparent magnitude diagram 颜色-视星等图
+color-color diagram 双色图
+color-color plot 双色图
+color-luminosity correlation 颜色-光度相关
+color-luminosity diagram 颜色-光度图
+color-luminosity relation 颜色-光度关系
+color-magnitude diagram 缩写:c-m diagram; CMD。颜色-星等图
+color-magnitude effect 颜色-星等效应
+color-magnitude relation 缩写:c-m relation。颜色-星等关系
+color-redshift diagram 颜色-红移图
+color-redshift relation 颜色-红移关系
+colored glass filter 颜色玻璃滤光片
+colorimeter 色度计
+colorimetry 色度测量
+column abundance 柱丰度
+column density 柱密度
+colure 分至圈
+colure and movable equatorial rings 三辰仪
+coma 1、彗发; 2、彗差
+coma corrector 彗差改正器
+coma sidelobe 彗形旁瓣
+comatic aberration 彗差
+comb dekker 德克梳
+comb-like structure 梳状结构
+combination band 组合谱带
+combination line 组合谱线
+combination scattering 组合散射
+combination variable 共生变星
+combined magnitude 合成星等
+combustion clock 火钟
+comes 伴星
+comet 彗星
+comet catalogue 彗星星表
+comet cloud 彗云
+comet designation 彗星命名
+comet family 彗星族
+comet finder 寻彗镜
+comet group 彗星群
+comet halo 彗晕
+comet head 彗头
+comet hunter 寻彗者
+comet intercept mission 彗星拦截器
+comet of Jupiter family 木族彗星
+comet of Neptune family 海王族彗星
+comet of Saturn family 土族彗星
+comet of Uranus family 天王族彗星
+comet radio radiation 彗星射电
+comet seeker 寻彗镜
+comet shower 彗星雨
+comet space probe 彗星空间探测器
+comet tail 彗尾
+comet-like activity 类彗活动
+comet-like dust tail 彗状尘尾
+comet-like galaxy 彗状星系
+comet-like gas tail 彗状气尾
+comet-like object 类彗天体
+comet-like tail 彗状尾
+comet-shaped nebula 彗状星云
+cometary HⅡ region 彗状电离氢区
+cometary astronomy 彗星天文学
+cometary burst 彗暴
+cometary dust 彗尘
+cometary dust tail 尘彗尾
+cometary dynamics 彗星动力学
+cometary flare 彗耀
+cometary gas 彗星气体
+cometary gas tail 气体彗尾
+cometary globule 彗形球状体
+cometary halo 彗晕
+cometary head 彗头
+cometary hydrogen cloud 彗状氢云
+cometary ion 彗星离子
+cometary meteor 彗生流星
+cometary molecule 彗星分子
+cometary nebula 彗状星云
+cometary neutral tail 中性彗尾
+cometary nucleus 彗核
+cometary orbit 彗星轨道
+cometary outburst 彗星爆发
+cometary pause 彗顶
+cometary physics 彗星物理学
+cometary plasma 彗星等离子体
+cometary proplyd 彗状原行星盘
+cometary stream 彗生流星雨
+cometary tail 彗尾
+cometary zone 彗星区
+cometesimal 彗星子
+cometocentric coordinate 彗心坐标
+cometography 《彗星志》
+cometoid 小彗星
+comma-like nebula 逗点状星云
+command and service module 缩写:CSM。指令-服务舱
+command module 缩写:CM。指令舱
+commensurability 通约
+commensurable motion 通约运动
+commensurable orbit 通约轨道
+commensurate orbit 通约轨道
+commercial satellite 商用卫星
+common center of gravity 公共重心
+common envelope 共[有]包层
+common envelope binary 共包层双星
+common establishment 常用潮候时差
+common proper motion 缩写:c.p.m.。共自行
+common proper-motion binary 共自行双星
+common proper-motion pair 共自行星对
+common proper-motion stars 共自行星
+common sign 常用宫
+common year 平年
+common-envelope evolution 共包层演化
+common-envelope star 共包层星
+common-mount interferometer 共机架干涉仪
+common-view observation 共视观测
+communication satellite 通信卫星
+communication with extra-terrestrial intelligence 缩写:CETI。地外智能生物通信
+comoving coordinate 共动坐标
+comoving coordinate system 共动坐标系
+comoving distance 共动距离
+comoving gauge 共动规范
+comoving group 共动星群
+comoving horizon 共动视界
+comoving observer 共动观测者
+comoving radius 共动半径
+comoving separation 共动间隔
+compact HⅡ region 致密电离氢区
+compact X-ray source 致密X射线源
+compact array 射电望远镜密集阵
+compact binary 致密双星
+compact binary coalescence 缩写:CBC。致密双星并合
+compact binary galaxy 致密双重星系
+compact cluster 致密星系团
+compact cluster of galaxy 致密星系团
+compact disc read-only memory 缩写:CD-ROM。只读光盘
+compact elliptical 致密椭圆星系
+compact flare 致密耀斑
+compact galaxy 致密星系
+compact galaxy nucleus 致密星系核
+compact group of galaxies 致密星系群
+compact infrared source 致密红外源
+compact nebula 致密星云
+compact nucleus 致密核
+compact object 致密天体
+compact radio source 致密射电源
+compact source 致密源
+compact star 致密星
+compact symmetric object 缩写:CSO。致密对称天体
+compact γ-ray source 致密γ射线源
+compactification 紧致化
+compaction age 组成年龄
+companion galaxy 卫星星系; 伴星系
+companion star 伴星
+comparative planetology 比较行星学
+comparative sensitivity 相对灵敏度
+comparator 比长仪
+comparison band 比较谱带
+comparison beam 比较束
+comparison image device 像比较装置
+comparison load 比较负载
+comparison residual 比较残差
+comparison spectrum 比较光谱
+comparison star 比较星
+compass 罗盘仪
+compass dial 罗盘日晷
+compensated microphotometer 补偿显微光度计
+compensated pendulum 补偿摆
+compensated receiver 补偿接收机
+compensation colorimeter 补偿色度计
+compensator 补偿器
+compilation catalogue 编纂星表
+compiler 编译程序
+complementary function 补函数
+complete Baumbach corona 完全鲍姆巴赫日冕
+complete absorption 完全吸收
+complete catalogue 完整星表
+complete degeneracy 完全简并性
+complete eclipse 完整食
+complete eclipsing binary 完整食双星
+complete solution 全解
+complete stability 完全稳定性
+complete synchrone 全等时线
+complex 复合体
+complex crater 复杂陨击坑
+complex fringe amplitude 复条纹幅度
+complex group 复杂群
+complex of activity 活动复合体
+complex singularity 复奇点
+complex source 复合源
+complex visibility function 复可见度函数
+component of the four displacements 四游仪
+component of the six cardinal points 六合仪
+component of the three arrangers of time 三辰仪
+component star 子星
+component velocity 分速度
+composite diagram method 复合图法
+composite model 复合模型
+composite particle 合成粒子
+composite spectrum 复合光谱
+composite-spectrum binary 复谱双星
+composition of force 力合成
+composition of the earth 地球组成
+compound eyepiece 复合目镜
+compound field-flattener 复合平场镜
+compound interferometer 复合干涉仪
+compound lens 复合透镜
+compound pendulum 复摆
+compound-grating antenna 复合栅天线
+comprehensive flare index 综合耀斑指数
+compressibility 可压缩性
+compressible fluid 可压缩流体
+compression 压缩
+compression cap 压缩冠
+compression of the earth 地球扁率
+compressional Alfven wave 可压缩阿尔文波
+computational astrophysics 计算天体物理学
+computational celestial mechanics 计算天体力学
+computer control 计算机控制
+computer model 计算机模型
+computer program 计算机程序
+computer simulation 计算机模拟
+computer-controlled telescope 计算机控制望远镜
+computerized simulation 计算机模拟
+computerized telescope 程控望远镜
+computing method 计算方法
+computing technique 计算技术
+computus 计算表册
+concave grating 凹光栅
+concave lens 凹透镜
+concave mirror 凹镜
+concavity 凹度
+concavo-convex lens 凹凸透镜
+conceal 伏
+concentration 聚集度
+concentration class 聚集度
+concentration index 聚集指数
+concentration of stress 应力集中
+concentration parameter 聚集参数
+concentric eclipse 同心食
+concordance model 协调模型
+condensation 凝聚区; 凝聚物
+condensation energy 凝聚能
+condensation point 聚点
+condensation region 凝聚区
+condensed star 凝聚星
+condenser 聚光器
+condensing lens 聚光透镜
+condition equation 条件方程
+conditional luminosity function 条件光度函数
+conditional mass function 条件质量函数
+conditional multiplicity function 条件多重度函数
+conditional stability 条件稳定性
+conditionally periodic function 条件周期函数
+conditionary periodic motion 条件周期运动
+conductance 电导
+conduction 传导
+conduction band 导带
+conduction flux 传导通量
+conductivity 电导率
+conductor 导体
+cone 锥
+confidence 置信度
+confidence level 置信级
+confidence limit 置信限
+configuration 组态; 位形; 行星动态
+configuration mixing 组态混合
+configuration space 构形空间
+confinement 约束
+confocal ellipsoidal coordinate 共焦椭球坐标
+confocal lens 共焦透镜
+conformal Newtonian gauge 共形牛顿规范
+conformal diagram 共形图
+conformal projection 正形投影
+conformal structure 共形结构
+conformal time 共形时间
+conformal transformation 共形变换
+confusion level 致淆电平
+confusion noise 致淆噪声
+conglomeration 堆集
+conic section 圆锥截线
+conical nebula 锥形星云
+conical point 锥点
+conical spiral feed 圆锥螺旋馈源
+conjugate focus 共轭焦点
+conjugate point 共轭点
+conjunction 合
+conjunction in ecliptical longitude 黄经合
+conjunction in right ascension 赤经合
+connected region 连通区域
+connected-element interferometer 联线干涉仪
+connected-element radio interferometry 缩写:CERI。联线射电干涉测量
+conoid 劈锥曲面
+consecutive collision orbit 相邻碰撞轨道
+consecutive number 相邻数
+conservation 守恒
+conservation law 守恒定律
+conservation of angular momentum 角动量守恒
+conservation of energy 能量守恒
+conservation of mass 质量守恒
+conservation of mass-energy 质能守恒
+conservation of momentum 动量守恒
+conservation of vorticity 涡度守恒
+conservative field 保守场
+conservative force 保守力
+conservative process 守恒过程
+conservative scattering 守恒散射
+conservative system 守恒系
+conserved quantity 守恒量
+consistence 相容性
+consistency 相容性
+console 控制台; 支架
+constancy 不变性
+constant 常数; 恒量
+constant force 恒力
+constant of aberration 光行差常数
+constant of apsidal motion 拱线运动常数
+constant of gravitation 引力常数
+constant of motion 运动常数
+constant of nutation 章动常数
+constant of precession 岁差常数
+constant of refraction 折射常数
+constant vector field 常矢量场
+constellation 星座
+constituent 组成
+constituent day 潮汐日
+constraint 约束
+constraint model 约束模型
+constructive interference 相长干涉
+consumption rate 消耗率
+contact 相切; 接触
+contact binary 相接双星
+contact chronometer 接触时计
+contact copying 接触复制法
+contact discontinuity 接触间断面
+contact drum 接触鼓
+contact micrometer 接触测微计
+contact system 相接双星
+contact transformation 接触变换
+contact width 接触宽度
+continental block 大陆块
+continental drift 大陆漂移
+continental movement 大陆漂移
+continental tide 陆潮
+continuity condition 连续性条件
+continuity equation 连续性方程
+continuous absorption 连续吸收
+continuous absorption coefficient 连续吸收系数
+continuous background 连续背景
+continuous contour 连续轮廓图
+continuous creation 连续创生
+continuous distribution 连续分布
+continuous emission 连续谱发射
+continuous filled-aperture 连续满面孔径
+continuous filled-aperture array 连续满面天线阵
+continuous medium 连续介质
+continuous opacity 连续不透明度
+continuous radiation 连续辐射
+continuous spectrum 连续谱
+continuous wave 缩写:CW。连续波
+continuum 连续区; 连续谱
+continuum burst 连续谱爆发
+continuum emission 连续谱发射
+continuum fringe visibility 连续谱源条纹可见度
+continuum radiation 连续谱辐射
+continuum receiver 连续谱接收机
+continuum source 连续谱源
+contour 轮廓; 等高线; 恒值线
+contour diagram 轮廓图
+contour line 轮廓线; 等高线; 恒值线
+contour map 轮廓图
+contour mapping 轮廓绘制
+contracting model 收缩宇宙模型
+contracting universe 收缩宇宙
+contraction 收缩
+contraction age 收缩年龄
+contraction hypothesis 收缩假说
+contraction of tensor 张量缩并
+contraction phase 收缩阶段
+contragradience 反步; 逆步
+contrary months 六合
+contrast 反差; 衬度; 反衬
+contrast coefficient 反衬系数
+contrast developer 强反差显影剂
+contrast factor 反衬因子
+contrast of fringes 条纹反衬度
+contrast photometer 对比光度计
+contravariant component 逆变分量
+contravariant index 逆变指标
+contravariant vector 逆变矢量
+control 控制
+control azimuth 控制方位
+control device 控制装置
+control latitude 控制纬度
+control levelling 校核水准测定
+control range 控制范围
+control system 控制系统
+control unit 控制器
+controller 控制器
+conus density 锥体密度
+convection 对流
+convection cells 对流元
+convection current 对流气流
+convection instability 对流不稳定性
+convection zone 对流层; 对流区
+convective cell 对流元
+convective core 对流核
+convective derivative 对流导数
+convective envelope 对流包层
+convective equilibrium 对流平衡
+convective instability criterion 对流不稳定性判据
+convective mixing 对流混合
+convective operator 对流算子
+convective overshooting 对流过冲
+convective overturn time 对流翻转时间
+convective region 对流层; 对流区
+convective shell 对流壳
+convective transfer 对流转移
+convective zone 对流层; 对流区
+conventional celestial reference system 缩写:CCRS。习用天球参考系
+conventional inertial system 缩写:CIS。习用惯性系
+conventional terrestrial reference system 缩写:CTRS。习用地球参考系
+conventional terrestrial system 缩写:CTS。习用地面参考系
+convergence 汇聚度
+convergency 汇聚度
+convergent lens 聚光透镜
+convergent mirror 聚光镜
+convergent point 会聚点
+convergent point method 汇聚点方法
+converging beam 会聚波束
+converging lens 聚光透镜
+converging magnetic mirror 会聚磁镜
+converging mirror 聚光镜
+converse 转换
+conversion 转换; 反演
+conversion fraction 转换系数
+conversion gain coefficient 变频增益系数
+conversion of coordinates 坐标变换
+conversion of time 时间换算; 时间反演
+conversion transconductance 变频跨导
+convex lens 凸透镜
+convexity 凸度
+convexo-concave lens 凸凹透镜
+convolution 卷积
+convolutional neural network 缩写:CNN。卷积神经网络
+cool component 冷子星
+cool dwarf 冷矮星
+cool giant 冷巨星
+cool star 冷星
+cool subdwarf 冷亚矮星
+cool subgiant 冷亚巨星
+cool supergiant 冷超巨星
+cooled Schottky-barrier mixer 致冷肖特基位垒混频器
+cooled camera 制冷相机
+cooled parametric amplifier 致冷参量放大器
+cooling catastrophe 冷却灾难
+cooling effect 冷却效应
+cooling flow 冷流; 冷却流
+cooling flow galaxy 冷流星系
+cooling frequency 冷却频率
+cooling function 冷却函数
+cooling rate 冷却率
+cooling time 冷却时间
+coorbital satellite 共轨卫星
+coordinate axis 坐标轴
+coordinate basis 坐标基
+coordinate direction 坐标方向
+coordinate measuring instrument 坐标量度仪
+coordinate of the pole 地极坐标
+coordinate perturbation 坐标摄动
+coordinate system 坐标系
+coordinate time 坐标时
+coordinate transformation 坐标变换
+coplanar orbits 共面轨道
+coplanarity 共面性
+copper 缩写:Cu。铜
+coprocessor 协处理器
+core 核; 地核
+core collapse 核区坍缩
+core collapse supernova 核心坍缩超新星
+core fitting method 核区拟合法
+core of a line 线心
+core radius 核半径
+core-accretion theory 核心吸积理论
+core-collapse progenitor 核坍缩前身天体
+core-dominated quasar 缩写:CDQ。核主导类星体
+core-halo galaxy 核晕星系
+core-halo model 核晕模型
+core-halo source 核晕源
+corequake 核震
+corona 冕; 日冕; 星冕; 华
+corona of galaxy 星系冕
+corona of the Galaxy 银河系冕
+coronagraph 日冕仪
+coronagraphic camera 日冕照相机
+coronal abundance 日冕丰度
+coronal active region 日冕活动区
+coronal activity 日冕活动; 星冕活动
+coronal arch 冕拱
+coronal bright point 日冕亮点
+coronal bubble 冕泡
+coronal cavity 冕穴; 冕腔
+coronal cloud 冕云
+coronal condensation 日冕凝区; 日冕凝聚物
+coronal continuum 日冕连续谱
+coronal dividing line 星冕分界线
+coronal electrophotometer 日冕光电光度计
+coronal enhancement 日冕增强区
+coronal equilibrium 日冕平衡
+coronal fan 冕扇
+coronal forbidden line 日冕禁线
+coronal gas 冕区气体
+coronal green line 日冕绿线; 星冕绿线
+coronal heating 日冕加热
+coronal helmet 冕盔
+coronal hole 冕洞
+coronal light 冕光
+coronal line 日冕谱线
+coronal loop 冕环
+coronal magnetic energy 冕区磁能
+coronal mass ejection 缩写:CME。日冕物质抛射
+coronal optical polarization 日冕光学偏振
+coronal oscillation 冕震
+coronal plasma 日冕等离子体
+coronal plume 冕羽
+coronal prominence 冕珥
+coronal rain 冕雨
+coronal ray 日冕射线
+coronal red line 日冕红线; 星冕红线
+coronal streamer 冕流
+coronal sunspot prominence 黑子冕珥
+coronal transient 日冕瞬变
+coronal whip 冕鞭
+coronal wind 冕风
+coronascope 日冕观测镜
+coronium [上气下免]
+coronograph 日冕仪
+coronographic camera 日冕照相机
+corotating enclosure 共转围罩
+corotation 共转; 正转; 顺转
+corotation circle 共转圈
+corotation electric field 正转电场
+corotation radius 共转半径
+corotation resonance 共转共振
+corotation zone 共转带
+corotational departure 顺自转方向发射
+corotational torque 共旋力矩
+corpuscle 微粒
+corpuscular beam 微粒束
+corpuscular cloud 微粒云
+corpuscular eclipse 微粒食
+corpuscular emission 微粒发射
+corpuscular radiation 微粒辐射
+corpuscular stream 微粒流
+corrected area 改正面积
+corrected establishment 改正潮候时差
+correcting lens 改正透镜
+correcting plate 改正片; 改正板
+correction 改正; 校正
+correction coefficient 改正系数
+correction screw 改正螺旋
+correction to time signal 时号改正数
+corrector 改正镜; 改正器
+corrector cell 改正镜室
+corrector plate 改正片; 改正板
+correlated double-sampling 相关双采样
+correlation 相关
+correlation analysis 相关分析
+correlation coefficient 相关系数
+correlation detection 相关探测
+correlation function 相关函数
+correlation function in redshift space 红移空间相关函数
+correlation function of clusters 星系团相关函数
+correlation function of galaxies 星系相关函数
+correlation function of halo 晕相关函数
+correlation function of quasars 类星体相关函数
+correlation interferometer 相关干涉仪
+correlation length 相关长度
+correlation receiver 相关接收机
+correlator 相关器
+correlogram 相关图
+correspondence 对应
+correspondence between man and heaven 天人合一
+corrugated horn 波纹喇叭
+corrugation 褶皱
+cosecant law 余割律
+cosine law 余弦律
+cosine rule 余弦律
+cosine wave 余弦波
+cosmi microwave background experiment 缩写:CMB experiment。宇宙微波背景实验装置
+cosmic Mach number 宇宙马赫数
+cosmic X-ray background 宇宙X射线背景
+cosmic X-ray burst 宇宙X射线暴
+cosmic X-ray burster 宇宙X射线暴源
+cosmic X-ray source 宇宙X射线源
+cosmic absorption 宇宙吸收
+cosmic abundance 宇宙丰度
+cosmic acceleration 宇宙加速
+cosmic aerodynamics 宇宙气体动力学
+cosmic age 宇宙年龄
+cosmic background 宇宙背景
+cosmic background radiation 宇宙背景辐射
+cosmic brightness 宇宙亮度
+cosmic catastrophe 宇宙灾变
+cosmic censorship 宇宙监察
+cosmic chemistry 宇宙化学
+cosmic cloud 宇宙云
+cosmic constant 宇宙学常数
+cosmic deceleration 宇宙减速
+cosmic density field 宇宙密度场
+cosmic density parameter 宇宙密度参数
+cosmic distance 宇宙距离
+cosmic distance ladder 宇宙距离阶梯
+cosmic dust 宇宙尘
+cosmic electrodynamics 宇宙电动力学
+cosmic emission 宇宙辐射
+cosmic expansion 宇宙膨胀
+cosmic experiment 宇宙实验
+cosmic frame 宇宙坐标架
+cosmic gasdynamics 宇宙气体动力学
+cosmic gusher 宇宙喷射源
+cosmic hole 宇宙空洞
+cosmic horizon 宇宙视界
+cosmic infrared background 缩写:CIB。宇宙红外背景
+cosmic jet 宇宙喷流
+cosmic light 宇宙光
+cosmic light horizon 宇宙光子视界
+cosmic magnetic field 宇宙磁场
+cosmic magnetohydrodynamics 宇宙磁流体力学
+cosmic mean 宇宙均值
+cosmic mean density 宇宙平均密度
+cosmic microwave background 缩写:CMB。宇宙微波背景
+cosmic microwave background anisotropy 缩写:CMB anisotropy。宇宙微波背景各向异性
+cosmic microwave background polarization 缩写:CMB polarization。宇宙微波背景偏振; 宇宙微波背景极化
+cosmic microwave background radiation 缩写:CMBR。宇宙微波背景辐射
+cosmic microwave background spectral distortion 缩写:CMB spectral distortion。宇宙微波背景谱畸变
+cosmic microwave radiation 缩写:CMR。宇宙微波辐射
+cosmic noise 宇宙噪声
+cosmic physics 宇宙物理学
+cosmic plasma 宇宙等离子体
+cosmic pressure 宇宙压力
+cosmic radiation 宇宙辐射
+cosmic radio astronomy 宇宙射电天文学
+cosmic radio radiation 宇宙射电
+cosmic radio source 宇宙射电源
+cosmic radio wave 宇宙射电波
+cosmic ray 宇宙线
+cosmic ray abundance 宇宙线丰度
+cosmic ray age 宇宙线年龄
+cosmic ray anisotropy 宇宙线各向异性
+cosmic ray astronomy 宇宙线天文学
+cosmic ray astrophysics 宇宙线天体物理
+cosmic ray background 宇宙线背景
+cosmic ray burst 宇宙线暴
+cosmic ray event 宇宙线事件
+cosmic ray exposure age 宇宙线曝射法年龄
+cosmic ray exposure time 宇宙线曝射时间
+cosmic ray flare 宇宙线耀斑
+cosmic ray shower 宇宙线簇射
+cosmic ray source 宇宙线源
+cosmic ray spectrum 宇宙线谱
+cosmic ray telescope 宇宙线望远镜
+cosmic ray trajectory 宇宙线轨迹
+cosmic redshift 宇宙红移
+cosmic refraction 宇宙大气折射
+cosmic rising 偕日升
+cosmic rocket 宇宙火箭
+cosmic scale factor 宇宙标度因子
+cosmic setting 偕日落
+cosmic shear 宇宙切变
+cosmic singularity 宇宙奇点
+cosmic source 宇宙源
+cosmic spherule 宇宙尘
+cosmic static 宇宙噪声
+cosmic string 宇宙弦
+cosmic texture 宇宙纹形
+cosmic time 宇宙时
+cosmic turbulence 宇宙湍动
+cosmic variance 宇宙方差
+cosmic velocity field 宇宙速度场
+cosmic velocity stage 宇宙速度级
+cosmic virial theorem 宇宙位力定理
+cosmic void 巨洞
+cosmic web 宇宙网
+cosmic yardstick 量天尺
+cosmic year 宇宙年
+cosmic γ-ray background 宇宙γ射线背景
+cosmic γ-ray burst 宇宙γ射线暴
+cosmic γ-ray burster 宇宙γ射线暴源
+cosmic γ-ray source 宇宙γ射线源
+cosmicality 宇宙性
+cosmobiology 宇宙生物学; 天体生物学
+cosmochemistry 宇宙化学; 天体化学
+cosmochronological method 宇宙纪年法
+cosmochronology 宇宙纪年学
+cosmochronometer 宇宙计时器
+cosmogenic activation 宇宙线激活
+cosmogonal theory 天体演化理论
+cosmogoner 天体演化学家
+cosmogonist 天体演化学家
+cosmogony 天体演化学
+cosmographer 宇宙学家
+cosmographist 宇宙学家
+cosmography 宇宙志
+cosmolabe 星盘式测角仪
+cosmological constant 宇宙学常数
+cosmological dimming 宇宙学昏暗
+cosmological dipole 宇宙学偶极矩
+cosmological distance 宇宙学距离
+cosmological distance scale 宇宙学距离尺度
+cosmological effect 宇宙学效应
+cosmological hypothesis 宇宙学假设
+cosmological infall 宇宙学沉降
+cosmological interpretation 宇宙学解释
+cosmological model 宇宙学模型
+cosmological nucleosynthesis 宇宙核合成
+cosmological paradox 宇宙学佯谬
+cosmological parameter 宇宙学参数
+cosmological phase transition 宇宙学相变
+cosmological principle 宇宙学原理
+cosmological redshift 宇宙学红移
+cosmological simulation 宇宙学模拟
+cosmological space-time 宇宙学时空
+cosmological time 宇宙学时间
+cosmological time scale 宇宙学时标
+cosmologist 宇宙学家
+cosmology 宇宙学; 宇宙论
+cosmonaut 宇航员
+cosmonautics 宇航学
+cosmophysics 宇宙物理学
+cosmos 宇宙
+cosmos remote sensing 宇宙遥感
+cosmosophy 宇宙说
+cosmosphere 天球仪
+cosmozoic theory 宇宙生命说
+cosmozoism 宇宙生命说
+cospace 共空间
+cost-aperture analysis 造价-口径分析
+cotangent bundle 余切丛
+cotidal chart 等潮图
+cotidal hour 等潮时
+cotidal map 等潮图
+coude focus 折轴焦点
+coude mounting 折轴装置
+coude reflector 折轴反射望远镜
+coude refractor 折轴折射望远镜
+coude spectrograph 折轴摄谱仪
+coude spectrum 折轴光谱
+coude telescope 折轴望远镜
+count 计数
+count-magnitude relation 计数-星等关系
+countdown 倒计数
+counter 计数器
+counter clockwise 逆时针方向
+counter sun 反日
+counter telescope 计数望远镜
+counter weight 平衡重
+counter weight arm 平衡臂
+counter-Jupiter 太岁; 岁阴
+counter-Jupiter annual system 太岁纪年
+counter-rotating core 反旋核
+counter-rotational departure 反自转发射
+counter-twilight 对日照
+counteraction 反作用
+counterbalance 平衡锤
+counterglow 对日照
+counterpart 对应体
+counterpoise 1、地网; 2、平衡锤
+counting 计数
+counting rate 计数率
+counts in cells 分格计数
+couple 耦合
+coupling 耦合
+coupling constant 耦合常数
+covalent compound 共价化合物
+covariance 协变性; 协方差
+covariance function 协变函数
+covariance matrix 协方差矩阵
+covariance spectrum 协方差谱
+covariant component 协变分量
+covariant derivative 协变导数
+covariant divergence 协变散度
+covariant index 协变指标
+coverage 覆盖度
+coverage function 覆盖函数
+crack 裂缝
+craft 飞行器
+crape ring 暗环
+crater 1、环形山; 2、陨击坑
+crater chain 坑链; 环形山串
+crater cluster 环形山群
+crater counting 环形山计数
+crater floor 环形山底
+cratering 陨击
+craterlet 小环形山
+creation field 缩写:C-field。创生场
+creation operator 产生算符
+creep 频率漂移; 蠕变
+crepuscular arch 曙暮辉弧
+crepuscular rays 曙暮辉
+crescent moon 1、上蛾眉月; 2、蛾眉月
+crescent sun 蛾眉日
+crest 波峰
+crest value 峰值
+crevasse 双峰共振; 裂缝
+crew module 乘员舱
+crisp image 匀边像
+cristobalite 方英石
+criterion 判据
+critical Rayleigh number 临界瑞利数
+critical angle 临界角
+critical argument 临界幅角
+critical constant 临界常数
+critical current 临界电流
+critical density 临界密度
+critical equatorial velocity 临界赤道速度
+critical equipotential lobe 临界等位瓣
+critical equipotential surface 临界等位面
+critical field 临界场
+critical frequency 临界频率
+critical inclination 临界倾角
+critical layer 临界层
+critical line 临界线
+critical mass 临界质量
+critical mass-ratio 临界质量比
+critical mass-to-light ratio 临界质光比
+critical model 临界模型
+critical point 临界点
+critical radius for accretion 临界吸积半径
+critical refraction 临界折射
+critical surface 临界面
+critical surface density 临界面密度
+critical temperature 临界温度
+critical term 临界项
+critical value 临界值
+critical velocity 临界速度
+crochet 磁钩
+cross antenna 十字天线
+cross correlator 互相关器
+cross hair 叉丝
+cross interferometer 十字干涉仪
+cross polarization 交叉偏振
+cross section 截面
+cross spectrum 互谱
+cross wire 叉丝
+cross-axis mounting 十字轴基架
+cross-correlation 互相关
+cross-correlation function 互相关函数
+cross-correlation interferometer 互相关干涉仪
+cross-correlation method 互相关法
+cross-correlation receiver 互相关接收器
+cross-correlation spectrometer 互相关频谱仪
+cross-correlation technique 互相关法
+cross-disperser 横向色散器
+cross-disperser prism 横向色散棱镜
+cross-match 交叉匹配
+cross-power spectrum 互功率谱
+cross-spectrum analyzer 互谱分析器
+cross-staff 直角照准仪; 十字杆
+cross-talk 串扰
+cross-track component 垂迹分量
+cross-track error 垂迹误差
+cross-wire micrometer 十字丝测微计
+crossed Nicols 正交尼科尔棱镜
+crossed lens 最小球差单透镜
+crossed-Dragone telescope 德拉戈相交式望远镜
+crossed-field 交叉场
+crossed-grating antenna 十字栅天线
+crossing time 跨越时间
+crossover effect 跨越效应
+crossover time 跨越时间
+crown flint glass 冕火石玻璃
+crown glass 冕牌玻璃
+cruise 巡航
+crust movement 地壳运动
+crust of the earth 地壳
+crust-mantle boundary 地壳-地幔边界
+crust-mantle system 地壳-地幔系统
+crustal block 地壳块
+crustal deformation 地壳变形
+crustal dynamics 地壳动力学; 星壳动力学
+crustal spreading 地壳扩张
+cryocooler 低温制冷机
+cryogen 制冷剂; 冷却剂
+cryogenic camera 致冷照相机
+cryogenic cooling 致冷
+cryogenic system 低温制冷系统
+cryogenic telescope 低温望远镜
+cryogenically-cooled parametric amplifier 低温致冷参量放大器
+cryogenics 低温学
+cryostat 低温恒温器
+cryovolcano 冰火山
+crystal controlled oscillator 晶控振荡器
+crystal lattice 晶格
+crystal mixer 晶体混频器
+crystalline heaven 水晶天
+crystallite 微晶
+crystallographic axis 晶轴
+cubesat 立方星
+cubewano 经典柯伊伯带天体
+cubic distortion 三次畸变
+cubic parsec 立方秒差距
+culminant star 中天星; 中星
+culmination 中天
+cumulative distribution function 缩写:CDF。累积分布函数
+cumulative error 累积误差
+cumulative shift 累积位移
+cumulative stress 累积应力
+cupola 圆顶; 圆顶室
+curium 缩写:Cm。锔
+curl 旋度
+current density 流密度
+current interruption 流中断
+current sheet 电流片; 中性片
+current-free field 无流场
+current-sheath model 流鞘模型
+curtate distance 黄道面投影距离
+curvaton 曲率子
+curvature 曲率
+curvature constant 曲率常数
+curvature correction 曲率改正
+curvature index 曲率指数
+curvature of field 场曲
+curvature of parallel 纬线弯曲
+curvature of space 空间曲率
+curvature of space-time 时空曲率
+curvature of the universe 宇宙曲率
+curvature perturbation 曲率扰动
+curvature radiation 曲率辐射
+curvature scalar 曲率标量
+curvature wavefront sensor 曲率波前传感器
+curve fitting 曲线拟合
+curve of growth 生长曲线
+curve of zero velocity 零速度线
+curved fan 曲扇状流
+curved field 弯曲场
+curved grating 曲面光栅
+curved jet 弯曲喷流
+curved space 弯曲空间
+curved spectrum 弯曲频谱
+curved surface 曲面
+curved tail 弯曲彗尾
+curvilinear coordinate 曲线坐标
+curvilinear motion 曲线运动
+cushion distortion 枕形畸变
+cusp 月角; 尖点
+cusp cap 金星角
+cusp catastrophe 尖峰突变
+cusp-core degeneracy 尖峰-核简并性
+cut-off error 截断误差
+cut-off frequency 截止频率
+cut-off rigidity 截断刚度
+cyanoacetylene 丙炔腈
+cyanoethylene 丙烯腈
+cyanogen band 氰带
+cyanogen line 氰线
+cyanogen radical 氰基
+cyanometry 天色测量
+cycle of the sun 太阳周
+cycle theorem 循环定理
+cycle-amplitude relation 周幅关系
+cyclic model 循环模型
+cyclic period 循环周期
+cyclic transition 循环跃迁
+cyclic universe 循环宇宙
+cyclical variability 周期性变化
+cyclicity 周期性
+cyclone 气旋
+cyclotron absorption 回旋加速吸收
+cyclotron damping 回旋加速阻尼
+cyclotron emission 回旋加速发射
+cyclotron frequency 回旋加速频率
+cyclotron harmonic wave 回旋加速谐波
+cyclotron instability 回旋加速不稳定性
+cyclotron maser 回旋加速微波激射
+cyclotron radiation 回旋加速辐射
+cyclotron resonance 回旋共振
+cyclotron scattering 回旋散射
+cyclotron turnover 回旋频谱反转
+cylindrical coordinate 柱坐标
+cylindrical coordinate system 柱坐标系
+cylindrical equilibrium 柱体平衡
+cylindrical harmonics 圆柱调和函数
+cylindrical lens 柱面透镜
+cylindrical paraboloid radio telescope 柱形抛物面射电望远镜
+cylindrical wave 柱面波
+d'Alembert characteristic 达朗贝尔性质
+d'Alembert crater 达朗贝尔环形山
+d'Alembert's principle 达朗贝尔原理
+d.c. comparison radiometer 直流比较辐射计
+d.c. compensation 直流补偿
+dE galaxy 全称:dwarf elliptical galaxy。矮椭圆星系
+dI galaxy 全称:dwarf irregular galaxy。矮不规则星系
+dMe star 全称:dwarf Me star。Me型矮星
+dS 全称:de Sitter space。德西特空间
+dSph 全称:dwarf spheroidal galaxy; spheroidal dwarf galaxy。矮椭球星系
+da Vinci crater 达·芬奇环形山
+daily mean 日平均
+daily motion 日运动
+daily range 日差程
+daily rate 日速
+damped Lyman α system 缩写:DLA。阻尼莱曼α系统
+damped harmonic motion 阻尼谐振动
+damped oscillation 阻尼振荡
+damped wave 阻尼波
+damping 阻尼; 衰减
+damping broadening 阻尼致宽
+damping coefficient 阻尼系数
+damping constant 阻尼常数
+damping decrement 阻尼减幅
+damping radiation 阻尼辐射
+damping rate 阻尼速率
+damping term 阻尼项
+damping time 阻尼时间
+damping wing 阻尼翼
+dark Fraunhofer line 夫琅和费暗线
+dark Galactic nebula 银河暗星云
+dark adaptation 暗适应
+dark age 黑暗时期
+dark band 暗带
+dark belt 暗带
+dark burst 暗暴
+dark cloud 暗云
+dark companion 暗伴天体; 暗伴星; 暗伴星系
+dark component 暗成分
+dark current 暗[电]流
+dark diffuse nebula 暗弥漫星云
+dark dome 暗拱
+dark dust lane 暗尘带
+dark dust nebula 暗尘云
+dark energy 暗能量
+dark energy model 暗能量模型
+dark energy survey 缩写:DES。暗能量巡天
+dark field 暗[视]场
+dark flocculus 暗谱斑
+dark galaxy 暗星系
+dark halo 暗晕
+dark halo crater 暗晕环形山
+dark lane 暗带
+dark limb 暗边缘
+dark line 暗线
+dark matter 暗物质
+dark matter annihilation 暗物质湮灭
+dark matter candidate 暗物质候选体
+dark matter decay 暗物质衰变
+dark matter halo 暗物质晕
+dark matter indirect detection 暗物质间接探测
+dark matter search 暗物质搜寻
+dark matter star 暗物质星
+dark mottle 暗日芒
+dark nebula 暗星云
+dark of the moon 新月暗期; 无月光期
+dark star 暗星
+dark γ-ray burst 暗γ暴
+dark-eclipsing variable 暗食变星
+darkening towards the limb 临边昏暗
+darkness 黑度
+darkroom 暗室
+data 数据; 资料
+data acquisition 数据采集
+data analysis 数据分析
+data capacity 信息容量
+data center 信息中心
+data compression 数据压缩
+data cube 数据立方
+data display 数据显示
+data filtering 数据滤波
+data handling 数据处理
+data intensive astronomy 数据密集型天文学
+data inversion 数据反演
+data presentation 数据显示
+data processing 数据处理
+data processor 数据处理机
+data recording 数据记录
+data reduction 数据归算
+data retrieval 数据回收
+data simulation 数据模拟
+data storage 数据存储
+data-relay satellite 缩写:DRS。数据转播卫星
+database 数据库
+date line 日界线
+dating 纪年; 计年
+dating method 纪年法
+datum 基准面
+datum level 基准面
+datum of elevation 高程基准面
+daughter isotope 子[体]同位素
+daughter substance 子系物质
+dawn side 黎明侧
+day 日; 昼
+day arc 昼弧
+day break 拂晓
+day glow 日辉
+day light 日光
+day number 日数
+day of autumnal equinox 秋分日
+day of summer solstice 夏至日
+day of vernal equinox 春分日
+day of winter solstice 冬至日
+day of year 积日
+day range 日变化
+day side 白昼侧
+day star 晨星; 启明星
+day value 白天值
+daylight fireball 白昼火流星
+daylight meteor 白昼流星
+daylight saving meridian 夏令子午线
+daylight saving noon 夏令正午
+daylight saving time 缩写:DST。夏令时
+daylight stream 白昼流星群
+daytime meteor 白昼流星
+daytime stream 白昼流星群
+daytime train 白昼流星余迹
+daytime transparency 白昼天空透明度
+db galaxy 全称:dumbbell galaxy。哑铃状星系
+de Broglie frequency 德布罗意频率
+de Broglie wave 德布罗意波
+de Broglie wavelength 德布罗意波长
+de Cheseaux's comet 德塞瑟彗星
+de Laval nozzle 拉瓦尔型喷嘴; 渐缩渐阔喷嘴
+de Sitter model 德西特模型
+de Sitter space 缩写:dS。德西特空间
+de Sitter universe 德西特宇宙
+de Vaucouleurs classification 德沃古勒分类
+de Vaucouleurs crater 德沃古勒陨击坑
+de Vaucouleurs radius 德沃古勒半径
+de Vaucouleurs' law 德沃古勒定律
+de Vaucouleurs-Sandage classification 德沃古勒-桑德奇分类
+deactivation constant 钝化常数
+dead reckoning 盲航法
+dead time 死区时间
+death date 坠落时间
+death rate 死亡率
+debris 残骸
+decadent wave 减幅波
+decameter activity 十米波活动
+decameter continuum 十米波连续谱
+decameter wave 十米波
+decametric radiation 十米波辐射
+decametric wave 十米波
+decan 黄道十度分度
+decans 旬星
+decay coefficient 衰变系数
+decay constant 衰变常数
+decay curve 衰变曲线
+decay date 衰变日期
+decay instability 衰变不稳定性
+decay mode 衰变模式
+decay phase 衰变阶段
+decay process 衰变过程
+decay product 衰变产物
+decay rate 衰变率
+decay scheme 衰变图
+decay time 衰变时间
+decaying dark matter 衰变暗物质
+decaying wave 减幅波
+deceleration parameter 减速参数; 减速因子
+deceleration radiation 减速辐射
+decentering distortion 偏心畸变
+decimal counter 十进位计数器
+decimal exponent 缩写:dex。岱[克斯]; 底拾; 对数增量
+decimeter activity 分米波活动
+decimeter continuum 分米波连续谱
+decimeter wave 分米波
+decimetric radiation 分米波辐射
+decimetric wave 分米波
+decipherer 译码器
+declination 赤纬
+declination axis 赤纬轴
+declination circle 1、赤纬圈; 2、赤纬度盘
+declination compass 赤纬计; 磁偏仪
+declination parallel 1、等纬圈; 2、赤纬圈
+declination setting circle 赤纬度盘
+decline phase 下降阶段
+declining phase 衰减阶段
+declinometer 赤纬计; 磁偏仪
+decoder 译码器
+decoherence 退相干
+decoloration 消色
+decomposition 分解
+decompression wave 减压波
+deconvolution 消卷积; 解卷积; 退卷积
+deconvolution image 消旋图像
+decoupling 退耦
+decoupling epoch 退耦期
+decoupling era 退耦期
+decrement 减幅
+decremental arc 渐缩环形山弧
+decremental chain 渐缩环形山链
+decrescent 亏月
+decuplet 十重线
+dedisperser 消色散器; 消频散器
+deep 深度; 海沟
+deep earthquake 深震
+deep focus 深震源
+deep focus earthquake 深源震
+deep focus shock 深源震
+deep inelastic scattering 深度非弹性散射
+deep sky 深空
+deep space 深空
+deep-depletion CCD 深耗尽型CCD
+deep-field observation 深天区观测; 深场观测
+deep-sky object 深空天体
+deep-sky phenomena 深空天象
+deeply embedded infrared source 缩写:DEIS。深埋红外源
+deexcitation 去激发; 退激[发]
+deexcitation cross-section 去激发截面
+defect 缺陷; 亏损
+defect of illumination 圆面未照亮区
+deferent 均轮
+deferred charge 滞后电荷
+deficit angle 缺陷角
+defining constant 定义常数
+definite designation 正式命名; 正式编号
+definition of image 像清晰度
+definitive orbit 既定轨道
+definitive time 确定时
+definitive weight 确定权
+deflagration 暴燃
+deflagrationwave 暴燃波
+deflecting force 偏转力
+deflecting magnet 致偏磁体
+deflection angle 偏转角
+deflection of light 光线偏折
+deflection of vertical 垂线偏差
+defocused reflector 离焦反射镜
+defocussing 离焦
+deformable body 可变形体
+deformable mirror 变形镜
+deformation 形变
+deformation tensor 形变张量
+degeneracy 简并
+degeneracy collapse 简并坍缩
+degeneracy pressure 简并压
+degenerate brown dwarf 缩写:D-BD。简并褐矮星
+degenerate configuration 简并组态
+degenerate dwarf 简并矮星
+degenerate electron gas 简并电子气
+degenerate electron pressure 电子简并压
+degenerate gas 简并气体
+degenerate matter 简并物质
+degenerate neutron pressure 简并中子压力
+degenerate parametric amplifier 简并参量放大器
+degenerate plasma 简并等离子体
+degenerate pressure 简并压
+degenerate star 简并星
+degenerate state 简并态
+degenerate stellar configuration 简并恒星组态
+degenerate system 简并系
+degeneration 简并化
+degree 1、度; 2、次; 级
+degree of accuracy 精确度
+degree of arc 度
+degree of concentration 中聚度
+degree of confidence 置信度
+degree of dispersion 弥散度
+degree of excitation 激发度
+degree of freedom 自由度
+degree of ionization 电离度
+degree of obscuration 食分
+degree of polarization 偏振度
+degree of vacuum 真空度
+degree of wetness 湿度
+deionization 去电离
+delay ambiguity function 延迟模糊度函数
+delay beam 延迟波束
+delay fringe frequency 延迟条纹率
+delay function 延迟函数
+delay line 延迟线
+delay resolution 延迟分辨率
+delay signal 滞后信号
+delay time 时延
+delay tracker 延迟跟踪器
+delay tracking 延迟跟踪
+delay-Doppler mapping 延迟多普勒成图
+deluding star 孛星
+demodulation 解调制
+demodulator 解调制器
+dense array 密集阵列
+dense cloud 稠密云
+dense core 稠密云核
+dense flint 重火石玻璃
+dense interstellar dust cloud 缩写:DIDC。稠密星际尘云
+dense matter 稠密物质
+dense plasma 稠密等离子体
+dense star cluster 稠密星团
+densified pupil imaging 密瞳成像法
+densimeter 密度计
+densitometer 密度计
+density arm 密度臂
+density correlation function 密度相关函数
+density cusp 密度尖峰
+density distribution 密度分布
+density drift instability 密度漂移不稳定性
+density evolution 密度演化
+density excess 密度超
+density fluctuation 密度起伏
+density function 密度函数
+density hole 密度空洞
+density matrix 密度矩阵
+density maxima 密度最大值
+density of ionization 电离密度
+density parameter 密度参数
+density peak 密度峰
+density perturbation 密度扰动
+density profile 密度轮廓
+density threshold 密度阈值
+density variation 密度变化
+density wave 密度波
+density-exposure curve 密度-曝光曲线
+density-wave model 密度波模型
+density-wave theory 密度波理论
+denudation 剥蚀
+departure 偏差
+departure point 起标点
+dependence 相关
+dependence method 依数法
+dependent equatorial coordinate 时角赤道坐标
+dependent equatorial coordinate system 时角赤道坐标系
+depleted p-channel field effect transistor pixel sensor 缩写:DEPFET pixel sensor。DEPFET像元传感器
+depletion 耗尽
+depolarization 消偏振
+depolarizer 消偏振镜
+deposition 淀积
+depressed pole 下天极
+depression 俯角; 下降
+depth 深度
+depth equation 深度方程
+depth of focus 焦深
+depth of penetration 贯穿深度
+depth relation 深度关系
+dereddening 红化改正
+derived constant 推导常数
+derotator 消转器
+descending branch 下降支
+descending node 降交点
+descension 下降
+descriptive astronomy 通俗天文学
+design directivity 设计方向性
+designation of asteroids 小行星命名; 小行星编号
+designation of comets 彗星命名
+designation of novae 新星命名; 新星编号
+designation of supernovae 超新星命名; 超新星编号
+designation of variable stars 变星命名; 变星编号
+desorption 退吸
+despinning 自旋减速
+destabilizing effect 减稳效应
+destruction 毁坏
+destructive interference 相消干涉
+detached binary 不接双星
+detached system 不接双星
+detailed balance 细致平衡
+detailed balancing 细致平衡
+detectability 可探测性
+detection 探测; 检测; 检波
+detection limit 探测极限
+detective quantum efficiency 缩写:DQE。探测量子效率
+detectivity 探测能力; 探测率
+detector 探测器; 检波器
+detector array 探测器阵
+determination of orbit 定轨; 轨道测定
+determinative star 距星
+determinative star distance 入宿度
+determining function 生成函数
+detonating fireball 发声火流星
+detonation 爆震
+detonation wave 爆震波
+deuterium 氘
+deuterium bottleneck 氘瓶颈
+deuterium era 氘时期
+deuterium line radiation 氘线辐射
+deuteron 氘核
+deuton 氘核
+developer 显影剂
+developing agent 显影剂
+development 显影; 发展
+deviant 偏差值
+deviation 偏差; 偏离
+deviation of light 光偏差
+deviation of the vertical 垂线偏差
+device 器件; 装置
+dew-cap 露罩
+dew-shield 露罩
+dex 全称:decimal exponent。岱[克斯]; 底拾; 对数增量
+dextrogyrate component 右旋子线
+dextrorotation 右旋
+diagenesis 成岩作用
+diagnostic diagram 诊断图
+diagnostics 诊断法
+diagonal eyepiece 对角目镜
+diagonal horn 对角喇叭
+diagonal mirror 对角镜
+diagonal tensor 对角张量
+dial 1、度盘; 2、日晷
+diameter 直径
+diamond antenna 菱形天线
+diamond ring 金刚石环
+diamond-ring effect 金刚石环效应
+diaphaneity 透明度
+diaphragm 光阑
+diaphragm aperture 光阑孔径
+diapositive 反底片
+diastrophism 地壳变动
+diatomic molecule 双原子分子
+dichotomy 弦; 半月
+dichroic beam-splitter 双色分束器
+dichroic extinction 双色消光
+dichroic filter 双色滤光器
+dichroic mirror 双色镜
+dichroic-cross image divider 十字形双色分像器
+dielectric constant 介电常数
+dielectronic recombination 双电子复合
+difference 差; 差分
+difference frequency 差频
+difference of li 里差
+difference pattern 差值方向图
+differentiable manifold 微分流形
+differential Doppler 较差多普勒
+differential aberration 较差光行差
+differential astrometry 较差天体测量
+differential atmosphere absorption 较差大气吸收
+differential catalogue 较差星表
+differential correction 较差改正
+differential cross-section 微分截面
+differential delay 较差时延
+differential determination 较差测定
+differential emission measure 缩写:DEM。微分发射度
+differential energy distribution 微分能量分布
+differential energy flux 较差能流
+differential flexure 较差弯沉
+differential galactic rotation 银河系较差自转
+differential measurement 较差测量
+differential microwave radiometer 缩写:DMR。较差微波辐射计
+differential nutation 较差章动
+differential observation 较差观测
+differential photographic method 较差照相方法
+differential photometry 较差测光
+differential precession 较差岁差
+differential radiometer 差分辐射计
+differential reddening 较差红化
+differential refraction 较差折射
+differential rotation 较差自转
+differential scattering 较差散射
+differential scattering cross-section 较差散射截面
+differential spectrum 微分能谱
+differential star catalogue 较差星表
+differential visibility 微分能见度函数
+differentiated object 层化天体
+differentiation 分化
+differentiator 差示器
+differentional image motion monitor 缩写:DIMM。差分图像运动测量仪
+diffracted wave 衍射波
+diffraction 衍射
+diffraction angle 衍射角
+diffraction disk 衍射圆面
+diffraction grating 衍射光栅
+diffraction halo 衍射晕
+diffraction image 衍射像
+diffraction limit 衍射极限
+diffraction pattern 衍射图样
+diffraction ring 衍射环
+diffraction scattering 衍射散射
+diffraction spectrum 衍射光谱
+diffuse Galactic X-ray emission 银河漫射X射线辐射
+diffuse Galactic infrared radiation 银河漫射红外辐射
+diffuse Galactic light 银河漫射光
+diffuse Hα radiation 弥漫Hα辐射
+diffuse X-ray 弥漫X射线
+diffuse X-ray background 弥漫X射线背景
+diffuse X-ray emission 弥漫X射线辐射
+diffuse absorption band 漫吸收谱带
+diffuse cloud 漫射云
+diffuse density 漫射密度
+diffuse dwarf galaxy 弥漫矮星系
+diffuse equilibrium 弥散平衡
+diffuse interstellar band 缩写:DIB。弥漫星际谱带
+diffuse interstellar medium 弥漫星际介质
+diffuse matter 弥漫物质
+diffuse nebula 弥漫星云
+diffuse nebulosity 弥漫状星云物质
+diffuse pinch effect 漫箍缩效应
+diffuse radiation 漫辐射
+diffuse radiation field 漫辐射场
+diffuse radio emission 漫射电
+diffuse reflecting power 漫反射率
+diffuse reflection 漫反射
+diffuse scattering 漫散射
+diffuse series 漫线系
+diffuse γ-ray emission 弥漫γ射线
+diffuse-enhanced spectrum 漫强谱
+diffused light 漫射光
+diffuseness 弥漫态; 漫射
+diffusion 漫射; 弥散; 扩散
+diffusion acceleration 扩散加速
+diffusion approximation 扩散近似
+diffusion coefficient 扩散系数
+diffusion constant 扩散常数
+diffusion damping 扩散阻尼
+diffusion equation 扩散方程
+diffusion of magnetic field line 磁力线扩散
+diffusive shock acceleration 缩写:DSA。扩散激波加速
+diffusivity 扩散率
+digicon 数字像管
+digital analyser 数字分析器
+digital area photometer 缩写:DAP。数字面积光度计
+digital astrophotography 数字天体摄影
+digital correlator 数字相关器
+digital filtering 数字滤波
+digital image 数字像
+digital image recorder 数字图像记录仪
+digital image tube 数字像管
+digital optical sky survey 数字化光学巡天
+digital recording 数字记录
+digital sky survey 数字化巡天
+digital time dissemination 数字时间发播
+digitiser 数字化装置
+digitizer 数字化装置
+dilatation 向震中; 变慢
+dilatation effect 钟慢效应
+dilation 向震中; 变慢
+dilation effect 钟慢效应
+dilaton 伸缩子
+dilute aperture 1、稀化孔径; 2、稀疏孔径
+dilute array 稀化天线阵
+diluted radiation 稀化辐射
+dilution factor 稀化因子
+dimensional orientation 空间方位
+dimensionless notation 无量纲符号
+dimensionless number 无量纲数
+dimensionless quantity 无量纲量
+dimensionless unit 无量纲单位
+dimethyl ether 二甲醚
+dineutron 双中子
+diode array 二极管阵
+diode detector 二极管探测器; 二极管检波器
+diode noise source 二极管噪声源
+diopside 透辉石
+diopter 折光度; 照准仪
+dioptra 窥管; 望筒
+dioptric system 折射系统
+dioptric telescope 折射望远镜
+dip of the horizon 地平俯角
+diplon 氘核
+dipole anisotropy 偶极各向异性
+dipole antenna 偶极天线
+dipole array 偶极天线阵
+dipole feed 偶极馈源
+dipole magnetic field 偶极磁场
+dipole moment 偶极矩
+dipole radiation 偶极辐射
+dipole term 偶极项
+dipole transition 偶极跃迁
+direct ascent 直接上升
+direct motion 顺行
+direct orbit 顺行轨道
+direct plate 正片
+direct stationary 顺留
+direct vision objective prism 直视物端棱镜
+direct vision prism 直视棱镜
+direct vision spectroscope 直视分光镜
+direction angle 方向角
+direction cosine 方向余弦
+direction of big dipper's handle 斗建
+direction-determining board 正方案
+directional antenna 定向天线
+directional coupler 定向耦合器
+directional diagram 方向图
+directional distribution 按方向分布
+directional pattern 方向图
+directive gain 定向增益
+directivity 方向性
+directivity factor 方向性因子
+directivity function 方向性函数
+directivity pattern 方向图样
+director 导向器; 控制仪
+director of imperial observatory 钦天监监正
+dirty beam 不洁射束
+dirty ice 脏冰
+dirty map 脏图
+dirty snowball 脏雪球理论
+dirty-snowball model 脏雪球模型
+dirty-snowball theory 脏雪球理论
+disaggregation 解集
+disappearance 掩始
+disappearance point 消失点
+disc 圆面; 盘
+discoloration 消色
+disconnection event 断尾事件
+discontinuity 跃变; 不连续性
+discontinuous spectrum 不连续光谱
+discourse on the flat heaven 平天说
+discourse on the tilting of the heavens 昕天说
+discourse on the vaulting heaven 穹天说
+discrepance 差异
+discrepancy 差异
+discrepant redshift 差异红移
+discrete Fourier convolution 缩写:DFC。离散傅里叶卷积
+discrete Fourier transform 缩写:DFT。离散傅里叶变换
+discrete band 分立谱带
+discrete energy state 分立能态
+discrete error 个别误差
+discrete interval theorem 分立间隔定理
+discrete radio source 分立射电源
+discrete space-time 离散时空
+discriminant 鉴别
+discriminator 鉴别器
+dish antenna 碟形天线
+dish sensitivity 天线灵敏度
+disintegration 蜕变
+disk 圆面; 盘
+disk accretion 盘吸积
+disk cluster 盘族星团
+disk galaxy 盘星系
+disk globular cluster 盘族球状星团
+disk instability 盘不稳定性
+disk of diffusion 弥散盘
+disk population 盘族; 薄盘族
+disk population star 盘族星
+disk potential 盘势
+disk radio emission 盘族射电
+disk scale height 盘标高
+disk scale length 盘标长
+disk shocking 盘冲击
+disk simulation 盘模拟
+disk star 盘族恒星
+disk temperature 圆面温度
+disk-halo degeneracy 盘-晕简并性
+disk-halo interface 盘晕界面
+disk-like structure 盘状结构
+disk-shaped galaxy 盘状星系
+disk-spheroid model 盘-椭球子系模型
+disky elliptical 盘状椭圆星系
+disorder 无序
+disordered field 无序场
+disparation brusque 突异
+dispersed fringe sensor 色散条纹传感器
+dispersion 色散; 频散; 色散度; 频散度; 弥散; 弥散度
+dispersion constant 缩写:DC。色散常数
+dispersion curve 色散曲线
+dispersion ellipse 弥散椭圆
+dispersion equation 色散方程
+dispersion force 色散力
+dispersion index 色散率
+dispersion measure 缩写:DM。频散量
+dispersion of velocities 速度弥散
+dispersion orbit 弥散轨道
+dispersion power 色散率
+dispersion relation 色散关系
+dispersion removal 消色散; 消频散; 消色散器; 消频散器
+dispersion ring 弥散环
+dispersion velocity 弥散速度
+dispersion-dominated encounter 弥散主导的交会
+displacement actuator 位移触动器
+displacement sensor 位移传感器
+disruption 瓦解
+disruption rate 瓦解率
+disruption time 瓦解时间
+dissector 析像管
+dissemination 弥散
+dissipation 耗散
+dissipation interaction 耗散相互作用
+dissipation mass 耗散质量
+dissipation of energy 能量耗散
+dissipation scale 耗散尺度
+dissipational collapse 耗散坍缩
+dissipationless collapse 无耗散坍缩
+dissipative force 耗散力
+dissipative model 耗散模型
+dissociation 离解
+dissociation energy 离解能
+dissociation equilibrium 离解平衡
+dissociation potential 离解电势
+dissociation process 离解过程
+dissociation recombination 离解复合
+dissociation temperature 离解温度
+dissociation time 解体时间
+dissociative process 离解过程
+dissociative recombination 离解复合
+dissymmetric ejection 不对称抛射
+dissymmetric expansion 不对称膨胀
+dissymmetric mode 不对称模式
+distance angles of 28 Lunar Manssions 距度
+distance control 遥控
+distance determination 距离测定
+distance estimator 估距关系
+distance gap 距离间隙
+distance gauge 测距仪
+distance indicator 1、示距参数; 2、示距天体
+distance ladder 距离阶梯
+distance measurement 距离测量
+distance modulus 距离模数
+distance scale 距离尺度
+distance-luminosity relation 距离-光度关系
+distance-measuring equipment 缩写:DME。测距装置
+distance-measuring satellite 测距卫星
+distance-redshift relation 距离-红移关系
+distant encounter 远距交会
+distant observer approximation 远距观测者近似
+distended magnetic field 延展磁场
+distorted image 畸变像
+distortion 畸变
+distortion shift 畸变位移
+distortion tensor 畸变张量
+distortionless image 无畸变像
+distribution 分布
+distribution curve 分布曲线
+distribution function 分布函数
+distribution in space 空间分布
+distribution parameter 分布参数
+disturbance 摄动; 微扰
+disturbed area 扰动区
+disturbed body 受摄体
+disturbed coordinate 受摄坐标
+disturbed element 受摄根数
+disturbed galaxy 受扰星系
+disturbed motion 受摄运动
+disturbed orbit 受摄轨道
+disturbed sun 扰动太阳
+disturbing body 摄动体
+disturbing effect 摄动效应
+disturbing force 摄动力
+disturbing function 摄动函数
+disturbing galaxy 扰动星系
+dithering 抖动法
+diurnal aberration 周日光行差
+diurnal arc 日间弧
+diurnal change 日变化
+diurnal circle 周日圈
+diurnal clock rate 周日钟速
+diurnal inequality 日差
+diurnal libration 周日天平动
+diurnal motion 周日运动
+diurnal nutation 周日章动
+diurnal parallax 周日视差
+diurnal phenomenon 周日现象
+diurnal sign 奇数宫
+diurnal variation 日变化
+divergence 散度
+divergence theorem 散度定理
+divergent star cluster 散开星团
+diverging lens 发散透镜
+diversion 转向
+diversity technique 分集技术
+divided circle 刻度盘
+dividing line 分界线
+division line 分划线
+docking 对接
+docking adapter 对接接口
+dog days 伏日
+domain 域
+domain wall 畴壁
+dome 圆顶; 圆顶室
+dome flat 圆顶平场
+dome seeing 圆顶视宁度
+dome servo 圆顶随动
+domeless reflector 无圆顶反射望远镜
+domeless refractor 无圆顶折射望远镜
+domeless solar telescope 无圆顶太阳望远镜
+domeless telescope 无圆顶望远镜
+domes 拱形结构
+dominant galaxy 主星系
+donkey effect 犟驴效应
+donor 输质星
+dormant volcano 休眠火山
+dorsum 环形山脊
+dose 剂量
+dosimetry 剂量测定
+dot image 点像
+double asteroid 双小行星
+double astrograph 双筒天体照相仪
+double cluster 双重星团
+double concave glass 双凹透镜
+double concave lens 双凹透镜
+double convex glass 双凸透镜
+double convex lens 双凸透镜
+double drift 二星流
+double elliptical galaxy 双重椭圆星系
+double equatorial 双筒赤道仪
+double exponential disk 双指数盘
+double extragalactic radio source 河外射电双源
+double galaxy 双重星系
+double interferometer 双元干涉仪
+double lobed structure 双瓣结构
+double meteor 双流星
+double nebula 双星云
+double quasar 双类星体
+double radio source 双射电源
+double reflection 双反射
+double refraction 双折射
+double reversal 双重自食
+double sideband receiver 双边带接收机
+double slit 双缝
+double source 双源
+double spectrograph 双路摄谱仪
+double spectroheliograph 双筒太阳单色光照相仪
+double spectroprojector 双光束光谱投射仪
+double star 缩写:DS。双星
+double system 双重天体系统
+double transit 二次中天
+double wave 双波
+double-Compton process 双康普顿过程
+double-beam photometer 双束光度计
+double-beam polarimeter 双光束偏振计
+double-beam system 双束系统
+double-counting method 双计数法
+double-double radio source 双双射电源
+double-hours 辰
+double-humped profile 双峰轮廓
+double-lensed quasar 引力透镜效应双像类星体
+double-lined [spectroscopic] binary 缩写:SB 2。双谱[分光]双星
+double-mode Cepheid 双模造父变星
+double-mode RR Lyrae star 双模天琴RR型星
+double-mode pulsation 双模脉动
+double-mode pulsator 双模脉动星
+double-mode variable 双模变星
+double-mode variable star 双模变星
+double-pass echelle spectrometer 双通阶梯光栅光谱仪
+double-planet 双行星
+double-prism spectrograph 双棱镜摄谱仪
+double-ring galaxy 双环星系
+double-spectrum binary 缩写:SB 2。双谱[分光]双星
+doublet 1、双重态; 2、双重线
+doublet antenna 偶极天线
+doublet lens 双合透镜
+doublet structure 双重结构
+doubling 双重
+down-Comptonization 康普顿软化
+down-conversion 下变频
+down-leg light time 下行光行时
+downdraft 下沉气流
+downsizing 降序; 瘦身
+downthrust 下冲板块
+downward transition 向下跃迁
+draconic month 交点月
+draconic revolution 交点周
+draconic year 交点年
+drag effect 曳引效应
+drain diffusion 泄漏扩散
+draw tube 目镜接筒
+dredge-up 上翻
+drift 漂移
+drift beam instability 漂移束不稳定性
+drift curve 漂描曲线
+drift cyclotron wave 漂移回旋波
+drift frequency 漂移频率
+drift of stars 星流
+drift pulse 漂移脉冲
+drift rate 漂移率
+drift scan 漂移扫描
+drift scanning 漂移扫描
+drift subpulse 漂移次脉冲
+drift turbulence 漂移湍流
+drift velocity 漂移速度
+drift wave 漂移波
+drift-scan measurement 漂描测量
+drifting pulse 漂移脉冲
+drifting subpulse 漂移次脉冲
+drip-vessel 漏; 漏壶; 漏刻; 刻漏
+drive clock 转仪钟
+driving clock 转仪钟
+driving mechanism 转仪装置
+driving system 驱动系统
+drop 降; 滴
+drop-out 退出者
+droplet 微滴
+drum tower 鼓楼
+dry ice 干冰
+dry merger 干并合; 贫气体并合
+drying agent 干燥剂
+dual of tangent space 对偶切空间
+dual photometer 双光度计
+dual-beam observation 双束观测
+dual-beam technique 双束技术
+dual-rate moon camera 双速月球照相机
+dualistic nature 二象性
+duality 1、二象性; 2、对偶性
+dumbbell galaxy 缩写:db galaxy。哑铃状星系
+dumbbell radio galaxy 哑铃状射电星系
+dumbbell-shaped curve of zero velocity 哑铃形零速度线
+dumbbell-shaped radio galaxy 哑铃状射电星系
+dummy antenna 仿真天线
+dunite 纯橄榄岩
+duodenary series 十二次
+duplexer 双工器
+duplicity 二重性; 成双性
+duplixity 二重性
+duration of annular phase 环食时间
+duration of eclipse 掩食时间
+duration of pulse 脉冲宽度
+duration of totality 全食时间
+dusk 薄明
+dusk side 黄昏侧
+dusky belt 暗带
+dusky ring 暗环
+dusky veil 暗纱
+dust cloud 尘云
+dust disk 尘[埃]盘
+dust driven wind 星尘风
+dust extinction 尘埃消光
+dust globule 尘埃球状体
+dust grain 尘粒
+dust jet 尘埃喷流
+dust lane 尘埃带
+dust nebula 尘埃星云
+dust ring 尘环
+dust shell 尘壳
+dust storm 尘暴
+dust tail 尘埃彗尾
+dust train 尘埃余迹
+dust-ball 尘埃流星
+dustless galaxy 无尘星系
+dusty primaeval galaxy 富尘埃原初星系
+dusty star-forming galaxy 缩写:DSFG。富尘产星星系
+duty cycle 负载循环
+duty factor 负载因子; 占空因子
+dwarf Cepheid 矮造父变星
+dwarf M flare star M型矮耀星
+dwarf Me star 缩写:dMe star。Me型矮星
+dwarf carbon star 碳矮星
+dwarf elliptical galaxy 缩写:dE galaxy。矮椭圆星系
+dwarf galaxy 矮星系
+dwarf irregular galaxy 缩写:dI galaxy。矮不规则星系
+dwarf nova 矮新星
+dwarf planet 矮行星
+dwarf sequence 矮星序
+dwarf spherical galaxy 矮球状星系
+dwarf spheroidal galaxy 缩写:dSph。矮椭球星系
+dwarf spiral galaxy 矮旋涡星系
+dwarf star 矮星
+dwarf variable 矮变星
+dwell 居
+dyad 并矢
+dynamic characteristic 动态特征曲线
+dynamic instability 动力不稳定性
+dynamic range 动态范围
+dynamic stability 动力稳定性
+dynamic viscosity 动力黏性
+dynamical age 动力学年龄
+dynamical astronomy 动力天文学
+dynamical axis 动力轴
+dynamical cosmology 动力学宇宙学
+dynamical dissipation 动力耗散
+dynamical ellipticity 力学椭率
+dynamical equilibrium 动态平衡
+dynamical equinox 动力学春分点
+dynamical evolution 动力学演化
+dynamical flattening 力学扁率
+dynamical friction 动力摩擦
+dynamical gravity measurement 动态重力测量
+dynamical instability 动力不稳定性
+dynamical libration 动力学天平动; 动力学秤动
+dynamical mass 动力学质量
+dynamical mean equinox 动力学平春分点
+dynamical method 动力学方法
+dynamical oblateness 力学扁率
+dynamical parallax 力学视差
+dynamical pinch effect 动力箍缩效应
+dynamical reference system 动力学参考系
+dynamical relaxation 动力弛豫
+dynamical satellite geodesy 卫星动力测地学
+dynamical spectrum 运动频谱
+dynamical stability 动力稳定性
+dynamical state 动态
+dynamical symmetry breaking 动力学对称破缺
+dynamical time 力学时
+dynamical time-scale 力学时标
+dynamical viscosity 动力黏性
+dynamics of orbits 轨道动力学
+dynamics of stellar systems 恒星系统动力学
+dynamo geomagnetics theory 地磁发电机理论
+dynamo theory 发电机理论
+dynamo wave 发电机波
+dysprosium 缩写:Dy。镝
+e-fold length e 倍变化长度; e 倍衰减长度
+e-folding time e 倍变化时间; e 倍衰减时间
+e-folds e-叠数
+e-neutrino 电子中微子
+e-process e 过程
+earliest state 极早期状态
+early decline 初降
+early earth 早期地球
+early planet 早期行星
+early spectral type 早光谱型
+early stage star 早期演化星
+early stellar evolution 恒星早期演化
+early sun 早期太阳
+early universe 早期宇宙
+early-type cluster 早型星系团
+early-type emission star 早型发射星
+early-type emission-line star 缩写:ETELS。早型发射线星
+early-type galaxy 早型星系
+early-type spiral galaxy 早型旋涡星系
+early-type star 早型星
+early-type supergiant 早型超巨星
+early-type variable 早型变星
+earth atmosphere 地球大气
+earth attraction 地球引力
+earth axis 地轴
+earth central angle 地球中心角
+earth core 地核
+earth crust 地壳
+earth curvature correction 地球曲率改正
+earth day 地球日
+earth deformation 地形变
+earth dynamic ellipticity 地球力学椭率
+earth dynamics 地球动力学
+earth elasticity 地球弹性
+earth ellipsoid 地球椭球体
+earth ellipticity 地球扁率
+earth flattening 地球扁率
+earth magnetic field 地球磁场
+earth magnetosphere 地球磁层
+earth mantle 地幔
+earth model 地球模型
+earth nucleus 地核
+earth oblateness 地球扁率
+earth orbit 地球轨道
+earth orientation parameter 缩写:EOP。地球定向参数
+earth penumbra 地球半影
+earth plasmasphere 地球等离子体层
+earth point 陨星着地点
+earth pole 地极
+earth potential field 地引力势场
+earth radio radiation 地球射电
+earth rate 地球自转速率
+earth rotation 地球自转
+earth rotation parameter 缩写:ERP。地球自转参数
+earth rotation rate 地球自转速率
+earth satellite 地球卫星
+earth shell 地壳
+earth spheroid 地球扁球体
+earth stratosphere 地球平流层
+earth tide 陆潮
+earth umbra 地球本影
+earth year 地球年
+earth-approaching asteroid 缩写:NEA。近地小行星
+earth-approaching comet 近地彗星
+earth-approaching object 缩写:NEO。近地天体
+earth-crossing asteroid 越地小行星
+earth-crossing comet 越地彗星
+earth-crossing object 越地天体
+earth-fixed coordinate system 地固坐标系
+earth-grazer 掠地小天体
+earth-grazing asteroid 掠地小行星
+earth-light 地照
+earth-moon space 地月空间
+earth-moon system 地月系统
+earth-orbit rendezvous 环地轨道会合
+earth-rate unit 地球速率单位
+earth-rotation aperture synthesis 地球自转孔径综合
+earth-rotation synthesis array 地球自转综合天线阵
+earthquake 地震
+earthrise 地出
+earthshine 地照
+east 东
+east longitude 东经
+east point 东点
+east-west asymmetry 东西不对称性
+east-west effect 东西效应
+east-west line 东西线
+eastern elongation 1、东大距; 2、东距角
+eastern greatest elongation 东大距
+eastern hemisphere 东半球
+eastern quadrature 东方照
+ebb 落潮
+ebb tide 落潮
+eccentric angle 偏心角
+eccentric anomaly 偏近点角
+eccentric dipole 偏心偶极
+eccentric latitude 偏心纬度
+eccentric orbit 偏心轨道
+eccentric-disk model 偏心盘模型
+eccentricity 偏心率
+eccentricity resonance 偏心率共振
+ecclesiatical calendar 教会历
+echelette 小阶梯光栅
+echelette grating 小阶梯光栅
+echelette spectrograph 小阶梯光栅摄谱仪
+echelle grating 中阶梯光栅
+echelle spectrograph 中阶梯光栅摄谱仪
+echelle spectrometer 中阶梯光栅分光仪
+echelle spectroscopy 中阶梯光栅分光
+echelle spectrum 中阶梯光谱
+echelogram 阶梯光谱片
+echelon grating 阶梯光栅
+echelon prism 阶梯棱镜
+echo wave 回波; 反向波
+eclipse 1、交食; 2、食
+eclipse beginning 食始
+eclipse boundary 食界
+eclipse comet 交食彗
+eclipse cycle 食周
+eclipse depth 食深
+eclipse duration 掩食时间
+eclipse end 食终
+eclipse factor 食分
+eclipse function 食函数
+eclipse limit 食限
+eclipse map 日食界限图
+eclipse number 食数
+eclipse of satellite 卫星食
+eclipse of the moon 月食
+eclipse of the sun 日食
+eclipse path 食径
+eclipse season 食季
+eclipse series 食系
+eclipse theory 食论
+eclipse year 食年
+eclipsed body 被食天体
+eclipsed component star 被食子星
+eclipsed star 被食星
+eclipsing X-ray source X射线食变源
+eclipsing X-ray star X射线食变星
+eclipsing binary 食双星
+eclipsing component star 主食子星
+eclipsing double star 食双星
+eclipsing infrared source 红外食变星
+eclipsing star 1、主食子星; 2、食变星
+eclipsing variable 食变星
+ecliptic 黄道
+ecliptic armillary sphere 黄道经纬仪
+ecliptic coordinate 黄道坐标
+ecliptic coordinate system 黄道坐标系
+ecliptic diagram 黄道图
+ecliptic latitude 黄纬
+ecliptic limit 黄道限
+ecliptic longitude 黄经
+ecliptic map 黄道星图
+ecliptic meteor 黄道流星
+ecliptic obliquity 黄赤交角
+ecliptic of date 瞬时黄道
+ecliptic plane 黄道面
+ecliptic pole 黄极
+ecliptic ring 黄道环
+ecliptic stream 黄道流星雨
+ecliptic system of coordinate 黄道坐标系
+ecosphere 生物圈
+eddy 涡流
+eddy diffusion coefficient 涡流扩散系数
+edge effect 边缘效应
+edge sensor 边缘传感器
+edge-on 侧向
+edge-on galaxy 侧向星系
+edge-on object 侧向天体
+edge-on spiral galaxy 侧向旋涡星系
+editing criterion 取舍判据
+effect 效应; 作用
+effect of evolution 演化效应
+effect of relaxation 弛豫效应
+effective Lande g factor 有效朗德 g 因子
+effective absorption coefficient 有效吸收系数
+effective acceleration of gravity 有效重力加速度
+effective aperture 有效口径; 有效孔径
+effective area 有效面积
+effective collecting area 有效接收面积
+effective collision frequency 有效碰撞频率
+effective cross-section 有效截面
+effective cross-section of collision 有效碰撞截面
+effective cross-section of ionization 有效电离截面
+effective cross-section of recombination 有效复合截面
+effective damping constant 有效阻尼常数
+effective distance 有效距离
+effective field theory 缩写:EFT。有效场论
+effective filter response 有效滤波器响应
+effective focal length 有效焦距
+effective height 有效高度
+effective ion Larmor radius 有效离子拉莫尔半径
+effective length 有效长度
+effective line width 有效线宽
+effective molecular weight 有效分子量
+effective optical depth 有效光深
+effective potential 有效势
+effective pulse width 脉冲有效宽度
+effective radiation 有效辐射
+effective radius 有效半径
+effective receiving area 有效接收面积
+effective reflecting area 有效反射面积
+effective temperature 有效温度
+effective wavelength 有效波长
+effective width 有效宽度
+effective yield 有效产额
+efficiency 效率
+efflux 射流
+egress 出食; 出凌
+eigen mode 本征模
+eigenfunction 本征函数
+eigenperiod 本征周期
+eigentemperature 本征温度
+eigenvalue 本征值
+eigenvector 本征矢
+eigenvibration 本征振动
+eight trigrams 八卦
+eightfold way 八重法
+einsteinium 缩写:Es。锿
+ejecta 喷出物
+ejecta blanket 喷出覆盖物
+ejection 抛射
+ejection rate 抛射率
+ejection time 抛射时标
+ejection velocity 抛射速度
+elastic collision 弹性碰撞
+elastic strain 弹性应变
+elastic stress 弹性应力
+elastic yielding 弹性屈服
+elasticity 弹性
+elbow refractor 折轴折射望远镜
+electric charge 电荷
+electric conductance 电导
+electric current helicity 电流螺度
+electric dipole 电偶极子
+electric dipole moment 电偶极矩
+electric dipole radiation 电偶极辐射
+electric displacement 电位移
+electric doublet 电偶极子
+electric flux 电流量
+electric moment 电矩
+electric multipole radiation 电多极辐射
+electric neutrality 电中性
+electric quadrupole 电四极子
+electric quadrupole moment 电四极矩
+electric quadrupole radiation 电四极辐射
+electric resonance 电共振
+electric spectrophotometry 光电分光光度测量
+electric susceptibility 电极化率
+electric vector 电矢
+electrified body 带电体
+electro-optic crystal 电光晶体
+electro-optic spectrograph 电光频谱仪
+electro-optical modulator 电光调制器
+electroacoustic wave 电声波
+electrochronograph 电子记时仪
+electrocolorimeter 电色度计
+electrocolorimetry 电色度测量
+electroconductivity 电导率
+electrode 电极
+electrograph 电场仪
+electrographic camera 电子照相机
+electrographic image tube 电子像管
+electrojet 电喷流
+electrolysis 电解
+electromagnetic acceleration 电磁加速
+electromagnetic extraction 电磁提取
+electromagnetic field 电磁场
+electromagnetic force 电磁力
+electromagnetic interaction 电磁相互作用
+electromagnetic mass 电磁质量
+electromagnetic moment 电磁矩
+electromagnetic momentum 电磁动量
+electromagnetic pulse 电磁脉冲
+electromagnetic radiation 电磁辐射
+electromagnetic spectrum 电磁波谱
+electromagnetic viscosity 电磁黏度
+electromagnetic wave 电磁波
+electromagnetic wave scattering 电磁波散射
+electromagnetism 电磁性
+electrometer 静电计
+electromotive force 电动势
+electron affinity 电子亲和性
+electron attachment coefficient 电子附着系数
+electron beam 电子束
+electron beam parameter amplifier 电子束参量放大器
+electron bombard CCD 缩写:EBCCD。电子轰击CCD
+electron camera 电子照相机
+electron charge 电子电荷
+electron cloud 电子云
+electron concentration 电子浓度
+electron conduction 电子传导
+electron configuration 电子组态
+electron cyclotron oscillation 电子回旋振荡
+electron cyclotron resonance 电子回旋共振
+electron cyclotron wave 电子回旋波
+electron degeneracy 电子简并
+electron degeneracy pressure 电子简并压
+electron density 电子密度
+electron detachment coefficient 电子脱离系数
+electron diffraction 电子衍射
+electron emission 电子发射
+electron energy spectrum 电子能谱
+electron event 电子事件
+electron flare 电子耀斑
+electron gas 电子气
+electron gyro-frequency 电子回旋频率
+electron gyro-radiation 电子回旋辐射
+electron jet 电子束
+electron level 电子能级
+electron mode 电子模式
+electron multiplier tube 电子倍增管
+electron neutrino 电子中微子
+electron oscillation 电子振荡
+electron pair 电子对
+electron pressure 电子压力
+electron pumping 电子抽运
+electron rest frame 电子静止坐标系
+electron rest mass 电子静止质量
+electron scattering 电子散射
+electron scattering continuum 电子散射连续谱
+electron scattering opacity 电子散射不透明度
+electron spectrum 电子能谱
+electron spin 电子自旋
+electron temperature 电子温度
+electron transition 电子跃迁
+electron wave 电子波
+electron-atom bremsstrahlung 电子原子轫致辐射
+electron-electron bremsstrahlung 电子-电子轫致辐射
+electron-multiplying CCD 缩写:EMCCD。电子倍增CCD
+electron-photon scattering 电子-光子散射
+electron-plasma frequency 电子-等离子体频率
+electron-positron annihilation 电子-正电子湮灭
+electron-positron pair 电子-正电子对
+electron-positron pair annihilation 电子-正电子对湮灭
+electron-positron pair creation 电子-正电子对产生
+electronegativity 电阴性
+electronic band spectrum 电子带光谱
+electronic camera 电子照相机
+electronic chronometer 电子时计
+electronic emission 电子发射
+electronic image-tube 电子像管
+electronic imaging 电子成像
+electronic state 电子态
+electronographic camera 电子照相机
+electronographic detector 电子照相探测器
+electronographic photometry 电子照相测光
+electronography 电子照相
+electronvolt 电子伏
+electrophonic meteor sound 电声变换流星声
+electrophonic sound 电声响
+electrophotometer 光电光度计
+electrophotometry 光电测光
+electrophotonic detector 光电探测器
+electrophotonic imaging 光电成像
+electrosphere 电子层
+electrostatic bremsstrahlung 静电轫致辐射
+electrostatic field 静电场
+electrostatic influence 静电影响
+electrostatic interaction 静电相互作用
+electrostatic magnetic force 静电磁力
+electrostatic state seperator 静电能态分离器
+electrostatic wave 静电波
+electroweak era 弱电时期
+electroweak force 弱电力
+electroweak interaction 弱电相互作用
+electroweak phase transition 弱电相变
+electroweak theory 弱电理论
+element abundance 元素丰度
+element formation 元素形成
+element group 元素族
+element of eclipse 交食要素
+element of orbit 轨道根数
+elemental abundance 元素丰度
+elementary excitation 元激发
+elementary particle 基本粒子
+elementary particle scattering 元粒子散射
+elements of light variation 光变要素
+elephant trunk 亮环结构
+elevated pole 上天极
+elevation angle 仰角
+elevation axis 高度轴
+elimination 消去; 消去法
+elimination date 灭日
+ellipse of inertia 惯量椭圆
+ellipse of zero velocity 零速度椭圆
+ellipsoid 椭球
+ellipsoid of gyration 旋转椭球
+ellipsoid of inertia 惯量椭球
+ellipsoid of revolution 旋转椭球体
+ellipsoidal binary 椭球双星
+ellipsoidal collapse 椭球坍缩
+ellipsoidal coordinate 椭球坐标
+ellipsoidal distribution 椭球分布
+ellipsoidal distribution of velocities 速度椭球分布
+ellipsoidal mirror 椭球面反射镜
+ellipsoidal nebula 椭球星云
+ellipsoidal telescope 椭球面望远镜
+ellipsoidal variable 椭球变星
+elliptic aberration 椭圆光行差
+elliptic comet 椭圆轨道彗星
+elliptic coordinate 椭圆坐标
+elliptic restricted problem 椭圆型限制性问题
+elliptic restricted three-body problem 椭圆型限制性三体问题
+elliptic space 椭圆空间
+elliptical 缩写:E galaxy。椭圆星系
+elliptical anagalactic nebula 椭圆河外星云
+elliptical extragalactic nebula 椭圆河外星云
+elliptical galaxy 缩写:E galaxy。椭圆星系
+elliptical motion 椭圆运动
+elliptical nebula 椭圆星云
+elliptical orbit 椭圆轨道
+elliptical radio galaxy 椭圆射电星系
+elliptical space 椭圆空间
+elliptical subsystem 椭圆次系
+elliptical system 缩写:E galaxy。椭圆星系
+elliptically polarized light 椭圆偏振光
+elliptically polarized radiation 椭圆偏振辐射
+ellipticity 椭率
+ellipticity effect 椭球状效应
+ellipticity parameter for image 图像的椭率参数
+elongated orbit 椭长轨道
+elongation 1、缩写:GE。大距; 2、距角
+elongation of circumpolar stars 拱极星大距
+emanator 辐射器; 辐射源
+embedded cluster 嵌埋星团
+embedding 嵌入
+embolismic year 闰年
+embryo of a planet 行星胎
+embryo of a star 恒星胎; 恒星胚胎
+emergent pupil 出射光瞳
+emerging flux region 缩写:EFR。射流区
+emerging magnetic flux 浮现磁流
+emersion 复现
+emersion time 复现时刻
+emission 发射; 辐射
+emission area 发射区
+emission band 发射带
+emission coefficient 发射系数
+emission component 发射子线
+emission efficiency 发射效率
+emission frequency 发射频率
+emission line 发射线
+emission measure 缩写:EM。发射量度
+emission mechanism 发射机制
+emission nebula 发射星云
+emission nebulosity 发射星云状物质
+emission point 发射点
+emission probability 发射概率
+emission process 发射过程
+emission spectrum 发射光谱
+emission variable 发射线变星
+emission-line galaxy 发射线星系
+emission-line nebula 发射线星云
+emission-line object 发射线天体
+emission-line star 发射线星
+emissive power 发射本领; 发射强度
+emissivity 发射率
+emitron 光电摄像管
+emittance 发射度
+emitter 发射体
+emitting area 发射区
+emitting atmosphere 发光大气
+emitting dust mass 发光尘埃质量
+emphasized second marker 加重秒信号
+empirical coefficient 经验系数
+empirical formula 经验公式
+empirical term 经验项
+empty light cone model 空光锥模型
+empty model 空模型
+empty universe 空宇宙
+emulated data 仿真数据
+emulation 仿真
+emulsion 乳胶
+emulsion carrier 乳胶载体
+emulsion defect 乳胶污点
+emulsion photometer 乳胶光度计
+emulsion shift 乳胶位移
+encircled energy 能量集中度
+enclosure 围罩
+encoder 编码器
+encounter 交会
+encounter hypothesis 偶遇假说
+encounter theory 偶遇理论
+encounter-type orbit 交会型轨道
+encroachment 侵
+end height 消失点高度
+end of totality 全食终
+end point 消失点
+end-fire array 端射天线阵
+end-on 端向
+end-on object 端向天体
+ending of evening twilight 昏影终
+endocrater 巨坑
+endoergic process 吸能过程
+endoergic reaction 吸能反应
+endothermic process 吸热过程
+endothermic reaction 吸热反应
+energetic X-ray burst 高能X射线暴
+energetic encounter 高能碰撞
+energetic particle 高能粒子
+energetic particle burst 高能粒子暴
+energetic particle event 高能粒子事件
+energetic plasma 高能等离子体
+energetic recoil particle 高能反冲粒子
+energetic γ-ray burst 高能 γ射线暴
+energetics 力能学
+energy absorption 能量吸收
+energy attenuation 能量衰减
+energy balance 能量平衡
+energy condition 能量条件
+energy conservation 能量守恒
+energy density 能量密度
+energy density of radiation 辐射能量密度
+energy density of the vacuum 真空能量密度
+energy detectivity 能量探测率
+energy dissipation 能量耗散
+energy distribution 能量分布
+energy equation 能量方程
+energy equilibrium 能量平衡
+energy equipartition 能量均分
+energy flux 能流量
+energy gap 能隙
+energy interval 能量间隔; 能量区间
+energy jump 能量跳变
+energy level 能级
+energy liberation 能量释放
+energy loss 能量损失
+energy of absolute zero 零点能量
+energy of magnetization 磁化能
+energy of nucleus 核能
+energy of position 位能
+energy of rotation 转动能
+energy of vibration 振动能
+energy range 能幅
+energy release 能量释放
+energy source 能源
+energy spectral density 能谱密度
+energy spectrum 能谱
+energy state 能态
+energy storage 能量储存
+energy transfer 能量转移
+energy transfer time 能量转移时间
+energy transport 能量输运
+energy trap 能量[陷]阱
+energy-driven wind 能量驱动风
+energy-flux density 能流密度
+energy-level diagram 能级图
+energy-momentum tensor 能动张量
+enhanced emission 增强发射
+enhanced line 增强谱线
+enhanced network 增强网络
+enhanced radiation 增强辐射
+enlargement 放大
+enlarger 放大机
+enregistreur des vitesses 分光速度记录仪
+ensemble 系综
+ensemble average 集平均
+ensemble of electrons 电子集
+enstatite 顽辉石
+enstatite chondrite 顽辉球粒陨石
+enthalpy 热函; 焓
+entrance pupil 入射光瞳
+entrapment 俘获
+entropy bound 熵限
+entropy density 熵密度
+entropy equation 熵方程
+entropy perturbation 熵扰动
+entropy wave 熵波
+envelope 包层; 包络
+envelope pattern 包络方向图
+envelope star 气壳星
+eon 十亿年
+epact 闰余; 岁首月龄
+epagomenal day 闰日
+ephemeral active region 瞬现区; 瞬现活动区
+ephemeral region 瞬现区; 瞬现活动区
+ephemeris 1、历表; 2、星历表
+ephemeris day 历书日
+ephemeris hour angle 历书时角
+ephemeris longitude 历书经度
+ephemeris meridian 历书子午线
+ephemeris reference frame 缩写:ERF。历书参考系
+ephemeris second 历书秒
+ephemeris sidereal time 历书恒星时
+ephemeris time 缩写:ET。历书时
+ephemeris transit 历书中天
+ephemerist 制历者
+epicenter 本轮中心; 震中
+epicycle 本轮
+epicycle energy 本轮能量
+epicycle oscillation 本轮振荡
+epicycle theory 本轮说
+epicyclic approximation 本轮近似
+epicyclic frequency 本轮频率
+epicyclic motion 本轮运动
+epicyclic orbit 本轮轨道
+epiplasma 超等离子体
+epoch 历元; 时期
+epoch of matter-radiation equality 物质-辐射等密度时期
+epoch of neutralization 中和纪
+epoch of observation 观测历元
+epoch of orientation 定向历元
+epoch of place 位置历元
+epoch of reionization 缩写:EoR。再电离时期
+equal altitude circle 等高圈
+equal altitude method 等高法
+equal brightness photometer 等亮度光度计
+equality-of-contrast photometer 等反差光度计
+equant 均衡点
+equation clock 时差钟
+equation of equal altitude 等高差
+equation of equipartition time 均时差
+equation of light 光行时差
+equation of motion 运动方程
+equation of radiative transfer 辐射转移方程
+equation of state 缩写:EoS。物态方程
+equation of the center 中心差
+equation of the equinoxes 二分差
+equation of the origins 零点差
+equation of time 时差
+equator 赤道
+equator correction 赤道改正
+equator determination 赤道测定
+equator of date 瞬时赤道
+equator of epoch 历元赤道
+equator of illumination 照明赤道
+equator of position 位置赤道
+equator ring 赤道环
+equatorial acceleration 赤道加速度
+equatorial armillary sphere 赤道经纬仪
+equatorial band 赤道带
+equatorial bulge 赤道隆起
+equatorial circumference 赤道圈
+equatorial colure 二分圈
+equatorial coordinate 赤道坐标
+equatorial coordinate system 赤道坐标系
+equatorial diameter 赤道直径
+equatorial ejection 赤道抛射
+equatorial horizontal parallax 赤道地平视差
+equatorial instrument 赤道仪
+equatorial line 赤道线
+equatorial lodge degrees 入宿度
+equatorial mounting 赤道装置
+equatorial orbit 赤道轨道
+equatorial parallax 赤道视差
+equatorial plane 赤道面
+equatorial prominence 赤道日珥
+equatorial radius 赤道半径
+equatorial rectangular coordinate 赤道直角坐标
+equatorial rotational velocity 赤道自转速度
+equatorial satellite 赤道卫星
+equatorial sundial 赤道日晷
+equatorial system 赤道坐标系
+equatorial system of coordinate 赤道坐标系
+equatorial telescope 赤道仪
+equatorial zone 赤道带
+equatorium 行星定位仪
+equiareal mapping 保积映射
+equidensite 等密度线
+equidensitometry 等密度测量
+equidistance motion 等距运动
+equilateral point 等边点
+equilateral triangle point 等边三角形点
+equilibrium 平衡
+equilibrium condition 平衡条件
+equilibrium distribution 平衡分布
+equilibrium figure 平衡形态
+equilibrium point 平衡点
+equilibrium position 平衡位置
+equilibrium radiation 平衡辐射
+equilibrium ratio 平衡比率
+equilibrium solution 平衡解
+equilibrium state 平衡态
+equilibrium temperature 平衡温度
+equilibrium tide 平衡潮
+equinoctial 天赤道
+equinoctial colure 二分圈
+equinoctial day 恒星日
+equinoctial element 分点根数
+equinoctial points 二分点
+equinoctial system of coordinate 分至坐标系
+equinoctial year 分至年
+equinox 分点
+equinox correction 春分点改正
+equinox motion 春分点运动
+equinox position 春分点位置
+equinoxes 二分点
+equipartition 均分
+equipartition instability 能均分不稳定性
+equipartition of energy 能量均分
+equipartition of kinetic energy 动能均分
+equipartition parameter 均分参数
+equipartition time 均分时间
+equipment 设备
+equipotential surface 等势面; 等位面
+equivalence principle 等效原理
+equivalent antenna 等效天线
+equivalent breadth 等值宽度
+equivalent collecting area 等效面积
+equivalent focal distance 等值焦距
+equivalent focal length 等值焦距
+equivalent focus 等值焦点
+equivalent pendulum 等值摆
+equivalent principle 等效原理
+equivalent temperature 等效温度
+equivalent thickness 等值厚度
+equivalent width 等值宽度
+era 纪元; 时代
+era divisor 纪法
+erbium 缩写:Er。铒
+erect image 正像
+erecting eyepiece 正像目镜
+erecting prism 正像棱镜
+ergodic density fields 各态历经密度场
+ergodic hypothesis 遍历假说
+ergodic motion 遍历运动
+ergodic theorem 各态历经定理
+ergodicity 遍历
+ergoregion 能层
+ergosphere 能层
+ergosphere effect 能层效应
+erosion 侵蚀
+erosive collision 侵蚀性碰撞
+error 误差
+error accumulation 误差累积
+error analysis 误差分析
+error bar 误差棒
+error beam 误差波束
+error box 误差框
+error distribution 误差分布
+error ellipse 误差椭圆
+error estimate 误差估计
+error function 误差函数
+error in pointing 指向误差
+error of tilt 倾斜误差
+error pattern 误差方向图
+error propagation 误差传播
+eruption 爆发
+eruptive arch 爆发拱
+eruptive binary 爆发双星
+eruptive center 爆发中心
+eruptive flare 爆发耀斑
+eruptive galaxy 爆发星系
+eruptive period 爆发周期
+eruptive prominence 爆发日珥
+eruptive solar flare 爆发耀斑
+eruptive star 爆发星
+eruptive variable 爆发变星
+escape 逃逸
+escape cone 逃逸锥
+escape energy 逃逸能量
+escape speed 逃逸速度
+escape speed surface 逃逸速度面
+escape trajectory 逸离轨道
+escape velocity 逃逸速度
+escapement 擒纵系统
+essentially singular point 本性奇点
+establishment of the port 潮候时差
+estimated accuracy 估计精度
+estimation 估计
+estimation theory 估计理论
+etalon 标准; 校准器
+etalon frequency 标准频率
+etalon time 标准时
+etendue 光学扩展量; 光展量; 集光率
+eternal inflation 永恒暴胀
+ethane 乙烷
+ethanol 乙醇
+ether 以太
+ethereal ring 薄环
+ethyl alcohol 乙醇
+ethyl cyanide 丙腈
+ethylene 乙烯
+ethynyl radical 乙炔基
+eucrite 钙长辉长无球粒陨石
+europium 缩写:Eu。铕
+eustasy 冰河变异
+evaluable primary frequency standard 可计值原始频标
+evaluation 计值
+evanescent wave 瞬即消失波
+evaporating gaseous globule 缩写:EGG。蒸发气态球状体
+evaporation of the black hole 黑洞蒸发
+evaporation rate 蒸发率
+evaporation time 蒸发时标
+evection 出差
+evection in latitude 黄纬出差
+even coupling 偶耦合
+even cycle 偶数周
+even state 偶态
+even-even nuclei 偶-偶核
+even-odd nuclei 偶-奇核
+evening glow 暮辉
+evening group 昏星组
+evening star 昏星
+evening twilight 暮光
+event 事件
+event horizon 事件视界
+evershed flow 埃维谢德流
+evolution 演化
+evolution by inflation 暴胀演化
+evolution diagram 演化图
+evolution mass 演化质量
+evolution of clustering 成团性演化
+evolution of luminosity function 光度函数演化
+evolutionary age 演化年龄
+evolutionary cosmology 演化宇宙学
+evolutionary mass 演化质量
+evolutionary phase 演化阶段
+evolutionary stage 演化期
+evolutionary state 演化态
+evolutionary time 演化时间
+evolutionary time-scale 演化时标
+evolutionary track 演化程
+evolved object 晚期演化天体
+evolved star 主序后星
+evolving magnetic feature 缩写:EMF。演化磁特征
+evolving object 早期演化天体
+evolving star 零龄主序前星
+ex-nova 爆后新星
+ex-supernova 爆后超新星
+excess absorption 过剩吸收
+excess density 密度超
+excess emission 过剩发射
+excess energy 过剩能量
+excess noise temperature 过剩噪声温度
+excess redshift 剩余红移
+excessive star 超星
+exchange 交换
+exchange correlation 交换相关
+exchange energy 交换能
+exchange of mass 质量交换
+excitation 激发
+excitation cross-section 激发截面
+excitation energy 激发能
+excitation mechanism 激发机制
+excitation of turbulence 湍动激发
+excitation potential 激发势
+excitation temperature 激发温度
+excited atom 受激原子
+excited level 激发能级
+excited nebula 受激星云
+excited object 受激天体
+excited star 受激星
+excited state 受激态; 激发态
+exciting collision 激发碰撞
+exciting object 激发天体
+exciting star 激发星
+exciton 激子
+exclusion energy 不相容能量
+exclusion principle 不相容原理
+excursion set 漫游集
+excursion set model 漫游集模型
+exfoliation 剥落
+exhaust velocity 排气速度
+exit cone 出射锥
+exit pupil 出射光瞳
+exmeridian altitude 近子午线高度
+exmeridian observation 近子午线观测
+exo-Earth 地球型系外行星
+exo-Jupiter 系外类木行星
+exo-asteroid belt [太阳]系外小行星带
+exo-solar wind [太阳]系外星风
+exobase 外大气层底
+exobiology 地外生物学
+exocomet 1、[太阳]系外彗星; 2、外星彗星
+exoergic process 放能过程
+exogenic force 外力
+exomoon 系外卫星
+exoplanet 系外行星
+exoplanet system 系外行星系
+exoplanet transit 系外行星凌星
+exosphere 外[逸]层; 外大气层
+exothermic process 产热过程
+exothermic reaction 产热反应
+exotic comet 1、[太阳]系外彗星; 2、外星彗星
+exotic particle 奇异粒子
+exotic planet 系外行星
+exotic star 奇异星
+exozodiacal dust 外星黄道尘
+expanding arm 膨胀臂
+expanding disk 膨胀盘
+expanding envelope 膨胀包层
+expanding model 膨胀模型
+expanding nebula 膨胀星云
+expanding phase 膨胀相
+expanding plasmon 膨胀等离子体激元
+expanding ring 膨胀环
+expanding shell 膨胀壳
+expanding universe 膨胀宇宙
+expansion 膨胀
+expansion age 膨胀年龄
+expansion coefficient 膨胀系数
+expansion lag 滞涨
+expansion of the universe 宇宙膨胀
+expansion parameter 膨胀参数
+expansion rate 膨胀率
+expansion time-scale 膨胀时标
+expectation value 期望值
+expected value 期望值
+expedition 远征观测队
+experimental astronomy 实验天文学
+explicit symmetry breaking 明显对称性破缺
+exploding galaxy 爆发星系
+exploding granule 爆发米粒
+exploding prominence 爆发日珥
+exploding star 爆发星
+exploration 探测; 探索
+explosion 爆炸; 爆发
+explosive era 爆发期
+explosive flare 爆发耀斑
+explosive galaxy 爆发星系
+explosive instability 爆发不稳定性
+explosive nucleosynthesis 爆发核合成
+explosive phase 爆发相
+explosive shower 爆炸簇射
+explosive variable 爆发变星
+expometer 曝光计
+exponential atmosphere 指数式大气
+exponential disk 指数盘
+exponential potential 指数势
+exponential prediction 指数预测
+exponential rigidity spectrum 指数硬度谱
+exponential spectrum 指数谱
+exponential spheroid 指数椭球体
+exponentially stable 指数式稳定
+exponometer 曝光计
+exposure 曝光
+exposure age 曝光时限
+exposure latitude 曝光时限
+exposure time 曝光时间
+exposure-meter 曝光计
+extar X射线星
+extended Kalman filter 扩充卡尔曼滤波器
+extended ROentgen Survey with an Imaging Telescope Array eROSITA巡天
+extended X-ray source X射线展源
+extended atmosphere 厚大气; 延伸大气
+extended envelope 厚包层; 延伸包层
+extended filamentary nebula 延展纤维星云
+extended filamentary radio nebula 延展纤维射电星云
+extended inflation 扩展暴胀
+extended infrared source 红外展源
+extended low-surface brightness source 低面亮度展源
+extended object 延展天体
+extended photosphere 厚光球; 延伸光球
+extended point transformation 扩充点变换
+extended quintessence 扩展精质
+extended radio source 射电展源
+extended scattering medium 延展散射介质
+extended source 展源
+extended supergravity 扩展超引力
+extended γ-ray source γ射线展源
+extended-phase space 扩充相空间
+extension 广延; 延展
+extensive air shower 广延大气簇射
+extensive air shower array 广延大气簇射阵
+exterior contact 外切
+exterior ingress 外初切
+external field 外场
+external force 外力
+external galaxy 河外星系
+external occultor 外遮星器
+external occultor coronagraph 外遮星冕仪
+external potential 外引力势
+external pressure confinement 外压力约束
+external resonance 外共振
+external shock 外激波
+external source hypothesis 外源说
+external weight 外部权
+externally dispersed interferometer 外部色散干涉仪
+extinct nuclide 死核素
+extinct volcano 死火山
+extinction 消光
+extinction coefficient 消光系数
+extinction cross-section 消光截面
+extinction curve 消光曲线
+extinction efficiency 消光效率
+extinct comet 休眠彗星
+extra dimension model 额外维模型
+extra spatial dimension 额外空间维度
+extra-meridian altitude 近子午线高度
+extra-meridian observation 近子午线观测
+extra-second 增秒
+extracentral telescope 偏侧望远镜
+extrafocal image 焦外像
+extrafocal photometer 焦外光度计
+extrafocal photometry 焦外测光
+extragalactic Cepheid 河外造父变星
+extragalactic HⅡ region 河外电离氢区
+extragalactic X-ray astronomy 河外X射线天文学
+extragalactic X-ray background 河外X射线背景
+extragalactic X-ray source 河外X射线源
+extragalactic astronomy 河外天文学
+extragalactic astrophysics 河外天体物理
+extragalactic background 河外背景
+extragalactic background light 河外背景光
+extragalactic background radiation 河外背景辐射
+extragalactic binary 河外双星
+extragalactic infrared astronomy 河外红外天文学
+extragalactic infrared background 河外红外背景
+extragalactic infrared source 河外红外源
+extragalactic matter 河外物质
+extragalactic medium 河外介质
+extragalactic nebula 河外星云
+extragalactic nova 河外新星
+extragalactic object 河外天体
+extragalactic planetary nebula 河外行星状星云
+extragalactic radio astronomy 河外射电天文学
+extragalactic radio background 河外射电背景
+extragalactic radio radiation 河外射电
+extragalactic radio source 河外射电源
+extragalactic source 河外源
+extragalactic space 河外空间
+extragalactic supernova 河外超新星
+extragalactic system 河外星系
+extragalactic γ-ray astronomy 河外γ射线天文学
+extragalactic γ-ray background 河外γ射线背景
+extragalactic γ-ray source 河外γ射线源
+extragalectic jet 河外喷流
+extrahead 反常谱带头
+extraordinary ray 非常射线
+extraordinary wave 非常波
+extraplanar gas 缩写:EPG。盘外气体
+extraplanetary space 行星区外空间
+extrasensitivity 特高灵敏度
+extrasolar X-ray source 太阳外X射线源
+extrasolar comet [太阳]系外彗星
+extrasolar life [太阳]系外生命
+extrasolar planet 系外行星
+extrasolar planetary system 系外行星系
+extrasolar radio source [太阳]系外射电源
+extrasolar γ-ray source [太阳]系外γ射线源
+extraterrestrial body 地外天体
+extraterrestrial civilization 地外文明
+extraterrestrial dust 地外尘
+extraterrestrial intelligence 地外智慧生物
+extraterrestrial life 地外生命
+extraterrestrial matter 地外物质
+extraterrestrial object 地外天体
+extraterrestrial radiation 地外辐射
+extraterrestrial source 地外源
+extravehicular activity 缩写:EVA。舱外活动
+extremal black hole 极端黑洞
+extremal curve 极值曲线
+extremal field 致极场
+extreme Kerr black hole 极端克尔黑洞
+extreme Population I star 极端星族Ⅰ恒星
+extreme adaptive optics 缩写:ExAO。极端自适应光学
+extreme carbon star 极端碳星
+extreme helium star 极端氦星
+extreme metal-poor star 极贫金属星
+extreme metal-rich star 极富金属星
+extreme population Ⅰ 臂族; 极端星族Ⅰ
+extreme population Ⅰ star 极端星族Ⅰ恒星
+extreme population Ⅱ 晕族; 极端星族Ⅱ
+extreme ultraviolet astronomy 缩写:XUV astronomy。极紫外天文学
+extreme value 极值
+extreme-ultraviolet 缩写:XUV; EUV。极紫外
+extreme-ultraviolet background 极紫外背景
+extreme-ultraviolet background radiation 极紫外背景辐射
+extreme-ultraviolet galaxy 极紫外星系
+extreme-ultraviolet radiation 极紫外辐射
+extreme-ultraviolet source 极紫外源
+extreme-ultraviolet star 极紫外星
+extremely red object 缩写:ERO。极红天体
+extremophile 嗜极生物
+extremum 极值
+extrinsic curvature 外在曲率
+extrinsic variable 外因变星
+extrusion 喷出
+eye and ear method 耳目法
+eye and key method 目键法
+eye estimate 目视估计
+eye observation 目测
+eye relief 适瞳距
+eye sensitivity curve 目视灵敏曲线
+eye-circle 出射光瞳
+eye-end 目端
+eye-point distance 眼点距
+eyelens 接目镜
+eyepiece 目镜
+eyepiece grid 目镜网络
+eyepiece micrometer 目镜测微计
+eyepiece scale 目镜标度
+eyepiece slide 目镜筒
+eyesight tester 视力检测星
+f number f数; 焦比数
+f(R) gravity f(R) 引力
+f(T) theory f(T)理论
+f-mode f模; 基本模
+f-spot 全称:following sunspot; following spot; trailer sunspot; trailer spot。后随黑子; f黑子
+f-sum rule f求和定则
+f-value f值
+f.u. 全称:flux unit。流量单位
+fabrication technique 光纤技术
+face-on 正向
+face-on galaxy 正向星系
+face-on object 正向天体
+face-on spiral galaxy 正向旋涡星系
+facility seeing 人为视宁度
+facsimile 传真
+factor of dilution of radiation 辐射稀化因子
+factorability filter 可分因子滤波器; 可分因子滤光片
+factorability property 可分因子特性
+facula 光斑
+facular area 光斑区
+facular granule 光斑米粒
+facular point 光斑亮点
+facular region 光斑区
+fade-out 衰弱; 消失
+faded nova 爆后新星
+fading time 衰老时间
+faint blue galaxy 暗蓝星系
+faint blue object 暗蓝天体
+faint blue star 暗蓝星
+faint companion 暗伴天体; 暗伴星; 暗伴星系
+faint galaxy 暗星系
+faint meteor 暗流星
+faint object 暗天体
+faint source 暗源
+faint star 暗星
+fair sample hypothesis 合理样本假说
+fake Zeeman splitting 赝塞曼分裂
+falcate 弯月形
+fall 1、落; 没; 2、见落陨石
+fall of the sea 落潮
+falling star 流星
+false alarm probability 缩写:FAP。误报率
+false dawn 假曙光
+false image 误像
+false vacuum 伪真空
+false zodiacal light 假黄道光
+false-color image 假彩色像
+false-color imagery 假彩色成像
+false-color photometry 假彩色测光
+family of asteroids 小行星族
+family of comets 彗星族
+family of nonclosed orbit 非闭合轨道族
+fan 扇状物; 扇状流
+fan in 输入端数
+fan jet 扇形喷流
+fan out 输出端数
+fan ray 扇形射线
+fan-beam 扇束
+fan-like structure 扇形结构
+fan-shaped nebula 扇状星云
+fan-shaped tail 扇状彗尾
+far IR 全称:far infrared。远红外
+far UV 全称:far ultraviolet。远紫外
+far end infrared frequency 远红外频
+far infrared 缩写:far IR; FIR。远红外
+far side 背面
+far side of the Moon 月球背面
+far ultraviolet 缩写:far UV; FUV。远紫外
+far-field pattern 远场方向图
+far-infrared astronomy 远红外天文学
+far-infrared object 远红外天体
+far-infrared photometry 远红外测光
+far-infrared radiation 远红外辐射
+far-infrared spectroscopy 远红外分光
+far-infrared spectrum 远红外光谱
+far-ultraviolet astronomy 远紫外天文学
+far-ultraviolet object 远紫外天体
+far-ultraviolet photometry 远紫外测光
+far-ultraviolet radiation 远紫外辐射
+far-ultraviolet spectroscopy 远紫外分光
+far-ultraviolet spectrum 远紫外光谱
+fast Fourier transform 缩写:FFT。快速傅里叶变换
+fast angular variable 快变角变量
+fast astrocamera 强光力天体照相机
+fast drift burst 快漂暴
+fast ejection 快速抛射
+fast emulsion 快速乳胶
+fast evolving star 快速演化星
+fast fine structure 缩写:FFS。快速精细结构
+fast fringe 快条纹
+fast magnetosonic-wave speed 缩写:FMS。快磁声波速率
+fast mode wave 快模式波
+fast moving object 缩写:FMO。快动天体
+fast nova 快新星
+fast pulsar 快转脉冲星
+fast radio burst 缩写:FRB。快速射电暴
+fast steering mirror 快摆镜
+fast supernova 快超新星
+fast telescope 强光力望远镜
+fast wave 快波
+fast-moving star 快速星
+fast-rotating star 快转星
+fast-slewing telescope 快动望远镜
+fast-spinning black hole 快自旋黑洞
+fat zero 胖零
+fault 断层
+favorable opposition 大冲
+fayalite 铁橄榄石
+feature 特征; 结构
+feed 馈源; 照明器
+feed defocusing 馈源偏焦
+feed horn 喇叭馈源/号角形馈电源
+feedback 反馈
+feedback circuit 反馈回路
+feedback factor 反馈因子
+feedback loop 反馈环路
+feeder 馈线
+feeder network 馈线网络
+feeding zone 引力俘获区
+feldspar 长石
+fermion 费米子
+fermium 缩写:Fm。镄
+ferroelectric liquid crystal modulator 缩写:FLC modulator。铁电液晶调制器
+few-body problem 少体问题
+fiber bundle 光纤束
+fiber optics 纤维光学
+fiber plug plate 光纤插接板
+fiber positioning system 光纤定位系统
+fiber spectroscopy 纤维分光
+fiber-optic spectrograph 光纤摄谱仪
+fiber-optic spectroscopy 光纤分光
+fibril 小纤维
+fibrille 小纤维
+fibrous nebula 纤维状星云
+fictitious fluid 虚拟流体
+fictitious force 虚拟力
+fictitious mean sun 假平太阳
+fictitious star 假星
+fictitious sun 假太阳
+fictitious time 虚时
+fictitious year 假年
+fiducial confidence bar 置信棒
+fiducial confidence box 置信框
+fiducial confidence circle 置信圆
+fiducial confidence ellipse 置信椭圆
+fiducial limit 置信限
+fiducial mark 基准标
+fiducial point 基准点
+field astronomy 野外天文学
+field center 场中心
+field correction 像场改正
+field corrector 场改正镜
+field curvature 场曲
+field derotator 像场消旋器
+field distortion 场畸变
+field division 分野
+field effect 场效应
+field equation 场方程
+field flattener 平场器
+field flattening 平像场
+field flattening correction 平像场校正
+field flattening lens 平场镜
+field galaxy 场星系
+field galaxy luminosity function 场星系光度函数
+field intensity 场强
+field lens 场[透]镜
+field line annihilation 磁力线湮灭
+field line reconnection 磁力线重联
+field nebula 场星云
+field of curvature 曲率场
+field of force 力场
+field of prominences 日珥场
+field of regard 能视域
+field of view 缩写:FoV。视场
+field optics 场致光学; 场镜系统; 像场光学
+field pattern 场方向图
+field pulsar 场脉冲星
+field reversal 场反转
+field star 场星
+field stop 场止
+field strength 场强
+field strengthmeter 场强计
+field transition arch 场贯联弧
+fight 斗
+figure of merit 优值; 灵敏值; 品质因素
+figure of the earth 地球形状
+figuring 修磨
+figuring of mirror 镜面修磨
+filament 1、暗条; 2、纤维; 丝
+filament activation 暗条激活
+filament channel 暗条沟
+filament foot 暗条足
+filament of chromosphere 色球暗条; 色球纤维
+filament oscillation 暗条振荡
+filament sudden disappearance 暗条突逝
+filamentary nebula 纤维状星云
+filamentary nebulosity 纤维星云状物质
+filamentary structure 纤维状结构
+filar micrometer 动丝测微计
+filigree 网斑; 光球细链
+filled aperture 连续孔径
+filled array 连续天线阵
+filled disk 连续碟式天线
+filled supernova remnant 云斑超新星遗迹
+filled-aperture dish 连续孔径碟形天线
+filled-aperture radio telescope 连续孔径射电望远镜
+filled-aperture reflector 连续孔径反射面
+filled-center supernova remnant 云心超新星遗迹
+filling factor 填充因子
+film distortion 底片变形
+film shift 底片药膜位移
+filter 滤光片; 滤波器
+filter attenuation band 滤光片减光带
+filter photography 滤光片照相观测
+filter photometry 滤光片测光
+filter stop band 滤光片不透明带
+filter transmission band 滤光片透射带
+filter wheel 滤光片转盘; 滤光片转轮
+filter-bank spectrometer 滤波频谱仪
+filtergram 单色像
+filtering 滤光; 滤波
+final decline 终降
+final orbit 终轨; 既定轨道
+final rise 终升
+final state 终态
+final velocity 末速度
+find 寻获陨石
+finder 寻星镜
+finder chart 寻星图
+finderscope 寻星镜
+finding chart 寻星图
+finding list 寻星星表
+fine analysis 精细分析
+fine guiding sensor 精确导星传感器
+fine motion 微动
+fine mottle 细日芒
+fine steering mirror 精密转向镜
+fine structure 精细结构
+fine tuning problem 精细调节问题
+fine-grain development 微粒显影
+fine-grained distribution function 细粒分布函数
+fine-grained image 微粒显像
+fine-motion screw 微动螺旋
+fine-structure constant 精细结构常数
+finesse 等强干涉束有效数
+finger of God 上帝手指
+finite difference 有限差分
+finite singularity 可去奇点
+finite wave-train 有限波列
+finite-temperature field theory 有限温度场论
+fire-clock 火钟
+fireball 火流星
+firehose instability 水龙带不稳定性
+firmament 天穹
+firmware 固件
+first Lagrangian point 第一拉格朗日点
+first approximation 一级近似
+first contact 初亏; 第一切
+first cosmic velocity 第一宇宙速度
+first day of lunar month 朔日
+first difference 一次差
+first galaxies 第一代星系
+first giant branch 初升巨星支
+first ion cyclotron wave 基频离子回旋波
+first meridian 本初子午线; 本初子午圈
+first objects 第一代天体
+first order phase transition 一级相变
+first order spectrum 一级光谱
+first order theory 一级近似理论
+first phase 初相
+first point of Aries 春分点
+first point of Cancer 夏至点
+first point of Capricornus 冬至点
+first point of Libra 秋分点
+first quarter 上弦
+first stars 第一代恒星
+first summation 一次累加
+first type surface 主表面
+first-ascent giant branch 初升巨星支
+first-rank galaxy 一级星系
+fish orbit 鱼形轨道
+fission 裂变
+fission fragment 分裂碎块
+fission hypothesis 分裂假说
+fission rocket 核裂变火箭
+fission track 分裂轨迹
+fitting 拟合
+fitting condition 拟合条件
+fitting curve 拟合曲线
+five elements 五行
+five palaces 五宫
+five-minute oscillation 五分钟振荡
+fixation 定影
+fixed altitude mounting 固定高度式装置
+fixed antenna 固定式天线
+fixed mean pole 固定平极
+fixed mounting 固定式装置
+fixed observatory 定点天文台
+fixed parabolic mirror 固定式抛物面反射镜
+fixed parabolic radio telescope 固定式抛物面射电望远镜
+fixed parabolic reflector 固定式抛物面反射镜
+fixed point 定点; 不动点
+fixed point method 不动点方法
+fixed point theorem 不动点定理
+fixed pole 固定极
+fixed radio telescope 固定式射电望远镜
+fixed satellite 静止卫星
+fixed spherical mirror 固定式球面反射镜
+fixed spherical radio telescope 固定式球面射电望远镜
+fixed spherical reflector 固定式球面反射镜
+fixed star 恒星
+fixed thread 定丝
+fixed-phase wave 固定相波
+fixed-tiltable mirror 半可动式反射镜
+fixed-tiltable reflector 半可动式反射镜
+fixer 定影剂
+fixing 定影
+fixing agent 定影剂
+fixing solution 定影液
+flame spectrum 火焰光谱
+flare 1、耀发; 2、耀斑
+flare arc 耀弧
+flare class 耀斑级; 耀斑级别
+flare flash 耀斑闪光
+flare importance 耀斑级; 耀斑级别
+flare indicator 耀斑指示器
+flare kernel 耀斑核
+flare loop 耀斑环
+flare nimbus 耀斑暗晕
+flare onset 耀斑激发
+flare particle emission 耀斑粒子发射
+flare physics 耀斑物理
+flare puff 耀斑喷焰
+flare ribbon 耀斑带; 耀斑亮带
+flare spectrum 耀斑光谱
+flare star 耀星
+flare surge 耀斑日浪
+flare variable 耀发变星
+flare wave 耀斑波
+flare-like brightening 类耀斑增亮
+flare-like phenomenon 类耀斑现象
+flaring 临边增厚
+flaring chromosphere 耀现色球
+flash 闪光
+flash phase 闪耀相; 闪相
+flash spectrum 闪光光谱
+flash star 闪星
+flashing light 闪光
+flashing-light satellite 闪光卫星
+flat 平场
+flat field 平场
+flat field correction 平场改正
+flat field photometry 平场测光
+flat fielding 平场处理
+flat rotation curve 平坦自转曲线
+flat space 平直空间
+flat spectrum 平谱
+flat spectrum radio quasar 缩写:FSRQ。平谱射电类星体
+flat spectrum source 平谱源
+flat spiral feed 扁平螺旋馈源
+flat universe 平直宇宙; 平坦宇宙
+flatness 平直度
+flatness problem 平直性问题
+flattening factor 扁率
+flavour 味
+flexion 拐变
+flexure 弯沉
+flexure of the tube 镜筒弯沉
+flexus 弯脊结构
+flicker effect 闪变效应
+flicker frequency 闪变频率
+flicker noise 闪变噪声
+flicker phase 闪变相
+flicker photometer 闪变光度计
+flickering 闪变
+flickering binary 闪变双星
+flickering meteor 闪变流星
+flickering star 闪变星
+flickering white dwarf 闪变白矮星
+flint glass 火石玻璃
+floating zenith telescope 缩写:FZT。浮动天顶筒
+flocculent spiral 絮状旋涡结构
+flocculent spiral arm 絮状旋臂
+flocculus 谱斑
+flood tide 涨潮
+flow chart 流程图
+flow instability 流态不稳定性
+flow pattern 流动图案
+fluctuating field 起伏场
+fluctuation 起伏
+fluctuation spectrum 起伏谱
+fluence 注量; 能流
+fluid dynamics 流体动力学
+fluid mechanics 流体力学
+fluorescence 荧光
+fluorescence astronomy 荧光天文学
+fluorescence spectrum 荧光光谱
+fluorescent line 荧光谱线
+fluorescent radiation 荧光辐射
+fluorine 缩写:F。氟
+fluorite 萤石
+flute instability 槽形不稳定性
+flux 流量
+flux collector 聚流器
+flux deficit 流量亏损
+flux density 流量密度
+flux density scale 流量密度标
+flux density spectrum 流量密度谱
+flux depression 流量衰减
+flux limited redshift survey 流量极限红移巡天
+flux of radiation 辐射流量
+flux of signal particles 信号粒子流量
+flux quantization 磁流量子化
+flux quantum 磁流量子
+flux scale 流量标
+flux standard 流量标准
+flux standard star 流量标准星
+flux unit 缩写:f.u.。流量单位
+flux-gravity diagram 流量-重力图
+flux-tube dynamics 磁流管动力学
+fluxmeter 磁流计
+flyby 飞掠
+flyby interplanetary orbit 行星际飞掠轨道
+flyby interplanetary trajectory 行星际飞掠轨迹
+flyby orbit 飞掠轨道
+flyby trajectory 飞掠轨迹
+flying clock 飞行钟
+flying clock measurement 飞行钟测量
+flying saucer 飞碟
+focal distance 焦距
+focal extender 延焦器
+focal image 焦面像
+focal length 焦距
+focal line 焦线
+focal plane 焦面
+focal plane assembly 缩写:FPA。焦面组件
+focal point 焦点
+focal power 焦度
+focal ratio 焦比
+focal ratio degradation 缩写:FRD。焦比衰退
+focal reducer 缩焦器
+focal surface 焦面
+focal-plane array 焦面阵
+focal-plane instrumentation 焦面附属仪器
+focal-plane modulator 焦面调制器
+focal-plane spectrometer 焦面分光计
+focus 焦点
+focused reflector 焦正反射面
+focuser 聚焦器
+focusing 调焦; 聚焦
+focusing X-ray telescope 聚焦X射线望远镜
+focusing glass 聚焦透镜
+focusing magnet 聚焦磁体
+focusing ring 调焦环
+focusing screw 调焦螺旋
+focusing γ-ray telescope 聚焦成像γ射线望远镜
+fog 雾
+fog density 雾密度
+fold 折叠
+fold catastrophe 折叠突变
+folded Schmidt camera 折叠式施密特照相机
+folded camera 折叠式照相机
+folded dipole 折叠偶极
+folded refractor 折叠式折射望远镜
+follow-up 随动
+following 后随
+following arm 曳臂
+following edge 东边缘; 后随边缘
+following limb 东边缘; 后随边缘
+following member 后随成员
+following spot 缩写:f-spot。后随黑子; f黑子
+following sunspot 缩写:f-spot。后随黑子; f黑子
+foot screw 地脚螺旋
+footpoint 地脚点
+footprint 覆盖区
+forbidden line 禁线
+forbidden transition 禁戒跃迁
+force actuator 力型致动器
+force density 力密度
+force due to viscosity 黏性力
+force function 力函数
+force softening 力软化
+force-carrier particles 载体粒子
+force-free field 无力场
+force-free magnetic field 无力磁场
+forced absorption 受迫吸收
+forced emission 受迫发射
+forced nutation 受迫章动
+forced oscillation 受迫振荡
+forced transition 受迫跃迁
+forced vibration 受迫振动
+fore optics system 输入光学系统
+forecast 预报
+foreground galaxy 前景星系
+foreground galaxy cluster 前景星系团
+foreground radiation 前景辐射
+foreground removal 前景减除
+foreground rotation 前景旋转
+foreground star 前景星
+foreground subtraction 前景减除
+forescattering 向前散射
+foreshortening 投影缩减
+foreshortening effect 投影缩减效应
+fork mounting 叉式装置
+fork telescope mount 叉式望远镜装置
+forked mounting 叉式装置
+form factor 形状因子; 波形因子
+formal accuracy 形式精度
+formal stability 形式稳定性
+formal transformation 形式变换
+formaldehyde 甲醛
+formally convergent 形式收敛
+formamide 甲酰胺
+formation of elements 元素形成
+formation of galaxy 星系形成
+formation of image 成像
+formation of stars 恒星形成
+formyl radical 甲酰基
+forsterite 镁橄榄石
+forward difference 前向差分
+forward scattering 前向散射
+forward shock 正向激波
+fossa 堑沟
+fossil Stroemgren sphere 古斯特龙根球
+fossil crater 化石环形山
+fossil field model 化石场模型
+fossil group 化石星系群
+fountain clock 喷泉钟
+fountain model 喷泉模型
+four celestial images 四象
+four symbolic animals 四象
+four-axis mounting 四轴装置
+four-body problem 四体问题
+four-color photometry 四色测光
+four-dimensional universe 四维宇宙
+four-lens objective 四合物镜
+four-momentum 四维动量
+four-point correlation function 四点相关函数
+fourth contact 复圆
+fourth cosmic velocity 第四宇宙速度
+fractal Universe 分形宇宙
+fractal structure 分形结构
+fractiona of the year 年分
+fractional frequency 相对频率
+fractional gain error 相对增益误差
+fractional method 部分化方法
+fractional polarization 部分偏振
+fractional-bit-shift corrector 分数比特移位改正器
+fractionation 部分化
+fragmentation 碎裂
+fragmentation limit 碎裂极限
+frame bias 参考架偏差
+frame of axes 坐标架
+frame of reference 参考架; 参考系
+frame transfer 帧转移
+frame transfer CCD 帧转移CCD
+frame work 构架
+francium 缩写:Fr。钫
+free core nutation 缩写:FCN。自由核章动
+free electron 自由电子
+free energy 自由能
+free fall 自由落体
+free neutron 自由中子
+free nutation 自由章动
+free path 自由程
+free pendulum 自由摆
+free period 自由周期
+free radical 自由基
+free streaming 自由流动
+free vibration 自由振动
+free-bound absorption 自由-束缚吸收
+free-bound emission 自由-束缚发射
+free-bound transition 自由-束缚跃迁
+free-fall time 自由下落时间
+free-floating planet 缩写:FFP。自由飘荡行星
+free-flying telescope 空间望远镜
+free-free absorption 自由-自由吸收
+free-free emission 自由-自由发射
+free-free transition 自由-自由跃迁
+free-streaming damping 自由流动阻尼
+free-streaming of neutrino 中微子的自由流动
+freely falling body 自由下落物体
+freeze-out 冻结
+frequency allocation 频率分配
+frequency analysis 频率分析
+frequency band 频带
+frequency calibration 频率校准
+frequency comparision 频率比对
+frequency conversion 频率转换
+frequency converter 变频器
+frequency cutoff 频率截止
+frequency dispersion 频散
+frequency distribution 频率分布
+frequency domain 频域
+frequency drift 频率漂移
+frequency locking 锁频
+frequency measuring equipment 缩写:FME。测频装置
+frequency modulation 缩写:FM。调频
+frequency multiplier 倍频器
+frequency offset 频率偏置
+frequency resolution 频率分辨率
+frequency scale 频标
+frequency sensitivity 频率灵敏度
+frequency shift 频移
+frequency stability 频率稳定度
+frequency standard 频率标准
+frequency step 频率阶跃
+frequency switching 频率开关
+frequency transition 频率跃迁
+fretted terrain 侵蚀地形
+fretum 峡
+friction 摩擦
+frictional force 摩擦力
+friends-of-friends cluster finder algorithm 缩写:FoF cluster finder algorithm。二度好友寻团算法
+frigid zone 寒带
+fringe amplitude 条纹幅度
+fringe envelope 条纹包络
+fringe identification 条纹证认
+fringe order 条纹级
+fringe pattern 条纹图样
+fringe phase 条纹相位
+fringe rate 条纹率
+fringe separation 条纹间距
+fringe spacing 条纹间距
+fringe stopper 条纹驻留器
+fringe stopping 条纹驻留
+fringe stopping center 条纹驻留中心
+fringe stopping system 条纹驻留系统
+fringe tracking 条纹跟踪
+fringe trackor 条纹跟踪器
+fringe visibility 条纹可见度
+fringe-frequency spectrum 条纹-频率谱
+fringe-visibility spectrum 条纹可见度谱
+front end 前端
+front focus 前焦点
+front surface 前表面
+frontside-illuminated CCD 前照式CCD
+frontside-illuminated CMOS 前照式CMOS
+frost point 霜点
+frosting model 结霜模型
+frozen field 冻结场
+frozen star 冻结星
+frozen-in 冻结
+frozen-in element 冻结元素
+frozen-in magnetic field 冻结磁场
+frustum of a cone 截锥
+fuel ratio 燃料比
+full 盈
+full English mounting 全英国式装置
+full earth 满地
+full load 满载
+full moon 望; 满月
+full phase 满相
+full width at half-maximum 缩写:FWHM。半峰全宽
+full-earth brightness 满地亮度
+full-earth illumination 满地照明
+full-frame CCD 全帧式CCD
+full-moon brightness 满月亮度
+full-moon illumination 满月照明
+full-wave dipole 全波偶极
+fully coded field of view 全编码视场
+fully depleted CCD 全耗尽型CCD
+fully depleted pn-junction CCD 缩写:pnCCD。全耗尽pn结CCD
+fully ionized gas 完全电离气体
+fully ionized plasma 完全电离等离子体
+fully steerable dish 全动碟形天线
+fully steerable radio telescope 全动射电望远镜
+fully steerable reflector 全动反射面
+fundamental astrometry 基本天体测量学
+fundamental astronomical constant 基本天文常数
+fundamental astronomy 基本天文学
+fundamental circle 基本圈
+fundamental component 基本分量
+fundamental constant 基本常数
+fundamental coordinate system 基本坐标系
+fundamental force 基本力
+fundamental frequency 基频
+fundamental function 基本函数
+fundamental harmonic 基波
+fundamental mode 基本模
+fundamental observer 基本观测者
+fundamental particle 基本粒子
+fundamental plane 基面
+fundamental reference frame 基本参考架
+fundamental reference system 基本参考系
+fundamental series 基线系
+fundamental star 基本星
+fundamental string 基本弦
+fundamental system 基本系统
+fundamental unit 基本单位
+fundamental wave 基波
+fundamental-harmonic pair 基波对
+funnel prominence 漏斗状日珥
+funnel-shaped nebula 漏斗状星云
+funneling 漏斗
+funneling effect 漏斗效应
+furnace spectrum 电炉光谱
+fused quartz 熔石英
+fusee 均力圆锥轮
+fusion 聚变
+fusion crust 熔凝壳
+fusion of wave 多波反应
+fusion reaction 聚变反应
+fusion rocket 热核火箭
+future light cone 未来光锥
+fuzee 均力圆锥轮
+fuzz 展云
+fuzzy dark matter 模糊暗物质
+g-factor g因子
+g-mode g模; 重力模
+gadolinium 缩写:Gd。钆
+gain 增益
+gain error 增益误差
+gain factor 增益因子
+gain modulation 增益调制
+galactic absorbing layer 星系吸光层
+galactic absorption 星系吸光
+galactic age 星系年龄
+galactic arm 星系臂
+galactic astronomy 星系天文学
+galactic astrophysics 星系天体物理
+galactic bar 星系棒
+galactic bridge 星系桥
+galactic brightness 星系亮度
+galactic bubble 星系泡
+galactic bulge 星系核球
+galactic cannibalism 星系吞食
+galactic chimney 星系通道
+galactic collision 星系碰撞
+galactic component 星系子源
+galactic conformity 星系一致性
+galactic content 星系成分
+galactic coordinate 银道坐标
+galactic coordinate system 银道坐标系
+galactic core 星系核心
+galactic core source 星系核心源
+galactic core star 星系核心星
+galactic corona 星系冕
+galactic disk 星系盘
+galactic dynamics 星系动力学
+galactic environment 星系环境
+galactic equator 银道
+galactic evolution 星系演化
+galactic field 星系场
+galactic filament 星系纤维
+galactic formation 星系形成
+galactic gusher 星系喷射源
+galactic halo 星系晕
+galactic high-energy astrophysics 星系高能天体物理
+galactic infrared astronomy 星系红外天文学
+galactic jet 星系喷流
+galactic kinematics 星系运动学
+galactic latitude 银纬
+galactic longitude 银经
+galactic luminosity 星系光度
+galactic magnetic field 星系磁场
+galactic merging 星系并合
+galactic model 星系模型
+galactic nova 星系新星
+galactic nucleus 星系核
+galactic pericenter 近银心点
+galactic pole 银极
+galactic radio astronomy 星系射电天文学
+galactic radio astrophysics 星系射电天体物理
+galactic radio emission 星系射电
+galactic radio radiation 星系射电
+galactic rotation 星系自转
+galactic rotation curve 星系自转曲线
+galactic sheet 星系片
+galactic space 星系空间
+galactic structure 星系结构
+galactic superbubble 星系超泡
+galactic supernova 星系超新星
+galactic void 大尺度巨洞
+galactic walls 星系长城
+galactic wind 星系风
+galaxoid 星系体
+galaxy 星系
+galaxy assembly 星系组装
+galaxy astronomy 星系天文学
+galaxy bar 星系棒
+galaxy bias 星系偏袒
+galaxy bimodality 双星族星系组态
+galaxy cannibalism 星系吞并
+galaxy classification 星系分类
+galaxy cluster 星系团
+galaxy clustering 星系成团
+galaxy content 星系成分
+galaxy count 星系计数
+galaxy counting 星系计数
+galaxy distribution 星系分布
+galaxy encounter 星系交会
+galaxy evolution 星系演化
+galaxy formation 星系形成
+galaxy group environment 星系群环境
+galaxy harassment 星系干扰
+galaxy merger 并合星系
+galaxy merging 星系并合
+galaxy morphology 星系形态
+galaxy nucleus 星系核
+galaxy power spectrum 星系功率谱
+galaxy strangulation 星系遏制
+galaxy supercluster 超星系团
+galaxy survey 星系巡天
+galaxy type 星系型
+galaxy void 星系际巨洞
+galaxy-galaxy lensing 星系-星系引力透镜
+gallium 缩写:Ga。镓
+gap center 缝心
+gap of asteroid ring 小行星环缝
+gap of asteroids 小行星带隙
+gap of satellite ring 卫星环缝
+gardening 表土混合
+gas 气体
+gas SPC 全称:gas scintillation proportional counter。气体闪烁正比计数器
+gas accretion 气体吸积
+gas cell 气泡; 气室
+gas cloud 气体云
+gas content 气体成分
+gas density 气体密度
+gas distribution 气体分布
+gas dynamics 气体动力学
+gas electron multiplier 缩写:GEM。气体电子倍增器
+gas envelope 气体包层
+gas giant planet 气态巨行星
+gas hypersensitization 气体敏化
+gas jet 气体喷流
+gas kinematics 气体运动学
+gas kinetics 气体动理学
+gas laser 气体激光器
+gas law 气体定律
+gas nebula 气体星云
+gas planet 气态行星
+gas retention age 气体保留年龄
+gas scintillation proportional counter 缩写:gas SPC。气体闪烁正比计数器
+gas stream 气体流
+gas tail 气体彗尾
+gas-dust cloud 气尘云
+gas-dust complex 气尘复合体
+gas-dust envelope 气尘包层
+gas-dust nebula 气尘星云
+gas-kinetic diameter 气体动理学直径
+gas-kinetic theory 气体分子运动论; 气体动理[学理]论
+gas-poor comet 贫气彗星
+gas-pressure 气体压力
+gas-rich asteroid 富气小行星
+gas-rich meteorite 富气陨星
+gas-rich satellite 富气卫星
+gas-to-dust ratio 气尘比
+gaseous collapse 气态坍缩
+gaseous disk 气体盘
+gaseous emission nebula 气体发射星云
+gaseous halo 气态晕
+gaseous mass 气团
+gaseous nebula 气体星云
+gaseous planet 气态行星
+gaseous ring 气环
+gaseous spectrum 气体光谱
+gaseous sphere 气体球
+gaseous train 气体余迹
+gated noise 选通噪声
+gated noise source 选通噪声源
+gauge boson 规范玻色子
+gauge condition 规范条件
+gauge field 规范场
+gauge freedom 规范自由度
+gauge group 规范群
+gauge invariance 规范不变性
+gauge invariant 规范不变量
+gauge particle 规范粒子
+gauge symmetry 规范对称性
+gauge theory 规范理论
+gauge transformation 规范变换
+gegenschein 对日照
+general astronomy 普通天文学
+general astrophysics 普通天体物理
+general circulation 总环流
+general electric synchrotron 广义电同步加速
+general elliptic type 一般椭圆型
+general field star 场星
+general magnetic field 普遍磁场
+general perturbation 普遍摄动
+general precession 总岁差
+general precession in longitude 黄经总岁差
+general relativity 缩写:GR。广义相对论
+general theory of relativity 广义相对论
+general-relativistic effect 广义相对论效应
+generalization of Hill problem 广义希尔问题
+generalized coordinate 广义坐标
+generalized displacement 广义位移
+generalized ensemble 广义系综
+generalized force 广义力
+generalized main sequence 广义主序
+generalized momentum 广义动量
+generalized solution of Lagrange 广义拉格朗日解
+generating 生成
+generating function 生成函数
+generating periodic solution 生成周期解
+generator 发生器
+genetic connection 演化关联
+genus 亏格
+genus of cosmic density field 宇宙密度场亏格
+geoastrophysics 地球天体物理
+geoceiver 大地接收机
+geocentric angle 地心角
+geocentric apparent motion 地心视动
+geocentric colatitude 地心余纬
+geocentric conjunction 地心合
+geocentric conjunction in right ascension 地心赤经合
+geocentric constant 地心常数
+geocentric coordinate 地心坐标
+geocentric distance 地心距离
+geocentric ephemeris 地心历表
+geocentric gravitational constant 地心引力常数
+geocentric horizon 地心地平
+geocentric latitude 地心纬度
+geocentric longitude 地心经度
+geocentric orbit 地心轨道
+geocentric parallax 地心视差
+geocentric phenomena 地心天象
+geocentric position 地心位置
+geocentric radiant 地心辐射点
+geocentric system 地心体系
+geocentric velocity 地心速度
+geocentric zenith 地心天顶
+geochemistry 地球化学
+geocorona 地冕
+geodesic completeness 测地完备性
+geodesic coordinate 测地坐标
+geodesic equations 测地线方程组
+geodesic line 测地线
+geodesic nutation 测地章动
+geodesic precession 测地岁差
+geodesic satellite 测地卫星
+geodesically complete connection 测地完备联络
+geodesy 大地测量学
+geodetic astronomy 大地天文学
+geodetic azimuth 大地方位角
+geodetic base line 大地测量基线
+geodetic constant 大地常数
+geodetic coordinate 大地坐标
+geodetic datum 大地基准点
+geodetic latitude 大地纬度
+geodetic longitude 大地经度
+geodetic nutation 测地章动
+geodetic precession 测地岁差
+geodetic refraction 地平大气折射
+geodetic satellite 测地卫星
+geodetic surveying 大地测量学
+geodetic triangle 大地定位三角形
+geodetic zenith 大地天顶
+geodimeter 光速测距仪
+geodynamics 地球动力学
+geographic coordinate 地理坐标
+geographic equator 地理赤道
+geographic latitude 地理纬度
+geographic longitude 地理经度
+geographic meridian 地理子午线
+geographic position 地理位置
+geoid 地球体; 大地水准面
+geoid surface 大地水准面
+geoidal height 大地水准面高度
+geoidal horizon 大地水准面地平面
+geological age 地质年龄
+geological dating 地质计年
+geological era 地质代
+geological time 地质时代
+geological time scale 地质时标
+geology 地质学
+geomagnetic activity 地磁活动
+geomagnetic anomaly 地磁异常
+geomagnetic axis 地磁轴
+geomagnetic boundary 地磁边界
+geomagnetic cavity 地磁穴
+geomagnetic chart 地磁图
+geomagnetic coordinate 地磁坐标
+geomagnetic cut-off latitude 地磁截止纬度
+geomagnetic declination 地磁偏角
+geomagnetic dipole 地磁偶极子
+geomagnetic disturbance 地磁扰动
+geomagnetic equator 地磁赤道
+geomagnetic field 地磁场
+geomagnetic inclination 地磁倾角
+geomagnetic micropulsation 地磁微脉动
+geomagnetic parameter 地磁参数
+geomagnetic pole 地磁极
+geomagnetic pulsation 地磁脉动
+geomagnetic shell 地磁壳层
+geomagnetic spiral field 地磁螺旋场
+geomagnetic storm 磁暴
+geomagnetic tail 地磁尾
+geomagnetic tide 地磁潮
+geomagnetism 地磁
+geomechanics 地球力学; 地质力学
+geometric aberration 几何像差
+geometric area 几何面积
+geometric cross-section 几何截面
+geometric delay 几何延迟
+geometric depth 几何深度
+geometric effect 几何效应
+geometric latitude 几何纬度
+geometric libration 几何天平动
+geometric longitude 几何经度
+geometric path 几何路程
+geometric position 几何位置
+geometric satellite geodesy 卫星几何测地学
+geometric variable 几何变星
+geometrical aberration 几何像差
+geometrical albedo 几何学反照率
+geometrical libration 几何天平动
+geometrically thin lens 几何薄透镜
+geometrodynamics 四维几何动力学
+geomorphology 地形学
+geon 引力电磁子
+geonomy 地学; 地球学
+geophysical effect 地球物理效应
+geophysical observatory 地球物理观测台
+geophysical phenomena 地球物理现象
+geophysical satellite 地球物理卫星
+geophysical station 地球物理观测站
+geophysical year 地球物理年
+geophysics 地球物理
+geopotential 大地势
+georgiaite 乔治亚陨石
+geospace 近地空间
+geosphere 陆圈; 陆界
+geostational satellite 静地卫星
+geostationary orbit 静地轨道
+geostationary satellite 静地卫星
+geostrophic motion 地转性运动
+geosynchronous orbit 同步轨道
+geosynchronous satellite 地球同步卫星
+geotectonics 大地构造学
+gerade 偶态
+germanium 缩写:Ge。锗
+germanium bolometer 锗测辐射热计
+germanium detector 锗探测器
+gf-value 加权振子强度
+ghost crater 假环形山
+ghost field 鬼场
+ghost image 鬼像
+ghost line 鬼线
+giant arc 巨型光弧
+giant branch 巨星支
+giant cell 巨泡
+giant donor 输质巨星
+giant elliptical galaxy 巨椭圆星系
+giant galaxy 巨星系
+giant granulation 巨米粒组织
+giant granule 巨米粒
+giant impact hypothesis 大碰撞假说
+giant maximum 巨极大
+giant minimum 巨极小
+giant molecular cloud 缩写:GMC。巨分子云
+giant molecular cloud complex 巨分子云复合体
+giant planet 巨行星
+giant pulse 巨脉冲
+giant radio galaxy 巨射电星系
+giant radio pulse 巨射电脉冲
+giant spiral galaxy 巨旋涡星系
+giant star 巨星
+giant-branch star 巨星分支星
+gibbous moon 凸月
+gillion 十亿
+gimbal mounting 换向装置
+gimbal-mounted polarimeter 换向装置偏振计
+glacial period 冰期
+glaciation 冰蚀
+glaciology 冰川学
+glancing incidence telescope 掠入成像望远镜
+glass circle 玻璃度盘
+glass fiber 玻璃纤维
+glass filter 玻璃滤光片
+glass spherule 玻璃球粒
+glass-ceramic 微晶玻璃
+glass-lined crater 搪玻璃环形山
+glass-lined microcrater 搪玻璃微型环形山
+glass-prism spectrograph 玻璃棱镜摄谱仪
+glass-prism spectroscope 玻璃棱镜分光镜
+glitch 自转突变
+glitch activity 自转突变活动
+global change 全球变化
+global error 全局误差
+global helioseismology 整体日震学
+global mode 整体模型
+global oscillation 全球振荡
+global regularization 全局正规化
+global sensitivity 总体灵敏度
+global symmetry 全局对称性
+global time synchronization 全球时间同步
+globe 地球
+globular cluster 球状星团
+globular galaxy 球状星系
+globular star cluster 球状星团
+globule 球状体
+globulette 小球状体
+gluon 胶子
+gnomon 1、圭表; 2、表
+gnomon shadow template 圭
+gnomonic projection 心射切面投影
+gnomonics 日晷法
+go-to telescopes 自动寻星望远镜
+goethite 针铁矿
+gold 缩写:Au。金
+gold number 金数
+gold spot disease 金斑病
+gold-doped germanium detector 锗掺金探测器
+gondola 气球吊篮
+good quantum number 好量子数
+graben 地堑
+graceful exit problem 优雅退出问题
+gradation 渐变
+gradient 梯度
+grading 照明
+grading function 照明函数
+gradual burst 缓慢暴
+gradual ionospheric disturbance 缩写:GID。电离层渐扰
+gradual production 缓慢产生
+graduated arc 刻度弧
+graduated circle 刻度盘
+graduated leaker 刻漏
+graduated scale 刻度尺
+graduation 刻度
+graduation error 刻度误差
+grain 粒
+gram atom 克原子
+gram weight 克重
+grand canonical ensemble 巨正则系综
+grand design 宏观图像
+grand design spiral 宏象旋涡结构
+grand design spiral galaxy 宏象旋涡星系
+grand ensemble 巨系综
+grand origin 1、上元; 2、上元积年
+grand unified theory 缩写:GUT。大统一理论
+granite 花岗岩
+granulation 米粒组织
+granule 米粒
+graphic method 图解法; 图示法
+graphite 石墨
+graphite flake 石墨片
+graticule 栅网
+grating 光栅
+grating array 栅阵
+grating constant 光栅常数
+grating image 光栅星像
+grating lobe 栅瓣
+grating response 栅阵响应
+grating ring 栅环
+grating space 栅线间距
+grating spectrograph 光栅摄谱仪
+grating spectrometer 光栅分光计
+grating spectroscope 光栅分光镜
+grating spectrum 光栅光谱
+gravimeter 重力计
+gravimetric baseline 重力基线
+gravimetry 重力测量
+gravipause 重力分界
+gravisphere 重力范围
+gravitating disk 引力盘
+gravitation 引力
+gravitation constant 引力常数
+gravitation effect 引力效应
+gravitation law 引力定律
+gravitational acceleration 引力加速度; 重力加速度
+gravitational astronomy 引力天文学
+gravitational attraction 引力吸引
+gravitational bend angle 引力偏折角
+gravitational binary 引力双星
+gravitational bremsstrahlung 引力轫致辐射
+gravitational capture 引力俘获
+gravitational clustering 引力成团
+gravitational collapse 引力坍缩
+gravitational condensation 引力凝聚
+gravitational constant 引力常数
+gravitational contraction 引力收缩
+gravitational darkening 引力昏暗
+gravitational deflection 引力弯曲; 引力偏折
+gravitational differentiation 引力分异
+gravitational displacement 引力位移
+gravitational distortion 引力畸变
+gravitational double star 引力双星
+gravitational effect 引力效应
+gravitational encounter 引力交会
+gravitational energy 引力能
+gravitational equilibrium 引力平衡
+gravitational field 引力场
+gravitational focusing 引力聚焦
+gravitational force 引力
+gravitational freeze-out 引力冻结
+gravitational instability 引力不稳定性
+gravitational interaction 引力作用
+gravitational lens 引力透镜
+gravitational lens effect 引力透镜效应
+gravitational lensing 引力透镜效应
+gravitational lensing effect 引力透镜效应
+gravitational mass 引力质量
+gravitational micro-lens 微引力透镜
+gravitational micro-lensing 微引力透镜效应
+gravitational paradox 引力佯谬
+gravitational potential 引力势
+gravitational potential well 引力势阱
+gravitational radiation 引力辐射
+gravitational radius 引力半径
+gravitational redshift 引力红移
+gravitational relaxation 引力弛豫
+gravitational scattering 引力散射
+gravitational shift 引力偏移
+gravitational strain 引力应变
+gravitational synchrotron radiation 引力同步加速辐射
+gravitational thermodynamics 引力热力学
+gravitational tide 引力潮
+gravitational time dilation 引力时间延缓
+gravitational time scale 引力时标
+gravitational wave 缩写:GW。引力波
+gravitational wave astronomy 引力波天文学
+gravitational wave source 引力波源
+gravitational wave telescope 引力波望远镜
+gravitational wobble 引力摆动
+gravitino 引力微子
+graviton 引力子
+gravity 重力
+gravity anomaly 重力异常
+gravity assist 重力助推
+gravity center 重心
+gravity darkening 重力昏暗
+gravity drift 重力漂移
+gravity driving clock 重力转仪钟
+gravity field 重力场
+gravity gradient 重力梯度
+gravity gradiometer 重力梯度仪
+gravity wave 重力波
+gravothermal catastrophe 引力热灾变
+grazing eclipse 掠食
+grazing incidence 掠射
+grazing incidence optics 掠射光学
+grazing incidence spectrograph 掠射摄谱仪
+grazing incidence system 掠射系统
+grazing incidence telescope 掠射望远镜
+grazing occultation 掠掩
+grazing transit 掠凌
+great circle 大圆
+great inequality 中心差
+great star 景星
+great year 大年
+greatest brilliancy 最大亮度
+greatest eastern elongation 东大距
+greatest elongation 缩写:GE。大距
+greatest north latitude 最大北黄纬
+greatest south latitude 最大南黄纬
+greatest western elongation 西大距
+green flash 绿闪
+green line 绿谱线
+green pea galaxy 缩写:GP galaxy。青豆星系
+green segment 绿闪瞬间
+green sun 绿闪太阳
+greenhouse effect 温室效应
+gregorite 钛铁矿
+grens 透镜棱栅
+grey atmosphere 灰大气
+grey body 灰体
+grey hole 灰洞
+grey matter 灰色物质
+grey-body radiation 灰体辐射
+grey-scale map 灰度图
+grid 栅格
+grid collimator 栅格准直器
+gridding 栅格化
+grism 棱栅
+grism spectrograph 棱栅摄谱仪
+gross shutter 总快门
+ground 地
+ground absorption 地面吸收
+ground cosmic rays enhancement 缩写:GCE。地面宇宙线增强
+ground glass 毛玻璃
+ground level 基级
+ground level event 缩写:GLE。地面粒子事件
+ground plane 地平面
+ground radiation 地面辐射
+ground screen 地面屏蔽
+ground state 基态
+ground station 地面站
+ground timing system 地面定时系统
+ground wave propagation 地波传播
+ground wave radio signal 地波无线电信号
+ground-based astronomy 地面天文学
+ground-based observation 地基观测
+ground-based observatory 地基天文台
+ground-based telescope 地基望远镜
+ground-layer adaptive optics 缩写:GLAO。地面层自适应光学
+group correction 组间改正
+group delay 群延迟
+group frequency 群频率
+group mean latitude 组平均纬度
+group motion 群动
+group of asteroids 小行星群
+group of comets 彗星群
+group of galaxies 星系群
+group of stars 恒星群
+group parallax 星群视差
+group phenomena 群现象
+group representation 群表象
+group velocity 群速度
+growth curve 生长曲线
+growth defect 生长缺陷
+growth factor 增长因子
+growth function 增长函数
+growth rate 生长速率
+growth time 生长时标
+guest star 客星
+guidance 导星; 制导
+guide meridian 参考子午线
+guide star 引导星
+guide system 导星系统
+guide telescope 导星镜
+guider 1、导星装置; 2、导星镜
+guidescope 导星镜
+guiding 导星
+guiding center 导中心
+guiding device 导星装置
+guiding error 导星误差
+guiding microscope 导星测微镜
+guiding star 引导星
+guiding system 导星系统
+guiding telescope 导星镜
+guillotine factor 截断因子
+gyration 回转
+gyration period 回转周期
+gyration time 回转时间
+gyrocompass 陀螺罗盘
+gyroemission 回旋加速发射
+gyrofrequency 回旋加速频率
+gyrofrequency plasmon 回转频率等离激元
+gyromagnetic radiation 磁回旋辐射
+gyroradius 回旋半径
+gyrorelaxation 回转弛豫
+gyroresonance 回旋共振
+gyroresonance radiation 回旋共振辐射
+gyroresonant absorption 回旋共振吸收
+gyroresonant radiation 回旋共振辐射
+gyrorotor 陀螺转子
+gyroscope 陀螺仪
+gyrosextant 陀螺六分仪
+gyrostat 陀螺仪
+gyrosynchrotron radiation 回旋同步加速辐射
+h Persei cluster 英仙 h 星团
+h and χ Persei 英仙双星团
+haab 哈布年
+habitability 宜居性
+habitable planet 宜居行星
+habitable zone 宜居带
+hadron 强子
+hadron barrier 强子势垒
+hadron era 强子期
+hafnium 缩写:Hf。铪
+halation 光晕
+half moon 半月
+half width 半宽
+half width at half maximum 缩写:HWHM。半峰半宽
+half-coded field of view 半编码视场
+half-life 半衰期
+half-light radius 半光半径
+half-maximum line breadth 半峰线宽
+half-peak width 半峰宽度
+half-power beam width 缩写:HPBW。半功率束宽
+half-wave dipole 半波偶极子
+half-wave plate 半波晶片
+halo 晕
+halo assembly bias 晕组装偏袒
+halo bias 晕偏袒
+halo concentration 晕聚集度
+halo creation rate 晕产生率
+halo density profile 晕密度轮廓
+halo destruction rate 晕破坏率
+halo dwarf 晕族矮星
+halo globular cluster 晕族球状星团
+halo mass function 晕质量函数
+halo merger rate 晕并合率
+halo model 晕模型
+halo object 晕族天体
+halo occupation distribution 缩写:HOD。暗晕占居数分布
+halo of galaxy 星系晕
+halo of radio-burst region 射电暴晕
+halo orbit 晕轨道
+halo population 晕族; 极端星族Ⅱ
+halo radiation 晕辐射
+halo radius 晕半径
+halo star 晕族星
+halo-core structure 晕核结构
+halo-tail structure 晕-尾结构
+handler 信息处理机
+hanging level 悬水准
+harbinger 前兆
+hard X-ray source 硬X射线源
+hard X-rays 硬X射线
+hard binary 硬双星
+hard crown-glass 硬冕玻璃
+hard electron 高能电子
+hard image 高反差图像
+hard γ-rays 硬 γ射线
+hard-clipped auto-correlation 强削波自相关
+hard-clipped auto-correlator 强削波自相关器
+hardening rate 硬化率
+hardware 硬件
+harmonic analysis 谐波分析
+harmonic component 谐分量
+harmonic coordinate 调和坐标
+harmonic frequency 谐频
+harmonic gauge 谐和规范
+harmonic law 调和定律
+harmonic motion 谐运动
+harmonic oscillator 谐振子; 谐振荡器
+harmonic overtone 谐波
+harmonic pair 谐波对
+harvest moon 获月
+head bands 彗头谱带
+head of comet 彗头
+head-on collision 正面碰撞
+head-on cross-section 正截面
+head-on encounter 正交会
+head-tail galaxy 头尾星系
+head-tail structure 头尾结构
+heat barrier 热障
+heat capacity 热容
+heat conduction 热导
+heat content 热函
+heat convection 热对流
+heat death 热寂
+heat death of the Universe 宇宙热寂说
+heat diffusion 热扩散
+heat dissipation 热耗散
+heat exchange 热交换
+heat flow 热流
+heat flux 热流量
+heat index 缩写:H.I.。热指数
+heat instability 热不稳定性
+heat loss 热耗
+heat of crystallization 结晶热
+heat of desorption 退吸热
+heat radiation 热辐射
+heat source 热源
+heat transfer 热转移
+heat transfer coefficient 输热系数
+heat-absorbing glass 吸热玻璃
+heat-loss function 热耗函数
+heat-resistant glass 耐热玻璃
+heating 致热
+heating rate 加热速率
+heavenly stem 天干
+heavy element 重元素
+heavy element star 重元素星
+heavy lepton 重轻子
+heavy meson 重介子
+heavy metal star 重金属星
+heavy nucleus 重核
+heavy particle 重粒子
+heavy weight star 超大质量恒星
+hectometer wave 百米波
+hedgehog solution 刺猬解
+hedgerow prominence 篱笆状日珥
+height 高度; 地平纬度
+height above sea level 海拔
+height equation 高差
+height finder 高度计; 测高仪
+height indicator 高度计; 测高仪
+height of disappearance 消失点高度
+heiligenschein 灵光
+heliacal cycle 太阳周
+heliacal rising 偕日升; 晨出
+heliacal setting 偕日落; 夕没
+heliacal year 偕日升年
+helical angle 螺旋角
+helical antenna 螺旋天线
+helical field 螺旋场
+helical orbit 螺旋轨道
+helical symmetry 螺旋对称
+helicity 螺旋性; 螺度
+helicon 螺旋波
+heliocentric Julian date 缩写:HJD。日心儒略日
+heliocentric angle 日心角
+heliocentric coordinate 日心坐标
+heliocentric coordinate network 日心坐标网
+heliocentric coordinate system 日心坐标系
+heliocentric correction 日心改正
+heliocentric distance 日心距; 日心距离
+heliocentric ephemeris 日心历表
+heliocentric gravitational constant 日心引力常数
+heliocentric latitude 日心纬度
+heliocentric longitude 日心经度
+heliocentric orbit 日心轨道
+heliocentric parallax 日心视差
+heliocentric phenomena 日心天象
+heliocentric position 日心位置
+heliocentric radial velocity 日心视向速度
+heliocentric system 日心体系
+heliocentric theory 日心说
+heliocentric velocity 日心速度
+heliogeophysics 太阳地球物理
+heliogram 太阳照相图
+heliograph 太阳照相仪
+heliographic chart 日面图
+heliographic coordinate 日面坐标
+heliographic coordinate system 日面坐标系
+heliographic distribution 日面分布
+heliographic latitude 日面纬度
+heliographic longitude 日面经度
+heliographic pole 日面极
+heliolatitude 日面纬度
+heliolongitude 日面经度
+heliomagnetic field 缩写:HMF。日球磁场
+heliomagnetosphere 日球磁层
+heliometer 量日仪
+heliometry 量日测量
+heliomicrometer 太阳测微计
+heliopause 日球层顶
+helioscope 太阳目测镜
+helioseismology 日震学
+heliosheath 日球层鞘
+heliosphere 日球层
+heliostat 定日镜
+heliotail 日球层尾
+heliotrope 日光回照器; 太阳反射仪
+helium 缩写:He。氦
+helium Lyman α forest 氦莱曼α森林
+helium abundance 缩写:He abundance。氦丰度
+helium burning 氦燃烧
+helium content 氦含量
+helium core 氦核
+helium detonation 氦起爆
+helium era 氦时期
+helium flash 氦闪
+helium ionization zone 氦电离区
+helium main-sequence 氦主序
+helium method 氦测法
+helium production 氦合成
+helium shell 氦壳
+helium shell flash 氦壳闪
+helium star 氦星
+helium variable 氦变星
+helium white dwarf 氦白矮星
+helium-poor star 贫氦星
+helium-rich core 富氦核
+helium-rich star 富氦星
+helium-strong star 强氦星
+helium-weak star 弱氦星
+helix angle 螺旋角
+helix array 螺旋天线阵
+helix feed 螺旋馈源
+helmet 日盔
+helmet streamer 盔状流
+hemisphere 半球; 半天球; 半地球
+hemispherical albedo 半球反照率
+heptet 七重线
+herpolhode 空间极迹
+herringbone structure 人字形结构
+hetegony 伴星起源说
+heterochromatic magnitude 混色星等
+heterochromatic photometry 混色测光
+heterodyne detector 外差检测器
+heterodyne infrared interferometer 外差式红外干涉仪
+heterodyne optical interferometer 外差式光学干涉仪
+heterodyne oscillator 外差振荡器
+heterodyne receiver 外差式接收机
+heterodyne spectrometer 外差式频谱仪
+heterogeneity 非均匀性
+heterogeneous body 非均匀体
+heterogeneous spherical earth 非均匀球状地球
+heteronuclear molecule 异核分子
+heteronucleus 异态核
+heteroscian region 日影异向区
+heterosphere 非均匀层
+heterotic string 杂化弦
+hexahedrite 六面体陨铁
+hexapod mount 六杆支撑
+hexapod mounting 六杆式装置
+hidden companion 隐伴星
+hidden magnetic flux 隐磁流
+hidden mass 隐质量
+hidden matter 隐物质
+hidden object 隐天体
+hierarchical clustering 等级式成团
+hierarchical cosmology 等级式宇宙学
+hierarchical merging 等级式并合
+hierarchical model 等级式模型
+hierarchical structure 等级式结构
+hierarchical structure formation 等级式结构形成
+hierarchical triple system 等级三星系统
+hierarchical universe 等级式宇宙
+high altitude cloud 高空云
+high altitude orbit 高轨道
+high altitude station 高山观测站
+high band filter 高通道滤波器
+high contrast plate 高衬度底片
+high corona 高层日冕
+high dispersion 高色散
+high dispersion spectroscopy 高色散分光
+high dispersion spectrum 高色散光谱
+high energy astronomy 高能天文学
+high energy astrophysics 高能天体物理学
+high energy density laboratory astrophysics 缩写:HEDLA。高能量密度实验室天体物理学
+high energy density physics 缩写:HEDP。高能量密度物理学
+high ion 高电离离子
+high latitude 高纬度
+high magnetic arcade 缩写:HMA。高磁拱
+high proper motion star 高速自行星
+high redshift 缩写:high z。高红移
+high resolution 高分辨率
+high seismic-wave velocity 高地震波速度
+high vacuum 高真空
+high water 大潮
+high z 全称:high redshift。高红移
+high-accuracy timing 高精度计时
+high-earth orbit 远地轨道
+high-electron-mobility transistor amplifier 缩写:HEMT amplifier。高电子迁移率晶体管放大器
+high-energy component 高能成分
+high-energy galaxy 高能星系
+high-energy particle 高能粒子
+high-energy process 高能过程
+high-energy radiation 高能辐射
+high-energy tail 高能尾
+high-field pulsar 强磁场脉冲星
+high-frequency radiation 高频辐射
+high-intensity emission 高强度发射
+high-latitude flare 高纬度耀斑
+high-latitude prominence 高纬度日珥
+high-latitude spot 高纬度黑子
+high-luminosity star 高光度星
+high-mass X-ray binary 缩写:HMXB。大质量X射线双星
+high-mass binary 大质量双星
+high-mass planet 大质量行星
+high-mass star 大质量星
+high-metallicity cluster 1、高金属度星团; 2、高金属度星系团
+high-orbit 远地轨道
+high-orbit space telescope 远地轨道望远镜
+high-order correlation function 高阶相关函数
+high-order perturbation theory 高阶扰动理论
+high-peak bias 高峰偏袒
+high-power telescope 高倍率望远镜
+high-redshift galaxy 高红移星系
+high-resolution detector 高分辨检测器
+high-resolution spectrograph 高分辨摄谱仪
+high-resolution spectroscopy 高分辨分光
+high-resolution spectrum 高分辨光谱
+high-resolution telescope 高分辨望远镜
+high-speed camera 高速照相机
+high-speed development 高速显影
+high-speed encounter 高速交会
+high-speed photometer 高速光度计
+high-speed photometry 高速测光
+high-speed solar wind 高速太阳风
+high-speed spectroscopy 高速分光
+high-speed telescope 强光力望远镜
+high-temperature flare 高温耀斑
+high-velocity cloud 缩写:HVC。高速云
+high-velocity dwarf 高速矮星
+high-velocity object 高速天体
+high-velocity star 高速星
+high-z object 高红移天体
+highland 高地; 高原
+highland light plain 高地亮平原
+highly dispersed remnant 高弥散遗迹
+highly dispersed spectrum 高色散光谱
+highly eccentric orbit satellite 缩写:HEOS。大偏心轨道卫星
+highly evolved object 演化晚期天体
+highly evolved star 演化晚期星
+highly ionized matter 高电离物质
+highly polarized quasar 缩写:HPQ。高偏振类星体
+hilltop inflation 坡顶暴胀
+hiss 嘘声
+histogram 直方图
+history of astronomy 天文学史
+hodoscope 描迹仪
+holmium 缩写:Ho。钬
+holmium star 钬星
+hologram 全息图
+holograph 全息照相
+holographic dark energy 全息暗能量
+holographic grating 全息光栅
+holographic principle 全息原理
+holography 全息照相法
+holomorphic function 全纯函数
+holonomic constraint 完整约束
+homocentric sphere model 同心球模型
+homochromatic photometry 同色测光
+homodyne 零拍; 零差
+homoeoid 同形体
+homoeoid theorem 同形体定理
+homogeneity 均匀性
+homogeneity of universe 宇宙均匀性
+homogeneity problem 均匀性问题
+homogeneous atmosphere 均匀大气
+homogeneous coefficient 齐次系数
+homogeneous field 均匀场
+homogeneous light 单色光
+homogeneous medium 均匀介质
+homogeneous radiation 均匀辐射
+homogeneous series 同质序列
+homogeneous sphere 均匀球
+homogeneous star 均匀星
+homogeneous universe 均匀宇宙
+homogenization 匀化
+homographic solution 同形解
+homologous deformation 保形变形
+homologous design 保形设计
+homologous flare 相似耀斑
+homologous gaseous sphere 同模气体球
+homologous radio burst 同系射电暴
+homologous star 同系星
+homologous transformation 同调变换
+homology 同系; 同调; 异体同形
+homology transformation 同调变换
+homonuclear molecule 共核分子
+homopause 同质层顶
+homosphere 匀质大气
+homothetic solution 位似解
+homotopy group 同伦群
+honeycomb mirror 蜂巢式反射镜
+hop sky-wave 反射天波
+horizon 视界
+horizon circle 地平经仪
+horizon coordinate system 地平坐标系
+horizon crossing 视界穿越
+horizon dip 地平俯角
+horizon distance 视界距
+horizon entry 视界进入点
+horizon glass 水平镜
+horizon mass 视界质量
+horizon of the universe 宇宙视界
+horizon plain 地平面
+horizon problem 视界问题
+horizon ring 地平环; 阴纬环; 地浑
+horizontal acceleration 水平加速度
+horizontal angle 水平角
+horizontal axis 水平轴
+horizontal branch 水平支
+horizontal circle 1、地平圈; 2、水平度盘
+horizontal component 水平分量
+horizontal coordinate 地平坐标
+horizontal coordinate system 地平坐标系
+horizontal meridian circle 缩写:HMC。水平子午环
+horizontal mirror 水平镜
+horizontal mounting 地平式装置
+horizontal parallax 缩写:HP。地平视差
+horizontal pendulum 水平摆
+horizontal plane 1、地平面; 2、水平面
+horizontal refraction 地平大气折射
+horizontal resonance 水平向共振
+horizontal solar telescope 水平式太阳望远镜
+horizontal spectrograph 水平式摄谱仪
+horizontal sundial 水平式日晷
+horizontal telescope 水平式望远镜
+horizontal thread 横丝
+horizontal transit circle 缩写:HMC。水平子午环
+horizontal transit instrument 水平式中星仪
+horizontal zenith telescope 水平式天顶仪
+horizontal-branch star 水平支恒星
+horn antenna 喇叭天线
+horn feed 喇叭馈源
+horn-reflector antenna 喇叭式反射面天线
+horologe 1、时计; 2、钟表; 日晷
+horology 钟表学
+horoscope 天宫图
+horseshoe mounting 马蹄式装置
+horseshoe orbit 马蹄形轨道
+horseshoe-shaped curve 马蹄形曲线
+host galaxy 宿主星系; 寄主星系
+host star 宿主星; 寄主星
+host system 主系统
+hot Big Bang 热大爆炸
+hot Big Bang model 热大爆炸模型
+hot Jupiter exoplanet 热类木星
+hot R Coronae Borealis star 高温北冕R型星
+hot component 热成分
+hot component star 热子星
+hot coronal gas 热冕气体
+hot dark matter 热暗物质
+hot dark matter scenario 缩写:HDM scenario。热暗物质图景
+hot dwarf 热矮星
+hot electron bolometer 缩写:HEB。热电子测辐射热计
+hot pixel 热像元
+hot relic particle 热遗迹粒子
+hot spot 热斑
+hot star 热星
+hot subdwarf 热亚矮星
+hot universe 热宇宙
+hour 时
+hour angle 缩写:HA。时角
+hour circle 1、时圈; 2、时角度盘; 3、赤经度盘
+hour glass 沙漏
+hour index 时标
+hour mark 时号
+hour system 时法
+hour-angle axis 时角轴; 赤经轴
+hour-angle difference 时角差
+hourly motion 每时运动
+hourly variation 每时变化
+house 宫
+howardite-eucrite-diogenite meteorite 缩写:HED meteorite。HED陨星; 古铜钙长无球粒-钙长辉长-奥长古铜无球粒陨星
+hubble lemaître law 哈勃-勒梅特定律
+human eye 肉眼
+human space flight 载人空间飞行
+humidity 湿度
+hump 驼峰
+hump Cepheid 驼峰造父变星
+hunter's moon 狩月
+hybrid 混频环
+hybrid CMOS 混合型CMOS
+hybrid beam optics 混合束光学
+hybrid infrared array 混合型红外面阵
+hybrid mapping 混合成图; 混合成像
+hybrid ring 混频环
+hybrid simulation 混合模拟
+hybrid star 混合大气星
+hybrid system 混杂系统
+hybrid telescope 混合式望远镜
+hybrid-chromosphere star 混合色球星
+hycean planet 海氢行星
+hydrocarbon 烃
+hydrodynamic instability 流体动力不稳定性
+hydrodynamic time scale 流体动力时标
+hydrodynamic turbulence 流体动力湍动
+hydrodynamical simulation 流体动力学模拟
+hydrodynamics 流体动力学
+hydrogen 1、氢; 2、缩写:H。氢
+hydrogen abundance 氢丰度
+hydrogen beam standard 氢束标准
+hydrogen burning 氢燃烧
+hydrogen clock 氢钟
+hydrogen cloud 氢云
+hydrogen content 氢含量
+hydrogen convection layer 氢对流层
+hydrogen corona 氢冕
+hydrogen cyanide 氰化氢
+hydrogen cycle 氢循环
+hydrogen distribution 氢分布
+hydrogen emission region 氢发射区
+hydrogen flocculus 氢谱斑
+hydrogen geocorona 氢地冕
+hydrogen halo 氢晕
+hydrogen ion 氢离子
+hydrogen ionization fraction 氢电离度
+hydrogen isocyanide 异氰化氢
+hydrogen line 氢线
+hydrogen main sequence 氢主序
+hydrogen maser 氢微波激射
+hydrogen nebula 氢星云
+hydrogen planet 氢行星
+hydrogen prominence 氢日珥
+hydrogen recombination 氢复合
+hydrogen recombination line 氢复合谱线
+hydrogen region 氢区
+hydrogen spectrum 氢光谱
+hydrogen star 氢星
+hydrogen sulfide 硫化氢
+hydrogen-deficient carbon star 贫氢富碳星
+hydrogen-deficient donor 缺氢输质星
+hydrogen-deficient star 贫氢星
+hydrogen-like atom 类氢原子
+hydrogen-metal ratio 氢-金属比
+hydrogen-poor star 贫氢星
+hydrogen-rich donor 富氢输质星
+hydrogenous atmosphere 氢型大气
+hydrokinetics 流体动理学
+hydromagnetic bubble 磁流泡
+hydromagnetic cavity 磁流穴
+hydromagnetic dynamo 磁流发电机
+hydromagnetic dynamo mechanism 磁流发电机机制
+hydromagnetic instability 磁流不稳定性
+hydromagnetic shock-wave 磁流体激波
+hydromagnetic wave 磁流体波
+hydromagnetics 磁流力学
+hydromagnetodynamo 磁流发电机
+hydromagnetodynamo mechanism 磁流发电机机制
+hydrosphere 水圈; 水界
+hydrostatic equilibrium 缩写:HSE。流体静力平衡
+hydrostatics 流体静力学
+hydroxyl 羟基
+hydroxyl maser 缩写:OH maser。羟基微波激射; 羟基脉泽
+hydroxyl radical 缩写:OH radical。羟基
+hyperaccretion 超吸积
+hyperactivity 超强活动
+hyperbola 双曲线
+hyperbolic comet 双曲线轨道彗星
+hyperbolic meteor 双曲线轨道流星
+hyperbolic orbit 双曲线轨道
+hyperbolic space 双曲空间
+hyperbolic velocity 双曲线速度
+hyperboloid 双曲面
+hyperboloid mirror 双曲面反射镜
+hyperboloid reflector 双曲面反射望远镜
+hyperboloidal mirror 双曲面反射镜
+hyperboloidal reflector 双曲面反射望远镜
+hypercharge 超荷
+hyperfine interaction 超精细相互作用
+hyperfine line 超精细谱线
+hyperfine resonance 超精细共振
+hyperfine splitting 超精细分裂
+hyperfine structure 超精细结构
+hyperfine transition 超精细跃迁
+hypergalaxy 超星系
+hypergiant [star] 特超巨星
+hypergolic propellant 自燃推进器
+hypergranulation 超米粒组织
+hypergranule 超米粒
+hypering 超化
+hypermetagalaxy 超总星系
+hypernova 缩写:HN。极超新星; 骇新星
+hyperon 超子
+hyperon star 超子星
+hyperplane 超平面
+hypersensitization 敏化
+hypersensitizing 敏化
+hyperspace 多维空间
+hypersphere 多维球
+hypersthene 紫苏辉石
+hypersthene achondrite 紫苏无球粒陨石
+hypersurface 超曲面
+hypersurface of simultaneity 同时性超曲面
+hypertelescope 超望远镜
+hypervelocity accelerator 超高速加速器
+hypervelocity impact 超高速碰撞
+hypothesis 假说
+hypothetical parallax 理想视差
+hypothetical planet 假想行星
+hysteresis 滞后
+ice Cherenkov neutrino telescope 冰切伦科夫式中微子望远镜
+ice age 冰期
+ice dwarf 冰矮天体
+ice giant planet,icy-giant planet 冰质巨行星
+ice halo 冰晕
+ice-rich asteroid 富冰小行星
+ice-rich mantle 富冰幔
+iceberg 低表面亮度星系
+iconoscope 光电摄像管
+icy comet 冰质彗星
+icy conglomerate model 冰质团块模型
+icy planet 冰质行星
+icy satellite 冰质卫星
+icy-dwarf planet 冰质矮行星
+ideal black-body 理想黑体
+ideal coordinate 理想坐标
+ideal gas 理想气体
+ideal plasma 理想等离子体
+ideal receiver 理想接收机
+ideal resonance 理想共振
+identification 证认
+identification chart 证认图
+identified X-ray source 已证认X射线源
+identified asteroid 已证认小行星
+identified flying object 缩写:IFO。已证认飞行物
+identified infrared source 已证认红外源
+identified moving object 已证认移动天体
+identified radio source 已证认射电源
+identified satellite 已证认卫星
+identified ultraviolet source 已证认紫外源
+identified γ-ray source 已证认 γ射线源
+idiometer 人差仪
+igneous rock 火成岩
+ignition temperature 点火温度
+ignorable coordinate 可遗坐标
+illuminance [光]照度
+illuminated area 照亮面积
+illuminated disk 照亮圆面
+illuminated hemisphere 照亮半球
+illuminated zone 照亮区
+illuminating source 施照源
+illuminating star 施照星
+illumination 1、[光]照度; 2、照明
+illuminator 施照体; 施照器
+illuminometer 照度计
+illustration 图例
+ilmenite 钛铁
+image amplifier 像增强器
+image convertor 变像管
+image deconvolution 图像去卷积; 图像反卷积; 图像解卷积
+image degradation 图像劣化
+image derotator 像消旋器
+image diameter 星像直径
+image dissector 析像管
+image distortion 图像畸变
+image field 像场
+image formation 成像
+image frequency 像频; 帧频
+image intensifier 像增强器
+image intensifier-dissector 像增强-析像管
+image isocon 分流直像管
+image orthicon 正析像管
+image photometry 成像测光
+image photon-counting system 缩写:IPCS。图像光子计数器; 图像光子计数系统
+image plane 像平面
+image plane scanning 像面扫描
+image processing 图像处理
+image reconstruction 图像重建
+image restoration 图像复原
+image rotator 旋像器
+image sensing 图像传感
+image sharping 星像增锐
+image slicer 星像切分器
+image space 像方; 像空间
+image spread 星像扩散度
+image surface 像面
+image synthesis 图像综合
+image synthesis array 图像综合望远镜阵
+image trailer 像迹仪
+image tube 像管
+image tube spectrograph 像管摄谱仪
+image-dissector scanner 缩写:IDS。析像扫描器
+image-forming device 成像器件
+image-plane beam combiner 像面合束器
+image-plane interferometer 像面干涉仪
+image-sharping telescope 星像增锐望远镜
+imagery 成像
+imaginary axis 虚轴
+imaginary quantity 虚量
+imaginary source 假想源
+imaging 成像
+imaging Cherenkov telescope 成像切伦科夫望远镜
+imaging instrument 成像仪器
+imaging photometer 成像光度计
+imaging polarimetry 成像偏振测量
+imaging polarimter 成像偏振计
+imaging proportional counter 缩写:IPC。成像正比计数器
+imaging spectrograph 成像摄谱仪
+imaging spectrophotometry 成像分光光度测量
+imaging spectroscopy 成像分光
+imaging-chip technology 星像切割技术
+imitator 模拟器
+immersed echelle 浸渍阶梯光栅
+immersed grating 浸没光栅
+immersion 掩始
+immersion grating 浸没光栅
+immersion time 掩始时刻
+impact 碰撞
+impact basin 陨击盆地
+impact broadening 碰撞致宽
+impact crater 陨击坑
+impact excitation 碰撞激发
+impact fluorescence 碰撞致荧
+impact hypothesis 碰撞假说
+impact ionization 碰撞电离
+impact lightflash 碰撞致闪
+impact parameter 碰撞参数
+impact strength 碰撞力度
+impact zone 碰撞带
+impactite 陨击岩
+impedance matching 阻抗匹配
+imperfact absorption 非理想吸收
+imperfect fluid 非理想流体
+imperfect gas 非理想气体
+imperfect scattering 非理想散射
+imperial astronomer 1、司天监; 2、太史令; 3、钦天监监正
+imperial observatory 司天监
+impersonal astrolabe 超人差等高仪
+impersonal micrometer 超人差测微计
+implicit function 隐函数
+implosion 爆缩
+importance of a flare 耀斑级别
+imprisoned radiation 束缚辐射
+improvement of orbit 轨道改进
+impulse 脉冲
+impulse approximation 脉冲近似
+impulse counter 脉冲计数器
+impulse response 脉冲响应
+impulsive burst 脉冲暴
+impulsive hard phase 脉冲急速相
+impulsive phase 脉冲相
+impulsive solar flare 脉冲太阳耀斑
+impurity 杂质
+impurity band conduction detector 缩写:IBC detector。杂带导通探测器
+in situ acceleration 原位加速
+in situ brightening 原位增亮
+in situ observation 实地观测
+in situ survey 实地巡测
+in-between object 中介天体
+incidence angle 入射角
+incident angle 入射角
+incident beam 入射波束
+incident direction 入射方向
+incident intensity 入射强度
+incident power 入射功率
+incident wave 入射波
+incidental prominence 偶现日珥
+incipient star 早期恒星
+inclination 倾角; 交角; 水平差
+inclination of orbit 轨道倾角; 轨道交角
+inclination resonance 倾斜共振
+inclinometer 磁倾计; 倾斜仪
+incoherent averager 非相干平均器
+incoherent averaging 非相干平均
+incoherent emission 非相干发射
+incoherent scattering 非相干散射
+incoming signal 入射信号
+incoming trajectory 进入轨道
+incommensurability 不可通约性
+incompressibility 不可压缩性
+incompressible liquid 不可压缩流体
+increasing wave 增长波
+increment 增量
+increscent moon 盈月
+independence 独立性
+independent catalogue 独立星表
+independent day number 独立日数
+independent equatorial coordinate 独立赤道坐标
+independent variable 独立变量
+indeterminate principle 测不准原理
+index 指数; 指标
+index arm 指标臂
+index correction 指标改正
+index error 指标误差
+index mirror 指标镜
+index of inertia 惯性指数
+index of refraction 折射率
+index of rotation 旋转指数
+indicatometer 测光指示计
+indicator 指示器
+indicator-rod 漏箭
+indicatrix 指示量
+indicatrix of scattering 散射指示量
+indiction 小纪
+indifferent equilibrium 随遇平衡
+indimmed star 未经消光恒星
+indirect observation 间接观测
+indium 缩写:In。铟
+indium antimonide 锑化铟
+individual error 人差
+individual plasma 孤立等离子体
+individual-particle model 单粒子模型
+indochinite 印支陨体
+induced Compton scattering 受迫康普顿散射
+induced absorption 受迫吸收
+induced combination 受迫组合
+induced dipole radiation 受迫偶极辐射
+induced emission 受迫发射
+induced gravity 诱导引力
+induced metric 诱导度规
+induced rate 诱发率
+induced recombination 受迫复合
+induced scattering 受迫散射
+induced star formation 诱发恒星形成
+induced symmetry-breaking 诱发对称性破缺
+induced transition 受迫跃迁
+induced γ-ray background 感生γ射线背景
+induction acceleration 感应加速度
+induction drag 感生阻力
+induction-type acceleration mechanism 感应型加速机制
+inductosyn 感应式传感器
+inelastic collision 非弹性碰撞
+inelastic encounter 非弹性交会
+inelastic impact 非弹性碰撞
+inelastic scattering 非弹性散射
+inequality 不等性
+inertia force 惯性力
+inertial confinement 惯性约束
+inertial coordinate system 惯性坐标系
+inertial field 惯性场
+inertial flight 惯性飞行
+inertial force of rotation 转动惯性力
+inertial frame 惯性架
+inertial guidance 惯性导航
+inertial mass 惯性质量
+inertial positioning system 缩写:IPS。惯性定位系统
+inertial radio source coordinate system 缩写:IRCS。射电源惯性坐标系
+inertial reference frame 惯性参考架
+inertial reference system 惯性参考系
+inertial surveying system 缩写:ISS。惯性勘测系统
+inertial system 惯性系
+inertial time 惯性时
+infall 见落陨星
+infall velocity 沉降速度
+inference 推论
+inferior conjunction 下合
+inferior ecliptic limit 下食限
+inferior planet 内行星
+inferior tide 下高潮
+infinite conductivity 无限传导率
+infinite hierarchy model 无限层次模型
+infinite hierarchy structure 无限层次结构
+infinite hierarchy universe 无限层次宇宙
+infinite space 无限空间
+infinite universe 无限宇宙
+infinite wave train 无限波列
+infinitesimal disturbance 微扰
+infinitesimal increment 无限小增量
+infinitesimal transformation 无限小变换
+infinity 无穷
+inflation 暴胀
+inflation model 暴胀模型
+inflation preheating 暴胀预热
+inflation reheating 暴胀再热
+inflationary cosmological model 暴胀宇宙模型
+inflationary epoch 暴胀期
+inflationary era 暴胀期
+inflationary phase 暴胀阶段
+inflationary phase transition 暴胀相变
+inflationary scenario 暴胀演化图像
+inflationary universe 暴胀宇宙
+inflaton 暴胀子
+information capacity 信息容量
+information processing 信息处理
+information storage 信息存储
+information transform 信息传输
+infralateral arc 外侧晕弧
+infrared 缩写:IR。红外
+infrared CCD 红外CCD
+infrared albedo 红外反照率
+infrared array 红外面阵
+infrared astronomy 红外天文学
+infrared astrophysics 红外天体物理
+infrared background 红外背景
+infrared background radiation 红外背景辐射
+infrared bolometer 红外测辐射热计
+infrared camera 红外照相机
+infrared cirrus 红外卷云
+infrared color index 红外色指数
+infrared corona 红外冕
+infrared counterpart 红外对应体
+infrared detector 红外探测器
+infrared divergence 红外发散
+infrared emanation 红外辐射
+infrared emanator 红外辐射源
+infrared emission 红外发射
+infrared excess 红外超
+infrared flux 红外流量
+infrared galaxy 红外星系
+infrared glow 红外天光
+infrared helioseismology 红外日震学
+infrared horizon sensor 红外地平仪
+infrared imaging 红外成像
+infrared imaging spectroscopy 红外成像分光
+infrared index 红外指数
+infrared interference filter 红外干涉滤光片
+infrared interferometer 红外干涉仪
+infrared interferometry 红外干涉测量
+infrared luminosity 红外光度
+infrared magnitude 红外星等
+infrared modulation 红外调制
+infrared object 红外天体
+infrared observatory 红外天文台
+infrared photography 红外照相
+infrared photometer 红外光度计
+infrared photometry 红外测光
+infrared polarimetry 红外偏振测量
+infrared radiation 红外辐射
+infrared radiometer 红外辐射计
+infrared radiometry 红外辐射测量
+infrared solar radiation 太阳红外辐射
+infrared source 红外源
+infrared space astronomy 红外空间天文学
+infrared spectrometer 红外分光仪
+infrared spectrophotometry 红外分光光度测量
+infrared spectroscopy 红外分光
+infrared spectrum 红外光谱
+infrared star 红外星
+infrared stellar radiation 恒星红外辐射
+infrared sun 红外太阳
+infrared telescope 红外望远镜
+infrared temperature 红外温度
+infrared window 红外窗口
+infrared-excess object 红外超天体
+infrared-flux method 红外流量法
+infrared-submillimeter background 红外-亚毫米波背景
+ingenious armillary sphere 玲珑仪
+ingenious planetarium 玲珑仪
+ingress 入凌; 进食
+inhomogeneity 不均匀性
+inhomogeneity scale 不均匀性尺度
+inhomogeneous medium 不均匀介质
+inhomogeneous nucleosynthesis 非均匀核合成
+initial condition 初始条件
+initial data 初始数据
+initial earth 初始地球
+initial luminosity function 初始光度函数
+initial magnetic field 初始磁场
+initial main sequence 初始主序
+initial main-sequence star 初始主序星
+initial mass distribution 初始质量分布
+initial mass function 缩写:IMF。初始质量函数
+initial orbit 初始轨道; 初轨
+initial perturbation power spectrum 初始扰动功率谱
+initial phase 初始阶段; 初相
+initial planet 初始行星
+initial rise 初升
+initial singularity 初始奇点
+initial star 初始恒星
+initial state 初态
+initial sun 初始太阳
+initial value 初值
+initial value problem 初值问题
+initial zone 零时区
+injected plasma 注入等离子体
+injection 注入
+injection source 注入源
+inner Lagrangian point 内拉格朗日点
+inner Lindblad radius 内林德布拉德半径
+inner Lindblad resonance 内林德布拉德共振
+inner bremsstrahlung 内轫致辐射
+inner coma 内彗发
+inner core 内核
+inner corona 内冕
+inner edge 内缘
+inner electron 内层电子
+inner halo cluster 内晕族星团
+inner inner Lindblad resonance 内内林德布拉德共振
+inner planet 带内行星
+inner radiation zone 内辐射区
+inner shell 内壳层
+inner solar system 内太阳系
+inner structure 内部结构
+innermost electron 最内层电子
+innermost planet 最内行星
+input signal 输入信号
+input terminal 输入端
+insertion 介入
+insertion loss 介入损耗
+insolation 日射
+inspiral 旋近
+instability 不稳定性
+instability region 不稳定区
+instability strip 不稳定带
+instability zone 不稳定带
+instant 瞬时
+instantaneous elements 瞬时根数
+instantaneous latitude 瞬时纬度
+instantaneous longitude 瞬时经度
+instantaneous pole 瞬时极
+instantaneous power 瞬时功率
+instantaneous recombination 瞬时复合
+instantaneous recycling approximation 瞬时循环近似
+instantaneous spectrum 瞬时光谱; 瞬时谱
+instantaneous value 瞬时值
+instantaneous velocity 瞬时速度
+instanton 瞬子
+instruction 指令; 程序
+instrument 仪器
+instrument for solar and lunar eclipses 日月食仪
+instrumental azimuth 仪器方位
+instrumental broadening 仪器致宽
+instrumental constant 仪器常数
+instrumental contour 仪器轮廓
+instrumental correction 仪器改正
+instrumental effect 仪器效应
+instrumental error 仪器误差
+instrumental latitude 仪器纬度
+instrumental longitude 仪器经度
+instrumental magnitude 仪器星等
+instrumental polarization 仪器偏振
+instrumental profile 仪器轮廓
+instrumental refraction 仪器内大气折射
+instrumental response 仪器响应
+instrumentation 附属仪器; 仪器
+insulation 绝缘
+insulator 绝缘体
+integrability 可积性
+integrable system 可积系统
+integral atomic time 累积原子时
+integral curve 积分曲线
+integral field spectrograph 集成视场摄谱仪
+integral field unit 缩写:IFU。集成视场单元
+integral linear polarization 累积线偏振
+integral observatory 集成天文台
+integral of motion 运动积分
+integral scattering 积分散射
+integral sign warp 积分号式翘曲
+integrated Doppler 积分多普勒
+integrated Sachs-Wolfe effect 缩写:ISW effect。累积萨克斯-沃尔夫效应; ISW效应
+integrated absorption coefficient 累积吸收系数
+integrated blue magnitude 累积蓝星等
+integrated brightness 累积亮度
+integrated color index 累积色指数
+integrated cross-section 积分截面
+integrated diode array 缩写:IDA。集成二极管阵
+integrated emission 累积发射
+integrated flux 累积流量
+integrated intensity 累积强度
+integrated magnitude 累积星等
+integrated noise 累积噪声
+integrated noise temperature 累积噪声温度
+integrated photoelectric magnitude 累积光电星等
+integrated photographic magnitude 累积照相星等
+integrated photonic spectrograph 集成光子学摄谱仪
+integrated photovisual magnitude 累积仿视星等
+integrated pulse 累积脉冲
+integrated radiation 累积辐射
+integrated red magnitude 累积红星等
+integrated sky brightness 累积天空亮度
+integrated spectrum 累积光谱
+integrating ionization chamber 累积电离室
+integrating photometer 积分光度计
+integration time 积分时间
+intelligence 智能
+intense burst 强暴
+intense shock-wave 强激波
+intense source 强源
+intensified CCD 增强CCD
+intensifier 增强器
+intensity 强度
+intensity distribution 强度分布
+intensity interferometer 强度干涉仪
+intensity interferometry 强度干涉测量
+intensity mapping 强度映射
+interacting binary 相互作用双星; 相互作用双重星系
+interacting close binary 相互作用密近双星
+interacting galaxy 相互作用星系
+interacting prominence 互扰日珥
+interaction 相互作用
+interaction constant 相互作用常数
+interarm object 臂际天体
+interarm star 臂际星
+interastral object 星际天体
+intercalary cycle 闰周
+intercalary day 闰日
+intercalary month 闰月
+intercalary year 闰年
+intercalated month 闰月
+intercalation 置闰
+intercept age 截距法年龄
+interchange reaction 交换反应
+intercloud extinction 云际消光
+intercloud gas 云际气体
+intercloud matter 缩写:ICM。云际物质
+intercloud medium 缩写:ICM。云际介质
+intercloud object 云际天体
+intercloud star 云际星
+intercluster matter 1、缩写:ICM。星团际物质; 2、缩写:ICM。星系团际物质
+intercombination 相互组合
+intercombination line 互组谱线
+intercombination transition 互组跃迁
+intercomparison 相互比较
+intercontinental synchronization 洲际同步
+interface 界面
+interference 干涉
+interference filter 1、干涉滤光片; 2、干涉滤波器
+interference fringe 干涉条纹
+interference pattern 干涉图样
+interference spectroscopy 干涉分光
+interference system 干涉系统
+interferogram 干涉图
+interferometer 干涉仪
+interferometer pattern 干涉仪图样
+interferometer phase 干涉仪相位
+interferometer polar diagram 干涉极坐标方向图
+interferometer radar 干涉雷达
+interferometric astrometry 干涉天体测量
+interferometric binary 干涉双星
+interferometric nulling 干涉相消
+interferometry 干涉测量
+interflare matter 耀斑际物质
+intergalactic absorption 星系际吸收
+intergalactic bridge 星系际桥
+intergalactic cloud 星系际云
+intergalactic dust 星系际尘埃
+intergalactic extinction 星系际消光
+intergalactic gas 星系际气体
+intergalactic magnetic field 星系际磁场
+intergalactic matter 缩写:IGM。星系际物质
+intergalactic medium 缩写:IGM。星系际介质
+intergalactic nebula 星系际星云
+intergalactic object 星系际天体
+intergalactic space 星系际空间
+intergranular area 米粒间区
+intergranular material 米粒际物质
+intergration along the line of sight 视向积分
+interior contact 内切
+interior ingress 内初凌
+interior planet 内行星
+interior solution 内解
+interline transfer 行间转移
+interlocking 联锁作用
+interloper 窜入星
+interlunation 无月期间
+intermediary solution 过渡解
+intermediate band 中波带
+intermediate band photometry 中带测光
+intermediate boson 中间玻色子
+intermediate component 中介子系
+intermediate coordinate 中介坐标
+intermediate corona 中介日冕
+intermediate coupling 中介耦合
+intermediate declination 中间赤纬
+intermediate drift burst 中介漂暴
+intermediate equator 中间赤道
+intermediate group 子夜星组
+intermediate ionization 中度电离
+intermediate orbit 中间轨道
+intermediate parent body 中间母体
+intermediate place 中间位置
+intermediate polar 中介偏振星
+intermediate polar system 中介偏振星
+intermediate population 中介星族
+intermediate right ascension 中间赤经
+intermediate spectrum type 中介光谱型
+intermediate subsystem 中介次系
+intermediate vector boson 中间矢量玻色子
+intermediate-luminosity optical transient 缩写:ILOT。中间光度光学暂现源
+intermediate-luminosity red transient 缩写:ILRT。中间光度红色暂现源
+intermediate-mass black hole 中等质量黑洞
+intermediate-mass star 中等质量恒星
+intermediate-population star 中介星族恒星
+intermediate-type star 中介光谱型恒星
+intermediate-velocity cloud 中速云
+intermittency effect 间歇效应
+intermittent region 断续区
+intermolecular Stark effect 分子际斯塔克效应
+internal Faraday rotation 内禀法拉第旋转
+internal adjustment 内部平差
+internal agreement 内部符合
+internal constitution 内部结构
+internal energy 内能
+internal field 内场
+internal flat field 内部平场
+internal force 内力
+internal memory 内存储器
+internal metrology system 内计量系统
+internal motion 内部运动
+internal shock wave 内激波
+internal shock wave model 内激波模型
+internal structure 内部结构
+internal temperature 内部温度
+internal weight 内部权
+international angstrom 国际埃
+international color index 国际色指数
+international coordinated solar observations 缩写:ICSO。国际太阳联合观测
+international date line 国际变日线
+international ellipsoid 国际椭球体
+international magnitude system 国际星等系统
+international sunspot number 国际太阳黑子数
+international system of units 缩写:SI。国际单位制
+interparticle distance 粒子间距
+interplanetary absorption 行星际吸收
+interplanetary blast 行星际风暴
+interplanetary dust 行星际尘埃
+interplanetary dust particle 缩写:IDP。行星际尘粒
+interplanetary exploration 行星际探索
+interplanetary extinction 行星际消光
+interplanetary flight 行星际飞行
+interplanetary gas 行星际气体
+interplanetary grain 缩写:IDP。行星际尘粒
+interplanetary light 行星际光
+interplanetary magnetic field 缩写:IMF。行星际磁场
+interplanetary magnetic storm 行星际磁暴
+interplanetary matter 缩写:IPM。行星际物质
+interplanetary medium 缩写:IPM。行星际介质
+interplanetary meteor 行星际流星
+interplanetary navigation 行星际航行
+interplanetary orbit 行星际轨道
+interplanetary particle 行星际粒子
+interplanetary plasma 行星际等离子体
+interplanetary probe 行星际探测器
+interplanetary rocket 行星际火箭
+interplanetary scattering 缩写:IPS。行星际散射
+interplanetary scintillation 缩写:IPS。行星际闪烁
+interplanetary sector 行星际扇形结构
+interplanetary space 行星际空间
+interplanetary trajectory 行星际轨道
+interplanetary transfer trajectory 行星际转移轨道
+interpolating factor 内插因子
+interpolation 内插
+interpolation polynomial 内插多项式
+interpretation astronomy 通俗天文
+interpulse 中介脉冲
+interspicular region 针状物际区
+interstellar absorption 星际吸收
+interstellar absorption band 星际吸收带
+interstellar absorption line 星际吸收线
+interstellar band 星际谱带
+interstellar bubble 星际泡
+interstellar calcium 星际钙
+interstellar chemistry 星际化学
+interstellar cloud 星际云
+interstellar communication 星际通信
+interstellar complex 星际复合体
+interstellar depletion 星际耗损
+interstellar diffuse matter 星际弥漫物质
+interstellar dust 星际尘埃
+interstellar dust cloud 星际尘云
+interstellar emission 星际发射
+interstellar extinction 星际消光
+interstellar field 星际场
+interstellar gas 星际气体
+interstellar gas cloud 星际气体云
+interstellar gas-dust cloud 星际气体尘埃云
+interstellar grain 星际尘粒
+interstellar hydrogen 星际氢
+interstellar hydrogen line 星际氢线
+interstellar line 星际谱线
+interstellar magnetic field 缩写:IMF。星际磁场
+interstellar maser 星际微波激射
+interstellar matter 缩写:ISM。星际介质; 星际物质
+interstellar medium 缩写:ISM。星际介质; 星际物质
+interstellar meteor 星际流星
+interstellar molecular cloud 星际分子云
+interstellar molecular line 星际分子谱线
+interstellar molecule 星际分子
+interstellar parallax 星际视差
+interstellar particle 星际粒子
+interstellar plasma 星际等离子体
+interstellar polarization 星际偏振
+interstellar radiation 星际辐射
+interstellar radiation field 星际辐射场
+interstellar reddening 星际红化
+interstellar scintillation 缩写:ISS。星际闪烁
+interstellar space 星际空间
+interstellar stream 星际股流
+interstellar wind 星际风
+interval 间隔
+intervening galaxy 居间星系
+intra-Jovian planet 木内行星
+intra-Mercurial planet 水内行星
+intra-Mercurian planet 水内行星
+intracluster gas 1、星团内气体; 2、星系团内气体
+intracluster light 星系团内光
+intracluster matter 1、缩写:ICM。星团内物质; 2、缩写:ICM。星系团内物质
+intracluster medium 1、缩写:ICM。星团内介质; 2、缩写:ICM。星系团内介质
+intraday variation 日内变化
+intragalactic communication 银河系内通信
+intranetwork element 网内元
+intranetwork field 网内场; 网络内场
+intrapulse time 脉冲间歇时间
+intrinsic accuracy 本征精度
+intrinsic brightness 内禀亮度
+intrinsic color 本征颜色
+intrinsic color index 本征色指数
+intrinsic dispersion 内禀弥散度
+intrinsic energy 内禀能
+intrinsic luminosity 本征光度
+intrinsic magnetic moment 内禀磁矩
+intrinsic magnitude 本征星等
+intrinsic redshift 内禀红移
+intrinsic reproducibility 固有复制性
+intrinsic temperature fluctuation 内禀温度涨落
+intrinsic variable 本征变星
+intrinsic variable star 内因变星
+invariable plane 不变平面
+invariance 不变性
+invariant curve 不变曲线
+invariant distance 不变距离
+invariant pendulum 定长摆
+invariant plane 不变平面
+invariant point 不变点
+invariant relation 不变关系
+invariant surface 不变曲面
+invasion 袭
+inverse Compton effect 缩写:ICE。逆康普顿效应
+inverse Compton limit 逆康普顿极限
+inverse Compton scattering 逆康普顿散射
+inverse P Cygni profile 逆天鹅P型星谱线轮廓
+inverse Zeeman effect 逆塞曼效应
+inverse azimuth 反方位角
+inverse bremsstrahlung 逆轫致辐射
+inverse covariance matrix 逆协方差矩阵
+inverse maser 逆微波激射
+inverse maser effect 逆微波激射效应
+inverse plasmon scattering 逆等离子体激元散射
+inverse problem 逆问题
+inverse square law 平方反比律
+inversion 反演
+inversion layer 1、反变层; 2、逆温层
+inversion transition 反演跃迁
+inverted image 倒像
+inverted pendulum 倒立摆
+inverting eyepiece 倒像目镜
+inverting prism 倒像棱镜
+inverting telescope 倒像望远镜
+invisible axion 隐轴子
+invisible companion 隐伴星
+invisible matter 隐物质; 不可见物质
+involution 对合
+involutory transformation 对合变换
+iodine 缩写:I。碘
+iodine absorption cell 碘吸收池
+ion 离子
+ion composition 离子成分
+ion density 离子密度
+ion plasma frequency 离子等离子体频率
+ion plasma oscillation 离子等离子体振荡
+ion plasma wave 离子等离子体波
+ion rocket 离子火箭
+ion spot 离子斑
+ion tail 离子彗尾
+ion temperature 离子温度
+ion trap 离子[陷]阱
+ion wave 离子波
+ion-acoustic current 离子声流
+ion-acoustic velocity 离子声速
+ion-acoustic wave 离子声波; 离子波
+ion-cyclotron cut-off 离子回旋截止
+ion-cyclotron resonance 离子回旋共振
+ion-cyclotron wave 离子回旋波
+ion-gyro-frequency 离子回旋频率
+ion-sound solitary wave 离子声孤波
+ion-sound speed 离子声速
+ion-sound turbulence 离子声湍动
+ion-sound wave 离子声波; 离子波
+ionic state 电离态
+ionicity 电离度
+ionizability 电离度
+ionization 电离
+ionization by collision 碰撞电离
+ionization cross-section 电离截面
+ionization degree 电离度
+ionization equilibrium 电离平衡
+ionization fraction 电离度
+ionization front 电离波前
+ionization level 电离级
+ionization loss 电离耗损
+ionization parameter 电离参数
+ionization potential 电离电势
+ionization temperature 电离温度
+ionization zone 电离带
+ionized hydrogen region 电离氢区
+ionizing background 电离背景
+ionizing efficiency 电离效率
+ionizing radiation 电离辐射
+ionizing shock wave 电离激波
+iono-acoustic velocity 离子声速
+ionopause 电离层顶
+ionosonde 电离层探测器
+ionosphere 电离层
+ionosphere disturbance 电离层扰动
+ionospheric eclipse 电离层食
+ionospheric effect 电离层效应
+ionospheric refraction 电离层折射
+ionospheric refraction correction 电离层折射改正
+ionospheric satellite 电离层探测卫星
+ionospheric scintillation 电离层闪烁
+ionospheric storm 电离层暴
+iraser 红外激射
+iridium 缩写:Ir。铱
+iris aperture 可变孔径
+iris diaphragm 可变光阑
+iris diaphragm photometer 光瞳光度计
+iris microphotometer 光瞳测微光度计
+iris photometer 光瞳光度计
+iris shutter 虹膜快门
+iron 缩写:Fe。铁
+iron meteorite 铁陨星; 铁陨石; 陨铁
+iron peak 铁峰
+iron star 铁星
+iron-peak element 铁峰元素
+iron-poor star 贫铁星
+iron-rich star 富铁星
+irradiance 辐照度
+irradiation 辐照
+irreducible mass 不可约质量
+irregular anagalactic nebula 不规则河外星云
+irregular cluster 1、不规则星团; 2、不规则星系团
+irregular cluster of galaxies 不规则星系团
+irregular galaxy 不规则星系
+irregular nebula 不规则星云
+irregular orbit 混沌轨道; 不规则轨道
+irregular rotation 不规则自转
+irregular satellite 不规则卫星
+irregular variable 不规则变星
+irregularity 不规则性
+irreversibility 不可逆性
+irreversible process 不可逆过程
+irrotational motion 无旋运动
+irtron 红外光电管
+isenthalpic curve 等焓线
+isentropic change 等熵变化
+isentropic curve 等熵线
+isentropic gas 等熵气体
+isentropic initial condition 等熵初始条件
+isentropic perturbation 等熵扰动
+islamic calendar 伊斯兰历
+island universe 岛宇宙
+isobar 等压线
+isochoric change 恒容变化
+isochron 等龄线
+isochron age 等时线法年龄
+isochronal line 等时线
+isochrone 等龄线
+isochrone method 等龄法
+isochrone potential 等时势
+isochronism 等龄性; 等时性
+isochronous correspondence 等时对应
+isoclinal line 等倾线
+isocline 等倾线
+isocon 分流直像管
+isocurvature 等曲率
+isocurvature CDM model 等曲率冷暗物质模型
+isocurvature fluctuation 等曲率涨落
+isocurvature initial condition 等曲率初条件
+isocurvature model 等曲率模型
+isocurvature perturbation 等曲率扰动
+isocyanic acid 异氰酸
+isodynamic line 等力线
+isoelectronic sequence 等电子序
+isoelectronic spectrum 等电子谱
+isoenergetic displacement 等能位移
+isoenergetic stability 等能稳定性
+isogauss contour 等高斯轮廓
+isogonic line 等偏线
+isolated burst 孤立暴
+isolated galaxy 孤立星系
+isolated intergalactic cloud 星系际孤立云
+isolated star 孤立星
+isolated system 孤立系
+isolating integral 孤立积分
+isolator 隔离器; 单向器
+isomer 同分异构体
+isometric latitude 等量纬度
+isometry group 等长群
+isoperiodic orbit 等周期轨道
+isophase 等相线
+isophotal radius 等光度半径
+isophotal wavelength 等光波长
+isophote 等照度线
+isophote ellipticity 等照度线椭率
+isophote twisting 等照度线扭曲
+isophotic contour 等照度轮廓
+isophotiur 等照度线
+isophotometer 等光度计
+isophotometric atlas 等光度图
+isophotometry 等光度测量
+isopiestic 等压线
+isoplanatic angle 等晕角
+isoplanatic path angle 等晕斑角
+isopleth 等值线
+isopycnal 等密线
+isopycnic 等密面
+isorotation 共转
+isosceles triangular solution 等腰三角形解
+isospin 同位旋
+isostasy 均衡
+isostatics 等压线
+isotach 等速线
+isotherm 等温线
+isothermal atmosphere 等温大气
+isothermal core 等温核
+isothermal equilibrium 等温平衡
+isothermal gas 等温气体
+isothermal gas sphere 等温气体球
+isothermal jump 等温跳变
+isothermal perturbations 等温扰动
+isothermal plasma 等温等离子体
+isothermal process 等温过程
+isothermal region 等温区
+isothermal sheet 等温片
+isothermal sound speed 等温声速
+isothermal sphere 等温球
+isothermal theory 等温理论
+isothiocyanic acid 硫代异氰酸
+isotone 同中子异核素
+isotope 同位素
+isotope age 同位素年龄
+isotope assay 同位素验定
+isotope effect 同位素效应
+isotope frequency 同位素频率
+isotopic abundance 同位素丰度
+isotopic composition 同位素成分
+isotopic content 同位素含量
+isotopic dating 同位素纪年
+isotopic spin 同位旋
+isotropic antenna 各向同性天线
+isotropic body 各向同性体
+isotropic conductivity 各向同性传导率
+isotropic correlation function 各向同性相关函数
+isotropic distribution 各向同性分布
+isotropic medium 各向同性介质
+isotropic power spectrum 各向同性功率谱
+isotropic propagation 各向同性传播
+isotropic scattering 各向同性散射
+isotropic tensor 各向同性张量
+isotropic universe 各向同性宇宙
+isotropic velocity dispersion 各向同性速度弥散度
+isotropization 各向同性化
+isotropy 各向同性
+isotropy of universe 宇宙的各向同性
+iteration 迭代
+iterative method 迭代法
+j-j coupling j-j 耦合
+jackknife resampling 刀切法复采样
+jansky 缩写:Jy。央
+jet 喷流
+jet galaxy 喷流星系
+jet stream 急流
+jet terminal shock 喷流终点激波
+jet-like feature 喷流形特征
+jet-like structure 喷流形结构
+jetlike structure 喷流形结构
+jitter 颤动
+jovicentric coordinate 木心坐标
+jovicentric latitude 木心纬度
+jovicentric longitude 木心经度
+jovicentric orbit 木心轨道
+jovigraphic coordinate 木面坐标
+jovigraphic latitudem 木面纬度
+jovigraphic longitude 木面经度
+jump 跳变
+jump condition 跳变条件
+jump relation 跳变关系
+k+a galaxy k+a星系
+k-essence k质
+k-inflation k暴胀
+k-space top-hat k空间高帽
+kSZ effect 全称:kinematic Sunyaev Zel'dovich effect。运动学SZ效应
+kamacite 锥纹石
+karma month 世间月
+kation 正离子
+kayser 凯塞
+keV 全称:kiloelectron-volt。千电子伏
+kelvin 缩写:K。开
+kernel 核
+ketene 乙烯酮
+key-controlled time signal 键控时号
+kick 小峰; 小突起
+kick velocity 踢出速度
+kiloelectron-volt 缩写:keV。千电子伏
+kilonova 千新星
+kiloparsec 缩写:kpc。千秒差距
+kinchiltun 金切尔顿
+kinematic Sunyaev Zel'dovich effect 缩写:kSZ effect。运动学SZ效应
+kinematic astronomy 运动学天文学
+kinematic cosmology 运动学宇宙学
+kinematic density wave 运动学密度波
+kinematic distance 运动学距离
+kinematic distance ambiguity 缩写:KDA。运动学距离模糊
+kinematic parallax 运动学视差
+kinematic viscosity 运动黏度
+kinematical reference frame 运动学参考架
+kinematical reference system 运动学参考系
+kinematics 运动学
+kinetic decoupling 动理学退耦
+kinetic energy 动能
+kinetic energy tensor 动能张量
+kinetic equilibrium 动理学平衡
+kinetic inductance detector 缩写:KID。动态电感探测器
+kinetic instability 动理学不稳定性
+kinetic pressure 动压
+kinetic temperature 运动温度
+kinetic theory 分子运动论; 动理[学理]论
+kinetic theory of gases 气体分子运动论; 气体动理[学理]论
+kinetic viscosity 动理黏度
+kinetics 动理学
+king post mount 主轴式装置
+king-size flare star 巨型耀星
+kink 扭折
+kink instability 扭折不稳定性
+kinotheodolite 电影经纬仪
+klystron 速调管
+knee whistler 膝啸
+knife-edge test 刀口检验
+knock-on spectrum 击出粒子谱
+koinomatter 正常物质
+kpc 全称:kiloparsec。千秒差距
+krypton 缩写:Kr。氪
+kurtosis 峭度
+laboratory astrophysics 实验室天体物理
+laboratory frequency standard 实验室频标
+laboratory reference frame 实验室参考架
+laboratory reference system 实验室参考系
+laboratory spectrum 实验室光谱
+lacus [月]湖
+laevorotation 左旋
+lag 迟滞
+lag error 迟滞差
+lag time 缩写:LT。滞后时间
+lagging of tides 潮汐迟滞
+lambdameter 波长计
+lambert 朗伯
+lamella 壳层
+lamellar grating 层状光栅
+laminar flow 片流
+lander 着陆器
+landing rocket 着陆火箭
+landscape 景观
+lanthanum 缩写:La。镧
+lapse function 时移函数
+large diameter source 大角径源
+large number hypothesis 大数假说
+large outburst 巨大爆发
+large scale beam 大尺度射束
+large scale characteristic 大尺度特征
+large scale jet 大尺度喷流
+large scale sky map 大尺度天图
+large scale structure 缩写:LSS。大尺度结构
+large scale structure of the universe 宇宙大尺度结构
+large scale turbulence 大尺度湍动
+large scale velocity field 大尺度速度场
+large telescope 大型望远镜
+large-angle anisotropy 大角度各向异性
+large-scale clustering 大尺度成团性
+laser 激光
+laser frequency comb 缩写:LFC。激光频率梳
+laser geodimeter 激光测距仪
+laser guide star 激光引导星
+laser guided adaptive optics 激光引导自适应光学
+laser interferometer 激光干涉仪
+laser interferometer gravitational wave detector 激光干涉仪型引力波探测器
+laser metrology system 激光计量系统
+laser radar 激光雷达
+laser rangefinder 激光测距仪
+laser ranging 激光测距
+laser reflector 激光反射器
+laser satellite 激光卫星
+laser tracking 激光跟踪
+laser tube 激光管
+last contact 复圆
+last contact of umbra 复圆
+last quarter 下弦
+last scattering surface 最后散射面
+last significant figure 末位有效数字
+late cluster 晚型星系团
+late heavy bombardment 晚期重轰击
+late integrated Sachs-Wolfe effect 晚期累积萨克斯-沃尔夫效应
+late-type dwarf 晚型矮星
+late-type galaxy 晚型星系
+late-type giant 晚型巨星
+late-type spiral galaxy 晚型旋涡星系
+late-type star 晚型星
+late-type subdwarf 晚型亚矮星
+late-type subgiant 晚型亚巨星
+late-type supergiant 晚型超巨星
+late-type variable 晚型变星
+latent heat 潜热
+latent image 潜像
+lateral aberration 横向像差
+lateral chromatic aberration 横向色差
+lateral flexure 横向弯曲
+lateral magnification 横向放大率
+lateral refraction 旁折射
+latitude 纬度; 黄纬
+latitude circle 1、纬[度]圈; 2、黄纬圈
+latitude determination 纬度测定
+latitude distribution 纬度分布
+latitude effect 纬度效应
+latitude line 纬线
+latitude of exposure 曝光时限
+latitude service 纬度服务
+latitude star 测纬星
+latitude station 纬度站
+latitude variation 纬度变化
+latitudinal action 纬向作用量
+lattice distortion 晶格畸变
+latus rectum 通径
+launch angle 发射角
+launch pad 发射台; 发射场
+launch vehicle 发射器
+launch window 最佳发射时间
+launcher 发射器
+launching 发射
+launching vehicle 发射器
+lava 熔岩
+law of area 面积定律
+law of causation 因果律
+law of chance 机遇律
+law of conservation of angular momentum 角动量守恒定律
+law of conservation of energy 能量守恒定律
+law of conservation of matter 物质守恒定律
+law of conservation of momentum 动量守恒定律
+law of distribution of velocity 速度分布律
+law of isochronism 等周期定律
+law of large numbers 大数定律
+law of planetary distances 行星距离定律
+law of propagation of errors 误差传播定律
+law of universal gravitation 万有引力定律
+lawrencium 缩写:Lr。铹
+laws of planetary motion 行星运动定律
+lead 缩写:Pb。铅
+lead oxide vidicon 氧化铅光导摄像管
+lead screw 导杆
+lead selenide 硒化铅
+lead sulphide 硫化铅
+lead telluride 碲化铅
+leading 前导
+leading arm 导臂
+leading edge 西边缘; 前导边缘
+leading hemisphere 前导半球
+leading limb 西边缘; 前导边缘
+leading member 前导成员
+leading spot 缩写:p-sunspot; p-spot。前导黑子; p黑子
+leading sunspot 缩写:p-sunspot; p-spot。前导黑子; p黑子
+leading wave 导波
+leakage 渗漏
+leaky box model 漏箱模型
+leap day 闰日
+leap month 闰月
+leap second 闰秒
+leap second adjustment 闰秒调整
+leap year 闰年
+leap-frog integration scheme 蛙跳积分法
+least action 最小作用量
+least square adjustment 最小二乘平差
+least square fitting 最小二乘拟合
+least square method 最小二乘法
+least square solution 最小二乘解
+least squares fitting 最小二乘拟合
+left-handed polarization 左旋偏振
+legal time 法定时
+length of exposure 曝光时间
+lens 透镜
+lens antenna 透镜天线
+lens design 透镜设计
+lens equation 透镜方程
+lens mapping 透镜映射
+lens plane 透镜平面
+lensed galaxy 受透镜效应星系
+lensed quasar 受透镜效应类星体
+lensing cross-section [引力]透镜截面
+lensing effect [引力]透镜效应
+lensing galaxy [引力]透镜星系
+lensing object [引力]透镜天体
+lensing optical depth [引力]透镜光深
+lensing potential 透镜势
+lensing quasar [引力]透镜类星体
+lensing star [引力]透镜恒星
+lenslet array 小透镜阵
+lenticular cloud 荚状云
+lenticular galaxy 透镜状星系
+leptogenesis 轻子创生
+lepton 轻子
+lepton asymmetry 轻子不对称性
+lepton era 轻子期
+lepton number 轻子数
+lepton number density 轻子数密度
+lepton synthesis 轻子合成
+leptonic charge 轻子荷
+less luminous supergiant 次亮超巨星
+level bubble 水准气泡
+level chamber 水准气泡室
+level constant 水准常数
+level error 水准差; 地平差; 水平差
+level sensitivity 水准灵敏度
+level surface 水准面
+level tester 水准检验仪
+level testing instrument 水准检验仪
+level-Ⅰ civilization Ⅰ级文明
+level-Ⅱ civilization Ⅱ级文明
+level-Ⅲ civilization Ⅲ级文明
+leveling 水准测量
+leveling instrument 水准仪
+levelling 水准测量
+levelling instrument 水准仪
+levogyrate component 左旋子线
+libration 天平动
+libration deviation 天平动偏异; 秤动偏异
+libration effect 天平动效应; 秤动效应
+libration ellipse 天平动椭圆; 秤动椭圆
+libration in latitude 纬天平动
+libration in longitude 经天平动
+libration orbit 秤动轨道
+libration point 秤动点
+life support 生命保障
+life-bearing planet 宜居行星
+lifetime 寿命
+liftoff 起飞
+light amplification by stimulated emission of radiation 激光
+light amplifier 光放大器
+light bridge 亮桥
+light coherence 光相干
+light cone 光锥
+light cross 光柱
+light crossing time 光穿越时间
+light crown 轻冕玻璃
+light curve 光变曲线
+light cylinder 光速圆柱面
+light day 光日
+light echo 回光
+light element 轻元素
+light element abundance 轻元素丰度
+light emission 光发射
+light equation 光行时差
+light filter 滤光片; 滤光器
+light flint 轻火石玻璃
+light grasp 聚光
+light hour 光时
+light interference 光干涉
+light interferometer 光干涉仪
+light interferometry 光干涉测量
+light mantle 发光月幔
+light meson 轻介子
+light minute 光分
+light modulator 调光器
+light month 光月
+light nebula 发光星云
+light of the moon 月光期
+light of the night sky 夜天光
+light period 光变周期
+light pipe 光束管
+light polarization 光偏振
+light pollution 光污染
+light pressure 光压
+light quantization 光量子化
+light quantum 光量子
+light scattering 光散射
+light second 光秒
+light sensation 光感
+light shield 遮光罩
+light source 光源
+light step 光阶
+light time 光行时
+light wave 光波
+light weight star 小质量恒星
+light year 缩写:ly。光年
+light-gathering aperture 聚光孔径
+light-gathering power 聚光本领
+lightening 闪光
+lightening flash 闪光
+lightest supersymmetric particle 缩写:LSP。最轻超对称粒子
+lightlike interval 类光间隔
+likelihood 似然度
+likelihood function 似然函数
+limb 边缘
+limb brightening 临边增亮
+limb darkening 临边昏暗
+limb flare 边缘耀斑
+limb polarization 临边偏振
+limb spot 边缘黑子
+limb-darkening coefficient 临边昏暗系数
+limit 极限
+limiting apparent magnitude 极限视星等
+limiting dispersion 极限色散度; 极限频散度
+limiting exposure 极限曝光时间
+limiting flux 极限流量
+limiting frequency 极限频率
+limiting magnitude 极限星等
+limiting photoelectric magnitude 极限光电星等
+limiting photographic magnitude 极限照相星等
+limiting photovisual magnitude 极限仿视星等
+limiting radius 极限半径
+limiting resolution 极限分辨率
+limonite 褐铁矿
+line absorption 线吸收
+line absorption coefficient 线吸收系数
+line array 线型阵
+line asymmetry 谱线不对称性
+line blanketing 谱线覆盖
+line blanketing index 谱线覆盖因子
+line blending 谱线混合
+line blocking 谱线覆盖
+line blocking factor 谱线覆盖因子
+line broadening 谱线变宽
+line broadening by rotation 谱线自转致宽
+line broadening by turbulence 谱线湍动致宽
+line center 线心
+line contour 谱线轮廓
+line core 线心
+line displacement 谱线位移
+line emission 线发射
+line emission cloud 谱线发射云
+line emission nebula 谱线发射星云
+line feed 线形馈源
+line formation 谱线形成
+line identification 谱线证认
+line image sensor 线成像敏感器
+line intensity 谱线强度
+line locking 线锁
+line luminosity 谱线光度
+line of apsides 拱线
+line of collimation 准直线
+line of cusps 月角线
+line of declination 赤纬线
+line of force 力线
+line of inversion 反转线
+line of nodes 交点线
+line of position 位置线
+line of right ascension 赤经线
+line of sight 视线
+line of sight integral 视向积分
+line of vision 视线
+line profile 谱线轮廓
+line radiation 线辐射
+line ratio 谱线比
+line ratio method 谱线比法
+line receiver 谱线接收机
+line scattering 线散射
+line scattering coefficient 线散射系数
+line shift 谱线位移
+line spectrum 线光谱
+line splitting 谱线分裂
+line spread function 线扩散函数
+line strength 谱线强度
+line width 线宽
+line wing 线翼
+line-locking process 线锁过程
+line-of-sight component 视向分量
+line-of-sight velocity 视向速度
+line-profile variable 谱线轮廓变星
+line-shifter 谱线位移器
+linea 线状结构
+linear Stark effect 线性斯塔克效应
+linear amplification 线性放大
+linear aperture 线孔径
+linear bias 线性偏袒
+linear bias model 线性偏袒模型
+linear bias parameter 线性偏袒参数
+linear birefringence 线性双折射
+linear correlation 线性相关
+linear dependence 线性相关
+linear diameter 线直径
+linear dichroism 线二色性
+linear dispersion 线色散度
+linear dispersion relation 线色散关系
+linear distance 线距离
+linear growth factor 线性增长因子
+linear growth rate 线性增长率
+linear independence 线性无关
+linear infall 线性沉降
+linear magnification 线性放大
+linear molecule 线型分子
+linear momentum 线性矩
+linear operator 线性算子
+linear optics 线性光学
+linear perturbation power spectrum 线性扰动功率谱
+linear polarization 线偏振
+linear polyatomic molecule 线型多原子分子
+linear power spectrum 线性功率谱
+linear regression 线性回归
+linear response theory 线性响应理论
+linear size 线大小
+linear space 线性空间
+linear stability 线性稳定性
+linear system 线性系统
+linear transformation 线性变换
+linear velocity 线速度
+linearity 线性
+linearization 线性化
+linearized Einstein equation 线性化爱因斯坦方程
+linearized collisionless Boltzmann equation 线性化无碰撞玻尔兹曼方程
+linearized equations of motion 线性化运动方程
+linearly polarized radiation 线偏振辐射
+liquid core 液态核
+liquid crystal phase corrector 液晶相位改正器
+liquid crystal variable retarder 缩写:LCVR。液晶相位可变延迟器
+liquid helium 液氦
+liquid hydrogen 液氢
+liquid mirror telescope 液[态]镜[面]望远镜
+liquid nitrogen 液氮
+liquid oxygen 液氧
+liquid state 液态
+lit side 光照侧边
+literal algebra 文字代数
+lithium 缩写:Li。锂
+lithium abundance 缩写:Li abundance。锂丰度
+lithium niobate 铌酸锂
+lithium poor star 缩写:Li-poor star。贫锂星
+lithium rich star 缩写:Li-rich star。富锂星
+lithium star 缩写:Li star。锂星
+lithosiderite 石铁陨星
+lithosphere 岩石圈
+little bang 小爆炸
+load 负载
+load switching 负载开关
+lobate ridge 叶状崖脊
+lobate scarp 叶状悬崖
+lobe 瓣; 波瓣
+lobe rotation 波瓣旋转
+lobe sweeping 波瓣开关
+lobe sweeping interferometer 扫瓣干涉仪
+lobe sweeping interferometry 扫瓣干涉测量
+lobes of radio galaxy 射电星系瓣
+lobster-eye X-ray telescope 龙虾眼X射线望远镜
+local F-corona 近域F冕
+local apparent noon 地方视正午
+local apparent time 地方视时
+local approximation 局部近似
+local bias model 局域偏袒模型
+local civil time 地方民用时
+local effect 局域效应
+local equilibrium 局域平衡
+local flow 局域流
+local galaxy 局域星系
+local helioseismology 局部日震学
+local hour-angle 缩写:LHA。地方时角
+local hypothesis of quasars 类星体近域假说
+local inertial frame 局域惯性架
+local inertial system 局域惯性系
+local interaction 局部相互作用
+local ionization equilibrium 局部电离平衡
+local luminosity function 局域光度函数
+local lunar time 地方太阴时
+local mean noon 地方平午
+local mean time 缩写:LMT。地方平时
+local meridian 1、地方子午圈; 2、地方子午线
+local mode 局部模型
+local noon 地方正午
+local object 局域天体
+local oscillator 缩写:LO。本振
+local radio source 局域射电源
+local reference frame 局域参考架
+local reference system 局域参考系
+local refraction 局域大气折射
+local regularization 局部正规化
+local sidereal time 缩写:LST。地方恒星时
+local standard 本地标准
+local standard of rest 缩写:LSR。本地静止标准; 局域静止标准
+local star 局域恒星
+local star cloud 局域恒星云
+local star stream 局域恒星流
+local stellar system 局域恒星系统
+local system 局域恒星系统
+local temperature 局域温度
+local thermal equilibrium 缩写:LTE。局部热平衡
+local thermodynamic equilibrium 缩写:LTE。局部热动平衡
+local time 缩写:LT。地方时
+local true time 地方真时
+local uniformizer 局部单值化参数
+local universe 近域宇宙
+local vertical 地方垂线
+local-group frame 本星系群坐标架
+localized source 近域源
+locating 定位
+location 位置; 定位
+lock-in 锁定
+lock-in amplifier 锁相放大器
+lock-on 捕获
+lock-servo system 锁相伺服系统
+locking 锁定
+locus 轨迹
+locus fictus 视线黄道面交角
+log-periodic antenna 对数周期天线
+log-periodic dipole 对数周期偶极
+log-periodic dipole array 对数周期偶极阵
+log-periodic feed 对数周期馈源
+logarithmic potential 对数势
+logarithmic spiral 对数螺旋线
+lognormal density field 对数正态分布密度场
+lognormal distribution 对数正态分布
+lognormal model 对数正态分布模型
+loitering model 游荡模型
+long baseline interferometer 缩写:LBI。长基线干涉仪
+long baseline interferometry 缩写:LBI。长基线干涉测量
+long exposure 长时间曝光
+long period Cepheid 长周期造父变星
+long period comet 长周期彗星
+long period perturbation 长周期摄动
+long period term 长周期项
+long period variable 缩写:LPV。长周期变星
+long range navigation 缩写:Loran。远程导航; 罗兰
+long time exposure 长时间曝光
+long-axis tube orbit 长轴管形轨道
+long-focus photographic astrometry 长焦距照相天体测量
+long-lived spot 长寿黑子; 长寿太阳黑子
+long-lived sunspot 长寿黑子; 长寿太阳黑子
+long-range coupling 长程耦合
+long-range force 长程力
+long-slit spectrograph 长缝摄谱仪
+long-slit spectroscopy 长缝分光
+long-slit spectrum 长缝光谱
+long-term fluctuation 长期起伏
+long-term forecast 长期预报
+long-term perturbation 长期摄动
+long-term stability 长期稳定性
+long-wave branch 长波支
+longitude 经度
+longitude at the epoch 历元经度
+longitude circle 黄经圈
+longitude distribution 经度分布
+longitude effect 经度效应
+longitude of ascending node 升交点经度
+longitude of descending node 降交点经度
+longitude of node 交点经度
+longitude of periastron 近星点经度
+longitude of perigee 近地点经度
+longitude of perihelion 近日点经度
+longitude of the ascending node 升交点经度
+longitude of the periapsis 近心点经度
+longitudial dispersion corrector 纵向色散改正器
+longitudinal Zeeman effect 纵向塞曼效应
+longitudinal aberration 纵向像差
+longitudinal chromatic aberration 纵向色差
+longitudinal component 纵向分量
+longitudinal conductivity 纵向传导率
+longitudinal diffusion 纵向扩散
+longitudinal diffusion coefficient 纵向扩散系数
+longitudinal electrostatic wave 纵静电波
+longitudinal field 纵场
+longitudinal filter 纵向滤波器
+longitudinal gauge 纵向规范
+longitudinal magnetic field 纵向磁场
+longitudinal magnetic flux 纵向磁通量
+longitudinal plasma turbulence 纵向等离子体湍动
+longitudinal plasma wave 纵向等离子体波
+longitudinal pressure 纵向压力
+longitudinal propagation 纵向传播
+longitudinal spherical aberration 纵向球差
+longitudinal turbulence 纵向湍动
+longitudinal viscosity 纵向黏度
+longitudinal wave 纵波
+longwave photometric system 长波测光系统
+longwave photometry 长波测光
+longwave radiation 长波辐射
+look-back time 回溯时间
+look-up table 缩写:LUT。对照表
+lookback distance 回溯距离
+loop feed 环形馈源
+loop nebula 圈状星云
+loop of retrogression 逆行圈
+loop orbit 环轨道
+loop prominence 环状日珥
+loop quantum gravity 圈量子引力
+loose group 稀疏星系群
+loose phase-lock loop 弱锁相回路
+loose phase-locking 弱锁相
+loosely wound arm 松卷旋臂
+loosely wound spiral arm 松卷旋臂
+lop-sidedness of barred galaxies 有棒星系的不均匀性
+lord of the ascendant 首座星
+loss cone 损失锥
+loss-cone instability 损失锥不稳定性
+lossless medium 无损耗介质
+lost motion 齿隙差
+louver shutter 百叶窗快门
+low earth orbit 缩写:LEO。近地轨道
+low eccentricity 小偏心率
+low excitation radio galaxy 缩写:LERG。低激发射电星系
+low frequency fluctuation 低频起伏
+low frequency radio astronomy 低频射电天文
+low intensity reciprocity 缩写:LIR。低强度倒易性
+low intensity reciprocity failure 缩写:LIRF。低强度倒易性失效
+low ion 低电离离子
+low ionization nuclear emission-line region 缩写:LINER。低电离星系核
+low level 低能级
+low light level CCD 缩写:L3CCD。微光CCD
+low noise 低噪声
+low pass filter 低通滤波器
+low pressure plasma 低压等离子体
+low resolution imaging spectrograph 缩写:LRIS。低分辨率成像光谱仪
+low state 低能态
+low surface-brightness galaxy 缩写:LSB galaxy。低面亮度星系; LSB星系
+low water 低潮
+low-altitude satellite 低高度卫星
+low-band filter 低通滤波器
+low-coefficient glass 低膨胀系数玻璃
+low-dispersion spectrograph 低色散摄谱仪
+low-dispersion spectrometer 低色散分光计
+low-dispersion spectroscopy 低色散分光
+low-dispersion spectrum 低色散光谱
+low-energy component 低能成分
+low-expansion glass 低膨胀玻璃
+low-frequency radio telescope 低频射电望远镜
+low-luminosity galaxy 低光度星系
+low-luminosity star 低光度星
+low-lying state 低能态
+low-mass X-ray binary 缩写:LMXB。小质量X射线双星
+low-mass binary 小质量双星
+low-mass star 小质量星
+low-metallicity 低金属度
+low-metallicity cluster 1、低金属度星团; 2、低金属度星系团
+low-metallicity cluster of galaxies 低金属度星系团
+low-metallicity cluster of stars 低金属度星团
+low-noise amplifier 低噪声放大器
+low-power telescope 低倍率望远镜
+low-redshift 低红移
+low-redshift galaxy 缩写:low-z galaxy。低红移星系
+low-redshift quasar 缩写:low-z quasar。低红移类星体
+low-resolution spectrograph 低分辨率摄谱仪
+low-resolution spectroscopy 低分辨率分光
+low-temperature flare 低温耀斑
+low-temperature plasma 低温等离子体
+low-temperature star 低温星
+low-velocity star 低速星
+low-z galaxy 全称:low-redshift galaxy。低红移星系
+low-z quasar 全称:low-redshift quasar。低红移类星体
+lower atmosphere 低层大气
+lower branch 下半圈
+lower chromosphere 低层色球; 低色球
+lower circle 恒隐圈; 下规
+lower corona 低层日冕; 低日冕
+lower culmination 下中天
+lower limb 下边缘
+lower limit 下限
+lower main sequence 下主星序
+lower mantle 下地幔
+lower transit 下中天
+lowered isothermal model 截断等温模型
+lowland 低地
+loxocosm 地球运行仪
+loxodrome 恒向线
+lucid star 肉眼可见星
+lucida 最亮星
+lucky imaging 幸运成像法
+luminance 发光率
+luminescence 发光
+luminosity 光度
+luminosity class 光度级
+luminosity classification 光度分类
+luminosity coefficient 光度系数
+luminosity curve 光度曲线
+luminosity density 光度密度
+luminosity density of the Universe 宇宙光度密度
+luminosity distance 光度距离
+luminosity distance indicator 光度示距物
+luminosity distribution 光度分布
+luminosity evolution 光度演化
+luminosity function 光度函数
+luminosity indicator 光度示距物
+luminosity mass 光度质量
+luminosity of night sky 夜天光度
+luminosity paradox 光度佯谬
+luminosity parallax 光度视差
+luminosity profile 光度轮廓
+luminosity segregation 光度分层
+luminosity standard star 光度标准星
+luminosity-decline rate relation 光度-减光率关系
+luminosity-period relation of Cepheids 造父变星的周光关系
+luminosity-rate of variation relation 光度-光变率关系
+luminosity-volume test 光度-空间体积检验
+luminous Galactic nebula 亮银河星云
+luminous arc 1、亮弧; 2、光弧
+luminous band 光带
+luminous blue variable 缩写:LBV。高光度蓝变星
+luminous diffuse nebula 亮弥漫星云
+luminous dust nebula 亮尘埃星云
+luminous efficiency 发光效率
+luminous emittance 发光度
+luminous energy 光能
+luminous flux 光流量
+luminous flux density [光]照度
+luminous galaxy nucleus 亮星系核
+luminous giant 亮巨星
+luminous high-latitude star 亮高银纬星
+luminous infrared galaxy 缩写:LIRG。亮红外星系
+luminous intensity 发光强度
+luminous intergalactic matter 亮星系际物质
+luminous intergalactic medium 亮星系际介质
+luminous interstellar matter 亮星际物质
+luminous interstellar medium 亮星际介质
+luminous mass 发光质量
+luminous nebula 亮星云
+luminous red galaxy 缩写:LRG。亮红星系
+luminous red nova 缩写:LRN。亮红新星
+luminous star 高光度星
+lunabase 月海
+lunaite 月球陨石
+lunar appulse 1、半影月食; 2、月犯星; 月星趋近
+lunar aspect 月相
+lunar atmosphere 月球大气
+lunar aureole 月晕
+lunar bounce 月球回波
+lunar calendar 阴历
+lunar chiaroscuro 月相图
+lunar circus 月球圆谷
+lunar crater 1、月面环形山; 2、月面陨击坑
+lunar crust 月壳
+lunar cycle 太阴周
+lunar day 太阴日
+lunar dial 月晷
+lunar diffraction 月衍射
+lunar disk 月面
+lunar distance 月球距离
+lunar dome 月丘
+lunar dust 月尘
+lunar eclipse 月食
+lunar ecliptic limit 月食限
+lunar ephemeris 月球历表
+lunar equation 月离; 月行差
+lunar excursion 登月
+lunar excursion module 缩写:LEM。登月舱
+lunar fines 月球岩粉
+lunar formation 月面结构物
+lunar geology 月质学
+lunar grid 月面视栅
+lunar highland 月面高地
+lunar inequality 月行差
+lunar interval 月躔
+lunar ionosphere 月球电离层
+lunar lander 月球着陆器
+lunar laser ranging 缩写:LLR。激光测月
+lunar libration 月球天平动
+lunar lodge degrees 入宿度
+lunar mansion 宿
+lunar map 月面图
+lunar meteoroid 月球流星体
+lunar module 缩写:LM。登月舱
+lunar month 朔望月; 太阴月
+lunar mountain 月球山系
+lunar node 月轨交点
+lunar nodule 月岩体
+lunar nomenclature 月面命名
+lunar noon 月球正午
+lunar nutation 月球章动
+lunar occultation 月掩星; 月掩源
+lunar occultation technique 月掩星技术
+lunar orbit 月球轨道
+lunar orbit rendezvous 绕月会合
+lunar orbiter 环月飞行器
+lunar parallax 月球视差
+lunar phase 月相
+lunar pole 月极
+lunar primeval element 月球原始元素
+lunar probe 月球探测器
+lunar radar time-synchronization 月球雷达时间同步
+lunar radiation 月球辐射
+lunar rays 月面辐射纹
+lunar rock 月岩
+lunar rover vehicle 月球巡视器; 月球车
+lunar satellite 月球卫星
+lunar seismology 月震学
+lunar seismometer 月震计
+lunar space 近月空间
+lunar surface 月面
+lunar survey probe 月球探测器
+lunar table 月球表
+lunar theory 月离理论
+lunar tidal wave 月潮波
+lunar tide 月潮
+lunar time 太阴时
+lunar topography 月志学
+lunar trajectory 赴月轨道
+lunar transient phenomenon 缩写:LTP。月球暂现现象
+lunar year 太阴年
+lunar zodiac 二十八宿
+lunar-based astronomy 月基天文学
+lunar-based interferometer 月基干涉仪
+lunar-based observatory 月基天文台
+lunar-based telescope 月基望远镜
+lunarite 月陆
+lunarium 月球运行仪
+lunartic 月岩摄谱仪
+lunation 朔望月; 太阴月
+lunation number 朔望月数
+lunation numerator 朔实
+luni-tidal interval 月潮间隔
+lunisolar calendar 阴阳历
+lunisolar diurnal wave 日月周日波
+lunisolar nutation 日月章动
+lunisolar period 日月周期
+lunisolar perturbation 日月摄动
+lunisolar precession 日月岁差
+lunisolar year 阴阳年
+lunistice;lunar standstill 月球至点
+lutetium 缩写:Lu。镥
+ly 全称:light year。光年
+mJy 全称:milli-jansky。毫央
+machine language 机器语言
+machine-readable form 机器可读形式
+macrocosmos 大宇宙
+macrolensing 巨引力透镜
+macrolensing effect 巨引力透镜效应
+macronova 宏新星
+macroquake 宏震
+macroscopic motion 宏观运动
+macroscopic quantity 宏观量
+macroscopic scattering cross-section 宏观散射截面
+macrospicule 巨针状体
+macroturbulence 宏观湍流
+macroturbulent motion 宏观湍动
+macula 暗斑
+mag 全称:magnitude; stellar magnitude。星等
+magic nucleus 幻核
+magic number 幻数
+magma 岩浆
+magma theory 岩浆学说
+magnesium 缩写:Mg。镁
+magnetar 磁陀星
+magnetic Mach number 磁马赫数
+magnetic Reynolds number 磁雷诺数
+magnetic active feature 磁活动体
+magnetic activity 磁活动性
+magnetic annihilation 磁湮灭
+magnetic anomaly 磁异常
+magnetic arc 磁弧
+magnetic arcade 1、磁拱; 2、磁环
+magnetic arm 磁臂
+magnetic axis 磁轴
+magnetic azimuth 磁方位角
+magnetic binary 磁双星
+magnetic bottle 磁瓶
+magnetic braking 磁阻尼
+magnetic bremsstrahlung 磁轫致辐射
+magnetic buoyancy 磁浮力
+magnetic cancellation 磁对消
+magnetic canopy 磁蓬
+magnetic cataclysmic binary 磁激变双星
+magnetic cataclysmic variable 磁激变变星
+magnetic cavity 磁穴
+magnetic cell 磁胞
+magnetic chart 磁图
+magnetic classification 磁场分类; 磁分类
+magnetic cloud 磁云
+magnetic coalescence 磁吞并
+magnetic collapse 磁坍缩
+magnetic compression 磁压缩
+magnetic conductivity 磁导率; 导磁性
+magnetic confinement 磁约束
+magnetic connection 磁联结
+magnetic cooling 磁致冷
+magnetic coupling 磁耦合
+magnetic crochet 磁钩
+magnetic cumulation 磁累积
+magnetic curve 磁变曲线
+magnetic cycle 磁周
+magnetic declination 磁偏角
+magnetic density 磁密度
+magnetic diffusion 磁扩散
+magnetic diffusivity 磁扩散率
+magnetic dip 1、磁倾角; 磁凹陷; 2、磁凹陷
+magnetic dipole 磁偶极子
+magnetic dipole moment 磁偶极矩
+magnetic dipole radiation 磁偶极辐射
+magnetic dipole transition 磁偶极跃迁
+magnetic disorder 磁无序
+magnetic disturbance 磁扰
+magnetic dot 磁点
+magnetic dynamo 磁发电机
+magnetic element 磁元
+magnetic energy 磁能
+magnetic equator 磁赤道
+magnetic field 磁场
+magnetic field wind 磁场风
+magnetic field-free bubble 无磁泡
+magnetic filament 磁暗条
+magnetic flare 磁耀斑
+magnetic flux 磁流
+magnetic flux conservation 磁流守恒
+magnetic flux density 磁流密度
+magnetic flux loop 磁流环; 磁环
+magnetic flux rope 磁流绳; 磁绳
+magnetic flux tube 磁流管
+magnetic focusing 磁致聚焦
+magnetic force 磁力
+magnetic gradient 磁场梯度
+magnetic helicity 磁螺度
+magnetic hill 磁丘
+magnetic inclination 磁倾角; 磁凹陷
+magnetic index 磁指数
+magnetic induction 磁感应
+magnetic instability 磁不稳定性
+magnetic intensity 磁场强度
+magnetic interaction 磁相互作用
+magnetic inversion line 磁反向线
+magnetic knot 磁结
+magnetic leakage 磁漏
+magnetic line 磁力线
+magnetic loop 磁环
+magnetic macroturbulence 磁宏观湍流
+magnetic merging 磁并合
+magnetic meridian 磁子午线
+magnetic microturbulence 磁微观湍流
+magnetic mirror 磁镜
+magnetic moment 磁矩
+magnetic monopole 磁单极
+magnetic monopole radiation 磁单极辐射
+magnetic motive force 磁动力
+magnetic multipole 磁多极
+magnetic multipole radiation 磁多极辐射
+magnetic neutral line 磁中性线
+magnetic north 磁北
+magnetic obliquity 磁倾斜
+magnetic oscillation 磁振荡
+magnetic patch 磁块
+magnetic period 磁变周期
+magnetic permeability 磁导率
+magnetic phase 磁相位
+magnetic plasma 磁等离子体
+magnetic plasma configuration 磁等离子体位形
+magnetic polarity 磁极性
+magnetic polarization 磁极化
+magnetic pole 磁极
+magnetic potential 磁势
+magnetic pressure 磁压
+magnetic prestorm 前磁暴
+magnetic prime vertical 磁卯酉圈
+magnetic property 磁特性
+magnetic puka 磁洞
+magnetic quadrupole 磁四极
+magnetic quadrupole radiation 磁四极辐射
+magnetic reconnection 磁重联
+magnetic region 磁区
+magnetic rigidity 磁刚性
+magnetic rope 磁绳
+magnetic separator 磁拓扑界线
+magnetic separatrix 磁拓扑界面
+magnetic shear 磁剪切
+magnetic sheath 磁鞘
+magnetic shell 磁壳
+magnetic shield 磁屏蔽
+magnetic spectrometer 磁谱仪
+magnetic spherule 磁小球体
+magnetic spiral 磁螺线
+magnetic star 磁星
+magnetic storm 磁暴
+magnetic stream 磁流
+magnetic strength 磁强
+magnetic stress 磁致应力
+magnetic sweep 磁扫
+magnetic tape 磁带
+magnetic tape unit 磁带机
+magnetic tongue 磁舌
+magnetic trap 磁阱
+magnetic turbulence 磁致湍流
+magnetic twist 磁扭绞
+magnetic variable 磁变星
+magnetic variometer 磁变计
+magnetic viscosity 磁黏性
+magnetic wave 磁波
+magnetically driven shock-wave 磁致激波
+magnetized plasma 磁化等离子体
+magneto-bremstrahlung radiation 磁轫致辐射; 磁阻尼辐射
+magneto-convection 磁对流
+magneto-ionic theory 磁离子理论
+magneto-optical effect 磁光效应
+magneto-optical filter 缩写:MOF。磁光滤光器
+magneto-optics 磁光学
+magneto-sheath 磁鞘
+magneto-sound turbulence 磁声湍流
+magneto-sound wave 磁声波
+magneto-turbulence 磁致湍流
+magnetoacoustic gravity 磁声重力
+magnetoacoustic gravity wave 磁声重力波
+magnetoacoustic wave 磁声波
+magnetoactive plasma 磁活动等离子体
+magnetobrems 磁轫致辐射
+magnetobremsstrahlung 磁轫致辐射
+magnetodynamics 磁动力学
+magnetofluid 磁流体
+magnetofluidodynamics 磁流体动力学
+magnetogram 磁图
+magnetograph 磁像仪
+magnetogravity 磁重力
+magnetogravity wave 磁重力波
+magnetoheliograph 太阳磁像仪
+magnetohydrodynamic approximation 磁流[体动]力学近似
+magnetohydrodynamic compression 磁流体压缩
+magnetohydrodynamic instability 磁流[体动]力学不稳定性
+magnetohydrodynamic shock-wave 磁流[体动力]激波
+magnetohydrodynamic turbulence 磁流[体动]力学湍流
+magnetohydrodynamic wave 磁流[体动力]波
+magnetohydrodynamics 缩写:MHD。磁流[体动]力学
+magnetoid 磁旋体
+magnetometer 磁强计
+magneton 磁子
+magnetopause 磁层顶
+magnetoplasma dynamics 磁等离子体动力学
+magnetorotational instability 缩写:MRI。磁转动不稳定性
+magnetosonic mode 磁声模式
+magnetosonic wave 磁声波
+magnetosphere 磁层
+magnetospheric accretion 磁层吸积
+magnetospheric discontinuity 磁层间断
+magnetospheric eternally collapsing object 缩写:MECO。磁层永坍缩体
+magnetospheric model 磁层模型
+magnetospheric storm 磁层暴
+magnetospheric substorm 磁层亚暴
+magnetospheric tail 磁尾
+magnetotail 磁尾
+magnification 放大
+magnification factor 放大因子
+magnification tensor 放大率张量
+magnifying glass 放大镜
+magnifying lens 放大透镜
+magnifying power 放大率
+magnitude 缩写:mag。星等
+magnitude at opposition 冲时星等
+magnitude difference 星等差
+magnitude distortion 星等畸变
+magnitude effect 星等效应
+magnitude equation 星等差
+magnitude of an eclipse 食分
+magnitude of eclipse 食分
+magnitude of greatest eclipse 最大食分
+magnitude range 星等范围
+magnitude scale 星等标
+magnitude screen 星等订正屏
+magnitude system 星等系统
+magnitude-color-index diagram 星等-色指数图
+magnitude-color-index relation 星等-色指数关系
+magnitude-limited sample 限定星等样本
+magnitude-redshift diagram 星等-红移图
+magnitude-redshift relation 星等-红移关系
+magnitude-spectral type diagram 星等-光谱型图
+magnitude-spectral type relation 星等-光谱型关系
+magnon 磁振子
+main asteroid belt 小行星主带
+main beam 主波束; 主射束
+main belt 主带
+main image 主像
+main line 主谱线
+main lobe 主瓣
+main maximum 主极大
+main minimum 主极小
+main pulse 主脉冲
+main reflector 主反射镜
+main resonance 主共振
+main sequence 主序
+main sequence band 主序带
+main sequence fitting 主序拟合
+main sequence lifetime 主序寿命
+main sequence star 缩写:MS star。主序星
+main sequence turnoff 主序折向点; 主序拐点
+main source 主源
+main spot 主黑子
+main sunspot 主太阳黑子
+main tail 主彗尾
+main-beam efficiency 主束效率
+main-belt asteroid 主带小行星
+main-belt comet 主带彗星
+main-lobe solid angle 主瓣立体角
+major axis 长径; 长轴
+major flare 大耀斑
+major limit 大限
+major merger 主并合
+major planet 大行星
+majorant series 强级数
+man-made interference 人为干涉
+maneuvering satellite 机动卫星
+manganese 缩写:Mn。锰
+manganese star 锰星
+manganese-mercury star 锰汞星
+manifest covariance 显协变性
+manifold 流形
+manned balloon 载人气球
+manned flight 载人飞行
+manned rocket 载人火箭
+manned spacecraft 载人飞船
+manned vehicle 载人飞行器
+mansion 宿
+mantle 幔; 地幔
+mantle convection 地幔对流
+mantle plume 地幔柱
+manual control 手控
+many-body problem 多体问题
+many-particle system 多粒子系统
+map cleaning 图像洁化
+map distortion 图像畸变
+mapping 测绘; 制图
+mapping source 测绘源
+marching pulse 漂移脉冲
+marching subpulse 漂移次脉冲
+mare [月]海
+mare-like plain 类海平原
+marebase 月海
+marginal stability 边界稳定性
+marginalization 边缘化
+marginally bound orbit 边缘束缚轨道
+marginally stable orbit 边缘稳定轨道
+marial rock 海岩
+marking 斑纹; 斑点
+marsquake 火星地震
+mas 全称:milliarcsecond; milliarcsec。毫角秒
+mascon 质量瘤
+maser 微波激射; 脉泽
+maser amplifier 微波激射器
+maser source 微波激射源
+maser star 微波激射星; 脉泽星
+masking aperture 拦光孔径
+mass 质量
+mass absorption coefficient 质量吸收系数
+mass balance 质量平衡
+mass concentration 质量瘤
+mass conservation 质量守恒
+mass defect 质量亏损
+mass density 质量密度
+mass discrepancy 质量差异
+mass distribution 质量分布
+mass ejection 质量抛射
+mass equation 质量方程
+mass exchange 质量交换
+mass extinction 质量消散
+mass factor 质量因子
+mass flow 质量流
+mass fraction 质量百分比
+mass function 质量函数
+mass loss 质量损失
+mass matrix 质量矩阵
+mass moment 质量矩
+mass motion 整体运动
+mass ratio 质量比
+mass scattering 质量散射
+mass scattering coefficient 质量散射系数
+mass segregation 质量层化
+mass shell 质壳
+mass spectrograph 质谱仪
+mass spectrometer 质谱计
+mass spectrometry 质谱分析
+mass spectrum 质谱
+mass transfer 质量转移
+mass-energy equivalence 质能相当性
+mass-energy relation 质能关系
+mass-gaining object 增质量天体
+mass-gaining star 增质量星
+mass-losing object 损质量天体
+mass-losing star 损质量星
+mass-loss rate 质量损失率
+mass-luminosity curve 质光曲线
+mass-luminosity law 质光定律
+mass-luminosity ratio 质光比
+mass-luminosity relation 缩写:M-L relation。质光关系
+mass-luminosity-radius relation 质光半径关系
+mass-metallicity relation 质量-金属丰度关系
+mass-radius relation 质量半径关系
+mass-shell condition 质壳条件
+mass-temperature relation 质温关系
+mass-to-charge ratio 质荷比
+mass-to-light ratio 质光比
+mass-to-luminosity ratio 质光比
+massive X-ray binary 缩写:MXRB。大质量X射线双星
+massive black hole 大质量黑洞
+massive compact halo object 缩写:MACHO。晕族大质量致密天体
+massive galaxy 大质量星系
+massive halo 大质量晕
+massive neutrino 有质量中微子
+massive object 大质量天体
+massive star 大质量星
+massless particle 无质量粒子
+master clock 母钟
+master equation 主方程
+master station 主站
+matched filter 匹配滤波器
+matching 匹配
+matching principle 匹配原理
+material arm 物质臂
+mathematical expectation 数学期望
+mathematical horizon 数学地平; 理想地平
+mathematical mode 数学模式
+mathematical model 数学模型
+mathematical pendulum 数学摆; 单摆
+mathematical statistics 数理统计
+matrix formulation 矩阵
+matrix inversion 矩阵求逆
+matrix representation 矩阵表示
+matter 物质
+matter dominated era 物质主导期; 物质占优期
+matter dominated universe 物质主导宇宙; 物质占优宇宙
+matter era 物质期
+matter-antimatter cosmology 物质-反物质宇宙学
+matter-antimatter symmetry 物质-反物质对称性
+matter-radiation equality 物质辐射等量
+mature prominence 成熟日珥
+maximal disk model 最大盘模型
+maximal-volume estimator 最大体积估计
+maximum 极大
+maximum activity 极大活动性
+maximum corona 极大期日冕; 极大日冕
+maximum eclipse 最大食分
+maximum entropy 最大熵
+maximum entropy method 缩写:MEM。最大熵法
+maximum likelihood estimation 缩写:MLE。极大似然估计
+maximum likelihood method 极大似然法
+maximum of eclipse 食甚
+maximum tide 高潮
+mean absolute magnitude 平均绝对星等
+mean absorption coefficient 平均吸收系数
+mean anomaly 平近点角
+mean civil time 平民用时
+mean contour 平均轮廓
+mean daily motion 平均日运动
+mean day 平日
+mean declination 平赤纬
+mean density of matter 平均物质密度
+mean diurnal motion 平均日运动
+mean ecliptic 平黄道
+mean ecliptic sun 黄道平太阳
+mean electron concentration 平均电子浓度
+mean element 平根数
+mean epoch 平均历元
+mean equator 平赤道
+mean equatorial sun 赤道平太阳
+mean equinox 平春分点
+mean error 缩写:rmse。中误差
+mean extinction coefficient 平均消光系数
+mean fictitious clock 平均假钟
+mean free collision time 平均自由碰撞时间
+mean free path 平均自由程
+mean free time 平均自由时
+mean latitude 平纬
+mean life 平均寿命
+mean lifetime 平均寿命
+mean light curve 平均光变曲线
+mean longitude 平经; 平黄经
+mean luminosity density 平均光度密度
+mean magnitude 平均星等
+mean midnight 平子夜
+mean molecular weight 平均分子量
+mean moon 平月亮
+mean motion 平运动
+mean motion resonance 平运动共振
+mean noon 平正午
+mean obliquity 平黄赤交角
+mean observatory 平均天文台
+mean opposition distance 平均冲距
+mean orbit 平均轨道
+mean orbital element 平轨道根数
+mean parallax 平均视差; 统计视差
+mean photoelectric magnitude 平均光电星等
+mean photographic magnitude 平均照相星等
+mean photovisual magnitude 平均仿视星等
+mean place 平位置
+mean pole 平极
+mean position 平位置
+mean profile 平均轮廓
+mean pulse 平均脉冲
+mean radial velocity 平均视向速度
+mean radiation intensity 平均辐射强度
+mean refraction 平均大气折射
+mean right ascension 平赤经
+mean sea-level 平均海平面
+mean sidereal day 平恒星日
+mean sidereal second 平恒星秒
+mean sidereal time 平恒星时
+mean sidereal year 平恒星年
+mean solar day 平太阳日
+mean solar second 平太阳秒
+mean solar time 平太阳时
+mean solar year 平太阳年
+mean spheroid 平均椭球体
+mean square 均方
+mean square density fluctuation 均方密度涨落
+mean square deviation 均方偏差
+mean square error 均方误差; 中误差
+mean square value 均方值
+mean sun 平太阳
+mean synodic month 平朔望月
+mean synodic motion 平朔望运动
+mean synodic period 平朔望周期
+mean synodic revolution 平朔望周
+mean synodic rotation 平朔望周
+mean synodic year 平朔望年
+mean tide 平均潮汐
+mean time 平时
+mean wavelength 平均波长
+mean zone time 平区时
+mean-time clock 平时钟
+mean-time type time-signal 平时式时号
+measurability 可测性
+measurable quantity 可测量
+measure-preserving mapping 保测绘制
+measured coordinate 量度坐标
+measurement 测量; 量度
+measures and weights 权度
+measuring accuracy 测量精度
+measuring error 测量误差
+measuring instrument 测量仪器
+measuring machine 量度仪
+measuring microscope 测微显微镜
+measuring screw 测微螺旋
+mechanical ellipticity 动力学椭率
+mechanical energy 机械能
+mechanical equivalent 功当量
+mechanical equivalent of heat 热功当量
+mechanical equivalent of light 光功当量
+mechanical feedback 力学反馈
+mechanical property 力学特性
+mechanical quantity 力学量
+mechanics 力学
+mechanism 机制
+median 中位数
+median error 中间误差
+median magnitude 中位星等
+median orbit 平均轨道
+median period 中位周期
+median photoelectric magnitude 中位光电星等
+median photographic magnitude 中位照相星等
+median photovisual magnitude 中位仿视星等
+median radius 中位半径
+median relaxation time 中位弛豫时标
+medieval maximum 中世纪极大期
+medieval minimum 中世纪极小期
+medium 介质
+medium speed emulsion 中度乳胶
+medium speed plate 中度底片
+medium-altitude satellite 中高度卫星
+medium-band photometry 中带测光
+medium-band width 中带宽度
+medium-size symmetric objects 缩写:MSO。中型对称天体
+mega-electron-volt 缩写:MeV。兆电子伏
+megamaser 巨微波激射; 巨脉泽
+megaparsec 缩写:Mpc。兆秒差距
+melon-seed effect 瓜籽效应
+member galaxy 成员星系
+member object 成员天体
+member star 成员星
+membrane 膜
+membrane mirror 薄膜镜
+membrane paradigm 膜范式
+memory 存储
+mendelevium 缩写:Md。钔
+meniscus 弯月形透镜
+meniscus Schmidt telescope 弯月形改正镜施密特望远镜
+meniscus correcting plate 弯月形改正板
+meniscus corrector 弯月形改正透镜
+meniscus lens 弯月形透镜
+meniscus mirror 弯月形反射镜
+meniscus telescope 弯月形镜望远镜
+meniscus transit 弯月形镜中星仪
+mensa 坛台
+menstrual epact 月闰余
+mercury 缩写:Hg。汞
+mercury horizon 水银地平
+mercury-manganese star 汞锰星
+merge of galaxy 星系并合
+merger rate 并合率
+merger remnant 并合后星系
+merger scenario 并合图景
+merger tree 并合树
+merging 并合
+merging galaxy 并合星系
+merging star 并合恒星
+meridian 1、子午圈; 2、子午线
+meridian altitude 子午圈高度
+meridian angle 子午角距
+meridian astrometry 子午天体测量
+meridian astronomy 子午天文学
+meridian catalogue 子午星表
+meridian circle 缩写:MC; TC。子午环
+meridian circulation 子午环流
+meridian instrument 1、中星仪; 2、子午仪; 中星仪
+meridian interferometer 中星仪式干涉仪
+meridian line 子午线
+meridian mark 子午标
+meridian observation 1、中天观测; 2、子午观测
+meridian of Greenwich 格林尼治子午线
+meridian passage 中天
+meridian photometer 中天光度计
+meridian photometry 中天测光
+meridian plane 子午面
+meridian transit 中天
+meridian wire 子午丝
+meridian zenith distance 子午天顶距
+meridiem 正午
+meridional circulation 子午环流
+meridional component 子午分量
+meridional flow 子午流
+meridional plane 子午面
+merrillite 磷钙钠石
+mesa 方山
+mesogranulation 中米粒组织
+mesogranule 中米粒
+meson 介子
+mesopause 中间层顶
+mesosiderite 中陨铁
+mesosphere 中间层
+mesotron 介子
+metabolism 新陈代谢
+metagalactic astronomy 总星系天文学
+metagalactic space 总星系空间
+metal absorption line system 金属吸收线系统
+metal abundance 金属丰度
+metal enrichment 金属增丰
+metal line 金属谱线
+metal ratio 金属比
+metal-deficient star 贫金属星
+metal-line star 金属线星
+metal-poor binary 贫金属双星
+metal-poor brown dwarf 贫金属褐矮星
+metal-poor cluster 贫金属星团
+metal-poor dwarf 贫金属矮星
+metal-poor giant 贫金属巨星
+metal-poor globular cluster 贫金属球状星团
+metal-poor object 贫金属天体
+metal-poor star 贫金属星
+metal-rich binary 富金属双星
+metal-rich cluster 富金属星团
+metal-rich dwarf 富金属矮星
+metal-rich giant 富金属巨星
+metal-rich globular cluster 富金属球状星团
+metal-rich object 富金属天体
+metal-rich star 富金属星
+metallic asteroid 金属小行星
+metallic helium 金属氦
+metallic hydrogen 金属氢
+metallic prominence 金属日珥
+metallic star 金属星
+metallic-line star 金属线星
+metallicity 金属度
+metallicity gradient 金属度梯度
+metallicity in galaxy 星系的金属丰度
+metallicity of the IGM 星系际介质金属丰度
+metallicity parameter 金属度参数
+metallicity-luminosity relation 金属丰度-光度关系
+metamorphic rock 变质岩
+metamorphism 变质
+metastability 亚稳度
+metastable atom 亚稳原子
+metastable level 亚稳能级
+metastable state 亚稳态
+metastable-state transition 亚稳态跃迁
+meteor 流星
+meteor astronomy 流星天文学
+meteor brightness 流星亮度
+meteor camera 流星照相机
+meteor echo 流星回波
+meteor flare 流星耀发
+meteor patrol 流星巡天
+meteor patrol camera 流星巡天照相机
+meteor shower 流星雨
+meteor spectrograph 流星摄谱仪
+meteor station 流星观测站
+meteor storm 流星暴
+meteor stream 流星群
+meteor survey 流星巡天
+meteor swarm 流星群
+meteor trail 流星余迹
+meteor trail communication 流星余迹通信
+meteor trail radar 流星尾迹雷达
+meteor train 流星余迹
+meteor trajectory 流星轨迹
+meteoric apex 流星向点
+meteoric body 流星体
+meteoric collision 流星体碰撞
+meteoric dust 流星尘
+meteoric hypothesis 流星假说
+meteoric iron 铁陨星; 铁陨石; 陨铁
+meteoric material 流星物质
+meteoric matter 流星物质
+meteoric seism 陨致地震
+meteoric shower 流星雨
+meteoric stream 流星群
+meteoric swarm 流星群
+meteoric year 流星年
+meteorist 流星学家
+meteorite 陨石
+meteorite astronomy 陨星天文学
+meteorite crater 陨星坑
+meteorite dust 陨星尘
+meteorite hypothesis 陨星假说
+meteorite impact 陨击
+meteorite matter 陨星物质
+meteorite shower 陨星雨
+meteoritic hypothesis 陨星假说
+meteoritic theory 陨星学说
+meteoriticist 陨星学家
+meteoritics 陨星学; 陨石学
+meteoroid 1、微陨星体; 2、流星体
+meteoroid dust 1、微陨星尘; 2、陨星尘
+meteoroid dust cloud 微陨星尘云
+meteoroid stream 流星群
+meteorolite 陨石
+meteorological satellite 气象卫星
+meteorology 气象学
+meter component 米波分量
+meter-wave astronomy 米波天文学
+meter-wave burst 米波暴
+meter-wave radiation 米波辐射
+meter-wave radio astronomy 米波射电天文学
+meter-wave radio telescope 米波射电望远镜
+meter-wave telescope 米波望远镜
+meter-wavelength radiation 米波辐射
+methanal 甲醛
+methane 甲烷
+methanol 甲醇
+methanol maser 甲醇微波激射
+method of coincidence 切拍法
+method of contiguity 偕日法
+method of dependences 依数法
+method of least square 最小二乘法
+method of minimum square 最小二乘法
+method of observation 观测方法
+method of opposability 冲日法
+method of scale 尺度法
+method of successive approximation 逐步近似法
+method of successive generations 逐代法
+method of surface of section 截面法
+methyl alcohol 甲醇
+methyl cyanide 乙腈
+methyl formate 甲酸甲酯
+methyl mercaptan 甲硫醇
+methyl-acetylene 丙炔; 甲基乙炔
+methylamine 甲胺
+methylenimine 甲亚胺
+metric 度规
+metric field 度规场
+metric perturbation 度规扰动
+metric system 米制
+metric tensor 度规张量
+metric wave 米波
+metrology 计量学
+micro-arcsecond 缩写:microarcsec; μas。微角秒
+micro-channel electron multiplier 微通道电子倍增管
+micro-channel plate 缩写:MCP。微通道板
+micro-channel plate detector 缩写:MCP detector。微通道板检测器
+micro-chronometer 测微时计
+micro-electro-mechanical deformable mirrors 微机电变形镜
+micro-programmed control 微程序控制
+micro-satellite 微卫星
+micro-strip 微带
+microarcsec 全称:micro-arcsecond。微角秒
+microarcsec astrometry 微角秒天体测量
+microbeam 微射束
+microcalorimeter 微量能器
+microchannel plate optics 缩写:MCP optics。微通道板光学系统
+microcrater 微陨坑
+microdensitometer 测微密度计
+microdensitometry 显微密度测量
+microflare 微耀斑
+microgravitational lens 微引力透镜
+microgravitational lensing 微引力透镜效应
+microgravity 微重力
+microlens 微引力透镜
+microlensed quasar 微引力透镜化类星体
+microlensing 微引力透镜效应
+microlensing galaxy 微引力透镜效应星系
+microlensing light curve 微引力透镜光变曲线
+microlensing probability 微引力透镜概率
+microlensing survey 微引力透镜巡天
+micromechanism 微观机制
+micrometeor 微流星
+micrometeorite 微陨星
+micrometeoritic dust 微陨星尘
+micrometeoroid 微流星体
+micrometer 测微计
+micrometer constant 测微计常数
+micrometer drum 测微鼓
+micrometer screw 测微螺旋
+micrometer value 测微计周值
+micrometer-microscope 测微显微镜
+microphone sensor 微声传感器
+microphotogram 显微光度图
+microphotometer 显微光度计
+microphotometric tracing 显微光度描迹
+microphotometry 显微光度测量
+microphysics 微观物理学
+micropore optics 缩写:MPO。微孔光学系统
+microprocessor 微处理机
+micropulse 微脉冲
+microquake 微震
+microquasar 微类星体
+microscope-micrometer 显微测微计
+microsecond 微秒
+microsecond pulsar 微秒脉冲星
+microsecond pulse 微秒脉冲
+microseism 微震
+microspot 微黑子
+microstate 微观状态
+microstructure 微观结构
+microturbulence 微观湍流
+microturbulent motion 微观湍动
+microturbulent velocity 微观湍速
+microwave 微波
+microwave absorption 微波吸收
+microwave amplification by stimulated emission of radiation 微波激射; 脉泽
+microwave antenna 微波天线
+microwave background 微波背景
+microwave background radiation 缩写:MBR。微波背景辐射
+microwave background rest frame 微波背景静止框架
+microwave burst 微波暴
+microwave component 微波分量
+microwave emission 微波发射
+microwave heliograph 微波日像仪
+microwave imaging 微波成像
+microwave kinetic induction detector 微波动态电感探测器
+microwave line 微波谱线
+microwave radiation 微波辐射
+microwave spectroscopy 微波频谱测量
+microwave spectrum 微波频谱
+microwave storm 微波暴
+mid-Atlantic ridge 大西洋中脊
+mid-infrared 中红外
+mid-oceanic ridge 洋中脊
+mid-term 中气
+midday 正午
+middle atmosphere 中层大气
+middle corona 中冕
+middle of eclipse 食甚
+middle ring 中环
+middle weight star 中等质量星
+midnight 子夜
+midsize black hole 中型黑洞
+military satellite 军用卫星
+millennium 千禧年; 千年纪
+milli-jansky 缩写:mJy。毫央
+milliarcsec 缩写:mas。毫角秒
+milliarcsecond 缩写:mas。毫角秒
+millimeter astronomy 毫米波天文学
+millimeter radiation 毫米波辐射
+millimeter-wave 毫米波
+millimeter-wave astronomy 毫米波天文学
+millimeter-wave observatory 毫米波天文台
+millimeter-wave radio astronomy 毫米波射电天文学
+millimeter-wave radio telescope 毫米波射电望远镜
+millimeter-wave spectrum 毫米波谱
+millimeter-wave telescope 毫米波望远镜
+millimicrosecond 毫微秒
+million years 缩写:Myr。百万年
+millisecond 毫秒
+millisecond pulsar 缩写:MSP。毫秒脉冲星
+millisecond pulse 毫秒脉冲
+mineral deposit 矿床
+mini black-hole 超小黑洞
+mini gravitational lensing 微引力透镜效应
+mini lensing 微引力透镜效应
+mini quasar 超小类星体
+mini-Neptune 迷你海王星
+mini-computer 微机
+mini-moon 超小卫星
+mini-satellite 超小卫星
+minihalo 超小晕
+minimal supersymmetric standard model 缩写:MSSM。最小超对称模型
+minimum 极小
+minimum corona 极小期日冕; 极小日冕
+minimum detectable brightness 最小可检测亮度
+minimum detectable error 最小可检测误差
+minimum detectable flux 最小可检测流量
+minimum detectable flux density 最小可检测流量密度
+minimum detectable signal 最小可检测信号
+minimum deviation 最小偏向
+minimum deviation angle 最小偏向角
+minimum deviation grating 最小偏向光栅
+minimum e-folds 最小e叠数
+minimum mass 质量下限
+minimum resolution 最小分辨率
+minimum resolvable angle 最小可分辨角
+minimum variance 最小方差
+minimum visibility 最小能见度
+minimum-energy orbit 最小耗能轨道
+minimum-redundancy array 最小冗余[天线]阵
+minor axis 短轴
+minor limit 小限
+minor lobe 副瓣
+minor merger 次并合
+minor planet 小行星
+minor-lobe radiation 副瓣辐射
+minor-lobe solid angle 副瓣立体角
+minor-planet family 小行星族
+minute 分
+minute of arc 缩写:arcmin。角分
+minute of time 时分
+mirage 海市蜃楼
+mire 照准标
+mirror 反射镜
+mirror actuator 镜面致动器
+mirror blank 镜坯
+mirror cell 镜室
+mirror cover 镜盖
+mirror figuring 镜面修琢
+mirror grating 镜栅
+mirror image 镜像
+mirror instability 镜面不稳定性
+mirror plane 镜平面
+mirror reflection 镜式反射
+mirror seeing 镜面视宁度
+mirror sextant 反射式六分仪
+mirror support 镜面支承
+mirror surface 镜面
+mirror telescope 反射望远镜
+mirror transit circle 反射式子午环
+mirror transit instrument 反射式中星仪
+mirror trap 镜俘获
+mirror-lenses system 折反射光学系统
+miscellaneous correlation 混杂相关
+miscellaneous observation 混杂观测
+misidentification 误认
+missing asteroid 丢失小行星
+missing baryon problem 重子缺失问题
+missing comet 丢失彗星
+missing mass 短缺质量
+missing mass problem 质量缺失问题
+missing satellite problem 卫星星系缺失问题
+mixed dark matter 缩写:MDM。混合暗物质
+mixed dark matter model 缩写:MDM model。混合暗物质模型
+mixed perturbation 混合摄动
+mixed state 混合态
+mixed term 混合项
+mixed-polarity magnetic field 极性混合磁场
+mixer 混频器
+mixing layer 混合层
+mixing length 混合长
+mixing length theory 混合长理论
+mixmaster universe 混合主控宇宙
+mixture 混合物
+moat flow 环状外流
+mobility 活动性
+mock gravitational force 伪引力
+mock lunar-ring 幻月环
+mock moon 幻月
+mock solar-ring 幻日环
+mock sun 幻日
+mode 模式
+mode change 模式变化
+mode subtraction 模减除
+mode-hopping 模式耀变
+model 模型
+model atmosphere 模型大气
+model atmosphere analysis 模型大气分析
+model chromosphere 模型色球
+model corona 模型日冕
+model photosphere 模型光球
+model solar atmosphere 模型太阳大气
+model stellar atmosphere 模型恒星大气
+moderate-resolution spectrograph 中分辨摄谱仪
+moderate-resolution spectroscopy 中分辨分光
+moderation 慢化; 中等
+modern astronomy 现代天文学
+modest telescope 中型望远镜
+modified Bessel function 修正贝塞尔函数
+modified English mounting 改进型英国式装置
+modified German mounting 改进型德国式装置
+modified Hubble profile 修正哈勃分布
+modified Julian date 缩写:MJD。简化儒略日期
+modified Julian date system 缩写:MJD system。简化儒略日期
+modified fork mounting 改进型叉式装置
+modified gravity 修改引力
+modified horseshoe mounting 改进型马蹄式装置
+modified isochrone method 改进等龄线法
+modified isothermal sphere 修正等温球
+modified normal equation 约化法方程
+modified value 修正值
+modular field 模场
+modulated receiver 调制接收机
+modulated time signal 调制式时号
+modulation 调制
+modulation collimator 调制式准直器
+modulation effect 调制效应
+modulation index 调制指数
+modulation interferometer 调制型干涉仪
+modulation interferometry 调制型干涉测量
+modulation transfer function 缩写:MTF。调制传递函数
+modulator 调制器
+moduli space 模空间
+modulus of deformation 形变模量
+modulus of distance 距离模数
+modulus of elasticity 弹性模量
+modulus stabilization 模的稳定化
+moldavite 暗绿玻璃
+molecular astronomy 分子天文学
+molecular astrophysics 分子天体物理
+molecular band 分子谱带
+molecular clock 分子钟
+molecular cloud 分子云
+molecular clump 分子团块
+molecular core 分子核
+molecular hydrogen 分子氢
+molecular line 分子谱线
+molecular maser 分子微波激射; 分子脉泽
+molecular outflow 外向分子流
+molecular scattering 分子散射
+molecular shock 分子激波
+molecular spectroscopy 分子谱测量
+molecular spectrum 分子谱
+molecular-line radio astronomy 分子谱线射电天文学
+molecule 分子
+molybdenum 缩写:Mo。钼
+moment actuator 力矩致动器
+moment arm 矩臂
+moment equation 矩方程
+moment of couple 力耦矩
+moment of dipole 偶极矩
+moment of force 力矩
+moment of inertia 惯性矩
+moment of inertia tensor 惯性矩张量
+moment of momentum 动量矩
+momental ellipse 惯量椭圆
+momental ellipsoid 惯量椭球
+momentum 动量
+momentum current 动量流
+momentum equation 动量方程
+momentum-driven wind 动量驱动风
+monitor 监测器
+monitoring 监测
+monoatomic gas 单原子气体
+monocentric eyepiece 单心目镜
+monochromatic aberration 单色像差
+monochromatic absorption 单色吸收
+monochromatic amplitude 单色光变幅
+monochromatic corona 单色日冕; 单色星冕
+monochromatic filter 1、单色滤光器; 2、单色滤光片
+monochromatic flux 单色流量
+monochromatic image 单色像
+monochromatic light 单色光
+monochromatic radiation 单色辐射
+monochromatic wave 单色波
+monochromator 单色器
+monochrometer 单色计
+monocular 单筒望远镜
+monodromy 单值性
+monoenergetic electron 单能电子
+monoenergetic spectrum 单能谱
+monolithic CMOS 单片型CMOS
+monolithic collapse 整体坍缩
+monolithic microwave integrated circuit 缩写:MMIC。微波单片集成电路
+monolithic model 单块模型
+monolithic-mirror telescope 整单镜面望远镜
+monomolecular radiation 单分子辐射
+monomolecule 单分子
+monopolar radiation 单极辐射
+monopole 单极
+monopole emission 单极发射
+monopole problem 单极问题
+monopole radiation 单极辐射
+monopole term 单极项
+monostatic configuration 单元组态
+monotonic function 单调函数
+monotonic model 单调宇宙模型
+monotonic model of the first kind 第一类单调宇宙模型
+monotonic model of the second kind 第二类单调宇宙模型
+mons 山
+month 月
+month of the phases 朔望月; 太阴月
+monthly mean 月平均
+monthly nutation 周月章动
+moom 行星环卫星
+moon bounce time synchronization 缩写:MBTS。月球回波时间同步
+moon dog 幻月
+moon enters penumbra 半影月食始
+moon enters umbra 本影月食始
+moon leaves penumbra 半影月食终
+moon leaves umbra 本影月食终
+moon month 朔望月; 太阴月
+moon rocket 月球火箭
+moon scraper 月岩取样器
+moon seismograph 月震仪
+moon watching 人卫监测
+moon's age 月龄
+moon's evection 出差
+moon's orbit 月球轨道
+moon's path 白道
+moon's phase 月相
+moon's phase law 月相律
+moon's tide 月球潮汐
+moon's variation 二均差
+moon-crossing asteroid 越月小行星
+moon-crossing object 越月天体
+moondial 月晷
+moonlet 超小卫星
+moonquake 月震
+moonrise 月出
+moonrock 月岩
+moonset 月没
+moonwatch 人卫监测
+moonwatch telescope 人卫广角镜
+morning glow 晨辉
+morning group 晨星组
+morning star 晨星
+morning twilight 曙光
+morphological astronomy 形态天文学
+morphological classification 形态分类
+morphological peculiarity 形态特殊性
+morphological property 形态特征
+morphological type 形态型
+morphology 形态学
+morphology segregation 形态层化
+morphology-density relation 形态-密度关系
+mosaic mirror 镶嵌镜面
+mosaic mirror telescope 镶嵌镜面望远镜
+mosaicing 图像拼接法
+most probable error 最概然误差
+most probable value 最概然值
+most probable velocity 最概然速度
+motion 运动
+motion of earth pole 极移
+motive magnetic structure 运动磁结构
+mottle 日芒
+mountain range 山脉
+mountain-building activity 造山运动
+mounted standard instrument 座正仪
+mounting error 安装误差
+mounting of telescope 望远镜机架
+mounting system 支架系统
+moustache 胡须状结构
+movable antenna 可移动天线
+movable ecliptic 移动黄道
+movable sighting set 四游仪
+movable telescope 可移动望远镜
+movable wire 动丝
+moving atmosphere 运动大气
+moving cluster 移动星团
+moving cluster parallax 移动星团视差
+moving element 移动部件
+moving group 移动星群
+moving magnetic feature 运动磁结构
+moving-blade shutter 动片快门
+multi-anode microchannel array 缩写:MAMA。多阳极微通道阵
+multi-antenna array 多天线阵
+multi-antenna radio telescope 多天线射电望远镜
+multi-band 多波段
+multi-channel 多通道
+multi-congugate adaptive optics 缩写:MCAO。多重共轭自适应光学
+multi-element array 多天线阵
+multi-element interferometer 多天线干涉仪
+multi-element interferometry 多天线干涉测量
+multi-element radio telescope 多天线射电望远镜
+multi-mirror telescope 多镜面望远镜
+multi-object adaptive optics 缩写:MOAO。多目标自适应光学
+multi-object spectrograph 多天体摄谱仪
+multi-object spectroscopy 多天体分光
+multi-period 多重周期
+multi-periodic variable 多重周期变星
+multi-phase interferometer 多相干涉仪
+multi-phase interferometry 多相干涉测量
+multi-pinned phase CCD 缩写:MPP CCD。多相钉扎型CCD
+multi-reflecting antenna 多反射面天线
+multi-reflection 多重反射
+multi-reflector 多重反射镜; 多重反射器
+multi-slit mask 多缝掩模
+multi-slit spectrograph 多缝摄谱仪
+multi-spectral scanner 缩写:MSS。多谱扫描仪
+multi-stage rocket 多级火箭
+multi-wire counter 多线计数器
+multiband color-index 多波段色指数
+multiband photometer 多波段光度计
+multiband photometry 多波段测光
+multibay truss 多层桁架
+multibeam receiver 多波束接收机
+multichannel astrometric photometer 缩写:MAP。多通道天测光度计
+multichannel coronagraph 多通道日冕仪
+multichannel coronal spectrometer 多通道日冕分光仪
+multichannel coronograph 多通道日冕仪
+multichannel detector 多通道检测器
+multichannel filter spectrometer 多通道滤波型频谱仪
+multichannel magnetograph 多通道磁像仪
+multichannel photometer 多通道光度计
+multichannel photometry 多通道测光
+multichannel receiver 多通道接收器
+multichannel solar telescope 多通道太阳望远镜
+multichannel spectrometer 多通道分光仪
+multicolor photometer 多色光度计
+multicolor photometry 多色测光
+multicomponent spectrum 多组元波谱
+multidimensional space 多维空间
+multidirectional beam 多向射束
+multifibre spectrometer 多光纤分光仪
+multifibre spectroscopy 多光纤分光
+multifield inflation 多场暴胀
+multilayer X-ray telescope 多层膜X射线望远镜
+multilayer coating 多层镀膜
+multilayer mirror 多层膜镜
+multimission modular spacecraft 缩写:MMS。多任务模块化空间飞行器
+multimode horn 多模喇叭
+multiphase IGM 多相星系际介质
+multiple beam 多波束
+multiple fly-bys 多重飞掠
+multiple galaxy 多重星系
+multiple grating 复光栅
+multiple interferometer 多元干涉仪
+multiple interferometry 多元干涉测量
+multiple meteor 多重流星
+multiple mirror telescope 多镜面望远镜
+multiple quasars 多重类星体
+multiple radio source 多重射电源
+multiple redshift 多重红移
+multiple scattering 多次散射
+multiple star 聚星
+multiple system 多重星系
+multiple tail 多重彗尾
+multiple-arc method 复弧法
+multiple-body problem 多体问题
+multiplet 多重线
+multiplet component 多重子线
+multiplet structure 多重结构
+multiplication 倍增
+multiplication constant 倍增常数
+multiplication factor 倍增因子
+multiplicative noise 可乘噪声
+multiplicity 多重性
+multiplicity function 多重度函数
+multiplier 倍增管; 乘法器
+multiplying interferometer 相乘干涉仪
+multiplying interferometry 相乘干涉测量
+multipolar radiation 多极辐射
+multipole 多极
+multipole coefficients 多极系数
+multipole component 多极分量
+multipole emission 多极发射
+multipole expansion 多极展开
+multipole moments 多极矩
+multipole radiation 多极辐射
+multipole term 多极项
+multiradix index 多基数指数
+multivariate distribution 多变量分布
+multiverse 多重宇宙
+multiwave interaction 多波相互作用
+multiwave-particle interaction 多波-粒子相互作用
+multiwavelength astronomy 多波段天文学
+multiwavelength astrophysics 多波段天体物理
+multiwavelength digital sky survey 多波段数字化巡天
+multiwavelength sky survey 多波段巡天
+multiwavelength survey 多波段巡天
+multiwire proportional counter 多丝正比计数器
+muon μ子
+mural circle 墙仪
+mural quadrant 墙象限仪
+mutual coherence 互相干
+mutual coherence function 缩写:MCF。互相干函数
+mutual induction 互感性
+n-point correlation function n 点相关函数
+nacreous cloud 珠母云
+nadir 天底
+nadir distance 天底距
+nadir reading 天底读数
+nail-bed function 钉板函数
+naked T-Tauri star 显露金牛T型星
+naked T-Tauri variable 显露金牛T型变星
+naked eye 肉眼
+naked singularity 裸奇点
+naked-eye brightness 肉眼亮度
+naked-eye nova 肉眼新星
+naked-eye object 肉眼天体
+naked-eye observation 肉眼观测
+naked-eye supernova 肉眼超新星
+naked-eye variable 肉眼变星
+nakhlite 透辉橄无球粒陨石
+nakshatra month 星宿月
+naming 命名
+nanoflare 纳耀斑
+nanosatellite 纳卫星
+nanosecond 纳秒
+narrow linewidth 窄线宽
+narrow resonance 窄共振
+narrow-band filter 窄波段滤光片; 窄带滤波器
+narrow-band magnitude 窄波段星等
+narrow-band photometer 窄带光度计
+narrow-band photometry 窄带测光
+narrow-band width 窄带宽度
+narrow-beam radiation 窄束辐射
+narrow-line radio galaxy 缩写:NLRG。窄线射电星系
+narrow-line region 缩写:NLR。窄线区
+narrow-line spectrum 窄线光谱
+national astronomical observatory 缩写:NAO。国家天文台
+natural X-ray background 天然X射线背景
+natural bias 自然偏差
+natural broadening 自然展宽
+natural damping 自然阻尼
+natural direction 自然方向
+natural frequency 固有频率
+natural guide star 自然引导星
+natural half-width 自然半宽
+natural inflation 自然暴胀
+natural line-broadening 谱线自然展宽
+natural line-width 自然线宽
+natural optical background 天然光学背景
+natural oscillation 固有振荡
+natural period 固有周期
+natural quartz 天然石英
+natural radiation belt 天然辐射带
+natural radio background 天然射电背景
+natural reference frame 自然参考架
+natural reference system 自然参考系
+natural satellite 天然卫星
+natural seeing 自然视宁度
+natural selection 自然选择
+natural termination 自然终止
+natural tetrad 自然基; 自然四维标架
+natural unit 自然单位
+natural unit system 自然单位系统
+natural vibration 固有振动
+natural weighting 自然权重
+natural width 自然宽度
+natural year 回归年
+natural γ-ray background 天然γ射线背景
+nature 本原
+nautical almanac 航海历书
+nautical astronomy 航海天文学
+nautical mile 海里
+nautical star 导航星
+nautical table 航海用表
+nautical triangle 航海三角形
+nautical twilight 航海晨昏蒙影
+navigation 航行; 航海; 导航
+navigation by earth reference 地球基准导航
+navigation by space reference 空间基准导航
+navigation clock 导航时钟
+navigation satellite 导航卫星
+navigation star 导航星
+navigational object 导航天体
+navigational planet 导航行星
+navigational satellite 导航卫星
+navigational star 导航星
+navigational star number 导航星号
+navigational time scale 导航时标
+navigational triangle 导航三角形
+neap tide 小潮
+near real-time 近实时
+near zone 近区
+near-Earth flyby 近地飞掠
+near-IR 缩写:NIR。近红外
+near-UV 近紫外
+near-circular orbit 近圆轨道
+near-collision nebula 近碰撞星云
+near-contact binary 近相接双星
+near-earth asteroid 缩写:NEA。近地小行星
+near-earth asteroid belt 近地小行星带
+near-earth comet 近地彗星
+near-earth object 缩写:NEO。近地天体
+near-earth satellite 近地卫星
+near-earth space 缩写:NES。近地空间
+near-field cosmology 近场宇宙学
+near-field pattern 近场方向图
+near-in sidelobe 内旁瓣
+near-infrared 缩写:NIR。近红外
+near-infrared glow 近红外天光
+near-lunar space 近月空间
+near-solar space 近日空间
+near-ultraviolet 近紫外
+nearby dwarf 近距矮星
+nearby galaxy 近邻星系
+nearby object 近距天体
+nearby space 近距空间
+nearby star 近距恒星
+nearest star 最近距恒星
+nearly parabolic comet 近抛物线彗星
+nearly parabolic orbit 近抛物线轨道
+nearside of the Moon 月球正面
+nebula 星云
+nebula filter 星云滤镜
+nebular envelope 星云包层
+nebular hypothesis 星云假说
+nebular line 星云谱线
+nebular luminosity 星云光度
+nebular physics 星云物理
+nebular spectrograph 星云摄谱仪
+nebular spectrum 星云光谱
+nebular stage 星云阶段
+nebular transition 星云跃迁
+nebular variable 星云变星
+nebulium [上气下云](读云)
+nebulosity 星云状物质
+nebulous bridge 星云态桥状结构
+nebulous cluster 伴云星团
+nebulous envelope 星云状包层
+nebulous object 星云状天体
+nebulous patch 星云态块状结构
+nebulous ring 星云态环状结构
+needlet 针状小波
+negative 负片
+negative absorption 负吸收
+negative charge 负电荷
+negative conductance amplifier 负导放大器
+negative curvature 负曲率
+negative electricity 负电性
+negative electron 负电子
+negative energy 负能[量]
+negative energy state 负能态
+negative energy wave 负能波
+negative eyepiece 负目镜
+negative hydrogen ion 负氢离子
+negative image 负像
+negative ion 负离子; 阴离子
+negative leap second 负闰秒
+negative lens 负透镜
+negative molecule 负分子
+negative parallax 负视差
+negative pressure 负压
+negative resistance amplifier 负阻放大器
+negative response 负响应
+negatron 负电子
+neighborhood 邻域
+neocosmos 新宇宙
+neodymium 缩写:Nd。钕
+neon 缩写:Ne。氖
+neon nova 氖新星
+neon-rich star 富氖星
+nephelimeter 能见度测定计
+neptunium 缩写:Np。镎
+nested X-ray telescope 嵌套式X射线望远镜
+nested sampling 嵌套采样
+net current 净电流
+net flux 净流量
+net gain 净增益
+network diaphragm 网状光阑
+network field 网络场
+network magnetic field 网络磁场
+network nebula 网状星云
+network structure 网状结构
+neutral atmosphere 中性大气
+neutral atom 中性原子
+neutral current 中性流
+neutral current sheet 中性流片
+neutral equilibrium 随遇平衡
+neutral field 中性场
+neutral field line 中性场线
+neutral filter 中性滤光片
+neutral gas 中性气体
+neutral helium 中性氦
+neutral hydrogen 中性氢
+neutral hydrogen distribution 中性氢分布
+neutral hydrogen region 中性氢区
+neutral hydrogen zone 中性氢区
+neutral line 中性线
+neutral particle 中性粒子
+neutral point 中性点
+neutral region 中性区
+neutral sheet 1、中性片; 2、电流片; 中性片
+neutral solution 临界解
+neutral step filter 中性阶梯滤光片
+neutral step weakener 中性阶梯减光片
+neutralino 中性微子
+neutrino 中微子
+neutrino astronomy 中微子天文学
+neutrino astrophysics 中微子天体物理学
+neutrino background 中微子背景
+neutrino bremsstrahlung 中微子轫致辐射
+neutrino decoupling 中微子退耦
+neutrino deficiency 中微子亏缺
+neutrino degeneracy 中微子简并
+neutrino detection 中微子检测
+neutrino discrepancy 中微子量差
+neutrino freeze-out 中微子冻结
+neutrino loss 中微子损耗
+neutrino loss rate 中微子损耗率
+neutrino mixing 中微子混合
+neutrino oscillation 中微子振荡
+neutrino process 中微子过程
+neutrino scattering 中微子散射
+neutrino telescope 中微子望远镜
+neutron capture 中子俘获
+neutron drop 中子滴
+neutron excess 中子过剩
+neutron matter 中子物质
+neutron pulse 中子脉冲
+neutron radiation 中子辐射
+neutron spectrum 中子能谱
+neutron star 中子星
+neutron-proton ratio 中子-质子比
+neutron-to-proton ratio 中子-质子比
+neutronization 中子化
+new galactic coordinate 新银道坐标
+new inflation 新暴胀
+new moon 朔; 新月
+new star 新生星
+newly formed star 新生星
+next generation telescope 缩写:NGT。下一代望远镜
+nickel 缩写:Ni。镍
+nickel-iron meteorite 镍铁陨星
+night 夜
+night airglow 夜气辉
+night arc 夜弧
+night assistant 夜间观测助理
+night brightness 夜天亮度
+night dial 夜晷
+night glow 夜天光
+night glow emission 夜天光发射
+night sky 夜天
+night sky background 夜天背景
+night sky brightness 夜天亮度
+night sky light 夜天光
+night sky radiation 夜天辐射
+night sky spectrum 夜天光谱
+night transparency 夜天透明度
+night value 夜间值
+night vision 夜视
+night-time seeing 夜间视宁度
+nimbus phenomena 雨云现象
+niobium 缩写:Nb。铌
+nitric oxide 一氧化氮
+nitric sulfide 一硫化氮
+nitrogen 缩写:N。氮
+nitrogen branch 氮支
+nitrogen sequence 氮序
+nitrogen star 氮星
+no-boundary conjecture 无边界猜想
+no-evolution galaxy model 无演化星系模型
+no-hair theorem for black hole 黑洞无毛定理
+nobelium 缩写:No。锘
+noble gas 稀有气体
+noctilucent cloud 缩写:NLC。夜光云
+noctilucent train 夜光余迹
+nocturnal 夜间定时仪
+nocturnal arc 地平下弧
+nodal line 交点线; 节线
+nodal plane 节平面
+nodal point 交点; 节点
+nodal precession 交点进动
+nodal regression 交点退行
+nodding technique 点头技术
+node 交点
+node surface 节面
+nodical month 交点月
+nodical year 交点年
+noise 噪声
+noise bandwidth 噪声带宽
+noise equivalent bandwidth 缩写:NEB。噪声等效带宽
+noise equivalent charge 缩写:NEC。噪声等效电荷
+noise equivalent power 缩写:NEP。噪声等效功率
+noise factor 噪声因子
+noise figure 噪声系数
+noise fluctuation 噪声起伏
+noise generator 噪声发生器
+noise level 噪声电平
+noise power 噪声功率
+noise power spectrum 噪声功率谱
+noise source 噪声源
+noise spectrum 噪声谱
+noise storm 噪暴
+noise temperature 噪声温度
+noise-adding receiver 噪声注入接收器
+noise-free receiver 无噪声接收器
+noise-temperature ratio 噪声-温度比
+nomenclature 命名; 命名法
+nominal error 标称误差
+nominal frequency 标称频率
+nominal orbit 标称轨道
+nominal time 标称时刻
+nomogram 列线图
+nomograph 列线图
+nomography 列线图法
+non-Fraunhofer component 非夫琅和费分量
+non-Gaussian density field 非高斯密度场
+non-Gaussian effect 非高斯效应
+non-Gaussian field 非高斯场
+non-Gaussian fluctuation 非高斯涨落
+non-Gaussianity 非高斯性
+non-adiabatic pulsation 非绝热脉动
+non-affine deformation 非仿射形变
+non-agesimal 黄道地平最高点
+non-autonomous system 非自治系统
+non-axisymmetric disk 非轴对称盘
+non-axisymmetrical configuration 非轴对称组态
+non-axisymmetrical distribution 非轴对称分布
+non-baryonic dark matter 非重子暗物质
+non-baryonic matter 非重子物质
+non-central collision 非中心碰撞
+non-circularity 非正圆性
+non-cluster galaxy 非属团星系
+non-cluster star 非属团恒星
+non-coherent emission 非相干发射
+non-coherent radiation 非相干辐射
+non-coherent re-emission 非相干再发射
+non-coherent re-radiation 非相干再辐射
+non-coherent scattering 非相干散射
+non-coherent synchrotron radiation 非相干同步加速辐射
+non-conservative scattering 非守恒散射
+non-coplanar axes 非共面轴
+non-current field 无电流场
+non-cyclic variation 非周期变化
+non-destroy readout 缩写:NDRO。无损示值读数
+non-diamagnetic plasma 非抗磁等离子体
+non-dimensional number 无量纲数
+non-directional antenna 非定向天线
+non-dissipative interaction 非耗散相互作用
+non-elastic collision 非弹性碰撞
+non-empty model 非空虚模型
+non-equilibrium flow 非平衡态流
+non-equilibrium plasma 非平衡态等离子体
+non-equilibrium plasmon 非平衡态等离激元
+non-equilibrium state 非平衡态
+non-gravitational effect 非引力效应
+non-gravitational force 非引力
+non-gravitational motion 非引力运动
+non-gray atmosphere 非灰大气
+non-grey atmosphere 非灰大气
+non-holonomic constraint 不完整约束
+non-homogeneous model 非均匀模型
+non-homogeneous universe 非均匀宇宙
+non-interacting binary galaxy 非互扰双重星系
+non-interacting binary star 非互扰双星
+non-interacting close binary 非互扰密近双星
+non-isolating integral 非孤立积分
+non-leap year 平年
+non-linear astronomy 非线性天文学
+non-linear dispersion 非线性色散
+non-linear evolution of perturbation 扰动的非线性演化
+non-linear infall 非线性沉降
+non-linear interaction 非线性相互作用
+non-linear molecule 非线型分子
+non-linear optics 非线性光学
+non-linear scattering 非线性散射
+non-linear stability 非线性稳定性
+non-linear stabilization 非线性稳定化
+non-linear term 非线性项
+non-linear transfer 非线性转移
+non-local thermodynamic equilibrium 缩写:NLTE。非局部热动平衡
+non-magnetic particle 非磁化粒子
+non-main-sequence star 非主序星
+non-nucleated dwarf elliptical galaxy 无核矮椭圆星系
+non-nucleated dwarf galaxy 无核矮星系
+non-periodic comet 非周期彗星
+non-periodic variable 非周期变星
+non-periodic variation 非周期变化
+non-polar variation of latitude 非极纬度变化
+non-potential motion 无势运动
+non-potentiality 非势[场]性
+non-proton flare 非质子耀斑
+non-radial distribution 非径向分布
+non-radial motion 非径向运动
+non-radial oscillation 非径向振荡
+non-radial pulsation 非径向脉动
+non-radial pulsator 非径向脉动体
+non-random deviation 非随机偏离
+non-random distribution 非随机分布
+non-reciprocity 非倒易性
+non-recurrent burst 非复现暴
+non-recurrent disturbance 非复现扰动
+non-redundant array 非冗余阵
+non-redundant masking 非过剩遮幅成像
+non-relativistic cosmology 非相对论性宇宙学
+non-relativistic degeneracy 非相对论性简并性
+non-relativistic model 非相对论性模型
+non-relativistic particle 非相对论性粒子
+non-relativistic universe 非相对论性宇宙
+non-relativistic zone 非相对论性区
+non-resonant diffusion 非共振扩散
+non-resonant particle 非共振粒子
+non-reversibility 不可逆性
+non-rigidity 非刚性
+non-rotating origin 无旋转原点
+non-rotating potential 无转动势
+non-rotating white dwarf 无自转白矮星
+non-selective absorption 非选择性吸收
+non-selective emission 非选择性发射
+non-selective radiation 非选择性辐射
+non-singular lens 非奇异透镜
+non-stable star 不稳定星
+non-standard cosmological model 非标准宇宙模型
+non-standard cosmology 非标准宇宙学; 备择宇宙学
+non-standard model 非标准模型
+non-standard solar model 非标准太阳模型
+non-static model 非静态模型
+non-static universe 非静态宇宙
+non-stationary model 非稳态模型
+non-stationary universe 非稳态宇宙
+non-steady state 非稳态
+non-stellar object 非星天体
+non-synchrotron radiation 非同步加速辐射
+non-thermal background 非热背景
+non-thermal bremsstrahlung 非热轫致辐射
+non-thermal electron 非热电子
+non-thermal emission 非热发射
+non-thermal particle 非热粒子
+non-thermal process 非热过程
+non-thermal production of dark matter 暗物质的非热产生
+non-thermal proton 非热质子
+non-thermal radiation 非热辐射
+non-thermal radio halo 非热射电晕
+non-thermal radio radiation 非热射电
+non-thermal radio source 非热射电源
+non-thermal source 非热辐射源
+non-thermal spectrum 非热频谱
+non-thermal velocity 非热速度
+non-thermodynamic equilibrium 缩写:NTE。非热动平衡
+non-turbulent diffusion 非湍动扩散
+non-uniform compact source 非均匀致密源
+non-uniform magnetic field 非均匀磁场
+non-uniform model 非均匀模型
+non-uniform universe 非均匀宇宙
+non-uniformity 不均匀性
+non-variable source 不变源
+non-velocity redshift 非速度红移
+non-volatile substance 非挥发性物质
+nonlinear bias 非线性偏袒
+nonliving planet 无生命行星
+nonredundant aperture masking 非冗余孔径掩模法
+nonrelativistic compton scattering 非相对论康普顿散射
+noon 午
+noon interval 正午间隔
+noon-mark 正午标
+norm 范数
+normal Zeeman effect 正常塞曼效应
+normal acceleration 法向加速度
+normal astrograph 标准天体照相仪
+normal distribution 正态分布
+normal equation 法方程
+normal force 法向力
+normal form 范式
+normal galaxy 正常星系
+normal gravity 正常重力
+normal incidence telescope 正入射式望远镜
+normal latitude 标准点纬度
+normal magnitude 正常星等
+normal mode 简正模
+normal nebula 正常星云
+normal place 标准位置
+normal point 基准点; 并组点
+normal profile 正常轮廓
+normal shock wave 正激波
+normal spectrum 匀排光谱
+normal spiral galaxy 正常旋涡星系
+normal star 正常恒星
+normal stellar wind 正常星风
+normal tail 正常彗尾
+normal time 标准时间
+normal velocity 法向速度
+normal vibration 简正振动
+normalisation 归一化
+normalization 归一化
+normalized coordinate 标准化坐标
+normalized power pattern 归一化功率方向图
+normalized unit 归一化单位
+normalizing 归一
+north 北
+north celestial pole 北天极
+north ecliptic pole 北黄极
+north equatorial belt 缩写:NEB。[木星]北赤道带
+north following star 东北星
+north frigid zone 北寒带
+north galactic spur 北银极支
+north galactic-polar spur 北银极支
+north heliographic pole 日面北极
+north north temperate belt 缩写:NNTB。[木星]北北温带
+north point 北点
+north polar distance 缩写:NPD。北极距
+north polar sequence 缩写:NPS。北极星序
+north polar spur 北银极支
+north pole 北极
+north preceding star 西北星
+north temperate belt 缩写:NTB。木星北温带
+north temperate zone 北温带
+north-south asymmetry 南北不对称性
+northbound node 升交点
+northern celestial hemisphere 北天[区]
+northern elongation 北大距
+northern galaxy 北天星系
+northern hemisphere 缩写:NH。北半球
+northern latitude 北纬
+northern light 北极光
+northern limit 北界限
+northern limit of eclipse 北食限
+northern polarity 北极性
+northern reference star 北天参考星
+northern sky 北天[区]
+northern star 北天恒星
+nose frequency 鼻频
+nose whistler 鼻啸
+notch filter 点阻滤波器
+nova 新星
+nova explosion 新星爆发
+nova frequency 新星出现率
+nova outburst 新星爆发
+nova rate 新星出现率
+nova spectrum 新星光谱
+nova-like X-ray source 类新星X射线源
+nova-like star 类新星
+nova-like variable 类新星变星
+novoid 罗巴切夫斯基空间
+nuclear activity 核活动
+nuclear astrophysics 核天体物理
+nuclear bulge 核球
+nuclear burning 核燃烧
+nuclear density 核密度
+nuclear disk 核盘
+nuclear emulsion 核乳胶
+nuclear evolution time 核演化时标
+nuclear fission 核裂变
+nuclear fusion 核聚变
+nuclear magnetic resonance 缩写:NMR。核磁共振
+nuclear magneton 核磁子
+nuclear matter 核物质
+nuclear physics 核物理
+nuclear process 核过程
+nuclear quadrupole resonance 缩写:NQR。核四极共振
+nuclear radiation 核辐射
+nuclear reaction 核反应
+nuclear ring 核区环
+nuclear spin 核自旋
+nuclear star 核心星
+nuclear star cluster 核星团
+nuclear statistical equilibrium 核统计平衡
+nuclear stellar disk 缩写:NSD。核区恒星盘
+nuclear time-scale 核反应时标
+nuclear wind 星系核风
+nuclear-track emulsion 核径迹乳胶
+nucleated dwarf elliptical galaxy 有核矮椭圆星系
+nucleated dwarf galaxy 有核矮星系
+nucleid 核类
+nucleochronology 核年代测定
+nucleocosmochronology 核纪年法
+nucleogenesis 核起源; 核形成
+nucleon 核子
+nucleosynthesis 核合成
+nucleosynthesis era 核合成时期
+nucleus 核; 核心
+nucleus band 核带
+nucleus of comet 彗核
+nucleus of condensation 凝聚核
+nucleus of galaxy 星系核
+nucleus population 核星系
+nuclide 核素
+null cone 零锥
+null field 零场
+null geodesic 零测地线
+null infinity 零无限远; 类光无限远
+null point 零点
+null surface 零曲面
+null-balanced receiver 零位接收器
+nulling coronagraph 消零星冕仪
+nulling interferometer 消零干涉仪
+nulling interferometry 消零干涉测量
+nulling phenomenon 脉冲消失现象
+number counting 计数
+number counts of galaxy 星系计数
+number density 数密度
+number density profile 数密度轮廓
+number-flux relation 计数-流量关系
+number-magnitude distribution 计数-星等分布
+numbered asteroid 编号小行星
+numbered supernova 编号超新星
+numerator 计数器
+numerical analysis 数值分析
+numerical approximation 数值近似
+numerical cosmology 数值宇宙学
+numerical differentiation 数值微分
+numerical estimate 数值估计
+numerical filtering 数值滤波
+numerical integration 数值积分
+numerical invariant 数值不变量
+numerical method 数值方法
+numerical model 数值模型
+numerical simulation 数值模拟
+numerical solution 数值解
+numerical technique 数值技术
+nutation 章动
+nutation constant 章动常数
+nutation ellipse 章动椭圆
+nutation in longitude 黄经章动
+nutation in obliquity 黄赤交角章动
+nutation in right ascension 赤经章动
+nutation of inclination 黄赤交角章动
+nutation of longitude 黄经章动
+nutation period 章动周期
+nutational constant 章动常数
+nutational ellipse 章动椭圆
+object glass 缩写:OG。物镜
+object plane 物平面
+object prism spectrograph 物端棱镜摄谱仪
+object space 物方; 物空间
+objective 缩写:OG。物镜
+objective catalog 客观星表
+objective classification 客观分类
+objective grating 物端光栅
+objective lens 物端透镜
+objective prism 物端棱镜
+objective-prism spectrum 物端棱镜光谱
+oblate ellipsoid 扁椭球体
+oblate isotropic rotator 各向同性扁转子
+oblate spheroid 扁球体
+oblate spheroidal coordinate 1、扁球面坐标; 2、等轴扁椭球坐标
+oblateness 扁率
+oblique ascension 斜升
+oblique coordinate 斜交坐标
+oblique descension 斜降
+oblique hydromagnetic shock wave 斜磁流激波
+oblique impact 斜碰
+oblique pulsator 斜脉动星
+oblique rotator 斜转子
+oblique rotator model 斜转子模型
+oblique rotator theory 斜转子理论
+oblique sphere 斜交天球
+obliquity 1、倾角; 2、斜交; 3、黄赤交角
+obliquity of the ecliptic 黄赤交角
+obscuration 掩
+obscured variable 屏蔽变星
+obscuring nebula 遮掩星云
+obscuring torus 遮蔽环
+observable object 可观测天体
+observable quantity 可观测量
+observable universe 可观测宇宙
+observation equation 观测方程
+observation platform 观测平台
+observational astronomy 观测天文学; 实测天文学
+observational astrophysics 实测天体物理学
+observational catalogue 观测星表
+observational cosmology 观测宇宙学
+observational data 观测数据
+observational dispersion 观测弥散度
+observational error 观测误差
+observational material 观测资料
+observational network 观测网
+observational program 观测程序
+observational project 观测计划
+observational quantity 观测量
+observational sampling 观测采样
+observational selection 观测选择
+observatory 天文台
+observatory dome 天文台圆顶
+observed data 观测数据
+observed distribution 观测分布
+observed place 观测位置
+observed quantity 观测量
+observed value 观测值
+observer 观测者
+observing cage 观测小室
+observing frequency 观测频率
+observing season 观测季
+observing station 观测站
+observing table 窥几
+observing technique 观测技术
+obsidianite 似曜石
+obtuse angle 钝角
+occultation 掩
+occultation angle 掩食角
+occultation band 掩带
+occultation curve 掩食曲线
+occultation of planet 掩食行星
+occultation of satellite 掩食卫星
+occultation of source 掩源
+occultation of star 掩星
+occultation time 掩食时刻
+occultation variable 掩食变星
+occulting disk 遮掩圆面
+occulting mask 星掩模
+occulting object 遮掩天体
+occulting source 遮掩源
+occultor 掩星器
+occupation number 占据数
+occupation ratio 占有比
+occurrence rate 出现率
+ocean ridge 洋脊
+ocean tide 洋潮
+ocean trench 洋沟
+ocean trough 洋槽
+ocean-floor spreading 洋底扩张
+oceanographic satellite 海洋科学卫星
+oceanography 海洋学
+oceanus 洋
+octahedrite 八面体陨星
+octant 八分仪; 45°视角
+octave 倍频程
+octet 1、八重态; 2、八重线
+ocular 目镜
+ocular circle 出射光瞳
+ocular micrometer 目镜测微计
+odd coupling 奇耦合
+odd cycle 奇数周
+odd state 奇态
+odd-even nucleus 奇偶核
+odd-number theorem 奇数定理
+odd-odd nucleus 奇奇核
+odd-parity 奇宇称
+off-axis Cassegrain telescope 离轴卡塞格林望远镜
+off-axis English mounting 偏轴英国式装置
+off-axis Gregorian telescope 离轴格里高利望远镜
+off-axis aberration 轴外像差
+off-axis distribution 离轴分布
+off-axis effect 偏轴效应
+off-axis guider 离轴导星镜
+off-axis image 轴外像
+off-axis imaging 轴外成像
+off-axis mounting 偏轴式装置
+off-axis observation 轴外观测
+off-band observation 偏带观测
+off-center interferogram 离心干涉图谱
+off-center interferometry 离心干涉测量
+off-focus detection 离焦探测
+off-focus image 离焦像
+off-focus imaging 离焦成像
+off-focus observation 离焦观测
+offset 偏置
+offset coordinated time 补偿协调时
+offset guiding 偏置导星
+offset guiding device 偏置导星装置
+offset guiding telescope 偏置导星镜
+offset in right ascension 赤经偏差
+offset local time 补偿地方时
+offset observation 偏置观测
+ohmic dissipation 欧姆耗散
+ohmic heating 欧姆致热
+ohmic loss 欧姆损耗
+oil horizon 油地平
+old Moon in the new Moon's arms 新月抱旧月
+old disk star 老年盘族星
+old inflation 旧暴胀
+old moon 残月
+old nova 老新星
+old star 老年恒星
+older population 老年星族
+oligarchic growth 寡头式生长
+olivine 橄榄石
+omni-directional antenna 全向天线
+omni-directional effect 全向效应
+omni-directional flux 全向流量
+on-band observation 在带观测
+on-board clock 在载钟
+on-board telescope 在载望远镜
+on-line 联机
+on-line clock 联机钟
+on-line data handling 联机数据处理
+on-line data processing 联机数据处理
+on-line filtering 联机滤波
+on-line system 联机系统
+on-off measurement 通断测量; 离合测量
+on-site clock visit 到站钟访; 现场钟访
+on-site measurement 就地测量
+on-source time 在源时间
+on-the-fly mapping 飞扫成图法
+once-through correcting plate 单程改正片
+once-through corrector 单程改正镜
+one-armed density perturbation 单臂密度扰动
+one-dimensional aperture synthesis 一维综合孔径
+one-dimensional classification 一元分类
+one-dimensional synthesis 一维综合孔径
+one-parameter method 单参数法
+one-particle distribution function 单粒子分布函数
+one-way Doppler 单程多普勒
+one-way light time 单程光行时
+one-way membrane 单向膜
+one-way satellite system 单路卫星系统
+one-zone model 单区模型
+onion skin model 洋葱皮模型
+opacity 不透明度
+opacity coefficient 不透明系数
+opaque atmosphere 不透明大气
+open arc crater 开环形山弧
+open chain crater 开环形山链
+open cluster 疏散星团
+open cluster of stars 疏散星团
+open configuration 开组态
+open inflation 开暴胀
+open model 开模型
+open solar telescope 开放式太阳望远镜
+open spiral galaxy 疏散旋涡星系
+open star cluster 疏散星团
+open string 开弦
+open universe 开宇宙
+open-air radio telescope 露天式射电望远镜
+open-air telescope 露天望远镜
+openness 松紧度
+operation 运作
+operational amplifier 运算放大器
+opposition 冲
+opposition effect 冲效应
+opposition in right ascension 赤经冲
+opposition surge 冲闪
+optical aperture-synthesis imaging 光学综合孔径成像
+optical aperture-synthesis imaging technique 光学综合孔径成像技术
+optical appearance 光学外观
+optical arm 光学臂
+optical astrometry 光学天体测量
+optical astronomy 光学天文学
+optical astrophysics 光学天体物理
+optical axis 光轴
+optical binary 光学双星
+optical brightness 光学波段亮度
+optical burst 光学波段暴
+optical center 光心
+optical clock 光学钟
+optical component 光学子星
+optical counterpart 光学对应体
+optical density 缩写:OD。光学密度
+optical depth 光深
+optical design 光学设计
+optical disk 光学盘
+optical double 视双星; 光学双星
+optical double galaxy 光学双星系
+optical double star 光学双星
+optical emission 光学发射
+optical equipment 光学设备
+optical fiber interferometer 光纤干涉仪
+optical fibre 光纤
+optical film 光膜
+optical filter 滤光片
+optical flare 光学耀斑
+optical flash 光学闪
+optical galaxy 光学星系
+optical glass 光学玻璃
+optical glow 光学天光
+optical guidance 光学导航
+optical horizon 光视界
+optical identification 光学证认
+optical image 光学像
+optical imaging 光学成像
+optical instrument 光学仪器
+optical interferometer 光学干涉仪
+optical interferometry 光干涉测量
+optical laser radar 激光雷达
+optical libration 光学天平动
+optical light 可见光
+optical luminosity function 光学光度函数
+optical material 光学材料
+optical micrometer 光学测微计
+optical object 光学天体
+optical observation 光学观测
+optical observatory 光学天文台
+optical outburst 光学波段爆发
+optical pair 光学双星
+optical path 光程
+optical path length 光程长
+optical path length equalizer 光程补偿器
+optical phase 光学相位
+optical picture 光学图
+optical pointing telescope 光学指向望远镜
+optical position 光学位置
+optical processor 光学处理机
+optical property 光学特性
+optical pulsar 光学脉冲星
+optical pulsation 光学脉动
+optical pulse 光学脉冲
+optical pumping 光学抽运
+optical radar 光波雷达
+optical radiation 光学辐射
+optical scalar equation 光学标量方程
+optical scanner 光学扫描仪
+optical scanning 光学扫描
+optical sensibilization 光学增敏
+optical spectrometer 光波分光计
+optical spectroscopy 光波分光
+optical spectrum 光谱
+optical sun 光学太阳
+optical surface 光学表面
+optical system 光学系统; 光具组
+optical telescope 光学望远镜
+optical temperature 光学温度
+optical testing 光学检验
+optical theodolite 光学经纬仪
+optical thickness 光学厚度
+optical tracking 光学跟踪
+optical tracking theodolite 光学跟踪经纬仪
+optical transfer function 缩写:OTF。光学转移函数
+optical truss 光学桁架
+optical variable 光学变星
+optical visual binary 光学目视双星
+optical waveguide 光学波导
+optical wedge 光学尖劈
+optical window 光学窗口
+optically identified object 光学证认天体
+optically identified source 光学证认源
+optically thick 光学厚
+optically thick medium 光厚介质
+optically thin 光学薄
+optically thin absorption 光学薄吸收
+optically thin emission 光学薄发射
+optically thin medium 光薄介质
+optically violent variable quasar 缩写:OVV quasar。光剧变类星体; OVV类星体
+optically violently variable quasar 缩写:OVV quasar。光剧变类星体; OVV类星体
+optically visible object 光学可见天体
+optics 光学
+optimization 最优化
+optimum 最优
+optimum filter 最佳滤光片
+optimum transfer 最佳过渡
+opto-acoustical processor 光声处理机
+orb 天体
+orbifold 轨形
+orbit 轨道
+orbit averaged approximation 轨道平均近似
+orbit control 轨道控制
+orbit correction 轨道改正
+orbit determination 定轨
+orbit dynamics 轨道力学
+orbit improvement 轨道改进
+orbit plane 轨道面
+orbit prediction 轨道预报
+orbit resonance 轨道共振
+orbit transfer 轨道转移
+orbit-averaged Fokker-Planck equation 轨道平均福克-普朗克方程
+orbit-averaged diffusion coefficient 轨道平均扩散函数
+orbit-orbit resonance 轨轨共振
+orbit-rotation resonance 轨旋共振
+orbit-superposition method 轨道交叠法
+orbital acceleration 轨道加速度
+orbital angular momentum 轨道角动量
+orbital angular velocity 轨道角速度
+orbital anisotropy 轨道各向异性
+orbital chaos 轨道混沌
+orbital circularization 轨道圆化
+orbital decay 轨道衰减
+orbital determination 定轨; 轨道测定
+orbital eccentricity 轨道偏心率
+orbital electron capture 轨道电子俘获
+orbital element 轨道根数
+orbital evolution 轨道演化
+orbital frequency 轨道频率
+orbital inclination 轨道倾角
+orbital instability 轨道不稳定性
+orbital latitude 轨道纬度
+orbital longitude 轨道经度
+orbital motion 轨道运动
+orbital node 轨道交点
+orbital period 轨道周期
+orbital phase 轨道相位
+orbital plane 轨道面
+orbital stability 轨道稳定性
+orbital theory 轨道理论
+orbital velocity 轨道速度
+orbital workshop 轨道工作室
+orbiter 轨道飞行器
+orbiting collision 轨道碰撞
+orbiting telescope 轨道望远镜
+order of magnitude 数量级
+order of perturbation 摄动阶
+order of spectrum 光谱级
+order parameter 有序参数
+order region 有序区
+ordered orbit 有序轨道; 规则轨道
+ordinary chondrite 普通球粒陨星
+ordinary periodic solution 常周期解
+ordinary ray 寻常光线
+ordinary wave 寻常光波
+organic matter 有机物质
+organic molecule 有机分子
+organic scintillator 有机闪烁体
+organon parallacticon 星位尺
+orientation 定向; 定位
+orientation angle 定向角; 定位角
+orientation correction 定向改正; 定位改正
+orientation parameter 定向参数; 定位参数
+orientation star 定向星; 定位星
+oriented meteorite 有向陨星
+origin 起源; 原点
+origin of elements 元素起源
+origin of the universe 宇宙起源
+original atmosphere 原大气
+original planet 原行星
+original star 原恒星
+original sun 原太阳
+orogenetic process 造山过程
+orphan afterglow 孤立余辉
+orrery 太阳系仪; 七政仪
+orthicon 正析摄像管
+ortho-hydrogen 正氢
+ortho-spectrum 正谱
+orthochromatic plate 正色底片
+orthodrome 大圆
+orthogonal axes 正交轴
+orthogonal coordinate 正交坐标
+orthogonal function 正交函数
+orthogonal polarization 正交偏振
+orthogonal space-time 正交时空
+orthogonal transfer CCD 缩写:OTCCD。正交转移CCD
+orthogonal transformation 正交变换
+orthogonality 正交性
+orthographic projection 正投影
+orthometric correction 正交改正
+orthomode 正交模式
+orthonormal tetrad 正交四维标架
+orthopyroxene 斜方辉石
+orthoscopic eyepiece 无畸变目镜
+orthostate 正态
+oscillating mode 振动模
+oscillating model 振动模型; 振荡模型
+oscillating satellite 振动卫星
+oscillating universe 振荡宇宙
+oscillation 振动; 振荡
+oscillation phase 振动相位
+oscillation pile-up 振荡堆垒
+oscillator 振子; 振荡器
+oscillator strength 振子强度
+oscillatory motion 振荡运动
+oscillogram 波性图
+oscillograph 示波仪
+oscilloscope 示波器
+osculating element 吻切根数
+osculating ellipse 吻切椭圆
+osculating epoch 吻切历元
+osculating orbit 吻切轨道
+osculating orbital elements 吻切轨道根数
+osculating plane 吻切平面
+osculating point 吻切点
+osmium 缩写:Os。锇
+out of phase 异相
+out-of-equilibrium decay 失衡衰变
+outbreak 爆发
+outburst 爆发
+outer Lagrangian point 外拉格朗日点
+outer Lindblad radius 外林德布拉德半径
+outer Lindblad resonance 外林德布拉德共振
+outer asteroid belt 外小行星带
+outer atmosphere 外层大气
+outer core 外核
+outer corona 外冕
+outer gap 外围隙
+outer halo 外晕
+outer halo cluster 外晕族星团
+outer planet 带外行星
+outer product 外积
+outer ring 外环
+outer solar system 外太阳系
+outer space 外层空间
+outer-belt asteroid 外带小行星
+outer-shell electron 外壳电子
+outgassing 排气
+outline curve 轮廓线
+output 输出
+output device 输出装置
+output impedance 输出阻抗
+outside-eclipse variation 食外变光
+outward winding 旋开
+oval distortions in disk galaxy gas 盘星系气体卵形扭曲
+oval nebula 卵形星云
+oval-shaped curve 卵形曲线
+oval-shaped curve of zero velocity 卵形零速度曲线
+oven 炉
+over-exposure 曝光过度
+over-flux 超额流量
+over-heating 过热
+over-heating instability 过热不稳定性
+overall bandwidth 总带宽
+overall magnetic field 总体磁场
+overall noise 总噪声
+overall noise temperature 总噪声温度
+overcast sky 阴天
+overcontact binary 过接双星
+overcooling problem 过冷却问题
+overdense matter 超密物质
+overdense plasma 超密等离子体
+overdensity 过密度
+overionization 过电离
+overlap method 重叠法
+overlap of spectral lines 谱线重叠
+overlapping 重叠
+overlapping region 重叠区
+overluminous object 超大光度天体
+overluminous star 超大光度恒星
+overlying 叠加
+overlying region 叠加区
+overmassive object 超大质量天体
+overmassive star 超大质量恒星
+overscan 过扫描
+overshooting 1、超射; 2、超射; 过冲
+overstability 超稳定性
+overstable mode 超稳定模
+overtaking collision 追撞
+overtone 谐波
+overtone frequency 谐波频率
+overtone mode 谐波模
+oxygen 缩写:O。氧
+oxygen burning 氧燃烧
+oxygen sequence 氧序
+oxygen star 氧星
+oxygen-rich star 富氧星
+oxysphere 岩石圈
+ozone layer 臭氧层
+ozonosphere 臭氧层
+p brane p膜
+p-mode p模; 压力模
+p-process 质子过程
+p-spot 全称:leading sunspot; preceding sunspot; preceding spot; leading spot。前导黑子; p黑子
+p-sunspot 全称:leading sunspot; preceding sunspot; preceding spot; leading spot。前导黑子; p黑子
+p.e. 全称:probable error。概差; 可几误差
+p.m. 全称:post meridiem。下午
+pNGB 全称:psuedo Nambu-Goldstone boson。赝南部-戈德斯通玻色子
+package 组件; 集装
+packing fraction 敛集率
+pair annihilation 对湮灭
+pair annihilation cross-section 对湮灭截面
+pair annihilation neutrino process 对湮灭中微子过程
+pair creation 粒子对产生
+pair of galaxies 星系对
+pair of radio sources 射电源对
+pair of stars 星对
+pair potential 对势
+pair production 粒子对产生
+pair production telescope 正负电子对生成望远镜
+pair tracker 正负电子对示踪器
+pair-instability supernova 生对不稳定性超新星
+pair-production instability 生对不稳定性
+pairing energy 成对能量
+pairwise peculiar velocity dispersion 成对本动速度弥散
+pairwise velocity dispersion 缩写:PVD。成对速度弥散
+palaeoclimate 古气候
+palaeogeography 古地理
+palaeogeology 古地质
+paleoclimate 古气候
+paleogeography 古地理
+paleogeology 古地质
+paleointensity 古磁场强度
+paleomagnetism 古地磁
+paleotectonics 古地质构造
+paleotopography 古地形
+palladium 缩写:Pd。钯
+pallasite 橄榄陨铁
+palus 沼
+pan 摇镜头
+pancake model 薄饼模型
+pancake theory 薄饼理论
+panchromatic plate 全色底片
+pancosmic theory 泛宇宙学说
+pancosmism 泛宇宙论
+pancosmos 泛宇宙
+panel 课题组
+panoramic camera 全景照相机
+panoramic detection 全景探测
+panoramic receiver 扫频接收机
+paper clock 纸钟
+para-curve 抛物线
+para-hydrogen 仲氢
+para-spectrum 仲谱
+para-state 仲态
+parabola 抛物线
+parabolic antenna 抛物面天线
+parabolic comet 抛物线轨道彗星
+parabolic coordinate 抛物坐标
+parabolic cylinder antenna 抛物柱面天线
+parabolic mirror 抛物面镜
+parabolic orbit 抛物线轨道
+parabolic radio telescope 抛物面射电望远镜
+parabolic reflector 抛物面反射镜
+parabolic space 抛物空间
+parabolic velocity 抛物线速度
+paraboloid 抛物面
+paraboloid antenna 抛物面天线
+paraboloid mirror 抛物面镜
+paraboloid radio telescope 抛物面射电望远镜
+paraboloid reflector 抛物面反射镜
+paraboloidal antenna 抛物面天线
+paraboloidal mirror 抛物面镜
+paraboloidal radio telescope 抛物面射电望远镜
+paraboloidal reflector 抛物面反射镜
+parabscanning 抛物面扫描
+paradox 佯谬
+paragravity 类重力
+parallactic angle 星位角
+parallactic displacement 视差位移
+parallactic ellipse 视差椭圆
+parallactic equation 月角差
+parallactic error 视差误差
+parallactic inequality 月角差
+parallactic libration 视差天平动
+parallactic motion 视差动
+parallactic mounting 赤道式装置
+parallactic orbit 视差轨道
+parallactic refraction 折射视差
+parallactic rule 视差尺
+parallactic shift 视差位移
+parallactic triangle 视差三角形
+parallax 视差
+parallax factor 视差因子
+parallax second 缩写:pc; parsec。秒差距
+parallax star 视差星
+parallel 纬线; 纬圈; 平行圈
+parallel circle 1、纬[度]圈; 2、纬圈; 平行圈
+parallel connection 并联
+parallel displacement 平行位移
+parallel drift 平行漂移
+parallel drifting bands 平行漂移带
+parallel drifting zebras 平行漂移带
+parallel flow 层流
+parallel of altitude 地平纬圈; 平行圈
+parallel of declination 赤纬圈
+parallel of latitude 1、纬[度]圈; 2、黄纬圈
+parallel plate 平行片
+parallel sphere 平行球
+parallel transport 平行移动
+paramagnet 顺磁体
+paramagnetic resonance 顺磁共振
+parameter 参数; 参量
+parameter variance 参数方差
+parameterized post-Newtonian formalism 缩写:PPN formalism。参数化后牛顿形式
+parametric amplification 参量放大
+parametric amplifier 参量放大器
+parametric converter 参量变频器
+parametric latitude 归化纬度; 归心纬度
+parametric oscillation 参量振荡
+parametric oscillator 参量振荡器
+parametric resonance 参数共振
+paranthelion 远幻日
+paranthelionic circle 幻日环
+parantiselene 远幻月
+paraselene 近幻月
+paraselenic circle 幻月环
+parasite 天电干扰
+parasitic image 寄生像
+parasitic light 寄生光
+parasitic signal 寄生信号
+parasitic star 寄生星
+parasitics 寄生效应
+paraxial image 近轴像
+paraxial ray 近轴光线
+parent body 母体
+parent cloud 母云
+parent comet 母彗星
+parent galaxy 母星系
+parent object 母天体
+parent planet 母行星
+parhelic circle 幻日环
+parhelion 幻日
+parity 宇称
+parity conservation 宇称守恒
+parity nonconservation 宇称不守恒
+parity violation 宇称破坏
+parking orbit 停泊轨道
+parry arc 彩晕弧
+parsec 全称:parallax second。秒差距
+partial coherence 部分相干性
+partial degeneracy 部分简并性
+partial density 部分密度
+partial eclipse 偏食
+partial eclipse beginning 偏食始
+partial eclipse end 偏食终
+partial eclipse solution 偏食解
+partial lunar eclipse 月偏食
+partial pressure 分压
+partial solar eclipse 日偏食
+partial wave amplitude 分波强度
+partial wave decomposition 分波分解
+partially eclipsing binary 偏食双星
+partially filled aperture 部分连续孔径
+partially ionization 部分电离
+partially ionized plasma 部分电离等离子体
+partially polarization 部分偏振
+partially polarized radiation 部分偏振辐射
+particle 粒子
+particle acceleration 粒子加速
+particle accretion 粒子吸积
+particle astronomy 粒子天文学
+particle astrophysics 粒子天体物理学
+particle beam 粒子束
+particle confinement 粒子囚禁
+particle creation 粒子创生
+particle detection 粒子探测
+particle distribution function 粒子分布函数
+particle encounter 粒子碰撞
+particle escape 粒子逃逸
+particle flux 粒子流量
+particle horizon 粒子视界
+particle interaction 粒子相互作用
+particle production 粒子产生
+particle-field interaction 粒子-场相互作用
+particle-mesh algorithm 缩写:PM algorithm。质点-网格算法
+particle-particle algorithm 缩写:PP algorithm。质点-质点算法
+particle-particle-particle-mesh algorithm 缩写:P3M algorithm。质点-质点-质点-网格算法
+particle-particle-particle-mesh code 缩写:P3M code。质点-质点-质点-网格程序
+particular solution 特解
+particulate 微粒
+partition function 配分函数
+partner star 伴星
+parton 部分子
+passage 通过
+passband 通带
+passband width 带宽
+passive device 无源器件
+passive evolution 消极演化
+passive gravitational mass 被动引力质量
+passive network 无源网络
+passive satellite 无源卫星
+passive shielding 被动屏蔽
+past light-cone 昔日光锥
+patch 斑片
+patera 山口,托边火山结构
+path 路径; 星下轨迹
+path delay 路径延迟
+path difference 程差
+path length 程长
+path length correction 程长改正
+path loss 路径损耗
+path of annular eclipse 环食带
+path of annular phase 环食带
+path of annularity 环食带
+path of eclipse 食带
+path of total eclipse 全食带
+path of totality 全食带
+patrol camera 巡天照相机
+patrol survey 巡天
+pattern flattening 方向图平化
+pattern function 方向图函数
+pattern multiplication 方向图相乘
+pattern smoothing 方向图平滑
+pattern solid angle 方向图立体角
+pattern speed 图案速度
+pattern velocity 图案速度
+patterned ground 月面花样表层
+payload 有效载荷; 仪表舱
+pc 全称:parallax second。秒差距
+peak aphelion 最大远日点
+peak apogee 最大远地点
+peak energy 峰值能量
+peak load 峰值载荷
+peak value 峰值
+peak-background split 峰-背景分离
+peakology 峰值分析
+pear-shaped Earth 梨形地球
+pear-shaped curve 梨形曲线
+pear-shaped curve of zero velocity 梨形零速度线
+pebble accretion 卵石吸积
+peculiar A star 缩写:Ap star。Ap星; A型特殊星
+peculiar B star 缩写:Bp star。B型特殊星
+peculiar B-A star B-A型特殊星
+peculiar galaxy 特殊星系
+peculiar giant star 特殊巨星
+peculiar motion 本动
+peculiar motion component 本动分量
+peculiar nebula 特殊星云
+peculiar object 特殊天体
+peculiar proper motion 本动
+peculiar spectrum 特殊光谱
+peculiar speed 本动速度
+peculiar star 特殊恒星
+peculiar variable 特殊变星
+peculiar velocity 本动速度
+peculiar velocity field 本动速度场
+peculiar white dwarf 特殊白矮星
+pedestal 支柱
+pedestal crater 基座陨击坑
+pen error 笔尖误差
+pencil 光锥
+pencil beam 笔束
+pencil beam survey 笔束巡天
+pencil rocket 小型火箭
+pencil-beam antenna 笔束天线
+pencil-beam survey 笔束巡天
+pendulum 摆
+pendulum clock 摆钟
+pendulum gravimeter 摆式重力仪
+pendulum level 摆水准
+pendulum mass 摆锤
+pendulum tiltmeter 摆式倾斜仪
+pendulum vibration 摆动
+penetrability 贯穿本领
+penetrating coefficient 贯穿系数
+penetrating encounter 穿透交会
+penetrating power 贯穿本领
+penetration 贯穿
+penetration depth 贯穿深度
+penetration height 贯穿高度
+penetrative convection 贯穿对流
+pentaprism test 五棱镜检验
+pentet 五重线
+penumbra 半影
+penumbral eclipse 半影食
+penumbral filament 半影纤维
+penumbral lunar eclipse 半影月食
+penumbral magnitude of eclipse 半影食分
+penumbral region 半影区
+penumbral wave 半影波
+pep reaction 全称:proton-electron-proton reaction。质子-电子-质子反应; pep反应
+peragration 月球公转恒星周
+percolation 渗流
+peret 冬季
+perfect cosmological principle 完全宇宙学原理
+perfect fluid 理想流体
+perfect gas 理想气体
+perfect prolate spheroid 理想长等轴椭球体
+perfect radiator 理想辐射体
+perfectly diffusing sphere 全散射球
+perfectly diffusion 全散射
+peri-distance 近心点距
+periapse 近质心点
+periapse distance 近质心点距
+periapsis 近点; 近拱点
+periapsis distance 近拱点距
+periareon 近火点
+periastron 近星点
+periastron advance 近星点进动
+periastron distance 近星点距
+periastron effect 近星点效应
+periastron precession 近星点进动
+pericenter 近心点
+pericenter distance 近心距
+pericynthion 近月点
+peridotite 橄榄岩
+perifocus 近主焦点
+perigalactic distance 近银心点距
+perigalactic passage 过近银心点
+perigalacticon 近银心点
+perigalacticum 近银心点
+perigeal tide 近地点潮
+perigean tide 近地点潮
+perigee 近地点
+perigee distance 近地点距
+perigee kick 近地点启动
+perihelic conjunction 近日点合
+perihelic opposition 近日点冲
+perihelion 近日点
+perihelion distance 近日[点]距
+perihelion effect 近日点效应
+perihelion motion 近日点进动
+perihelion passage 过近日点
+perihelion precession 近日点进动
+perihelion precession of Mercury 水星近日点进动
+perihelion time 过近日点时刻
+perijove 近木点
+perilune 近月点
+perimartian 近火点
+perimercurian 近水点
+period 周期
+period change 周期变化
+period determination 周期测定
+period discontinuity 周期突变
+period gap 周期性空隙
+period of light variation 光变周期
+period of moon's node 月球交点周期
+period of revolution 公转周期
+period resolution 周期分辨率
+period variation 周期变化
+period-age relation 周期-年龄关系
+period-amplitude relation 周期-变幅关系
+period-color relation 周期-颜色关系
+period-density relation 周期-密度关系
+period-eccentricity 周期-偏心率关系
+period-luminosity curve 周光曲线
+period-luminosity relation 缩写:P-L relation。周光关系
+period-luminosity-color relation 缩写:P-L-C relation。周光色关系
+period-mass relation 周期-质量关系
+period-mean density relation 周期-平均密度关系
+period-radius relation 周径关系
+period-spectrum relation 周谱关系
+periodic comet 周期彗星
+periodic error 周期误差
+periodic function 周期函数
+periodic inequality 周期差
+periodic instability 周期性不稳定
+periodic motion 周期运动
+periodic orbit 周期轨道
+periodic oscillation 周期振荡
+periodic pattern 周期性方向图
+periodic perturbation 周期摄动
+periodic point 周期点
+periodic process 周期性过程
+periodic stream 周期性流星群
+periodic surface 周期曲面
+periodic term 周期项
+periodic variable 周期变星
+periodic variation 周期变化
+periodicity 周期性
+periodogram 周期图
+periodograph 周期图仪
+periodometer 周期计
+periplutonian 近冥王点
+periplutonium 近冥王点
+periposeidon 近海王点
+perisaturnian 近土点
+perisaturnium 近土点
+periscian region 日影环绕区
+periselene 近月点
+perisphere 外围层
+periuranian 近天王点
+periuranium 近天王点
+permafrost layer 永冻层
+permanent bench mark 固定水准点
+permanent calendar 万年历
+permanent magnet 永磁体
+permanent magnetism 永磁性
+permeability 磁导率
+permeance 磁导
+permissible error 容许误差
+permitted line 容许谱线
+permitted transition 容许跃迁
+permittivity 电容率
+perpendicular 垂线; 正交
+perpendicular collision 垂直碰撞
+perpendicular component 垂直分量
+perpendicular hydromagnetic shockwave 正交磁流激波
+perpetual calendar 万年历
+perpetual day 永昼
+perpetual night 长夜
+persistence of vision 视觉驻留
+persistent train 久现流星余迹
+personal difference 人差
+personal equation 人差
+personal error 人差
+perspective 透视
+perspective anomaly 透视近点角
+perturbation 摄动; 微扰
+perturbation amplitude 扰动幅度
+perturbation equation 摄动方程
+perturbation function 摄动函数
+perturbation growth 扰动增长
+perturbation method 摄动方法
+perturbation of dark matter 暗物质扰动
+perturbation of entropy 熵扰动
+perturbation power spectrum 扰动功率谱
+perturbation spectrum 扰动谱
+perturbation theory 摄动理论
+perturbations on sub-Planckian scale 亚普朗克尺度扰动
+perturbative force 摄动力
+perturbed body 受摄体
+perturbed coordinate 受摄坐标
+perturbed element 受摄根数
+perturbed motion 受摄运动
+perturbed object 受摄体
+perturbed orbit 受摄轨道
+perturbed state 受摄态
+perturbing body 摄动体
+perturbing object 摄动体
+perturbing term 摄动项
+petrology 岩石学
+pezograph 气印
+phantom dark energy 幽灵暗能量
+phantom field 幽灵场
+phantom telescope 仿真望远镜
+phase 相
+phase angle 相位角
+phase center 相位中心
+phase change 相变
+phase closure 相位闭合
+phase coefficient 相位系数
+phase collision 相位碰撞
+phase contrast wavefront sensor 相位对比波前传感器
+phase correlation 相位相关
+phase curve 相位曲线
+phase defect 相位短缺
+phase delay 相位延迟
+phase demodulation 相位解调
+phase detector 鉴相器
+phase diagram 相位图
+phase difference 相位差
+phase displacement 相移
+phase effect 相位效应
+phase error 相位误差
+phase function 相位函数
+phase instability 相位不稳定性
+phase integral 相位积分
+phase jitter 相位抖动
+phase jump 相位突变
+phase lag 相位滞后
+phase law 相位律
+phase lead 相位超前
+phase locking 锁相
+phase mask 相位掩模
+phase mask coronagraph 相位掩模星冕仪
+phase mixing 相点混合
+phase modulation 调相
+phase noise 相位噪声
+phase of an eclipse 食相
+phase of eclipse 食相
+phase of planets 行星相
+phase of the moon 月相
+phase path 相程
+phase plane 相平面
+phase prediction 相位预测
+phase quadrature 90°相
+phase referencing 相位参考法
+phase reversal 反相
+phase rotation 相位旋转
+phase rotator 相位旋转器
+phase screen model 相屏模型
+phase sensitive detector 相敏检波器
+phase shift 相移
+phase shifter 相移器
+phase space 相空间; 相宇
+phase space density 相空间密度
+phase spectrum 相位谱
+phase stability 相位稳定性
+phase switching 相位开关
+phase tracking 相位跟踪
+phase transformation 相变
+phase transition 相变
+phase velocity 相速度
+phase-measuring interferometer 测相干涉仪
+phase-measuring interferometry 测相干涉测量
+phase-shifting compensator 相移补偿器
+phase-space density 相空间密度
+phase-space distribution function 相空间分布函数
+phase-space volume 相空间体积
+phase-swept interferometer 扫相干涉仪
+phase-swept interferometry 扫相干涉测量
+phase-switching interferometer 相位开关干涉仪
+phase-switching interferometry 相位开关干涉测量
+phased array 相控阵
+phased array feed 相控阵馈源
+phaseless 无相位
+phaseless aperture synthesis 无相位孔径综合
+phasing 定相
+phasing antenna 定相天线
+phasing camera 相位相机
+phasing method 调相方法
+phasing sensor 相位传感器
+phasing technique 调相技术
+phenomenological theory 唯象理论
+phonon 声子
+phosphorescence 磷光
+phosphorescent scintillation 磷光闪烁
+phosphorus 缩写:P。磷
+phoswitch 层叠闪烁体
+photino 光微子
+photo-digitizing system 缩写:PDS。图像数字仪
+photo-disintegration 光致蜕变
+photo-dissociation 光致离解
+photo-dissociation region 缩写:PDR。光致离解区
+photo-emulsion 照相乳胶
+photo-etched structure 光刻结构
+photo-event 光子事件
+photo-excitation 光致激发
+photo-recombination 光致复合
+photocathode 光阴极
+photocell 光电管
+photocenter 光心
+photocentric orbit 光心轨道
+photochemistry 光化学
+photochronograph 照相记时仪
+photoconductive cell 光导管
+photoconductive detector 光导检测器
+photoconductive effect 光导效应
+photocurrent 光电流
+photodetachment 光致分离
+photodetector 光电检测器
+photodissociation 光致离解
+photoelectric Stokes polarimeter 光电斯托克斯偏振计
+photoelectric absolute magnitude 光电绝对星等
+photoelectric absorption 光电吸收
+photoelectric absorption coefficient 光电吸收系数
+photoelectric astrolabe 光电等高仪
+photoelectric astrometry 光电天体测量
+photoelectric cathode 光电阴极
+photoelectric cell 光电管
+photoelectric colorimeter 光电比色计
+photoelectric current 光电流
+photoelectric effect 光电效应
+photoelectric guider 光电导星镜
+photoelectric guiding 光电导星
+photoelectric guiding telescope 光电导星镜
+photoelectric image tube 光电像管
+photoelectric instrument 光电仪器
+photoelectric ionization 光致电离
+photoelectric light curve 光电光变曲线
+photoelectric magnitude 光电星等
+photoelectric meridian circle 光电子午环
+photoelectric microphotometer 光电测微光度计
+photoelectric photometer 光电光度计
+photoelectric photometry 光电测光
+photoelectric polarimeter 光电偏振计
+photoelectric polarimetry 光电偏振测量
+photoelectric radial-velocityspectrometer 光电视向速度仪
+photoelectric receptor 光电接收器
+photoelectric solar magnetograph 太阳光电磁像仪
+photoelectric spectrophotometer 光电分光光度计
+photoelectric spectrophotometry 光电分光光度测量
+photoelectric speedometer 光电视向速度仪
+photoelectric star-photometer 恒星光电光度计
+photoelectric temperature 光电温度
+photoelectric tracking 光电跟踪
+photoelectric transit instrument 光电中星仪
+photoelectric tube 光电管
+photoelectron 光电子
+photoelectronic device 光电器件
+photoelectronic imaging 光电成像
+photoelement 光电元件
+photoemission 光电发射
+photoemissive cell 光电发射管
+photoemitter 光电发射体
+photoevaporate 光致蒸发
+photoevaporation 光致蒸发
+photogrammeter 照相测量仪
+photogrammetric method 照相测量法
+photogrammetric refraction 照相测量大气折射
+photogrammetry 照相测量
+photograph 照片
+photographic absolute magnitude 照相绝对星等
+photographic absorption coefficient 照相吸收系数
+photographic albedo 照相反照率
+photographic astrometry 照相天体测量学
+photographic astrophotometry 照相天体测光
+photographic astrospectroscopy 照相天体分光
+photographic calibration 照相定标
+photographic camera 照相机
+photographic catalogue 照相星表
+photographic chart 照相星图
+photographic density 照相密度
+photographic developer 显影剂
+photographic effect 照相效应
+photographic emulsion 照相乳胶
+photographic ephemeris 照相星历表
+photographic film 照相胶片
+photographic filter 滤色镜
+photographic fog 底片雾
+photographic instrument 照相仪器
+photographic integration 照相累积
+photographic latent image 照相潜像
+photographic light curve 照相光变曲线
+photographic magnetograph 照相磁像仪
+photographic magnitude 照相星等
+photographic material 照相材料
+photographic meridian circle 照相子午环
+photographic meteor 照相流星
+photographic noise 照相噪声
+photographic objective 照相物镜
+photographic observation 照相观测
+photographic photometer 照相光度计
+photographic photometry 照相测光
+photographic plate 照相底片
+photographic processing 照相处理
+photographic radiant 照相辐射点
+photographic refractor 折射天体照相仪
+photographic resolution 照相分辨率
+photographic solar magnetograph 太阳照相磁像仪
+photographic spectrophotometer 照相分光光度计
+photographic spectrophotometry 照相分光光度测量
+photographic spectroscopy 照相分光
+photographic speed 照相感光速度
+photographic star catalogue 照相星表
+photographic telescope 照相望远镜
+photographic tracking 照相跟踪
+photographic transit circle 照相子午环
+photographic transit instrument 照相中星仪
+photographic triangulation 照相三角测量
+photographic vertical circle 照相垂直环
+photographic zenith tube 缩写:PZT。照相天顶筒
+photography 照相
+photoheliogram 太阳照片
+photoheliograph 太阳照相仪
+photoionization 光致电离
+photoionization cross-section 光电离截面
+photoionization heating 光电离致热
+photoionization model 光致电离模型
+photoionization transition 光电离跃迁
+photoionized plasma 光电离等离子体
+photoluminescence 光致发光
+photometer 光度计
+photometer head 光电头
+photometric absolute magnitude 测光绝对星等
+photometric accuracy 测光精度
+photometric bench 光度台
+photometric binary 测光双星
+photometric calibration 测光定标
+photometric catalogue 测光星表
+photometric data system 缩写:PDS。测光数据仪
+photometric diameter 测光直径
+photometric distance 测光距离
+photometric double star 测光双星
+photometric element 测光根数
+photometric ellipticity 测光椭率
+photometric error 测光误差
+photometric index 测光指数
+photometric method 测光方法
+photometric night 测光夜
+photometric orbit 测光轨道
+photometric paradox 光度佯谬
+photometric parallax 测光视差
+photometric period 测光周期
+photometric phase 光度相位
+photometric precision 测光精度
+photometric redshift 测光红移
+photometric scale 光度标
+photometric sequence 测光序
+photometric solution 测光解
+photometric standard 光度标准
+photometric standard star 光度标准星
+photometric system 测光系统
+photometric telescope 测光望远镜
+photometric wedge 测光楔
+photometry 测光
+photomicrograph 显微照片
+photomicrography 显微照相
+photomultiplier 光电倍增管
+photomultiplier tube 光电倍增管
+photon 光子
+photon counter 光子计数器
+photon counting 光子计数
+photon decoupling 光子退耦
+photon diffusion 光子扩散
+photon flux 光子流量
+photon gas 光子气
+photon recoil effect 光子反冲效应
+photon rocket 光子火箭
+photon sieve telescope 光子筛望远镜
+photon sphere 光子层
+photon trapping 光子俘获
+photon-counting detector 光子计数检测器
+photon-phonon collision 光子-声子碰撞
+photon-photon absorption 光子-光子吸收
+photoneutrino 光生中微子
+photoneutrino process 光生中微子过程
+photonuclear absorption 光核吸收
+photopic curve 适光曲线
+photopic eye 适光眼
+photopic vision 明视觉
+photopolarimeter 偏振测光计
+photopolarimetry 偏振测光
+photoreduction 光致还原
+photoresistance 光敏电阻
+photosource 光源
+photosphere 光球
+photospheric abundance 光球丰度
+photospheric activity 光球活动
+photospheric eruption 光球爆发
+photospheric facula 光球光斑
+photospheric line 光球谱线
+photospheric model 光球模型
+photospheric network 光球网络
+photospheric radiation 光球辐射
+photospheric spectrum 光球光谱
+photospheric surface 光球表面
+photospheric telescope 光球望远镜
+photospheric temperature 光球温度
+phototheodolite 照相经纬仪
+phototube 光电倍增管
+photovisual absorption coefficient 仿视吸收系数
+photovisual magnitude 仿视星等
+photovisual objective 仿视照相物镜
+photovoltaic cell 光伏管
+photovoltaic detector 光伏检测器
+photovoltaic effect 光伏效应
+physical aperture 物理孔径
+physical area 物理面积
+physical distance 物理距离
+physical double 物理双星
+physical element 物理根数
+physical horizon 物理地平
+physical libration 物理天平动
+physical mechanism 物理机制
+physical nature 物理本原
+physical pair 物理双星
+physical parameter 物理参数
+physical pendulum 复摆
+physical universe 物理宇宙
+physical variable 物理变星
+physical visual binary 物理目视双星
+physics of stellar atmosphere 恒星大气物理
+physics of stellar structure 恒星结构物理
+physics of stellar wind 星风物理
+picosecond 皮秒
+picture element 像素
+picture-point 像点
+piecewise parabolic method 缩写:PPM。逐段抛物线法
+piezo effect 压电效应
+piezoelectric effect 压电效应
+pigeonite 易变辉石
+piggybacking photography 背负式摄影
+pile-up boundary 堆积区边界
+pile-up effect 堆积效应
+pile-up region 堆积区
+pillar 基礅
+pillbox antenna 抛物柱盒天线
+pin-hole imaging 针孔成像
+pinch 箍缩
+pinch effect 箍缩效应
+pinch instability 箍缩不稳定性
+pinch plasma 箍缩等离子体
+pinch-off effect 箍断效应
+pincushion distortion 正畸变
+pink noise 粉噪声
+pint-size star 微星
+pion π介子
+pip 小峰
+pitch angle 旋臂倾角; 螺距角
+pitch-angle distribution 螺距角分布
+pitch-angle redistribution 螺距角再分布
+pivot 枢轴; 支点
+pivotal axis 枢轴
+pixel 像素
+place 方位; 位置
+plage 谱斑
+plage area 谱斑面积
+plage corridor 谱斑区走廊
+plage flare 谱斑区耀斑
+plage radiation 谱斑辐射
+plagioclase 斜长石
+plane 平面
+plane component 扁平子系
+plane grating 平面光栅
+plane mirror 平面镜
+plane of emergence 出射面
+plane of incidence 入射面
+plane of oscillation 振动面
+plane of polarization 偏振面
+plane of reflection 反射面
+plane of refraction 折射面
+plane of the sky 天球切面
+plane polarization 面偏振
+plane subsystem 扁平次系
+plane sundial 平面日晷
+plane wave 平面波
+plane-concave lens 平凹透镜
+plane-convex lens 平凸透镜
+plane-parallel atmosphere 平面平行大气
+plane-polarized radiation 面偏振辐射
+plane-polarized wave 面偏振波
+planemo 行星质量天体
+planet 行星
+planet formation 行星形成
+planet migration 行星迁移
+planet-fall 行星着陆
+planet-landing 行星着陆
+planet-like body 类行星天体
+planet-mass companion 行星质量伴星
+planet-mass object 行星质量天体
+planetaria 天象仪; 行星仪
+planetarium 1、天文馆; 2、天象仪; 行星仪
+planetary aberration 行星光行差
+planetary alignment 行星联珠
+planetary assembly 行星[齿轮]组件
+planetary astronomy 行星天文学
+planetary atmosphere 行星大气
+planetary biology 行星生物学
+planetary companion 似行星伴天体
+planetary configuration 行星动态
+planetary construction zone 行星组建区
+planetary corona 行星冕
+planetary cosmogony 行星演化学
+planetary dynamo 行星发电机
+planetary embryo 行星胎
+planetary ephemeris 行星历表
+planetary evolution 行星演化
+planetary geology 行星地质学
+planetary ionosphere 行星电离层
+planetary magnetic field 行星磁场
+planetary magnetosphere 行星磁层
+planetary meteorology 行星气象
+planetary motion 行星运动
+planetary nebula 缩写:PN。行星状星云
+planetary nomenclature 行星命名法
+planetary occultation 行星掩星
+planetary orbit 行星轨道
+planetary perturbation 行星摄动
+planetary physics 行星物理
+planetary plasmasphere 行星等离子层
+planetary precession 行星岁差
+planetary probe 行星探测器
+planetary radio astronomy 行星射电天文学
+planetary raw material 原生行星物质
+planetary ring 行星环
+planetary satellite 行星卫星
+planetary seismology 行星地震学
+planetary space 行星空间
+planetary stream 行星流星群
+planetary system 行星系
+planetary table 行星历表
+planetary telescope 行星望远镜
+planetary temperature 行星温度
+planetary theory 行星运动理论
+planetary wind 行星风
+planetary-mass companion 行星质量伴星
+planetary-mass object 行星质量天体
+planetesimal 星子
+planetesimal hypothesis 星子假说
+planetesimal theory 星子理论
+planetocentric celestial sphere 行星心天球
+planetocentric coordinate 行星心坐标
+planetocentric latitude 行星心纬度
+planetocentric longitude 行星心经度
+planetographic celestial sphere 行星面天球
+planetographic coordinate 行星面坐标
+planetographic latitude 行星面纬度
+planetographic longitude 行星面经度
+planetography 行星表面学
+planetoid 微型行星
+planetologist 行星学家
+planetology 行星学
+planisphere 平面天球
+planispheric astrolabe 平面星盘
+planitia 平原低地
+plano-concave lens 平凹透镜
+plano-convex lens 平凸透镜
+planum 平原高地
+plasma 等离子体
+plasma astrophysics 等离子天体物理
+plasma cloud 等离子体云
+plasma diagnostics 等离子体诊断学
+plasma diffusion 等离子体扩散
+plasma disturbance 等离子体扰动
+plasma drift 等离子体漂移
+plasma dynamics 等离子体动力学
+plasma ejection 等离子体抛射
+plasma era 等离子时期
+plasma frequency 等离子体频率
+plasma instability 等离子体不稳定性
+plasma ion oscillation 等离子振荡
+plasma jet 等离子体喷射结构
+plasma loop 等离子体环状结构
+plasma oscillation 等离子振荡
+plasma physics 等离子体物理
+plasma radiation 等离子体辐射
+plasma rocket 等离子体火箭
+plasma sheet 等离子片
+plasma squeezing 等离子体挤压
+plasma tail 离子彗尾
+plasma turbulence 等离子体湍动
+plasma wave 等离子波
+plasma-boiler 等离子体加热器
+plasmapause 等离子体层顶
+plasmasphere 等离子层
+plasmoid 等离子粒团
+plasmon 等离子激元
+plasmon decay 等离子激元衰变
+plasmon model 等离子激元模型
+plastic scintillator 塑料闪烁体
+plate 底片
+plate center 底片中心
+plate complexes 复合底片
+plate constant 底片常数
+plate constant variance 底片常数方差
+plate distortion 底片变形
+plate factor 底片因子
+plate holder 底片盒
+plate library 底片库
+plate measuring machine 底片量度仪
+plate motion 板块运动
+plate movement 板块运动
+plate overlap method 底片重叠法
+plate overlapping 底片重叠
+plate scale 底片比例尺
+plate tectonics 板块构造
+plateau 平台; 坪
+plateau phase 平台阶段
+plateau value 坪值; 平台值
+platform 平台; 地台
+platinum 缩写:Pt。铂
+playback 复演
+plenilune 满月时期
+plerion 缩写:plerionic SNR。实心超新星遗迹
+plerionic SNR 全称:plerionic supernova remnant; plerionic remnant; plerion。实心超新星遗迹
+plerionic remnant 缩写:plerionic SNR。实心超新星遗迹
+plerionic supernova remnant 缩写:plerionic SNR。实心超新星遗迹
+plessite 合纹石
+plumb 铅垂
+plumb line 铅垂线
+plumb-line deviation 垂线偏差
+plumbicon 氧化铅光导摄像管
+plume 羽状物
+plutino 冥族小天体
+plutoid 类冥天体
+plutonium 缩写:Pu。钚
+pnCCD 全称:fully depleted pn-junction CCD。全耗尽pn结CCD
+pocket sextant 袖珍六分仪
+point 点
+point charge 点电荷
+point convective model 点对流模型
+point mass 点质量
+point of contact 切点
+point particle 点粒子
+point source 点源
+point spread function 缩写:PSF。点扩散函数
+point transformation 点变换
+point-source model 点源模型
+pointer 指针
+pointing 指向; 对准
+pointing accuracy 指向精度
+pointing calibration 指向校准
+pointing control system 指向控制系统
+pointing correction 指向改正
+pointing error 指向误差
+pointing jitter 指向抖动
+polar 高偏振星
+polar angle 极角
+polar axis 极轴
+polar cap 极冠; 极盖
+polar cap absorption 缩写:PCA。极冠吸收
+polar circle 极圈
+polar coordinate 极坐标
+polar cusp 极角
+polar day 极昼
+polar diagram 极区图
+polar dial 极向日晷
+polar diameter 极直径
+polar displacement 极移
+polar distance 极距
+polar distance degrees 余赤纬; 极距; 去极度
+polar effect 磁极效应
+polar equatorial coordinate 极向赤道坐标
+polar flattening 极向扁率
+polar gap 极冠隙
+polar glow 极光
+polar heliostat 极向定日镜
+polar latitude 极黄纬
+polar light 极光
+polar longitude 极黄经
+polar mesospheric cloud 缩写:PMC。极地中层云
+polar motion 极移
+polar mounting 极式装置
+polar night 极夜
+polar oblateness 极向扁率
+polar orbit 极轨道
+polar path 地极轨线
+polar period 极性周期
+polar plane 极平面
+polar plume 极羽
+polar prominence 极区日珥
+polar radius 极半径
+polar ray 极辐射线
+polar region 极区
+polar satellite 极轨卫星
+polar scope 极轴镜
+polar semi-diameter 极半径
+polar sequence 近极星序
+polar shift 极移
+polar solar wind 极区太阳风
+polar spot 极斑
+polar star 极星
+polar streamer 极辐射线
+polar sway 地极颤动
+polar telescope 极轴镜
+polar tide 极潮
+polar triangle 极三角形
+polar tube 北极管
+polar wandering 极移
+polar wind 极风
+polar wobble 地极摆动
+polar year 极年
+polar-ring galaxy 极环星系
+polarimeter 偏振计
+polarimetric radial-velocity-meter 偏振视向速度仪
+polarimetric speedometer 偏振视向速度仪
+polarimetric standard 偏振标准
+polarimetric standard star 偏振标准星
+polarimetry 偏振测量
+polariscope 偏振光镜
+polarissima 近极星
+polarity 极性
+polarity reversal 极性反转
+polarity reversal line 极性变换线
+polarizability 偏振性
+polarization 偏振
+polarization angle 偏振角
+polarization cloud 偏振云
+polarization curve 偏振曲线
+polarization effect 偏振效应
+polarization interference filter 干涉偏振滤光器
+polarization interferometer 偏振干涉仪
+polarization interferometry 偏振干涉测量
+polarization measurement 偏振测量
+polarization of background 背景偏振
+polarization of light 光偏振
+polarization parameter 偏振参数
+polarization photometer 偏振光度计
+polarization plane 偏振面
+polarization receiver 偏振接收机
+polarization sensitive bolometer 偏振敏感测辐射热计
+polarization standard 偏振标准
+polarization standard star 偏振标准星
+polarization state 偏振态
+polarization switch 偏振开关
+polarization switching 偏振开关
+polarization tensor 极化张量
+polarization vector 极化矢量
+polarization wave 偏振波
+polarized antenna 偏振天线
+polarized beam 偏振射束
+polarized burst 偏振暴
+polarized component 偏振分量
+polarized light 偏振光
+polarized radiation 偏振辐射
+polarizer 起偏振器
+polarizing angle 起偏振角
+polarizing beam 偏振射束
+polarizing beam splitter 偏振射束分离器
+polarizing eyepiece 起偏振目镜
+polarizing monochromator 起偏振单色器
+polarizing plate 起偏振片
+polarizing prism 起偏振棱镜
+polaroid sheet 偏振片
+pole 极
+pole of angular momentum 角动量极
+pole of figure 形状极
+pole of orbit 轨道极
+pole of rotation 自转极
+pole of the ecliptic 黄极
+pole of the equator 赤极
+pole orbit 地极轨道
+pole star 极星
+pole-observing Instrument 候极仪
+pole-on 极向
+pole-on object 极向天体
+pole-on star 极向恒星
+poleward migration 极向迁移
+polhody 地极轨迹
+polishing 抛光
+pollution 污染
+polody origin 极原点
+poloidal [magnetic] field 极向[磁]场
+polonium 缩写:Po。钋
+polyad 多重群
+polychromator 多色器
+polycyclic aromatic hydrocarbon 缩写:PAH。多环芳烃
+polymer 聚合体
+polynomial inflation 多项式暴胀
+polyspectrum 多谱
+polytrope 多方球
+polytropic core 多方球心
+polytropic equation of state 多方状态方程
+polytropic equilibrium 多方平衡
+polytropic gas 多方气体
+polytropic gas sphere 多方气体球
+polytropic index 多方指数
+polytropic model 多方模型
+poorly directive antenna 弱定向天线
+popular astronomy 大众天文学
+population 星族
+population classification 星族分类
+population density 粒子数密度
+population inversion 粒子数反转
+population of stars 星族
+population synthesis 星族合成
+population type 星族类型
+population Ⅰ 星族Ⅰ
+population Ⅰ object 星族Ⅰ天体
+population Ⅰ star 星族Ⅰ恒星
+population Ⅱ 星族Ⅱ
+population Ⅱ Cepheid 星族Ⅱ造父变星
+population Ⅱ object 星族Ⅱ天体
+population Ⅱ star 星族Ⅱ恒星
+population Ⅲ 星族Ⅲ
+pore 微黑子
+portable clock 轻便钟
+portable meridian circle 便携式子午环
+portable transit instrument 便携式中星仪
+position 方位; 位置
+position ambiguity 位置模糊度
+position angle 缩写:PA。位置角
+position circle 位置圈
+position encoder 位置编码器
+position line 位置线
+position micrometer 方位测微器
+position sensitive proportional counter 位置灵敏正比计数器
+position vector 位置向量
+position-angle effect 位置角效应
+positional astronomy 方位天文学
+positional error 定位误差
+positive 正片
+positive correlation 正相关
+positive curvature 正曲率
+positive electron 正电子
+positive energy 正能
+positive energy theorem 正能定理
+positive eyepiece 正像目镜
+positive image 正像
+positive ion 正离子
+positive leap second 正闰秒
+positive lens 正透镜
+positron 正电子
+positron-electron annihilation 正电子-电子湮灭
+positronium 正原子
+possibility 可能性
+possible error 可能误差
+post AGB star 后AGB星
+post MS 全称:post main sequence。主序后
+post T-Tauri star 金牛T阶段后恒星
+post main sequence 缩写:post MS。主序后
+post meridiem 缩写:p.m.; PM。下午
+post red-supergiant 红超巨后星
+post starburst galaxy 星暴后星系
+post-Galilean transformation 后伽利略变换
+post-Newtonian approximation 后牛顿近似
+post-Newtonian celestial mechanics 后牛顿天体力学
+post-Newtonian effect 后牛顿效应
+post-collision merger 碰撞后并合天体
+post-common-envelope binary 共包层后双星
+post-core-collapse cluster 核坍缩后星团
+post-coronal region 冕外区
+post-flare loop 耀斑后环
+post-giant 巨星后天体
+post-main-sequence evolution 主序后演化
+post-main-sequence object 主序后天体
+post-main-sequence stage 主序后阶段
+post-main-sequence star 主序后星
+post-maximum evolution 极大后演化
+post-maximum spectrum 极大后光谱
+post-recombination Universe 复合后宇宙
+post-supernova 爆后超新星
+postburst 暴后
+postdetection bandwidth 检波后带宽
+postdetection dedispersing 检波后消色散
+posterior distribution 后验分布
+posterior probability 后验概率
+postnova 爆后新星
+poststarburst galaxy 星暴后星系
+potassium 缩写:K。钾
+potassium-argon dating 钾氩计年
+potassium-argon method 钾氩纪年法
+potassium-calcium dating 钾钙计年
+potassium-calcium method 钾钙纪年法
+potential barrier 势垒
+potential difference 势差
+potential energy 势能
+potential energy tensor 势能张量
+potential field 势场
+potential function 势函数
+potential motion 有势运动
+potential perturbation 势扰动
+potential well 势阱
+potential-density pair 势-密度对
+potentially hazardous asteroid 缩写:PHA。潜在威胁小行星
+potentially hazardous object 潜在威胁天体
+power amplification 功率放大
+power amplifier 功率放大器
+power gain 功率增益
+power pattern 功率方向图
+power series 幂级数
+power spectral density 功率谱密度
+power spectral function 功率谱函数
+power spectral index 功率谱指数
+power spectrum 功率谱
+power spectrum estimation 功率谱估计
+power-law distribution 幂律分布
+power-law index 幂律指数
+power-law inflation 幂律暴胀
+power-law spectrum 幂律谱
+power-line noise 电源线噪声
+power-line time-signal transfer 电源线时号传递
+powered flight 动力飞行
+pp chain 全称:proton-proton chain。质子-质子链
+pp cycle 全称:proton-proton cycle。质子-质子循环
+pp reaction 全称:proton-proton reaction。质子-质子反应
+practical astronomy 实用天文学
+practical astrophysics 实用天体物理
+praseodymium 缩写:Pr。镨
+pre-Galaxy 前银河系
+pre-Nectarian period 前酒海纪
+pre-amplification 前置放大
+pre-amplifier 前置放大器
+pre-cataclysmic binary 激变前双星
+pre-cataclysmic variable 激变前变星
+pre-enrichment 预增丰
+pre-galactic cloud 前星系云
+pre-galactic nucleosynthesis 星系前核合成
+pre-galactic star 星系前恒星
+pre-galaxy 前星系
+pre-main sequence 缩写:PMS。主序前
+pre-main sequence binary 主序前双星
+pre-main sequence object 缩写:PMS object。主序前天体
+pre-main sequence star 缩写:PMS star。主序前星
+pre-maximum brightness 极大前亮度
+pre-maximum halt 极大前息
+pre-maximum spectrum 极大前光谱
+pre-monochromatization 预单色化
+pre-monochromator 前置单色器
+pre-nova object 新星爆前天体
+pre-nova spectrum 新星爆前光谱
+pre-planetary object 行星状星云前天体
+pre-planetary star 行星状星云前恒星
+pre-stellar body 星前体
+pre-stellar cloud 星前云
+pre-stellar evolution 星前演化
+pre-stellar matter 星前物质
+pre-stellar object 星前天体
+pre-supernova 爆前超新星
+pre-supernova binary 超新星爆前双星
+pre-supernova object 超新星爆前天体
+pre-telescope astronomy 望远镜前天文学
+pre-white dwarf 白矮前身星
+preceding limb 西边缘; 前导边缘
+preceding spot 缩写:p-sunspot; p-spot。前导黑子; p黑子
+preceding sunspot 缩写:p-sunspot; p-spot。前导黑子; p黑子
+precessing-disk model 进动盘模型
+precession 1、岁差; 2、进动
+precession circle 岁差圈
+precession coefficient 岁差系数
+precession cone 岁差锥
+precession constant 岁差常数
+precession globe 岁差仪
+precession in declination 赤纬岁差
+precession in latitude 黄纬岁差
+precession in longitude 黄经岁差
+precession in right ascension 赤经岁差
+precession of orbit 轨道进动
+precession of perihelion 近日点进动
+precession of the earth 地球进动
+precession of the equinox 岁差; 分点岁差
+precession period 岁差周期
+precession rate 进动速率
+precessional constant 岁差常数
+precessional motion 进动
+precise time and time interval 缩写:PTTI。精密时刻和时间间隔
+precision 精度
+precision analog photon address 缩写:PAPA。精密模拟光子定位
+precision catalogue 精密星表
+precision ephemeris 精密星历表
+precision measurement 精密测量
+precision radial-velocity spectrometer 精确视向速度光谱仪
+precomputed altitude 预算高度
+precomputed brightness 预算亮度
+precovery 回溯发现
+precursor 前兆; 前身
+precursor effect 前兆效应
+precursor object 前身天体
+precursor pulse 前兆脉冲
+precursor star 前身星
+predetection dedispersing 检波前消色散
+predictability 可预报性
+predicted asteroid 已预测小行星
+predicted comet 已预测彗星
+prediction 预报
+prediction of solar activity 太阳活动预报
+predissociation 预离解
+prefilter 前置滤波器
+preflash 预照光
+preionization 预电离
+preliminary calculation 初算
+preliminary designation 初步命名; 初步编号
+preliminary orbit 初始轨道; 初轨
+preliminary position 初定方位
+prenova 爆前新星
+preplanetary disk 前行星盘
+preprocessor 预处理机
+presolar matter 太阳前物质
+presolar nebula 太阳前星云
+presolar object 太阳前天体
+pressure balance 压力平衡
+pressure broadening 压力致宽
+pressure effect 压力效应
+pressure equilibrium 压力平衡
+pressure ionization 压致电离
+pressure scale height 压力标高
+pressure-induced band 压力感生谱带
+pressure-induced spectrum 压力感生光谱
+pressurized proportional counter 高气压式正比计数器
+primary 主星; 初; 原
+primary antenna 初级天线; 原天线
+primary beam 初级波束; 原波束
+primary body 主天体
+primary circle 基本圆
+primary clock 1、主钟; 2、母钟
+primary component 主星
+primary constant 初始常数
+primary cosmic radiation 原宇宙线
+primary cosmic rays 原宇宙线
+primary crater 主陨击坑
+primary distance indicator 一级示距天体
+primary eclipse 主食
+primary feed 主馈
+primary image 主像
+primary lens 主透镜
+primary maximum 主极大
+primary minimum 主极小
+primary mirror 主镜
+primary mirror-cell 主镜室
+primary optical axis 主光轴
+primary particle 原粒子
+primary pattern 初级方向图
+primary period 主周期
+primary source 本源
+primary spectrum 主谱; 第一级光谱
+primary standard 基准
+primary star 主星
+primary surface 主表面
+primary telescope 主望远镜
+primary triangulation 一等三角测量
+primary wave 缩写:P wave。P波; 初波; 地震纵波
+prime focus 主焦点
+prime focus cage 主焦观测室
+prime focus corrector 主焦改正镜
+prime meridian 本初子午线; 本初子午圈
+prime plane 卯酉面
+prime vertical 卯酉圈
+prime vertical dial 卯酉面日晷
+prime vertical transit 卯酉面中星仪
+prime-focus astrophotography 主焦点天体摄影
+prime-focus spectrograph 主焦摄谱仪
+primeval atom 原初原子
+primeval fireball 原初火球
+primeval galaxy 原初星系
+primeval nebula 原始星云
+primitive nebula 原星云
+primitive orbit 初始轨道; 初轨
+primordial abundance 原始丰度
+primordial binary 原始双星
+primordial binary stars 原始双星
+primordial black hole 原初黑洞
+primordial element abundance 原初元素丰度
+primordial field 原发场
+primordial fireball 原初火球
+primordial galaxy 原始星系
+primordial gas cloud 原始气云
+primordial helium 原始氦
+primordial hydrogen 原始氢
+primordial isocurvature baryon model 缩写:PIB model。原初等曲率重子模型
+primordial nebula 原始星云
+primordial nucleosynthesis 原初核合成
+primordial spectrum 原初功率谱
+primordial star 原恒星
+primoridal neutrino 原初中微子
+primum mobile 宗动天
+principal axis 主轴
+principal axis of inertia 惯性主轴
+principal component analysis 缩写:PCA。主成分分析
+principal elliptic term 主椭圆项
+principal focus 主焦点
+principal maximum 主极大
+principal minimum 主极小
+principal nutation 主章动
+principal plane 主平面
+principal plane pattern 主平面方向图
+principal planet 大行星
+principal series 主线系
+principal solution 主解
+principal spectrum 主光谱
+principal telescope 主望远镜
+principal vertical circle 天球子午圈
+principle of detailed balancing 细致平衡原理
+principle of equivalence 等效原理
+principle of least action 最小作用原理
+principle of mediocrity 平庸原理
+principle of minimal coupling 最小耦合原理
+principle of optical equivalence 光学等效原理
+principle of superposition 叠加原理
+principle of virtual work 虚功原理
+printing chronograph 打印记时仪
+printing theodolite 打印经纬仪
+prior baseline 预知基线
+prior estimate 先验估计
+prior probability 先验概率
+prism astrolabe 棱镜等高仪
+prism spectrograph 棱镜摄谱仪
+prism spectroscope 棱镜分光镜
+prismatic astrolabe 棱镜等高仪
+prismatic binoculars 棱镜双目望远镜
+prismatic camera 棱镜照相机
+prismatic sextant 棱镜六分仪
+prismatic spectrograph 棱镜摄谱仪
+prismatic spectroscope 棱镜分光镜
+prismatic spectrum 棱镜光谱
+prismatic transit instrument 棱镜中星仪
+probability curve 概率曲线
+probability density 概率密度
+probability density function 概率密度函数
+probability distribution 概率分布
+probability distribution function 缩写:PDF。概率分布函数
+probable error 缩写:p.e.。概差; 可几误差
+probable value 概然值
+probe 探测; 探测器
+problem of many bodies 多体问题
+problem of n bodies n体问题
+problem of three bodies 三体问题
+problem of two bodies 二体问题
+procaryote 原核生物
+production rate 产星率; 产生率
+profile 轮廓
+progenitor 1、前身天体; 2、前身星
+progenitor bias 前身天体偏袒
+progenitor nuclei 原粒子核
+progenitor object 前身天体
+progenitor star 前身星
+prograde 顺行
+prograde merger 顺行并合
+prograde motion 顺行
+prograde orbit 顺行轨道
+program object 待测天体
+program star 待测星; 纲要星
+programing 程序设计
+progressive error 行差; 齿隙差
+progressive inequality 行差; 齿隙差
+progressive wave 前进波
+projected baseline 投影基线
+projected correlation function 投影相关函数
+projected density 投影密度
+projected density profile 投影密度轮廓
+projected semi-major axis 投影半长轴
+projected velocity 投影速度
+projection angle 投影角
+projection effect 投影效应
+projection operator 投影算子
+prolate spheroid 长球体
+prolate spheroidal coordinate 长等轴椭球坐标
+promethium 缩写:Pm。鉕
+prominence 日珥
+prominence flare 日珥耀斑
+prominence knot 日珥结
+prominence phenomenology 日珥现象学
+prominence spectrometer 日珥分光仪
+prominence spectroscope 日珥分光镜
+prominence streamer 日珥射流
+promontorium 岬
+propagation 传播
+propagation constant 传播常数
+propagation delay 传播迟滞; 传播时延
+propagation medium 传播媒质
+propagation time 传播时间
+propagation velocity 传播速度
+propagator 传播子; 传播函数
+propane 丙烷
+propellant 推进剂
+propellent 推进剂
+proper direction 本征方向
+proper distance 固有距离
+proper element 本征根数
+proper function 本征函数
+proper length 静长度
+proper mass 静质量
+proper motion 缩写:P.M.。自行
+proper motion group 自行群
+proper motion in declination 赤纬自行
+proper motion in right ascension 赤经自行
+proper motion member 自行成员星
+proper motion membership 自行成员星
+proper motion star 大自行星
+proper plane 本征平面
+proper reference frame 固有参考架
+proper reference system 固有参考系
+proper star 基准星
+proper tetrad 本征基; 本征四维标架
+proper time 原时; 固有时
+proper value 本征值
+proper volume 固有体积
+proplyd 原行星盘
+proplyd;ionized protoplanetary disk 电离原行星盘
+proportional counter 正比计数器
+proportional counting 正比计数
+propulsion 推进
+propyne 丙炔; 甲基乙炔
+protactinium 缩写:Pa。镤
+proto-Galaxy 原银河系
+proto-Jupiter 原木星
+proto-binary 原双星
+proto-brown-dwarf 原褐矮星
+proto-cluster 原星团
+proto-cluster of galaxies 原星系团
+proto-disk 原盘
+proto-earth 原地球
+proto-globular cluster 原球状星团
+proto-nebula 原星云
+proto-planet 原行星
+proto-planetary nebula 原行星状星云
+proto-shell star 原气壳星
+proto-subnebula 原亚星云
+protogalactic cloud 原银河云
+protogalactic object 原银河系天体
+protogalaxy 原星系
+proton 质子
+proton decay 质子衰变
+proton event 质子事件
+proton flare 质子耀斑
+proton reaction 质子反应
+proton splash 质子激散
+proton stream 质子射流
+proton-electron-proton reaction 缩写:pep reaction。质子-电子-质子反应; pep反应
+proton-proton chain 缩写:pp chain。质子-质子链
+proton-proton cycle 缩写:pp cycle。质子-质子循环
+proton-proton reaction 缩写:pp reaction。质子-质子反应
+protonosphere 质子层
+protoplanetary cloud 原行星状星云
+protoplanetary disk 原行星盘
+protoplanetary nebula 原行星状星云
+protoplanetary system 原行星系
+protoprism 原棱镜
+protosolar cloud 原太阳云
+protosolar collapse 原太阳坍缩
+protosolar contraction 原太阳收缩
+protosolar nebula 原太阳星云
+protostar 原恒星
+protostellar association 原星协
+protostellar cloud 原恒星云
+protostellar collapse 原恒星坍缩
+protostellar core 原恒星核
+protostellar disk 原恒星盘
+protostellar jet 原恒星喷流
+protostellar matter 原恒星物质
+protostellar outflow 原恒星外向流
+protosun 原太阳
+protubérance 日珥
+provisional designation 暂定名; 临时编号
+provisional value 暂定值
+provisional weight 暂定权
+proximity effect 邻近效应
+pseudo body-fixed system 准地固坐标系
+pseudo-Cepheid 赝造父变星
+pseudo-photometry 伪测光
+pseudo-potential 赝势
+pseudo-variable 赝变星
+pseudobulge 赝球核
+pseudonucleus 假核
+pseudotensor 赝张量
+psuedo Nambu-Goldstone boson 缩写:pNGB。赝南部-戈德斯通玻色子
+ptolemaist 托勒玫学人
+puff 喷焰
+pulsar 缩写:PSR。脉冲星
+pulsar back end 脉冲星后端
+pulsar evolution 脉冲星演化
+pulsar signal 脉冲星信号
+pulsar synchronizer 脉冲星同步器
+pulsar time scale 脉冲星时标
+pulsar time transfer 脉冲星时间传递
+pulsar timing 脉冲星计时
+pulsar timing array 缩写:PTA。脉冲星计时阵
+pulsar timing method 脉冲星计时法
+pulsar wind 脉冲星风
+pulsar wind nebula 缩写:PWN。脉冲星风星云
+pulsatance 角频率
+pulsating X-ray source 脉冲X射线源
+pulsating active nucleus 脉动活动核
+pulsating activity 脉动活动
+pulsating binary 脉动双星
+pulsating radio source 脉冲射电源
+pulsating star 脉动星
+pulsating universe 振荡宇宙
+pulsating variable 脉动变星
+pulsation 脉动
+pulsation acceleration 脉动加速
+pulsation axis 脉动对称轴
+pulsation constant 脉动常数
+pulsation equation 脉动方程
+pulsation frequency 脉动频率
+pulsation instability 脉动不稳定性
+pulsation instability strip 脉动不稳定带
+pulsation mass 脉动质量
+pulsation mode 脉动模式
+pulsation phase 脉动相位
+pulsation pole 脉动极
+pulsation rate 脉冲率
+pulsation theory 脉动理论
+pulsation variable 脉动变星
+pulsator 脉动星
+pulse 脉冲
+pulse broadening 脉冲展宽
+pulse counter 脉冲计数器
+pulse counting 脉冲计数
+pulse delay 脉冲延迟
+pulse duration 脉冲时间
+pulse energy 脉冲能量
+pulse intensity 脉冲强度
+pulse light curve 脉冲光变曲线
+pulse nulling 脉冲消失
+pulse nulling phenomenon 脉冲消失现象
+pulse period 脉冲周期
+pulse profile 脉冲轮廓
+pulse rate 脉冲率
+pulse signal 脉冲信号
+pulse smearing 脉冲拖影
+pulse structure 脉冲结构
+pulse width 脉冲宽度
+pulse window 脉冲窗
+pulse-counting photometer 脉冲计数光度计
+pulse-to-pulse correlation 脉冲间相关性
+pump frequency 抽运频率
+pumping 抽运
+pumping mechanism 抽运机制
+pumping source 抽运源
+punch-card machine 洞卡计算机
+puncture counter 击穿计数器
+pupil 光瞳
+pupil densifier 光瞳密实器
+pupil remapping 光瞳重排
+pupil-plane beam combiner 瞳面合束器
+pupil-plane interferometer 瞳面干涉仪
+pure Trojan group 纯特洛伊群
+pure coordinated time 纯粹协调时
+pure density evolution 缩写:PDE。纯密度演化
+pure electron event 纯电子事件
+pure local time 纯地方时
+pure luminosity evolution 缩写:PLE。纯光度演化
+pure temperature radiation 纯温度辐射
+purely scattering 纯散射
+purely scattering atmosphere 纯散射大气
+pycnonuclear reaction 超密态核反应
+pygmy star 特矮星
+pyramid wavefront sensor 四棱锥波前传感器
+pyramidal antenna 角锥天线
+pyranometer 日射强度计
+pyrex 硼硅酸玻璃; 派勒克斯玻璃
+pyrheliometer 太阳热量计
+pyrheliometry 太阳热量测量
+pyrogenetic rock 火成岩
+pyrolite 上幔岩
+pyrometry 高温测量
+pyroxene 辉石
+quadrant 1、象限; 2、象限仪
+quadrant altazimuth 地平象限仪
+quadrant detector 象限探测器
+quadrant star 象限星
+quadrantal triangle 象限三角形
+quadratic Stark effect 斯塔克二次效应
+quadratic estimator 二次方估计
+quadratic magnitude term 星等二次项
+quadratic sum 平方和
+quadrature 方照
+quadraxial mounting 四轴装置
+quadraxial tracking frame 四轴跟踪架
+quadraxial tracking system 四轴跟踪系统
+quadric 二次曲面
+quadruple star 四合星
+quadrupole 四极
+quadrupole effect 四极效应
+quadrupole formula 四极公式
+quadrupole matrix 四极矩阵
+quadrupole moment 四极矩
+quadrupole radiation 四极辐射
+quadrupole term 四极项
+qualitative analysis 定性分析
+qualitative method 定性方法
+quality factor 品质因数
+quantitative analysis 定量分析
+quantitative spectral classification 定量光谱分类
+quantization 量子化
+quantum amplifier 量子放大器
+quantum chromodynamics 缩写:QCD。量子色动力学
+quantum cosmology 量子宇宙学
+quantum defect 量子数亏损
+quantum effect 量子效应
+quantum efficiency 量子效率
+quantum electrodynamics 缩写:QED。量子电动力学
+quantum field 量子场
+quantum fluctuation 量子涨落
+quantum gravitation 量子引力
+quantum gravity 量子引力
+quantum luminosity curve 量子发光曲线
+quantum of flux 磁通量量子
+quantum solid 量子固体
+quantum state 量子态
+quantum statistics 量子统计
+quantum transition 量子跃迁
+quantum universe 量子宇宙
+quantum well infrared detector 缩写:QWIP。量子阱红外探测器
+quantum yield 量子产额
+quardruple-lensed quasar 引力透镜效应四像类星体
+quark 夸克
+quark star 夸克星
+quark-gluon plasma 夸克胶子等离子体
+quark-hadron phase 夸克-强子相
+quark-hadron phase transition 夸克-强子相跃迁
+quark-star 夸克星
+quarter 弦
+quarter-remainder calendar 四分历
+quarter-wave plate 四分之一波片
+quartet 1、四重态; 2、四重线
+quartz clock 石英钟
+quartz crystal 石英晶体
+quartz crystal clock 石英钟
+quartz crystal resonator 石英共振器
+quartz extensometer 石英伸缩仪
+quartz glass 石英玻璃
+quartz prism 石英棱镜
+quartz spectrograph 石英摄谱仪
+quartz-polaroid monochromator 石英偏振片单色仪
+quasar 缩写:QSO。类星体
+quasar astronomy 类星体天文学
+quasar core 类星体核
+quasar halo 类星体晕
+quasar infrared source 类星体红外源
+quasar jet 类星体喷流
+quasar radio source 类星体射电源
+quasar-galaxy pair 类星体-星系对
+quasi-absolute method 准绝对方法
+quasi-adiabatic convection 准绝热对流
+quasi-biennial oscillation 缩写:QBO。准双年振荡
+quasi-diurnal variation 准周日变化
+quasi-elastic scattering 准弹性散射
+quasi-equilibrium process 准平衡过程
+quasi-equilibrium state 准平衡态
+quasi-ergodic system 准各态历经系统
+quasi-eruptive prominence 准爆发日珥
+quasi-isothermal layer 准等热层
+quasi-linear theory 准线性理论
+quasi-longitutdinal oscillation 准纵向振荡
+quasi-longitutdinal propagation 准纵向传播
+quasi-neutrality 准中性
+quasi-optic technique 准光学技术
+quasi-optical feed 准光学馈源
+quasi-optical wave 准光波
+quasi-particle 准粒子
+quasi-periodic function 准周期函数
+quasi-periodic orbit 拟周期轨道; 准周期轨道
+quasi-periodic oscillation 缩写:QPO。准周期振荡
+quasi-periodic variable 准周期变星
+quasi-periodic variation 准周期变化
+quasi-point radio source 类点射电源
+quasi-polymer structure 似聚合物结构
+quasi-sidereal time 准恒星时
+quasi-spherical accretion 缩写:QSA。类球吸积
+quasi-stable state 准稳态
+quasi-static approximation 准静态近似
+quasi-static process 准静态过程
+quasi-stationary density wave 准稳密度波
+quasi-stationary level 准稳级
+quasi-stationary spectrum 准稳定谱
+quasi-stationary spiral structure 准稳旋涡结构
+quasi-stationary state 准稳态
+quasi-stationary wave 准稳波
+quasi-steady state 准稳态
+quasi-stellar blue galaxy 蓝类星星系
+quasi-stellar galaxy 缩写:QSG。类星星系
+quasi-stellar object 缩写:QSO。类星体
+quasi-stellar radio source 缩写:QSRS; QSS。类星射电源
+quasi-stellar red galaxy 红类星星系
+quasi-stellar source 缩写:QSRS; QSS。类星射电源
+quasi-thermal flare 准热耀斑
+quasi-transverse oscillation 准横向振荡
+quasi-transverse propagation 准横向传播
+quasi-uniform time 准均匀时
+quasilinear transition 准线性转变
+quasimoon;pseudomoon 类卫星
+quenching galaxy 息产星系
+quiescence 宁静态
+quiescent brightness 宁静态亮度
+quiescent galaxy 宁静星系
+quiescent luminosity 宁静态光度
+quiescent prominence 宁静日珥
+quiescent radiation 宁静辐射
+quiescent spectrum 宁静光谱
+quiescent star formation 宁静恒星形成
+quiet component 宁静分量
+quiet corona 宁静日冕
+quiet day 宁静日
+quiet optical sun 宁静光学太阳
+quiet radiation 宁静辐射
+quiet radio emission 宁静射电
+quiet radio radiation 宁静射电
+quiet radio sun 宁静射电太阳
+quiet solar radiation 宁静太阳辐射
+quiet solar radio radiation 宁静太阳射电
+quiet sun 宁静太阳
+quiet sun noise 宁静太阳噪声
+quiet thermal emission 宁静热发射
+quiet thermal radiation 宁静热辐射
+quintessence 精质
+quintessential inflation 精质化暴胀
+quintet 1、五重态; 2、五重线
+quintom dark energy 精灵暗能量
+quintuple star 五合星
+r-process 全称:rapid neutron capture process。快过程; r过程
+radar astronomy 雷达天文学
+radar echo 雷达回波
+radar mapper 雷达测绘器
+radar mapping 雷达测绘
+radar meteor 雷达流星
+radar observation 雷达观测
+radar ranging 雷达测距
+radar survey 雷达巡天
+radar telescope 雷达望远镜
+radial acceleration 1、径向加速度; 2、视向加速度
+radial action 径向作用量
+radial arc 径向弧
+radial coordinate 径向坐标
+radial defocusing 径向偏焦
+radial density profile 缩写:RDP。径向密度轮廓
+radial distortion 径向畸变
+radial filament 径向暗条
+radial grating 径向光栅
+radial inversion 径向反演
+radial momentum 径向动量
+radial motion 1、径向运动; 2、视向运动
+radial oscillation 径向振荡
+radial period 径向周期
+radial pulsation 径向脉动
+radial pulsator 径向脉动星
+radial velocity 1、径向速度; 2、视向速度
+radial wavelength 径向波长
+radial wavenumber 径向波数
+radial-orbit instability 径向轨道不稳定性
+radial-velocity curve 视向速度曲线
+radial-velocity orbit 分光解
+radial-velocity reference star 视向速度参考星
+radial-velocity scanner 缩写:RVS。视向速度仪
+radial-velocity scanning 视向速度扫描
+radial-velocity spectrometer 1、恒星视向速度仪; 2、缩写:RVS。视向速度仪
+radial-velocity standard star 视向速度标准星
+radial-velocity survey 视向速度巡天
+radial-velocity trace 视向速度描迹
+radial-velocity tracing 视向速度描迹
+radially streaming 径向股流
+radian 弧度
+radiance 面辐射强度
+radiancy 面辐射强度
+radiant 辐射点
+radiant density 辐射密度
+radiant energy 辐射能
+radiant flux 辐射流量
+radiant intensity 辐射强度
+radiant of comet 彗星辐射点
+radiant of meteor 流星辐射点
+radiant of moving cluster 移动星团辐射点
+radiant point 辐射点
+radiating ridge 辐射纹
+radiation 辐射
+radiation background 辐射背景
+radiation belt 辐射带
+radiation belt of the Earth 地球辐射带
+radiation coefficient 辐射系数
+radiation compression 辐射压缩
+radiation constant 辐射常数
+radiation damage 辐射损伤
+radiation damping 辐射阻尼
+radiation density 辐射密度
+radiation dominated era 辐射主导期; 辐射占优期
+radiation dominated gas 辐射主导气体; 辐射占优气体
+radiation dominated universe 辐射主导宇宙; 辐射占优宇宙
+radiation dose 辐射剂量
+radiation drag 辐射拖曳
+radiation effect 辐射效应
+radiation efficiency 辐射效率
+radiation energy 辐射能
+radiation entropy 辐射熵
+radiation era 辐射期
+radiation field 辐射场
+radiation flow 辐射流
+radiation flux 辐射流量
+radiation length 辐射长度
+radiation lifetime 辐射寿命
+radiation mechanism 辐射机制
+radiation pattern 辐射方向图
+radiation plasma turbulence 辐射等离子体湍流
+radiation pressure 辐射压
+radiation receiver 辐射接收器
+radiation region 辐射区
+radiation resistance 辐射电阻
+radiation scattering 辐射散射
+radiation spectrum 辐射谱
+radiation temperature 辐射温度
+radiation transport 辐射输运
+radiation zone 辐射层; 辐射区
+radiation-density constant 辐射密度常数
+radiation-dominated fluid 辐射主导流体
+radiation-energy density 辐射能密度
+radiationless transition 无辐射跃迁
+radiative association 辐射缔合
+radiative braking 辐射制动
+radiative capture 辐射俘获
+radiative cooling 辐射致冷
+radiative decay model 辐射衰变模型
+radiative dissociation 辐射离解
+radiative envelope 辐射包层
+radiative equilibrium 辐射平衡
+radiative feedback 辐射反馈
+radiative fluid 辐射流体
+radiative heating 辐射致热
+radiative recombination 辐射复合
+radiative region 辐射层; 辐射区
+radiative relaxation 辐射弛豫
+radiative temperature 辐射温度
+radiative temperature gradient 辐射温度梯度
+radiative transfer 辐射转移
+radiative transport 辐射输运
+radiative viscosity 辐射黏度
+radiative zone 辐射层; 辐射区
+radiatively inefficient accretion flow 缩写:RIAF。辐射低效吸积流
+radiator 辐射体; 辐射器
+radical 基
+radio Doppler effect 射电多普勒效应
+radio ETELS 全称:radio early-type emission-line star。射电早型发射线星
+radio absorption 射电吸收
+radio active star 射电活跃恒星
+radio active sun 射电活跃太阳
+radio afterglow 射电余辉
+radio antenna 射电天线
+radio arm 射电臂
+radio astrometry 射电天体测量学
+radio astronomical observatory 射电天文台
+radio astronomical receiver 射电天文接收机
+radio astronomical station 射电天文站
+radio astronomy 射电天文学
+radio astronomy satellite 射电天文卫星
+radio astrophysics 射电天体物理
+radio background 射电背景辐射
+radio background radiation 射电背景辐射
+radio binary 射电双星
+radio bridge 射电桥
+radio brightness 射电亮度
+radio brightness distribution 射电亮度分布
+radio brightness temperature 射电亮度温度
+radio brown dwarf 射电褐矮星
+radio burst 射电暴
+radio channel 射电波道
+radio continuum 射电连续辐射
+radio contour 射电轮廓图
+radio core 射电核
+radio corona 射电冕
+radio counterpart 射电对应体
+radio depth 射电深度
+radio diameter 射电直径
+radio direction finding 无线电定向
+radio dish 射电圆面天线
+radio disk 射电圆面天线
+radio disk temperature 射电圆面天线温度
+radio double source 射电双源
+radio early-type emission-line star 缩写:radio ETELS。射电早型发射线星
+radio echo 无线电回波
+radio echo method 无线电回波法
+radio eclipse 射电食
+radio emission 射电辐射
+radio flare 射电耀发
+radio flare star 射电耀星
+radio flux 射电流量
+radio frequency 缩写:RF。射频
+radio galaxy 射电星系
+radio halo 射电晕
+radio heliograph 射电日像仪
+radio holography 射电全息法
+radio image 射电像
+radio index 射电指数
+radio interference 射电干涉
+radio interferometer 射电干涉仪
+radio interferometry 射电干涉测量
+radio jet 射电喷流
+radio light curve 射电变光曲线
+radio line 射电谱线
+radio lobe 射电瓣
+radio loud 射电强
+radio loud quasar 射电类星体
+radio luminosity 射电光度
+radio magnitude 射电星等
+radio map 射电图
+radio meteor 射电流星
+radio multi-source 多重射电源
+radio navigation 无线电导航
+radio nebula 射电星云
+radio noise 射电噪声
+radio noise-burst 射电噪暴
+radio nonthermal brightness temperature 非热射电亮度温度
+radio nova 射电新星
+radio nova remnant 射电新星遗迹
+radio observation 射电观测
+radio observatory 射电天文台
+radio occultation 掩射电源
+radio photon 射电光子
+radio photosphere 射电光球
+radio picture 射电图
+radio plage 射电谱斑
+radio plage component 射电谱斑分量
+radio polarimeter 射电偏振计
+radio polarimetry 射电偏振测量
+radio pollution 射电污染
+radio pulsar 射电脉冲星
+radio quasar 射电类星体
+radio quiet 射电宁静
+radio quiet quasar 射电宁静类星体
+radio quiet sun 射电宁静太阳
+radio radiation 射电
+radio radiation spectrum 射电频谱
+radio recombination 射电复合
+radio recombination line 射电复合谱线
+radio scintillation 射电闪烁
+radio sextant 射电六分仪
+radio sky 射电天空
+radio sky map 射电天图
+radio sky temperature 天空射电温度
+radio source 射电源
+radio source count 射电源计数
+radio source reference system 射电源参考系
+radio spectral index 射电谱指数
+radio spectral line 射电谱线
+radio spectrograph 射电频谱仪
+radio spectroheliogram 太阳射电频谱图
+radio spectroheliograph 太阳射电频谱仪
+radio spectrometer 射电频谱计
+radio spectroscope 射电频谱镜
+radio spectroscopy 射电频谱测量
+radio spectrum 射电频谱
+radio spot 射电斑
+radio star 射电星
+radio storm 射电暴
+radio structure 射电结构
+radio subsolar temperature 日下点射电温度
+radio sun 射电太阳
+radio sunspot 射电太阳黑子
+radio supernova 射电超新星
+radio supernova remnant 射电超新星遗迹
+radio survey 射电巡天
+radio telescope 射电望远镜
+radio telescope array 射电望远镜阵
+radio temperature 射电温度
+radio thickness 射电厚度
+radio time code 无线电时码
+radio time signal 无线电时号
+radio tracking 无线电跟踪
+radio trail 射电拖曳
+radio wave 射电波
+radio waveguide 射电波导
+radio wavelength band 射电波段
+radio window 射电窗口
+radio-frequency amplifier 射频放大器
+radio-frequency band 射频段
+radio-frequency disk 射频圆面天线
+radio-frequency interference 缩写:RFI。射频干涉
+radio-frequency line 射频谱线
+radio-frequency mass spectrometer 射频质谱仪
+radio-frequency radiation 射频辐射
+radio-frequency signal 射频信号
+radio-frequency spectrum 射频谱
+radio-galaxy Hubble diagram 射电星系哈勃图谱
+radio-intermediate quasar 中介射电类星体
+radio-isophote 射电等强线
+radio-link interferometer 无线电中继干涉仪
+radio-link interferometry 无线电中继干涉测量
+radio-source catalogue 射电源表
+radio-source counting 射电源计数
+radio-source distribution 射电源分布
+radio-source spectrum 射电源频谱
+radio-source structure 射电源结构
+radio-tail galaxy 带尾射电星系
+radio-tail object 带尾射电天体
+radio-trail source 拖曳射电源
+radioactive age dating 放射性计年
+radioactive atom 放射性原子
+radioactive dating 放射性计年
+radioactive decay 放射性衰变
+radioactive element 放射性元素
+radioactive nucleus 放射性核
+radioactive substance 放射性物质
+radioactivity 放射性
+radiocarbon age 放射性碳龄
+radiocarbon dating 放射性碳计年
+radiochemical neutrino detector 放射化学式中微子探测器
+radiogenic heat 放射热
+radiograph 射电图
+radioisotope thermoelectric generator 缩写:RTG。放射性同位素热电发生机
+radiolocational astronomy 无线电定位天文学
+radioloud quasar 强射电类星体
+radioloud star 强射电星
+radioloud sun 强射电太阳
+radiometer 辐射计
+radiometric dating 放射性同位素计年
+radiometric magnitude 辐射星等
+radiometric temperature 辐射温度
+radiometry 辐射测量
+radion 径子
+radionuclide 放射性核素
+radiophotography 无线电照相
+radiosonde 无线电探空仪
+radium 缩写:Ra。镭
+radius of curvature 曲率半径
+radius of gyration 回旋半径
+radius of influence 影响半径
+radius of shadow 影半径
+radius vector 矢径
+radius-luminosity relation 半径-光度关系
+radius-mass relation 半径-质量关系
+radome 天线罩
+radon 缩写:Rn。氡
+rainband 雨带
+raking-up effect 集积效应
+ram pressure 冲压
+ram-pressure confinement 冲压约束
+ram-pressure stripping 冲压剥离
+ramjet 冲压喷气
+rampart 环壁
+rampart crater 壁垒陨击坑
+random access memory 缩写:RAM。随机存取存储器
+random background object 无序背景天体
+random deviation 随机偏差
+random displacement 随机位移
+random distribution 随机分布
+random error 随机误差
+random event 随机事件
+random fluctuation 随机起伏; 无规起伏
+random motion 随机运动; 无规运动
+random noise 随机噪声
+random peculiar motion 随机本动
+random polarization 随机偏振
+random sample 随机样本
+random sampling 随机取样
+random trajectory 随机轨迹
+random variable 随机变量
+random variation 随机变化
+random velocity 随机速度
+random walk 随机游动
+randomness 随机性
+range counter 程长计数器
+range data 变幅数据
+range finder 测距仪
+range of light-variation 光变幅
+range rate 程长速率
+range-range navigation 测距-测距导航
+ranging 测距
+rank of commensurability 通约秩
+rapid burst 快暴
+rapid burster 快暴源
+rapid development 快速显影
+rapid neutron capture process 缩写:r-process。快过程; r过程
+rapid nova 快新星
+rapid rotator 快转星; 快转天体
+rapid variable 快变星
+rapidly oscillating Ap star 快速振荡Ap星
+rapidly varying component 快变分量
+rare gas 稀有气体
+rare-earth element 稀土元素
+rarefied plasma 稀薄等离子体
+raster 光栅
+raster scan mapping 逐行扫描成图法
+rate coefficient 比率系数
+rate of clock 钟速
+rate of diffusion 扩散率
+rate of discovery 发现率
+rate of escape 逃逸率
+rate of formation 诞生率
+rate of occurrence 掩食率
+rate of stellar extinction 恒星消亡率
+rated value 额定值
+rational horizon 地心地平
+raw value 原始值
+ray and horn 芒角
+ray crater 辐射状陨击坑
+ray path 线程
+rays of the moon 月面辐射纹
+razor-thin disk 无限薄盘
+re-absorption 再吸收
+re-arrangement 重排列
+re-capture 再俘获
+re-circulating correlator 循环相关器
+re-collapse 再坍缩
+re-cycling 再循环
+re-distribution 再分布
+re-emission 再发射
+re-orientation 重取向
+re-radiation 再辐射
+re-synchronization 再同步
+reactance amplifier 电抗耦合放大器
+reacting force 反作用力
+reaction chain 反应链
+reaction control system 缩写:RCS。反冲控制系统
+reaction cross-section 反作用截面
+read only memory 缩写:ROM。只读存储器
+reading 读数
+reading error 读数误差
+reading micrometer 读数测微计
+reading microscope 读数测微镜
+readout 读出
+readout noise 读出噪声
+real anomaly 真近点角
+real axis 实轴
+real brightness 真亮度
+real ellipticity 真椭率
+real flattening 真扁率
+real focus 实焦点
+real image 实像
+real singularity 实奇点
+real space 实空间
+real sun 真太阳
+real time 缩写:RT。实时
+real-space clustering 实空间成团性
+real-time detection 实时检测
+real-time determination 实时测定
+real-time display 实时显示
+real-time interferometry 实时干涉测量
+real-time measurement 实时测量
+real-time observation 实时观测
+real-time synchronization 实时同步
+realm 范围; 领域
+rear surface 后表面
+receding galaxy 退行星系
+receding object 退行天体
+receding star 退行星
+receiver noise 接收机噪声
+receiving antenna 接收天线
+receiving area 接收面积
+receiving system 接收系统
+recession 退行
+recession velocity 退行速度
+reciprocal 倒易
+reciprocal mass 质量倒数
+reciprocal medium 倒易介质
+reciprocity 倒易性
+reciprocity curve 倒易性曲线
+reciprocity failure 倒易性失效
+reciprocity law 倒易律
+recoil 反冲
+recoil electron 反冲电子
+recoil particle 反冲粒子
+recombination 复合
+recombination coefficient 复合系数
+recombination continuum 复合连续区
+recombination epoch 复合期
+recombination era 复合时期
+recombination line 复合线
+recombination line emission 复合线发射
+recombination of helium 氦的复合
+recombination radiation 复合辐射
+recombination spectrum 复合谱
+recombination time 复合时间
+reconnaissance satellite 侦察卫星
+reconnection 重连
+reconstruction of density field 密度场重构
+record time 记录时刻
+recorder 记录仪
+recording Doppler comparator 多普勒自记比较仪
+recording equipment 记录设备
+recording instrument 记录仪器
+recording micrometer 自记测微计
+recording microphotometer 自记测微光度计
+recovery 回收
+recovery package 回收装置
+rectangular aperture 矩形孔径
+rectangular coordinate 直角坐标
+rectangular horn 矩形喇叭
+rectangular source 矩形源
+rectascension 赤经
+rectifiable model 可矫正模型
+rectification 矫频
+rectilinear jet 直线喷流
+rectilinear solution 直线解
+recurrence formula 递推公式
+recurrence frequency 重复频率
+recurrence theorem 回归定理
+recurrent burst 复现暴
+recurrent disturbance 复现扰动
+recurrent eruption 复现爆发
+recurrent explosion 复现爆发
+recurrent flare 再现耀斑
+recurrent formula 递推公式
+recurrent nova 再发新星
+recurrent outburst 复现爆发
+recursion formula 递归公式
+recursive filter 循环滤波器
+recycled pulsar 再生脉冲星
+red branch 红支
+red clump 红团簇星
+red clump giant 缩写:RCG。红团簇巨星
+red coronal line 日冕红线
+red dot finder 红点寻星镜
+red dwarf 红矮星
+red dwarf flare star 红矮耀星
+red dwarf star 红矮星
+red giant 红巨星
+red giant branch 缩写:RGB。红巨星支
+red giant star 红巨星
+red giant tip 红巨星支上端
+red giant up 红巨星支上端
+red horizontal-branch 缩写:RHB。红水平支
+red magnitude 红星等
+red nebulous object 缩写:RNO。红色云状体
+red nugget Galaxy 红珍星系
+red star 红星
+red straggler 红离散星
+red supergiant 红超巨星
+red supergiant stars 红超巨星
+red variable 红变星
+red white dwarf 红白矮星
+red-sensitive plate 红敏底片
+redback pulsar 红背蛛脉冲星
+reddened galaxy 红化星系
+reddened object 红化天体
+reddened quasar 红化类星体
+reddened star 红化星
+reddening 红化
+reddening correction 红化改正
+reddening law 红化定律
+reddening line 红化线
+reddening ratio 红化比
+redshift 红移
+redshift controversy 红移论争
+redshift correction 红移改正
+redshift cutoff 红移截断
+redshift distortion 红移畸变
+redshift effect 红移效应
+redshift evolution 红移演化
+redshift parameter 红移参数
+redshift space 红移空间
+redshift space distortion 缩写:RSD。红移空间畸变
+redshift survey 红移巡天
+redshift-angular diameter relation 红移-角径关系
+redshift-apparent magnitude diagram 红移-视星等图
+redshift-distance relation 红移-距离关系
+redshift-magnitude relation 红移-星等关系
+reduced latitude 归化纬度; 归心纬度
+reduced mass 折合质量
+reduced particle 约化粒子
+reduced potential 约化势
+reduced proper motion 归化自行
+reduced radiation 减弱辐射
+reduced surface density 约化面密度
+reduced width 约化宽度
+reduction factor 归算因子
+reduction method 归算法
+reduction parameter 归算参数
+reduction principle 约化原理
+reduction to group mean 组内订正
+reduction to sea-level 海平面订正
+reduction to the equator 赤道订正
+reduction to the meridian 子午订正
+reduction to the sun 太阳订正
+reentry module 返回舱; 再入舱
+reentry trajectory 再入轨道
+reentry velocity 再入速度
+reference circle 基本圈
+reference ellipsoid 参考椭球
+reference frame 参考架; 参考系
+reference great circle 参考大圆
+reference orbit 参考轨道
+reference source 参考源
+reference star 参考星
+reference system 参考系
+reference time scale 参考时标
+reflectance 反射
+reflectance spectrum 反射光谱
+reflecting Schmidt telescope 反射式施密特望远镜
+reflecting power 反射本领
+reflecting telescope 反射望远镜
+reflection 反射
+reflection amplifier 反射放大器
+reflection angle 反射角
+reflection at critical angle 临界角反射
+reflection coefficient 反射系数
+reflection effect 反射效应
+reflection filament 反射暗条
+reflection grating 反射光栅
+reflection nebula 反射星云
+reflection spectrum 反射光谱
+reflection variable 反射变星
+reflection-type maser 反射型微波激射器
+reflective power 反射本领
+reflectivity 反射率
+reflector 1、反射望远镜; 2、反射镜
+reflector-antenna 反射天线
+reflector-corrector 折反射望远镜
+reflex feed system 反射式馈源系统
+reflex motion 反应运动
+reflexion 反射
+refracting angle 折射角
+refracting telescope 折射望远镜
+refraction 折射
+refraction anomaly 折射反常
+refraction coefficient 折射系数
+refraction constant 折射常数
+refraction correction 折射改正
+refraction halo 折射晕
+refraction law 折射定律
+refraction table 折射表
+refractive index 折射率
+refractive power 折射本领
+refractivity 折射率
+refractor 折射望远镜
+refractory 耐熔质
+refringence 折射率
+regeneration time 再生时标
+region of corotation 公转区
+registration 记录
+regmaglypt 气印
+regolith 浮土
+regression 退行
+regression analysis 回归分析
+regression coefficient 回归系数
+regression curve 回归曲线
+regression equation 回归方程
+regression line 回归线
+regression of galaxy 星系退行
+regression of nodes 交点退行
+regression of the node 交点退行
+regression period 回归周期
+regression velocity 退行速度
+regular cluster 规则星团
+regular cluster of galaxies 规则星系团
+regular galaxy 规则星系
+regular nebula 规则星云
+regular observation 常规观测
+regular orbit 有序轨道; 规则轨道
+regular perturbation system 正则摄动系统
+regular point 正则点
+regular satellite 规则卫星
+regular variable 规则变星
+regularity 正则性
+regularity condition 1、正则条件; 2、正规条件
+regularization 正则化
+regularization transformation 正规化变换
+regulator 调整器
+reheating 再热
+reheating from inflation 暴胀再热
+reheating redshift 再加热红移
+reionization 再电离
+reionization era 再电离时期
+reionization phase 再电离阶段
+reionization redshift 再电离红移
+relative abundance 相对丰度
+relative acceleration 相对加速度
+relative aperture 1、相对口径; 2、相对孔径
+relative catalogue 相对星表
+relative determination 相对测定
+relative energy 相对能量
+relative energy distribution 相对能量分布
+relative error 相对误差
+relative focal length 相对焦距
+relative gradient 相对梯度
+relative intensity 相对强度
+relative ionospheric opacity meter 电离层相对不透明度计
+relative luminosity factor 相对光度因子
+relative measurement 相对测量
+relative motion 相对运动
+relative movement 相对运动
+relative number 相对数
+relative number of spots 黑子相对数
+relative number of sunspots 太阳黑子相对数
+relative orbit 相对轨道
+relative parallax 相对视差
+relative photometry 相对测光
+relative position 相对位置
+relative potential 相对势
+relative proper motion 相对自行
+relative radial velocity 相对视向速度
+relative radio emitting power 相对射电发射功率
+relative stability 相对稳定度
+relative sunspot number 相对黑子数
+relative velocity 相对速度
+relativistic Doppler shift 相对论性多普勒位移
+relativistic Doppler term 相对论性多普勒项
+relativistic Maxwell distribution 相对论性麦克斯韦分布
+relativistic astrophysics 相对论天体物理学
+relativistic beaming 相对论性射束
+relativistic blurring 相对论性模糊
+relativistic bremsstrahlung 相对论性轫致辐射
+relativistic correction 相对论改正
+relativistic cosmology 相对论宇宙学
+relativistic deflection of light 相对论性光线偏折
+relativistic degeneracy 相对论简并性
+relativistic disk 相对论性圆面
+relativistic effect 相对论效应
+relativistic electron 相对论性电子
+relativistic enthalpy 相对论性焓
+relativistic expansion 相对论性膨胀
+relativistic field equation 相对论场方程
+relativistic fluid dynamics 相对论流体动力学
+relativistic gas 相对论性气体
+relativistic jet 相对论性喷射
+relativistic mechanics 相对论力学
+relativistic particle 相对论性粒子
+relativistic periastron advance 相对论性近星点进动
+relativistic periastron precession 相对论性近星点进动
+relativistic perihelion advance 相对论性近日点进动
+relativistic perihelion precession 相对论性近日点进动
+relativistic plasma 相对论性等离子体
+relativistic shift 相对论性移动
+relativistic star 相对论性星
+relativistic velocity 相对论性速度
+relativistic zone 相对论性区
+relativistically expanding source 相对论性膨胀源
+relativity principle 相对性原理
+relativity shift 相对论移动
+relaxation 弛豫
+relaxation effect 弛豫效应
+relaxation rate 弛豫速率
+relaxation time 弛豫时间
+relaxed cluster 弛豫星团
+relay optics 中继光学系统
+relevant parameter 相关参数
+reliability 置信度; 可靠度
+relic 遗迹
+relic magnetic field 遗迹磁场
+relic of supernova 缩写:SNR。超新星遗迹
+relics of the Big Bang 大爆炸遗迹
+reluctance 磁阻
+reluctivity 磁阻率
+remainder function 余函数
+remaining star 残留星
+remnant 遗迹
+remnant of nova 新星遗迹
+remnant of supernova 缩写:SNR。超新星遗迹
+remote clock 远距钟
+remote control 遥控
+remote control system 遥控系统
+remote equipment 遥控装置
+remote operation 遥控运作
+remote satellite 远距卫星
+remote sensing 遥感
+remote star 远距星
+remote telescope 遥控望远镜
+rendezvous 会合
+renormalization 1、重整化; 2、重正化
+renormalization group 重正化群
+repeatability 重复性
+repeated nova 再发新星
+repeating nova 再发新星
+repel 排斥
+replacement 换置
+replenishment rate 补充率
+replica of grating 复制光栅
+representation 表象
+representative point 代表点
+reproducibility 复现性; 复制性
+reproduction 复制; 再生
+repulsion 推斥
+repulsive force 斥力
+repulsive potential 推斥势
+repulsive state 推斥态
+reset 清零; 复位
+residual aberration 残余像差
+residual calculation 残差计算
+residual delay 剩余延迟
+residual error 残差
+residual fringe frequency 剩余条纹频率
+residual fringe phase 剩余条纹相位
+residual gauge mode 残留规范模
+residual intensity 剩余强度
+residual radial velocity 剩余视向速度
+residual strong nuclear force 残余强核力
+residual velocity 剩余速度
+resisting medium 阻尼介质
+resistive instability 电阻不稳定性
+resistivity 电阻率
+resolution 分辨率
+resolution box 分辨率框
+resolution circle 分辨率圆
+resolution ellipse 分辨率椭圆
+resolution filter 分辨滤波器
+resolution limit 分辨极限
+resolution of velocity 速度分解
+resolution-limited observation 限定分辨率观测
+resolvable source 可分辨源
+resolving power 分辨本领
+resolving time 分辨时间
+resonance 共振
+resonance absorption 共振吸收
+resonance capture 共振俘获
+resonance condition 共振条件
+resonance coupling 共振耦合
+resonance cross-section 共振截面
+resonance domain 共振域
+resonance gap 共振空区
+resonance line 共振谱线
+resonance orbit 共振轨道
+resonance overlap theory 共振重叠理论
+resonance radiation 共振辐射
+resonance satellite 共振卫星
+resonance spectrum 共振谱
+resonance state 共振态
+resonance transition 共振跃迁
+resonant absorption 共振吸收
+resonant cavity 共振腔
+resonant frequency 共振频率
+resonant gravitational wave detector 共振型引力波探测器
+resonant mode 共振模
+resonant orbit 共振轨道
+resonant particle 共振粒子
+resonant reaction 共振反应
+resonant scattering spectrometer 共振散射光谱仪
+resonant structure 共振结构
+resonator 共振器
+response curve 响应曲线
+response time 响应时间
+responsive plane 响应平面
+responsiveness 响应性
+responsivity 响应度
+rest energy 静能
+rest frame 静止参考架
+rest mass 静质量
+restoration technique 复原技术
+restored image 复原图像
+restored map 复原图
+restricted cosmological principle 限制性宇宙学原理
+restricted problem 限制性问题
+restricted problem of three bodies 限制性三体问题
+restricted theory 限制性理论
+restricted three-body problem 限制性三体问题
+resultant velocity 合速度
+retardation 减速
+retarded Green function 推迟格林函数
+retarded baseline 推迟基线
+retarded motion 减速运动
+retarded offset 推迟偏置
+retarded potential 推迟势
+reticle 十字丝
+reticule 十字丝
+retinal adaption 回收
+retract 缩
+retractable enclosure 伸缩式围罩
+retro-rocket 制动火箭
+retrograde merger 逆行并合
+retrograde motion 逆行
+retrograde orbit 逆行轨道
+retrograde stationary 逆留
+retrogression 逆行
+retroreflector 后向反射器
+return wave 回波; 反向波
+return-beam tube 回束摄像管
+reverberation mapping 反响映射
+reversal 反变; 自食
+reversal of polarity 极性反转
+reverse azimuth 反方位角
+reverse shock 反向激波
+reverse sign 反号
+reversibility 可逆性
+reversible film 反转软片
+reversible level 回转水准
+reversible mounting 回转装置
+reversible pendulum 可倒摆
+reversible process 可逆过程
+reversible transit circle 回转子午环
+reversing layer 反变层
+reversing prism 倒像棱镜
+revival group 重现群
+revival sunspot 1、重现太阳黑子; 2、重现黑子
+revival sunspot group 重现黑子群
+revolution 公转; 绕转
+revolution of micrometer screw 测微计螺旋周值
+rhenium 缩写:Re。铼
+rheonomic constraint 不稳定约束
+rheostat 变阻器
+rhodium 缩写:Rh。铑
+rhombic antenna 菱形天线
+rhumb line 恒向线
+rhythmic time signal 科学式时号
+rice grain 米粒组织
+rice-grain effect 米粒效应
+rich cluster 1、富星团; 2、富星系团
+rich cluster of galaxies 富星系团
+rich cluster of stars 富星团
+rich galaxy cluster 富星系团
+rich star cluster 富星团
+rich-field adapter 广角转接器
+richest-field telescope 缩写:RFT。特广视场望远镜
+richness 富度
+richness class 富度级
+richness index 富度指数
+richness parameter 富度参数
+ridge 山脊
+ridge horn 脊形喇叭
+ridge square horn 皱纹方形喇叭
+right angle prism 直角棱镜
+right ascension 缩写:R.A.; RA。赤经
+right ascension circle 赤经度盘
+right ascension setting circle 赤经度盘
+right sphere 正交天球
+right-hand circular polarization 右旋圆偏振
+right-hand rule 右手定则
+right-handed coordinate system 右手坐标系
+right-handed polarization 右旋偏振
+right-handed reference frame 右手参考架
+rigid body rotation 刚体自转
+rigid crust 刚性壳
+rigid earth 刚性地球
+rigid halo 刚体晕
+rigidity 刚性
+rill 沟纹; 溪
+rille 沟纹; 溪
+rille crater 沟纹环形山
+rim crater 环形山边
+rima 沟纹; 溪
+ring antenna 环状天线
+ring aperture 环状孔径
+ring arc 环弧
+ring array 环状天线阵
+ring current 环电流
+ring division 环缝
+ring galaxy 环状星系
+ring imaging Cherenkov detector 缩写:RICH detector。环形成像切伦科夫探测器
+ring micrometer 环状测微计
+ring mountain 环形山
+ring nebula 环状星云
+ring of Jupiter 木星环
+ring of Neptune 海王星环
+ring of Saturn 土星环
+ring of Uranus 天王星环
+ring plain 环形平原
+ring radio telescope 带形射电望远镜
+ring system 光环系统
+ring transformation 环变换
+ring-moon 行星环卫星
+ring-plane crossing 环面穿越
+ringdown 铃宕
+ringed barred galaxy 有环棒旋星系
+ringed barred spiral galaxy 有环棒旋星系
+ringed planet 有环行星
+riometer 电离层相对不透明度计
+ripple 脉动; 波纹结构
+rise phase 上升阶段
+rise time 上升时间
+rising 升; 出
+rising limit 出限
+rising point 上升点
+rising prominence 上升日珥
+rizalite 玻璃陨石
+rms 全称:root mean square。均方根
+rms deviation 全称:root mean square deviation。均方差
+rms value 全称:root mean square value。均方根值
+rms velocity 全称:root mean square velocity。均方根速度
+rmse 全称:mean error; root mean square error。中误差
+robotic observatory 程控天文台
+robotic telescope 程控望远镜
+robust estimation 稳健估计
+rock magnetism 岩石磁性
+rocker 摇摆器
+rocket X-ray astronomy 火箭X射线天文学
+rocket astronomy 火箭天文学
+rocket infrared astronomy 火箭红外天文学
+rocket mechanism 火箭机制
+rocket train 多级火箭
+rocket ultraviolet astronomy 火箭紫外天文学
+rocket γ-ray astronomy 火箭γ射线天文学
+rocket-borne instrument 箭载仪器
+rocket-borne telescope 箭载望远镜
+rocking mirror 摆动反光镜
+rocking telescope 摆动望远镜
+rockoon 气球发射高空探测火箭
+rocky core 岩核
+rocky dwarf 岩质矮行星
+rocky exoplanet 岩质系外行星
+rocky planet 岩质行星
+rolling hangar 机库
+rolloff frequency 滚降频率
+roof prism 屋脊棱镜
+root mean square 缩写:rms。均方根
+root mean square deviation 缩写:rms deviation。均方差
+root mean square error 缩写:rmse。中误差
+root mean square value 缩写:rms value。均方根值
+root mean square velocity 缩写:rms velocity。均方根速度
+root of unit 单位根
+rosette 玫瑰花结
+rosette method 系列法
+rotating axis 自转轴
+rotating body 旋转体
+rotating chopper 旋转斩波器
+rotating disk 旋转圆面; 旋转盘
+rotating magnetic dipole 旋转磁偶极子
+rotating object 旋转天体
+rotating polarizer 旋转起偏器
+rotating radio transient 缩写:RRAT。自转型暂现射电源
+rotating sector 旋转遮光板
+rotating shell 旋转气壳
+rotating shutter 旋转快门
+rotating star 自转星
+rotating variable 自转变星
+rotating wave-plate 旋转波片
+rotating-lobe interferometer 旋转瓣干涉仪
+rotation 自转
+rotation axis 自转轴
+rotation center 旋转中心
+rotation curve 自转曲线
+rotation effect 自转效应
+rotation frequency 自转频率
+rotation inertia 转动惯量
+rotation measure 缩写:RM。旋转量
+rotation number 旋转数
+rotation of binary 双星绕转
+rotation of ecliptic 黄道转动
+rotation of galaxy 星系自转
+rotation of galaxy cluster 星系团旋转
+rotation of the Galaxy 银河系自转
+rotation of the earth 地球自转
+rotation of the line of apsides 拱线转动
+rotation period 自转周期
+rotation phase 自转相位
+rotation pole 自转极
+rotation rate 自转速率
+rotation spectrum 转动光谱
+rotation synthesis 自转综合孔径
+rotation temperature 转动温度
+rotation-curve decomposition 旋转曲线分解
+rotation-vibration band 转动-振动谱带
+rotation-vibration spectrum 转动-振动光谱
+rotation-vibration state 转动-振动态
+rotational aperture synthesis 自转孔径综合
+rotational axis precession 自转轴进动
+rotational brightness modulation 自转亮度调制
+rotational broadening 自转致宽
+rotational constant 转动常数
+rotational contour 转致轮廓
+rotational energy 转动能
+rotational evolution 自转演化
+rotational inclination 自转轴倾角
+rotational inertia 转动惯量
+rotational instability 自转不稳定性
+rotational line 转动谱线
+rotational modulation 自转调制
+rotational modulation collimator 旋转调制准直器
+rotational momentum 自转角动量
+rotational parallax 自转视差
+rotational period 自转周期
+rotational phase 自转相位
+rotational profile 转致轮廓
+rotational state 转动态
+rotational structure 转动结构
+rotational transition 转动跃迁
+rotational variable 自转变星
+rotational velocity 自转速度
+rotational velocity-space velocity relation 自转速度-空间速度关系
+rotational velocity-spectral type relation 自转速度-光谱型关系
+rotator 自转天体; 转子
+roton 旋子
+rounded value 舍入值
+rounding error 舍入误差
+roundoff 舍入
+roundoff error 舍入误差
+routine observation 常规观测
+rovibrational band 振转谱带
+row error 行误差
+rubber second 负闰秒
+rubble pile structure 砾石堆结构
+rubidium 缩写:Rb。铷
+rubidium clock 铷钟
+rubidium gas cell 铷气泡
+rubidium maser 铷微波激射器
+rubidium-strontium dating 铷-锶纪年
+ruby 红宝石
+ruled grating 刻划光栅
+ruled-surface map 直纹曲面图
+run error 行差
+runaway coalescence 逃逸结合
+runaway electron 逃逸电子
+runaway growth 失控式生长
+runaway star 速逃星
+running mean 移动平均
+running penumbral wave 半影行波
+rupes 峭壁; 陡岩
+ruthenium 缩写:Ru。钌
+s-process 全称:slow neutron capture process。慢过程; s过程
+s.d. 全称:standard deviation。标准偏差
+s.e. 全称:standard error。标准误差
+sCDM model 全称:standard Cold Dark Matter model。标准冷暗物质模型
+sSFR 全称:specific star-formation rate。比恒星形成率
+saddle point 鞍点
+safety screw 安全螺旋
+sagittal 弧矢
+sagittal plane 矢面
+sailing star 蓬星
+samarium 缩写:Sm。钐
+sample 样本; 取样
+sample averaging 取样平均
+sample size 样本量
+sample time 取样时间
+sampler 取样器; 采样器
+sampling 取样
+sampling clock 取样钟
+sampling frequency 取样频率
+sampling rate 取样率; 采样率
+sampling theorem 取样定理
+sampling up-the-ramp 斜升采样
+sand clock 沙漏
+sand dune 沙丘
+sand glass 沙漏
+sand-bank model 沙堆模型
+sandy clock 沙漏
+satellite 卫星
+satellite Doppler navigation system 人卫多普勒导航系统
+satellite Doppler tracking 卫星多普勒测量
+satellite altimetry 卫星测高
+satellite antenna 人卫天线
+satellite astronomy 卫星天文学
+satellite borne instrument 人卫运载仪器
+satellite camera 人卫照相机
+satellite camera with quadraxial mounting 四轴式人卫照相机
+satellite camera with quadraxial tracking frame 四轴式人卫跟踪照相机
+satellite coronagraphy 人卫日冕照相术
+satellite eclipse 卫星食
+satellite galaxy 卫星星系; 伴星系
+satellite geodesy 卫星大地测量学
+satellite laser ranging 缩写:SLR。卫星激光测距
+satellite life 人卫寿命
+satellite line 伴线
+satellite navigation 卫星导航
+satellite nebula 伴星云
+satellite of Jupiter 木卫
+satellite of Mars 火卫
+satellite of Neptune 海卫
+satellite of Pluto 冥卫
+satellite of Saturn 土卫
+satellite of Uranus 天卫
+satellite ranging 人卫测距
+satellite spin 卫星自旋
+satellite sunspot 卫星黑子
+satellite system 卫星系
+satellite tracking 人卫跟踪
+satellite tracking camera 人卫跟踪照相机
+satellite trail 卫星痕迹
+satellite transit 卫星凌行星
+satellite triangulation 卫星三角测量
+satellite-borne telescope 星载望远镜
+satellite-sensed event 卫星可测事件
+satellite-to-satellite tracking 缩写:SST。人卫-人卫跟踪
+satelloid 卫星体
+satelloon 球载卫星
+saturated absorption 饱和吸收
+saturated absorption line 饱和吸收线
+saturated line 饱和谱线
+saturation 饱和; 彰度
+saturation effect 饱和效应
+saturation factor 饱和因子
+saturation function 饱和函数
+saturation pump 饱和抽运
+saturnicentric coordinate 土心坐标
+saturnicentric latitude 土心纬度
+saturnicentric longitude 土心经度
+saturnicentric ring latitude 土心环纬度
+saturnicentric ring longitude 土心环经度
+saturnigraphic coordinate 土面坐标
+saturnigraphic latitude 土面纬度
+saturnigraphic longitude 土面经度
+saturnigraphy 土面学
+saucer crater 碟形环形山
+sausage-type instability 腊肠型不稳定性
+scalar CMB anisotropy 标量微波背景各向异性
+scalar antenna 标量天线
+scalar curvature 标量曲率
+scalar curvature of space-time 时空标量曲率
+scalar density 标量密度
+scalar field 标量场
+scalar fluctuation 标量涨落
+scalar horn 梯形喇叭
+scalar mode 标量模
+scalar perturbation 标量扰动
+scalar potential 标量势
+scalar virial theorem 标量位力定理
+scalar-tensor gravity 标量-张量引力
+scalar-tensor theory 标量-张量理论
+scale division 刻度
+scale factor 1、标度因子; 2、比例因子
+scale factor of the universe 1、宇宙标度因子; 2、宇宙标度因子
+scale height 标高
+scale length 标长
+scale pair 标度星对
+scale value 标度值
+scale-free solution 尺度无关解
+scale-invariance 标度不变性
+scale-invariant perturbation 尺度不变扰动
+scale-invariant spectrum 尺度不变功率谱
+scaling 定标
+scaling factor 定标因子
+scaling law 定标定律
+scaling of string networks 弦网络标度化
+scaling relation 标度关系
+scandium 缩写:Sc。钪
+scanner 扫描器
+scanning 扫描
+scanning great circle 扫描大圆
+scanning modulation collimator 扫描调制准直器
+scanning spectrometer 扫描分光仪
+scaphe 仰仪
+scattered disk object 缩写:SDO。SDO型天体; 散盘型天体
+scattered light 散射光
+scattered radiation 漫辐射; 散射辐射
+scattered reflection 漫反射
+scattering 散射
+scattering angle 散射角
+scattering atmosphere 散射大气
+scattering by interstellar media 缩写:ISS。星际散射
+scattering coefficient 散射系数
+scattering cross-section 散射截面
+scattering diffusion 散射扩散
+scattering effect 散射效应
+scattering kernel 散射核
+scattering power 散射本领
+schematic diagram 示意图
+schiefspiegler telescope 席夫施皮格勒望远镜
+sciagraphy 星影计时法
+sciametry 日月食理论
+scintillation 闪烁
+scintillation counter 闪烁计数器
+scintillation effect 闪烁效应
+scintillation spectrum 闪烁谱
+scintillation telescope 闪烁望远镜
+scintillator neutrino detector 闪烁体式中微子探测器
+scintillometer 闪烁计数器
+scleronomic constraint 稳定约束
+scopulus 杂相陡岩
+scotopic curve 适暗曲线
+scotopic eye 适暗眼
+scotopic luminosity curve 暗光光度曲线
+scotopic vision 晨昏视觉
+scratch dial 刻线日晷
+scratch sundial 刻线日晷
+screen brightness 屏亮度
+screening 屏蔽
+screening effect 屏蔽效应
+screw micrometer 螺旋测微器
+screw microscope 螺旋测微镜
+screw value 螺旋周值
+scroll 卷滚
+sea interferometer 海岸干涉仪
+sea level 海平面
+sea-level correction 海平面订正
+search for extraterrestrial life 地外生命搜寻
+search technique 搜寻技术
+searching ephemeris 寻星历表
+season 季; 季节
+seasonal fluctuation 季节性起伏
+seasonal phenomenon 季节性现象
+seasonal variation 季节性变化
+second 秒
+second beat 秒拍
+second contact 食既; 第二切
+second control 秒控制
+second cosmic velocity 第二宇宙速度
+second difference 二次差
+second of arc 缩写:arcsec。角秒
+second of time 时秒
+second order day number 二阶日数
+second order phase transition 二级相变
+second order spectrum 二级光谱
+second order term 二阶项
+second pendulum 秒摆
+second quantization 二次量子化
+second summation 二次和
+second transit 第二次中天
+second type surface 副表面
+secondary axis 副轴
+secondary blockage 副镜遮拦
+secondary circle 副圈
+secondary clock 子钟
+secondary component 次星
+secondary cosmic radiation 次级宇宙线
+secondary cosmic ray 次宇宙线
+secondary cosmic rays 次级宇宙线
+secondary crater 次级陨击坑
+secondary distance indicator 次级示距天体
+secondary eclipse 次食
+secondary electron 次级电子
+secondary element 次级元素
+secondary emission 次级发射
+secondary fluctuation 次起伏
+secondary flux of atomspheric γ-rays 大气γ射线次级流量
+secondary flux of cosmic rays 宇宙线次级流量
+secondary focus 副焦点
+secondary image 副像
+secondary maximum 次极大
+secondary minimum 次极小
+secondary mirror 副镜
+secondary mirror support tower 副镜支承塔
+secondary mirror tripod 副镜三脚架
+secondary optical axis 副光轴
+secondary particle 次级粒子
+secondary pattern 次级方向图
+secondary period 副周期
+secondary prominence 次生日珥
+secondary radiant 次辐射点
+secondary reflector 副反射面
+secondary resonance 次共振
+secondary source 次源
+secondary spectrum 二级光谱
+secondary standard 二级标准
+secondary star 次星
+secondary surface 副表面; 辅助面
+secondary tail 副彗尾
+secondary wave 次波
+secondary-mirror modulation 副镜调制
+secondary-mirror modulator 副镜调制器
+sector 象限仪
+sector boundary 扇形边界
+sector shutter 扇形快门
+sector structure 扇形结构
+sectorial harmonics 扇谐函数
+secular aberration 长期光行差
+secular acceleration 长期加速度
+secular equation 长期差
+secular evolution 长期演化
+secular inequality 长期差
+secular instability 长期不稳定性
+secular motion 长期运动
+secular parallax 长期视差
+secular perturbation 长期摄动
+secular polar motion 长期极移
+secular precession 长期进动
+secular resonance 长期共振
+secular stability 长期稳定性
+secular tendency 长期趋势
+secular term 长期项
+secular trend 长期趋势
+secular variable 长期变星
+secular variation 长期变星
+sedimentary rock 沉积岩; 水成岩
+seed nucleus 籽核
+seed-field model 种子场模型
+seeing 视宁度
+seeing disk 视宁圆面; 视影圆面
+seeing disturbance 视宁度扰动
+seeing image 视影; 视宁像
+seeing management 视宁度控管
+seeing monitor 视宁度监测器
+seesaw mechanism 跷跷板机制
+segmented mirror 拼合镜面
+segmented mirror telescope 缩写:SMT。拼合镜面望远镜
+segmented optics 拼合镜面光学系统
+segregation 分层
+seiche oscillation 晃动振动
+seienogony 月球起源学
+seism 地震
+seismic belt 地震带
+seismic focus 震源
+seismic origin 震源
+seismic source 震源
+seismic surface wave 地震面波
+seismic wave 地震波
+seismic zone 地震区
+seismicity 地震活动
+seismo-astronomy 地震天文
+seismogram 震波图
+seismograph 地震仪
+seismology 地震学
+seismometer 地震计
+seismophysics 地震物理
+seismoscope 地震示波仪
+selected area 缩写:SA。选区
+selection effect 选择效应
+selection function 选择函数
+selection rule 选择定则
+selective absorption 选择吸收
+selective absorption coefficient 选择吸收系数
+selective effect 选择效应
+selective emission 选择发射
+selective emission coefficient 选择发射系数
+selective light pressure 选择光压
+selective radiation 选择辐射
+selective radiation process 选择辐射过程
+selective scattering 选择散射
+selective scattering coefficient 选择散射系数
+selectivity 选择性
+selenium 缩写:Se。硒
+selenium cell 硒光电池
+selenium photometer 硒光度计
+selenocentric coordinate 月心坐标
+selenodesy 月面测量
+selenofault 月面断层
+selenogony 月球起源说
+selenograph 月面图
+selenographic chart 月面图
+selenographic coordinate 月面坐标
+selenographic latitude 月面纬度
+selenographic longitude 月面经度
+selenographic map 月面图
+selenography 月面学
+selenoid 月球卫星
+selenologist 月球学家
+selenology 月球学
+selenomorphology 月面形态学
+selenophysical phenomenon 月球物理现象
+selenophysics 月球物理
+selenothermy 月热学
+self-absorbed radiation 自吸收辐射
+self-absorbed synchrotron 自吸收同步辐射
+self-absorption 自吸收
+self-adjoint 自伴
+self-calibration method 自定标方法
+self-coherent camera 自相干相机
+self-consistency 自洽性
+self-consistent field 自洽场
+self-consistent solution 自洽解
+self-containment 自持
+self-correction 自校正
+self-correlation 自相关
+self-energy 自能量
+self-field 原场
+self-gravitating body 自引力天体
+self-gravitation 自引力
+self-inductance 自感
+self-induction 自感应
+self-luminance 自发光
+self-luminous body 自发光体
+self-luminous train 自发光余迹
+self-magnetic field 自磁场
+self-noise 原噪声
+self-propagating star formation 自传播恒星形成
+self-recording micrometer 自记测微计
+self-regulation 自调节
+self-reproducing universe 自增殖宇宙
+self-scanning 自扫描
+self-shielding 自屏蔽
+self-similar collapse 自相似坍缩
+self-similar evolution 自相似演化
+self-similar growth 自相似增长
+self-similar model 自相似模型
+self-similarity 自相似性
+self-stimulated emission 自受激发射
+self-supporting grating 自持光栅
+selsyn 自整角机
+semi-amplitude 半变幅; 半振幅
+semi-analytical galaxy formation 半解析星系形成
+semi-analytical model 半解析模型
+semi-annual variation 半年变化
+semi-barium star 半钡星
+semi-convection 部分对流
+semi-detached binary 半接双星
+semi-diameter 缩写:SD。半径
+semi-diurnal arc 半日弧
+semi-diurnal tide 半日潮
+semi-duration 半期
+semi-forbidden line 半禁线
+semi-infinite atmosphere 半无限大气
+semi-latus rectum 半通径
+semi-lunar period 半月周期
+semi-lunar variation 半月变化
+semi-major axis 半长轴; 半长径
+semi-meridian 半子午线
+semi-minor axis 半短轴; 半短径
+semi-quadrate 半象限差
+semi-regular variable 缩写:SR variable。半规则变星
+semi-revolution 半周
+semiclassical quantum gravity 半经典量子引力
+semiconductor X-ray detector 半导体X射线探测器
+semiconductor γ-ray detector 半导体γ射线探测器
+semidefinite time 半确定时
+semidetached binary 半接双星
+sense 指向
+sense of revolution 公转方向
+sense of rotation 自转方向
+sensibility 灵敏度
+sensing device 传感器
+sensitivity 灵敏度
+sensitivity constant 灵敏度常数
+sensitivity curve 灵敏度曲线
+sensitivity distribution 灵敏度分布
+sensitivity equation 灵敏度方程
+sensitization 敏化
+sensitizer 敏化剂
+sensitogram 感光图
+sensitometer 感光计
+sensitometry 感光测量
+sensor 传感器
+separate-nucleus hypothesis 分离核心假说
+separated source 分离源
+separation 间距
+separatrice 分界
+separatrix 界面
+septet 1、七重态; 2、七重线
+sequence of giants 巨星序
+sequence of stellar spectra 恒星光谱序
+sequence of sub-dwarfs 亚矮星序
+sequence of sub-giants 亚巨星序
+sequence of supergiants 超巨星序
+sequence of white dwarfs 白矮星序
+sequential estimation 序贯估计
+sequential processing 序贯处理
+serendipitous X-ray source 偶遇X射线源
+serendipitous γ-ray source 偶遇γ射线源
+series limit 系限
+series spectrum 线系谱
+serpentine 蛇纹石
+service module 缩写:SM。服务舱
+servo control receiver 伺服接收机
+servo-drive 伺服驱动器
+servo-system 伺服系统
+sesqui-quadrate 一个半象限差
+set-up error 安装误差
+setting 对准
+setting circle 定位度盘
+setting limit 落限
+setting point 下落点
+sexagesimal cycle 六十干支周
+sexagesimal system 六十分制
+sextant 1、六分仪; 2、纪限仪
+sextet 1、六重态; 2、六重线
+sextile 六十度角距
+sextile aspect 六分方位
+sextuple star 六合星
+sferics 天电
+sfermion 标量费米子
+shadow 影
+shadow band 影带
+shadow band structure 影带结构
+shadow belt 影带
+shadow cone 影锥
+shadow definer 影符; 景符
+shadow eclipse 影食
+shadow matter 虚影物质
+shadow transit 卫影凌行星
+shape factor 形状因子
+shape function 形状函数
+shape relation 形状关系
+shaped Cassegrain antenna 整形卡塞格林天线
+shaped dual reflector 异形双反射面
+shaped reflector 异形反射面
+shaped-pupil coronagraph 光瞳整形星冕仪
+sharp image 锐像
+sharp line 锐谱线
+sharp series 锐线系
+sharpness 清晰度
+shatter cone 碎裂锥岩
+shear distortion 剪切畸变
+shear field 剪切场
+shear instability 剪切不稳定性
+shear layer 剪切层
+shear stabilization 剪切致稳
+shear tensor 剪切张量
+shear viscosity 剪切黏性
+shear viscosity coefficient 剪切黏性系数
+shear-dominated encounter 剪切主导的交会
+shearing 剪切
+shearing effect 剪切效应
+shearing interferometer wavefront sensor 剪切干涉仪波前传感器
+sheath 鞘
+sheet 片状结构
+shell burning 壳层燃烧
+shell crossing 壳层交叉; 壳层穿越
+shell galaxy 壳状星系
+shell remnant 壳状遗迹
+shell source 壳源
+shell star 气壳星
+shell structure 壳层结构
+shell supernova remnant 壳状超新星遗迹
+shell-source model 壳源模型
+shemu 埃及古历夏季
+shepherd moon 牧羊犬卫星
+shepherd satellite 牧羊犬卫星
+shepherding satellite 牧羊犬卫星
+shergottite 辉熔长石无球粒陨石
+shield volcano 盾状火山
+shielding 屏蔽
+shielding effect 屏蔽效应
+shielding variable 屏蔽变星
+shift 位移
+shift theorem 移位定理
+shift vector 位移矢量
+shimmer 闪光
+shock breakout 激波溃围, 激波突围
+shock front 激波波前
+shock heating 激波加热
+shock ionization 激波电离
+shock temperature 激波温度
+shock wave 激波
+shock wave-front 激波波前
+shock-wave ionization 激波电离
+shocked gas 受震激气体
+shooting star 流星
+short baseline interferometer 缩写:SBI。短基线干涉仪
+short baseline interferometry 缩写:SBI。短基线干涉测量
+short burst 短期爆发
+short count 短期积日
+short distance scale 短距离尺度
+short duration burst 短期爆发
+short wave branch 短波支
+short-arc method 短弧法
+short-axis tube orbit 短轴管形轨道
+short-lived star 短寿命星
+short-period Cepheid 短周期造父变星
+short-period comet 短周期彗星
+short-period perturbation 短周期摄动
+short-period term 短周期项
+short-period variable 短周期变星
+short-range field 短程场
+short-range force 短程力
+short-term stability 短期稳定度
+short-wave fade-out 缩写:SWF。短波衰退
+short-wavelength radiation 短波辐射
+shot noise 散粒噪声
+shower meteor 属群流星
+shower radiant 流星雨辐射点
+shut-off 断路
+shutter blade 快门叶片
+shutter correction 快门改正
+shutter sweep correction 快门扫掠改正
+shuttle 航天飞机
+siddhanta 印度历数书
+sidelit view 侧照视像
+sidelobe 旁瓣
+sidelobe level 旁瓣电平
+sidelobe subtraction 减旁瓣法
+sidereal astronomy 恒星天文
+sidereal chronometer 恒星时计
+sidereal clock 恒星钟
+sidereal day 恒星日
+sidereal drive 转仪钟
+sidereal driving clock 转仪钟
+sidereal hour 恒星小时
+sidereal hour-angle 恒星时角
+sidereal midnight 恒星时子夜
+sidereal minute 恒星时分
+sidereal month 恒星月
+sidereal noon 恒星时正午
+sidereal period 恒星周期
+sidereal rate 恒星周天转速
+sidereal revolution 恒星周
+sidereal second 恒星时秒
+sidereal time 缩写:ST。恒星时
+sidereal universe 恒星世界
+sidereal year 恒星年
+siderite 铁陨星; 铁陨石; 陨铁
+siderograph 恒星时记时器
+siderolite 石铁陨星
+siderophyre 古铜鳞英石铁陨石
+siderostat 定星镜
+sight-line velocity 视向速度
+sighting 照准
+sighting telescope 瞄准望远镜
+sighting-tube 窥管; 望筒
+sighting-tube ring 四游仪
+sign 宫
+signal 信号; 讯号
+signal analysis 信号分析
+signal band 信号频带
+signal covariance matrix 信号协方差矩阵
+signal detection 信号检测
+signal enhancement 信号增强
+signal lag 信号滞后
+signal processing 信号处理
+signal source 信号源
+signal strength 信号强度
+signal to noise ratio 缩写:SNR; S/N。信噪比
+signal-noise ratio 缩写:SNR; S/N。信噪比
+signal/noise ratio 缩写:SNR; S/N。信噪比
+significant figure 有效数字
+signs of zodiac 黄道十二宫
+silica 硅土
+silicaceous asteroid 硅质小行星
+silicate 硅酸盐
+silicon 缩写:Si。硅
+silicon burning 硅燃烧
+silicon diode array 硅二极管阵
+silicon drift detector 缩写:SDD。硅漂移探测器
+silicon intensifier target 缩写:SIT。硅增强靶
+silicon intensifying target 缩写:SIT。硅增强靶
+silicon monosulfide 一硫化硅
+silicon monoxide 一氧化硅
+silicon pore optics 缩写:SPO。硅孔光学系统
+silicon star 硅星
+silicon strip detector 缩写:SSD。硅条探测器
+silver 缩写:Ag。银
+silver coating 镀银
+silvering 镀银
+similarity 相似性
+similarity model 相似模型
+similarity transformation 相似变换
+simple burst 简单暴
+simple ecliptic armilary 黄道经纬仪
+simple equatorial armilary 赤道经纬仪
+simple harmonic motion 缩写:SHM。简谐运动
+simple interferometer 相加干涉仪
+simple pendulum 单摆
+simple stellar population 缩写:SSP。简单恒星星族
+simply connected 单联通的
+simultaneity 同时性
+simultaneous altitude 同时高度; 同时地平纬度
+simultaneous auroral multi-balloon observation 缩写:SAMBO。多气球同步极光观测
+simultaneous collision 同时碰撞
+simultaneous differential imager 同步差分成像仪
+simultaneous observation 同时观测; 同步观测
+sine parallax 正弦视差
+sine wave 正弦波
+single antenna 单天线
+single stellar population 单一星族
+single-aperture radio telescope 单孔径射电望远镜
+single-arc method 单弧法
+single-beam polarimeter 单光束偏振计
+single-cavity maser amplifier 单腔量子放大器
+single-channel photometer 单通道光度计
+single-channel tunable spectrometer 单通道调谐频谱仪
+single-dish radio telescope 单碟射电望远镜
+single-lined binary 缩写:SB 1。单谱分光双星; 单谱双星
+single-lined spectroscopic binary 缩写:SB 1。单谱分光双星; 单谱双星
+single-photon avalanche photodiode 缩写:SPAD。单光子雪崩光电二极管
+single-prism spectrograph 单棱镜摄谱仪
+single-prism spectrometer 单棱镜分光仪
+single-prism spectroscope 单棱镜分光镜
+single-sideband receiver 单边带接收机
+single-spectrum binary 缩写:SB 1。单谱分光双星; 单谱双星
+single-station method 单站法
+single-station observation 单站观测
+singlet 单谱线; 单一态; 单透镜
+singular coordinate 奇异坐标
+singular isothermal sphere 奇异等温球
+singular periodic solution 奇周期解
+singular perturbation system 奇异摄动系统
+singular point 奇点
+singular solution 奇解; 奇异解
+singular state 奇态
+singular value decomposition 缩写:SVD。奇异值分解
+singularity 1、奇异性; 2、奇点
+singularity of the universe 宇宙奇点
+sinuous rille 弯曲沟纹
+sinus 湾
+sinusoid 正弦曲线
+sinusoidal projection 正弦投影
+sinusoidal wave 正弦波
+site protection 台址保护
+site selection 选址
+site telescope 选址望远镜
+site testing 选址
+six-color photoelectric photometry 六色光电测光
+six-color photometry 六色测光
+six-color system 1、六色测光系统; 2、六色测光系统
+skewness 欹斜度
+skin effect 趋肤效应; 集肤效应
+sky atlas 天图
+sky background 天空背景
+sky background noise 天空背景噪声
+sky background radiation 天空背景辐射
+sky brightness 天空亮度
+sky brightness temperature 天空亮度温度
+sky clock 天钟
+sky compass 天罗盘
+sky factor 天光因子
+sky fixed component 跟踪天空分量
+sky flat 天光平场
+sky fog 天雾
+sky map 天图
+sky measuring scale 量天尺
+sky noise 天空噪声
+sky patrol 巡天观测
+sky phenomena 天象
+sky radiation 星空辐射
+sky spectrum 天光光谱
+sky survey 巡天观测
+sky-horn switching 天空喇叭开关
+sky-light 天光
+sky-wave 天波
+slab 板块
+slab structure 板块结构
+slant range 斜距
+slat collimator 条形准直器
+slave clock 子钟
+slepton 标轻子
+slew 回转
+slim disc 扁盘
+slipping 失次
+slit 光缝
+slit image 光缝像
+slit jaw 光缝面
+slit spectrogram 有缝光谱
+slit spectrograph 有缝摄谱仪
+slit spectroscopy 有缝分光
+slit spectrum 有缝光谱
+slit-jaw observation 光缝面观测
+slitless spectrogram 无缝光谱
+slitless spectrograph 无缝摄谱仪
+slitless spectroscopy 无缝分光
+slitless spectrum 无缝光谱
+sloshing oscillation 晃动振动
+slow angular variable 慢角变量
+slow development 慢速显影
+slow magnetosonic-wave speed 缩写:SMS。慢磁声波速
+slow motion 慢动; 迟行
+slow neutron capture process 缩写:s-process。慢过程; s过程
+slow nova 慢新星
+slow plate 低灵敏度底片
+slow pulsar 慢脉冲星
+slow pulsator 慢脉动星
+slow rotator 慢自转星
+slow supernova 慢超新星
+slow wave 慢波
+slow-drift burst 慢漂暴
+slow-mode wave 慢波
+slow-roll approximation 慢滚近似
+slow-rolling approximation 慢滚近似
+slow-rolling phase 慢滚阶段
+slow-spinning black hole 慢自旋黑洞
+slowing factor 慢变因子
+slowing-down time 减速时间
+slowly varying component 缩写:SVC。缓变分量
+slowly varying potential 缓变势
+slue 回转
+small Solar System body 太阳系小天体
+small circle 小圆
+small cycle 小纪
+small scale anisotropy 小尺度各向异性
+small scale inhomogeneity 小尺度不均匀性
+small-angle anisotropy 小角度各向异性
+small-diameter source 小角径源
+small-scale damping 小尺度衰减
+smearing effect 涂污效应
+smearing function 涂污函数
+smearing-out image 亏损星像
+smoke train 冒烟余迹
+smoked glass 熏烟玻璃
+smoothed distribution 修匀分布
+smoothed-particle hydrodynamics 缩写:SPH。平滑质点流体动力学
+smoothing 平滑; 修匀
+smoothing effect 平滑效应
+smoothing kernel 平滑核
+snapshot 快照
+sneutrino 标量中微子
+snooper satellite 间谍卫星
+snow-plow model 雪耙模型
+snowplow phase 雪耙相
+sodium 缩写:Na。钠
+sodium guide star 钠引导星
+sodium vapour lamp 钠蒸气灯
+sodium-iodide detector 缩写:NaI detector。碘化钠探测器
+soft X-ray background 软X射线背景
+soft X-ray object 软X射线天体
+soft X-ray repeater 缩写:SXR。软X射线再现源
+soft X-ray source 软X射线源
+soft X-ray transient 缩写:SXT。软X射线暂现源
+soft binary 软双星
+soft gamma repeater 缩写:SGR。软γ射线复现源
+soft phase 缓变阶段
+soft supersymmetry breaking 软超对称破缺
+soft ware 软件
+soft γ-ray burst repeater 软γ射线暴再现源
+soft γ-ray repeater 缩写:SGR。软γ射线复现源
+soft γ-ray source 软γ射线源
+soft γ-ray transient 缩写:SGT。软γ射线暂现源
+soften gravity 软化引力
+softened point-mass potential 软化点质量势
+softening in N-body simulations N体数值模拟中的软化
+softening length 软化长度
+softening parameter 软化参数
+software radio telescope 软件式射电望远镜
+sol 火星日
+solar X-ray burst 太阳X射线暴
+solar X-ray emission 太阳X射线发射
+solar X-ray imaging 太阳X射线成像
+solar X-ray imaging telescope 太阳X射线成像望远镜
+solar X-ray irradiance 太阳X射线辐照度
+solar X-ray radiation 太阳X射线辐射
+solar active region 太阳活动区
+solar activity 太阳活动
+solar activity cycle 太阳活动周
+solar activity prediction 太阳活动预报
+solar air mass 太阳大气质量
+solar analog 太阳型恒星
+solar annual tide 太阳周年潮
+solar antapex 太阳背点
+solar apex 太阳向点
+solar atlas 太阳图
+solar atmosphere 太阳大气
+solar battery 太阳能电池
+solar breeze 微太阳风
+solar burst 太阳暴
+solar calendar 阳历
+solar cell 太阳能电池
+solar cell paddle 太阳能电池叶片
+solar chromosphere 太阳色球
+solar constant 太阳常数
+solar continuum emission 太阳连续谱发射
+solar corona 日冕
+solar coronal hole 冕洞
+solar coronal loop 冕环
+solar cosmic rays 太阳宇宙线
+solar cycle 太阳活动周
+solar day 太阳日
+solar diagonal 太阳棱镜观测镜
+solar disk 太阳圆面; 日面
+solar distance 太阳距离
+solar disturbance 太阳扰动
+solar dynamo 太阳发电机
+solar eclipse 日食
+solar eclipse expedition 日食观测队
+solar eclipse limit 日食限
+solar ecliptic limit 日食限
+solar electron event 太阳电子事件
+solar energetic particle 缩写:SEP。太阳高能粒子
+solar energy 太阳能
+solar energy panel 太阳能板
+solar equation 日躔
+solar eruption 太阳爆发
+solar extreme-ultraviolet burst 太阳极紫外暴
+solar eyepiece 太阳目镜
+solar facula 太阳光斑
+solar filament 太阳暗条
+solar filtergram 太阳单色像
+solar flare 太阳耀斑
+solar flare effect 耀斑效应
+solar flocculus 太阳谱斑
+solar flux 太阳流量
+solar flux unit 缩写:SFU。太阳流量单位
+solar gale 太阳风暴
+solar global parameter 太阳全球参数
+solar granulation 太阳米粒组织
+solar hard X-ray burst 太阳硬X射线暴
+solar hour 太阳小时
+solar impulsive X-ray burst 太阳脉冲式X射线暴
+solar infrared radiation 太阳红外辐射
+solar interior 太阳内部
+solar irradiance 太阳辐照度
+solar irradiation 太阳辐照
+solar latitude 日面纬度
+solar limb 日面边缘
+solar local radio source 太阳局部射电源
+solar longitude 太阳经度
+solar loop 太阳环状物
+solar luminosity 太阳光度
+solar magnetic circle 太阳磁圈
+solar magnetic cycle 太阳磁周
+solar magnetic field 太阳磁场
+solar magnetism 太阳磁性; 太阳磁学
+solar magnetograph 太阳磁像仪
+solar magnetogrph 太阳磁象仪
+solar mass 太阳质量
+solar maximum year 缩写:SMY。太阳峰年
+solar microwave burst 太阳微波暴
+solar modulation 太阳调制
+solar month 太阳月
+solar motion 太阳运动
+solar mottle 日芒
+solar nebula 太阳星云
+solar neighbourhood 太阳附近空间
+solar neutrino 太阳中微子
+solar neutrino deficit 太阳中微子亏缺
+solar neutrino flux 太阳中微子流量
+solar neutrino problem 太阳中微子问题
+solar neutrino unit 缩写:SNU。太阳中微子单位
+solar noise 太阳噪声
+solar nutation 太阳章动
+solar oblateness 太阳扁度
+solar observation 太阳观测
+solar optical telescope 太阳光学望远镜
+solar orbit telescope 环日轨道望远镜
+solar oscillation 太阳振荡
+solar outburst 太阳大爆发
+solar paddle 太阳能电池叶片
+solar panel 太阳能电池板
+solar parallax 太阳视差
+solar patrol 太阳巡视
+solar phase angle 日地张角
+solar photosphere 太阳光球
+solar physics 太阳物理学
+solar polar wind 极区太阳风
+solar probe 太阳探测器
+solar prominence 日珥
+solar proton event 太阳质子事件
+solar proton flux 太阳质子流量
+solar pulsation 太阳脉动
+solar radiation 太阳辐射
+solar radiation pressure 太阳辐射压
+solar radio astronomy 太阳射电天文
+solar radio burst 太阳射电暴
+solar radio dynamic spectrograph 太阳射电动态频谱仪
+solar radio radiation 太阳射电
+solar radius 太阳半径
+solar ring 环式日晷
+solar rotation 太阳自转
+solar seeing monitor 太阳视宁度监测仪
+solar semi-diurnal tide 太阳半日潮
+solar service 太阳服务
+solar soft X-ray burst 太阳软X射线暴
+solar space vehicle 人造太阳行星
+solar spectrograph 太阳摄谱仪
+solar spectrum 太阳光谱
+solar spicule 太阳针状体
+solar spot 太阳黑子
+solar spot prominence 太阳黑子日珥
+solar star 太阳型恒星
+solar storm 太阳风暴
+solar system 太阳系
+solar system object 太阳系天体
+solar telescope 太阳望远镜
+solar term 节气
+solar tidal wave 日潮波
+solar tide 日潮
+solar time 太阳时
+solar tower 太阳塔
+solar transition region 太阳过渡区
+solar ultraviolet imaging telescope 太阳紫外成像望远镜
+solar ultraviolet radiation 太阳紫外辐射
+solar unit 太阳单位
+solar wind 太阳风
+solar wind boundary 太阳风边界
+solar year 太阳年
+solar γ-ray burst 太阳γ射线暴
+solar γ-ray emission 太阳γ射线发射
+solar γ-ray radiation 太阳γ射线辐射
+solar-blind detector 日盲探测器
+solar-interplanetary magnetic loop 太阳-行星际磁环
+solar-like oscillation 类太阳振荡
+solar-like star 类太阳恒星
+solar-mass star 太阳质量恒星
+solar-terrestrial environment 日地环境
+solar-terrestrial phenomenon 日地现象
+solar-terrestrial physics 日地物理
+solar-terrestrial relation 日地关系
+solar-terrestrial relationship 日地关系
+solar-terrestrial space 日地空间
+solar-terrestrial space physics 日地空间物理
+solar-type star 太阳型恒星
+solarization 负感现象
+solarized image 光致负感像
+solid angle 立体角
+solid body 固体
+solid earth 固体地球
+solid tide 固体潮
+solid-body rotation 固体自转
+solid-state X-ray detector 固体X射线探测器
+solid-state detector 固体探测器
+solid-state diode array 固体二极管阵
+solid-state imaging detector 固体成像探测器
+solid-state laser 固体激光器
+solid-state γ-ray detector 固体γ射线探测器
+solitary 孤子性
+solitary kinetic Alfven wave 动理学阿尔文孤波
+solitary wave 孤子波
+soliton 孤立子
+soliton star 孤子星
+solstices 二至点; 二至日
+solstitial colure 1、二至圈; 2、二至圈
+solstitial points 二至点; 二至日
+solve-for parameter 待估参数
+sonde 探测器
+sonic radius 声半径
+sonic surface 声表面
+sound absorption 声吸收
+sound horizon 声波视界
+sound velocity 声速
+sound wave 声波
+sound-emitting fireball 发声火流星
+sounding balloon 探空气球
+sounding rocket 探空火箭
+source 源
+source brightness 源亮度
+source brightness distribution 源亮度分布
+source count 源计数
+source counting 源计数
+source function 源函数
+source identification 源证认
+source model fitting 源模型拟合
+source of energy 能源
+source peeling 剥源
+source place 源位置
+source position 源位置
+source restoration 复源法
+source shape 源形状
+source structure 源结构
+source subtraction 减源法
+source survey 源巡天
+source-size effect 源大小效应
+south 南
+south celestial pole 南天极
+south ecliptic pole 南黄极
+south equatorial belt 缩写:SEB。南赤道带
+south following star 东南星
+south frigid zone 南寒带
+south point 南点
+south polar distance 南极距
+south pole 南极
+south preceding star 西南星
+south south temperate belt 1、缩写:SSTB。南南温带; 2、缩写:STB。南温带
+south temperate zone 南温带
+south tropical zone 南热带
+south-bound node 降交点
+south-north asymmetry 南北不对称性
+southern celestial hemisphere 南天[区]
+southern elongation 南大距
+southern galaxy 南天星系
+southern hemisphere 缩写:SH。南半球
+southern latitude 南纬
+southern light 南极光
+southern limit 南界限
+southern limit of eclipse 南食限
+southern polarity 南极性
+southern reference star catalogue 缩写:SRS catalogue。南天参考星表
+southern sky 南天[区]
+southern star 南天恒星
+southing 南向纬度差
+space VLBI 空间甚长基线干涉测量
+space absorption 空间吸收
+space aeronautics 航天学
+space age 空间时代; 太空时代
+space astrometry 空间天体测量学
+space astronomy 空间天文学
+space astrophysics 空间天体物理
+space biology 空间生物学
+space charge 空间电荷
+space charge wave 空间电荷波
+space concentration 空间聚度
+space debris 太空垃圾
+space density 空间密度
+space density profile 空间密度轮廓
+space distribution 空间分布
+space dynamics 空间动力学
+space engineering 太空工程
+space environment 空间环境
+space exploration 空间探测
+space flight 航天; 太空飞行
+space geodesy 空间大地测量
+space geodynamics 空间地球动力学
+space image 立体像
+space instrumentation 航天设备
+space inversion 空间反演
+space mission 航天任务
+space motion 空间运动
+space observation 空间观测
+space observatory 空间天文台
+space of constant curvature 常曲率空间
+space particle 空间粒子; 太空粒子
+space photography 太空照相
+space pollution 太空污染
+space probe 空间探测器
+space probe instrument 空间飞船运载仪器
+space quantization 空间量子化
+space radio astrometry 空间射电天体测量
+space radio astronomy 空间射电天文
+space reddening 空间红化
+space research 空间研究
+space science 空间科学
+space ship 太空船
+space shuttle 航天飞机
+space station 空间站
+space suit 太空服
+space technology 空间技术
+space telescope 空间望远镜
+space transportation system 航天运输系统
+space transporter 航天运载工具
+space vehicle 航天器
+space velocity 空间速度
+space weather 空间天气
+space-air vehicle 空天飞机
+space-based interferometer 空基干涉仪
+space-based observation 空基观测
+space-based telescope 空基望远镜
+space-fixed coordinate system 空固坐标系
+space-time curvature 时空曲率
+spacecraft 太空飞行器; 宇宙飞船; 航天器
+spacecraft astronomy 宇宙飞船天文学
+spaced antennas 间隔天线阵
+spaced array 间隔天线阵
+spacelike 类空的
+spacelike infinity 类空无限远
+spacelike interval 类空间隔
+spacelike path 类空路径
+spacelike separation 类空分隔
+spacetime 时空
+spacetime continuum 时空连续统
+spacetime metric 时空度规
+spacetime singularity 时空奇点
+spacetime wave 时空波
+spacewalk 太空行走
+spacing 间距
+spacing interval 间距
+spaghettification 拉面效应
+spallation 散裂
+spallation cross-section 散裂截面
+spar 多筒望远镜; 组合太阳望远镜
+spark chamber 火花室
+spark line 电花谱线
+spark spectrum 电花光谱
+sparse aperture 稀疏孔径
+sparse aperture masking 稀疏孔径掩模法
+spatial angle 立体角
+spatial brightness 空间亮度
+spatial coherence 空间相干性
+spatial correlation function 空间相关函数
+spatial dispersion 空间弥散
+spatial distribution 空间分布
+spatial domain 空间域
+spatial filter 空间滤波器
+spatial filtering 空间滤波
+spatial frequency 空间频率
+spatial frequency characteristic 空间频率特征
+spatial mass segregation 空间质量分层
+spatial motion 空间运动
+spatial resolution 空间分辨率
+spatial spectrum 空间谱
+spatial strain 空间应变
+spatial structure 空间结构
+spatial velocity 空间速度
+spatially closed metric 空间闭合度规
+spatially open metric 空间开放度规
+spatiography 空间测量学
+special color-index 特殊色指数
+special coordinate 特殊坐标
+special maximum resolution emulsion 特高分辨率乳胶
+special perturbation 特殊摄动
+special relativity 狭义相对论
+specific angular momentum 比角动量
+specific enthalpy 比焓
+specific flux 流量比
+specific gravity 比重
+specific heat 比热
+specific impulse 比冲量
+specific intensity 比强度
+specific intensity of radiation 比辐射强度
+specific internal energy 比内能
+specific moment 比矩
+specific pressure 比压
+specific star-formation rate 缩写:sSFR。比恒星形成率
+specific thrust 比推力
+specific weight 比重
+speckle 斑点
+speckle camera 斑点照相机
+speckle imaging 斑点成像法
+speckle interferometer 斑点干涉仪
+speckle interferometry 斑点干涉测量
+speckle masking 斑点掩模
+speckle pattern 斑点图样
+speckle photometry 斑点测光
+speckle spectroscopy 斑点分光
+speckle technique 斑点技术
+specklogram 斑点干涉像
+spectra-spectroheliograph 太阳光谱单色光照相仪
+spectra-spectroheliography 太阳光谱单色光照相术
+spectracon 光谱摄像管
+spectral albedo 分光反照率
+spectral analysis 光谱分析; 波谱分析; 谱分析
+spectral analyzer 频谱分析仪
+spectral band 谱带
+spectral calibration lamp 光谱定标灯
+spectral catalogue 光谱表
+spectral class 光谱型
+spectral classification 光谱分类
+spectral comparator 比长仪
+spectral continuum 连续谱区
+spectral cutoff 谱截断
+spectral density 谱密度
+spectral distribution 谱分布
+spectral duplicity 光谱成双性
+spectral energy distribution 缩写:SED。光谱能量分布; 能谱分布
+spectral estimate 频谱估计
+spectral flux density 谱流量密度
+spectral folding 谱折叠
+spectral function 谱函数
+spectral index 谱指数
+spectral intensity 谱强度
+spectral irradiation 谱照度
+spectral line 谱线
+spectral line absorption 谱线吸收
+spectral line broadening 谱线展宽
+spectral line correlation 谱线相关
+spectral line emission 谱线发射
+spectral line formation 谱线形成
+spectral line narrowing 谱线变窄
+spectral line receiver 谱线接收机
+spectral line shift 谱线位移
+spectral line source 谱线发射源
+spectral line splitting 谱线分裂
+spectral line width 谱线宽度
+spectral moment 谱矩
+spectral parameter 谱参数
+spectral power 谱功率
+spectral power spectrum 谱功率谱
+spectral purity 光谱纯度
+spectral range 光谱范围
+spectral region 1、光谱区; 2、频谱区
+spectral resolution 谱分辨率
+spectral resolving power 谱分辨本领
+spectral response 1、光谱响应; 2、频谱响应
+spectral selectivity 1、光谱选择性; 2、频谱选择性
+spectral sensitivity 分光敏度
+spectral sensitometry 分光敏度测量
+spectral sequence 光谱序
+spectral series 光谱线系
+spectral synthesis modeling 光谱合成模型
+spectral term 光谱项
+spectral tilt 光谱倾斜
+spectral transmission 分光透射
+spectral type 光谱型
+spectral window 频谱窗
+spectral-density model 谱密度模型
+spectro-enregistreur des vitesses 分光速度记录仪
+spectrobologram 分光测热图
+spectrobolometer 分光测热计
+spectrocomparator 比长仪
+spectrogram 1、光谱图; 2、频谱图
+spectrograph 1、摄谱仪; 2、频谱仪
+spectrographic orbit 摄谱轨道; 摄谱解
+spectrography 摄谱
+spectrohelio-cinematograph 太阳分色电影仪
+spectroheliogram 太阳单色像
+spectroheliograph 太阳单色光照相仪
+spectroheliography 缩写:SHG。太阳单色光照相术
+spectrohelioimaging 太阳分光成像
+spectrohelioscope 太阳单色光观测镜
+spectrohelioscopy 太阳分光
+spectrometer 1、分光仪; 2、频谱仪
+spectrometry 分光测量
+spectrophotograph 分光光度照相仪
+spectrophotography 分光光度照相
+spectrophotometer 分光光度仪
+spectrophotometric gradient 分光光度梯度
+spectrophotometric standard star 分光光度标准星
+spectrophotometric temperature 分光光度温度
+spectrophotometry 分光光度测量
+spectropolarimeter 分光偏振计; 偏振频谱仪
+spectropolarimetry 分光偏振测量
+spectroprojector 光谱投影仪
+spectropyrheliometer 太阳分光测热计
+spectropyrheliometry 太阳分光测热法
+spectroradiometer 分光辐射计
+spectroradiometry 分光辐射测量
+spectroscope 分光镜
+spectroscopic analysis 分光分析
+spectroscopic binary 缩写:SB。分光双星
+spectroscopic distance 分光距离
+spectroscopic element 分光根数
+spectroscopic luminosity 分光光度
+spectroscopic orbit 1、分光解; 2、分光轨道
+spectroscopic parallax 分光视差
+spectroscopic period 分光周期
+spectroscopic redshift 光谱红移
+spectroscopy 1、光谱学; 2、频谱学
+spectrosensitometer 分光感光计
+spectrosensitometry 分光感光测量
+spectrum 1、光谱; 2、频谱
+spectrum analysis 1、光谱分析; 波谱分析; 谱分析; 2、频谱分析
+spectrum analyzer 频谱分析器
+spectrum binary 光谱双星
+spectrum degradation 能谱软化
+spectrum distribution 谱分布
+spectrum expander 频谱展宽器
+spectrum field 谱场
+spectrum index 谱指数
+spectrum intensity 频谱强度
+spectrum line 谱线
+spectrum of turbulence 湍谱
+spectrum renormalization 频谱重正化
+spectrum scanner 光谱扫描仪
+spectrum scanning 光谱扫描
+spectrum variable 光谱变星
+spectrum window 频谱窗
+spectrum-density diagram 光谱-密度图
+spectrum-luminosity diagram 光谱-光度图
+spectrum-rate of variation relation 光谱-光变率关系
+specular density 定向密度
+specular reflection 单向反射; 镜反射
+specular reflector 单向反射器
+speculum 镜齐; 镜用合金
+speculum metal 镜用金属
+speed of light 光速
+speed of light circle 光速圈
+speed of photographic plate 照相底片感光速度
+speed of rotation of the ecliptic 黄道回转速度
+speed of sound 声速
+sphaleron 错子
+sphere of Edoxus 埃多克斯球
+sphere of action 作用范围
+sphere of activity 作用范围
+sphere of gravity 重力范围
+sphere of influence 作用范围
+spherical aberration 缩写:SA。球差
+spherical accretion 球对称吸积
+spherical albedo 球面反照率
+spherical angle 球面角
+spherical antenna 球面天线
+spherical astronomy 球面天文学
+spherical collapse 球形坍缩
+spherical component 球状子系
+spherical coordinate 球坐标
+spherical distribution 球面分布
+spherical excess 球面角超
+spherical function 球函数
+spherical galaxy 球状星系
+spherical harmonic expansion 球谐展开
+spherical harmonic oscillator 球谐振荡
+spherical harmonics 球谐函数
+spherical indicatrix of scattering 球面散射指示量
+spherical lens 球面透镜
+spherical meniscus 球面弯月镜
+spherical mirror 球面镜
+spherical model 球状模型
+spherical model of gravitational collapse 引力坍缩的球形模型
+spherical nebula 球状星云
+spherical reflector 球反射面
+spherical shell 球壳
+spherical space 球空间
+spherical subsystem 球状次系
+spherical triangle 球面三角形
+spherical trigonometry 球面三角学
+spherical wave 球面波
+spheroid of revolution 旋转椭球
+spheroidal coordinate 椭球坐标
+spheroidal dwarf galaxy 缩写:dSph。矮椭球星系
+spheroidal galaxy 椭球星系
+spherometer 球径计; 球面曲率计
+spherule 小球体
+spicule 针状体; 针状物
+spider 网支架
+spider diffraction 网架衍射
+spike burst 尖峰暴
+spillover 漏失
+spillover radiation 漏失辐射
+spin 自旋; 旋转
+spin axis 自旋轴; 自转轴
+spin casting 自旋印模
+spin evolution 自旋演化
+spin phase 自旋相位
+spin precession 自转轴进动
+spin temperature 自旋温度
+spin-down 自旋减慢
+spin-flip collision 自旋翻转碰撞
+spin-flip transition 自旋翻转跃迁
+spin-orbit coupling 轨旋耦合
+spin-orbit resonance 轨旋共振
+spin-orbit transition 轨旋跃迁
+spin-spin coupling 旋旋耦合
+spin-up 自旋加快
+spinar 磁旋体
+spindle nebula 纺锤星云
+spindle-shaped meteor 纺锤状流星
+spinel 尖晶石
+spinelle 尖晶石
+spinodal decomposition 旋节线分解
+spinor 旋量
+spiral arm 旋臂
+spiral arm tracer 示臂天体
+spiral feature 旋涡构形
+spiral galaxy 缩写:S galaxy。旋涡星系
+spiral jet 螺旋喷流
+spiral nebula 旋涡星云
+spiral orbit 螺旋轨道
+spiral pattern 旋涡图像
+spiral potential 旋涡势
+spiral structure 旋涡结构
+spiral tracer 旋涡示踪天体
+spirit level 酒精水准器
+splash-down 溅落
+splendid star 景星
+spline fit 样条拟合
+split detector 分离探测器
+splitting 分裂
+sponge topology 海绵状拓扑
+spontaneous emission 自发发射
+spontaneous emission coefficient 自发发射系数
+spontaneous recombination 自发复合
+spontaneous scattering 自发散射
+spontaneous scattering coefficient 自发散射系数
+spontaneous star formation 自发恒星形成
+spontaneous supersymmetry breaking 自发超对称破缺
+spontaneous symmetry breaking 自发对称性破缺
+spontaneous transition 自发跃迁
+sporadic X-ray source 偶现X射线源
+sporadic burst 偶现暴
+sporadic coronal condensation 偶现日冕凝块
+sporadic meteor 偶现流星
+sporadic radio burst 偶现射电暴
+sporadic radio emission 偶现射电
+sporadic radio source 偶现射电源
+sporadic solar X-ray burst 偶现太阳X射线暴
+sporadic solar X-ray emission 偶现太阳X射线发射
+sporadic solar radio burst 偶现太阳射电暴
+sporadic solar radio emission 偶现太阳射电
+sporadic solar γ-ray burst 偶现太阳γ射线暴
+sporadic solar γ-ray emission 偶现太阳γ射线发射
+sporadic γ-ray source 偶现γ射线源
+spot activity 黑子活动
+spot area 黑子区
+spot group 黑子群
+spot number 黑子数
+spot penumbra 黑子半影
+spot umbra 黑子本影
+spotted area 黑子覆盖区
+spotted star 富黑子恒星
+spray 日喷
+spray prominence 喷射日珥
+spread function 扩展函数
+spring 春季
+spring equinox 春分点
+spring tide 大潮
+spur 支; 径; 迹
+spurious disk 虚圆面
+spurious radiation 伪辐射
+sputnik 人造卫星
+sputtering 溅射
+spy satellite 间谍卫星
+square aperture 方孔径
+square degree 平方度
+square signal 方信号
+square wave 方波
+square-law detection 平方律检波
+square-law detector 平方律检波器
+square-shaped array 矩形天线阵
+square-wave modulation 方波调制
+squark 标夸克
+squeezed limit of non-Gaussinity 非高斯性的压缩态极限
+sr 全称:steradian。球面度
+stability 稳定性
+stability criterion 稳定性判据
+stability domian 稳定区域
+stability probability 稳定性概率
+stabilization 稳定化
+stable clustering 稳定成团性
+stable coordinate 稳定坐标
+stable equilibrium 稳定平衡
+stable orbit 稳定轨道
+stable prominence 稳定日珥
+stable region 稳定区域
+stable star 稳定星
+stable state 稳定态
+stage of ionization 电离级
+staircase function 阶梯函数
+standard Cold Dark Matter model 缩写:sCDM model。标准冷暗物质模型
+standard antenna 标准天线
+standard atmosphere 标准大气
+standard candle 标准烛光
+standard coordinate 标准坐标
+standard cosmological model 标准宇宙模型
+standard deviation 缩写:s.d.。标准偏差
+standard earth 缩写:SE。标准地球
+standard epoch 标准历元
+standard error 缩写:s.e.。标准误差
+standard frequency 标准频率
+standard frequency and time signal 缩写:SFTS。标准时频
+standard inflation 标准暴胀
+standard meridian 标准子午线; 标准子午面
+standard model 标准模型
+standard model of cosmology 标准宇宙学模型
+standard model of particle physics 标准粒子物理模型
+standard noon 标准时正午
+standard one-zone model 标准单区模型
+standard rotational-velocity star 自转速度标准星
+standard ruler 标准尺
+standard siren 标准哨音
+standard solar model 缩写:SSM。标准太阳模型
+standard source 校准源; 标准噪声发声器
+standard spheroid 标准旋转椭球
+standard star 标准星
+standard star for photometry 光度标准星
+standard star for radial-velocity 视向速度标准星
+standard star for spectral classification 光谱分类标准星
+standard star for spectrophotometry 分光光度标准星
+standard system 标准系统
+standard time 标准时
+standard time-signal 标准时号
+standard time-zone 标准时区
+standard-velocity star 视向速度标准星
+standardised candle method 标准化烛光法
+standardization 标准化; 正则化
+standing wave 驻波
+standing wave pattern 驻波图案
+standstill 停变期
+star 恒星
+star association 星协
+star atlas 星图集
+star background 恒星背景
+star catalogue 星表
+star chart 星图册
+star cloud 恒星云
+star cluster 星团
+star color 星色
+star complex 恒星复合体
+star count 恒星计数
+star counting 恒星计数
+star density 恒星密度
+star dial 星晷
+star distribution 恒星分布
+star drift 星流
+star evolution 恒星演化
+star finder 寻星镜
+star formation 恒星形成
+star formation history 缩写:SFH。恒星形成历史
+star gauge 恒星计数
+star ghost 恒星鬼像
+star group 恒星群
+star identification 恒星证认
+star identifier 认星器
+star image 星像
+star imaging 恒星成像
+star map 星图
+star motion 恒星运动
+star name 星名
+star navigation 恒星导航
+star nomenclature 恒星命名
+star number 星号; 星数
+star observation platform 观星台
+star origin 恒星起源
+star photometer 恒星光度计
+star photometry 恒星测光
+star place 恒星位置
+star poor region 贫星区
+star portent 星象
+star sensor 星敏感器
+star sight 恒星目测
+star streaming 星流
+star swarm 恒星群
+star system 恒星系统
+star trail 星像迹线
+star-dial time-determining instrument 星晷定时仪
+star-formation activity 产星活动; 恒星形成活动
+star-formation burst 产星暴
+star-formation efficiency 缩写:SFE。产星效率; 恒星形成效率
+star-formation process 产星过程; 恒星形成过程
+star-formation rate 缩写:SFR。产星率; 恒星形成率
+star-formation region 产星区; 恒星形成区
+star-formation threshold 恒星形成阈值
+star-forming galaxy 产星星系
+star-forming nebula 产星星云
+star-forming phase 产星阶段
+star-forming region 产星区; 恒星形成区
+star-like infrared object 类星红外天体
+star-like nucleus 类星星系核
+star-like object 类星天体
+star-like optical object 类星光学天体
+star-like radio object 类星射电天体
+star-like remnant 星状遗迹
+star-mass object 恒星质量天体
+star-pair method 星对法
+star-producing region 产星区; 恒星形成区
+starbirth activity 恒星诞生活动
+starburst 星暴
+starburst galaxy 星暴星系
+starburst nucleus 星暴核
+stargazer 天文爱好者
+starhopping 星桥法
+starlight 星光
+starpatch 星斑
+starquake 星震
+starry sky 星空
+starspot 星斑
+starspot cycle 星斑周期
+starting value 初值
+state function 态函数
+state of excitation 激发态
+state of ionization 电离态
+state of matter 物态
+state of polarization 偏振态
+static electric field 静电场
+static limit 静态极限
+static magnetic field 静磁场
+static model 静态模型
+static property 静态性质
+static spherical potential 静态球对称势
+static universe 静态宇宙
+station beam 站集波束
+station coordinate 测站坐标
+station correction 测站改正
+station drift 测站漂移
+station error 测站误差
+stationarity 稳态
+stationary 留
+stationary camera 固定式照相机
+stationary limit 静态极限
+stationary line 无位移谱线
+stationary meteor 驻留流星
+stationary mode 固定式
+stationary model 稳态模型
+stationary phase method 稳相位法
+stationary point 留点
+stationary potential 稳定势
+stationary prominence flare 稳定日珥型耀斑
+stationary radiant 固定辐射点
+stationary random process 平稳随机过程
+stationary satellite 静止卫星
+stationary satellite-camera 固定式人卫照相机
+stationary shell 稳定气壳
+stationary star 稳定星
+stationary state 定态
+stationary time series 平稳时间序列
+stationary wave 驻波
+statistical Fermi process 统计费米过程
+statistical analysis 统计分析
+statistical astronomy 统计天文学
+statistical betatron process 统计感应加速过程
+statistical broadening 统计展宽
+statistical correlation 统计相关
+statistical dependence 统计相关
+statistical distribution 统计分布
+statistical ensemble 统计系综
+statistical equilibrium 统计平衡
+statistical error 统计误差
+statistical estimation 统计性估计
+statistical fluctuation 统计起伏
+statistical orbit-determination 统计定轨
+statistical parallax 平均视差; 统计视差
+statistical weight 统计权
+steadiness 稳定度
+steady field 稳定场; 规则场
+steady motion 稳定运动; 定态运动
+steady spiral pattern 稳态旋涡图案
+steady state 稳恒态
+steady sunspot 稳态黑子
+steady velocity 稳定速度
+steady-state cosmology 稳恒态宇宙学
+steady-state model 稳恒态模型
+steady-state theory 稳恒态学说
+steel-yard clepsydra 秤漏
+steep spectrum 陡谱
+steep-spectrum quasar 陡谱类星体
+steep-spectrum radio quasar 陡谱射电类星体
+steep-spectrum radio source 陡谱射电源
+steep-spectrum source 陡谱源
+steepest descent method 最速下降法
+steerability 可动性
+steerable antenna 可动天线
+steerable radio telescope 可动射电望远镜
+stellar X-ray radiation 恒星X射线辐射
+stellar aberration 恒星光行差
+stellar abundance 恒星元素丰度
+stellar activity 恒星活动
+stellar age 恒星年龄
+stellar aggregate 星集
+stellar aggregation 星集
+stellar angle 非旋转原点时角; 恒星角
+stellar association 星协
+stellar astronomy 恒星天文学
+stellar astrophysics 恒星天体物理
+stellar atlas 星图集
+stellar atmosphere 恒星大气
+stellar birth 恒星诞生
+stellar birthrate 恒星产生率
+stellar black hole 恒星级黑洞
+stellar brightness 恒星亮度
+stellar cannibalism 恒星吞食
+stellar cataclysm 恒星激变
+stellar catastrophe 恒星灾变
+stellar chain 星链
+stellar chart 星图册
+stellar chromosphere 恒星色球
+stellar classification 恒星分类
+stellar cluster 星团
+stellar collapse 恒星坍缩
+stellar collision 恒星碰撞
+stellar complex 恒星复合体
+stellar component 恒星成分
+stellar constitution 恒星结构
+stellar corona 星冕
+stellar cosmogony 恒星演化学
+stellar diameter 恒星直径
+stellar disk 恒星圆面
+stellar dynamics 恒星动力学
+stellar dynamo 恒星发电机
+stellar eclipse 星食
+stellar embryo 恒星胎; 恒星胚胎
+stellar encounter 恒星交会
+stellar envelope 恒星包层
+stellar environment 恒星环境
+stellar evolution 恒星演化
+stellar evolution chronometer 恒星演化时计
+stellar field 星场
+stellar flare 恒星耀斑
+stellar flat field 恒星平场
+stellar formation 恒星形成
+stellar group 恒星群
+stellar guidance 恒星导航
+stellar halo 恒星晕
+stellar image 星像
+stellar inertial guidance 恒星惯性导航
+stellar infrared radiation 恒星红外辐射
+stellar intensity interferometer 缩写:SII。恒星强度干涉仪
+stellar interferometer 恒星干涉仪
+stellar interferometry 恒星干涉测量
+stellar interior 恒星内部
+stellar interior structure 恒星内部结构
+stellar jet 恒星喷流
+stellar kinematics 恒星运动学
+stellar luminosity 恒星光度
+stellar luminosity class 恒星光度级
+stellar magnetic field 恒星磁场
+stellar magnitude 缩写:mag。星等
+stellar map 星图
+stellar mass 恒星质量
+stellar mass function 缩写:SMF。恒星质量函数
+stellar metallicity 恒星金属丰度
+stellar model 恒星模型
+stellar motion 恒星运动
+stellar nomenclature 恒星命名
+stellar occultation 星掩源
+stellar orbit 恒星轨道
+stellar oscillation 恒星振荡
+stellar parallax 恒星视差
+stellar photometer 恒星光度计
+stellar photometry 恒星测光
+stellar photosphere 恒星光球
+stellar physics 恒星物理学
+stellar polarimeter 恒星偏振计
+stellar polarimetry 恒星偏振测量
+stellar polarization 恒星偏振
+stellar population 星族
+stellar radiation 恒星辐射
+stellar radio astronomy 恒星射电天文学
+stellar radio radiation 恒星射电
+stellar radio source 恒星射电源
+stellar reddening 恒星红化
+stellar reference system 恒星参考系
+stellar remnant 恒星遗迹
+stellar ring 恒星环
+stellar rotation 恒星自转
+stellar seismology 星震学
+stellar spectrograph 恒星摄谱仪
+stellar spectroscope 恒星分光仪
+stellar spectroscopy 恒星光谱学
+stellar spectrum 恒星光谱
+stellar speedometer 恒星视向速度仪
+stellar stability 恒星稳定性
+stellar statistics 恒星统计
+stellar structure 恒星结构
+stellar superwind 超星风
+stellar surface 恒星表面
+stellar system 恒星系统
+stellar temperature 恒星温度
+stellar ultraviolet radiation 恒星紫外辐射
+stellar universe 恒星宇宙
+stellar wind 星风
+stellar γ-ray radiation 恒星γ射线辐射
+stellar-mass black hole 恒星质量黑洞
+stellarator 仿星器
+step by step method 逐步法
+step down 下降
+step length 步长
+step method 光阶法
+step rocket 多级火箭
+step size 步长
+stepped atomic time 缩写:SAT。跳跃原子时
+stepped filter 阶梯滤光片
+stepped sector 阶梯遮光板
+stepped slit 阶梯狭缝
+stepped weakener 阶梯减光板
+stepwise regression 逐步回归
+steradian 缩写:sr。球面度
+stereo-comparator 体视比较仪
+stereogram 球极投影图
+stereographic grid 球极投影格网
+stereographic mapping 球极绘制
+stereographic net 球极投影网
+stereographic projection 球极投影
+stereoscope 体视镜
+stereoscopic observation 体视观测
+stereoscopic photography 体视照相
+stereotelescope 体视望远镜
+stereotheodolite 体视经纬仪
+sterile neutrino 惰性中微子
+sticking coefficient 黏附系数
+stigmatic camera 消像散照相机
+stigmatic optics 消像散光学
+stigmatic spectrograph 消像散摄谱仪
+still image 静止像
+stimulated emission 受激发射
+stimulated radiation 受激辐射
+stochastic acceleration 随机加速
+stochastic bias 随机偏袒
+stochastic dependence 随机相依
+stochastic inflation 随机暴胀
+stochastic orbit 随机轨道
+stochastic plasma heating 随机等离子体加热
+stochastic process 随机过程
+stochastic variable 随机变量
+stony meteorite 石陨星; 石陨石
+stony-iron meteorite 石铁陨星
+stop band 不透射带
+stop-watch 停表
+stopping point 爆炸点
+storage beam tube 束管
+storage bulb 储存泡
+storage capacity 存储容量
+stored energy 储能
+storm burst 噪暴
+storm radiation 噪暴辐射
+straight angle 平角
+straight fan 直扇状流
+straight spectrum 直线谱
+straight tail 直彗尾
+straight wall 竖墙
+strain 应变
+strain tensor 应变张量
+strainmeter 应变计
+strange attractor 奇引源
+strange particle 奇异粒子
+strange star 奇异星
+strangeness 奇异性
+strangeness number 奇异数
+stratification 层化
+stratified rock 层状岩
+stratigraphy 地层学
+straton 层子
+stratopause 平流层顶
+stratosphere 平流层
+stratospheric telescope 平流层望远镜
+stratus cloud 层云
+stray 天电
+stray factor 杂散因子
+stray field 杂散场
+stray light 杂散光
+streak photography 条层照相
+streamer 冕流; 流线; 流光
+streaming flow 流注流
+streaming instability 冲流不稳定性
+streaming motion 流注运动
+streamline 冕流; 流线
+strehl raio 斯特列尔比
+strength 强度
+strengthening 强化
+stress 应力
+stress distribution 应力分布
+stress strain relation 应力应变关系
+stress tensor 应力张量
+stressed Ge:Ga infrared array 应力型锗掺镓红外面阵
+stretching force 张力
+strewn field 散播场
+striding level 跨水准
+strike 走向
+string cosmology 弦宇宙学
+string network 弦网络
+string scale 弦标度
+string spacetime 弦时空
+string theory 弦论
+string-dominated universe 弦主导的宇宙
+strip brightness 带亮度
+strip chart 带状图
+strip-chart recorder 纸带记录仪
+stripped nucleus 裸核
+stripped plasma 全电离等离子体
+stripscan 带状扫描
+stroboscope 闪光仪
+strong Jeans theorem 强金斯定理
+strong burst 强暴
+strong correlation 强相关
+strong encounter 强交会
+strong energy condition 强能量条件
+strong equivalence principle 强等效原理
+strong force field 强力场
+strong gravitational lensing 强引力透镜
+strong interaction 强相互作用
+strong nuclear interaction 强核相互作用
+strong source 强源
+strong stability 强稳定性
+strong turbulence 强湍动
+strontium 缩写:Sr。锶
+strontium age-dating 锶测年
+strontium method 锶测年法
+strontium star 锶星
+structural geology 构造地质学
+structure formation 结构形成
+structure formation problem 结构形成问题
+sub-DLAs 全称:sub-damped Lyα system。亚阻尼莱曼α系统
+sub-arcsecond radio astronomy 亚角秒射电天文学
+sub-damped Lyα system 缩写:sub-DLAs。亚阻尼莱曼α系统
+sub-horizon evolution 亚视界演化
+subaperture 子孔径
+subastral point 星下点
+subatomic particle 亚原子粒子
+subaurural latitude 极光下点纬度
+subband 次能带
+subcategory 子范畴
+subcenter 副中心; 子中心
+subclass 次型
+subcluster 次团
+subclustering 次成团
+subcondensation 子凝聚物
+subdwarf 亚矮星
+subdwarf B star B型亚矮星
+subdwarf O star O型亚矮星
+subdwarf sequence 亚矮星序
+subflare 亚耀斑
+subflare kernel 亚耀斑核
+subgiant 亚巨星
+subgiant branch 缩写:SGB。亚巨星支
+subgiant spiral galaxy 亚巨旋涡星系
+subgroup 子群
+subhalo 子晕
+subhalo mass function 子晕质量函数
+subharmonic 副谐波
+subjective catalog 主观星表
+sublimation 升华
+subluminous star 亚光度恒星
+sublunar point 月下点
+submanifold 子流形
+submarine relief 海底起伏
+submarine ridge 海脊
+submarine structure 海底结构
+submarine trench 海沟
+submarine valley 海谷
+submarine volcano 海底火山
+submicroscopic particle 亚微观粒子
+submilli-arc-second astrometry 亚毫角秒天体测量
+submilli-arc-second optical astrometry 亚毫角秒光学天体测量
+submilli-arc-second radio astrometry 亚毫角秒射电天体测量
+submillimeter astronomy 亚毫米波天文学
+submillimeter blackground 亚毫米波背景
+submillimeter galaxy 缩写:SMG。亚毫米波星系
+submillimeter observatory 亚毫米波天文台
+submillimeter photometry 亚毫米波测光
+submillimeter radio astronomy 亚毫米波射电天文学
+submillimeter source 亚毫米波源
+submillimeter space astronomy 亚毫米波空间天文学
+submillimeter wave 亚毫米波
+submillimeter-wave astronomy 亚毫米波天文学
+submillimetre astronomy 亚毫米波天文学
+submillisecond optical pulsar 亚毫秒光学脉冲星
+submillisecond pulsar 亚毫秒脉冲星
+submodulator 副调制器
+suboceanic structure 洋底结构
+subordinate line 辅线
+subpoint 下点
+subpulse 次脉冲
+subradar point 雷达下点
+subreflector 副反射面
+subroutine 子例程
+subsatellite 子卫星
+subsatellite point 卫星下点
+subscript 下标
+subsolar point 日下点
+subsolar point altitude 日下点高度
+subsolar point temperature 日下点温度
+subspace 子空间
+substellar companion 亚恒星伴星
+substellar object 亚恒星天体
+substellar point 星下点
+substellar system 亚恒星系
+substellar transition zone 缩写:STZ。亚恒星过渡区
+substile 日晷指针方向线
+substorm 亚暴
+substructure 子结构
+substyle 日晷指针方向线
+subsynchronism 亚同步
+subsynchronous rotation 亚同步自转
+subsystem 次系
+subtracting double-pass spectrograph 相减式双通摄谱仪
+subtype 次型
+successive approximation 逐次近似法
+successive consequent 后继点系列
+sudden cosmic noise absorption 缩写:SCNA。宇宙噪声突降
+sudden disappearance of filament 暗条突逝
+sudden enhancement of atmospherics 缩写:SEA。天电突增
+sudden field anomaly 缩写:SFA。场强突异
+sudden frequency drift 缩写:SFD。频率突漂
+sudden ionospheric disturbance 缩写:SID。电离层突扰
+sudden magnetic disturbance 缩写:SMD。急始磁扰
+sudden phase anomaly 缩写:SPA。位相突异
+sudden production 突然产生
+sudden short-wave fade-out 缩写:SSWF。短波突衰
+sulcus 皱沟
+sulfur dioxide 二氧化硫
+sulfur monoxide 一氧化硫
+sulfur/sulphur 缩写:S。硫
+sulphuric acid 硫酸
+sum-over-history 对历史求和
+summation convention 求和约定
+summer 夏
+summer solstice 夏至点
+summer time 缩写:DST。夏令时
+sun 太阳
+sun's latitude 日面纬度
+sun's longitute 日面经度
+sun-weather relationship 太阳-天气关系
+sundial 日晷
+sundog 幻日
+sungrazer 掠日彗星; 掠日天体
+sungrazing comet 掠日彗星
+sunlight 日光
+sunlit aurora 日耀极光
+sunlit surface 日耀表面
+sunpillar 日柱
+sunrise 日出
+sunrise terminator 日出明暗界
+sunseeker 寻日器
+sunset 日没
+sunset terminator 日没明暗界
+sunshine 日照
+sunspot 太阳黑子
+sunspot component 黑子分量
+sunspot cycle 黑子周
+sunspot flare 黑子耀斑
+sunspot group 黑子群
+sunspot maximum 黑子极大期
+sunspot minimum 黑子极小期
+sunspot number 黑子数
+sunspot penumbra 黑子半影
+sunspot polarity 黑子极性
+sunspot prominence 黑子日珥
+sunspot radiation 黑子辐射
+sunspot relative number 黑子相对数
+sunspot spectrum 黑子光谱
+sunspot umbra 黑子本影
+sunspot zone 黑子带
+sunspottedness 有黑子态
+sunward tail 向日彗尾
+super energetic stellar explosion 超大能量恒星爆发
+super resonance region 超级共振区
+super star cluster 超星团
+super-Chandrasekhar model 超钱德拉塞卡模型
+super-Eddington accretion 超爱丁顿吸积
+super-Schmidt 超施密特
+super-Schmidt camera 超施密特照相机
+super-Schmidt telescope 超施密特望远镜
+super-achromatic wave-plate 超消色散波片
+super-civilization 超级文明世界
+super-duper supernova 特大超新星
+super-high density 超高密度
+super-horizon perturbation 超视界扰动
+super-horizon solution 超视界解
+super-inflation 超暴胀
+super-metal-poor star 特贫金属星
+super-metal-rich star 特富金属星
+super-relativistic effect 极端相对论性效应
+super-rotation 特快自转
+super-short period Cepheid 超短周期造父变星
+super-supernova 超超新星
+superadiabatic convection 超绝热对流
+superaerodynamics 高空空气动力学
+superassociation 超星协
+superbolide 超火流星
+supercluster 超星系团
+superconducting hot electron bolometer mixer 缩写:HEB mixer。超导HEB混频器
+superconducting quantum interference device 缩写:SQUID。超导量子干涉器件
+superconducting tunnel junction 缩写:STJ。超导隧道结
+superconductive cosmic string 超导宇宙弦
+superconductivity 超导性
+superconductor-insulator-superconductor mixer 缩写:SIS mixer。超导SIS混频器
+supercooling 过冷却
+supercorona 超冕; 超日冕
+superdense star 超密星
+superelastic collision 超弹性碰撞
+superexcitation 超激发
+superfluid 超流体
+superfluid core 超流体核
+superfluid gyroscope 超流回转仪
+superfluidity 超流性
+supergalactic coordinate 超星系坐标
+supergalactic plane 超星系道面
+supergalactic streamer 超星系流状结构
+supergalaxy 超星系
+supergiant 超巨星
+supergiant elliptical 超巨椭圆星系
+supergiant elliptical galaxy 超巨椭圆星系
+supergiant galaxy 超巨星系
+supergiant molecular cloud 缩写:SGMC。超巨分子云
+supergiant radio galaxy 超巨射电星系
+supergiant star 超巨星
+supergranular cell 超米粒元胞
+supergranulation 超米粒组织
+supergranule 超米粒
+supergravity 超引力
+superheavy boson 超重波色子
+superheterodyne receiver 超外差接受机
+superhump 长驼峰
+superhump period 长驼峰周期
+superhumper 长驼峰星
+superionization 超电离
+superior conjunction 上合
+superior eclipse limit 上食限
+superior epoch 上元
+superior planet 外行星
+superior transit 上中天
+superlight source 超光速源
+superluminal illusion 超光速幻觉
+superluminal jet 超光速喷流
+superluminal motion 超光速运动
+superluminal source 超光速源
+superluminous star 超高光度星
+supermagnetosonic turbulent 超磁性声速湍流
+supermagnetosonic wave 超磁性声波
+supermassive black hole 缩写:SMBH。超大质量黑洞
+supermassive rotator 特大质量旋体
+supermassive star 超大质量恒星
+supermaximum 超极大
+supermultiplet 超多重线
+supernova 缩写:SN。超新星
+supernova Hubble diagram 超新星哈勃图
+supernova classification 超新星分类
+supernova ejecta 超新星抛射物
+supernova envelope 超新星包层
+supernova explosion 超新星爆发
+supernova feedback 超新星反馈
+supernova neutrino 超新星中微子
+supernova outburst 超新星爆发
+supernova radio souce 超新星射电源
+supernova rate 超新星频数
+supernova remnant 缩写:SNR。超新星遗迹
+supernova shell 超新星壳层
+supernova shock 超新星激波
+supernova survey 超新星巡天
+supernova-driven wind 超新星驱动的风
+supernova-γ-ray burst connection 超新星-γ暴关联
+superoutburst 长爆发
+superpartner 超对称伙伴
+superpenumbra 超半影
+superpenumbral region 超半影区
+superplanet 超大行星
+superposition 叠置
+superpotential 超势
+supersaturation 过饱和
+supersoft X-ray source 超软X射线源
+supersonic accretion 超声速吸积
+supersonic aerodynamics 超声速气体动力学
+supersonic flow 超声流
+supersonic speed 超声速
+supersonic velocity 超声速
+superstring 超弦
+superstring theory 超弦理论
+supersymmetric particle 超对称粒子
+supersymmetry 超对称
+supersynthesis aperture 超综合孔径
+supervoid 超巨洞
+superwind galaxy 超级风星系
+supplementary angle 补角
+supplementary condition 附加条件
+support 支承
+support mechanism 支承机制
+support system 支承系统
+supporting system 支承系统
+supposed value 假设值
+suppressed-lobe interferometer 抑瓣干涉仪
+suprathermal bremsstrahlung 超热轫致辐射
+suprathermal electron 超热电子
+supra–arcade downflow 缩写:SAD。凌环流
+supreme epoch 太极上元
+supreme ultimate grand origin 太极上元
+surface acoustic wave 表面声波
+surface activity 表面活动
+surface brightness 面亮度
+surface brightness fluctuation 面亮度起伏
+surface brightness method 面亮度法
+surface brightness profile 面亮度轮廓
+surface brightness temperature 面亮度温度
+surface channel CCD 表面型CCD
+surface charge 面电荷
+surface density 面密度
+surface element 面元
+surface error 表面公差
+surface flux 表面流量
+surface gravity 表面重力
+surface of constant geopotential 等重力势面
+surface of discontinuity 间断面; 突变面
+surface of section 截面
+surface of zero velocity 零速度面
+surface photometer 面源光度计
+surface photometry 面源测光
+surface temperature 表面温度
+surface transformation 表面变换
+surface wave 表面波
+surface-brightness fluctuation 面亮度起伏; 表面亮度涨落
+surface-brightness fluctuation technique 面亮度起伏方法
+surge 日浪
+surge prominence 冲浪日珥
+surveillance network 监测台网
+survey 巡天
+survey catalogue 巡天星表
+survey telescope 巡天望远镜
+surveying astronomy 巡天天文
+survivability 存活概率
+suspected nova 疑似新星
+suspected supernova 疑似超新星
+suspected variable 疑似变星
+suspended level 悬水准
+suspended standard instrument 悬正仪
+swan-like structure 天鹅云状结构
+sweep rate 扫描速率
+sweep-frequency receiver 扫频接收机
+sweeping star 扫帚星
+swept charge device 缩写:SCD。扫式电荷器件
+swept-frequency interferometer 扫频干涉仪
+swept-lobe interferometer 扫瓣干涉仪
+swing amplification 摆动放大
+swing-by trajectory 借力飞行弹道
+swinging arc 摆弧
+swinging axis 摆动轴
+swirl 涡流
+switch-off shock 消去激波
+switch-signal generator 开关信号发生器
+switched receiver 开关接收机
+switching time 开关时间
+syclotron radiation 同步加速辐射
+symbiotic Mira 共生刍藁
+symbiotic binary 共生双星
+symbiotic nova 共生新星
+symbiotic recurrent nova 共生再发新星
+symbiotic star 共生星
+symbiotic variable 共生变星
+symmetric top 对称陀螺
+symmetrical mounting 对称型装置
+symmetry 对称
+sympathetic X-ray burst 相应X射线暴
+sympathetic flare 感生耀斑
+sympathetic radio burst 相应射电暴
+sympathetic γ-ray burst 相应γ射线暴
+symplectic group 辛群
+sync pulse 同步脉冲
+synchro-Compton radiation 同步康普顿辐射
+synchro-cyclotron radiation 同步回旋加速辐射
+synchrone 等时线
+synchronism 同步性
+synchronization 同步化
+synchronous detection 同步检测
+synchronous detector 同步检测器
+synchronous emission 同步发射
+synchronous gauge 同步规范
+synchronous observation 同步观测
+synchronous orbit 同步轨道
+synchronous rotation 同步绕转
+synchronous satellite 同步卫星
+synchrotron damping 同步加速阻尼
+synchrotron damping rate 同步加速阻尼速率
+synchrotron emission 同步加速发射
+synchrotron instability 同步加速不稳定性
+synchrotron loss 同步加速耗损
+synchrotron mechanism 同步辐射机制
+synchrotron radiation 同步加速辐射
+synchrotron radiation source 同步加速辐射源
+synchrotron self-absorption 缩写:SSA。同步加速自吸收
+synchrotron source 同步加速辐射源
+synchrotron spectrum 同步加速辐射谱
+syndyname 等力线
+synodic month 朔望月; 太阴月
+synodic motion 会合运动
+synodic period 会合周期
+synodic revolution 会合周
+synodic rotation 会合自转
+synodic rotation number 会合自转周数
+synodic rotation period 会合自转周期
+synodic year 会合年
+synoptic chart 全景图
+synoptic map of the sun 太阳综合图
+synthesis aperture 综合孔径
+synthesis imaging 综合成像
+synthesis map 综合图
+synthesis radio telescope 综合孔径射电望远镜
+synthesis telescope 综合孔径望远镜
+synthesized aperture 综合孔径
+synthesized beam 综合波束
+synthesized pattern 综合方向图
+synthesizer 综合图
+synthetic aperture 综合孔径
+synthetic focal array 焦面综合阵
+synthetic light-curve 综合光变曲线
+synthetic observation 内插同步观测
+synthetic quartz 人造石英
+synthetic spectrum 合成光谱
+synthetic-aperture radar 缩写:SAR。综合孔径雷达
+system noise 系统噪声
+system noise temperature 系统噪声温度
+system of astronomical constants 天文常数系统
+system of coordinate 坐标系
+system of fixed ecliptic 固定黄道坐标系
+system of particles 质点系
+system of rays 辐射纹系统
+system temperature 系统温度
+system Ⅰ longitude 系统Ⅰ经度
+system Ⅱ longitude 系统Ⅱ经度
+system Ⅲ longitude 系统Ⅲ经度
+systematic Fermi process 系统费米过程
+systematic betatron process 系统感应加速过程
+systematic deviation 系统偏差; 系统偏离
+systematic error 系统误差
+systematic velocity 系统速度
+sytall 微晶玻璃
+syzygetic tide 朔望潮
+syzygial tide 朔望潮
+syzygy 朔望
+tSZ effect 全称:thermal Sunyaev Zel'dovich effect。热SZ效应
+table of the moon 月球运动表
+tabular interval 列表间隔
+tachocline 差旋层
+tachyon 快子
+tachyonic field 快子场
+tadpole-shaped curve of zero velocity 蝌蚪形零速度线
+taenite 白沸石
+taikonaut 太空人; 航天员
+tail axis 彗尾轴
+tail band 彗尾谱带
+tail kink 彗尾扭结
+tail knot 彗尾结
+tail of comet 彗尾
+tail of the earth 地尾
+tail radio galaxy 带尾射电星系
+tail ray 彗尾射线
+tail streamer 彗尾流束
+tail-disconnection event 断尾事件
+tangency condition 切向运动条件
+tangent space 切空间
+tangential 子午
+tangential acceleration 切向加速度
+tangential arc 正切弧
+tangential coordinate 切向坐标
+tangential distortion 正切畸变
+tangential force 切向力
+tangential motion 切向运动
+tangential plane 切面
+tangential velocity 切向速度
+tantalum 缩写:Ta。钽
+tape perforator 纸带穿孔机
+tape recorder 磁带记录器
+tapered distribution 锥形分布
+tapering 锥削法
+tapering function 锥形函数
+target particle 靶粒子
+taxonomy 分类学
+teaching in astronomy 天文教学
+tearing mode instability 撕裂模不稳定性
+technetium 缩写:Tc。锝
+technetium line 锝谱线
+technetium star 锝星
+technosignature 技术征迹
+tectogenesis 构造运动
+tectonic crustal phenomenon 地壳构造现象
+tectonics 大地构造学
+tectonism 构造作用
+tectosphere 构造层
+tektite 玻璃陨体
+tele-compressor 缩焦镜
+tele-extender 增焦镜
+tele-stereoscope 体视望远镜
+telecommunication satellite 通信卫星
+telecontrol 遥控
+telemeter 测距仪
+telemetering 遥测
+telemetering monochrometer 遥测单色计
+telemetry 遥测技术
+telemetry frequency band 遥测频带
+teleobjective 望远物镜
+telephone time signal 电话时间信号
+telerecorder 遥测记录仪
+telescope 望远镜
+telescope array 望远镜阵
+telescope construction 望远镜建造
+telescope control system 望远镜控制系统
+telescope design 望远镜设计
+telescope dome 望远镜圆顶
+telescope driving system 望远镜驱动装置
+telescope instrumentation 望远镜附属仪器
+telescope mirror 望远镜镜面
+telescope mounting 望远镜装置
+telescope optical system 望远镜光学系统
+telescope pier 镜墩
+telescope time 望远镜观测时间
+telescope tracking system 望远镜跟踪系统
+telescope tube 镜筒
+telescopic aperture 望远镜孔径
+telescopic astronomy 望远镜天文学
+telescopic comet 望远镜彗星
+telescopic meteor 望远镜流星
+telescopic object 望远镜天体
+telescopic radiant 望远镜辐射点
+telescopic resolution 望远镜分辨率
+telescopic star 望远镜恒星
+telescopy 望远镜学
+teleseism 远震
+television camera 缩写:TV camera。电视照相机
+television detector 电视型探测器
+television guider 缩写:TV guider。电视导星镜
+television guiding 缩写:TV guiding。电视导星
+television synchronizing pulse 电视同步脉冲
+television-type detector 电视型探测器
+television-type sensor 电视型传感器
+telluric band 大气谱带
+telluric contamination 大气谱线混杂
+telluric line 大气谱线
+tellurion 地球仪
+tellurium 缩写:Te。碲
+tellurometer 微波测距仪
+temperate zone 温带
+temperature coefficient 温度系数
+temperature compensation 温度补偿
+temperature control 温度控制
+temperature control equipment 温度控制装置
+temperature distribution 温度分布
+temperature effect 温度效应
+temperature fluctuation 温度起伏
+temperature gradient 温度梯度
+temperature inversion 逆温
+temperature scale 温标
+temperature sequence 温度序
+temperature zone 温度区带
+temperature-spectrum relation 温度-光谱关系
+template 土圭
+template mismatch 模板错配
+tempon 时元
+temporal coherence 时间相干性
+temporal resolution 时间分辨率
+temporary star 暂星
+temporary station 临时台站
+ten-day period 旬
+ten-day star 旬星
+tendex line 蔓延线; 趋向线
+tensile force 张力
+tensor density 张量密度
+tensor fluctuation 张量涨落
+tensor mode 张量模
+tensor perturbation 张量扰动
+tensor virial theorem 张量位力定理
+terbium 缩写:Tb。铽
+term analysis 光谱项分析
+terminal 终端
+terminal synchrone 终端等时线
+terminal-age main-sequence 缩写:TAMS。终龄主序
+termination principle 终止原则
+termination shock 终端激波, 终止激波
+termination shock region 终端激波区, 终止激波区
+terminator 明暗界线
+terra 地; 台地
+terraced wall 台地墙
+terraforming 地球化
+terrence 地表
+terrestrial atmosphere 地球大气
+terrestrial biosphere 地球生物圈
+terrestrial branch 地支
+terrestrial coordinate 地球坐标
+terrestrial coordinate system 地球坐标系
+terrestrial ellipsoid 地球椭球体
+terrestrial exoplanet 系外类地行星
+terrestrial eyepiece 正像目镜
+terrestrial globe 地球
+terrestrial gravitation 地球引力
+terrestrial heat 地热
+terrestrial kilometric radiation 缩写:TKR。地球千米波辐射
+terrestrial latitude 地面纬度
+terrestrial longitude 地面经度
+terrestrial magnetic disturbance 地磁扰动
+terrestrial magnetism 地磁
+terrestrial meridian 地面子午线
+terrestrial parallel 地面纬圈
+terrestrial physics 地球物理学
+terrestrial planet 类地行星
+terrestrial pole 地极
+terrestrial radiation 地球辐射
+terrestrial reference system 地球参考系
+terrestrial refraction 地球大气折射
+terrestrial space 近地空间
+terrestrial telescope 正像望远镜
+terrestrial-mass planet 地球质量行星
+tertiary distance indicator 三级示距天体
+tertiary reflector antenna 三级反射面天线
+tesometer 伸缩仪
+tesselated mirror 镶嵌反射镜
+tesseral harmonic 田谐函数
+test function 测试函数
+test particle 试探粒子
+test star 试验星
+test telescope 选址望远镜
+tetrad 四元基; 四维标架
+texture 纹形
+thalassoid 海; 盆地
+thallium 缩写:Tl。铊
+thallium atomic beam 铊原子束
+thallium detector 铊探测器
+the High Accuracy Radial velocity Planet Searcher 缩写:HARPS。高精度视向速度行星搜索器
+theodolite 经纬仪
+theoretical astronomy 理论天文学
+theoretical astrophysics 理论天体物理学
+theoretical line-profile 谱线理论轮廓
+theoretical parallax 理论视差
+theory of continental drift 大陆漂移说
+theory of cycles 循环理论
+theory of everything 万物理论
+theory of expounding appearance 宣夜说
+theory of expounding appearance in the night sky 宣夜说
+theory of infinite heavens 宣夜说
+theory of isostasy 均衡说
+theory of nucleosynthesis 核合成理论
+theory of probability 概率论
+theory of relativity 相对论
+theory of star-streaming 星流学说
+theory of stellar evolution 恒星演化理论
+theory of terpidation 颤动理论
+thermal Doppler broadening 热多普勒致宽
+thermal Sunyaev Zel'dovich effect 缩写:tSZ effect。热SZ效应
+thermal background 热背景
+thermal background emission 热背景发射
+thermal background radiation 热背景辐射
+thermal black-body radiation 热黑体辐射
+thermal bremsstrahlung 热轫致辐射
+thermal broadening 热致宽
+thermal component 热分量
+thermal composite supernova remnant, mixed-morphology supernova remnant 热混合型超新星遗迹
+thermal conductivity 导热率
+thermal confinement 热约束
+thermal decoupling 热退耦
+thermal diffusion 热扩散
+thermal diffusion timescale 热扩散时标
+thermal distribution 温度分布
+thermal effect 热效应
+thermal emission 热发射
+thermal energy 热能
+thermal energy-density 热能密度
+thermal equilibrium 热平衡
+thermal evolution 热演化
+thermal excitation 热激发
+thermal flexure 热[致]弯曲
+thermal gradient 温度梯度
+thermal history 热史
+thermal inertia 热惯性
+thermal instability 热不稳定性
+thermal ionization 热致电离
+thermal noise 热噪声
+thermal plume 热柱
+thermal pulse 热脉冲
+thermal radiation 热辐射
+thermal radiator 热辐射体
+thermal radio radiation 热射电
+thermal radio wave 热射电波
+thermal scattering 热散射
+thermal source 热源
+thermal spectrum 热谱
+thermal stability 热稳定性
+thermal structure 热结构
+thermal time-scale 热时标
+thermal velocity 热速度
+thermalization 热化
+thermion 热离子
+thermionic emission 热离子发射
+thermistor 热敏电阻
+thermocouple 热电偶
+thermodynamic equilibrium 热动平衡
+thermodynamic function 热力学函数
+thermodynamic potential 热力学势
+thermodynamic temperature-scale 热力学温标
+thermodynamic time-scale 热力学时标
+thermoelectric couple 热电偶
+thermoelectric current 热电流
+thermoelectric effect 热电效应
+thermoelectric generator 热电发生器
+thermoelectric photometer 热电光度计
+thermoelectric power 1、温差电功率; 2、温差电势率
+thermoelectromotive force 温差电动势
+thermoelement 热电偶
+thermohaline convection 温盐合成对流
+thermoluminescence 热致发光
+thermometric scale 温标
+thermonuclear explosion 热核爆发
+thermonuclear flash model 热核闪模型
+thermonuclear reaction 热核反应
+thermonuclear runaway 热核剧涨
+thermopause 热层顶
+thermosphere 热层
+thermostat 恒温器
+theta pinch 角箍缩
+thick CCD 厚型CCD
+thick disk 厚盘
+thick gravitational lense 厚引力透镜
+thick-disk population 厚盘星族
+thick-mirror Schmidt camera 厚反射镜施密特照相机
+thick-target model 厚靶模型
+thin accretion disk 薄吸积盘
+thin disk 薄盘
+thin exponential disk 指数型薄盘
+thin foil mirror 薄箔镜
+thin homoeoid 薄同形体
+thin layer 薄层
+thin track 细径迹
+thin-disk population 盘族; 薄盘族
+thin-screen model 薄屏模型
+thin-target model 薄靶模型
+thinned CCD 薄型CCD
+thioformaldehyde 硫代甲醛
+third contact 生光; 第三切
+third cosmic velocity 第三宇宙速度
+third integral 第三积分
+third light 第三光源
+third quarter 下弦
+third radiation belt 第三辐射带
+tholin 托林
+tholus 山丘
+thorium 缩写:Th。钍
+three luminary set 三辰仪
+three-axial ellipsoid 三轴椭球体
+three-axis mount 三轴装置
+three-axis mounting 三轴装置
+three-body collision 三体碰撞
+three-body problem 三体问题
+three-body recombination 三体复合
+three-color photometry 三色测光
+three-degree Kelvin radiation 3K辐射
+three-degree-Kelvin radiation 三K辐射
+three-dimension classification 三元光谱分类
+three-dimension spectral classification 三元光谱分类
+three-drift hypothesis 三流假说
+three-halves power law 二分之三幂律
+three-hour geomagnetic planetary index 三小时全球地磁指数
+three-kiloparsec arm 三千秒差距臂
+three-mirror anastigmat 缩写:TMA。三反[射镜]消像散系统
+three-phase CCD 三相CCD
+three-point correlation function 三点相关函数
+three-prism spectrograph 三重棱镜摄谱仪
+three-reflector feed system 三反射面馈源系统
+three-satellite constellation 三星星座
+three-way Doppler 三程多普勒
+three-way light time 三程光行时
+threshold 阈
+threshold density 阈密度
+threshold energy 阈能
+threshold of sensitivity 灵敏度阈
+threshold value 阈值
+throughput 透光率
+thrust 推力
+thruster 推进器
+thulium 缩写:Tm。铥
+tidal acceleration 潮汐加速度
+tidal action 潮汐作用
+tidal approximation 潮汐近似
+tidal arm 潮汐臂
+tidal bulge 潮汐隆起
+tidal capture 潮汐俘获
+tidal capture rate 潮汐俘获率
+tidal capture time 潮汐俘获时标
+tidal chart 潮汐图
+tidal deformation 潮汐形变
+tidal disruption 潮汐扰动
+tidal disruption event 缩写:TDE。潮汐瓦解事件
+tidal distortion 潮汐畸变
+tidal disturbance 潮汐扰动
+tidal dwarf galaxy 潮汐矮星系
+tidal effect 潮汐效应
+tidal evolution 潮汐演化
+tidal factor 潮汐因子
+tidal force 引潮力
+tidal friction 潮汐摩擦
+tidal generation force 引潮力
+tidal height 潮高
+tidal hypothesis 潮汐假说
+tidal indicator 示潮器
+tidal instability 潮汐不稳定性
+tidal interaction 潮汐相互作用
+tidal lag 潮滞
+tidal locking 潮汐锁定
+tidal potential 潮汐势
+tidal radius 潮力半径
+tidal range 潮差
+tidal shock 潮汐激波
+tidal station 验潮站
+tidal stream 潮汐流
+tidal stripping 潮汐剥离
+tidal tail 潮尾
+tidal tensor 潮汐张量
+tidal theory 潮汐理论
+tidal torgue 潮汐扭矩
+tidal torque 潮汐力矩
+tidal truncation 潮汐截缩
+tidal wave 潮汐波
+tidal yielding 潮汐屈服
+tide 潮汐
+tide generating potential 引潮势
+tide raising force 引潮力
+tight cluster 紧密星团
+tight-coupling approximation 紧密耦合近似
+tight-coupling limit 紧密耦合极限
+tight-winding approximation 紧卷近似
+tightly coupled solution 紧密耦合解
+tightly wound arm 紧卷旋臂
+tile beam 片集波束
+tilt angle 倾角
+tiltable antenna 倾角可调天线
+tiltable plate radio telescope 带形射电望远镜
+tiltable plate telescope 带形射电望远镜
+tiltmeter 倾斜仪
+time accuracy 时间精度
+time and frequency dissemination 缩写:TFD。时频发播
+time and frequency metrology 时频计量
+time average 时间平均
+time averaging 时间平均
+time axis 时轴
+time chart 时角图
+time coarse check 时间粗校
+time code 时间码
+time comparison 时间比对
+time constant 时间常数
+time correction 时间改正
+time correlation 时间相关
+time curve 时间曲线
+time delay 时延
+time delay in gravitational lensing 引力透镜时延
+time delay relay 时延继电器
+time determination 测时
+time diagram 时间图
+time difference 时间差
+time dilatation 时间变慢
+time dilation 时间延缓
+time dilation effect 时间延缓效应
+time dispersion 时间弥散
+time dissemination 时间发播
+time distribution 时间分布
+time domain 时域
+time duration 持续时间
+time element 时间元素
+time error 时间误差
+time evolution operator 时间演化算子
+time increment 时间增量
+time interval 时段
+time keeper 记时仪
+time lag 时滞
+time mark 时标
+time marker 时号器
+time measurement 时间计量
+time meridian 计时子午圈
+time of coincidence 缩写:TOC。重合时间
+time of exposure 曝光时间
+time of light 光行时间
+time of periastron passage 过近星点时刻
+time of perihelion passage 过近日点时刻
+time of reception 接收时刻
+time of relaxation 弛豫时间
+time of transmission 发播时刻
+time piece 时计
+time prediction 时间预测
+time profile 时间轮廓
+time pulse 时间脉冲
+time receiving 收时
+time reckoning 计时法
+time reference station 时间基准站
+time reflection 时间反演
+time resolution 时间分辨率
+time resolved spectroscopy 时间分辨分光测量
+time response 时间响应
+time reversal 时间反演
+time scale 时标
+time scale coordination 时标协调
+time service 授时; 时间服务
+time signal 时号
+time signal station 时号站
+time standard 时间标准
+time star 时星
+time step 时间跳跃
+time synchronism 时间同步
+time synchronization 时间同步
+time tick 报时信号
+time transfer 时间比对
+time variable 时间变量
+time voice announcement 语言报时
+time zone 时区
+time-base 时基
+time-base instability 时基不稳定性
+time-base stability 时基稳定性
+time-delay integration 缩写:TDI。时延积分
+time-distance helioseismology 时距日震学
+time-keeping 守时
+timelike 类时
+timelike infinity 类时无限远
+timelike path 类时路径
+timelike separation 类时分隔
+timing 计时
+timing age 计时年龄
+timing device 计时装置
+timing equipment 计时仪器
+timing error 计时误差
+timing instrument 计时仪器
+timing system 计时系统
+tin 缩写:Sn。锡
+tincle 粒迹
+tip of the red giant branch 缩写:TRGB。红巨星支上端
+tip-tilt correction 倾斜改正
+tip-tilt mirror 斜置反射镜
+tired light 老化光
+tired-light model 光老化宇宙模型
+titanium 缩写:Ti。钛
+tolerance 容许误差
+tomograph 三维结构图
+tonalpohuali calendar 托纳波胡利历
+toner 调频器; 调色剂
+top hat window function 高帽窗函数
+top layer 顶层
+top-down galaxy formation 自上而下式星系形成
+top-down scenario 自上而下图景
+top-hat filter 高帽滤波器
+topocentric aberration 站心光行差
+topocentric coordinate 站心坐标
+topocentric libration 站心天平动; 站心秤动
+topocentric place 站心位置
+topocentric zenith distance 站心天顶距
+topograph 地形测绘
+topography 地形测量学
+topological defect 拓扑缺陷
+topological space 拓扑空间
+topology of universe 宇宙拓扑
+tornado prominence 龙卷日珥
+toroidal [magnetic] field 环向[磁]场
+toroidal current 环流
+toroidal equilibrium 环体平衡
+toroidal structure 环状结构
+torque 扭矩
+torque force 扭力
+torquetum 赤基黄道仪
+torrid zone 热带
+torsion 扭力
+torsion balance 扭秤
+torsion tensor 挠率张量
+torsional force 扭力
+torsional moment 扭矩
+torsional oscillation 扭转振荡
+torsional pendulum 扭摆
+torus 环面
+torus instability 螺环不稳定性
+total absorption 总吸收
+total absorption coefficient 总吸收系数
+total absorption spectrometer 总吸收分光计
+total acceleration 总加速度
+total amplitude 总变幅; 全振幅
+total angular momentum 总角动量
+total binding energy 总结合能
+total brightness 总亮度
+total cross-section 总截面
+total eclipse 全食
+total eclipse beginning 食既; 全食始
+total eclipse end 全食终
+total eclipse of the moon 月全食
+total eclipse of the sun 日全食
+total energy 总能量
+total flux 总流量
+total half-width 全半宽
+total heat 热函
+total lunar eclipse 月全食
+total magnitude 总星等
+total number density 总数密度
+total pressure 总压力
+total proper-motion 总自行
+total quantum number 总量子数
+total radiation 总辐射
+total reflection 全反射
+total reflection prism 全反射棱镜
+total scattering 总散射
+total sky brightness 全天亮度
+total solar eclipse 日全食
+total solar radiation 太阳总辐射
+total starlight 全天星光
+total visual magnitude 目视总星等
+total-annular eclipse 全环食
+total-power receiver 总功率接收机
+total-power telescope 总功率望远镜
+totality 全食
+touchdown 着地
+tower telescope 塔式望远镜
+trace 缩写:Tr。迹
+trace element 示踪元素
+track 跟踪; 轨迹
+tracker 跟踪器
+tracker solution 跟踪解
+tracking 跟踪
+tracking and data-relay satellite system 缩写:TDRSS。跟踪和数据传输卫星系统
+tracking axis 跟踪轴
+tracking camera 跟踪照相机
+tracking counter 跟踪计数器
+tracking error 跟踪误差
+tracking mode 跟踪方式
+tracking power 跟踪本领
+tracking telescope 跟踪望远镜
+tracking velocity 跟踪速度
+traction 牵引
+trade wind 信风
+traditional astronomy 传统天文学
+trailer spot 缩写:f-spot。后随黑子; f黑子
+trailer sunspot 缩写:f-spot。后随黑子; f黑子
+trailing 旋闭
+trailing arm 曳臂
+trailing edge 后边缘
+trailing hemisphere 后随半球
+trailing wave 曳波
+train of waves 波列
+trajectory 轨道; 弹道
+trans-Neptunian object 缩写:TNO。海王星外天体; 海外天体
+trans-Neptunian planet 海王星外行星; 海外行星
+trans-Neptunian space 海外空间
+trans-Pluto 冥外行星
+trans-Plutonian planet 冥外行星
+transducer 转换器
+transfer 转移
+transfer between orbits 轨道转移
+transfer curve 转移曲线
+transfer efficiency 传能效率
+transfer equation 转移方程
+transfer function 转移函数
+transfer orbit 转移轨道
+transference 转移
+transform fault 转换断层
+transformation coefficient 归化系数
+transformation of coordinates 坐标变换
+transient X-ray burst 暂现X射线暴
+transient X-ray burster 暂现X射线暴源
+transient X-ray source 暂现X射线源
+transient event 暂现事件
+transient lunar phenomenon 缩写:TLP。月球暂现现象
+transient perturbation 暂现扰动
+transient spiral pattern 暂现旋涡图案
+transient γ-ray burst 暂现γ射线暴
+transient γ-ray burster 暂现γ射线暴源
+transient γ-ray source 暂现γ射线源
+transit 凌
+transit circle 缩写:MC; TC。子午环
+transit duration 凌星时长
+transit instrument 中星仪
+transit method 凌星方法
+transit of Jovian satellite 木卫凌木
+transit of Jupiter's satellite 木卫凌木
+transit of Mercury 水星凌日
+transit of Venus 金星凌日
+transit of shadow 卫影凌行星
+transit optical telescope 中天光学望远镜
+transit radio telescope 中天射电望远镜
+transit telescope 中天望远镜
+transit time 中天时刻; 渡越时间
+transit time effect 切换时间效应; 渡越时间效应
+transit timing 凌星计时
+transiter 中天记录器
+transiting exoplanet 凌星系外行星
+transiting planet 凌星行星
+transition coefficient 跃迁系数
+transition edge sensor 缩写:TES。超导转换边界传感器
+transition frequency 跃迁频率
+transition probability 跃迁概率
+transition radiation 跃迁辐射
+transition region 过渡区
+transition region line 过渡区谱线
+transitional brown dwarf 缩写:T-BD。过渡型褐矮星
+transitory spiral pattern 暂现旋涡图案
+translation 平移
+translational motion 平移运动
+translational velocity 平移速度
+translocatin 联测定位
+translunar space 月外空间
+translunary orbit 月外轨道
+transmission coefficient 透射系数
+transmission grating 透射光栅
+transmission line 传输线
+transmission loss 传输损耗
+transmission system 传输系统
+transmissivity 透射率
+transmittance 透射比
+transmitting antenna 发射天线
+transparency 透明度
+transparent 透明
+transplanetary space 行星外空间
+transponder 应答器
+transport equation 输运方程
+transport phenomenon 输运现象
+transport process 输运过程
+transpose 转置
+transposition 换置
+transversal filter 横向滤波器
+transversal wave 横波
+transverse Zeeman effect 横向塞曼效应
+transverse component 横向分量
+transverse conductivity 横向传导率
+transverse field 横向磁场; 横场
+transverse heat conduction 横向热传导
+transverse magnetic field 横向磁场; 横场
+transverse parallax screw 横向视差螺旋
+transverse propagation 横向传播
+transverse spherical aberration 横向球面视差
+transverse velocity 横向速度
+transverse wave 横波
+trapeze 经纬度格
+trapped gas 俘获气体
+trapped particle 俘获粒子
+trapped radiation 俘获辐射
+trapped surface 俘获面
+trapping of gas 气体俘获
+trapping of particles 粒子俘获
+trapping of radiation 辐射俘获
+trapping of waves 波俘获
+travel path 传播路径
+travel time 传播时间
+traveling beam tube 行束管
+traveling wave 行波
+traveling wire 动丝
+traveling-wave antenna 行波天线
+traveling-wave maser 缩写:TWM。行波微波激射器
+traveling-wave tube 缩写:TWT。行波管
+treatment of data 数据处理
+tree algorithm 树算法
+tree code 树代码
+tremendous outburst amplitude 巨爆幅
+tremendous outburst amplitude dwarf nova 缩写:TOAD。巨爆幅矮新星
+trench 沟
+tri-dimensional spectroscopy 三维分光
+triad 三元基; 三维标架
+triadic mean 三点平均
+trial curve 试验曲线
+triangular distortion 三角畸变
+triangular point 三角点
+triangulation 三角测量
+triaxial distribution 三轴分布
+triaxial mount 三轴装置
+triaxial mounting 三轴装置
+triaxial system 三轴系统
+triaxiality of elliptical galaxy 椭圆星系三轴性
+triaxiality parameter 三轴性参数
+tridymite 鳞石英
+trigger 触发源; 触发器
+trigger mechanism 触发机制
+trigonal aspect 三分方位
+trigonal point 三分点
+trigonometric parallax 三角视差
+triple asteroid 三合小行星
+triple collision 三体碰撞
+triple correlation 三重相关
+triple galaxy 三重星系
+triple quasar 三合类星体
+triple star 三合星
+triple-alpha process 三α过程
+triple-α process 三α过程
+triplet 1、三合透镜; 2、三重态; 3、三重线
+triplet lens 三合透镜
+tripod 三脚架
+triquetrum 三角仪
+trispectrum 三谱
+tritium 氚
+tritium decay 氚衰变
+triton 氚核
+trivial anthropic principle 平凡人择原理
+troilite 陨硫铁
+tropic 回归线
+tropical century 回归世纪
+tropical month 分至月; 回归月
+tropical revolution 分至周
+tropical year 1、回归年; 2、岁实
+tropical zone 热带
+tropics 热带
+tropopause 对流层顶
+troposphere 对流层
+tropospheric attenuation 对流层衰减
+tropospheric delay 对流层延迟
+tropospheric refraction 对流层折射
+tropospheric refraction correction 对流层折射改正
+true absorption 真吸收
+true absorption coefficient 真吸收系数
+true altitude 真高度
+true anomaly 真近点角
+true continuous absorption 真连续吸收
+true declination 真赤纬
+true diameter 真直径
+true distance 真距离
+true equator 真赤道
+true equinox 真春分点
+true error 真误差
+true field 有效视场
+true horizon 真地平
+true latitude 真纬度
+true libration 真天平动; 真秤动
+true longitude 真经度
+true mean place 真平位置
+true meridian 真子午线; 真子午圈
+true midnight 真子夜
+true modulus 真距离模数
+true motion 真动
+true noon 真正午
+true orbit 真轨道
+true place 真位置
+true pole 真天极
+true position 真位置
+true radiant 真辐射点
+true revolution 真公转周
+true right ascension 真赤经
+true rotation 真自转周
+true selective absorption 真选择吸收
+true semidiameter 真半径
+true sidereal day 真恒星日
+true sidereal time 真恒星时
+true solar day 真太阳日
+true solar time 真太阳时
+true sun 真太阳
+true time 真时
+true vertex 真奔赴点
+true zenith distance 真天顶距
+truncated cone 截锥
+truncated distribution 截尾分布
+truncation error 截断误差
+tube of force 力线管
+tube phenomenon 管筒现象
+tube photometer 管光度计
+tunable filter 可调滤光器
+tunable reflection maser 调谐反射式微波激射器
+tunable traveling-wave maser 可调行波式微波激射器
+tungsten 缩写:W。钨
+tuning fork diagram 音叉图
+tunnel effect 隧道效应
+tunneling 隧[道贯]穿
+turbidity 像晕
+turbopause 湍流层顶
+turbule 湍流元
+turbulence 湍流; 湍动; 湍性
+turbulence broadening 湍流致宽
+turbulence cell 湍流胞
+turbulence element 湍流元
+turbulence heating 湍动致热
+turbulence spectrum 湍动谱
+turbulence theory 湍流理论
+turbulent dynamo 湍流发电机
+turbulent flow 湍流
+turbulent line-width 湍动线宽
+turbulent magnetic field 湍动磁场
+turbulent motion 湍动
+turbulent plasma 湍动等离子体
+turbulent velocity 湍速
+turn off star 拐点恒星
+turn-off age 折向点年龄; 拐点年龄
+turn-off mass 折向点质量; 拐点质量
+turn-off point 折向点; 拐点
+turn-off point from main-sequence 主序折向点; 主序拐点
+turn-over radius 转向点半径
+turnaround 回转; 回缩
+turnaround radius 回缩半径
+turning moment 转矩
+turning point 转向点
+turnstile feed 绕杆式馈源
+turret dome 角塔圆顶
+twelve Jupiter-stations 十二次
+twenty-eight lunar mansions 二十八宿
+twenty-four fortnightly periods 二十四节气
+twenty-four solar terms 二十四节气
+twenty-one centimeter line 21厘米谱线
+twenty-one centimeter radiation 21厘米辐射
+twilight 晨昏蒙影
+twilight brightness 曙暮光亮度
+twilight correction 曙暮光改正
+twilight emission 曙暮光发射
+twilight flat 晨昏天光平场
+twilight spectrum 曙暮光光谱
+twilight zone 曙暮光区
+twin galaxy 双重星系
+twin quasar 双类星体
+twin-beam model 双射束模型
+twin-exhaust model 双排气孔模型
+twinkling 闪烁
+twinkling star 闪烁星
+twins paradox 双生子佯谬
+twist mapping 扭转测绘
+twisted magnetic field 扭绞磁场
+twisting force 扭力
+twisting moment 扭矩
+two stream hypothesis 二星流假说
+two-armed spiral pattern 双臂旋涡图像
+two-body problem 二体问题
+two-body relaxation 二体弛豫
+two-body relaxation time 二体弛豫时间
+two-channel noise figure 双通道噪声系数
+two-channel receiver 双通道接收机
+two-color diagram 双色图
+two-color photometry 两色测光
+two-component model 二组元模型
+two-dimension photometry 二维测光
+two-dimensional aperture synthesis 二维综合孔径
+two-dimensional classification 二元光谱分类
+two-dimensional detector 二维探测器
+two-dimensional distribution 二维分布
+two-dimensional spectral classification 二元光谱分类
+two-dimensional spectroscopy 二维分光
+two-dimensional spectrum 二维光谱
+two-dimensional synthesis 二维综合孔径
+two-element interferometer 双元干涉仪
+two-fluid model 双流体模型
+two-lens objective 双透镜物镜
+two-lens ocular 双透镜目镜
+two-mode turbulence 双模式湍动
+two-particle correlation function 两粒子相关函数
+two-particle distribution function 两粒子分布函数
+two-phase model 两相模型
+two-phase structure 双相结构
+two-photon emission 双光子发射
+two-point correlation function 两点相关函数
+two-reflector antenna 双反射面天线
+two-resonance maser 双共振微波激射器
+two-ribbon flare 双带耀斑
+two-screen model 双屏模型
+two-spectrum binary 缩写:SB 2。双谱[分光]双星
+two-stage acceleration 二级加速
+two-step acceleration 二级加速
+two-stream instability 二星流不稳定性
+two-way Doppler 双程多普勒
+two-way light time 双程光行时
+two-way mode 双路径模式
+type A Fermi collision A型费米碰撞
+type B Fermi collision B型费米碰撞
+type IV radio burst IV型射电暴
+type V radio burst V型射电暴
+type Ⅰ Cepheid Ⅰ型造父变星
+type Ⅰ Seyfert Ⅰ型赛弗特星系
+type Ⅰ X-ray burster Ⅰ型X射线暴源
+type Ⅰ quasar Ⅰ型类星体
+type Ⅰ radio burst Ⅰ型射电暴
+type Ⅰ radio galaxy Ⅰ型射电星系
+type Ⅰ supernova Ⅰ型超新星
+type Ⅰ superstring theory Ⅰ型超弦理论
+type Ⅰa supernova Ⅰa型超新星
+type Ⅰb supernova Ⅰb型超新星
+type Ⅰc supernova Ⅰc型超新星
+type Ⅱ Cepheid Ⅱ型造父变星
+type Ⅱ Seyfert Ⅱ型赛弗特星系
+type Ⅱ X-ray burster Ⅱ型X射线暴源
+type Ⅱ quasar Ⅱ型类星体
+type Ⅱ radio burst Ⅱ型射电暴
+type Ⅱ radio galaxy Ⅱ型射电星系
+type Ⅱ supernova Ⅱ型超新星
+type ⅡA superstring theory ⅡA型超弦理论
+type ⅡB superstring theory ⅡB型超弦理论
+type Ⅱn supernova Ⅱn型超新星
+type Ⅲ radio burst Ⅲ型射电暴
+typical nova 典型新星
+typical spiral galaxy 典型旋涡星系
+typical star 典型星
+ubercalibration 缩写:Ubercal。上定标
+uhuru 乌呼鲁
+uinal 乌纳尔
+ultimate 极限
+ultimate line 驻留谱线
+ultra diffuse galaxy 缩写:UDG。超弥散星系
+ultra low expansion glass 缩写:ULE。超低膨胀玻璃
+ultra-Neptunian planet 海王星外行星; 海外行星
+ultra-compact dwarf galaxy 缩写:UCD。超致密矮星系
+ultra-high energy cosmic ray 缩写:UHECR。特高能宇宙线
+ultra-high energy γ-rays 特高能量γ射线
+ultra-high frequency 缩写:UHF。特高频
+ultra-relativistic electron 极端相对论性电子
+ultra-relativistic particle 极端相对论性粒子
+ultra-short-period B star 超短周期B型星
+ultra-short-period Cepheid 超短周期造父变星
+ultra-short-period binary 超短周期双星
+ultra-short-period variable 超短周期变星
+ultra-telescopic meteor 微流星
+ultrabasic glass 超碱玻璃
+ultracompact HⅡ region 超致密电离氢区
+ultracompact galaxy nucleus 超密星系核
+ultracool dwarf 缩写:UCD。超冷矮星
+ultracool subdwarfs 缩写:UCSD。超冷亚矮星
+ultradeep-field observation 特深天区观测
+ultradense neutron star 超密中子星
+ultradense object 超密天体
+ultraluminous X-ray source 极高光度X射线源
+ultraluminous galaxy 特高光度星系
+ultraluminous galaxy nucleus 特亮星系核
+ultraluminous infrared galaxy 1、缩写:ULIG。特高光度红外星系; 2、缩写:ULIRG。极亮红外星系
+ultramafic glass 超碱玻璃
+ultrametal-poor star 特贫金属星
+ultraray 宇宙线
+ultrashort-period planet 超短周期行星
+ultrasonic wave 超声波
+ultraviolet astronomy 缩写:UV astronomy。紫外天文学
+ultraviolet background 缩写:UV background。紫外背景
+ultraviolet band 缩写:UV band。紫外波段
+ultraviolet camera 缩写:UV camera。紫外照相机
+ultraviolet color 缩写:UV color。紫外色
+ultraviolet continuum 缩写:UV continuum。紫外连续谱
+ultraviolet counterpart 缩写:UV counterpart。紫外对应体
+ultraviolet cutoff 缩写:UV cutoff。紫外截断
+ultraviolet detector 缩写:UV detector。紫外探测器
+ultraviolet drop-out 缩写:UV drop-out。紫外漏失
+ultraviolet dwarf 缩写:UV dwarf。紫外矮星
+ultraviolet excess 缩写:UV excess。紫外超
+ultraviolet extinction 缩写:UV extinction。紫外消光
+ultraviolet filter 缩写:UV filter。紫外滤光片
+ultraviolet identification 缩写:UV identification。紫外证认
+ultraviolet image 缩写:UV image。紫外像
+ultraviolet ionization chamber 缩写:UV ionization chamber。紫外电离室
+ultraviolet light 缩写:UV light。紫外光
+ultraviolet line 缩写:UV line。紫外谱线
+ultraviolet luminosity 缩写:UV luminosity。紫外光度
+ultraviolet magnitude 缩写:UV magnitude。紫外星等
+ultraviolet map 缩写:UV map。紫外天图
+ultraviolet object 缩写:UV object。紫外天体
+ultraviolet photography 缩写:UV photography。紫外照相
+ultraviolet photometry 缩写:UV photometry。紫外测光
+ultraviolet radiation 缩写:UV radiation。紫外辐射
+ultraviolet radiation detector 缩写:UV radiation detector。紫外辐射探测器
+ultraviolet satellite 缩写:UV satellite。紫外卫星
+ultraviolet sky 缩写:UV sky。紫外天空
+ultraviolet source 缩写:UV source。紫外源
+ultraviolet spectrograph 缩写:UV spectrograph。紫外摄谱仪
+ultraviolet spectrophotometry 缩写:UV spectrophotometry。紫外分光光度测量
+ultraviolet spectroscopy 缩写:UV spectroscopy。紫外分光
+ultraviolet spectrum 缩写:UV spectrum。紫外光谱
+ultraviolet star 缩写:UV star。紫外星
+ultraviolet surveys 缩写:UV survey。紫外巡天
+ultraviolet telescope 缩写:UV telescope。紫外望远镜
+ultraviolet-bright star 缩写:UV bright star。紫外亮星
+ultraviolet-excess object 缩写:UV-excess object。紫外超天体
+ultraviolet-excess star 缩写:UV-excess star。紫外超恒星
+umbra 本影
+umbral dot 本影点
+umbral eclipse 本影食
+umbral flash 本影闪耀
+umklapp scattering 反转散射
+un-Sun-like star 非类太阳恒星
+unannounced satellite 秘密卫星
+unascending body 永不上升天体
+unbiased estimator 无偏估计量
+unbound model 非束缚模型
+unbound orbit 非束缚轨道
+uncertainty 不确定性
+uncertainty principle 测不准原理
+uncertainty region 不确定性区域
+unclosed orbit 开放轨道
+uncorrelated noise 非相关噪声
+undercorrection 改正不足
+underdensity 欠密度
+underexposure 曝光不足
+underionization 欠电离
+underluminous star 低光度星
+underlying galaxy 基底星系
+undermassive star 质量过小星
+undisturbed orbit 无摄轨道
+undisturbed sun 非扰太阳
+undriven camera 无跟踪照相机
+unevenness 不均匀性
+unfilled aperture 分立孔径
+ungerade 奇态
+unidentified flying object 缩写:UFO。不明飞行物
+unidentified source 未证认源
+unidimension 一维
+unidirection 单向
+unified model of active galactic nuclei 活动星系核统一模型
+unified standard 统一标准
+unified time 统一时间
+uniform acceleration 匀加速度
+uniform array 等距天线阵
+uniform circular motion 匀速圆周运动
+uniform distribution 均匀分布
+uniform induction 均匀感应
+uniform motion 匀速运动
+uniform sidereal time 均匀恒星时
+uniform solar time 均匀太阳时
+uniform time 均匀时间
+uniform velocity 均匀速度
+uniform-density contraction 匀密度收缩
+uniformization 均匀化; 单值化
+unilluminated hemisphere 暗半球
+unipolar group 单极群
+unipolar induction 单极感应
+unipolar magnetic region 单极磁区
+unipolar spot 单极黑子
+unipolar sunspot 单极太阳黑子
+unique variable 独特变星
+uniqueness 唯一性
+unit brightness 单位亮度
+unit circle 单位圆
+unit distance 单位距离
+unit sphere 单位球
+unit vector 单位矢量
+unitarity 幺正性
+unitary spin 幺旋
+unitary transformation 幺正变换
+unity 单位
+univariate distribution 单变量分布
+universal background 宇宙背景
+universal constant 普适常数
+universal coupling constant 普适耦合常数
+universal covering surface 万有覆盖面
+universal dial 通用日晷
+universal filter 万用滤波器
+universal gravitation 万有引力
+universal horizon 宇宙视界
+universal instrument 全能经纬仪
+universal theodolite 全能经纬仪
+universal time 缩写:UT。世界时
+universe 宇宙
+unlit side 无光照侧边
+unmagnetized plasma 非磁化等离子体
+unnumbered asteroid 未编号小行星
+unobservable quantity 非观测量
+unperturbed orbit 无摄轨道
+unpolarized burst 非偏振暴
+unpolarized component 非偏振成分
+unpolarized continuum 非偏振连续谱
+unpolarized radiation 非偏振辐射
+unpolarized wave 非偏振波
+unresolved source 不可分辨源
+unrestricted orbit 无限制轨道
+unrising body 恒隐天体
+unseen companion 1、未见伴星; 2、未见伴星系
+unseen component 未现子星
+unseen matter 不可视物质
+unsetting body 恒显天体
+unsharp masking 模糊遮掩
+unshocked gas 未受震激气体
+unstable coordinate 不稳定坐标
+unstable equilibrium 不稳定平衡
+unstable state 不稳定态
+unstationary star 不稳定星
+unwrapping 无卷缠
+up-Comptonization 康普顿硬化
+up-conversion 上变频
+up-leg light time 上行光行时
+upcrossing of random trajectories 随机轨迹上穿
+upper atmosphere 高层大气
+upper chromosphere 色球高层
+upper circle 上规; 恒显圈
+upper crust 上部地壳
+upper culmination 上中天
+upper level 高能级
+upper limb 上边缘
+upper limit 上限
+upper main sequence 上主星序
+upper mantle 上地幔
+upper tangent arc 上正切晕弧
+upper transit 上中天
+upper-most crust 最上部地壳
+upward transition 向上跃迁
+upward-looking bowl sundial 仰釜日晷
+uranicentric coordinate 天心坐标
+uranigraphic coordinate 天面坐标
+uranium 缩写:U。铀
+uranographer 星图学家
+uranographic model 浑天象
+uranography 星图学
+uranology 天学
+uranometry 天体测量
+ureilite 橄辉无球粒陨石
+uv plane uv平面
+uvby color system uvby 颜色系统
+uvby photometry uvby测光
+uvby system uvby系统
+uviol 紫外玻璃
+v/r variable v/r变星
+vacant shell 空壳层
+vacuum 真空
+vacuum energy 真空能量
+vacuum expectation value 缩写:VEV。真空期望值
+vacuum solar telescope 真空太阳望远镜
+vacuum solar tower 真空太阳塔
+vacuum spectrograph 真空摄谱仪
+vacuum state 真空态
+vacuum telescope 真空望远镜
+vacuum tower telescope 真空塔式望远镜
+vacuum wavelength 真空波长
+valence band 价电子带
+validity 真实性; 有效性
+validity check 真实性检验
+vallis 谷
+value of division 分划值
+van Biesbroeck's Star 范比斯布洛克星
+van Maanen's star 范玛宁星
+van Vleck relation 范弗莱克关系
+van de Graaff crater 范德格拉夫环形山
+van den Bergh classification 范登伯分类法
+van den Bergh luminosity class 范登伯光度级
+van der Waals crater 范德瓦耳斯环形山
+van der Waals force 范德瓦耳斯力
+van't Hoff crater 范托夫环形山
+vanadium 缩写:V。钒
+vanishing point 汇聚点
+vapour 汽
+vapour deposition 汽沉积
+varactor 可变电抗器
+varactor parametric amplifier 变容二极管参量放大器
+variability 变性; 变率
+variable X-ray source X射线变源
+variable base-line interferometer 变基线干涉仪
+variable base-line interferometry 变基线干涉测量
+variable capacitance amplifier 变容放大器
+variable component 可变分量
+variable infrared object 红外变光天体
+variable mass 变质量
+variable nebula 变光星云
+variable profile antenna 变轮廓天线
+variable radio object 缩写:VRO。射电变化天体
+variable radio source 缩写:VRS。射电变源
+variable source 变源
+variable star 缩写:VS。变星
+variable time scale 可变时标
+variable ultraviolet object 紫外变光天体
+variable γ-ray source γ射线变源
+variable-spacing interferometer 变距干涉仪
+variable-spacing interferometry 变距干涉测量
+variable-velocity star 视向速度变星
+variance 方差
+variation of constants 常数变值法
+variation of elements 根数变值法
+variation of latitude 纬度变化
+variation of parameters 参数变值法
+variation of the moon 二均差
+variation orbit 变分轨道
+variational inequality 月行差
+variational method 变分法
+variational orbit 变分轨道
+variational principle 变分原理
+variometer 可变电感器
+varistor 变阻器
+vastitas 广低平原
+vector boson 矢量玻色子
+vector field 矢量场
+vector meson 矢性介子
+vector mode 矢量模
+vector perturbation 矢量扰动
+vector potential 矢量势
+vector product 矢积
+vector space 矢量空间
+vector spectromagnetograph 矢量分光磁像仪
+vector spherical harmonics 缩写:VSH。矢量球谐函数
+vector translation 矢量平移
+vector-point-diagram 矢点图
+vectorial astrometry 矢量天体测量学
+vectorial orbital constant 矢量轨道常数
+veil variable star 掩食变星
+veiling 淡化
+vein 裂痕
+velocity bias 速度偏袒
+velocity component 速度分量
+velocity correlation function 速度相关函数
+velocity curve 速度曲线
+velocity dispersion 速度弥散度
+velocity distribution 速度分布
+velocity ellipsoid 速度椭球
+velocity field 速度场
+velocity gradient 速度梯度
+velocity of entry 进入速度
+velocity of escape 逃逸速度
+velocity of light 光速
+velocity of recession 退行速度
+velocity perturbation 速度扰动
+velocity potential 速度势
+velocity profile 速度轮廓
+velocity space 速度空间
+velocity spectrum 速度谱
+velocity variable 视向速度变星
+velocity-density reconstruction 速度-密度重构
+velocity-distance relation 速度-距离关系
+velocity-of-light cylinder 光速柱面
+velocity-of-light radius 光速半径
+ventilation 通风
+vernal equinox 春分点
+vernal point 春分点
+vernier 游标
+vernier clock 游标钟
+vernier-type time signal 游标式时号
+versed ascension 负赤经
+vertex 奔赴点
+vertex angle 顶角
+vertical 垂线; 地平经圈
+vertical angle 高度角
+vertical axis 竖轴
+vertical blanking interval 垂直消隐间隔
+vertical circle 地平经圈; 垂直圈
+vertical distribution 垂直分布
+vertical frequency 垂直频率
+vertical line 垂线; 竖直线
+vertical parallax screw 竖直视差螺旋
+vertical pendulum 竖直摆
+vertical plane 竖直面
+vertical resonance 竖直共振
+vertical revolving circle 立运仪
+vertical revolving instrument 立运仪
+vertical spectrograph 竖直摄谱仪
+vertical thread 竖丝
+very early universe 极早期宇宙
+very hard binary 甚硬双星
+very high energy cosmic ray 缩写:VHECR。甚高能宇宙线
+very high frequency 缩写:VHF。甚高频
+very large-scale phenomenon 甚大尺度现象
+very long baseline 缩写:VLB。甚长基线
+very long baseline interferometer 缩写:VLBI。甚长基线干涉仪
+very low frequency 缩写:VLF。甚低频
+very low-mass star 甚小质量恒星
+very massive object 缩写:VMO。甚大质量天体
+very relativistic electron 极近相对论性电子
+very short wave 甚短波
+very slow nova 慢变光新星
+very small-scale structure 甚小尺度结构
+very soft binary 甚软双星
+very strong-lined giant 缩写:VSL giant。甚强线巨星
+very strong-lined star 缩写:VSL star。甚强线星
+vestoid 类灶小行星
+vial 水准器玻璃管
+vibration 振动
+vibration spectrum 振动谱
+vibration temperature 振动温度
+vibrational constant 振动常数
+vibrational energy 振动能
+vibrational energy level 振动能级
+vibrational instability 振动不稳定性
+vibrational line 振动谱线
+vibrational quantum number 振动量子数
+vibrational spectrum 振动谱
+vibrational structure 振动结构
+vibrational transition 振动跃迁
+vibrator 振荡器; 振子
+video astronomy 视频天文学
+video converter 视频变换器
+video magnetograph 视频磁像仪
+vidicon 视像管
+viewfinder 寻星镜
+viewing angle 视角
+viewing distance 视距
+viewing field 缩写:FoV。视场
+vignetting 渐晕
+vignetting effect 渐晕效应
+vignetting stop 止晕光阑
+vinyl cyanide 丙烯腈
+violent galaxy 激变星系
+violent relaxation 剧变弛豫
+violet layer 紫层
+violet shift 紫移
+virgocentric flow 室女星系团中心流
+virial coefficient 位力系数
+virial density 位力密度
+virial equation 位力方程
+virial equilibrium 位力平衡
+virial mass 位力质量
+virial parameter 位力参数
+virial radius 位力半径
+virial temperature 位力温度
+virial theorem 位力定理
+virial velocity 位力速度
+virialization 位力化
+virtual displacement 虚位移
+virtual focus 虚焦点
+virtual image 虚像
+virtual observatory 虚拟天文台
+virtual particle 虚粒子
+virtual phase CCD 虚相CCD
+virtual phonon 虚声子
+virtual photon 虚光子
+virtual wave 虚波
+virtual work 虚功
+virtuous star 德星
+vis viva equation 活力方程
+vis viva integral 活力积分
+viscidity 1、黏性; 2、黏性; 黏度
+viscosity 黏性; 黏度
+viscous disk 黏性盘
+viscous dissipation 黏性耗散
+viscous fluid 黏性流体
+viscous force 黏性力
+visibility 能见度; 可见度
+visibility function 能见度函数; 可见度函数
+visibility of planet 行星可见期
+visibility of satellite 卫星可见期; 人卫可见期
+visible arm 可见臂
+visible component 可见子星
+visible disk 可见圆面
+visible horizon 可见地平
+visible light 可见光
+visible matter 可见物质
+visible nulling coronagraph 可见光消零星冕仪
+visible radiation 可见辐射
+visible spectrum 可见光谱
+vision 视觉
+visual acuity 视敏度
+visual angle 视角
+visual astronomy 目视天文学
+visual band 目视波段
+visual binary 目视双星
+visual catalogue 目视星表
+visual classification 目视分类
+visual colorimetry 目视色度测量
+visual diameter 视直径
+visual double star 目视双星
+visual extinction 目视波段消光
+visual light curve 目视光变曲线
+visual line 视线
+visual luminosity 目视光度
+visual magnitude 目视星等
+visual meteor 目视流星
+visual multiple star 目视聚星
+visual object 目视天体
+visual objective 目视物镜
+visual observation 目视观测
+visual photometer 目视光度计
+visual photometry 目视测光
+visual polarimeter 目视偏振计
+visual polarimetry 目视偏振测量
+visual reflector 目视反射望远镜
+visual refractor 目视折射望远镜
+visual sensitivity curve 目视灵敏度曲线
+visual source 目视源
+visual spectrophotometer 目视分光光度计
+visual spectrophotometry 目视分光光度测量
+visual star 目视星
+visual telescope 目视望远镜
+visual zenith telescope 缩写:VZT。目视天顶仪
+void 巨洞
+void probability function 巨洞概率函数
+volatile 挥发
+volatile substance 挥发性物质
+volcanic activity 火山活动
+volcanic ash 火山灰
+volcanic glass 火山玻璃
+volcanic rock 火山岩
+volcanism 火山作用; 火山现象
+volcano 火山
+volcano hypothesis 火山假说
+volcanology 火山学
+voltage bias 偏压
+voltage standing wave ratio 缩写:VSWR。电压驻波比
+volume charge 体电荷
+volume density 体密度
+volume emissivity 体发射率
+volume-averaged correlation function 体积平均的相关函数
+volume-limited redshift surveys 限定体积红移巡天
+volume-limited sample 限定体积样本
+volume-phase holographic grating 体相全息光栅
+volume-preserving mapping 保体积映射
+volvelle 日月升落潮汐仪
+von Zeipel method 蔡佩尔方法
+von Zeipel theorem 蔡佩尔定理
+vortex 涡旋
+vortex filament 涡丝
+vortex flow 涡流
+vortex hypothesis 涡流假说
+vortex line 涡线
+vortex motion 涡动
+vortex sheet 涡流片
+vortex state 涡旋态
+vortex structure 涡旋结构
+vortical perturbations 有旋扰动
+vorticity 涡度
+vorticity mode 涡度模
+vulcanism 火山作用; 火山现象
+vulcanoid 祝融型小行星
+vulcanoid zone 祝融区
+vulcanology 火山学
+vulgar estabilishment 朔望平均潮候时差
+wake 瞬现余迹
+wall coating 壁镀膜
+wall collision 壁碰撞
+wall shift 壁移
+walled plain 月面环壁平原
+wandering of the pole 极移
+wandering star 游星
+waning crescent 下蛾眉月
+waning gibbous moon 亏凸月
+waning moon 1、亏月; 2、残月
+warm dark matter 温暗物质
+warm intercloud medium 云际温介质
+warm plasma 热等离子体
+warm spot 热斑
+warm-hot intergalactic medium 缩写:WHIM。星系际温热介质
+warp 翘曲
+warped galaxy 翘曲星系
+water 水
+water Cherenkov neutrino telescope 水切伦科夫式中微子望远镜
+water Cherenkov telescope 水切伦科夫望远镜
+water clock 水钟
+water ice 水冰
+water maser 水微波激射; 水脉泽
+water-jet actinometer 喷水日光能量测定仪
+water-vapour maser 水汽微波激射; 水汽脉泽
+waterfall field 瀑布场
+waterspout prominence 龙卷日珥
+wave aberration 波像差
+wave amplitude 波幅
+wave band 波段
+wave crest 波峰
+wave energy density 波能密度
+wave equation 波动方程
+wave form 波形
+wave front 波前
+wave function 波函数
+wave length 波长
+wave momentum density 波动量密度
+wave motion 波动
+wave noise 波动噪声
+wave number 波数
+wave packet 波包
+wave pattern 波图案
+wave period 波周期
+wave plate analyser 波片检偏器
+wave propagation 波传播
+wave reflection 波反射
+wave refraction 波折射
+wave shape 波形
+wave spectrum 波谱
+wave surface 波面
+wave theory 波动说
+wave train 波列
+wave trough 波谷
+wave vector 波矢
+wave velocity 波速
+wave zone 波动区; 远场区
+wave-form analysis 波形分析
+wave-front sensor 波前传感器
+wave-front tilt 波前倾斜
+wave-like behaviour 波动性
+wave-number vector 波数矢量
+wave-particle interaction 波粒相互作用
+wave-wave interaction 波-波相互作用
+waveguide 波导
+wavelet 小波
+waxing and waning of the moon 月相盈亏
+waxing crescent 上蛾眉月
+waxing gibbous moon 盈凸月
+waxing moon 盈月
+weak G band star 弱G谱带星
+weak bar 弱棒
+weak encounter 弱交会
+weak energy condition 弱能量条件
+weak equivalence principle 弱等效原理
+weak field 弱场
+weak force 弱力
+weak gravitational lensing 弱引力透镜
+weak interaction 弱相互作用
+weak lensing 缩写:WL。弱引力透镜效应
+weak neutral current 弱中性流
+weak nuclear force 弱核力
+weak nuclear interaction 弱核相互作用
+weak source 弱源
+weak stability 弱稳定性
+weak turbulence 弱湍流
+weak turbulence theory 弱湍流理论
+weak-field condition 弱场条件
+weak-line T Tau star 弱线金牛T型星
+weak-lined star 弱线星
+weakly interacting massive particle 缩写:WIMP。弱相互作用大质量粒子
+weakly ionized gas 弱电离气体
+weather satellite 气象卫星
+wedge constant 光劈常数
+wedge photometer 光劈光度计
+wedge product 外积
+weight 权
+weight function 权函数
+weighted average 1、加权平均; 2、加权平均值
+weighted averaging 加权平均
+weighted error 加权误差
+weighted mean 加权平均值
+weighted observation 加权观测
+weighting 取权
+weighting factor 取权因子
+weighting filter 加权滤波器
+weighting of observation 观测计权
+weightlessness 失重
+well-tapered illumination 良照明
+west 西
+west longitude 西经
+west point 西点
+western elongation 1、西大距; 2、西角距; 西大距
+western hemisphere 西半球
+western quadrature 西方照
+wet merger 湿并合
+wheel-and-track mount 轮轨式装置
+whistler 啸声
+whistler wave 啸声波
+white Gauss noise 白高斯噪声
+white dwarf 缩写:WD。白矮星
+white dwarf branch 白矮星支
+white frequency noise 白频率噪声
+white fringe 白条纹
+white giant 白巨星
+white hole 白洞
+white light event 白光事件
+white night 白夜
+white noise 白噪声
+white phase noise 白相位噪声
+white spot 白斑
+white star 白星
+white-blue dwarf 蓝白矮星
+white-light corona 白光日冕
+white-light coronameter 白光日冕光度计
+white-light coronometer 白光日冕光度计
+white-light flare 白光耀斑
+white-noise spectrum 白噪声谱
+white-pupil echelle spectrometer 白瞳阶梯光栅光谱仪
+whole-line width 全线宽
+wide band filter 宽波段滤光片
+wide band photometry 宽波段测光
+wide binary 宽距双星
+wide binary galaxy 宽距双重星系
+wide field imager 缩写:WFI。大视场成像器
+wide pair 宽距双星
+wide visual binary 宽距目视双星
+wide-angle astrograph 广角天体照相仪
+wide-angle camera 广角照相机
+wide-angle eyepiece 广角目镜
+wide-angle lens 广角透镜
+wide-angle object glass 广角物镜
+wide-angle plate 大视场底片
+wide-angle telescope 广角望远镜
+wide-field eyepiece 广角目镜
+wide-field imaging 大视场成像
+wide-field spectrograph 大视场摄谱仪
+wide-field telescope 大视场望远镜
+widening 致宽
+width 宽度
+width-shear vibrator 宽度切变振荡器
+wind-feild interaction 风场互作用
+winding dilemma 缠卷疑难
+winding mode 缠卷模
+winding number 缠卷数
+winding problem 缠卷问题
+winding rate 缠卷速率
+window 窗; 窗口
+window function 窗函数
+wingspan 翼展
+wino W微子
+winter 冬
+winter solstice 冬至点
+wire grid 丝栅
+wire interval 丝距
+wireless time signal 无线电时号
+wisp 亮条
+wobbling method 摆动法
+word length 字长
+work function 功函数
+working area 工作空间
+working field 工作像场
+working space 工作单元
+world day 世界日
+world line 世界线
+world model 宇宙模型
+world point 世界点
+world sheet 世界面
+world-wide disturbance 全球扰动
+world-wide synchronization 全球同步
+wormhole 虫洞
+wrapping 卷缠
+wrinkle ridge 皱脊
+xaser 全称:X-ray amplification by stimulated emission of radiation。X射线激射
+xenobiology 外空生物学
+xenon 缩写:Xe。氙
+year 缩写:yr.。年
+year book 缩写:Yb。年历
+year cycle 岁周
+year revolution 岁周
+year surplus 岁余
+year-difference 岁差
+yearly UTC adjustment 每年协调世界时调整
+yellow color index 黄色指数
+yellow coronal line 日冕黄线
+yellow dwarf 黄矮星
+yellow giant 黄巨星
+yellow glow 黄辉光
+yellow star 黄星
+yellow straggler 黄离散星
+yellow supergiant 黄超巨星
+yield strain 屈服应变
+yielding 沉陷
+ylem 原元素
+yoke mounting 轭式装置
+young star 年轻星
+young star cluster 年轻星团
+young stellar object 缩写:YSO。初期恒星体
+yr. 全称:year。年
+ytterbium 缩写:Yb。镱
+yttrium 缩写:Y。钇
+yuga 瑜伽
+zenith 天顶
+zenith absorption 天顶大气吸收
+zenith angle 天顶角
+zenith astrograph 天顶照相仪
+zenith attraction 天顶引力
+zenith delay 天顶延迟
+zenith discontinuity 天顶间断
+zenith distance 缩写:ZD。天顶距
+zenith eyepiece 天顶目镜
+zenith instrument 天顶仪
+zenith magnitude 天顶星等
+zenith reading 天顶读数
+zenith sector 地平纬仪; 象限仪
+zenith star 天顶星
+zenith sun 天顶太阳
+zenith telescope 天顶仪
+zenith tube 天顶筒
+zenithal equidistant projection 等距天顶投影
+zenithal hourly rate 缩写:ZHR。天顶每时出现率
+zenithal refraction 天顶大气折射
+zenocentric coordinate 木心坐标
+zenographic coordinate 木面坐标
+zenographic latitude 木面纬度
+zenographic longitude 木面经度
+zenography 木面学
+zero adjustment 零调整
+zero crossing 零交点
+zero date 起算日
+zero drift 零点漂移
+zero elimination 消零
+zero energy wave 零能波
+zero field 零势场
+zero geodesic 零短程线
+zero meridian 零子午线
+zero mode 零模
+zero order spectrum 零级光谱
+zero point 零点
+zero point energy 零点能
+zero point of photometric system 测光系统零点
+zero point shift 零点漂移
+zero reading 零点读数
+zero redundancy array 零重复阵
+zero rotation main sequence 缩写:ZRMS。无自转主序
+zero setting 置零
+zero time 时间零点
+zero velocity curve 零速度线
+zero velocity surface 零速度面
+zero year 零黑子年
+zero zone 零时区
+zero-age horizontal branch 缩写:ZAHB。零龄水平支
+zero-age main sequence 缩写:ZAMS。零龄主序
+zero-beat method 零拍法
+zero-coefficient 零系数
+zero-crossing discriminator 过零鉴别器
+zero-expansion glass 零膨胀玻璃
+zerodur 微晶玻璃
+zeroing 调零
+zhuangqining 庄启宁
+zij 1、历表; 2、积尺
+zinc 缩写:Zn。锌
+zine-doped germanium 锗掺锌
+zino Z微子
+zirconium 缩写:Zr。锆
+zirconium star 锆星
+zodiac 黄道带
+zodiac constellation 黄道星座
+zodiacal belt 黄道带
+zodiacal circle 黄道圈
+zodiacal cloud 黄道云
+zodiacal constellation 黄道星座
+zodiacal counterglow 对日照
+zodiacal dust 黄道尘
+zodiacal dust cloud 黄道尘云
+zodiacal light 黄道光
+zodiacal light bridge 黄道光桥
+zodiacal light photometry 黄道光测光
+zodiacal signs 黄道十二宫
+zodiacal star 黄道带恒星
+zoll 十二分之一食分
+zonal harmonic 带谐函数
+zonal rotation 分带自转
+zonal tide 带潮
+zone 区; 带
+zone astrograph 分区天体照相仪
+zone catalogue 分区星表
+zone meridian 分区子午线
+zone noon 分区正午
+zone observation 分区观测
+zone of annularity 环食带
+zone of avoidance 隐带
+zone of eclipse 食带
+zone of totality 全食带
+zone plate 环板
+zone star 分区恒星
+zone time 区时
+zoo hypothesis 动物园假说
+zoom lens 变焦透镜
+Å 全称:angstrom。埃
+Ōmura crater 大村陨击坑
+Žulanka crater 茹兰卡陨击坑
+Γ parameter Γ参数
+Γ-point Γ点
+Γ-space Γ空间
+Λ Cold Dark Matter model 缩写:ΛCDM model。含宇宙学常数的冷暗物质模型
+ΛCDM model 全称:Λ Cold Dark Matter model。含宇宙学常数的冷暗物质模型
+Ξ-hyperon Ξ超子
+α Capricornids 摩羯α流星群
+α Cygni variable 天鹅α型变星
+α Persei cluster 英仙α星团
+α-disc α盘
+α-viscosity prescription α黏度处理方法
+α-β-γ theory αβγ理论
+α2 CVn star 全称:α2 Canum Venaticorum star。猎犬α型星
+α2 CVn variable 全称:α2 Canum Venaticorum variable。猎犬α型变星
+α2 Canum Venaticorum star 缩写:α2 CVn star。猎犬α型星
+α2 Canum Venaticorum variable 缩写:α2 CVn variable。猎犬α型变星
+β CMa star 全称:β Canis Majoris star。大犬β型星
+β Canis Majoris star 缩写:β CMa star。大犬β型星
+β Cep star 全称:β Cephei star。仙王β型星
+β Cephei star 缩写:β Cep star。仙王β型星
+β Lyr-type variable 天琴β型变星
+β Lyrae star 天琴β型星
+β Persei star 英仙β型星
+β decay β衰变
+β disintegration β衰变
+β model of clusters of galaxy 星系团的β模型
+β transition β跃迁
+β-decay electron β衰变电子
+γ Cas star 全称:γ Cassiopeiae star。仙后γ型星
+γ Cassiopeiae star 缩写:γ Cas star。仙后γ型星
+γ radiation γ辐射
+γ-radiation counter γ辐射计数器
+γ-radiation source γ辐射源
+γ-ray Burst Alert Telescope 缩写:BAT。γ暴预警望远镜
+γ-ray astronomy γ射线天文学
+γ-ray background γ射线背景
+γ-ray burst 缩写:GRB。γ射线暴
+γ-ray burst afterglow γ暴余辉
+γ-ray burst energy γ暴能量
+γ-ray burst light curve γ暴光变曲线
+γ-ray burst mass extinction γ暴集群灭绝
+γ-ray burst optical transient γ暴光学暂现源
+γ-ray burst progenitor γ暴前身天体
+γ-ray burst source γ射线暴源
+γ-ray burst type γ暴型
+γ-ray burster γ射线暴源
+γ-ray counter γ射线计数器
+γ-ray counterpart γ射线对应体
+γ-ray detector γ射线探测器
+γ-ray emission γ射线发射
+γ-ray identification γ射线证认
+γ-ray line γ射线谱线
+γ-ray line astronomy γ射线谱线天文学
+γ-ray line emission γ射线谱线辐射
+γ-ray luminosity γ射线光度
+γ-ray map γ射线天图
+γ-ray observation γ射线观测
+γ-ray observatory γ射线天文台
+γ-ray pulsar γ射线脉冲星
+γ-ray satellite γ射线卫星
+γ-ray scattering γ射线散射
+γ-ray sky γ射线天空
+γ-ray source γ射线源
+γ-ray spectral line γ射线谱线
+γ-ray spectrometer γ射线频谱计
+γ-ray spectroscopy γ射线分频
+γ-ray spectrum γ射线谱
+γ-ray star γ射线星
+γ-ray survey γ射线巡天
+γ-ray telescope γ射线望远镜
+γ-ray transient γ射线暂现
+δ Aquarids 宝瓶δ流星群
+δ Cep star 全称:δ Cephei star。仙王δ型星
+δ Cephei star 缩写:δ Cep star。仙王δ型星
+δ Delphini star 海豚δ型星
+δ Doradus star 剑鱼δ型星
+δ Sct star 全称:δ Scuti star。盾牌δ型星
+δ Scuti star 缩写:δ Sct star。盾牌δ型星
+ζ Aur star 全称:ζ Aurigae star。御夫ζ型星
+ζ Aurigae star 缩写:ζ Aur star。御夫ζ型星
+η Aquarids 宝瓶η流星群
+η Carina nebula 船底η星云
+η Carina-type object 船底η型天体
+θ galaxy θ星系
+θ vacuum θ 真空
+θ-meson θ介子
+κ mechanism κ机制
+λ Boo star 全称:λ Bootis star。牧夫λ型星
+λ Bootis star 缩写:λ Boo star。牧夫λ型星
+λ Eridani star 波江λ型星
+λ doublet λ双重线
+λ doubling line λ双重线
+λ-hyperon λ超子
+μ-meson μ子
+μas 全称:micro-arcsecond。微角秒
+ο Ceti star 鲸鱼ο型星
+π component π分量
+π-meson π介子
+ρ Cas star 全称:ρ Cassiopeiae star。仙后ρ型星
+ρ Cassiopeiae star 缩写:ρ Cas star。仙后ρ型星
+ρ Ophiuchi cloud 蛇夫ρ星云
+ρ-meson ρ介子
+σ component σ分量
+σ8 8兆秒差距尺度上的密度扰动方差
+τ Cold Dark Matter model 缩写:τCDM model。τ冷暗物质模型
+τ component τ分量
+τ test τ检验
+τ-meson τ介子
+τCDM model 全称:τ Cold Dark Matter model。τ冷暗物质模型
+υ Sagittarii star 人马υ型星
+υ component υ分量
+χ Persei cluster 英仙χ星团
+ω Centauri 半人马ω球状星团
+ω Nebula ω星云
+ω navigation system ω导航系统
diff --git a/docs/api.md b/docs/api.md
new file mode 100644
index 0000000..8e07efd
--- /dev/null
+++ b/docs/api.md
@@ -0,0 +1,274 @@
+# AstroResearch REST API Documentation / REST API 接口文档
+
+AstroResearch 后端服务运行于 Rust Axum 框架之上,默认基准 URL 为 `http://localhost:8000/api`。
+
+---
+
+## 1. 共享类型定义 (TypeScript Type Definitions)
+
+为了前后端类型一致,以下是主要的 TypeScript 数据接口定义:
+
+```typescript
+// 标准文献元数据
+export interface StandardPaper {
+ bibcode: string;
+ title: string;
+ authors: string[];
+ year: string;
+ pub_journal: string;
+ keywords: string[];
+ abstract_text: string;
+ doi: string;
+ arxiv_id: string;
+ citation_count: number;
+ reference_count: number;
+ is_downloaded: boolean;
+ has_markdown: boolean;
+ has_translation: boolean;
+}
+
+// 笔记记录
+export interface NoteRecord {
+ id: number;
+ bibcode: string;
+ paragraph_index: number;
+ note_text: string;
+ highlight_color: string; // 'yellow' | 'green' | 'blue' | 'pink'
+ selected_text: string;
+ created_at: string;
+}
+```
+
+---
+
+## 2. 接口分模块详述 (API Endpoints)
+
+### 2.1 检索与引文导出模块 (Search & Citations Export)
+
+#### 2.1.1 跨源文献统一搜索
+- **Endpoint**: `GET /api/search`
+- **Description**: 同时从 NASA ADS 与 arXiv XML 接口检索文献,返回去重并标准化后的文献元数据。
+- **Query Parameters**:
+ - `q` (string, required): 检索关键词。
+ - `source` (string, optional): 指定源,取值为 `all` | `ads` | `arxiv`,默认 `all`。
+ - `rows` (number, optional): 返回条数限制。
+- **Response Schema (`Vec`)**:
+ - HTTP `200 OK`
+- **cURL 示例**:
+ ```bash
+ curl -G "http://localhost:8000/api/search" \
+ --data-urlencode "q=Hertzsprung-Russell diagram" \
+ --data-urlencode "source=all"
+ ```
+
+#### 2.1.2 批量引文 BibTeX 导出
+- **Endpoint**: `POST /api/export`
+- **Description**: 将选中的文献 Bibcode 批量提交给 NASA ADS 接口,返回拼接的标准 BibTeX 文本。
+- **Request Body**:
+ ```json
+ {
+ "bibcodes": ["2024arXiv241011663H", "1984AJ.....89..374B"]
+ }
+ ```
+- **Response Schema**:
+ ```json
+ {
+ "bibtex": "@ARTICLE{2024arXiv241011663H, ...}\n\n@ARTICLE{1984AJ.....89..374B, ...}"
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl -X POST "http://localhost:8000/api/export" \
+ -H "Content-Type: application/json" \
+ -d '{"bibcodes": ["2024arXiv241011663H"]}'
+ ```
+
+---
+
+### 2.2 馆藏管理与物理文件模块 (Library & Local Storage)
+
+#### 2.2.1 获取馆藏文献列表
+- **Endpoint**: `GET /api/library`
+- **Description**: 查询本地 SQLite 数据库中已收藏入库的所有文献列表,后端会自动**实时感应物理文件是否存在**来修正 `is_downloaded` / `has_markdown` 等布尔状态。
+- **Response Schema (`Vec`)**:
+ - HTTP `200 OK`
+- **cURL 示例**:
+ ```bash
+ curl "http://localhost:8000/api/library"
+ ```
+
+#### 2.2.2 触发并行文献下载
+- **Endpoint**: `POST /api/download`
+- **Description**: 触发后台线程拉取文献的 PDF 及 HTML。如果是 arXiv 来源优先官方 HTML 兜底 ar5iv,并支持强制更新。
+- **Request Body**:
+ ```json
+ {
+ "bibcode": "2024arXiv241011663H",
+ "force": false
+ }
+ ```
+- **Response Schema (`StandardPaper`)**: Returns the updated paper structure with `is_downloaded: true`.
+- **cURL 示例**:
+ ```bash
+ curl -X POST "http://localhost:8000/api/download" \
+ -H "Content-Type: application/json" \
+ -d '{"bibcode": "2024arXiv241011663H", "force": true}'
+ ```
+
+#### 2.2.3 触发文献结构化解析
+- **Endpoint**: `POST /api/parse`
+- **Description**: 将本地下载的 HTML/PDF 清洗为 Markdown。支持 `force` 强制重新执行。
+- **Request Body**:
+ ```json
+ {
+ "bibcode": "2024arXiv241011663H",
+ "force": false
+ }
+ ```
+- **Response Schema**:
+ ```json
+ {
+ "markdown": "# 论文标题\n\n## 1. 绪论\n..."
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl -X POST "http://localhost:8000/api/parse" \
+ -H "Content-Type: application/json" \
+ -d '{"bibcode": "2024arXiv241011663H", "force": false}'
+ ```
+
+---
+
+### 2.3 阅读器与翻译模块 (Reader & LLM Translation)
+
+#### 2.3.1 获取文献阅读详情
+- **Endpoint**: `GET /api/paper`
+- **Description**: 获取某篇文献的标准元数据和已缓存的英文正文 Markdown 以及翻译后 Markdown。
+- **Query Parameters**:
+ - `bibcode` (string, required): 文献唯一标识符。
+- **Response Schema**:
+ ```json
+ {
+ "paper": { ... },
+ "english_content": "# Abstract...", // 若未解析,返回 null
+ "translation_content": "# 摘要..." // 若未翻译,返回 null
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl "http://localhost:8000/api/paper?bibcode=2024arXiv241011663H"
+ ```
+
+#### 2.3.2 触发 LLM 对照翻译
+- **Endpoint**: `POST /api/translate`
+- **Description**: 将英文 Markdown 提取本地词典名词注入 Glossary 提示词,并调用大模型进行学术翻译,最后写回本地物理文件并入库。
+- **Request Body**:
+ ```json
+ {
+ "bibcode": "2024arXiv241011663H",
+ "force": false
+ }
+ ```
+- **Response Schema**:
+ ```json
+ {
+ "translation": "# 翻译结果..."
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl -X POST "http://localhost:8000/api/translate" \
+ -H "Content-Type: application/json" \
+ -d '{"bibcode": "2024arXiv241011663H"}'
+ ```
+
+---
+
+### 2.4 引文网络拓扑模块 (Citation Galaxy Map)
+
+#### 2.4.1 查询文献的引文拓扑
+- **Endpoint**: `GET /api/citations`
+- **Description**: 获取某篇文献的参考文献 (References) 和施引文献 (Citations) 的 Bibcode 数组列表,用于渲染拓扑关系网。
+- **Query Parameters**:
+ - `bibcode` (string, required): 目标文献 Bibcode。
+- **Response Schema**:
+ ```json
+ {
+ "bibcode": "2024arXiv241011663H",
+ "title": "...",
+ "citation_count": 12,
+ "reference_count": 48,
+ "references": ["bibcode1", "bibcode2"],
+ "citations": ["bibcode3", "bibcode4"]
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl "http://localhost:8000/api/citations?bibcode=2024arXiv241011663H"
+ ```
+
+---
+
+### 2.5 笔记高亮模块 (Notes & Highlights)
+
+#### 2.5.1 创建笔记与高亮
+- **Endpoint**: `POST /api/notes`
+- **Description**: 对指定文献的特定段落位置创建高亮选段,并记录文字备注。
+- **Request Body**:
+ ```json
+ {
+ "bibcode": "2024arXiv241011663H",
+ "paragraph_index": 12,
+ "note_text": "这是一个重要的物理模型",
+ "highlight_color": "yellow", // 'yellow' | 'green' | 'blue' | 'pink'
+ "selected_text": "the standard model of galaxy formation"
+ }
+ ```
+- **Response Schema (`NoteRecord`)**: Returns the created note details containing auto-incremented `id` and creation timestamp.
+- **cURL 示例**:
+ ```bash
+ curl -X POST "http://localhost:8000/api/notes" \
+ -H "Content-Type: application/json" \
+ -d '{"bibcode": "2024arXiv241011663H", "paragraph_index": 12, "note_text": "My Note", "highlight_color": "green", "selected_text": "original text"}'
+ ```
+
+#### 2.5.2 获取单篇文献下的全部笔记
+- **Endpoint**: `GET /api/notes`
+- **Description**: 查询某篇文献关联的所有笔记。
+- **Query Parameters**:
+ - `bibcode` (string, required): 目标文献。
+- **Response Schema (`Vec`)**:
+ - HTTP `200 OK`
+- **cURL 示例**:
+ ```bash
+ curl "http://localhost:8000/api/notes?bibcode=2024arXiv241011663H"
+ ```
+
+#### 2.5.3 删除笔记
+- **Endpoint**: `DELETE /api/notes`
+- **Description**: 物理删除指定 ID 的笔记高亮记录。
+- **Query Parameters**:
+ - `id` (number, required): 笔记记录的唯一自增 id。
+- **Response Schema**:
+ ```json
+ {
+ "status": "success"
+ }
+ ```
+- **cURL 示例**:
+ ```bash
+ curl -X DELETE "http://localhost:8000/api/notes?id=5"
+ ```
+
+---
+
+## 3. 常见 HTTP 状态码与异常处理 (Error Codes)
+
+系统基于标准的 HTTP Status Codes 返回错误原因,响应的 Response Body 中通常为纯文本提示(String):
+
+| 状态码 | 错误类型 | 触发常见场景及原因说明 |
+| :--- | :--- | :--- |
+| **`400 Bad Request`** | 业务请求不合规 | - 文献未下载/解析却直接调用 `translate`。
- 未在 `.env` 中提供 `ADS_API_KEY` 时调用 `export`。 |
+| **`404 Not Found`** | 资源未找到 | - 数据库中没有该 Bibcode 的收藏记录。 |
+| **`500 Internal Error`**| 服务器内部错误 | - 第三方 LLM / ADS 接口通信超时或返回异常。
- 本地磁盘 IO 失败(如写入文件权限受阻)。
- 数据库查询异常。 |
diff --git a/docs/architecture.md b/docs/architecture.md
new file mode 100644
index 0000000..f41c78b
--- /dev/null
+++ b/docs/architecture.md
@@ -0,0 +1,228 @@
+# AstroResearch Architecture / 架构设计
+
+AstroResearch 是一个集成了天文学文献检索、双通道下载、结构化解析、中英学术对比翻译以及引文星系图谱的天文科研辅助系统。
+
+## 1. 整体架构 (Overall Architecture)
+
+AstroResearch 采用 **C/S (Client-Server)** 架构,由前端 React 单页应用和后端 Axum HTTP 服务构成,核心流程及层级如下:
+
+```mermaid
+graph TD
+ subgraph Frontend ["React 前端 (Port 5173 / 8000)"]
+ UI[仪表盘 UI / ReaderPanel]
+ Canvas[引文 Canvas 拓扑图]
+ API_Client[Axum API 客户端]
+ end
+
+ subgraph Backend ["Rust Axum 后端 (Port 8000)"]
+ Router[Axum 路由与中间件]
+ Handlers[业务处理器 handlers.rs]
+ Parser[解析器 parser.rs]
+ Downloader[下载器 download.rs]
+ Translator[翻译器 translation.rs]
+ Qiniu[七牛云客户端 qiniu.rs]
+ DB[("SQLite / astro_research.db")]
+ end
+
+ subgraph External [外部第三方服务]
+ ADS[NASA ADS API]
+ arXiv[arXiv Atom XML API]
+ MinerU[MinerU PDF 解析服务]
+ QiniuCDN[七牛云对象存储 CDN]
+ LLM[LLM API]
+ end
+
+ UI -->|用户操作| API_Client
+ API_Client -->|RESTful APIs| Router
+ Router --> Handlers
+
+ Handlers -->|查询/保存元数据| DB
+ Handlers -->|文献下载| Downloader
+ Handlers -->|结构化清洗| Parser
+ Handlers -->|LLM学术翻译| Translator
+
+ Downloader -->|代理请求| ADS
+ Downloader -->|直连或 ar5iv| arXiv
+
+ Parser -->|图文降级解析| MinerU
+ Parser -->|托管插图| Qiniu
+ Qiniu -->|上传图片| QiniuCDN
+
+ Translator -->|天文术语翻译| LLM
+
+ Canvas -->|引文网络请求| Handlers
+```
+
+---
+
+## 2. 核心工作流 (Core Workflows)
+
+### 2.1 文献下载流程 (Download Flow)
+
+本流程实现了文献的双通道流式下载,支持多级回退以及安全反爬防线绕过,其详细步骤与交互如下:
+
+```mermaid
+sequenceDiagram
+ participant U as 用户 (React 前端)
+ participant H as 处理器 (handlers.rs)
+ participant D as 下载器 (download.rs)
+ participant DB as 本地数据库 (SQLite)
+
+ U->>H: 1. 发起下载请求 (POST /api/download, 含 bibcode, force)
+ H->>DB: 2. 查询文献元数据 (获取 arxiv_id, doi 等)
+ alt force == true
+ H->>DB: 3. 重置本地下载路径字段为 NULL
+ end
+
+ H->>D: 4. 调度下载器执行物理拉取
+ alt 文献含有 arxiv_id (通道 A:arXiv 直连优先)
+ D->>D: 5a. 去除版本号 (strip_arxiv_version, v2 -> 无版本)
+ D->>D: 5b. 随机延时 (maybe_delay: 500-2000ms) 并伪装 UA
+ D->>D: 5c. 下载 PDF 并校验文件头 (%PDF + %%EOF)
+ D->>D: 5d. 优先请求官方 HTML (arxiv.org/html/)
+ note over D: 若官方 HTML 返回 404/错误
+ D->>D: 5e. 自动降级回退请求 ar5iv HTML (ar5iv.labs.arxiv.org)
+ D->>D: 5f. 校验 HTML 内容 (detect_anti_bot 检测反爬)
+ else 无 arxiv_id (通道 B:ADS 路由回退)
+ D->>D: 6a. 跟踪 ADS Link Gateway 重定向路由
+ note over D: 若遇到 validate.perfdrive.com 拦截
+ D->>D: 6b. 自动解析并解码 ssc 参数提取直链
+ note over D: 若指向 IOPscience / Springer
+ D->>D: 6c. IOP 专属策略:预热主页写入 Cookie,带 Referer 下载 PDF
+ D->>D: 6d. Springer 专属策略:使用 Chrome 头下载 HTML 页
+ note over D: 若网关均失败且存在 DOI
+ D->>D: 6e. CrossRef 兜底:请求 CrossRef API 获取 PDF URL 并直连下载
+ end
+
+ D-->>H: 7. 返回下载好的本地物理 PDF & HTML 路径
+ H->>DB: 8. 更新 pdf_path & html_path 记录
+ H-->>U: 9. 返回最新文献状态 (is_downloaded: true)
+```
+
+#### 详细下载说明:
+1. **指令接收与校验**:后端 `download_paper` 接口在 `force` 参数为 `true` 时,会强行擦除数据库中已下载的文件路径,启动无缓存的物理文件重新拉取。
+2. **下载反爬伪装**:下载器 `Downloader` 请求时采用动态生成的 Firefox/Chrome 轮换 User-Agent,并在每次 HTTP 访问前强制加入随机休眠机制(500ms - 2000ms),模拟人类自然阅读行为。
+3. **内容完整性校验**:
+ - 对 PDF 严格校验前四个字节(必须是 `%PDF`)以及尾部检索(必须包含 `%%EOF` 终止符),排查登录墙、错误页伪装成 PDF 导致下载坏文件的问题。
+ - 对 HTML 文本利用 `detect_anti_bot` 流水线过滤 "cloudflare"、"captcha"、"robot check" 等拦截特征。
+
+---
+
+### 2.2 文献解析流程 (Parse Flow)
+
+本流程负责将本地下载的 HTML 或 PDF 转换为高保真的 Markdown。其详细步骤与交互如下:
+
+```mermaid
+sequenceDiagram
+ participant U as 用户 (React 前端)
+ participant H as 处理器 (handlers.rs)
+ participant P as 解析器 (parser.rs)
+ participant M as MinerU (PDF解析服务)
+ participant Q as 七牛云 (对象存储)
+ participant DB as 本地数据库 (SQLite)
+
+ U->>H: 1. 发起解析请求 (POST /api/parse, 含 bibcode, force)
+ H->>DB: 2. 查询文献物理路径 (pdf_path, html_path, markdown_path)
+ alt force == false 且本地已存在 Markdown 物理缓存
+ H->>H: 3. 读取本地 Markdown 物理文件
+ H-->>U: 4. 直接返回缓存 Markdown,流程结束
+ end
+
+ H->>P: 5. 触发结构化文献解析
+ alt 本地存在 HTML 文件
+ P->>P: 6a. 剥离广告/导航栏与尾页页脚噪声
+ P->>P: 6b. 公式保护:利用占位符隔离 MathJax/LaTeX 公式段
+ P->>P: 6c. 标签规范:还原 LaTeXML 特定 span 为标准 table/tr/td,修正上下标
+ P->>P: 6d. 插图处理:把相对图像路径替换为绝对 CDN 外链地址
+ P->>P: 6e. 转换 GFM Markdown 并恢复 LaTeX 公式
+ P->>P: 6f. 后处理:清除冗余的 margin 空白与前导缩进
+ else 仅有 PDF 文件 (PDF 降级解析)
+ P->>M: 7a. Multipart 格式上传 PDF 至 MinerU 服务
+ M-->>P: 7b. 返回大模型解析出的 Markdown 文本及插图包
+ loop 遍历每一个提取的插图
+ P->>Q: 7c. 上传插图文件并获取七牛云 CDN 域名外链
+ end
+ P->>P: 7d. 在 Markdown 中重写插图链接为七牛云 CDN 绝对路径
+ end
+
+ P-->>H: 8. 返回清洗转换出的标准英文 Markdown 文本
+ H->>P: 9. 写入本地物理缓存 Markdown/ 目录
+ H->>DB: 10. 更新数据库 markdown_path 记录
+ H-->>U: 11. 返回标准 Markdown 内容渲染展示
+```
+
+#### 详细解析说明:
+1. **HTML 转换为 Markdown 保护公式**:由于 MathJax/LaTeX 在 Markdown 转换中极易被当成普通字符进行转义(例如 `_` 倾斜或 `\` 换行失效),解析器在 HTML 解析前,通过正则将 `$` / `$$` 或 `\(` / `\[` 中的内容全部替换为特定的 UUID 占位符,转换为标准 Markdown 之后,再反向替换恢复公式,确保 LaTeX 渲染无损。
+2. **PDF 复杂排版降级**:遇到无法直接提取 HTML 的老文献时,调用 MinerU 进行布局分析与公式提取,配合七牛云对象存储实现插图的自动提取、自动图床托管与正文自动替换回写。
+
+---
+
+### 2.3 智能对照翻译流程 (Translation Flow)
+
+本流程实现了基于天文学专属词汇表的 LLM 专业对比翻译,其详细步骤与交互如下:
+
+```mermaid
+sequenceDiagram
+ participant U as 用户 (React 前端)
+ participant H as 处理器 (handlers.rs)
+ participant T as 翻译器 (translation.rs)
+ participant D as 天文词典 (dictionary.rs)
+ participant L as 大模型 (LLM API)
+ participant DB as 本地数据库 (SQLite)
+
+ U->>H: 1. 请求文献对比翻译 (POST /api/translate, 含 bibcode, force)
+ H->>DB: 2. 查询文献路径及状态
+ alt force == false 且本地已存在翻译缓存文件
+ H->>H: 3. 读取本地 Translation/{bibcode}_zh.md 物理文件
+ H-->>U: 4. 直接返回缓存译文,流程结束
+ end
+
+ H->>H: 5. 读取对应的英文解析 Markdown 物理文件
+ H->>T: 6. 调度翻译器执行翻译工作流
+
+ T->>D: 7. 加载本地 dictionary.txt 并初始化 Trie 树结构
+ T->>D: 8. 执行英文 Markdown 文本分词匹配
+ D->>D: 9a. 进行前缀匹配检索
+ D->>D: 9b. 遵循“最长匹配优先”原则,过滤子词去重
+ D-->>T: 10. 返回该篇文献提取出的天文学名词对照 (Glossary)
+
+ loop 针对英文 Markdown 进行段落分块 (Token 长度控制)
+ T->>L: 11. 携带 Glossary + 英文原文段落发送 Prompt 请求
+ note over L: LLM 遵循系统 Prompt 约束:
1. 专业词汇严格对应 Glossary 译出
2. 严禁改变 LaTeX 公式及 Markdown 标签
3. 保持中英段落高度对齐
+ L-->>T: 12. 返回学术级双语对照翻译段落
+ end
+
+ T->>T: 13. 拼接所有段落,生成完整的对照 Markdown
+ T->>H: 14. 写入本地物理缓存 Translation/ 目录
+ H->>DB: 15. 更新数据库中的 translation_path 字段
+ H-->>U: 16. 返回翻译后 Markdown 渲染展示
+```
+
+#### 详细步骤说明:
+1. **分级翻译缓存机制**:
+ - 第一级缓存:若未开启 `force` 且本地物理磁盘已存在对应翻译文件,直接读取并返回,避免不必要的 LLM API 调用消耗。
+ - 第二级缓存:必须先完成英文 Markdown 的结构化解析,否则接口返回 `400` 错误,引导用户先进行正文解析。
+2. **基于 Trie 树的天文学名词提取**:
+ - 字典类 `Dictionary` 会加载包含数十万词条的本地天文词表 `dictionary.txt`。
+ - 为防止短词覆盖长词(如 `Hertzsprung` 覆盖 `Hertzsprung-Russell diagram`),分词匹配采用 Trie 树的最长前缀匹配。若匹配到长词,自动忽略其包含的子词。
+ - 最终只保留文献中真实出现的名词并去重,以 JSON 的形式构建为专有提示词(Glossary)注入 LLM 提示中。
+3. **LLM 强约束 Prompt 设计**:
+ - 在向大模型发送请求时,利用 System Prompt 声明其“天文学专业翻译家”的角色。
+ - 强制约定格式要求:所有的 LaTeX 公式(`$` / `$$`)必须原封不动保留,Markdown 的标题(`#`)、列表(`-`)、加粗(`**`)等语法严禁破坏,使前端可以无缝解析双语结构并左右对齐渲染。
+
+---
+
+## 3. 核心模块说明
+
+- **[src/download.rs](../src/download.rs)**:
+ - 包含浏览器头伪装与请求延迟控制。
+ - 处理 ADS Link Gateway 路由重定向追踪与 `validate.perfdrive.com` 防护解码绕过。
+ - 实现官方 `arxiv.org/html` 优先及 `ar5iv` 兜底,自动去除版本号后缀。
+- **[src/parser.rs](../src/parser.rs)**:
+ - 实现 HTML 语法树向 GFM Markdown 的逆向转换,使用占位符保护机制防止 MathJax/LaTeX 公式被误解析。
+ - 统一相对图表链接,并集成 MinerU PDF 解析。
+- **[src/translation.rs](../src/translation.rs)**:
+ - 利用本地千万字级别的天文学双语词典对原文进行分词匹配,注入系统提示词让 LLM 实现学术级精细翻译。
+- **[dashboard/src/components/CitationGalaxyCanvas.tsx](../dashboard/src/components/CitationGalaxyCanvas.tsx)**:
+ - 基于原生 HTML5 Canvas 开发的轻量级、高性能力导向图星系物理引擎,用于文献引文网络拓扑结构的可视化渲染。
+
diff --git a/docs/contributing.md b/docs/contributing.md
new file mode 100644
index 0000000..2c9b7b3
--- /dev/null
+++ b/docs/contributing.md
@@ -0,0 +1,60 @@
+# AstroResearch Contributing Guide / 参与贡献
+
+我们欢迎社区共同参与 AstroResearch 的开发与优化。以下是关于本地开发调试、代码规范和测试的说明。
+
+---
+
+## 1. 开发者本地环境搭建 (Developer Setup)
+
+### 后端开发环境 (Rust)
+1. 准备 Rust 工具链 (Edition 2021)。
+2. 安装 SQLx CLI(可选,用于生成迁移文件):
+ ```bash
+ cargo install sqlx-cli --no-default-features --features sqlite
+ ```
+3. 启动开发模式下的 Rust 服务:
+ ```bash
+ cargo run
+ ```
+
+### 前端开发环境 (React + TypeScript)
+1. 进入 `dashboard` 目录,安装依赖:
+ ```bash
+ cd dashboard
+ npm install
+ ```
+2. 启动开发服务器(支持 HMR 热更新及 API 请求代理转发):
+ ```bash
+ npm run dev
+ ```
+
+---
+
+## 2. 编码规范 (Coding Style Guidelines)
+
+### Rust 规范 (Backend)
+- 遵循 Rust 官方标准样式,提交前必须执行 `cargo fmt` 与 `cargo clippy`。
+- 注释和系统日志建议统一使用中文,便于开发者追踪和阅读。
+- API handers 中的异常信息请使用 `anyhow` 或 `thiserror` 进行结构化抛出。
+
+### React & TypeScript 规范 (Frontend)
+- 严格遵循 `React 18/19` 函数式组件写法,使用 React Hooks 维护状态。
+- 为保证生产编译成功,务必开启类型安全限制(如在导入纯类型时显式使用 `import type { ... }`)。
+- CSS 层面使用 Tailwind CSS 统一的磨砂玻璃体 (Glassmorphism) 及响应式布局,所有间距、颜色严格使用 CSS 变量控制以支持主题切换。
+
+---
+
+## 3. 测试与验证 (Testing)
+
+### 运行后端单元测试
+系统为各个下载、解析、词典分词、接口提取等模块设计了健全的测试。运行测试命令:
+```bash
+cargo test
+```
+
+### 运行前端校验
+```bash
+cd dashboard
+npm run build # 运行 TypeScript 类型检查及 Vite 打包编译
+```
+确保无编译 Error 或 Warn 警告后方可提交 PR。
diff --git a/docs/database.md b/docs/database.md
new file mode 100644
index 0000000..b9de37e
--- /dev/null
+++ b/docs/database.md
@@ -0,0 +1,77 @@
+# AstroResearch Database Schema / 数据库设计
+
+AstroResearch 使用轻量级、零配置的 **SQLite** 数据库作为持久化存储。数据库文件默认保存在项目根目录下的 `astro_research.db`,由 Rust 中的 `sqlx` 驱动管理并自动执行迁移。
+
+---
+
+## 1. 实体关系图 (Entity-Relationship Diagram)
+
+```mermaid
+erDiagram
+ PAPERS {
+ text bibcode PK
+ text title
+ text authors "JSON Array"
+ text year
+ text pub "Journal/Publisher"
+ text keywords "JSON Array"
+ text abstract
+ text doi
+ text arxiv_id
+ integer citation_count
+ integer reference_count
+ text pdf_path
+ text html_path
+ text markdown_path
+ text translation_path
+ datetime created_at
+ }
+
+ NOTES {
+ integer id PK
+ text bibcode FK
+ integer paragraph_index
+ text note_text
+ text highlight_color
+ text selected_text
+ datetime created_at
+ }
+
+ CITATIONS_REFERENCES {
+ text source_bibcode PK
+ text target_bibcode PK
+ }
+
+ PAPERS ||--o{ NOTES : "has"
+ PAPERS ||--o{ CITATIONS_REFERENCES : "cites / cited_by"
+```
+
+---
+
+## 2. 数据表结构详述 (Table Schema Details)
+
+### 2.1 papers 表 (文献元数据)
+存储文献的核心元数据和本地物理存储路径。
+- **索引**:
+ - `idx_papers_doi` -> 基于 `doi`
+ - `idx_papers_arxiv_id` -> 基于 `arxiv_id`
+
+### 2.2 citations_references 表 (引文与参考文献拓扑)
+多对多关联表,存储文献之间的引用网络(即拓扑星系图的基础数据)。
+- **复合主键**:`(source_bibcode, target_bibcode)`
+- **索引**:
+ - `idx_citations_ref_source` -> 优化以 `source_bibcode` 查询参考文献
+ - `idx_citations_ref_target` -> 优化以 `target_bibcode` 查询被引文献
+
+### 2.3 notes 表 (高亮与阅读笔记)
+存储学者在阅读器中对特定段落创建的高亮和笔记。
+- **外键**:`bibcode` 级联删除 (`ON DELETE CASCADE`)。
+- **索引**:
+ - `idx_notes_bibcode` -> 优化单篇文献的笔记列表查询。
+
+---
+
+## 3. 数据库迁移说明
+迁移脚本存放在 `migrations/` 下,服务启动时(`src/main.rs`)会自动调用 `sqlx::migrate!().run(&pool).await` 自动部署:
+1. `20260608000000_init.sql`:初始化 `papers` 与 `citations_references` 结构。
+2. `20260608000001_notes.sql`:添加 `notes` 笔记高亮表,并为关联建立级联删除。
diff --git a/docs/deployment.md b/docs/deployment.md
new file mode 100644
index 0000000..460efce
--- /dev/null
+++ b/docs/deployment.md
@@ -0,0 +1,46 @@
+# AstroResearch Deployment Guide / 部署指南
+
+AstroResearch 的后端服务是由 Rust 编译出的单执行文件,它内置托管了前端 React 的静态构建资源,因此生产部署十分简单。
+
+---
+
+## 1. 系统要求与环境依赖 (Requirements)
+
+- **操作系统**:Linux / macOS / Windows
+- **运行环境**:
+ - Node.js (v18+) 用以构建前端 React 资源
+ - Rust (1.75+) 用以编译后端 Axum 进程
+ - SQLite (自动内置,无需单独部署)
+
+---
+
+## 2. 生产构建步骤 (Production Build Steps)
+
+### 步骤 1:构建 React 前端静态资源
+进入 `dashboard` 文件夹,安装依赖并执行编译命令。编译产物会自动输出在 `dashboard/dist` 目录下:
+```bash
+cd dashboard
+npm install
+npm run build
+```
+
+### 步骤 2:编译 Rust 后端二进制文件
+返回项目根目录,通过 Cargo 构建 Release 版本的执行文件。编译后的程序会内置链接 `dashboard/dist` 下的全部静态资源:
+```bash
+cd ..
+cargo build --release
+```
+编译产物位于 `target/release/astroresearch`。
+
+---
+
+## 3. 服务部署与启动 (Running in Production)
+
+1. 将编译出来的 `target/release/astroresearch` 二进制文件部署到目标服务器。
+2. 在二进制文件同一目录下,创建并填写 `.env` 环境变量配置文件(可从根目录的 `.env.example` 复制模板)。
+3. 确保本地相对路径下拥有天文对照词典文件 `dictionary.txt`。
+4. 运行后端服务:
+ ```bash
+ ./astroresearch
+ ```
+5. 进程将默认在后台启动并监听 `http://localhost:8000` 端口。你可以通过 Nginx 将此端口反向代理到公网 80/443 端口。
diff --git a/docs/design.md b/docs/design.md
new file mode 100644
index 0000000..784a664
--- /dev/null
+++ b/docs/design.md
@@ -0,0 +1,44 @@
+# AstroResearch Design Systems / 设计系统与交互体验
+
+AstroResearch 的前端界面设计坚持“未来科技感与学术沉浸”的理念,结合了现代网页设计的高级质感。
+
+---
+
+## 1. 视觉系统 (Visual Palette)
+
+### 1.1 精致双色主题
+
+AstroResearch 完美适配了深色与浅色模式。使用精挑细选的 HSL 柔和色彩代替刺眼的饱和色:
+
+| 模式 | 背景色 | 主文本色 | 卡片容器 | 毛玻璃效果 (Glassmorphism) |
+| :--- | :--- | :--- | :--- | :--- |
+| **深色模式** | 深夜极光黑 (`#090d16`) | 纯净雪白 (`#f8fafc`) | 磨砂深灰 (`bg-slate-900/60`) | 边框: `border-slate-800/80`, 模糊: `backdrop-blur-md` |
+| **浅色模式** | 雅致灰石色 (`#f8fafc`) | 深石板色 (`#0f172a`) | 磨砂亮白 (`bg-white/60`) | 边框: `border-slate-200/80`, 模糊: `backdrop-blur-md` |
+
+---
+
+## 2. 核心交互组件 (Key Interactive Components)
+
+### 2.1 引文星系图谱 (Citation Galaxy Map)
+- **底层技术**:完全脱离第三方庞大的 D3/G6 依赖,基于 HTML5 `