Skip to main content

Find possible locations of shadows.

Project description

ShadowFinder

Bellingcat logo: Discover BellingcatDiscord logo: Join our communityColab icon: Try it on Colab

A lightweight tool and Google Colab notebook for estimating the points on the Earth's surface where a shadow of a particular length could occur, for geolocation purposes.

Using an object's height, the length of its shadow, the date and the time, ShadowFinder estimates the possible locations where that shadow could occur. These possible locations are shown as a bright band on a map of the Earth:

ExampleShadowFinderOutput

Usage - Google Colab Notebook 🚀

No installation necessary, just try it out using the Google Colab notebook here!

Installation :magic_wand:

PyPI - Version

ShadowFinder is built with the interactive notebook in mind, which can be downloaded and used in a local Jupyter environment, the package also provides a Python API and a command-line interface.

ShadowFinder is published on PyPi so can be installed via pip with:

pip install shadowfinder

Usage - Python Library 🐍

If you want to use ShadowFinder directly from Python, the usage is as follows.

from shadowfinder import ShadowFinder

finder = ShadowFinder()

# Use a pre-generated timezone grid to save time
# Attempt to load a timezone grid and on a failure generate the grid and save to file
try:
    finder.load_timezone_grid()
except FileNotFoundError:
    finder.generate_timezone_grid()
    finder.save_timezone_grid() # timezone_grid.json

# Set up the scenario
# Provide either object_height and shadow_length OR sun_altitude_angle
finder.set_details(
    date_time=date_time, # datetime object with no timezone awareness
    object_height=object_height, # object height in arbitrary units
    shadow_length=shadow_length, # shadow length in arbitrary units
    time_format=time_type, # string, either 'local' or 'utc'
    sun_altitude_angle=sun_altitude_angle, # altitude angle of the sun, in degrees above the horizon
)

# Run the finder
finder.find_shadows()

# Access the resulting figure
fig = finder.plot_shadows()

Usage - Command Line Interface 🐌

[!IMPORTANT] Using the CLI is not the recommended way of using ShadowFinder as it is quite slow (there is currently not a caching strategy for the timezone_grid, so this is generated every run which is resource intesive)

shadowfinder find 10 5 2024-02-29 13:59:59 --time_format=utc

Where the arguments are OBJECT_HEIGHT, SHADOW_LENGTH, DATE, and TIME respectively.

You can also use the angle to the sun directly (above the horizon, in degrees):

shadowfinder find_sun 50 2024-02-29 13:59:59 --time_format=utc

Where the arguments are SUN_ALTITUDE_ANGLE, DATE, and TIME respectively.

More complete help information can be found by running:

shadowfinder find --help
shadowfinder find_sun --help

Development :octocat:

Expand to view information for developers

This section describes how to install the project to run it from source, for example if you want to build new features.

# Clone the repository
git clone https://github.com/bellingcat/ShadowFinder.git

# Change directory to the project folder
cd ShadowFinder

This project uses Poetry for dependency management and packaging.

# Install poetry if you haven't already
pip install poetry

# Install dependencies
poetry install

# Setup pre-commit hooks
poetry run pre-commit install

# Run the tool
poetry run shadowfinder --help

# Run tests against your current Python interpreter
poetry run pytest

# Or, run pytest against all shadowfinder supported Python versions
poetry run tox p  # p=run in parallel

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shadowfinder-0.7.0.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

shadowfinder-0.7.0-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file shadowfinder-0.7.0.tar.gz.

File metadata

  • Download URL: shadowfinder-0.7.0.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.10.11 Linux/6.14.0-1017-azure

File hashes

Hashes for shadowfinder-0.7.0.tar.gz
Algorithm Hash digest
SHA256 b13a855a066964985a9a4b737e5cba602f9e563afda48037c8d4311480e55dc4
MD5 6ba5206921d506db4e7507f1f6bc9a69
BLAKE2b-256 363e8f413817ea49fa7a964e28ab1e25f53b2be4e8bc34c7a9cb6527aaee3c55

See more details on using hashes here.

File details

Details for the file shadowfinder-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: shadowfinder-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.10.11 Linux/6.14.0-1017-azure

File hashes

Hashes for shadowfinder-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 583fd8fdd91b12c77cd6371057f6b8295faf8c578e9fda93a4ba7282542d2a0f
MD5 1db6c0eeaad4dadf18dca94820327154
BLAKE2b-256 1f3db6e914600800326b3663371df40badab8316e7c2b299c1a2322b738cbe02

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page