Skip to content

[FEATURE] Add Ibis example page#373

Open
John McCall (lowlydba) wants to merge 1 commit intomainfrom
104-add-getting-data-section-with-ibis
Open

[FEATURE] Add Ibis example page#373
John McCall (lowlydba) wants to merge 1 commit intomainfrom
104-add-getting-data-section-with-ibis

Conversation

@lowlydba
Copy link
Copy Markdown
Contributor

Closes #104 by adding an Example page for using Overture data with Ibis.

This change also converts the management of some sub-menus to be dynamically generated where the default order of alphabetical is sufficient (some sub-menus have intentional ordering).

Signed-off-by: John McCall <john@overturemaps.org>
@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 5, 2026

🗺️ OMF Docs previews are live!

🆕 Auto-gen schema site (beta) https://staging.overturemaps.org/docs/pr/373/index.html
🗂️ Auto-gen schema ref dev@201637c
🌍 Repo schema site https://staging.overturemaps.org/docs/pr/373-no-autogen/index.html
🕐 Updated May 05, 2026 15:15 UTC
📝 Commit 76f4a30

Auto-gen schema site is now available. This is an early preview of a future workflow where we will automatically generate and publish reference docs for the Overture Maps Format schema with every change to the schema repo.
The auto-gen schema site may contain incomplete or inaccurate information as we are still refining the generation process, so please compare against the repo schema site and refer to the linked commit for the most up-to-date source of truth.

Note

♻️ This preview updates automatically with each push to this PR.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 5, 2026

Super-linter summary

Language Validation result
JAVASCRIPT_ES Pass ✅
MARKDOWN Pass ✅
NATURAL_LANGUAGE Pass ✅
SQLFLUFF Pass ✅

All files and directories linted successfully

For more information, see the GitHub Actions workflow run

Powered by Super-linter

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new Docusaurus Example page showing how to query Overture GeoParquet data with Ibis + DuckDB, and updates sidebar management to use autogenerated ordering where alphabetical ordering is acceptable.

Changes:

  • Add a new Ibis example page under docs/examples/.
  • Convert the Data Mirrors and Examples sidebar sections to autogenerated items and set sidebar_position to keep overview pages first.
  • Update the Examples landing page to render its list dynamically from the sidebar category.

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
sidebars.js Switch Data Mirrors and Examples to autogenerated sidebar items; keep schema index first.
docs/guides/index.mdx Minor formatting/indentation adjustment in the guides list.
docs/getting-data/data-mirrors/index.mdx Add sidebar_position: 0 to keep the overview first under autogenerated ordering.
docs/examples/index.mdx Replace the hardcoded example links with a dynamically-generated list from the sidebar.
docs/examples/ibis.mdx Add a new Ibis + DuckDB + Lonboard example page for querying Overture data.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread docs/examples/index.mdx
Comment on lines +10 to +18
import { useCurrentSidebarCategory } from '@docusaurus/plugin-content-docs/client';

export function ExamplesList() {
const category = useCurrentSidebarCategory();
return (
<ul>
{category.items.map((item) => (
<li key={item.href}>
<strong><a href={item.href}>{item.label}</a></strong>
Comment thread docs/examples/ibis.mdx
Comment on lines +8 to +10
:::info
This example requires `duckdb>=1.1.1` for GeoParquet support. See the [Ibis blog post](https://ibis-project.org/posts/ibis-overturemaps/index.html) for an extended walkthrough including visualization with Lonboard.
:::
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add Getting Data section with Ibis

2 participants