Andersson, L. E.; Whitaker, E. A. NASA Catalogue of Lunar Nomenclature. NASA RP-1097. 1982.
Blue, Jennifer. Gazetteer of Planetary Nomenclature. USGS. July 25, 2007 [2007-08-05].
Bussey, B.; Spudis, P. The Clementine Atlas of the Moon. New York: Cambridge University Press. 2004. ISBN 978-0-521-81528-4.
Cocks, Elijah E.; Cocks, Josiah C. Who's Who on the Moon: A Biographical Dictionary of Lunar Nomenclature. Tudor Publishers. 1995. ISBN 978-0-936389-27-1.
McDowell, Jonathan. Lunar Nomenclature. Jonathan's Space Report. July 15, 2007 [2007-10-24].
Menzel, D. H.; Minnaert, M.; Levin, B.; Dollfus, A.; Bell, B. Report on Lunar Nomenclature by the Working Group of Commission 17 of the IAU. Space Science Reviews. 1971, 12 (2): 136–186. Bibcode:1971SSRv...12..136M. doi:10.1007/BF00171763.
Moore, Patrick. On the Moon. Sterling Publishing Co. 2001. ISBN 978-0-304-35469-6.
Price, Fred W. The Moon Observer's Handbook. Cambridge University Press. 1988. ISBN 978-0-521-33500-3.
Rükl, Antonín. Atlas of the Moon. Kalmbach Books. 1990. ISBN 978-0-913135-17-4.
Webb, Rev. T. W. Celestial Objects for Common Telescopes 6th revised. Dover. 1962. ISBN 978-0-486-20917-3.
Whitaker, Ewen A. Mapping and Naming the Moon. Cambridge University Press. 1999. ISBN 978-0-521-62248-6.
Wlasuk, Peter T. Observing the Moon. Springer. 2000. ISBN 978-1-85233-193-1.
外部链接
维基月球在线解说-安德逊陨石坑
Andersson, L.E., and E.A. Whitaker, 美国宇航局月球地名目录, 美国宇航局参考出版物1097, 1982年10月.
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...