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

    3752 éléments (5 non lus) dans 55 canaux

    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 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 GeoTools Team: GeoTools 30.5 released

      Publié: 26 August 2024, 11:23am CEST
         The GeoTools team is pleased to the release of the latest stable version of GeoTools 30.5:geotools-30.5-bin.zip geotools-30.5-doc.zip geotools-30.5-userguide.zip geotools-30.5-project.zip This release is also available from the OSGeo Maven Repository 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.
    • sur Pixel View

      Publié: 6 August 2024, 9:04am CEST par Keir Clarke
      I've created a simple game using images from Mapillary (and a couple of images from Wikimedia).Mapillary is a crowd-sourced 'Street View' service that allows users to capture, share, and explore street-level imagery from around the world. Developers are allowed to use images submitted to Mapillary under a CC BY-SA 4.0 license. Mapillary 'street view' images can be a great resource for
    • sur The Manhole Card Collectors Map

      Publié: 5 August 2024, 9:46am CEST par Keir Clarke
      In the 1980s as a way to promote local culture and tourism local authorities in Japan began designing distinctive and artistic manhole covers. Each municipality often has its own unique manhole cover designs, featuring local landmarks, historical events, flora, fauna, and other culturally significant symbols. In Sumida Ward in Tokyo you can find a man hole cover featuring "The Great
    • sur Exploring London Through the Artist's Eye

      Publié: 3 August 2024, 10:33am CEST par Keir Clarke
      "... this tide is always moving! Always! When all those people we now see in such activity are in their graves, the same hurried activity will still continue here ..." - Hans Christian AndersenWhen Hans Christian Andersen visited London in June 1847 he was obviously impressed by the pace of London life. In his autobiography he called the English capital,"London, the city of cities! ... Here is
    • sur GeoServer Team: Using Binary Comparison Operators in GeoServer Filters

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

      GeoSpatial Techno is a startup focused on geospatial information that is providing e-learning courses to enhance the knowledge of geospatial information users, students, and other startups. The main approach of this startup is providing quality, valid specialized training in the field of geospatial information.

      ( YouTube | LinkedIn | Facebook | X )

      Binary Comparison Operators in GeoServer Filters

      In this session, we want to talk about the various types of filters, with a particular focus on “Binary comparison operators in GeoServer” comprehensively. If you want to access the complete tutorial, click on the link.

      Introduction

      Filtering allows the selection of features that satisfy a specific set of conditions. Filters can be used in several contexts in GeoServer:

      • In WMS requests, select which features should be displayed on a map
      • In WFS requests, specify the features to be returned
      • In SLD documents, apply different symbolizations to features on a thematic map

      Note. This video was recorded on GeoServer 2.22.4, which is not the most up-to-date version. Currently, versions 2.24.x and 2.25.x are supported. To ensure you have the latest release, please visit this link and avoid using older versions of GeoServer.

      Supported filter languages

      Data filtering in GeoServer follows the OGC Filter Encoding Specification, which provides a standard XML schema for encoding spatial, attribute, and temporal filters in GIS. This allows for customized queries to retrieve specific data from databases and web services while ensuring interoperability among GIS applications. GeoServer supports filters in both Filter Encoding Language and Common Query Language.

      Filter Encoding Language

      The Filter Encoding language, defined by OGC standards, utilizes an XML-based syntax to select specific features, similar to the “WHERE” clause in SQL. A filter consists of a condition formed by Predicate elements and Logical operators, employing comparison and spatial operators to evaluate relationships between feature properties. In this session, we will explore various types of binary comparison operators, while the next sessions will cover spatial operators.

      Common Query Language

      Common Query Language (CQL) is a Text-based language used in GeoServer for constructing filters and queries on geospatial data. It provides flexible and powerful options for filtering and retrieving specific subsets of data from GeoServer layers. In the upcoming sessions, we will dive into a detailed exploration of CQL/ECQL, covering its various operations and practical usage.

      Comparison operators

      These operators are part of Filter Encoding operators and are used in attribute-based queries to filter and retrieve specific features or data, based on their non-spatial attributes. The comparison operators include: binary comparison operators and value comparison operators.

      The binary comparison operators are:

      • PropertyIsEqualTo
      • PropertyIsNotEqualTo
      • PropertyIsLessThan
      • PropertyIsLessThanOrEqualTo
      • PropertyIsGreaterThan
      • PropertyIsGreaterThanOrEqualTo

      These operators contain two filter expressions to be compared. The first operand is often a <PropertyName>, but both operands may be any expression, function or literal value. Binary comparison operator elements may include an optional matchCase attribute, with the true or false value. The default value is true, but the comparisons do not check the case if the attribute has a false value.

      Note. String comparison operators are case-sensitive.

      PropertyIsEqualTo

      PropertyIsNotEqualTo is a common type of filter used in GeoServer, which allows you to retrieve features from a data source based on the values of one or more properties. As an example of using this filter in WFS getFeature request:

      • Navigate to the Demos page, then select Demo requests.
      • From the Request section, select the WFS_getFeature1.0.xml request.
      • The address will be filled in automatically, in the URL section.

      Use the following block codes to replace line 26:

      <PropertyIsEqualTo>
        <PropertyName>STATE_NAME</PropertyName>
        <Literal>Delaware</Literal>
      </PropertyIsEqualTo>	
      
      • Now, we will explain some elements:
        • The first fifteen lines include explanations in the form of comments.
        • Line 16 describes the XML version and the GetFeature operation of the WFS service being used.
        • Line 17 specifies the default output format for the WFS service as “gml2.” Additionally, GeoServer supports several other commonly used formats such as “gml3, shapefile, geojson, and csv.”
        • Lines 18 to 23 define the start of the XML request and declare the namespaces used in the request.
        • Line 24 specifies the type name of the feature to be queried. In this case, it requests features of the “topp:states”.
        • Lines 25 to 30 define the filter criteria for the query. On these lines, we use the PropertyIsEqualTo filter, to retrieve all features where the state name attribute is equal to Delaware.
      • Press the Submit button to see the implemented changes.

      • Note. For GeoServer 2.25.2 the Demo Request page has been improved to show response Headers, and provide the option to pretty print XML output.
      PropertyIsNotEqualTo

      PropertyIsNotEqualTo is another common type of filter used in GeoServer, which allows you to retrieve features from a data source based on properties that don’t match a specified value. As an example of using this filter in a WFS getFeature request, use the following block codes to replace lines 26 to 29:

      <PropertyIsNotEqualTo matchCase="false">
        <PropertyName>STATE_NAME</PropertyName>
        <Literal>delAwarE</Literal>
      </PropertyIsNotEqualTo>
      

      Note. The matchCase attribute in WFS_getFeature 1.1 and 2.0 versions, can be set to “false” to specify a case-insensitive comparison.

      Press the Submit button.

      In this example, we used the <PropertyIsNotEqualTo> filter to retrieve all features where the STATE_NAME attribute, is not equal to Delaware.

      PropertyIsLessThan

      The PropertyIsLessThan filter is used to filter features, based on a comparison of a numeric property with a given value. It returns all features where the specified property is less than the specified value.

      An example of using this filter in a WFS getFeature request is:

      outputFormat="shape-zip"
      <wfs:Query typeName="topp:states">
          <wfs:PropertyName>topp:STATE_NAME</wfs:PropertyName> 
          <wfs:PropertyName>topp:LAND_KM</wfs:PropertyName>
      <ogc:Filter>
        <PropertyIsLessThan>
          <PropertyName>STATE_FIPS</PropertyName>
          <Literal>18</Literal>
        </PropertyIsLessThan>
      </ogc:Filter>
      

      Press the Submit button.

      In this example, we used the <PropertyIsLessThan> filter to get all features in a shapefile format where the value of the STATE_FIPS attribute is less than 18. The query only retrieves the STATE_NAME and LAND_KM fields, instead of all the attributes.

      In this session, we took a brief journey through the various types of filters, with a particular focus on “Binary comparison operators in GeoServer”. If you want to access the complete tutorial, simply click on the link.

    • sur From GIS to Remote Sensing: Semi-Automatic Classification Plugin major update: version 8.3.0

      Publié: 3 August 2024, 12:04am CEST
      The Semi-Automatic Classification Plugin (SCP) has been updated to version 8.3.0.This new version requires Remotior Sensus to be updated to at least version 0.4.0.


      During the update process of SCP from version 7 to version 8, several tools were excluded in order to give priority to the main plugin functions.With this 8.3.0 update, several tools are reintroduced, such as Clustering tool for unsupervised classification (K-means method), the Spectral distance tool, the Edit raster tool, and the Raster zonal stats.Read more »
    • sur WhereGroup: Kick-off für die Entwicklung eines bundesweiten Softwaretools für mehr Klimaschutz in der Baubranche

      Publié: 2 August 2024, 12:15pm CEST
      Schon 2016 waren wir auf Landesebene im Bereich Ersatzbaustoffverordnung tätig und sind nun vom BMUV mit dem Umweltbundesamt mit der Erstellung eines bundesweiten Ersatzbaustoff-Katasters beauftragt.
    • sur GRASS GIS: Report from the GRASS Community Meeting 2024

      Publié: 2 August 2024, 11:42am CEST
      The annual GRASS GIS Community Meeting was held once again in the Czech Republic, this time at the NC State European Center in Prague from June 14 to 19. The meeting brought together users, supporters, contributors, power users and developers to collaborate and chart the future of the project. Thanks to the generous funding from the U.S. National Science Foundation (Award 2303651), the Open Source Geospatial Foundation (OSGeo), FOSSGIS e.V., and individual donors, we were able to welcome 16 in-person participants from 9 countries on 3 continents, plus 2 remote participants.
    • sur Mappery: Watersnood 1

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

      Reinder shared this “On the 1st of February 1953 a disastrous flood occurred in the southwest of The Netherlands. More than 1800 people lost their lives and an entire infrastructure was devastated. This is known as the Watersnood, and it is the topic of the Watersnoodmuseum in Ouwerkerk in the province of Zeeland.”

      MapsintheWild Watersnood 1

    • sur The Olympic Medals Map

      Publié: 2 August 2024, 9:20am CEST par Keir Clarke
      In the past seven days you've almost definitely seen numerous tables of Olympic medal winners. Now it is time to view the map.Giorgio Comai creates interactive maps of Olympic Medal winners based on which NUTS region they were born in. This means that you can look past the traditional country led rankings used in most Olympic medal tables to explore the medals won by different regions.
    • sur 170 Years of American Immigration

      Publié: 1 August 2024, 8:54am CEST par Keir Clarke
      The Pew Research Center has analysed census data to map the changes in the immigrant population over the last 170 years. An animated map in How America’s source of immigrants has changed over time shows the top country of birth of immigrants in each state from every census since 1850 (except 1890 - the census data for this year was destroyed in a fire).The animated map clearly illustrates the
    • sur GeoServer Team: GeoServer User Forum replaces mailing list

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

      GeoServer is updating our communication channels!

      We know people do not like signing up for mailing lists, Twitter has been Xed out, and it is time to move on.

      GeoServer User Forum

      Welcome to the GeoServer User forum:

      • This forum is open to the public, we are pleased to meet you and hope you enjoy using GeoServer.
      • Hosted by Open Source Geospatial Foundation
      • All project communication including this forum are subject to our code of conduct
      • This is one of many options for community support and communication.
      Sign in

      Taking part is easy (sign-in with credentials you already have):

      1. Login to discourse.osgeo.org:

        • Login “with LDAP” to use your OSGeo UserID (also used for other osgeo services).

          The button appears greyed out, but this is only poor styling choice. The button is enabled and works.

        • Use “Log in with GitHub” to use GitHub credentials.

        • More options are added over time.

        Discourse Login

      2. You may also use “Sign Up” if you want to create an account just for use with the Forum.

        Discourse Signup

      3. Unsubscribe from geoserver-users email list.

        We will continue to operate the geoserver-user list for the month of August, and then do a final synchronization of any outstanding email messages to complete the migration.

      4. Navigate to the category GeoSever / User to enjoy the forum.

        Discourse Signup

      5. Use New Topic to start a new conversation.

        Only the GeoServer / user subcategory allows new topics. If the New Topic button is disabled you may be looking at the GeoServer top-level category.

      6. To test please send introduce yourself we are looking forward to meeting you.

      Use as a mailing list replacement

      If you enjoy the out-of-band timezone friendly mailing list experience - Discourse allows you to subscribe to notifications, and use email to post and reply to topics.

      1. Sign-in to Discourse as above.

      2. From your profile preferences, use the email tab to adjust email settings.

        IMPORTANT: Email is only sent when you are not logged in to the discourse website!

        Discourse Email Preferences

      3. Navigate to GeoSever User category, and use the bell to change notifications to Watching.

        Discourse Notifications

      4. If you wish to update any email rules the new mailing is user.geoserver.discourse.osgeo.org

      5. You can send email to geoserver-user@discourse.osgeo.org to start a new topic.

        To test please send an email to introduce yourself (rather than a test message).

      Mastadon and other socials

      GeoServer is occasionally active on social media:

      If you enjoy social media we would love some assistance reposting and highlighting our community activity. Contact us on your preferred social media platform to help out.

      GeoServer Mastadon

    • sur Mappery: World T-Shirt

      Publié: 31 July 2024, 11:00am CEST

      How a mechanical issue leads to a new map in the wild. Back home, I had a problem with a lawn mower. I called a friend for help, who finally came with this fabulous T-shirt!

      MapsintheWild World T-Shirt

    • sur The Best Graphics Team in the World

      Publié: 31 July 2024, 8:39am CEST par Keir Clarke
      The Straits Times has the best graphics department in the world - probably. The Washington Post and New York Times might be contenders but because of their paywalls most of their work is hidden away from most of the world.The latest astonishing demonstration of the graphic skills of the Straits Times comes in an article celebrating the 100 year anniversary of the construction of the
    • sur Rat-Town, Massachusetts

      Publié: 30 July 2024, 10:36am CEST par Keir Clarke
      A new interactive map of Boston seems to indicate that Beantown has become Rat-town. Rats! Boston shows rat sightings around the Massachusetts city made by concerned citizens.Self-appointed Rat Czar Viviano Cantu is using 311 reports to map all the recent sightings of rats around Boston. The sightings are taken from non-emergency 311 calls to the city. The Rats! Boston map also shows the
    • sur AI-Powered Satellite Search

      Publié: 29 July 2024, 9:21am CEST par Keir Clarke
      Clay Explore is an interactive map demo of a new open-source AI Earth observation model. The map allows you to search aerial imagery of Southern California, Seoul and Puerto Rico using machine learning.Using Clay Explore you can click on any map tile or draw an area to search the map for similar looking areas. Each of the three searchable maps (Southern California, Seoul and Puerto Rico) comes
    • sur Mappery: Sorgenfri

      Publié: 28 July 2024, 11:00am CEST

      Marc-Tobias sent me this great map mural from Sorgenfri station in Denmark

      MapsintheWild Sorgenfri

    • sur GRASS GIS: GRASS GIS 8.4.0 released

      Publié: 27 July 2024, 11:42am CEST
      What’s new in a nutshell The GRASS GIS 8.4.0 release contains more than 520 changes compared to 8.3.2. This new minor release includes important fixes and improvements to the GRASS GIS tools, libraries and the graphical user interface (GUI), making it even more stable and robust for daily work. Most importantly: location becomes project: The Python API, command line, and graphical user interface are now using project instead of location for the main component of the data hiearchy while maintaining backward compatibility.
    • sur Mappery: Bed sheets

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

      Laura Harris shared this picture on LinkedIn

      MapsintheWild Bed sheets

    • sur The US Road Fatality Map

      Publié: 27 July 2024, 9:03am CEST par Keir Clarke
      Last week I posted a link to the NYC Congestion Zone Live Crash Tracker, an interactive map of car crashes in New York City. If you live outside of New York then you might prefer Roadway Report instead, which is a visualization of American roadway fatalities in the 21st Century.The Roadway Report map uses road traffic accident data from the National Highway Traffic Safety Administration's
    • sur Mappery: Do not mix dishcloths and napkins

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

      This is literally what I thought when I saw this picture. The sentence makes sense for a French speaker; the English version would be: not mix apples and pears, but I also found apples and oranges. Always happy to learn the usage if you want to comment on our socials.

      Anyway, my title is misleading about the subject; the picture shows handkerchiefs from Chris Chambers.

      MapsintheWild Do not mix dishcloths and napkins

    • sur Mapping Power Outages in Kiev

      Publié: 26 July 2024, 10:29am CEST par Keir Clarke
      The Map of Power Outages in Kiev visualizes power outage schedules in the Ukrainian capital. Due to Russia's ongoing attacks on power stations in Ukraine the electric power company Yasno has to schedule times of planned power outages. The Map of Power Outages in Kiev uses this schedule to provide an interactive map at the individual building level of these scheduled power outages.It is
    • sur Your Daily Map Trivia Game

      Publié: 25 July 2024, 2:03pm CEST par Keir Clarke
      TripGeo Trivia is a new daily geography quiz which requires you to identify ten cities based on a number of clues. Every day ten new random cities from around the world need to be identified. To help you in this task you can view three clues as to the identity of each city.Every day you get to identify ten new cities. For each city you get three clues and a choice of possible answers. Using the
    • sur The Catalan GeoGuessing Game

      Publié: 25 July 2024, 7:33am CEST par Keir Clarke
      Developer Toni Vidal has released a new GeoGuessr inspired game featuring photographs of the stunning and diverse landscapes of Catalonia. His Geoendevina game simply requires you to guess the locations of a series of photos taken in the Catalonia region of Spain.The rules of Geoendevina are very simple. In each round of the game you are presented with a different photograph, each of which
    • sur Tracking American Spies in Germany

      Publié: 24 July 2024, 8:24am CEST par Keir Clarke
      Bayerischer Rundfunk and netzpolitik have carried out a joint investigation into how our location data is for sale across the world. These days nearly everyone voluntarily carries around their own personal tracking device in the form of a smartphone. These devices record our movements all day long. What most people don't know is that their location data is openly being sold by global data
    • sur Jorge Sanz: Elastic Volunteering Time Off

      Publié: 23 July 2024, 11:15am CEST

      My employer, Elastic, has a number of philanthropic initiatives but definitely the one I love the most is the Volunteering Time Off (VTO). We are given 40 hours per year from our working hours to contribute to projects and initiatives we care about. Employees have full freedom to choose what they want to do with that time and are encouraged to use it.

      In my case, over this almost 5 years I have to admit I haven’t used all that time every year but I tried to get the most of it. During COVID I did some remote work for a local NGO that works for fair trade, giving them a webinar about Open Source among other things (see update from December 2019 and following months). I also spent a few days working on some admin tasks for the Open Source Geospatial Foundation and I’ve already written here about a couple sessions I did for Cibervoluntarios, training seniors and teens about safe browsing and email.

      Last week I was showcased in the company blog, along with other colleagues, on different projects to contribute to. In my case, last year I joined the mapping efforts after the Morocco Earthquake and took a full day mapping roads and streets of a rural area, as part of the coordinated efforts from the Humanitarian OpenStreetMap team (reported on my October community update). I’m very happy to have this support from my employer to leave things aside when an emergency like this arises, granted there are no other urgent issues at work.

      As a personal call to action, I’d love to get back to Cibervoluntarios activities. This year has been quite busy; let’s see after summer if there’s room for getting out and engaging with them.

      I know I haven’t updated this site in a while, I’ll write one soon! ?

      Reply by mail or from the fediverse

    • sur Mappery: Geodesic point

      Publié: 23 July 2024, 11:00am CEST

      Jilles van Gurp shared this geodesic point in Hannover with us.

      MapsintheWild Geodesic point

    • sur The Retro Gamer's Map

      Publié: 23 July 2024, 10:04am CEST par Keir Clarke
      The Retro.Directory is an interactive map which shows the locations of venues related to retro gaming. These include gaming museums, arcades, cafes, bars, clubs and repair services. The map is designed to help retro gaming enthusiasts discover retro-themed locations nearby and around the world.I am so old that I can actually remember a time before computer games. I can remember the amazing
    • sur QGIS Blog: Introducing the new QGIS.org website

      Publié: 23 July 2024, 9:00am CEST

      We have a new website!

      We recently launched our new website at QGIS.org. It is a ground-up overhaul and provides a fresh take on the first contact point for existing or potential users wishing to engage with the QGIS project and discover its value proposition.

      A new strategy for QGIS.org websites

      In this blog post, we would like to provide an overview of the goals that we had for building the new QGIS.org website and the bigger picture of how this website update fits into the broader strategy for our website plans for QGIS.

      About two years ago, we started experimenting with building a new QGIS.org website based on Hugo. Hugo, as a technology choice, was less important than was our intent to develop a more modern site that addressed our strategic goals.

      After some ‘in-house’ (i.e. volunteer-based) work to develop an initial version of the site, we received the go-ahead to use QGIS funds for this and put out a call in October 2023 for a company to support our work. This was ultimately won by Kontur.io, who, together with our volunteers, brought the work into high gear.

      Questions to be quickly answered by qgis.orgInitial analysis of the questions and actions to be quickly answered by qgis.org

      Goal 1: Speak to a new audience

      Our primary goal was to speak to a new audience. We are confident that QGIS can compete with all of the commercial vendors providing GIS software. We didn’t convey that well on our old website. We feel that QGIS was too apologetic in how it presented itself. We wanted a website which inspires confidence while addressing the needs of a corporate or organisational decision-maker who is looking at the QGIS project during their GIS software selection process.

      The old website was very focused on the developer and contributor community. Obviously, those aspects are important since, without our fantastic community, the QGIS project would not exist. The messaging around open source is also important. Yet these ideas are secondary to the idea that QGIS is one of the best (if not the best) desktop GIS applications out there on the market – open-source or otherwise. We need to present it in this professional perspective.

      So, the first goal was to change the messaging to focus on QGIS’s value proposition and take a very professional approach to presenting ourselves on the website.

      User group analysisUser group and requirements analysis for the potential qgis.org visitors

      Goal 2: Harmonisation

      The second goal was to start the process of harmonising all of our website properties. QGIS.org, over the years, has built many different web properties. For example, there’s the plugins website, the feed, the changelog, the sustaining members website, the lessons website and the certification website, the new resources hub website, the API documentation, the user documentation, the user manual, the training manual, various other documentation efforts, and more. Some of those are combined in one application, There are also some less well-known resources, like our analytics.qgis.org and another one for plugin analytics. In short, we’ve a lot of resources!

      With so many different web properties, they’ve devolved over time: each has its own look and feel, navigation approach and how you interact with it. Some of them were translated, and some of them were not. We want to harmonise all of these sites so that the user does not notice any change in user experience when they move from one QGIS-related site to another.

      Goal 3: Harmonising deployment

      In the underlying process of these changes, we’re also redeploying all of the websites on new servers, which are more up-to-date and use better security and maintenance practices. Plenty of work is happening in the background to ensure that all of the servers are in a better-maintained state, document how they’re maintained, and so on.

      Goal 4: A hub and spokes

      The objective of the new site design is to allow quick movement between the QGIS auxiliary sites. The QGIS.org site will form a hub that effortlessly takes visitors to whichever QGIS-related site they need to complete the task they are busy with. If you’re moving between these sites, the experience should be seamless. You should not really even be aware that you’re moving between different websites. Other than looking at the URL bar, the user presentation and experience should be harmonious between all of them.

      One way we are planning to achieve this is to have a universal menu bar and footer. You will see that in the new website’s design, there is a menu bar across the top. This menu bar has two levels: the top menu and the second level, where the search bar is.

      The universal menu bar

      In this second row, auxiliary sites will have their own sub-menu whilst keeping the shared top-level menu. So if you, for example, are moving around in plugins and want to review the plugin list or submit a new plugin, all of that navigation will be on the second line where the search bar is currently. Regardless of which subdomain you are on, the top-level menu bar will be the same, allowing you to easily navigate back to the hub or to another subdomain.

      The footer will be unified and shared between all sites, and the cascading style sheets and styling will be unified across all of the QGIS websites.

      In the next phase, we will work to achieve this coherence across all the websites, though we still have a few more tweaks to make to the qgis.org site first.

      Goal 5: DOTDOTW – do one thing, do one thing well

      We plan to break some auxiliary websites apart into separate pieces. So, for example, the changelog management, certification management, sustaining members management, and lessons management are all in one Django app. We will split them into small single-purpose applications using some common UX metaphors so that each is a standalone application that makes it easy for a potential contributor to understand everything the application does. This will also simplify management as we can upgrade each auxiliary site on separate development cycles. We will also finally have semantic URLs, e.g. certification.qgis.org, to take you to the different areas of interest on the site.

      The plugins.qgis.org is also going to be refactored so that it just has plugins and not the resource sharing we’ve added in the last few years. The resource sharing will go into its own subdomain. Similarly, the Planet website will get split into its own website (the planet is a blog aggregator or RSS aggregator) that will be in its own managed instance. Some other components (like the analytics) are difficult to split out like this because they’re linked to the same database. We will try to make sure that those are more discoverable and theme them as much as possible to match the rest of the website experience.

      Goal 7: Encapsulation

      Another goal we had for the QGIS.org makeover was to make the site performant and self-contained. By self-contained, we mean that it should not ‘call’ out to CDN, Google or other platforms for resources like fonts, CSS frameworks, javascript libraries, etc. There were two reasons for this:

      1. These platforms often use such resources to track users as they move around the Internet, which we want to avoid as much as possible.
      2. We want to wholly manage our site, be able to fix any issues independently and generally follow a path of self-determination.

      Our approach also facilitated the creation of a very performant website, as you can see here. We will try to adhere to these principles for the auxiliary site updates we do in the future, too.

      What about translations?

      The question has come up: Why did we not want to translate the new QGIS.org when it was translated before?

      Firstly, we should make it clear that we do not plan to remove translations from the user documentation, the user manual, and so on, where we think they have the most value.

      For the main QGIS.org site, we question whether there is a high value in translating it. Here are some reasons why:

      1. Lingua franca: If you are an IT manager in a non-English-speaking country and you want to evaluate some software, you’re going to run into a product page that presents itself in English – it is the norm for IT procurement to work in English for reviewing software products and so on.

      2. Automation: Automated translations inside browsers are getting better and better. While these translations are still not completely adequate, we think they will be in one or two years’ time.

      3. Translation integrity: Our pursuit of Goal 1 means that we would no longer find it acceptable to have partial website translations. We also need to ensure that the wording and phrasing are consistent with the English messaging. We also have concerns about the QA process regarding trust and review – we want to ensure that any translation truly reflects the meaning and intent of the original content and has not been adjusted during the translation process.

      4. Cohesion: Our most important point is raised if we go back to this idea of cohesion between the different websites like QGIS.org, plugins.qgis.org and so on. As well as having the same styling, we also don’t want to switch between languages as you hop between the sites. We aim to present them all as one site. If we translate QGIS.org and then take you to our auxiliary sites, e.g., plugins.qgis.org, the feed, or certification pages, which are in English only, the experience is jarring.

      So we must either translate everything into all of the same languages, or work in English. Translating everything is a mammoth task for the translators and for us to retrospectively add translation support to each platform. Thus, we prefer the approach of harmonising everything to one language and then focusing our translation efforts on three areas:

      1. The application itself,
      2. the user manual and
      3. the training manuals.

      We can leave the rest of the experience in English and instead focus on harmonising, for now, both in terms of look and feel and the technology used.

      When we consider everything as one big website and what the bigger plan is, it is hopefully clearer why we didn’t think translating the landing page and QGIS.org was the best approach.

      Further funded work

      We hope to use more QGIS funding to support this work in the future. We’re also hoping to work again with Kontur to start moving all these auxiliary sites into their own projects, applying our style guidelines to each. Independently of that, Tim (volunteer), Lova (QGIS funded), and others are already getting started with this process.

      Helping out

      Do you have strong opinions about the website? Contact Tim on the PSC mailing list if you would like to get involved as a volunteer. We would love to hear from designers, word smiths, marketers, information architects, SEO specialists, web developers and those who think they can help us achieve our goals.

      Conclusion

      We hope our goals and process make sense for everybody and that we were able to lay out a clear, logical argument about why we don’t want to translate the new website quite yet. We want to focus on these overarching goals and then return to them later if they are still a priority for people. Everything we have built is Open Source and available at this repo, where you can also find an issue tracker to report issues and share ideas relating to the new website.

      Thanks for reading. Go spatial without compromise ??

      Cheers, Tim, Marco and Anita

    • sur SourcePole: Adding external WMS to the QGIS Cloud Web Map

      Publié: 23 July 2024, 2:00am CEST
      The use of WMS/WMTS layers in a QGIS Cloud map project can significantly degrade the performance of the map display. I have already discussed how to counter this problem in an earlier post. One of the solutions is to load external WMS as background layers. The problem with this approach, however, is that only one WMS background layer can be loaded at a time. If further WMS layers are to be loaded into the map at the same time, this approach cannot be used.
    • sur Mappery: Wallpaper

      Publié: 22 July 2024, 11:00am CEST

      Chris Chambers shared this wallpaper.

      MapsintheWild Wallpaper

    • sur Virtual Reality OpenStreetMap

      Publié: 22 July 2024, 8:19am CEST par Keir Clarke
      osm4vr is a virtual reality world built using OpenStreetMap map tiles and building footprints. Using osm4vr with a VR headset you can explore the world in virtual reality. Alternatively, if you don't have access to a headset you can simply fly around the world in your browser instead.Most of the 3d buildings are created using OSM building footprints with building heights, so the graphics can be