Nous utilisons des cookies pour vous garantir la meilleure expérience sur notre site. Si vous continuez à utiliser ce dernier, nous considèrerons que vous acceptez l'utilisation des cookies. J'ai compris ! ou En savoir plus !.
Un Planet est un site Web dynamique qui agrège le plus souvent sur une seule page, le contenu de notes, d'articles ou de billets publiés sur des blogs ou sites Web afin d'accentuer leur visibilité et de faire ressortir des contenus pertinents aux multiples formats (texte, audio, vidéo, Podcast). C'est un agrégateur de flux RSS. Il s'apparente à un portail web.
Vous pouvez lire le billet sur le blog La Minute pour plus d'informations sur les RSS !
  • Canaux
  • Categories
  • Tags
  • Canaux

    3902 éléments (82 non lus) dans 55 canaux

    Dans la presse Dans la presse

    Géomatique anglophone

     
    • sur pycsw Team: Using keywords from a thesaurus as queryables

      Publié: 18 September 2024, 8:59pm CEST
      Using keywords from a thesaurus as queryables

      A common convention in catalogues is the use of keywords from a dedicated thesaurus. The assignment of these keywords can then later be used to filter or query the catalogue by these terms. To achieve this use case in pycsw, some configuration needs to be tailored. This blog post indicates the changes needed for this scenario.

      For this example we’ll use a keyword from the INSPIRE Themes thesaurus. We will define a new queryable inspiretheme, which will be populated with the relevant keyword (if present).

      You can repeat these steps for any other thesaurus.

      Extra database column

      Extend the records table in the database with an extra field for the selected thesaurus. This is usually a manual operation on the database.

      ALTER TABLE records
      ADD inspiretheme VARCHAR(255);
      
      Add parameter to pycsw

      In pycsw/core/config.py the newly created database column can be registered to pycsw.

      'pycsw:InspireTheme': 'inspiretheme',
      
      Add column to mapping

      etc/mappings.py links the pycsw parameter to the columnname in the table.

      'pycsw:InspireTheme': 'inspiretheme',
      
      Define parameter as queryable

      Which of the parameters are queryable is defined in pycsw/core/repository.py.

      'inspiretheme': self.dataset.inspiretheme,
      
      Add parameter to record results?

      Keywords are already published in records, so there is generally no need to extend the record with the new parameter. If needed you can do so in pycsw/ogc/api/records.py (Line 1150).

      Populate the parameter from record imports

      We have 2 options here, either manage the population of the column within the database as part of an insert trigger on the record.themes field. Alternatively update pycsw/core/metadata.py so the column is populated when records are imported.

      For the second option consider the following code. For each of the keyword blocks, it tries to match the thesaurus title or uri and, if matched, adds the keywords to the new parameter.

      _set(context, recobj, 'pycsw:InspireTheme', ", ".join(
          [", ".join(k.name for k in t.keywords if k.name not in [None,'']) for t in md_identification.keywords if ( hasattr(t,'thesaurus') and 
              t.thesaurus not in [None,''] and ((
                  'title' in t.thesaurus and t.thesaurus['title'] not in [None,''] and
                  t.thesaurus['title'] in ['GEMET - INSPIRE themes, version 1.0','GEMET Themes, version 2.3']
              ) or (
                  'uri' in t.thesaurus and t.thesaurus['uri'] not in [None,''] and
                  t.thesaurus['uri'] == 'http://inspire.ec.europa.eu/theme')))]))
      
      Add parameter to OGC API - Records facets

      Facets enable to further limit search results. Keywords from thesauri are very useful to add as facet. Add the paremeter to default.yml.

      facets:
          - type
          - inspiretheme
      
    • sur China vs America - World Influence Map

      Publié: 7 September 2024, 11:10am CEST par Keir Clarke
      The Global Influence Index (GII) shows the influence of the United States and China on 191 countries around the world based on 28 different economic, security, and political criteria. Using the GII's new 3D globe you can tell at a glance where in the world either the U.S. or China has the greatest influence.Individual countries on the GII globe are colored to show whether they are aligned more
    • sur Mappery: Argentina on Cow Hide

      Publié: 7 September 2024, 11:00am CEST

      Jachym Cepicky spotted this leatgher map of Argentina in Cafe Dlask in Varnsdorf

      MapsintheWild Argentina on Cow Hide

    • sur Sean Gillies: Black Squirrel volunteering

      Publié: 7 September 2024, 1:18am CEST

      Black Squirrel is the local trail half-marathon that I've finished five times since 2016. I registered to run it again this year, but had to scratch because of my Achilles tendonitis.

      Instead, I'm going to volunteer at the event. I'll be among the first at Lory State Park, helping arriving runners park their cars and find the starting line. After that, I'm going to a trail intersection to keep first-time runners on course as they pour down the Howard Trail. It's going to be a beautiful late summer morning and I'm looking forward to being part of the event.

    • sur GeoSolutions: FREE Webinar: MapStore Major Release 2024.01 and Beyond

      Publié: 6 September 2024, 2:46pm CEST

      You must be logged into the site to view this content.

    • sur Mappery: River Thames coffee table

      Publié: 6 September 2024, 2:00pm CEST

      This rather fine coffee table, which used to belong to my father, depicts the River Thames all the way from source to mouth. The river has been carved into the table and then painted silver, with both ends then wrapping around the side of the table. I’m not sure who the original crafts-person was but its quite fun!

      Happy birthday Mappery!

      MapsintheWild River Thames coffee table

    • sur Mappery: Beer for our Birthday, Mr Wainwright?

      Publié: 6 September 2024, 12:00pm CEST

      Regulars will know that we get a lot of maps in the wild which feature, wine, spirits or beer. I couldn’t resist this Wainwright beer glass (suitably filled) for the last of my birthday sequence.

      Nick Hill sent this pic.

      “Not sure if you’ve had this one before? I saw this map of the Lake District on my glass while enjoying a pint of Wainwright Gold in the Queen of Hearts pub in Daventry.

      Cheers, Nick”

      Well cheers to you Nick and to all of our MapsintheWild community, drink a toast to all of our contributors today if you can.

      MapsintheWild Beer for our Birthday, Mr Wainwright?

    • sur Mappery: Mappy Birthday!

      Publié: 6 September 2024, 11:00am CEST

      Happy Birthday to the incredible @mapsinthewild! ? Mappery has been a constant source of inspiration for my wanderlust adventures. I’m sharing a photo of a motorbike I spotted in Toulouse, France to celebrate this special day. The licence plate from Germany stands for a long journey. The vibrant city always brings back fond memories of my years there as a student: a nice combo to share.

      MapsintheWild Mappy Birthday!

    • sur Mappery: Mappy Birthday! – Meridian 17

      Publié: 6 September 2024, 10:00am CEST

      Today is Mappery’s 6th birthday.

      Remarkable really that we have kept this up for 6 years, that’s just over 1600 posts with almost 2,500 images, 300 weekly email newsletters, thousands of social media follows (no longer X’ing) and a lot of support from our readers and contributors who have made #MapsintheWild into a community.

      So thanks to Ken who helped me to start Mappery when we were on safari together, thanks to Arnaud and Dan who help to share the load and keep the site running and thanks to everyone who has contributed a MapintheWild.

      Today’s birthday post is the 17th Meridian line. Why? Well unsurprisingly, for regular readers/followers, this pic came from Reinder Storm, in our six years Reinder has contributed over 180 of the posts that we have featured which is pretty remarkable. I know this isn’t an actual map but it testifies to the map geekiness and passion of our contributors and followers -THANK YOU REINDER

      Reinder commented “… passes right through Wroc?aw, Poland. The meridian 17° east of Greenwich is a line of longitude that extends from the North Pole across the Arctic Ocean, Europe, Africa, the Atlantic Ocean, the Southern Ocean, and Antarctica to the South Pole”

      We’ll be pushing the boat out with a few more birthday posts today.

      MapsintheWild Mappy Birthday! – Meridian 17

    • sur 2024 Fall Foliage Map

      Publié: 6 September 2024, 8:55am CEST par Keir Clarke
      Autumn is nearly upon us. Although the Autumn Equinox is not until the 22rd September the 2024 Smoky Mountain Fall Foliage Map shows that the most northern counties of the United States will already have begun to notice the colors of the leaves changing.Every year Smoky Mountain releases an interactive Fall Foliage Map, which plots the annual progress of when and where leaves change their colors
    • sur Mappery: The City of New York has fallen over

      Publié: 6 September 2024, 1:00am CEST

      A bonus pic from Ken for our birthday.

      Ken was in New York recently and he sent this map in the wild from a diner that he stopped at. To fit the map into the available space they rotated it to west up.

      MapsintheWild The City of New York has fallen over

    • sur Fernando Quadro: Geotecnologia aplicada na Silvicultura

      Publié: 5 September 2024, 2:00pm CEST

      As conhecidas geotecnologias extrapolam os limites de sua ciência de desenvolvimento e aplicação. Dentre os vários setores produtivos nos quais ela é utilizada, a silvicultura é uma atividade que aproveita ao máximo o universo de soluções para diversos setores da gestão florestal. Tudo o que ela tem para oferecer pode ser aproveitado em benefício da gestão florestal. A geotecnologia se apresenta como uma ferramenta poderosa, oferecendo novas maneiras de se coletar dados, monitorar ecossistemas florestais e tomar decisões informadas. Atualmente é impossível imaginar que a gestão de uma floresta plantada possa ser realizada sem o uso desta potente ferramenta.

      O drone, por exemplo, como ferramenta é um grande marco na geotecnologia. A possibilidade de municiar cada equipe de campo com um drone com uma câmera fotográfica embarcada elevou o nível da geotecnologia aplicada na silvicultura a um patamar nunca vivenciado. Claro que este avanço teve que superar questões como a dificuldade no processamento de tantas imagens capturadas, na identificação de indivíduos e na separação entre espécies através de técnicas de sensoriamento remoto. Dificuldades essas que se ampliaram com o surgimento de sensores LiDAR embarcados, que detalha o espaço com precisão milimétrica, sendo certo que a resolução dessas demandas abriu muitas possibilidades para o manejo silvicultural, especialmente para o inventário florestal.

      Atualmente o estado da arte da geotecnologia aplicada na silvicultura está representada nos seguintes usos:

      ? Big Data Geoespacial: A explosão de dados geoespaciais gerados por uma variedade de fontes, incluindo sensores remotos, dispositivos móveis e estações de monitoramento, está impulsionando o desenvolvimento de técnicas de análise de big data geoespacial. Isso inclui algoritmos de machine learning e inteligência artificial para análise de padrões espaciais, previsão e tomada de decisões.

      ? Internet das Coisas (IoT) Geoespacial: A integração de sensores geoespaciais em equipamentos de monitoramento cria um ambiente de IoT geoespacial. Isso permite a coleta contínua de dados em tempo real sobre o ambiente e árvores individuais aumentando a compreensão das interações floresta-ambiente.

      ? Geotecnologia para Inteligência Artificial: A geotecnologia está sendo integrada a algoritmos de inteligência artificial para uma variedade de aplicações, incluindo detecção de mudanças no uso da terra, identificação de espécies individuais e doenças a partir de imagens aéreas, previsão de eventos climáticos extremos, otimização de recursos operacionais, entre outras.

      Não há dúvidas que a geotecnologia tem enorme participação no aumento da produtividade florestal experimentada nos dias de hoje, seja na melhoria do manejo, na conservação hídrica e do solo, seja no aproveitamento de regiões antes consideradas inaptas para a silvicultura.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur Mappery: Global Delivery Bike (except New Zealand)

      Publié: 5 September 2024, 11:00am CEST

      Erik spotted this delivery bike in Delft. It looks as if half of New Zealand is missing.

      MapsintheWild Global Delivery Bike (except New Zealand)

    • sur The Book Banning Map of America

      Publié: 5 September 2024, 9:16am CEST par Keir Clarke
      The American Library Association (ALA) reports that attempts to ban books "surged 65% in 2023 compared to 2022 numbers, reaching the highest level ever documented by ALA." Nearly half of the books targeted for banning were related to issues of LGBTQ+ communities or race.Now the ALA has partnered with Little Free Library and PEN America to release an interactive map which shows
    • sur PostGIS Development: PostGIS 3.3.7

      Publié: 5 September 2024, 2:00am CEST

      The PostGIS Team is pleased to release PostGIS 3.4.7! This is a bug fix release.

      3.3.7
    • sur W3C Maps for HTML Community Group: MapML.js release v0.14.0: CSS and Pmtiles

      Publié: 4 September 2024, 11:38pm CEST
      Scripting, Styling and Web Maps: Who’s On First? The Big Three

      Part of the job of being a Web standard means that you have to follow the architecture of the web, which allocates specific jobs across the Big Three languages: HTML, CSS and JavaScript.  For JavaScript, this ideally means supplying and enhancing site-specific semantics and user experience, and leaving accessibility and rendering up to the browser’s HTML infrastructure; for Cascading Style Sheets, it means supporting the HTML rendering engine through accessibility-enhancing styling instructions declared by the page according to the CSS language.  For HTML, it means parsing the page and rendering HTML elements as accessible content, and providing a DOM API to allow access to the content by JavaScript manipulation to provide and enhance effective user experiences.

      In the Maps for HTML universe, our goal is an update to Web standards that sees maps and location decomposed with accessibility as a precondition, into rendering, style and behaviour, and fit into the appropriate architectural domain, be that in HTML, CSS or JavaScript.  There is no support today for maps or location in any of the Big Three languages. The consequence of this lack of platform support for web maps is their exclusive and massive allocation to the JavaScript domain.  The societal implications of this misallocation are a subject for another post.

      To date, we have articulated a mechanism to embed accessible and semantic web maps and locations into an HTML viewer widget, the <mapml-viewer> element.  So far, the fit of this widget to the HTML media widget paradigm seems appropriate.  For a refresher on how the viewer works, check out our Quick Start video.

      The question that bears additional scrutiny and community involvement, and that which is the question of this post is: How can we better leverage CSS for styles of maps and location, while enhancing accessibility?  Opaque (binary) media types HTML media like video and audio don’t have much relationship with CSS, whereas map rendering has a natural connection to text and graphics styling.  It’s the natural connection of maps to web architecture that makes maps and location a good candidate for a web standard.

      What You Can Do With CSS in MapML Today – Support by GeoServer

      The main use of CSS in MapML is to style the tree of elements rooted at the <map-feature>.  The <map-feature> element is a custom element that can be obtained in a fetched MapML-format XHTML document, or found inline in HTML proper, between the <layer-> … </layer-> layer tags.  <map-feature> elements are parsed and their <map-geometry> elements rendered as a shadow-DOM embedded SVG <g> tag (group element), with different geometry values rendered within that group as <path>s within the parent <g>.  Any class attributes on the <map-feature> are copied to the root <path> element, and class attributes on descendent geometry elements are copied to the <path> that they are rendered as. This allows us to apply CSS rules to <map-feature> as though its parts were actual SVG tags, so long as the rendered feature parts can be selected via their class, which is copied from the source <map-whatever> element.  This can even be useful for making accessible interactive maps

      This technique  is used by GeoServer for example, which transforms Style Layer Descriptor server styles into CSS stylesheets with selectors for generated class values from the server layers’ contents.  In addition to allowing basic styling of points, lines and polygons, this facility enables GeoServer to dynamically generate and style MapML-encoded vector tiles.  The perceived performance of tiled vector maps can be acceptable, especially when such tiles are created and cached for later access, and improvements can be expected with additional specification and software development effort.  This is all pretty interesting because it is starting to show us a path to (better) integration between the native web platform languages like HTML and CSS on the one hand, and maps on the other.

      Mapbox Vector Tiles and the pmtiles Archive Format

      “pmtiles” is the name of a modern, cloud-friendly map tile archive format that is gaining popularity among web mapping applications, because it allows websites to readily serve their own map vector tile data without necessarily hosting the whole world, which is cost- and time-prohibitive.  The motivation behind pmtiles (a product of the Protomaps project) would seem to be compatible with our community’s goal of standardising maps for the web. In the words of its creator Brandon Liu, :

      Maps are everywhere on the Internet. Think of any popular retail site, travel search or local government portal. The infrastructure of the web, from languages like JavaScript, front-end frameworks, and databases, is overwhelmingly free software. Maps are one of the few remaining choke points* of an otherwise open web.

      * choke points aka control points

      pmtiles efficiently manages potentially massive amounts of tiled vector data in a single archive file.  The archive can be hosted in a variety of server environments, but the main criteria for success is that the host server is capable of http range requests. When a client needs a particular tile, it makes the request not using the zoom, row and column coordinates as URL parameters or path steps, but by transforming the tile’s coordinates to a pmtiles archive byte range, using the tile’s byte offset and length, calculated from the archive’s metadata which contains, among other information, the formula to perform the transformation.

      Under the hood, a .pmtiles archive file is a clever application of Hilbert space filling curves to efficiently compress tiles in the Web Mercator projection, encoded in the Mapbox Vector Tiles or other format (mvt).  Mvt is a kind of de facto standard among vector tile formats, of which there are many, too numerous to mention.  The protomaps-leaflet library integrates support for both .pmtiles archives as well as raw .mvt tile responses served through a web server API, following the {z}/{x}/{y} URL (template) convention.  Protomaps-leaflet styling of tiles is accomplished via “themes”, or “rules”.  Rules encode canvas 2D API call parameters on a per-tile, per-layer basis, such that map feature styles are encoded as JavaScript objects and methods that are called back by the protomaps-leaflet tile rendering engine. A theme is a named collection of rules, e.g. “light” or “dark”.

      The newly-renamed MapML.js release 0.14.0 supports pmtiles archives and .mvt format API services, including custom map styling, via a protomaps-leaflet integration, mainly through the templated <map-link> element.  Projection support is currently limited to OSMTILE maps, because of the (hopefully short-term) restriction of protomaps-leaflet to the Web Mercator projection and powers of 2 tile pyramids. Custom styles can be created and included as a “stylesheet” module by means of an exported symbol named “pmtilesStyles”, containing a defined and required JavaScript object structure.

      If you’re using GeoServer, or pmtiles / mvt support in MapML.js, or any open source component from our community in your maps, please get in touch, we’d love to hear from you about your experience.

      Call For Community

      A large measure of the payoff for the effort of building maps into HTML will be simple and decentralised access (i.e. no “choke points”) to the incredible rendering performance afforded by native code styling through CSS.  What wouldn’t be possible in such a world?  Accessible location navigation, animations, moving features, real time location updates, oh my!  Worth mentioning: the CSS development community often sets an example of dynamic, open collaboration definitely worthy of emulating, if not wholly joining forces with.

      In summary, let’s take the “special” out of spatial, and collectively imagine, design and implement a HTML+CSS engine capable of fully expressing and executing cartographic rules, for the future.

    • sur OGC Membership approves Common Query Language (CQL2) as an official OGC Standard

      Publié: 4 September 2024, 3:00pm CEST par Simon Chester

      The Open Geospatial Consortium (OGC) is excited to announce that the OGC Membership has approved Version 1.0 of the Common Query Language (CQL2) for adoption as an official OGC Standard.

      Filtering is a fundamental operation performed on feature data to obtain a subset that contains the geospatial information a user needs. CQL2 is a filter grammar that can be used to specify how features can be filtered to obtain a subset. The Standard supports both text and JSON encodings so can be easily integrated into a variety of software applications.

      CQL2 is a revision of the original Common Query Language. While the language design is consistent with the original version, many changes and additions to improve consistency and capabilities have been made. Existing implementations of CQL will need to be updated to process filter expressions specified by CQL2.

      The OGC API – Features Standard currently uses CQL2, and other Standards that require the ability to filter data are likely to adopt it as well.  Example files and JSON, YAML, and BNF schemas have been published on the OGC schemas repository to enable software developers to rapidly implement CQL2.

      The original Common Query Language (CQL) was created as a text encoding for use in the OGC Catalogue Service Implementation Specification. CQL is based on the capabilities in the OGC Filter Encoding (FE) Standard, which was originally part of the Web Feature Service (WFS) Standard.

      CQL2 is the outcome of the work and dedication of the OGC API – Features Standards Working Group, which led the development of the Standard, including:

      As with any OGC Standard, CQL2 is free to download and implement. Interested parties can learn more on the OGC CQL2 Standard webpage.

      The post OGC Membership approves Common Query Language (CQL2) as an official OGC Standard appeared first on Open Geospatial Consortium.

    • sur Fernando Quadro: Porque usar o Geography no PostGIS?

      Publié: 4 September 2024, 2:00pm CEST

      Você sabia que ao trabalhar com grandes volumes de dados no PostGIS pode te levar a medições imprecisas?

      É verdade. Quando você armazena seus dados geoespaciais como Geometry, o PostGIS trata esses dados como um plano 2D, como se a Terra fosse uma “panqueca”.

      Mas não se preocupe, existe solução para isso. Você pode armazenar seus dados com o tipo Geography no PostGIS ao invés de Geometry.

      Isso irá dizer ao PostGIS para usar um sistema de coordenadas “arredondas”, proporcionando medições muito mais precisas.

      Nesses casos o tipo Geography é a melhor opção, e traz como benefícios:

      ? Dados armazenados em WGS84 (latitude/longitude) com medidas em metros
      ? Funções nativas especiais feitas apenas para este tipo de dados
      ? Perfeito para lidar com grandes regiões

      Se você tem já sua base de dados armazenada em Geometry, não se preocupe, você pode transformar seus dados em tempo de execução para Geography e obter resultados mais precisos em suas medições.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur WhereGroup: Plugins – praktische Helfer in QGIS

      Publié: 4 September 2024, 11:07am CEST
      Dieses Mal stellen wir Ihnen eine Auswahl von fünf nützlichen Plugins aus den über 2.000 Plugins für QGIS, die Ihnen bei Ihrer täglichen Arbeit weiterhelfen.
    • sur Mappery: Surficial geology of Maine

      Publié: 4 September 2024, 11:00am CEST

      Doug shared this – Surficial geology of Maine #MapsintheWild @ Watershed Art Center Newcastle, Maine

      If like me you thought Surficial Geology was a typo, read and learn

      MapsintheWild Surficial geology of Maine

    • sur Write Your Name in Landsat

      Publié: 4 September 2024, 8:20am CEST par Keir Clarke
      the word 'love' in Landsat images Soon after the emergence of Google Maps, a short while after getting bored zooming in on their house in satellite view, some people began searching for satellite images of Earth forms and patterns which resembled letters of the alphabet - when viewed from above.The first pareidolia sufferer that I can remember becoming hooked on discovering typefaces in nature
    • sur PostGIS Development: PostGIS 3.4.3

      Publié: 4 September 2024, 2:00am CEST

      The PostGIS Team is pleased to release PostGIS 3.4.3!

      This version requires PostgreSQL 12-17, GEOS 3.8+, and Proj 6.1+. To take advantage of all features, GEOS 3.12+ is needed. To take advantage of all SFCGAL features, SFCGAL 1.5+ is needed.

      3.4.3
    • sur Oslandia: (Fr) Variabilisez vos profils QGIS avec QDT

      Publié: 3 September 2024, 6:42pm CEST

      Sorry, this entry is only available in French.

    • sur Fernando Quadro: Inteligência Artificial, GIS e Smart Cities

      Publié: 3 September 2024, 2:00pm CEST

      As cidades inteligentes representam o futuro da vida urbana, integrando tecnologia e soluções baseadas em dados para aumentar a eficiência, a sustentabilidade e a qualidade de vida dos residentes. No centro do desenvolvimento das cidades inteligentes está o papel da inteligência artificial (IA) nos Sistemas de Informação Geográfica (GIS), revolucionando a forma como as cidades planejam, otimizam e gerem infraestruturas críticas, como redes de transporte, serviços públicos e serviços públicos.

      Nesta postagem falaremos um pouco sobre o papel multifacetado da IA ??no GIS para o planejamento de infraestrutura de cidades inteligentes, com foco em suas implicações e benefícios para o desenvolvimento urbano.

      O planeamento de infraestruturas de cidades inteligentes abrange uma vasta gama de elementos, desde sistemas de transporte inteligentes e serviços públicos energeticamente eficientes até serviços públicos responsivos e desenvolvimento urbano sustentável. O GIS alimentado por IA desempenha um papel fundamental neste processo, aproveitando dados espaciais, análises preditivas e monitoramento em tempo real para otimizar o projeto, operação e manutenção de infraestrutura para cidades inteligentes e resilientes.

      ? Aplicações de IA no planejamento de infraestrutura de cidades inteligentes:

      ? Otimização de Transporte
      ? Gestão de Utilidades e Eficiência Energética
      ? Prestação de serviço público
      ? Monitoramento Ambiental e Sustentabilidade

      ? Benefícios da IA ??no planejamento de infraestrutura de cidades inteligentes:

      ? Maior eficiência e otimização de recursos
      ? Tomada de decisão baseada em dados
      ? Melhor experiência do cidadão e qualidade de vida
      ? Desenvolvimento Sustentável e Resiliência

      Embora a IA traga benefícios significativos para o planeamento de infraestruturas de cidades inteligentes, desafios como a privacidade de dados, a segurança cibernética, a parcialidade dos algoritmos, a conformidade regulamentar e a equidade digital precisam de ser abordados. Isto requer quadros de governação robustos, envolvimento das partes interessadas, práticas éticas de IA e estratégias de planeamento urbano inclusivas para o desenvolvimento equitativo e sustentável de cidades inteligentes.

      Concluindo, o SIG alimentado por IA está a transformar o cenário do planeamento de infraestruturas de cidades inteligentes, oferecendo oportunidades sem precedentes de eficiência, sustentabilidade e inovação no desenvolvimento urbano. Ao aproveitar as capacidades da IA, as cidades podem otimizar a infraestrutura, melhorar a prestação de serviços e criar ambientes urbanos mais habitáveis ??e resilientes para as gerações vindouras. Adotar a IA no planejamento de cidades inteligentes não se trata apenas de avanço tecnológico – trata-se de construir cidades mais inteligentes, mais conectadas e sustentáveis ??que beneficiem a todos.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur Mapping Moving Borders in Real-Time

      Publié: 3 September 2024, 11:56am CEST par Keir Clarke
      The international border between Italy and Switzerland & Austria in the Alps largely follows the path of the watershed line. Unfortunately due to global heating and shrinking glaciers the Alpine watershed line keeps on moving. The result is that the border between Italy and its Alpine neighbors is also constantly moving.In 2016 the Italian Limes project attempted to track the movement of the
    • sur Mappery: Pijnacker-Nootdorp

      Publié: 3 September 2024, 11:00am CEST

      Eric said “Today I visited the municipality of Pijnacker-Nootdorp. There’s a beautiful #mapsinthewild carpet in the Council Chamber (with even half of Delft on it)”

      MapsintheWild Pijnacker-Nootdorp

    • sur Sean Gillies: August 22, 2018: Paris in a Day

      Publié: 3 September 2024, 1:16am CEST

      Six years ago my family and I spent some time in France, passing through Lyon and Paris on the way back to Colorado. While Ruth stayed behind at a conference in Montpellier, Arabelle, Bea, and I did Paris in a day. We saw many bones, ate much gelato, hiked many stairs, rode many trains and buses, and enjoyed being together, seeing new places, and using our second language in one of the world's capitals. I cherish my memories of this day. I felt like I was killing the fun Francophile dad role and thoroughly enjoyed the company of my kids. I had a memorable time. We confirmed in June that Arabelle and Bea have strong, positive memories, as well.

      I went to Instagram for the first time in years to dig up a photo taken on that day that I haven't published on my blog before.

      https://live.staticflickr.com/65535/53967403684_ff82372d41_b.jpg

      A child in a blue top making a peace sign in front of the Eiffel Tower and waxing moon.

      We didn't go back to the Trocadero in June, assuming that it was closed for Olympics construction, but we did go back to Montmartre and Sacre Coeur. Both Arabelle and Bea have been cultivating Spanish as a third language since 2018 and had a chance to use it on our recent visit. We encountered a Spanish kid of Bea's age who had been separated from her parents and kept her company until we could reach her mom on the phone. She had no phone of her own, but had memorized key numbers.

    • sur Fernando Quadro: PostGIS e a Inteligência Artificial

      Publié: 2 September 2024, 10:13pm CEST

      No atual cenário empresarial acelerado, aproveitar os dados de localização pode proporcionar uma vantagem competitiva significativa. Desde a otimização da logística e das rotas de entrega até à melhoria das experiências dos clientes através de serviços baseados em localização, a capacidade de extrair informações valiosas de dados geográficos é fundamental.

      Como você já deve saber o PostGIS é uma extensão de código aberto amplamente utilizada que adiciona suporte para objetos geográficos, permitindo que consultas SQL espaciais sejam executadas dentro do sistema de gerenciamento de banco de dados PostgreSQL. O Postgres-AI, por outro lado, é uma extensão introduzida recentemente que traz recursos de aprendizado de máquina (ML) diretamente para o PostgreSQL, permitindo treinamento e inferência de modelos no banco de dados.

      A integração do PostGIS e do Postgres-AI abre inúmeras possibilidades para inteligência de localização e análise de dados espaciais, incluindo:

      ?Seleção de sites de varejo e análise de mercado
      ?Logística e otimização da cadeia de suprimentos
      ?Modelagem preditiva para serviços baseados em localização
      ?Planejamento urbano e desenvolvimento de infraestrutura
      ?Monitoramento ambiental e esforços de conservação
      ?Marketing direcionado e segmentação de clientes

      Ao aproveitar essas ferramentas poderosas, as organizações podem tomar decisões baseadas em dados, otimizar operações e aprimorar sua compreensão de padrões e relacionamentos geográficos, ao mesmo tempo em que aproveitam o poder do aprendizado de máquina.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur Mappery: Around the Globe

      Publié: 2 September 2024, 11:00am CEST

      From Reinder “… the title means something like ‘Around the globe’. Needs no further explanation I presume” – nope!

      MapsintheWild Around the Globe

    • sur Land doesn't vote, people do!

      Publié: 2 September 2024, 10:05am CEST par Keir Clarke
      Engaging Data has updated its US County Electoral Map – Land Area vs Population map so that you can now zoom in and explore the election results in each state. The map allows you to see the 2020 Presidential Election election results at the county level based on land area or population size.If you select the 'Population' button on the map then the colored proportional circles change size to
    • sur TorchGeo: v0.6.0

      Publié: 1 September 2024, 12:12pm CEST
      TorchGeo 0.6.0 Release Notes

      TorchGeo 0.6 adds 18 new datasets, 15 new datamodules, and 27 new pre-trained models, encompassing 11 months of hard work by 23 contributors from around the world.

      Highlights of this release Multimodal foundation models

      Diagram of a unified multimodal Earth foundation model

      There are thousands of Earth observation satellites orbiting the Earth at any given time. Historically, in order to use one of these satellites in a deep learning pipeline, you would first need to collect millions of manually-labeled images from this sensor in order to train a model. Self-supervised learning enabled label-free pre-training, but still required millions of diverse sensor-specific images, making it difficult to use newly launched or expensive commercial satellites.

      TorchGeo 0.6 adds multiple new multimodal foundation models capable of being used with imagery from any satellite/sensor, even ones the model was not explicitly trained on. While GASSL and Scale-MAE only support RGB images, DOFA supports RGB, SAR, MSI, and HSI with any number of spectral bands. It uses a novel wavelength-based encoder to map the spectral wavelength of each band to a known range of wavelengths seen during training.

      The following table describes the dynamic spatial (resolution), temporal (time span), and/or spectral (wavelength) support, either via their training data (implicit) or via their model architecture (explicit), offered by each of these models:

      Model Spatial Temporal Spectral
      DOFA implicit - explicit
      GASSL implicit - -
      Scale-MAE explicit - -

      TorchGeo 0.6 also adds multiple new unimodal foundation models, including DeCUR and SatlasPretrain.

      Source Cooperative migration

      Migration from Radiant MLHub to Source Cooperative

      TorchGeo contains a number of datasets from the recently defunct Radiant MLHub:

      These datasets were recently migrated to Source Cooperative (and AWS in the case of SpaceNet), but with a completely different file format and directory structure. It took a lot of effort, but we have finally ported all of these datasets to the new download location and file hierarchy. As an added bonus, the new data loader code is significantly simpler, allowing us to remove 2.5K lines of code in the process!

      OSGeo community project

      OSGeo Community logo

      TorchGeo is now officially a member of the OSGeo community! OSGeo is a not-for-profit foundation for open source geospatial software, providing financial, organizational, and legal support. We are in good company, with other OSGeo projects including GDAL, PROJ, GEOS, QGIS, and PostGIS. Membership in OSGeo promotes advertising of TorchGeo to the community, and also ensures that we follow best practices for the stability, health, and interoperability of the open source geospatial ecosystem.

      All TorchGeo users are encouraged to join us on Slack, join our Hugging Face organization, and join us in OSGeo using any of the following badges in our README:

      slack
      huggingface
      osgeo

      Lightning Studios support

      Lightning AI logo

      TorchGeo has always had a close collaboration with Lightning AI, including active contributions to PyTorch Lightning and TorchMetrics. In this release, we added buttons allowing users to launch our tutorial notebooks in the new Lightning Studios platform. Lightning Studios is a more powerful version of Google Colab, with reproducible software and data environments allowing you to pick up where you left off, VS Code and terminal support, and the ability to quickly scale up to a large number of GPUs. All TorchGeo tutorials have been confirmed to work in both Lightning Studios and Google Colab, allowing users to get started with TorchGeo without having to invest in their own hardware.

      Backwards-incompatible changes
      • All Radiant MLHub datasets have been ported to the Source Cooperative file hierarchy (#1830)
      • GeoDataset: the bbox sample key was renamed to bounds in order to support Kornia (#2199)
      • Chesapeake7 and Chesapeake13: datasets were removed when updating to the 2022 edition (#2214)
      • Benin Cashews and Rwanda Field Boundary: remove os.path.expanduser for consistency (#1705)
      • LEVIR-CD and OSCD: images key was split into image1 and image2 for change detection (#1684, #1696)
      • EuroSAT: B08A was renamed to B8A to match Sentinel-2 (#1646)
      Dependencies New (optional) dependencies
      • aws-cli: to download datasets from AWS (#2203)
      • azcopy: to download datasets from Azure (#2064)
      • prettier: for YAML file formatting (#2018)
      • ruff: for code style and documentation testing (#1994)
      Removed (optional) dependencies
      • radiant-mlhub: website no longer exists (#1830)
      • rarfile: datasets rehosted as zip files (#2210)
      • zipfile-deflate: no longer needed for newer Chesapeake data (#2214)
      • black: replaced by ruff (#1994)
      • flake8: replaced by ruff (#1994)
      • isort: replaced by ruff (#1994)
      • pydocstyle: replaced by ruff (#1994)
      • pyupgrade: replaced by ruff (#1994)
      Changes to existing dependencies
      • python: 3.10+ required following SPEC 0 (#1966)
      • fiona: 1.8.21+ required (#1966)
      • kornia: 0.7.3+ required (#1979, #2144)
      • lightly: 1.4.5+ required (#2196)
      • lightning: 2.3 not supported due to bug (#2155, #2211)
      • matplotlib: 3.5+ required (#1966)
      • numpy: 1.21.2+ required (#1966), numpy 2 support added (#2151)
      • pandas: 1.3.3+ required (#1966)
      • pillow: 3.3+ required (#1966), jpeg2000 support required (#2209)
      • pyproj: 3.3+ required (#1966)
      • rasterio: 1.3+ required (#1966)
      • shapely: 1.8+ required (#1966)
      • torch: 1.13+ required (#1358)
      • torchvision: 0.14+ required (#1358)
      • h5py: 3.6+ required (#1966)
      • opencv: 4.5.4+ required (#1966)
      • pycocotools: 2.0.7+ required (#1966)
      • scikit-image: 0.19+ required (#1966)
      • scipy: 1.7.2+ required (#1966)
      Datamodules New datamodules Changes to existing datamodules
      • Remove torchgeo.datamodules.utils.dataset_split (#2005)
      • EuroSAT: make sure normalization is actually applied (#2176)
      Changes to existing base classes
      • Fix plotting in datamodules when dataset is a subset (#2003)
      Datasets New datasets Changes to existing datasets
      • Benin Cashews: migrate to Source Cooperative (#2116)
      • Benin Cashews: remove os.path.expanduser for consistency (#1705)
      • BigEarthNet: fix broken download link (#2174)
      • CDL: add 2023 checksum (#1844)
      • Chesapeake: update to 2022 edition (#2214)
      • ChesapeakeCVPR: reuse NLCD colormap (#1690)
      • Cloud Cover: migrate to Source Cooperative (#2117)
      • CV4A Kenya Crop Type: migrate to Source Cooperative (#2090)
      • EuroSAT: rename B08A to B8A to match Sentinel-2 (#1646)
      • FireRisk: redistribute on Hugging Face (#2000)
      • GlobBiomass: add min/max timestamp (#2086)
      • GlobBiomass: use float32 for pixelwise regression mask (#2086)
      • GlobBiomass: fix length of dataset (#2086)
      • L7 Irish: convert to IntersectionDataset (#2034)
      • L8 Biome: convert to IntersectionDataset (#2058)
      • LEVIR-CD+: split image into image1 and image2 for change detection (#1696)
      • NASA Marine Debris: migrate to Source Cooperative (#2206)
      • OSCD: support fine-grained band selection (#1684)
      • OSCD: split image into image1 and image2 for change detection (#1696)
      • PatternNet: redistribute on Hugging Face (#2100)
      • RESISC45: redistribute on Hugging Face (#2210)
      • Rwanda Field Boundary: don't plot empty masks during testing (#2254)
      • Rwanda Field Boundary: migrate to Source Cooperative (#2118)
      • Rwanda Field Boundary: remove os.path.expanduser for consistency (#1705)
      • SpaceNet 1–7: migrate to Source Cooperative (#2203)
      • Tropical Cyclone: migrate to Source Cooperative (#2068)
      • VHR-10: redistribute on Hugging Face (#2210)
      • VHR-10: improved plotting (#2092)
      • Wester USA Live Fuel Moisture: migrate to Source Cooperative (#2206)
      Changes to existing base classes
      • Add support for pathlib.Path to all datasets (#2173)
      • Datasets can now use command-line utilities to download (#2064)
      • GeoDataset: bbox key was renamed to bounds (#2199)
      • GeoDataset: ignore other bands for separate files (#2222)
      • GeoDataset: don't warn about missing files for downloadable datasets (#2033)
      • RasterDataset: allow subclasses to specify which resampling algorithm to use (#2015)
      • RasterDataset: use nearest neighbors for int and bilinear for float by default (#2015)
      • RasterDataset: calculate resolution after changing CRS (#2193)
      • RasterDataset: support date_str containing % character (#2233)
      • RasterDataset: users can now specify the min/max time of a dataset (#2086)
      • VectorDataset: add dtype attribute to match RasterDataset (#1869)
      • VectorDataset: extract timestamp from filename to match RasterDataset (#1814)
      • IntersectionDataset: ignore 0 area overlap (#1985)
      New error classes
      • DatasetNotFoundError: when a dataset has not yet been downloaded (#1714, #2053)
      • DependencyNotFoundError: when an optional dependency is not installed (#2054)
      • RGBBandsMIssingError: when you try to plot a dataset but don't use RGB bands (#1737, #2053)
      Models New model architectures New model weights Samplers Changes to existing samplers
      • RandomGeoSampler: fix performance regression, 60% speedup with preprocessed data (#1968)
      Trainers New trainers Changes to existing trainers
      • Explicitly specify batch size (#1928, #1933)
      • MoCo: explicitly specify memory bank size (#1931)
      • Semantic Segmentation: support ingore_index when using Jaccard loss (#1898)
      • SimCLR: switch from Adam to LARS optimizer (#2196)
      • SimCLR: explicitly specify memory bank size (#1931)
      Transforms
      • Use Kornia's AugmentationSequential for all model weights (#1979)
      • Update TorchGeo's AugmentationSequential to support object detection (#1082)
      Documentation Changes to API docs
      • Datasets: add license information about every dataset (#1732)
      • Datasets: update link to cite SSL4EO-L dataset (#1942)
      • Models: emphasize new multimodal foundation models (#2236)
      • Trainers: update num_classes parameter description (#2101)
      Changes to user docs
      • Alternatives: update metrics (#2259)
      • Contributing: explain how to use new I/O Bench dataset (#1972)
      Changes to tutorials
      • Add button for the new Lightning Studios (#2146)
      • Remove button for the recently defunct Planetary Computer Hub (#2107)
      • Custom Raster Datasets: download the dataset before calling super (#2177)
      • Custom Raster Datasets: fix typo (#1987)
      • Transforms: update EuroSAT band names to match Sentinel-2 (#1646)
      Other documentation changes
      • README: fix CLI example (#2142)
      • README: add Hugging Face badge (#1957)
      • README: fix example of creating fake raster data (#2162)
      • Read the Docs: use latest Ubuntu version to build (#1954)
      • Allow horizontal scrolling of wide tables (#1958)
      • Fix broken links and redirects (#2267)
      Testing Style
      • Use prettier for configuration files (#2018)
      • Use ruff for code files (#1994, #2001)
      Type hints
      • Ensure all functions have type hints (#2217)
      • Make all class variables immutable (#2218)
      • Check for unreachable code (#2241)
      Unit testing
      • Datasets: test dataset length (#2084, #2089)
      • Datamodules: don't download during testing (#2215, #2231)
      • download_url: add shared fixture to avoid code duplication (#2232)
      • load_state_dict: add shared fixture to avoid code duplication (#1932)
      • load_state_dict_from_url: add shared fixture to avoid code duplication (#2223)
      • torch_hub: add fixture to avoid downloading checkpoints to home directory (#2265)
      • Pytest: silence warnings (#1929, #1930, #2224)
      • PyVista: headless plotting (#1667)
      Other CI changes
      • Check numpy 2 compliance (#2151)
      • Coverage: use newer flag to override ignores (#2260)
      • Dependabot: update devcontainer (#2025)
      • Dependabot: group torch and torchvision (#2025)
      • Labeler: update to v5 (#1759)
      • macOS: disable pip caching (#2024)
      • Windows: fail fast mode (#2225)
      Contributors

      This release is thanks to the following contributors:

      @adamjstewart
      @alhridoy
      @ashnair1
      @burakekim
      @calebrob6
      @cookie-kyu
      @DarthReca
      @Domejko
      @favyen2
      @GeorgeHuber
      @isaaccorley
      @kcrans
      @nilsleh
      @oddeirikigland
      @pioneerHitesh
      @piperwolters
      @robmarkcole
      @sfalkena
      @ShadowXZT
      @shreyakannan1205
      @TropicolX
      @wangyi111
      @yichiac

    • sur Mappery: Lambeth Palace

      Publié: 1 September 2024, 11:00am CEST

      Simon Wrigley found this beautiful window near the entrance to Lambeth Palace.

      Rounding the corner, He found it was not one window but two – one with each hemisphere of the globe. It looks like a Nicolosi Globular Projection, which is a Double hemispheric polyconic map projection

      MapsintheWild Lambeth Palace

    • sur Anime Pilgrimage Maps

      Publié: 31 August 2024, 4:44pm CEST par Keir Clarke
      Apparently many enthusiastic fans of anime like to go on anime pilgrimages, in order to visit the real-world locations that have featured in their favorite shows. Fans of anime, manga, or other animated media often embark on these pilgrimages to connect with the stories they love and to experience the places that inspired their favorite characters and scenes.A number of interactive mapping
    • sur 245 Russian Military Targets at Risk

      Publié: 30 August 2024, 9:54am CEST par Keir Clarke
      The Institute for the Study of War (ISW) and Critical Threats have identified hundreds of Russian military sites that are in range of Ukrainian ATACMS. Currently the United States will not allow Ukraine to use US supplied tactical ballistic missiles for long-range deep strikes into Russia. According to the ISW its new map shows "the extent to which US restrictions on Ukraine's use of ATACMS
    • sur Free and Open Source GIS Ramblings: Building spatial analysis assistants using OpenAI’s Assistant API

      Publié: 29 August 2024, 8:15pm CEST

      Earlier this year, I shared my experience using ChatGPT’s Data Analyst web interface for analyzing spatiotemporal data in the post “ChatGPT Data Analyst vs. Movement Data”. The Data Analyst web interface, while user-friendly, is not equipped to handle all types of spatial data tasks, particularly those involving more complex or large-scale datasets. Additionally, because the code is executed on a remote server, we’re limited to the libraries and tools available in that environment. I’ve often encountered situations where the Data Analyst simply doesn’t have access to the necessary libraries in its Python environment, which can be frustrating if you need specific GIS functionality.

      Today, we’ll therefore start to explore alternatives to ChatGPT’s Data Analyst Web Interface, specifically, the OpenAI Assistant API. Later, I plan to dive deeper into even more flexible approaches, like Langchain’s Pandas DataFrame Agents. We’ll explore these options using spatial analysis workflow, such as:

      1. Loading a zipped shapefile and investigate its content
      2. Finding the three largest cities in the dataset
      3. Selecting all cities in a region, e.g. in Scandinavia from the dataset
      4. Creating static and interactive maps

      To try the code below, you’ll need an OpenAI account with a few dollars on it. While gpt-3.5-turbo is quite cheap, using gpt-4o with the Assistant API can get costly fast.

      OpenAI Assistant API

      The OpenAI Assistant API allows us to create a custom data analysis environment where we can interact with our spatial datasets programmatically. To write the following code, I used the assistant quickstart and related docs (yes, shockingly, ChatGPT wasn’t very helpful for writing this code).

      Like with Data Analyst, we need to upload the zipped shapefile to the server to make it available to the assistant. Then we can proceed to ask it questions and task it to perform analytics and create maps.

      from openai import OpenAI
      
      client = OpenAI()
      
      file = client.files.create(
        file=open("H:/ne_110m_populated_places_simple.zip", "rb"),
        purpose='assistants'
      )
      

      Then we can hand the file over to the assistant:

      assistant = client.beta.assistants.create(
        name="GIS Analyst",
        instructions="You are a personal GIS data analyst. Write and rund code to answer geospatial analysis questions",
        tools=[{"type": "code_interpreter"}],
        model="gpt-3.5-turbo",  # or "gpt-4o"
        tool_resources={
          "code_interpreter": {
            "file_ids": [file.id]
          }
        }  
      )
      

      Then we can start asking questions and giving our assistant tasks:

      thread = client.beta.threads.create()
      
      message = client.beta.threads.messages.create(
        thread_id=thread.id,
        role="user",
        content="Please load the zipped shapefile and describe the content"
      )
      
      assistant > The shapefile has been successfully loaded as a GeoDataFrame with the following details:
      
      - The GeoDataFrame has 243 entries.
      - It contains a total of 38 columns with various data types including integer, float, and object types.
      - One of the columns is a geometry column representing the spatial information.
      
      If you have any specific analysis or visualizations you would like to perform on this data, feel free to let me know!

      The docs have a nice example for how to stream the answers back, e.g. into a Jupyter notebook. I’ve used it to create a small convenience function:

      def ask_another_question(question):
          message = client.beta.threads.messages.create(
              thread_id=thread.id,
              role="user",
              content=question
          )
          with client.beta.threads.runs.stream(
              thread_id=thread.id,
              assistant_id=assistant.id,
              event_handler=EventHandler(),
          ) as stream:
              stream.until_done()
      
      ask_another_question("Please list the three largest cities")
      
      assistant > code_interpreter
      
      # Sort the GeoDataFrame by the population in descending order
      largest_cities = gdf.sort_values(by='pop_max', ascending=False).head(3)[['name', 'pop_max']]
      largest_cities
      assistant > The three largest cities in the dataset, along with their maximum population numbers, are as follows:
      
      1. Tokyo: 35,676,000
      2. New York: 19,040,000
      3. Mexico City: 19,028,000
      
      These cities have the highest recorded maximum population numbers in the dataset. Let me know if you need any further information or analysis!
      ask_another_question("extract all scandinavian cities ")
      
      assistant > To extract all the Scandinavian cities from the dataset, we can filter the GeoDataFrame based on the countries typically considered part of Scandinavia. These countries include Norway, Sweden, Denmark, Finland, and sometimes Iceland. Let's filter the GeoDataFrame to extract the Scandinavian cities.
      assistant > code_interpreter
      
      # List of countries typically considered part of Scandinavia
      scandinavian_countries = ['Norway', 'Sweden', 'Denmark', 'Finland', 'Iceland']
      
      # Filter the GeoDataFrame for Scandinavian cities
      scandinavian_cities = gdf[gdf['adm0name'].isin(scandinavian_countries)][['name', 'adm0name']]
      
      scandinavian_cities.head()  # Displaying the first few Scandinavian cities
      assistant > Here are some of the Scandinavian cities extracted from the dataset:
      
      1. Reykjavík, Iceland
      2. Oslo, Norway
      3. Helsinki, Finland
      4. København (Copenhagen), Denmark
      5. Stockholm, Sweden
      
      These are just a few examples of Scandinavian cities present in the dataset. If you would like the complete list or perform any specific analysis on these cities, feel free to let me know!
      ask_another_question(
          "please create a world map with all cities (use gray circles) "
          "with scandinavian cities highlighted as red circles. "
      )
      
      assistant > To create a world map with all cities represented as gray circles and Scandinavian cities highlighted as red circles, we will use the GeoPandas library for mapping. Let's go ahead and create the map.
      assistant > code_interpreter
      
      import matplotlib.pyplot as plt
      
      # Plot all cities with gray circles and Scandinavian cities with red circles
      fig, ax = plt.subplots(figsize=(12, 8))
      
      # Plot all cities in gray circles
      gdf.plot(ax=ax, color='lightgrey', markersize=5)
      
      # Plot Scandinavian cities in red circles
      scandinavian_cities.plot(ax=ax, color='red', markersize=50, edgecolor='black', label='Scandinavian Cities')
      
      # Set the title
      ax.set_title('World Map with Scandinavian Cities Highlighted', fontsize=16)
      
      # Add legend
      ax.legend()
      
      # Display the map
      plt.show()
      assistant > It seems that there was an error while plotting the map because the GeoDataFrame `scandinavian_cities` does not have the necessary numeric data to plot the map directly.
      ...
      plt.show()
      
      output >
      
      assistant > Here is the world map with all cities represented as gray circles and Scandinavian cities highlighted as red circles. The map provides a visual representation of the locations of the Scandinavian cities in relation to the rest of the cities around the world. If you need any further assistance or modifications, feel free to let me know!

      To load and show the image, we can use:

      import matplotlib.pyplot as plt
      import matplotlib.image as mpimg
      
      def show_image():
          messages = client.beta.threads.messages.list(thread_id=thread.id)
      
          for m in messages.data:
              if m.role == "user":
                  continue
              if m.content[0].type == 'image_file':
                  m.content[0].image_file.file_id
                  image_data = client.files.content(messages.data[0].content[0].image_file.file_id)
                  image_data_bytes = image_data.read()
                  with open("./out/my-image.png", "wb") as file:
                      file.write(image_data_bytes)
                  image = mpimg.imread("./out/my-image.png")
                  plt.imshow(image)
                  plt.box(False)
                  plt.xticks([])
                  plt.yticks([])
                  plt.show() 
                  break
      

      Asking for an interactive map in an html file works in a similar fashion.

      You can see the whole analysis workflow it in action here:

      This way, we can use ChatGPT to perform data analysis from the comfort of our Jupyter notebooks. However, it’s important to note that, like the Data Analyst, the code we execute with the Assistant API runs on a remote server. So, again, we are restricted to the libraries available in that server environment. This is an issue we will address next time, when we look into Langchain.

      Conclusion

      ChatGPT’s Data Analyst Web Interface and the OpenAI Assistant API both come with their own advantages and disadvantages.

      The results can be quite random. In the Scandinavia example, every run can produce slightly different results. Sometimes the results just use different assumptions such as, e.g. Finland and Iceland being part of Scandinavia or not, other times, they can be outright wrong.

      As always, I’m interested to hear your experiences and thoughts. Have you been testing the LLM plugins for QGIS when they originally came out?

    • sur Mappery: Topo Map Chocolate

      Publié: 29 August 2024, 11:00am CEST

      Ben shared this delicious looking topo chocolate

      MapsintheWild Topo Map Chocolate

    • sur The Money Mountains of Los Angeles

      Publié: 29 August 2024, 7:52am CEST par Keir Clarke
      Nick Underwood has visualized the average median household income in each Los Angeles neighborhood using the analogy of elevation. On his The Topography of Wealth in L.A. map city each neighborhood is displaced 'vertically based on median annual household income'. The map uses census data to show the average household income in each Los Angeles neighborhood as a 3D tower. Sea level on
    • sur Text Search for Street View

      Publié: 28 August 2024, 10:29am CEST par Keir Clarke
      all text for nyc (brooklyn) is a very impressive search engine which allows you to search Google Maps Street View imagery for any word. In the words of its developer it is "a unique digital archive of Brooklyn's typography. Users can search and visualize every sign, notice, and street art captured in street images".Enter any word (or combination of words) into 'all text for nyc' and it will
    • sur WorldGuessr on Street View

      Publié: 27 August 2024, 11:03am CEST par Keir Clarke
      My seemingly endless quest to find an alternative to GeoGuessr may be finally over. GeoGuessr is (rightly) by far the most popular Google Maps game on the internet. Unfortunately GeoGuessr's subscription charges mean I can't afford to play it very often. Which means I'm always on the look-out for free alternatives.GeoGuessr is an online geography game that challenges players to identify
    • sur Mappery: Keighley & Worth Valley Railway

      Publié: 27 August 2024, 11:00am CEST

      Doug shared this old railway map, you might think this an old relic that he spotted but – no! This 150 year old railway line closed in 1962 and was reopened a few years later, you can read more here and you can still travel on the line.

      MapsintheWild Keighley & Worth Valley Railway

    • sur GeoTools Team: GeoTools 30.5 released

      Publié: 26 August 2024, 11:23am CEST
      &nbsp; &nbsp;The GeoTools team is pleased to the release of the latest stable version of&nbsp;GeoTools 30.5:geotools-30.5-bin.zip&nbsp;geotools-30.5-doc.zip&nbsp;geotools-30.5-userguide.zip&nbsp;geotools-30.5-project.zip&nbsp;This release is also available from the&nbsp;OSGeo Maven Repository&nbsp;and is made in conjunction with GeoServer 2.24.5. The release was made by Andrea Aime (Geosolutions)
    • sur Mappery: Globe Teapot

      Publié: 26 August 2024, 11:00am CEST

      Another one from Reinder Storm. “Don’t remember whether I sent this before, don’t remember where and when I saw this one – but I do know that I like it …”

      I am sure the tea will have an international flavour in this pot.

      MapsintheWild Globe Teapot

    • sur How Smooth is the Earth?

      Publié: 26 August 2024, 10:01am CEST par Keir Clarke
      One of the most interesting facts that I learned from the BBC TV series QI was that the Earth is smoother than a billiard ball. Unfortunately, like nearly every other fact I've remembered from that show, it is a load of bull (or should that be balls).Shri Khalpada has created a three.js powered 3D globe of the Earth which allows you to view the Earth's elevation profile to scale (and when
    • sur Mappery: Mount Rainier Time Map

      Publié: 25 August 2024, 11:00am CEST

      Another pic from Krista Mott’s roadtrip. “At Mount Rainier National Park there was one of the felled Douglas-fir, that began to grow in 1293, depicts a map of time”

      I am expecting a bit of “That’s not a map!” feedback but it sure looks like one to me and it definitely is wild.

      MapsintheWild Mount Rainier Time Map

    • sur Have You Earned Your Air Pollution Stripes?

      Publié: 24 August 2024, 11:13am CEST par Keir Clarke
      Ed Hawkins' Climate Stripes visualization of global heating has quickly become a data visualization classic. Climate Stripes (sometimes known as Warming Stripes) are a visual representation of the long-term increase in global temperatures due to climate change. Ed's striking Climate Stripes visualizations consist of colored vertical stripes, with each stripe representing a single year and
    • sur 200 Years of Irish Map

      Publié: 23 August 2024, 10:54am CEST par Keir Clarke
      The first ever large-scale survey of an entire country was started nearly 200 years ago. From 1825 to 1846 the Irish Ordnance Survey undertook a highly detailed survey of the whole of Ireland in order to create maps primarily at the 6 inch scale.To celebrate 200 years of Irish mapping the University of Limerick and Queen’s University Belfast has created OS200. The OS200 website is a digital
    • sur Population Flags

      Publié: 22 August 2024, 9:18am CEST par Keir Clarke
      World Population Flags is a Dorling cartogram in which country flags are sized by population. The cartogram is used to visualize where people live around the world and the relative size of each country's population.A Dorling cartogram is a thematic map that is used to visualize quantitative data. On a Dorling cartogram areas are represented by circles rather than their actual geographic
    • sur One Million Screenshots. One Map!

      Publié: 21 August 2024, 9:52am CEST par Keir Clarke
      Over the years a number of people have used the popular Leaflet.js mapping library to map image datasets. For example Nathan Rooy's Visual Book Recommender uses Leaflet to map the images of 51,847 book covers. The Pudding has also mapped images of 5,000 book covers on its 11 Years of Top-Selling Book Covers, Arranged by Visual Similarity. Mapping libraries have also been used in the
    • sur Mappery: The Places of Hawaii

      Publié: 20 August 2024, 11:00am CEST

      Scott Simmons sent us a pic of this superb sticker from Hawaii, “I found this great sticker on a recent vacation to the island of Hawai’i. The place names are all in their approximate correct location and the artist cleverly chose more important names to prioritize, while still filling the map quite evenly.”

      Let’s have some more of these

      MapsintheWild The Places of Hawaii

    • sur How to Make Your Own Map Jigsaw Puzzle

      Publié: 20 August 2024, 10:03am CEST par Keir Clarke
      I've been having a lot of fun over the last few days playing the map puzzles created by the Map Puzzle Factory. However I have been a little frustrated by the Japanese place-names used in the puzzles. I therefore decided to try to create my own map jigsaw puzzle using a map in which the place-names are displayed in English.My Scrambled City game is a simple map of the City of London. Press
    • sur Mappery: The Parade

      Publié: 19 August 2024, 11:00am CEST

      Reinder shared these pics of a gig that he saw recently, the band seem to be very into globes and maps.

      “… on the Parade: a travelling theatrical festival in the Netherlands, 18th of July 2024. Cf  [https:]] .

      “Pop-music meets theater in a light-hearted and quirky concert. Looking at the mysterious word “fundamental”, these men create a bit of chaos in all order. Don’t we see the world fundamentally different than it really is: a dustball in the wind?”

      I did quite like it and hope you do as well.”

      We say what’s not to like (except possibly the music)

      MapsintheWild The Parade

    • sur Piecing the World Back Together

      Publié: 19 August 2024, 9:55am CEST par Keir Clarke
      The world is fractured and divided like never before. Your mission, if you choose to accept it, is to put the Earth back together.The Map Puzzle Factory is a huge collection of map puzzles. Each puzzle is a map of a part of the world which has been divided into a collection of small squares. You simply have to drag the squares into their correct position on the map. In other words - each game
    • sur Turning Gaza to Rubble

      Publié: 17 August 2024, 9:03am CEST par Keir Clarke
      This week the Gaza health ministry reported that 40,000 Palestinians have been killed in Gaza since Israel started attacking the territory in October. Over a third of those killed have been children. Much of Gaza itself has also been turned to rubble.According to Bloomberg Israeli air strikes on Gaza have created 42 million tonnes of debris in the Strip. That is "enough rubble to fill a line of
    • sur XYCarto: Cartographic Aotearoa

      Publié: 17 August 2024, 3:38am CEST

      I try hard to keep this blog about basic open source processing in GIS. I don’t spend much time talking about my cartographic work, since I like put it up in the gallery and try to let it speak for itself. Further, 90% of my cartographic products involve processing data before it ever gets to visualization, therefore, I see more value in demonstrating the basic processing and hopefully inspire folks to do their own thing once their data is in place.

      If you might indulge me; however, I’d love to toot my own horn as they say and do a write up on my acceptance to the Atlas of Design this year and the honor to do a brief interview with Radio New Zealand (RNZ) about the map.

      I know it is a bit cheeky to put up recognition of one’s own work, but this map was the culmination of several years of iterations, heaps of footwork getting it known, and a number of rejections along the way. I’m just so excited to finally get it out there to a wider audience.

      Since this is primarily an open source blog about GIS, and that several have asked me about my tech stack I’ll share a portion of it here. If you want to get a feel of some of my blending techniques, you can see some past blogs where I wrote this up.

      As I mentioned above, that vast majority of my cartography is in data prep and making data easier to work in visualization projects. I have a fairly simple tech stack for data prep.

      • QGIS – Base map layout. My method is most often to develop the base image here, but do all the post processing for legends, supporting text, graphics, etc in specialized layout software. QGIS is amazing at handling large file types, blending, and making repeatable color palettes. Doing work at a national and world scale is often without issue.
      • GDAL – Most used in the stack for prepping large scale raster data. Used more than anything else in GDAL for my vis work is gdalwarp, gdal_translate, gdaladdo, gdalbuildvrt, and gdaldem [hillshade, slope]. These are often used in bash scripts to repeat processes allowing me to easily develop multiple resolutions, scales, and resamples.
      • GeoPandas – Used for vectors and primarily for my cleaning to get lighter GPKG files, automating redundant processes like clips, simplification, and table manipulation. It is an amazing tool I use a lot in development too.
      • Python/Bash – Used for controlling all the automation and processing. Depending on the complexity of the task at hand, I will bounce between the two. Bash is really great at multi-core processing and can save enormous amounts of time in redundant processes.
      • Colorhexa /Gpick – Palette development. Gpick is incredibly helpful in sampling imagery to find a color value you like. You can bring these values into Colorhexa and start to develop gradients and divergent values all the while keeping within your tone. There are many other sites that will help you do this, I just happen to enjoy this one.
      • Docker – An unlikely item in a cartographic stack, but Docker has proved invaluable to me by allowing me to run multiple versions of QGIS and GDAL without wrecking my machine. I have a basic QGIS/Docker example here.

      For those out there who have supported me on this journey and even those who lurk in the shadows, I cannot thank you enough for reading, liking, and sending me messages letting me know you are out there and find some of this useful. It helps more than you know and motivates me to continue to move forward. Also, tell all your friends!

    • sur QGIS Blog: Reports from the winning grant proposals 2023

      Publié: 16 August 2024, 4:18pm CEST

      With the QGIS Grant Programme 2023, we were able to support six proposals (four in the first round and two in the second round) that are aimed to improve the QGIS project, including software, infrastructure, and documentation. The following reports summarize the work performed in the first four proposals:  

      1. QGIS Bug Tracker cleanup (#266)  – Report
         We have identified and closed ~291 tickets, among them:
        • 162 bugreports and feature requests which were already fixed or implemented
        • 29 bugreports and feature requests which are invalid (data issues, wrong use of functionality, etc)
        • 57 duplicate bugreports and feature requests
        • 5 won’t fix bugreports
        • 5 bugreports were converted to feature requests
        • 33 tickets were closed (does not contain steps to reproduce, test data and no feedback was provided within several month)
        • Additionally we ensured that all tickets has correct tags assigned to to make them easier to find.
      2. Porting to C++ and harmonization of Processing algorithms (#271) – Report
        The QGIS Porting to C++ and Harmonisation of Processing Algorithms grant is now complete.
        • Existing Processing algorithms Voronoi Polygons and Delaunay Triangulation have been ported to C++ and now use GEOS instead of the unmaintained Python module.
        • Two algorithms for generating XYZ tiles (directory and MBTiles variants) have been ported to C++ using a safer and cleaner multi-threading approach.
        • The Align Rasters tool, which was not exposed to Processing, has been removed and a new Processing algorithm with the same functionality has been added.
        • The existing Raster Calculator algorithm has been ported to C++. The algorithm now has two variants: a toolbox version that works the same way as before, and a modeler version that uses the same approach to input naming as the GDAL raster calculator.
      3. Add vertical CRS handling to QGIS (#267) – Report
        • As of QGIS 3.34, QGIS can now create and handle vertical and compound CRSes.
        • In QGIS 3.34 coordinate transforms were reworked so that they function correctly with vertical transformation, if both the source and destination CRS have vertical components.
        • In QGIS 3.36 the coordinate reference selection widgets were updated to offer choices of 2d only, compound, or vertical only CRSes.
        • In version 3.38, we introduced a new setting for QGIS projects, for their vertical reference system. Users can control this through project properties, and it’s accessible via PyQGIS and via associated expression variables (eg @project_vertical_crs) for use in print layouts.
        • Similarly, in 3.38 we introduced the API support for map layers to have a vertical CRS. (This was not exposed to users in 3.38 though)
        • In QGIS 3.40 so far we have exposed the vertical CRS setting for vector layers to users (via the layer properties dialog), allowing users to specify the associated vertical CRS for these layers. The vertical CRS is respected in elevation profile plots, in Identify tool results, and in 3D Map views (assuming the 3D map is created with an associated vertical CRS).
        • There is an open pull-request for 3.40 to expose the vertical CRS for point cloud layers in a similar way, with the vertical CRS being respected in elevation profiles, identify tool results, and 3D map views
        • We have open pull requests for 3.40 to show layer vertical CRS information in the layer properties “information” pages, and add expression variables at the layer scope (eg @layer_vertical_crs).
      4. Improve test result handling on QGIS CI (#268) – Report
        Any tests which fail a rendering comparison will write a descriptive comment to the PR. The comment details which render tests failed, where they are in the code, and includes some helpful pointers to downloading the full test report and the QGIS developer documentation. We also implemented lots of improvements in running the tests locally and how the render test reports are generated and presented to developers.

      Thank you to everyone who participated and made this round of grants a great success and thank you to all our sustaining members and donors who make this initiative possible!

    • sur Mappery: yNot Festival

      Publié: 16 August 2024, 11:00am CEST

      Jeremy shared a pic of the recyclable beer glasses at the yNOT festival. Is that a semi-conical projection?

      MapsintheWild yNot Festival

    • sur Markus Neteler: GRASS GIS 8.4.0 released

      Publié: 16 August 2024, 10:20am CEST

      The GRASS GIS 8.4.0 release provides more than 520 improvements and fixes with respect to the release 8.3.2.

      The post GRASS GIS 8.4.0 released appeared first on Markus Neteler Consulting.

    • sur How the World Powers Itself

      Publié: 16 August 2024, 9:33am CEST par Keir Clarke
      You can learn a lot about how the world powers itself from the Global Energy Monitor's Power Tracker. This interactive map shows the locations of nearly 18,000 power stations in 200 countries around the world, categorized by power sector.Using the map's filter controls it is possible to explore where different types of power stations are distributed around the world. This allows you, for
    • sur Mappery: Zierikzee

      Publié: 15 August 2024, 11:00am CEST

      Reinder sent us this interesting map sculpture “I spotted this specimen of street furniture — in fact: my wife did. What you see is the outline of the island Schouwen-Duiveland, part of the Dutch province Zeeland. The white ball is actually on the spot of the town Zierikzee. Very quiet and charming now, but it has quite a notorious history. “

      Well done Mrs Storm!

      MapsintheWild Zierikzee

    • sur Virtual Indian Independence Day

      Publié: 15 August 2024, 10:45am CEST par Keir Clarke
      Today is Indian Independence Day. On this day India celebrates its independence from the United Kingdom. On 15 August 1947 Jawaharlal Nehru, the first Prime Minister of India, raised the Indian flag above the Lahori Gate of the Red Fort in Delhi. Since then every year on Independence Day the incumbent Prime Minister repeats the ceremony by raising the flag over the Red Fort and by addressing
    • sur Jackie Ng: Announcing: MapGuide Open Source 4.0 Beta 2

      Publié: 14 August 2024, 9:40pm CEST

      This took way longer than expected, but the 2nd beta release of MapGuide Open Source is now available.

      The main driver for this release is to update our various web tier components to their latest respective versions:

      • PHP 8.1.29
      • Apache [httpd] 2.4.62
      • Apache Tomcat 9.0.89
      In addition to that, the Beta 2 release includes the following changes:

      • Installer
        • Newer libpq.dll (PostgreSQL 16.3) bundled with Windows installer
      • Server Tier
        • Fix instability on Linux due to criss-crossed resolution of sqlite3 and geos symbols to our shared libraries instead of the distro-provided versions
        • Repository admin tools have been momentarily pulled from this and future beta releases until the admin scripts have been updated and/or rewritten. As a workaround, use MapGuide Package files to backup/restore repository content
        • Removed immature MVT tile rendering support. If you want to produce Mapbox Vector Tiles, use any tool from this list
      • Web Tier
        • Fix QUERYMAPFEATURES SelectionKey containing a newline char, breaking client-side reconciliation of selected features
        • More PHP8 compatibility fixes in PHP AJAX Viewer
        • Fix bad instanceof exception checks in PHP AJAX Viewer
        • More PHP8 compatibility fixes in Site Administrator
        • Buffer overflow fixes in WMS/WFS service layer
        • New optional --bind-to parameter for MgDe [HttpServer]
      • InstantSetup
        • Fix crash if no setup log path specified when configuring
      • Samples
        • Fix bad extents in SheboyganXYZ tileset
      So with this release out the door, what is next? Well unfortunately, there is still lots of work to do on the API binding and API documentation front, and so in the interests of not having you wait another year between releases, I am now adopting the policy of "however many beta/rc releases required" which implies more frequent beta/rc releases. As one of the major remaining items is completed and/or newer versions of any of our web tier components are available, that will be the trigger for a new beta/rc release.
      Download

      Note: Trac is a bit flaky right now, so the release notes page may not display. If that happens just retry with browser refreshes. Failing that, you can find all the necessary download links in my release announcement email
    • sur WhereGroup: Plugins entwickeln für PhpStorm am Beispiel von Mapbender

      Publié: 14 August 2024, 3:40pm CEST
      Integrierte Entwicklungsumgebungen (IDEs) bringen von Haus aus schon viel Funktionalität mit. Fehlt allerdings noch eine Funktionalität, lässt sich diese oft auch über ein selbst entwickeltes Plugin ergänzen.
    • sur Mappery: Canada Dry

      Publié: 14 August 2024, 11:00am CEST

      Kate shared this “Neat (and mappy!) Final Jeopardy trivia from the other night: “Early 1900s labels for this beverage brand featured a beaver sitting on a log at the top of a map.”

      I am wondering whether the “Dry” refers to the taste or Prohibiton

      MapsintheWild Canada Dry

    • sur Mapping Train Connections

      Publié: 14 August 2024, 9:34am CEST par Keir Clarke
      For ecological reasons I haven't taken a flight in over 30 years. Consequently I have probably spent many, many hours traveling across Europe by train. One of my retirement plans is to spend winters in Southern Italy. I have begun therefore to research how best to travel by train to southern Italy.According to TrainConnections the best plan is probably to break the journey into two - to take one
    • sur Russia's Secret Nuclear Targets in China

      Publié: 13 August 2024, 9:39am CEST par Keir Clarke
      The Financial Times has obtained secret Russian military files which detail how Russian forces train to use tactical nuclear weapons against both NATO and China.A story-map in the article Russian navy trained to target sites inside Europe with nuclear-capable missiles (paywalled) shows a number of target locations in Europe and the Pacific for Russian conventional and nuclear missiles. In the
    • sur Real-Time Radiation Maps

      Publié: 12 August 2024, 9:38am CEST par Keir Clarke
      Yesterday a fire broke out at the Zaporizhzhia nuclear power plant in Russian occupied southern Ukraine. On hearing the news of the fire I almost immediately rushed to the Real-Time Radiation World Map in search of any detected spikes in radiation in the area.The Real-Time Radiation World Map visualizes radioactivity levels from Geiger counters around the world. Luckily, as you can see from the
    • sur Sean Gillies: Bear scratch

      Publié: 12 August 2024, 2:28am CEST

      I just emailed the Bear 100 race director, Cody Draper, and said that I'm injured and won't recover in time to start in 6 weeks. I'm also too injured to do Black Squirrel in 3 weeks and will be emailing Nick and Brad next.

      What's the injury? When I came home from vacation and started to ramp up my running, my right Achilles tendon became sore and very inflamed. On July 17 I went out for a 30 mile run and had to bail at mile 20. I took some time off from trail running and have been chugging on an elliptical trainer at my gym. Yesterday I tried some running on the bike path behind my house and couldn't even go a mile without excruciating pain. I'm calling it, my season is over. The last time I had serious Achilles tendonitis like this was at the end of my ultimate frisbee career 20 years ago. It took 4 months before I could run without pain. I'm going to keep going to the gym, ice and rest, see some specialists, and get ready for 2025.

    • sur Mappery: Serbo-Montenegrin Attack on Dubrovnik

      Publié: 11 August 2024, 11:00am CEST

      Erik shared this battle map from Dubrivnik.

      MapsintheWild Serbo-Montenegrin Attack on Dubrovnik

    • sur QGIS Blog: Plugin Update – July, 2024

      Publié: 10 August 2024, 12:05pm CEST

      For the last month of July, one short of 30 new plugins were published in the QGIS plugin repository.

      Here follows the quick overview in reverse chronological order. If any of the names or short descriptions catches your attention, you can find the direct link to the plugin page in the table below:

      MariaDB to QGIS
      Fetches longitude (x) and latitude (y) data from MariaDB and writes it to a Shapefile or GeoPackage and adds it to your map.
      Print Selection
      Outputs selected features to text console.
      DeraPro
      DeraPro for projects and studies allows the download of the reference spatial data of Andalusia and make a cut of the information for a specific study area.
      QPackageQGZ
      QPackage is a tool to save both your QGIS project and data contained in the project to a new directory.
      ArgentinaGeoServices
      A QGIS plugin to import WMS Geoservices from Argentina.
      T Vertical Sessions
      Used to Vertical Sessions of Lidar Point Cloud.
      BuenosAires Converter
      A QGIS plugin that converts layers to EPSG:9497.
      Make Sector
      Plugin to create sector, circle radius, and spidergraph delimited and vector layer.
      CBERS-4A WPM Explorer
      The CBERS Explorer is a specialized plugin developed to facilitate the search and retrieval of images from the China-Brazil Earth Resources Satellite (CBERS) program, specifically focusing on the CBERS-4A satellite with Wide Field Imager (WPM) data.
      FPT Plot Alocation
      Plot alocation for forest inventory.
      QGISpell
      Creates context menu spell checking for attribute data based on ENCHANT libraries.
      ur-scape Data Importer
      Import data to ur-scape.
      MorphAL
      MorphAL plugin for QGIS.
      LER+
      Nem adgang til LER2 forespørgsler.
      Threshold to ROI
      Create ROI (Region of Interest) with threshold values.
      Spell Checker
      Check the spelling of words in Print Layout elements.
      Filter By Selection
      Filter a given layer by the selected feature and attribute of another layer.
      Natur i Norge kartlegging
      Natur i Norge (NiN) mapping tool.
      AIAMAS – AI-Assisted Map Styler
      Symbolize your vector layers in seconds.
      Sentinel 2 Image Downloader
      This plugin allows users to download Sentinel-2 images.
      MapSafe
      Safeguard datasets using masking, encryption and notarisation.
      GPX Maker for GARMIN® devices
      This plugin exports GPX files for GARMIN® devices.
      QGIS Sound Effects
      Add sound effects to QGIS to make work less boring.
      Mosaic Tool
      A plugin to mosaic bands from selected raster layers.
      Polaris
      QGIS interface for Polaris through Polaris-Studio
      ArcGeek Calculator
      A comprehensive toolset for coordinate calculations, conversions, spatial operations, watershed analysis, land use analysis, and flood simulation in QGIS.
      Auxiliary Labeldata Importer
      Helps you to import Labeldata, stored in an auxiliary Layer from another Project.
      Sections
      Creates a section polygon layer from a point layer.
      Slownik warstw
      Tworzy s?ownik w formie pliku txt rozdzielanego tabulacjami dla wybranych warstw, program pozwala na eksport pe?nych nazw pól danej warstwy oraz wersje jako powstanie po zmienie z gpkg do shp.

    • sur Mappery: Asia?

      Publié: 10 August 2024, 11:00am CEST

      Matt Malone spotted this t-shirt in a local thrift shop. “Found a new shirt for my next #GIS conference”

      I’ve got a feeling that will prompt quite a lot of conversation!

      MapsintheWild Asia?

    • sur Memorial Day Weekend Helicopter Flights

      Publié: 10 August 2024, 8:40am CEST par Keir Clarke
      The Gothamist has mapped out helicopter flights over New York City during the Memorial Day Weekend. The map accompanies a story on the rise in residents' complaints about helicopter noise in the city and the news that the City Council is introducing two bills aimed at reducing helicopter traffic.The interactive map in NYC Council bills aim to soar above helicopter noise complaints uses data
    • sur Fernando Quadro: Curso de GeoNode: Inscrições abertas

      Publié: 9 August 2024, 6:43pm CEST

      Aprenda a criar a sua própria Infraestrutura de Dados Espaciais com o GeoNode, uma plataforma para gestão e publicação de dados geoespaciais que reúne projetos open source maduros e estáveis sob uma interface consistente e fácil de usar, permitindo que os usuários, compartilhem seus dados de forma rápida e fácil.

      Este curso visa capacitar os profissionais no uso eficiente da plataforma GeoNode, e tem como objetivos:

      ? Familiarizar os participantes com os conceitos fundamentais do Geonode e suas capacidades.
      ? Explorar o funcionamento de servidores de mapas e seus benefícios.
      ? Apresenar como realizar a criação de usuários e grupos de acessos às suas informações.
      ? Ensinar como realiza a criação de seus Mapas, Dashboards e GeoStories.
      ? Realizar a integração do Geonode com o QGIS através de plugins.

      ?? Quer saber mais?

      O Curso é oferecido na modalidade EAD Ao Vivo, com uma carga horária de 18 horas divididos em 6 encontros. Porém, essas aulas são gravadas e ficam disponíveis ao aluno por 12 meses em nosso portal do aluno.

      Então, se por acaso você não puder comparecer em alguma das aulas ao vivo, não se preocupe, você poderá rever a aula gravada a qualquer momento.

      ??Ficou interessado?

      Acesse: [https:]]
      WhatsApp: [https:]]

    • sur KAN T&IT Blog: Innovación y Colaboración en FOSS4G Europe 2024

      Publié: 9 August 2024, 4:39pm CEST

      ¿Te apasionan las tecnologías geoespaciales de código abierto? Si es así, FOSS4G Europe 2024 en Tartu, Estonia, fue el evento que no debiste perderte.

      ¿Alguna vez te has preguntado cómo el software de código abierto está revolucionando el mundo de los Sistemas de Información Geográfica (SIG)? FOSS4G Europe 2024 reunió a expertos y entusiastas de todo el mundo para explorar esta pregunta y mucho más.

      Durante siete días, del 1 al 7 de julio, Tartu se convirtió en el epicentro de la innovación geoespacial. En esta ocasión, nuestro CEO, Ariel Anthieni y nuestro Sales Engineer, Adrián Yoris, tuvieron la oportunidad de participar de este evento.

      La conferencia ofreció una serie de talleres interactivos, presentaciones de vanguardia y sesiones plenarias con ponentes de renombre. Uno de los momentos destacados fue la presentación sobre la implementación de SIG de código abierto en proyectos comunitarios, donde se discutió cómo estas herramientas están transformando la gestión de recursos naturales en regiones rurales.

      Un ejemplo notable fue el estudio de caso de una comunidad en Estonia que utilizó software SIG de código abierto para mejorar la gestión de sus bosques, resultando en una optimización del 20% en la recolección de datos y una mejor conservación ambiental. Esta historia ejemplifica cómo la tecnología puede ser una fuerza para el bien común.

      Además, Ariel fue invitado a participar en el panel “Changing the mindset of ‘Open Source is just for those who can’t afford to pay licenses’”, junto a otros expertos como Codrina Ilie de Terrasigna y Matthias Kuhn de OPENGIS.ch, para compartir su experiencia como CEO de Kan Territory & IT, y comentar sobre cómo las soluciones basadas en código abierto pueden transformar sectores públicos y privados, ofreciendo innovación personalizada e integración eficiente de tecnologías geoespaciales.

      FOSS4G Europe 2024 no solo fue un evento educativo, sino también una celebración de la colaboración y la innovación en el ámbito de los SIG. Si te lo perdiste, no olvides seguir las actualizaciones y prepararte para la edición internacional que se realizará en Belém, Brasil. Comparte tus experiencias y pensamientos en los comentarios, y sigue explorando más sobre el fascinante mundo de las tecnologías geoespaciales de código abierto.


      ¡Nos vemos en Brasil en la FOSS4G Internacional!

      Créditos de la Foto: Andres Tennus (fotógrafo de la FOSS4G Europe)

    • sur Mappery: Finger Lakes Wines

      Publié: 9 August 2024, 11:00am CEST

      Doug Greenfield shared this wine map “Finger Lakes Wine Center @ Sonnenberg Gardens.”

      MapsintheWild Finger Lakes Wines

    • sur Tripgeo Cities

      Publié: 9 August 2024, 8:46am CEST par Keir Clarke
      A few months ago Map Channels kindly offered to create a json feed for my Guess This City game. I had been complaining about having to add a new city to the game every day. Map Channels then volunteered to create a feed for the game which gives the name, coordinates, population and a description of a different city each and every day. The result is that Guess This City now updates daily without
    • sur Ian Turton's Blog: How to reproject features in QGIS

      Publié: 9 August 2024, 2:00am CEST

      I came across a brilliant thread on Mastodon by Sarah Dal discussing how she worked out what the most remote post box in the UK was. But there was one remark that bothered me, she said that to convert her lat, lon points to OSGB (EPSG:4326 to EPSG:27700 for the nerds) she had to go to the Ordnance Survey site to find some software to do this. Since she already had the points in QGIS this seemed like an unnecessary side quest to me. When I commented that she could have done this in QGIS she said that she always seemed to get it wrong.

      I’m confused by this (and by the many other people who ask questions on gis.stackexchange.com about the same thing) so I’ve put together this video showing how I would do this. Basically, you right click on the layer you want to reproject and select export->Save features as and then just change the drop down box to the projection you need. QGIS will then save the features and add that layer to your project. You shouldn’t see any difference other than the colour of the points will change (as QGIS assigns a new random colour to the new layer).

      And yes, I really should have split the Northern Irish post boxes out into a separate file and projected them to the Irish grid but this is just a demo.

    • sur The Presidential Medal of Cartography

      Publié: 8 August 2024, 9:59am CEST par Keir Clarke
      Kamala Harris' Vice-Presidential pick Tim Walz loves maps. As a former high school geography teacher it should come as no surprise that Walz has an interest in cartography, but it appears that he is in act a full blown GIS nerd who only last year called for November 15th to be 'GIS Day'. According to Politico Tim Walz has also "addressed the geographic information systems software company
    • sur Public Services on the Map: A Decade of Success

      Publié: 7 August 2024, 10:05pm CEST par Simon Chester

      The Netherlands’ Cadastre, Land Registry, and Mapping Agency (Kadaster) maintains the nation’s register of land and property rights, ships, aircraft, and telecom networks. It’s also responsible for national mapping and the maintenance of the nation’s reference coordinate system and serves as an advisory body on land-use issues and national spatial data infrastructures. In its public service role, Kadaster handles millions of transactions a day.

      Celebrating 10 years: PDOK’s evolution. (click to enlarge)

      PDOK was launched in 2013 to make the Dutch government’s geospatial datasets Findable, Accessible, Interoperable, and Reusable (FAIR) as mandated by the EU’s INSPIRE Directive. OGC Standards have been foundational in ensuring that the country’s Spatial Data Infrastructure (SDI) is scalable, available, and responsive.

      PDOK serves base maps and Earth Observation data for the whole country. It includes the Key Topography Register (Basisregistratie Topografie, BRT), aerial imagery (updated annually at 8 and 25 cm GSD), and the Large Scale Topography Register (Basisregistratie Grootschalige Topografie, BGT). The BGT is a detailed digital base map (between 1:500 and 1:5,000) that depicts building footprints, roads, water bodies, railways lines, agricultural land, and parcel boundaries. PDOK also serves a 3D dataset of buildings and terrain created from topography (BGT), building footprints (from the  Building and Addresses Register or BAG), and height information (from aerial photography).

      When PDOK was launched in 2013, it hosted 40 datasets and handled 580 million server requests annually. Today it hosts 210 datasets and handles 30 billion server requests annually—representing a 5,000% increase in service requests being handled by the platform.

      Examples of PDOK basemaps and imagery. Standards Enabling Success

      The majority of datasets on PDOK are made available using OGC’s popular Web Map Service (WMS) and Web Feature Service (WFS) standards. The BRT is available in three coordinate reference systems (EPSG 28992, EPSG 25831, and EPSG 3857) using the Web Map Tile Service (WMTS) standard. 

      Kadaster is in the process of transitioning to the newer OGC API Standards, including OGC API – Tiles and OGC API – Features. The most frequently used key registers, like the Building and Addresses Register (BAG), the Large Scale Topography Register (BGT), and the Key Topography Register (BRT) are in the process of being migrated to these newer OGC APIs. The focus is on using OGC API – Tiles, specifically Vector Tiles. For query services the OGC API – Features Standard is used. Although Earth Observation data doesn’t currently use the newer APIs, aerial imagery is available through WM(T)S services, stored as OGC Cloud Optimized GeoTiffs (CoG). 3D Building data is encoded as OGC 3D Tiles and served using the OGC API – 3D GeoVolumes standard. 

      The PDOK architecture and OGC Standards. (click to enlarge)

      By using the newer OGC API Standards, Kadaster has found it significantly easier to handle the large volume of data in its national-scale 3D building dataset (which can be used between scales of 1:500 and 1:10,000) providing an unparalleled, high-resolution perspective of the country’s built environment.

      OGC APIs also make it easier to track compute and memory usage on servers, allowing Kadaster to better realize platform scalability and optimize performance.

      PDOK uses the OGC API – 3D GeoVolumes to serve the 3D building dataset. (click to enlarge) A Smooth Transition to OGC APIs

      PDOK processes billions of user requests every month. Transitioning from OGC Web Services Standards to OGC APIs has meant Kadaster is able to efficiently handle the volume of requests it handles today – and can expect to handle in the future. 

      It took Kadaster little over a month to build their implementation of OGC API – Tiles. Following a short learning curve they were able to build out implementations of OGC API – Features and API – 3D GeoVolumes even faster. By making the move to deliver its geospatial tiles and feature data through an API conformant to the OGC API Standards, Kadaster continues to make government data Findable and Accessible. 

      PDOK implements what Kadaster calls the 3G principle—Generic (Generic), Geautomatiseerd (Automated) en Gestandaardiseerd (Standardized). This has led to simplified data processing, the automation of many manual processes, a standardization in services, and high standards in service design and operation – while at the same time remaining infrastructure independent. It has streamlined the adoption of new OGC Standards and made it better able to respond to changing user requirements.

      Kadaster and OGC

      Being an OGC Member allows Kadaster to leverage the collective knowledge of a global network of geospatial experts, while providing Kadaster with opportunities to contribute back to a community driven to use the power of geography and technology to solve problems faced by people and the planet.

      Kadaster has recently contributed to the OGC Community by participating in an OGC Code Sprint. These hybrid online/in-person events give participants the opportunity to work on implementations of new or emerging OGC Standards.

      Through OGC, Kadaster has also shared their experiences and challenges at OGC Member Meetings, contributing to the ongoing evolution of OGC Standards, Collaborative Solutions and Innovation (COSI) Program Initiatives, and, more broadly, advanced the “state of the art” of geospatial technologies.

      The below video provides an overview of PDOK.

      The post Public Services on the Map: A Decade of Success appeared first on Open Geospatial Consortium.

    • sur The Indoor CO2 Map

      Publié: 7 August 2024, 8:09am CEST par Keir Clarke
      Over the years I have posted links to a number of interactive maps which visualize the levels of carbon dioxide in the atmosphere. Human activities such as burning fossil fuels, deforestation, and industrial processes help to increase the concentration of CO? in the atmosphere. Higher concentrations of CO? enhance the greenhouse effect, leading to more heat being trapped in the atmosphere.