Skip to content

Instantly share code, notes, and snippets.

View lindacmsheard's full-sized avatar

Linda Sheard lindacmsheard

  • Microsoft
View GitHub Profile

Earth Observation and Geo Data sources

UK National Organsations

NCEO

National Centre of Earth Observation

CEDA

CEDA is the Centre for Enviromental Data Analysis

ArcGIS GeoAnalytics Engine

March 2025 - released for public preview on Fabric

How to enable on Fabric

The GeoAnalytics Engine is a tenant level settings. With Tenant-level admin permissions, go to

Admin portal > Tenant Settings > Integration Settings > ArcGIS GeoAnalytics in Fabric Runtime (preview) or filter for keyword geo within Tenant Settings.

Tenant-Setting
@lindacmsheard
lindacmsheard / git_with_fsspec.md
Last active October 28, 2024 12:16
Fetch a git directory with the fsspec library

Setup

gcloud init

Login

interactive

gcloud auth login
@lindacmsheard
lindacmsheard / readme.md
Created January 2, 2024 10:06
Outlook Calendar Tips

Calendar Settings

  • Set timescale to 15 minutes (Settings > Calendar > View)
  • Set declined items to remain visible (Settings > Calendar > Events and invitatations)
  • create named views with filters (Calendar > Views )
    • Note: this does not save filter settings, only layout
@lindacmsheard
lindacmsheard / Gremlin-upsert-edge.md
Last active January 10, 2022 23:33
Gremlin: Upsert an Edge

Context: this question

The following commands can be exectuted from within the Data Explorer interface of an Azure Cosmos DB Gremlin API database resource, or from other gremlin consoles such as a local TinkerPop installation.

Create required vertices

This can be in an empty graph, like that created when adding a graph in Azure Cosmos DB Gremlin API or added to an exsisting graph, like for example the 'modern' sample graph from the Tinkerpop Getting Started documentation.

g.addV("person").property("pk","pk").property("id","a").property("name","Alice")
g.addV("person").property("pk","p
@lindacmsheard
lindacmsheard / cosmos-loganalytics.tf
Last active November 12, 2021 11:32
sample terraform spec for a cosmos db that sends logs to log analytics
# This terraform spec provisions
# - Azure resource group
# - Azure Cosmos DB Account (SQL API, Analytics Storage enabled)
# - Azure Log Analytics Workspace
# - Diagnostic Setting that sends Cosmos DB logs to the Log Analytics Workspace
# - A Cosmos database in the account (SQL API document db)
# - A container in the database, with throughput and indexing configurations
# Set up terraform (basic example, local backend)
terraform {