This is a valid RSS feed.
This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.
line 108, column 0: (15 occurrences) [help]
<description><p dir="auto"><img src="https://upload.wikimedia ...
</channel>
^
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss">
<channel>
<title>OpenStreetMap diary entries</title>
<description>Recent diary entries from users of OpenStreetMap</description>
<link>https://www.openstreetmap.org/diary</link>
<image>
<url>https://www.openstreetmap.org/assets/mag_map-rss2.0-2973595662b8a92522b315b6c69bf5ee9bec75e07d702c5932f114c44a6251ea.png</url>
<title>OpenStreetMap diary entries</title>
<width>100</width>
<height>100</height>
<link>https://www.openstreetmap.org/diary</link>
</image>
<item>
<title>그</title>
<link>https://www.openstreetmap.org/user/RealKorean_2828/diary/407035</link>
<guid>https://www.openstreetmap.org/user/RealKorean_2828/diary/407035</guid>
<description><p dir="auto">OSM모임이나 협회 같은거 우리나라에도 있으면 좋겠다 바로 옆나라 일본도 있던데</p>
</description>
<dc:creator>RealKorean_2828</dc:creator>
<pubDate>Sun, 06 Jul 2025 08:58:54 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/RealKorean_2828/diary/407035#comments</comments>
</item>
<item>
<title>Micromapping Latrobe Valley</title>
<link>https://www.openstreetmap.org/user/aussierider75/diary/407034</link>
<guid>https://www.openstreetmap.org/user/aussierider75/diary/407034</guid>
<description><h1 dir="auto" id="newborough-has-been-fully-micromapped-that-includes-powerlines-street-lights-street-trees-and-underground-fire-hydrants-roads-have-been-edited-and-instead-of-basic-lines-they-now-follow-the-center-point-of-the-road-perfectly">Newborough has been fully micromapped, that includes: powerlines, street lights, street trees and underground fire hydrants. Roads have been edited and instead of basic lines, they now follow the center point of the road perfectly.</h1>
</description>
<dc:creator>aussierider75</dc:creator>
<pubDate>Sun, 06 Jul 2025 01:00:03 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/aussierider75/diary/407034#comments</comments>
<geo:lat>-38.18505225452746</geo:lat>
<geo:long>146.29046648740768</geo:long>
<georss:point>-38.18505225452746 146.29046648740768</georss:point>
</item>
<item>
<title>Grünpfeil für Radfahrer: Geeignete Orte finden</title>
<link>https://www.openstreetmap.org/user/Discostu36/diary/407033</link>
<guid>https://www.openstreetmap.org/user/Discostu36/diary/407033</guid>
<description><p dir="auto">Seit dem Frühjahr 2020 gibt es in Deutschland ein neues Verkehrszeichen: den <a href="https://www.stvo2go.de/gruenpfeil-radverkehr/" rel="nofollow noopener noreferrer">Grünpfeil nur für Radfahrende</a>. Es erlaubt Radfahrenden, auch bei roter Ampel nach rechts abzubiegen. Ich habe mich gefragt, ob ich mit Hilfe von OpenStreetMap automatisch Stellen raussuchen kann, bei denen die Aufstellung so eines Zeichens sinnvoll wäre.</p>
<h3 dir="auto" id="wo-sind-solche-zeichen-sinnvoll">Wo sind solche Zeichen sinnvoll?</h3>
<p dir="auto">Wenn ich meine persönliche Erfahrung und die gesetzlichen Vorgaben (<a href="https://www.gesetze-im-internet.de/stvo_2013/__37.html" rel="nofollow noopener noreferrer">StVO</a>, <a href="https://www.verwaltungsvorschriften-im-internet.de/bsvwvbund_26012001_S3236420014.htm##:~:text=Wechsellichtzeichen" rel="nofollow noopener noreferrer">VwV-StVO</a>) zusammennehme, ist der Grünpfeil für Radfahrende vor allem in dieser Situation sinnvoll: <strong>Wenn ich aus einer Wohnstraße komme (kein Radweg vorhanden) und rechts auf eine Straße einbiegen will, die einen abgetrennten Radweg hat.</strong> Da ich hier nur auf querenden Fuß- und Radverkehr achten muss, ist ein sicheres Abbiegen nach rechts auch bei rot in der Regel möglich.</p>
<h3 dir="auto" id="overpass-query-finden">Overpass-Query finden.</h3>
<p dir="auto">Ich will die Abfrage nicht zu kompliziert machen, aussortierne kann ich ja immer noch. Ich will also wissen, <strong>wo Ampeln auf Wohnstraßen stehen</strong>, bei denen <strong>im Umkreis von 10 Metern ein Radweg oder ein getrennter Rad-/Fußweg</strong> existiert.</p>
<p dir="auto">Die gesuchten Merkmale lassen sich so in OSM-Tags fassen:</p>
<ul dir="auto">
<li>Die Ampel ist ein <code dir="auto">node</code> mit <code dir="auto">highway=traffic_signals</code></li>
<li>Sie liegt auf einer <code dir="auto">way</code> mit <code dir="auto">highway=residential</code></li>
<li>In der Nähe (max. 10 m) existiert ein:
<ul dir="auto">
<li><code dir="auto">way</code> mit <code dir="auto">highway=cycleway</code><br>
oder</li>
<li><code dir="auto">way</code> mit <code dir="auto">highway=path</code> <strong>und</strong> <code dir="auto">bicycle=designated</code> <strong>und</strong> <code dir="auto">segregated=yes</code></li>
</ul>
</li>
</ul>
<p dir="auto">Mithilfe von ChatGPT (ja, ich weiß, aber ich finde die Overpass-QL echt schwierig), habe ich diesen funktionierenden Query gefunden:</p>
<pre dir="auto"><code>[out:json][timeout:25];
// 1. Wohnstraßen und zugehörige Ampeln
way["highway"="residential"]({{bbox}})-&gt;.residentials;
node(w.residentials)["highway"="traffic_signals"]-&gt;.signals;
// 2. Radwege nach OSM-Tagging-Standards
(
way["highway"="cycleway"]({{bbox}});
way["highway"="path"]["bicycle"="designated"]["segregated"="yes"]({{bbox}});
)-&gt;.cycleways;
// 3. Finde Ampeln, die innerhalb von 10 m zu einem Radweg liegen
node.signals(around.cycleways:10)-&gt;.relevant_signals;
.relevant_signals out center;
</code></pre>
<p dir="auto">👉 <a href="https://overpass-turbo.eu/s/27hJ" rel="nofollow noopener noreferrer">Abfrage in Overpass Turbo öffnen</a></p>
<h3 dir="auto" id="und-jetzt">Und jetzt?</h3>
<p dir="auto">Als nächten Schritt werde ich die Ergebnisse für meine Heimatstadt auswerten (tatsächliche Eignung mithilfe von Mapillary oder Sichtung vor Ort prüfen) und anschließend bei der Verwaltung anregen, an diesen Stellen diese Schilder aufzustellen.</p>
</description>
<dc:creator>Discostu36</dc:creator>
<pubDate>Sat, 05 Jul 2025 13:27:19 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Discostu36/diary/407033#comments</comments>
</item>
<item>
<title>Bot destroying powerlines</title>
<link>https://www.openstreetmap.org/user/Maps%20Man/diary/407032</link>
<guid>https://www.openstreetmap.org/user/Maps%20Man/diary/407032</guid>
<description><p dir="auto">I notice all across China that bots have destroyed powerlines and now they are missing many segments that were previously complete.</p>
</description>
<dc:creator>Maps Man</dc:creator>
<pubDate>Sat, 05 Jul 2025 13:10:38 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Maps%20Man/diary/407032#comments</comments>
</item>
<item>
<title>Engagement et rencontres : un retour sur SotM Global 2024 au Kenya</title>
<link>https://www.openstreetmap.org/user/Abibis/diary/407030</link>
<guid>https://www.openstreetmap.org/user/Abibis/diary/407030</guid>
<description><p dir="auto"><img src="https://upload.wikimedia.org/wikipedia/commons/0/04/State_of_the_map_Kenya_2024.jpg" alt="State of the Map 2024, Nairobi, Kenya" loading="lazy">
J’ai eu l’honneur de participer en présentiel à la première conférence State of the Map Global 2024 organisée en Afrique, au Kenya. Cette expérience a été marquante et enrichissante, me permettant de rencontrer de nombreux acteurs passionnés engagés dans divers projets. Bien que je sois la seule représentante du Bénin, je me suis sentie pleinement intégrée dans cette dynamique internationale. Retrouver des amis de la communauté Wikimedia à SotM a été une agréable surprise.</p>
<p dir="auto">Les sessions, présentations et ateliers étaient d’une qualité exceptionnelle. Bien que je n’aie pas animé d’atelier cette fois-ci, je suis plus déterminée que jamais à le faire lors des prochaines éditions. J’ai particulièrement apprécié les interventions sur l’égalité des genres, notamment celle d’Anastazia Caroll sur Women in OSM Tech, ainsi que celle de Bénédicta, qui a mis en lumière les perspectives de la participation des femmes dans OpenStreetMap.
La réunion des membres votants de HOT m’a permis de rencontrer le président et d’autres membres de l’organisation. Ce fut une occasion précieuse d’échanger des idées et de mieux comprendre les dynamiques internes de HOT. Ces interactions ont renforcé mon engagement au sein de la communauté et m’ont permis de nouer des relations professionnelles significatives.</p>
<p dir="auto">Je tiens à exprimer ma profonde gratitude à OSM Kenya et au groupe de travail de SotM pour l’organisation exceptionnelle de cet événement, ainsi qu’à HOT pour m’avoir accordé cette bourse qui m’a permis de vivre cette expérience unique. Un immense merci également à l’équipe organisatrice et aux bénévoles, qui ont fait de cette conférence un véritable succès.
Je suis pleinement motivée à poursuivre mon engagement et à jouer un rôle plus actif lors des prochaines éditions.</p>
<p dir="auto">Rendez-vous à Manille pour SotM 2025 !</p>
<p dir="auto"><img src="https://upload.wikimedia.org/wikipedia/commons/8/87/SotM_Global_2024_au_Kenya_04.jpg" alt="Texte alternatif" loading="lazy"></p>
</description>
<dc:creator>Abibis</dc:creator>
<pubDate>Fri, 04 Jul 2025 19:54:43 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Abibis/diary/407030#comments</comments>
</item>
<item>
<title>جيل مرغم علي التاريخي </title>
<link>https://www.openstreetmap.org/user/%D9%86%D8%B5%D8%B1%D9%82%D8%A7%D8%A6%D8%AF%D8%A7%D8%AD%D9%85%D8%AF%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84%D9%8A/diary/407029</link>
<guid>https://www.openstreetmap.org/user/%D9%86%D8%B5%D8%B1%D9%82%D8%A7%D8%A6%D8%AF%D8%A7%D8%AD%D9%85%D8%AF%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84%D9%8A/diary/407029</guid>
<description><h4 dir="auto" id="section">جبل مرغم علي التاريخي</h4>
<p dir="auto">يعد جبل مرغم علي أحد المعالم التاريخية والأثرية البارزة في قرية ضريبة العرش اليمنية، حيث يحمل بين صخوره آثارًا تعود إلى عهد الدولة الحميرية. يقع هذا الجبل في موقع استراتيجي، إذ كان يستخدم كحصن دفاعي لحماية قلعة الملك الحميري شمر يَهرعِش، التي تبعد عنه حوالي 9 كم في مدينة رداع.
#### المعالم الأثرية
رغم مرور الزمن، لا تزال بعض بقايا القلاع الحميرية قائمة على قمة الجبل، مما يدل على براعة الهندسة العسكرية في ذلك العصر. هذه القلاع كانت مبنية من الحجارة الصلبة، مما ساعدها على الصمود أمام عوامل الطبيعة لقرون طويلة.
#### الموقع الجغرافي والطبيعة
يتميز جبل مرغم علي بتضاريسه الوعرة وارتفاعه الذي يوفر إطلالة رائعة على المناطق المجاورة. كما أن موقعه يجعله نقطة جذب للباحثين في التاريخ والجغرافيا، حيث يمكن للزوار استكشاف بقايا التحصينات القديمة والاستمتاع بجمال الطبيعة المحيطة.
#### أهمية الجبل في السياحة والتراث
يعد هذا الجبل من المواقع التي يمكن أن تسهم في تنشيط السياحة التاريخية في اليمن، خاصة لمحبي الآثار والتاريخ القديم. فهو جزءًا من مسار سياحي يشمل قلعة شمر يَهرعِش وقرية موكل وغيرها من المواقع الحميرية في المنطقة</p>
</description>
<dc:creator>نصرقائداحمدالهلالي</dc:creator>
<pubDate>Fri, 04 Jul 2025 19:46:50 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/%D9%86%D8%B5%D8%B1%D9%82%D8%A7%D8%A6%D8%AF%D8%A7%D8%AD%D9%85%D8%AF%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84%D9%8A/diary/407029#comments</comments>
<geo:lat>14.3535004</geo:lat>
<geo:long>44.7821999</geo:long>
<georss:point>14.3535004 44.7821999</georss:point>
</item>
<item>
<title>Tag: highway = bus_stop</title>
<link>https://www.openstreetmap.org/user/bernward1/diary/407028</link>
<guid>https://www.openstreetmap.org/user/bernward1/diary/407028</guid>
<description><p dir="auto">Lange habe ich gedacht, dass dieses Tag durch PTV2 überflüssig werden wird, bis ist gemerkt habe dass es notwendig ist.</p>
<p dir="auto">Das Tag “highway=bus_stop” (nur zulässig auf Knoten) ist nicht veraltet. Es ist notwendig damit die Bushaltestelle in vielen Karten dargestellt wird. Z.B.: auf der Standardkarte openstreetmap.org</p>
<p dir="auto">Im Wiki steht auf der Seite Tag:highway=bus_stop in der Spalte “Verwendung” nur “Kompatibilität”. Die mehr als 10 Jahren von PTV2 haben aber gezeigt, dass das Tag weiterhin gebraucht wird.</p>
<p dir="auto">Es müsste “<b>verpflichtend</b>” heißen. (Auf der englischen Seite heißt der Eintrag auch Required)</p>
</description>
<dc:creator>bernward1</dc:creator>
<pubDate>Fri, 04 Jul 2025 09:54:15 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/bernward1/diary/407028#comments</comments>
</item>
<item>
<title>First Steps in Mapping: My Experience with Transmission Projects and OSM</title>
<link>https://www.openstreetmap.org/user/%EA%B2%BD%EC%82%AC%EB%9E%91/diary/407027</link>
<guid>https://www.openstreetmap.org/user/%EA%B2%BD%EC%82%AC%EB%9E%91/diary/407027</guid>
<description><p dir="auto">안녕하세요, OSM 커뮤니티 여러분!</p>
<p dir="auto">최근 제가 참여한 송전선 계획 및 라우팅 프로젝트를 계기로 오픈스트리트맵(OpenStreetMap, 이하 OSM)에 대해 다시 한 번 깊이 생각해보게 되어, 이렇게 일기 형식으로 공유하게 되었습니다.</p>
<p dir="auto">🛰️ 현장 측량과 OSM의 만남
송전선 노선을 계획하고 설계하는 과정에서 저는 다음과 같은 업무에 참여했습니다:</p>
<p dir="auto">지형 분석을 통한 송전선 라우팅 및 우회 노선 평가</p>
<p dir="auto">GNSS 장비를 활용한 좌표 수집 및 기록 작업</p>
<p dir="auto">QGIS와 AutoCAD를 이용한 노선 시각화 및 도면 제작</p>
<p dir="auto">공간 데이터를 기반으로 한 노선 최적화 및 보고서 작성</p>
<p dir="auto">이 과정에서 지도와 공간 정보가 얼마나 중요한 역할을 하는지 직접 체감할 수 있었고, 자연스럽게 오픈스트리트맵과 같은 개방형 지도 플랫폼의 가치를 떠올리게 되었습니다.</p>
<p dir="auto">🌍 OSM의 중요성을 느낀 계기
현장에 나가면 종종 공식 지도에는 없는 마을길, 임도, 건물을 만나게 됩니다.
놀랍게도, 그중 상당수는 OSM에는 이미 반영되어 있거나 반대로 추가 기여가 필요한 공간들이었습니다.</p>
<p dir="auto">단순한 공공기관의 지도보다도, OSM이 오히려 더 현실에 가까운 정보를 담고 있는 경우를 직접 경험하면서,
“나도 이 플랫폼에 직접 기여해보고 싶다”는 마음이 생겼습니다.</p>
<p dir="auto">💡 앞으로의 계획
프로젝트 중 수집한 위치 정보와 현장 관찰을 바탕으로 도로, 건물, 포인트 등의 정보를 직접 OSM에 추가할 계획입니다.</p>
<p dir="auto">주변의 측량 및 엔지니어링 분야 동료들에게 OSM의 가치와 기여 방법을 공유해볼 생각입니다.</p>
<p dir="auto">앞으로도 다양한 인프라 프로젝트에 참여하면서, 기여가 필요한 지역을 중심으로 활동을 이어가고자 합니다.</p>
<p dir="auto">OSM은 단순히 지도를 그리는 도구가 아니라, 사람과 공간을 연결하고, 누구도 지도에서 소외되지 않도록 돕는 플랫폼이라는 점에서 큰 감명을 받았습니다.</p>
<p dir="auto">읽어주셔서 감사합니다! 앞으로도 자주 글을 남기고, 커뮤니티 여러분들과도 소통하며 성장하고 싶습니다.
피드백이나 팁, 조언이 있다면 언제든지 환영합니다.</p>
<p dir="auto">행복한 매핑 되세요!
– [69intv.com]</p>
</description>
<dc:creator>경사랑</dc:creator>
<pubDate>Fri, 04 Jul 2025 09:46:36 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/%EA%B2%BD%EC%82%AC%EB%9E%91/diary/407027#comments</comments>
</item>
<item>
<title>Edificios en Pachuca</title>
<link>https://www.openstreetmap.org/user/El%20ArquiPachuca/diary/407025</link>
<guid>https://www.openstreetmap.org/user/El%20ArquiPachuca/diary/407025</guid>
<description><p dir="auto">no se que poner jaja</p>
</description>
<dc:creator>El ArquiPachuca</dc:creator>
<pubDate>Fri, 04 Jul 2025 05:50:41 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/El%20ArquiPachuca/diary/407025#comments</comments>
</item>
<item>
<title>bonjour </title>
<link>https://www.openstreetmap.org/user/giteamoudou/diary/407024</link>
<guid>https://www.openstreetmap.org/user/giteamoudou/diary/407024</guid>
<description><p dir="auto">Excellent accueil par Mafhoud et sa famille. Il n’est pas avare de renseignements. Cuisine excellente, bien mieux qu’au restaurant ! Sanitaires très propres. On y reviendra..</p>
</description>
<dc:creator>giteamoudou</dc:creator>
<pubDate>Thu, 03 Jul 2025 20:41:20 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/giteamoudou/diary/407024#comments</comments>
<geo:lat>31.243878548423407</geo:lat>
<geo:long>-6.588766295017251</geo:long>
<georss:point>31.243878548423407 -6.588766295017251</georss:point>
</item>
<item>
<title>INTERNEE</title>
<link>https://www.openstreetmap.org/user/MugerwaHukasha/diary/407023</link>
<guid>https://www.openstreetmap.org/user/MugerwaHukasha/diary/407023</guid>
<description>
<p dir="auto">Activities Performed</p>
<ul dir="auto">
<li>Participated in ‘‘transmission grid planning’’, applying surveying and cartographic principles to infrastructure development.</li>
<li>Conducted line routing and selection exercises, evaluating terrain and land use for optimal transmission line alignment.</li>
<li>'’Collected and recorded coordinates’’ using GNSS equipment to support planning and line diversion strategies.</li>
<li>Assisted with **line diversion assessments by integrating spatial analysis and route optimization techniques.</li>
<li>Engaged in GIS-based mapping and spatial data management for transmission corridors and project layouts.</li>
<li>Supported **drawing office tasks including drafting, editing, and refining technical layouts for transmission lines using AutoCAD and GIS software.</li>
<li>Contributed to the preparation of survey reports*, integrating observations, geospatial data, and recommendations for planning documentation.</li>
</ul>
<p dir="auto">Skills Applied</p>
<ul dir="auto">
<li>Georeferencing and symbology in GIS</li>
<li>AutoCAD drafting and technical alignment</li>
<li>Thematic layering and map production</li>
<li>Field coordination using QField and GNSS tools</li>
<li>Formal report writing and spatial data interpretation</li>
</ul>
<p dir="auto">Today’s tasks deepened my understanding of how surveying and cartographic techniques drive transmission infrastructure planning. The integration of GIS with field activities reaffirmed the importance of spatial accuracy in energy distribution networks. I was particularly engaged with the line diversion analysis, which challenged both technical reasoning and spatial decision-making. I continue to learn from my mentors and refine my approach to precision mapping and collaborative survey documentation.</p>
</description>
<dc:creator>MugerwaHukasha</dc:creator>
<pubDate>Thu, 03 Jul 2025 12:29:14 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/MugerwaHukasha/diary/407023#comments</comments>
</item>
<item>
<title>Straße/ Weg falsch eingezeichnet. Führt zu unschönen Problemen</title>
<link>https://www.openstreetmap.org/user/BilleBu/diary/407022</link>
<guid>https://www.openstreetmap.org/user/BilleBu/diary/407022</guid>
<description><p dir="auto"><a href="https://www.openstreetmap.org/#map=17/54.618512/9.361435" rel="nofollow noopener noreferrer" dir="auto">osm.org/#map=17/54.618512/9.361435</a></p>
<p dir="auto">Hallo alle zusammen,</p>
<p dir="auto">bin neu hier und habe etwas in der Karte entdeckt, was so nicht richtig ist, bzw. den wahren örtlichen Gegebenheiten entspricht.
Diese Punkt-Stichlinie zeigt wohl einen “Fußweg” an.
Bei dem Teilstück von der Hauptstrasse kommen in Richtung Waldstück neben der 2a, handelt es sich um eine private Zufahrt, also Privatgrundstück (nämlich meins), zum Haus.
Bei dem “Fußweg” handelt es sich ebenfalls um ein privates Grundstück.
Es ist leider so dargestellt das man dort durchfahren/ durchgehen kann.
Das geht nicht: dort befindet sich eine feste Absperrung.
Zumal es sich hier um private Grundstücke handelt, wo der allgemeine und öffentliche Zutritt nicht erlaubt ist.
Es verursacht hier sehr unschöne Probleme, weil sich Menschen auf dieses Kartenmaterial berufen.
Ich würde mich sehr freuen, wenn hier jemand ist, der das zeitnah korrigieren kann.
Vielen Dank</p>
</description>
<dc:creator>BilleBu</dc:creator>
<pubDate>Thu, 03 Jul 2025 10:04:43 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/BilleBu/diary/407022#comments</comments>
</item>
<item>
<title>Черчение контуров зданий по фотографиям схем строек</title>
<link>https://www.openstreetmap.org/user/solenoid%20jam/diary/407021</link>
<guid>https://www.openstreetmap.org/user/solenoid%20jam/diary/407021</guid>
<description>
<p dir="auto">Не высокая частота обновления спутниковых снимков, не всегда позволяет добавлять новые здания. В этой ситуации можно воспользоваться схемами с паспортов строек.
При перерисовке схемы возникает проблема, состоящая в том, что фотографии схем содержат искажение перспективы, которое надо как то исправлять. Ниже предложен не сложный способ того, как можно это сделать с помощью растрового графического редактора GIMP, векторного - Inkscape, а так же JOSM с установленным плагином <a href="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImportVec" rel="nofollow noopener noreferrer">ImportVec</a>.</p>
<ul dir="auto">
<li>
<p dir="auto">На первом изображении видно искажение перспективы возникшее в результате отклонения фокальной плоскости фотокамеры относительно плоскости схемы стройки.</p>
<p dir="auto"><img src="https://imgur.com/Ux0bc1A.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Загружаем изображение в редактор GIMP, и в меню “Вид” включаем отображение сетки</p>
<p dir="auto"><img src="https://imgur.com/kGgiu2X.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Далее с помощью инструмента 3D преобразование или Перспектива, совмещаем прямоугольные границы рамки паспорта, с направляющими сетки так, что бы горизонтальные линии плаката совпали с горизонтальными линиями сетки, а вертикальные, с вертикальными. Для наклона изображения следует зажимать клавишу Ctrl. В результате мы должны получить вполне правильный прямоугольник. После этого, можно обрезать лишние края, и добавить контрастности изображения для увеличения чёткости линий.
Тут важно отметить, что на фото обязательно должен быть виден весь паспорт, а не только его часть со схемой, поскольку выравнивание происходит по прямоугольной форме края его рамки.
<img src="https://imgur.com/gOP4ouC.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Сохраняем изображение, и открываем его в редакторе Inkscape. Теперь необходимо обвести контуры здания. Так же следует обвести контуры уже существующих зданий, границ и дорог, для того что бы по этими линиями можно было привязаться к уже существующим объектам карты в JOSM. Сохраняем результат в SVG, не забыв перед этим удалить из файла растровую подложку.</p>
<p dir="auto"><img src="https://i.imgur.com/D1JxXCI.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Загружаем в JOSM данные OSM интересующего нас участка</p>
<p dir="auto"><img src="https://i.imgur.com/Pr5nLMy.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Далее, поверх него создаём новый пустой слой, и перетаскиваем (d&amp;d) на него полученный SVG файл. Как видно на скриншоте, масштаб и положение линий не совпадают со слоем загруженных данных.</p>
<p dir="auto"><img src="https://i.imgur.com/auKMZsK.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Теперь выделяем все линии, и с помощью масштабирования, и поворота, добиваемся совмещения линий дорог и зданий которые мы обвели, с уже существующими объектами карты, и фотоподложки.</p>
<p dir="auto"><img src="https://i.imgur.com/cgDZW1q.png" alt="" loading="lazy"></p>
</li>
<li>
<p dir="auto">Выделяем контур интересующего нас здания, копируем его ( ctrl+c), и переключившись на слой с данными OSM вставляем (ctrl+v). Контур будет вставлен в редактируемый слой, но не на то же место где он находился в его родном слое. Это легко исправить простым перетаскиванием, до совпадения с полупрозрачным контуром этого же объекта в другом слое, где мы его выровняли. Остаётся добавить тэги, и выгрузить данные в OSM.
<img src="https://i.imgur.com/sGlKPjq.png" alt="" loading="lazy"></p>
</li>
</ul>
<p dir="auto">Таким способом можно достаточно просто и быстро переносить данные со схем строящихся зданий, дорог и других объектов.</p>
</description>
<dc:creator>solenoid jam</dc:creator>
<pubDate>Thu, 03 Jul 2025 03:38:07 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/solenoid%20jam/diary/407021#comments</comments>
</item>
<item>
<title>غذای سالم</title>
<link>https://www.openstreetmap.org/user/Dietfoodgym/diary/407019</link>
<guid>https://www.openstreetmap.org/user/Dietfoodgym/diary/407019</guid>
<description><p dir="auto">داشتن یه برنامه غذایی سالم شمارو از تک تک مریضی ها حفظ و یه بدنت کامل سالم به خودتون هدیه میدین کافیه با ما تماس بگیرید و برنامه غذایی اون رو درب منزل دریافت کنید</p>
</description>
<dc:creator>Dietfoodgym</dc:creator>
<pubDate>Wed, 02 Jul 2025 06:26:31 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Dietfoodgym/diary/407019#comments</comments>
<geo:lat>35.58129418751151</geo:lat>
<geo:long>53.37161993263226</geo:long>
<georss:point>35.58129418751151 53.37161993263226</georss:point>
</item>
<item>
<title>Capturing the whole city of Salzburg in 360°: Better Mounting, Better Coverage (Part 3)</title>
<link>https://www.openstreetmap.org/user/Negreheb/diary/407018</link>
<guid>https://www.openstreetmap.org/user/Negreheb/diary/407018</guid>
<description><p dir="auto">Part 1: <a href="https://www.openstreetmap.org/user/Negreheb/diary/405306" rel="nofollow noopener noreferrer" dir="auto">osm.org/user/Negreheb/diary/405306</a><br>
Part 2: <a href="https://www.openstreetmap.org/user/Negreheb/diary/406030" rel="nofollow noopener noreferrer" dir="auto">osm.org/user/Negreheb/diary/406030</a></p>
<h1 dir="auto" id="mapping-salzburg--update-3-better-mounting-better-coverage">360° Mapping Salzburg – Update #3: Better Mounting, Better Coverage</h1>
<p dir="auto">Hello OSM Community,</p>
<p dir="auto">I’m continuing my effort to capture 360° images of the city of Salzburg for use in <strong>Mapillary</strong> and <strong>Panoramax</strong>. The goal remains the same: improve OpenStreetMap data, especially in areas with unresolved notes where better visual context can help.</p>
<h2 dir="auto" id="progress-so-far">Progress So Far</h2>
<p dir="auto">Here’s the current state of coverage from my 360° image collection:</p>
<p dir="auto"><img src="https://i.imgur.com/dtzhAHQ.png" alt="Salzburg" loading="lazy"></p>
<h2 dir="auto" id="my-route-planning-setup">My Route Planning Setup</h2>
<p dir="auto">To plan my routes, I’ve been using <strong>OSMAnd’s</strong> built-in GPX recording and map display. This allows me to see where I’ve already been and make instant decisions on which streets to cover next - without having a router trying to direct me back on track constantly.</p>
<p dir="auto">I can also choose freely whether to ride on streets, paths, or cycleways depending on conditions. This flexibility has proven much more practical than relying on pre-planned routes.</p>
<h2 dir="auto" id="managing-photos-for-upload">Managing Photos for Upload</h2>
<p dir="auto">On the photo management side, I’ve kept my setup from last time: using the <strong>command-line tools</strong> from both <strong>Mapillary</strong> and <strong>Panoramax</strong>. They continue to work flawlessly and are far more stable and efficient than the GUI options.</p>
<p dir="auto">However, I still need to manually filter the images - removing duplicates taken at traffic lights, while standing still, or checking my phone. It’s a bit of work, but it ensures that the uploaded sequences are clean and useful. I’m not sure i want this with the video-mode - but with the new mounting it might be worth a try.</p>
<h2 dir="auto" id="whats-changed-since-the-last-post">What’s Changed Since the Last Post</h2>
<p dir="auto">One major improvement: I switched from a <strong>helmet-mounted camera</strong> to a <strong>selfie stick mounted directly on my bicycle</strong>. This setup means I can now look around naturally (better safety) while riding without affecting the camera’s field of view.</p>
<p dir="auto"><img src="https://i.imgur.com/MC0uazr.jpeg" alt="Clamping-Setup" loading="lazy"></p>
<p dir="auto">Additionally, I’ve started adding a <strong>nadir</strong> - a small branded graphic at the bottom of the image that hides the mounting point and promotes our local OSM club. I followed the excellent guide by <a href="https://www.trekview.org/blog/adding-a-custom-nadir-to-360-video-photo/" rel="nofollow noopener noreferrer">Trek View</a> to make this happen.</p>
<p dir="auto"><a href="https://www.mapillary.com/app/user/OidaHeast?lat=47.7931037&amp;lng=13.0470726&amp;z=17&amp;all_coverage=false&amp;pKey=1147948973437204&amp;focus=photo" rel="nofollow noopener noreferrer">Example picutre with Nadir on Mapillary</a></p>
<h2 dir="auto" id="reflections-on-the-new-setup">Reflections on the New Setup</h2>
<p dir="auto">The fixed camera mount provied useful so far. The image quality more consistent, but I also feel more comfortable riding. My bike has a bit of an unusual frame, which made mounting the selfie stick with clamps surprisingly easy.</p>
<h2 dir="auto" id="whats-next">What’s Next?</h2>
<p dir="auto">My goal remains ambitious: to <strong>capture all of Salzburg</strong>, street by street, and make the imagery available to everyone through <strong>Mapillary</strong> and <strong>Panoramax</strong>. I believe this kind of street-level imagery can benefit the entire OSM community—locally and beyond.</p>
<p dir="auto">If you have ideas, tools, or workflows that might help, I’d love to hear them. And if you’re local and want to collaborate, let’s connect!</p>
</description>
<dc:creator>Negreheb</dc:creator>
<pubDate>Tue, 01 Jul 2025 18:24:45 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Negreheb/diary/407018#comments</comments>
<geo:lat>47.80969602390851</geo:lat>
<geo:long>13.050178525736555</geo:long>
<georss:point>47.80969602390851 13.050178525736555</georss:point>
</item>
<item>
<title>Is There Any news about Satellite Imagery ?</title>
<link>https://www.openstreetmap.org/user/farhadGuli/diary/407015</link>
<guid>https://www.openstreetmap.org/user/farhadGuli/diary/407015</guid>
<description><p dir="auto">Dear OSM Community and Team,
Is there any possibility of accessing a newer imagery layer, such as Maxar? The current Bing Maps Aerial imagery appears to be significantly outdated, which makes it challenging to accurately update or edit map content.</p>
</description>
<dc:creator>farhadGuli</dc:creator>
<pubDate>Tue, 01 Jul 2025 09:56:25 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/farhadGuli/diary/407015#comments</comments>
</item>
<item>
<title>Better OSM Diary : ideas, reflexions, improvements</title>
<link>https://www.openstreetmap.org/user/Koreller/diary/407012</link>
<guid>https://www.openstreetmap.org/user/Koreller/diary/407012</guid>
<description><p dir="auto">I see many diaries on OSM, but unfortunately the good ones are hard to find, if they can be found at all.</p>
<p dir="auto">In this diary, I offer some perspectives, without any technical pretensions, but just for the thinking of “what it might look like” in the vein of “<a href="https://github.com/openstreetmap/openstreetmap-website/issues/3785" rel="nofollow noopener noreferrer">Reimagining the OSM.org</a>” or “<a href="https://github.com/deevroman/better-osm-org" rel="nofollow noopener noreferrer">Better-osm-org</a>” but without the technical side.</p>
<p dir="auto">This diary is a proposal, a reflection. Its aim is to offer a vision of what diaries might look like in the future.</p>
<h2 dir="auto" id="observation">Observation</h2>
<p dir="auto">Many diaries published by the community are interesting, not all of them are, but those that are would benefit from being discovered and promoted to a wider audience.</p>
<p dir="auto">Diaries are not discoverable from osm.org. When a diary is discovered, it is almost exclusively through direct sharing via an OSM communication channel (forum, Telegram, Discord, etc.).</p>
<p dir="auto">The aim is to offer ways to find interesting diaries more easily, to know which ones the community values or finds interesting.</p>
<h2 dir="auto" id="proposal">Proposal</h2>
<h3 dir="auto" id="categorise">Categorise</h3>
<p dir="auto">Allowing diaries to be categorised offers several advantages:</p>
<ul dir="auto">
<li>Easier to identify the topic(s) of a diary</li>
<li>Have a list of diaries talking of a specific topic</li>
<li>Easier to find a specific diary</li>
</ul>
<p dir="auto">A category would group together several diaries addressing the same theme.</p>
<p dir="auto">This categorisation might be done in the form of keywords, for example: #tutorial #josm #streetcomplete #sotm #telecom #esri.</p>
<h3 dir="auto" id="add-upvotes">Add upvotes</h3>
<p dir="auto">To enable the community to highlight the diaries that have generated the most interest and that they found most useful, it would be possible to add a like (or a downvote or an emoji reaction) to a diary.</p>
<p dir="auto">The same options for comments might be used to highlight the comments most appreciated by the community.</p>
<p dir="auto">This system would be very similar to GitLab for issues, or Reddit for content.</p>
<p dir="auto"><img src="https://i.postimg.cc/nrvMkf6F/Git-Lab-Reddit-vote.jpg" alt="GitLab and Reddit upvotes downvotes and reactions" loading="lazy"></p>
<h3 dir="auto" id="diaries-search">Diaries search</h3>
<p dir="auto">Once the keyword categories are in place, followed by the community’s reactions to the diaries, it will be possible to explore the diaries according to different criteria: by category, by reactions, by comments, by creation date, or even by location.</p>
<h3 dir="auto" id="community-diaries--share-a-landing-page-for-diaries">“Community Diaries &gt; Share” a landing page for diaries</h3>
<p dir="auto"><img src="https://i.postimg.cc/G37qvwbP/Community-Diaries-Share.jpg" alt="Community Diaries Share" loading="lazy"></p>
<h3 dir="auto" id="community-diaries--explore-a-page-for-curating-diaries">“Community Diaries &gt; Explore” a page for curating diaries</h3>
<p dir="auto"><img src="https://i.postimg.cc/TYhTfDdV/Community-Diaries-Explore.jpg" alt="Community Diaries Explore" loading="lazy"></p>
</description>
<dc:creator>Koreller</dc:creator>
<pubDate>Tue, 01 Jul 2025 08:36:55 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Koreller/diary/407012#comments</comments>
</item>
<item>
<title>Kann Karten nicht mehr drucken!</title>
<link>https://www.openstreetmap.org/user/FrankBuchholz/diary/407010</link>
<guid>https://www.openstreetmap.org/user/FrankBuchholz/diary/407010</guid>
<description><p dir="auto">Kann Karten nicht mehr drucken!</p>
</description>
<dc:creator>FrankBuchholz</dc:creator>
<pubDate>Mon, 30 Jun 2025 09:44:39 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/FrankBuchholz/diary/407010#comments</comments>
</item>
<item>
<title>Editing</title>
<link>https://www.openstreetmap.org/user/Ofoyrwoth/diary/407009</link>
<guid>https://www.openstreetmap.org/user/Ofoyrwoth/diary/407009</guid>
<description><p dir="auto">This is my my second day into the field of OSM, i went back and edited my home grown plce, yuh my home village and and waiting to welcome any reviews because i believe it is the right think to do and am welcoming any mistakes and am hoping to add many more places on the OSM today
I went ahead and edited my villages by adding the various buildings and trees that haven’t been mapped yet</p>
</description>
<dc:creator>Ofoyrwoth</dc:creator>
<pubDate>Mon, 30 Jun 2025 09:30:21 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Ofoyrwoth/diary/407009#comments</comments>
<geo:lat>0.055702319934704085</geo:lat>
<geo:long>32.466012239428835</geo:long>
<georss:point>0.055702319934704085 32.466012239428835</georss:point>
</item>
<item>
<title>Ventura Plaza</title>
<link>https://www.openstreetmap.org/user/Ingeniero43/diary/407006</link>
<guid>https://www.openstreetmap.org/user/Ingeniero43/diary/407006</guid>
<description><p dir="auto">Centro comercial</p>
</description>
<dc:creator>Ingeniero43</dc:creator>
<pubDate>Mon, 30 Jun 2025 02:42:23 +0000</pubDate>
<comments>https://www.openstreetmap.org/user/Ingeniero43/diary/407006#comments</comments>
<geo:lat>7.888399253680378</geo:lat>
<geo:long>-72.4968963861466</geo:long>
<georss:point>7.888399253680378 -72.4968963861466</georss:point>
</item>
</channel>
</rss>
If you would like to create a banner that links to this page (i.e. this validation result), do the following:
Download the "valid RSS" banner.
Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)
Add this HTML to your page (change the image src
attribute if necessary):
If you would like to create a text link instead, here is the URL you can use:
http://www.feedvalidator.org/check.cgi?url=http%3A//www.openstreetmap.org/diary/rss