<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Get started on async-geotiff</title><link>https://async-geotiff-rs.pages.dev/docs/get-started/</link><description>Recent content in Get started on async-geotiff</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Mon, 31 Aug 2026 11:56:37 +0800</lastBuildDate><atom:link href="https://async-geotiff-rs.pages.dev/docs/get-started/index.xml" rel="self" type="application/rss+xml"/><item><title>Requirements</title><link>https://async-geotiff-rs.pages.dev/docs/get-started/requirements/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://async-geotiff-rs.pages.dev/docs/get-started/requirements/</guid><description>&lt;h2 id="library"&gt;Library and examples&#10;&lt;/h2&gt;&#10;&lt;ul&gt;&#10;&lt;li&gt;Rust 1.88 or newer, matching &lt;code&gt;Cargo.toml&lt;/code&gt;.&lt;/li&gt;&#10;&lt;li&gt;The default feature set requires system &lt;code&gt;libproj&lt;/code&gt; 9.x.&lt;/li&gt;&#10;&lt;li&gt;Git is required when working from the repository.&lt;/li&gt;&#10;&lt;/ul&gt;&#10;&lt;p&gt;On macOS:&lt;/p&gt;&#10;&lt;div class="td-code td-code--untitled" id="td-code-3aeb3309-fence-0" data-td-code data-td-code-auto-id&#10; data-td-language="bash" data-td-line-count="1"&gt;&#10; &lt;div class="td-code__viewport" id="td-code-3aeb3309-fence-0-viewport" data-td-code-viewport&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;brew install proj&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#10;&lt;/div&gt;&#10;&lt;p&gt;On Debian or Ubuntu:&lt;/p&gt;&#10;&lt;div class="td-code td-code--untitled" id="td-code-3aeb3309-fence-1" data-td-code data-td-code-auto-id&#10; data-td-language="bash" data-td-line-count="1"&gt;&#10; &lt;div class="td-code__viewport" id="td-code-3aeb3309-fence-1-viewport" data-td-code-viewport&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo apt install libproj-dev libsqlite3-dev libtiff-dev clang&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#10;&lt;/div&gt;&#10;&lt;p&gt;On other platforms, install &lt;code&gt;libproj&lt;/code&gt; with the platform&amp;rsquo;s supported package&#10;manager or build without the default features. The project does not currently&#10;provide platform-specific Windows installation commands.&lt;/p&gt;</description></item><item><title>Quick start</title><link>https://async-geotiff-rs.pages.dev/docs/get-started/quick-start/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://async-geotiff-rs.pages.dev/docs/get-started/quick-start/</guid><description>&lt;h2 id="run"&gt;Clone and run&#10;&lt;/h2&gt;&#10;&lt;div class="td-code td-code--untitled" id="td-code-ac605d5a-fence-0" data-td-code data-td-code-auto-id&#10; data-td-language="bash" data-td-line-count="4"&gt;&#10; &lt;div class="td-code__viewport" id="td-code-ac605d5a-fence-0-viewport" data-td-code-viewport&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git clone https://github.com/mapseekai/async-geotiff-rs.git&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; async-geotiff-rs&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nv"&gt;COG_URL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;https://raw.githubusercontent.com/cogeotiff/rio-tiler/0b08b7f35a8b639cee2f35a0cb565034f7b55bfd/tests/fixtures/cog.tif&amp;#39;&lt;/span&gt;&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;cargo run --release --example serve -- &lt;span class="s2"&gt;&amp;#34;&lt;/span&gt;&lt;span class="nv"&gt;$COG_URL&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#10;&lt;/div&gt;&#10;&lt;p&gt;The pinned 800 KiB &lt;code&gt;rio-tiler&lt;/code&gt; fixture is a public, range-capable COG intended&#10;for tests and first-run verification. Replace it with your own COG after the&#10;smoke test. The server listens on &lt;code&gt;127.0.0.1:8080&lt;/code&gt; by default and prints the&#10;available viewer and tile URLs when startup completes.&lt;/p&gt;</description></item><item><title>Library usage</title><link>https://async-geotiff-rs.pages.dev/docs/get-started/library-usage/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://async-geotiff-rs.pages.dev/docs/get-started/library-usage/</guid><description>&lt;p&gt;The repository currently sets &lt;code&gt;publish = false&lt;/code&gt;, so another local project uses&#10;a path dependency while developing. Create the application next to the clone,&#10;then replace the relative path if your directories differ:&lt;/p&gt;&#10;&lt;div class="td-code td-code--untitled" id="td-code-6795ac54-fence-0" data-td-code data-td-code-auto-id&#10; data-td-language="bash" data-td-line-count="4"&gt;&#10; &lt;div class="td-code__viewport" id="td-code-6795ac54-fence-0-viewport" data-td-code-viewport&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# Starting inside the async-geotiff-rs checkout:&lt;/span&gt;&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ..&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;cargo new async-geotiff-demo&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; async-geotiff-demo&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#10;&lt;/div&gt;&#10;&lt;div class="td-code td-code--untitled" id="td-code-6795ac54-fence-1" data-td-code data-td-code-auto-id&#10; data-td-language="toml" data-td-line-count="3"&gt;&#10; &lt;div class="td-code__viewport" id="td-code-6795ac54-fence-1-viewport" data-td-code-viewport&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-toml" data-lang="toml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;dependencies&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;async-geotiff&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;path&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;../async-geotiff-rs&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;&#10;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;tokio&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;version&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;1&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;features&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;macros&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;rt-multi-thread&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#10;&lt;/div&gt;&#10;&lt;p&gt;To avoid the system &lt;code&gt;libproj&lt;/code&gt; dependency while retaining the mosaic APIs used&#10;by the example server, set &lt;code&gt;default-features = false, features = [&amp;quot;mosaic&amp;quot;]&lt;/code&gt; on&#10;the path dependency. General CRS transformations will then be unavailable.&lt;/p&gt;</description></item></channel></rss>