<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Geographic Information System sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3715214" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3714827" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3710069" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3696836" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3697119" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3663240" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3662599" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3645626" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3444204" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3595292" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2864179" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3582661" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3584377" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2359427" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3027155" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3562391" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3563534" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3561569" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3550646" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3549441" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3715214">
    <title>Google Earth Engine (GEE) paclet: satellite imagery fundamentals</title>
    <link>https://community.wolfram.com/groups/-/m/t/3715214</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/f3cc5b88-f290-4e68-ac29-2d450c373fd1</description>
    <dc:creator>Diego Zviovich</dc:creator>
    <dc:date>2026-05-12T23:08:24Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3714827">
    <title>Google Earth Engine (GEE) client paclet</title>
    <link>https://community.wolfram.com/groups/-/m/t/3714827</link>
    <description>![Google Earth Engine (GEE) client paclet][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=10966GoogleEarthEngine%28GEE%29clientpaclet.jpg&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/2a2947bc-b39e-494c-9309-173af5069ad5</description>
    <dc:creator>Diego Zviovich</dc:creator>
    <dc:date>2026-05-12T01:32:46Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3710069">
    <title>GeoServer option in GeoListPlot fails with vector error</title>
    <link>https://community.wolfram.com/groups/-/m/t/3710069</link>
    <description>Script:&#xD;
&#xD;
```wls&#xD;
Do[ &#xD;
queryresult = RunProcess[&#xD;
    {&#xD;
        &amp;#034;bq&amp;#034;,&#xD;
        &amp;#034;query&amp;#034;,&#xD;
        &amp;#034;--format=json&amp;#034;,&#xD;
        &amp;#034;--nouse_legacy_sql&amp;#034;,&#xD;
        &amp;#034;--max_rows=86400&amp;#034;,&#xD;
        &amp;#034;SELECT DISTINCT ST_X(`geography`) AS longitude, ST_Y(`geography`) AS latitude FROM `personalinformatics.locations` WHERE EXTRACT(DATE from `timestamp` AT TIME ZONE &amp;#039;America/New_York&amp;#039;) = &amp;#039;&amp;#034;&amp;lt;&amp;gt;DateString[mapdate,&amp;#034;ISODate&amp;#034;]&amp;lt;&amp;gt;&amp;#034;&amp;#039;&amp;#034;&#xD;
    },&#xD;
    &amp;#034;StandardOutput&amp;#034;&#xD;
];&#xD;
data = ImportString[queryresult,&amp;#034;RawJSON&amp;#034;];&#xD;
table = Table[&#xD;
    GeoPosition[&#xD;
        {&#xD;
            ToExpression@data[[i,&amp;#034;latitude&amp;#034;]],&#xD;
            ToExpression@data[[i,&amp;#034;longitude&amp;#034;]]&#xD;
        }&#xD;
    ],&#xD;
    {i, Length[data]}&#xD;
];&#xD;
map = GeoListPlot[&#xD;
    table,&#xD;
    ImageSize-&amp;gt;{1080,1080},&#xD;
    GeoServer-&amp;gt;&amp;#034;https://tiles.openstreetmap.us/vectiles/`1`/`2`/`3`.pbf&amp;#034;,&#xD;
    GeoScaleBar-&amp;gt;{&amp;#034;Imperial&amp;#034;,&amp;#034;Metric&amp;#034;},&#xD;
    PlotLabel-&amp;gt;Style[&amp;#034;Daily GPS Map | &amp;#034; &amp;lt;&amp;gt; DateString[mapdate,&amp;#034;LocaleDateFull&amp;#034;],&amp;#034;Subtitle&amp;#034;]&#xD;
];&#xD;
Export[&amp;#034;/home/steven/public_html/dailymaps/&amp;#034;&amp;lt;&amp;gt;DateString[mapdate,&amp;#034;ISODate&amp;#034;]&amp;lt;&amp;gt;&amp;#034;_map.png&amp;#034;,map];&#xD;
Print[&amp;#034;Completed map export for &amp;#034;&amp;lt;&amp;gt;DateString[mapdate,&amp;#034;ISODate&amp;#034;]];&#xD;
,{mapdate, DateRange[DateObject[{2026, 4, 27}], DateObject[{2026, 4, 30}]]}]&#xD;
```&#xD;
&#xD;
The following error is returned:&#xD;
```&#xD;
GeoServer::styleres: Cannot download vector style resources.&#xD;
```&#xD;
I have tried the following URLs for GeoServer and am getting this error (note, there should be backticks around the `1`, `2`, and `3`&amp;amp;mdash;this forum composer removes them).&#xD;
&#xD;
- https://tile.openstreetmap.org/`1`/`2`/`3`.pbf (the current OpenStreetMap vector tile URL)&#xD;
- https://tile.openstreetmap.org/`1`/`2`/`3`.png (the current OpenStreetMap raster tile URL)</description>
    <dc:creator>Steven Buehler</dc:creator>
    <dc:date>2026-05-01T12:48:58Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3696836">
    <title>Diffusion Cartograms: implementation of the Gastner&amp;#x2014;Newman density-equalising map algorithm</title>
    <link>https://community.wolfram.com/groups/-/m/t/3696836</link>
    <description>[![Diffusion Cartograms: implementation of the Gastner&amp;#x2014;Newman density-equalising map algorithm][1]][2]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][3]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=DiffusionCartogramsimplementationoftheGastner%E2%80%94Newmandensity-equalisingmapalgorithm.png&amp;amp;userId=20103&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=DiffusionCartogramsimplementationoftheGastner%E2%80%94Newmandensity-equalisingmapalgorithm.png&amp;amp;userId=20103&#xD;
  [3]: https://www.wolframcloud.com/obj/3a527987-4ff8-465d-a769-6bc59f8463bd</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2026-04-19T16:53:07Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3697119">
    <title>Click-and-drag map projection distortion in The Wolfram Language</title>
    <link>https://community.wolfram.com/groups/-/m/t/3697119</link>
    <description>![Click-and-drag map projection distortion in The Wolfram Language][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Click-and-dragMapProjectionDistortion-optimize.gif&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/7c2f9bae-74fd-477e-b892-234c09fd6243</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2026-04-20T09:39:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3663240">
    <title>Neural network prediction of the Hubble space telescope semimajor axis</title>
    <link>https://community.wolfram.com/groups/-/m/t/3663240</link>
    <description>![Neural network prediction of the Hubble space telescope semimajor axis][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=NeuralnetworkpredictionoftheHubblespacetelescopesemimajoraxis.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/3123cb4a-98ab-4f56-87e9-c3cc99f58051</description>
    <dc:creator>Akram Masoud</dc:creator>
    <dc:date>2026-03-16T17:55:03Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3662599">
    <title>Köppen-Geiger data set?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3662599</link>
    <description>Hello,&#xD;
&#xD;
Is there a Wolfram data set that contains global or local Köppen-Geiger information?&#xD;
&#xD;
Many thanks.</description>
    <dc:creator>Stuart Bruff</dc:creator>
    <dc:date>2026-03-15T15:16:44Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3645626">
    <title>Incorrect locator GeoPosition error in Manipulate[GeoGraphics[]]</title>
    <link>https://community.wolfram.com/groups/-/m/t/3645626</link>
    <description>I used Locator in Manipulate[] to update mouse click point in GeoGraphics[]. The returned GeoPositionp[ from Locator has error in Latitude largely. See the following code. In this Poland map, Warsaw has {52.23,21.01} in latitude,longitude. Initialization of Locator to Warsaw did not work and there is 9.13 degree error in the latitude. It is huge error in location.&#xD;
&#xD;
    Manipulate[&#xD;
     Column[&#xD;
      {&#xD;
       &amp;#034;LocPos&amp;#034;,&#xD;
       LocPos,&#xD;
       GeoGraphics[GeoRange -&amp;gt; {{48, 56}, {12, 27}}, &#xD;
        GeoBackground -&amp;gt; &amp;#034;StreetMap&amp;#034;, ImageSize -&amp;gt; Large]&#xD;
       }&#xD;
      ]&#xD;
     ,&#xD;
     {{LocPos, GeoPosition[{52.23, 21.01}]}, Locator}  &#xD;
     ]</description>
    <dc:creator>Yeonjoon Park</dc:creator>
    <dc:date>2026-02-25T20:35:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3444204">
    <title>[BOOK] An introduction to Mathematica for civil and structural engineers</title>
    <link>https://community.wolfram.com/groups/-/m/t/3444204</link>
    <description>![An introduction to Mathematica for civil and structural engineers][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Main15042025.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/9ddfc925-09b0-4d9d-be17-bdda845d689f</description>
    <dc:creator>Malcolm Woodruff</dc:creator>
    <dc:date>2025-04-14T07:10:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3595292">
    <title>Global 3D depth-magnitude distribution of 2025 earthquakes</title>
    <link>https://community.wolfram.com/groups/-/m/t/3595292</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=3Dmapofearthquakesin2025-small.gif&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/36119fbe-8a17-4796-9341-abcf13c1aaeb</description>
    <dc:creator>Jeffrey Bryant</dc:creator>
    <dc:date>2025-12-22T19:16:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2864179">
    <title>ChatGPT and Johnny Cash: mapping American road trip</title>
    <link>https://community.wolfram.com/groups/-/m/t/2864179</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ChatGPTandJohnnyCash7.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/f1e32cb5-075b-4766-b2cb-e1fdf2627e61</description>
    <dc:creator>David Ameneyro</dc:creator>
    <dc:date>2023-04-03T01:20:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3582661">
    <title>Mapping global land cover with European Space Agency data</title>
    <link>https://community.wolfram.com/groups/-/m/t/3582661</link>
    <description>![Global map of ESA WorldCover Land Cover Classifications][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=landcover-post-banner.png&amp;amp;userId=2591433&#xD;
  [2]: https://www.wolframcloud.com/obj/d565c9cf-ba84-4bbd-9945-dac31933755f</description>
    <dc:creator>Phileas Dazeley-Gaist</dc:creator>
    <dc:date>2025-11-27T17:25:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3584377">
    <title>Building world Geo heat map with AI Wolfram Notebook Assistant and LLM Kit</title>
    <link>https://community.wolfram.com/groups/-/m/t/3584377</link>
    <description>![Building world Geo heat map with AI Wolfram Notebook Assistant and LLM Kit][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=BuildingworldGeoheatmapwithAIWolframNotebookAssistantandLLMKit.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/3155f1e5-2845-464b-b8a5-9bf59ce1dbe3</description>
    <dc:creator>Daniel Carvalho</dc:creator>
    <dc:date>2025-12-01T16:32:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2359427">
    <title>[GiF] U.S. drought monitor map animated 2010 - 2021</title>
    <link>https://community.wolfram.com/groups/-/m/t/2359427</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
&#xD;
  [Backup GIF]: https://community.wolfram.com//c/portal/getImageAttachment?filename=USDM20102021Reduced.gif&amp;amp;userId=1539902&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=geo-vis_hero2.gif&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/c099123b-cfe3-4a77-b6cc-5db1ad7968bf</description>
    <dc:creator>Mohammad Bahrami</dc:creator>
    <dc:date>2021-09-03T17:05:43Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3027155">
    <title>[DATASCIFRI] Data Science Fridays: Dive into Data!</title>
    <link>https://community.wolfram.com/groups/-/m/t/3027155</link>
    <description>Hi everybody! We&amp;#039;re running a series of Data Science Friday webinars starting this coming Friday (Oct. 6, 2023) and running through the end of the month. This series will help you get a sense of how to work with data in Wolfram Language&amp;#x2014;importing, cleaning, visualizing and more with data spanning from traffic cameras to geological surveys to Mars and even other galaxies!&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
The first webinar&amp;#x2014;again, that&amp;#039;s this Friday, October 6 2023&amp;#x2014;will be lead by [@Tom Sherlock][at0] and will cover how to create the amazing images he shows [in this notebook][2] by using data from the James Webb Space Telescope. This webinar will primarily focus on image analysis and construction, with later webinars focusing on video creation, geographic visualization and even a combination of graph theory, image processing and machine learning.&#xD;
&#xD;
You can register for this series [**HERE**.][3] All sessions will start at noon Central US time. Remember that even if you can&amp;#039;t make it to every Friday session, registration means that you&amp;#039;ll get a link to the recordings delivered right to your inbox. We hope to see you there!&#xD;
&#xD;
I will update this post each week with information on that Friday&amp;#039;s presentation; please feel free to post follow-up questions or comments here as well.&#xD;
&#xD;
![enter image description here][4]&#xD;
&#xD;
 [at0]: https://community.wolfram.com/web/sherlock&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=DS-Webinar-bigMarker-session-banner.png&amp;amp;userId=1711324&#xD;
  [2]: https://community.wolfram.com/groups/-/m/t/2997129&#xD;
  [3]: https://www.bigmarker.com/series/data-science-friday-2023/series_details?utm_bmcr_source=community&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=WolframUBanner.jpg&amp;amp;userId=1711324</description>
    <dc:creator>Arben Kalziqi</dc:creator>
    <dc:date>2023-10-04T18:43:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3562391">
    <title>AI assisted access of Garmin FIT data via Python interface</title>
    <link>https://community.wolfram.com/groups/-/m/t/3562391</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/d5e6a993-0d86-4c39-91b4-64b5395231f5</description>
    <dc:creator>Robert Rimmer</dc:creator>
    <dc:date>2025-10-18T21:19:05Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3563534">
    <title>Geometry and Symmetry Chapter 5:  Dynamical Transformation Functions</title>
    <link>https://community.wolfram.com/groups/-/m/t/3563534</link>
    <description>In this preliminary post I introduce the idea of dynamical Transformation Functions, that is, the situation where the Transformation Matrices have functions rather than numbers as entries.  I apply this specifically in the case of even (direct) isometries of real 3-space.  I introduce DITF format which is independent of the construction of the transformation function. I give a geometrical interpretation which shows motion in space not only the position but also the orientation of the object.  Several examples are given.</description>
    <dc:creator>Barry H Dayton</dc:creator>
    <dc:date>2025-10-22T00:17:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3561569">
    <title>Access and visualize Garmin FIT data: nocturnal oxygen saturation, hike activity and GPS</title>
    <link>https://community.wolfram.com/groups/-/m/t/3561569</link>
    <description>![Access and visualize Garmin FIT data: nocturnal oxygen saturation, hike activity and GPS][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=AccessGarminFITdata.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/d850ec9f-3211-42e9-b588-52137915717f</description>
    <dc:creator>Robert Rimmer</dc:creator>
    <dc:date>2025-10-16T18:53:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3550646">
    <title>Export GeoGraphics output to vector graphics</title>
    <link>https://community.wolfram.com/groups/-/m/t/3550646</link>
    <description>In the release notes of WL 14.3, it is [said that][1] &amp;#034;An important feature of these maps is that they’re all produced with resolution-independent vector graphics.&amp;#034;&#xD;
&#xD;
How can I export to svg or pdf a vector graphics of a geographic map of the Eiffel Tower, for example?&#xD;
&#xD;
    GeoGraphics[Entity[&amp;#034;Building&amp;#034;, &amp;#034;EiffelTower::5h9w8&amp;#034;], &#xD;
     GeoBackground -&amp;gt; &amp;#034;VectorClassic&amp;#034;, GeoRange -&amp;gt; Quantity[400, &amp;#034;Meters&amp;#034;]]&#xD;
&#xD;
I right clicked on the output and clicked &amp;#034;Save Graphic as...&amp;#034;, pdf format. I clicked the settings button and set &amp;#034;Use Highest Quality vector representation&amp;#034; as in the screenshot. Still, the pdf file is a raster graphics and not a vector graphics. Same when exporting to svg file.&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
  [1]: https://writings.stephenwolfram.com/2025/08/new-features-everywhere-launching-version-14-3-of-wolfram-language-mathematica/#maps-become-more-beautiful&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2025-09-24at18.16.18.png&amp;amp;userId=1344988</description>
    <dc:creator>Ehud Behar</dc:creator>
    <dc:date>2025-09-24T16:59:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3549441">
    <title>Visualizing remote sensing (NASA Earth observation system) data</title>
    <link>https://community.wolfram.com/groups/-/m/t/3549441</link>
    <description>A huge number of ingest site data repositories for Earth-orbiting data sensors store and publish their data in HDF file format. The HDF Group -- a spinoff from the UIUC-NCSA -- supports users of HDF datasets, including users of the NASA EOS. The HDF Group EOS support effort includes a large, on-line catalog of examples of accessing, processing, analyzing and visualizing the NASA EOS data files using the popularly used tools among Earth and Atmospheric scientists: NCL, IDL and MATLAB -- absent Mathematica. &#xD;
&#xD;
The attached Mathematica notebooks are attempts to replicate the HDF Group&amp;#039;s hosted EOS examples in a similar style using Mathematica. &#xD;
&#xD;
 - AIRS_L3_Temperature_MW_A_Lvls11.nb: Visualize a GESDISC_AIRS HDF-EOS2 Grid data file in Mathematica&#xD;
&#xD;
 - Q20111212011151_L3m_MO_SCISM_V1_0_SSS_1deg_h5.nb: Visualization of a Level-3 gridded Aquarius simulation HDF5 dataset of Monthly (MO) Sea-Surface Salinity (SSS) from the NASA PO.DAAC (Physical Oceanography Distributed Active Archive Data Center)&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/de5dcedb-f484-4586-a238-571876a9b23b&#xD;
  [2]: https://www.wolframcloud.com/obj/d966b998-3937-4fa9-87fb-63554afcf9ad</description>
    <dc:creator>Stewart Dickson</dc:creator>
    <dc:date>2025-09-22T22:44:38Z</dc:date>
  </item>
</rdf:RDF>

