cog / README.md
mattritchey's picture
Update README.md
8aa7c1a verified
|
raw
history blame
790 Bytes

Cloud Optimized GeoTIFF Server

This Space hosts a server for Cloud Optimized GeoTIFFs (COGs). It provides an API to list and retrieve COGs.

API Endpoints

  • GET /: Welcome message
  • GET /cogs: List all available COGs
  • GET /cogs/{cog_name}: Retrieve a specific COG

Usage

To use this Space, you can send HTTP requests to the provided endpoints. For example:

import requests

# List all COGs
response = requests.get("https://your-space-url.hf.space/cogs")
print(response.json())

# Retrieve a specific COG
cog_name = "example.tif"
response = requests.get(f"https://your-space-url.hf.space/cogs/{cog_name}")
with open(cog_name, "wb") as f:
    f.write(response.content)

Replace https://your-space-url.hf.space with the actual URL of your Hugging Face Space.