GithubHelp home page GithubHelp logo

Comments (5)

AntSimi avatar AntSimi commented on July 18, 2024

Did you compare tracking file or detection?
If it's tracking file :

  • did you take care at time axis?
  • did you used virtual observation?

from py-eddy-tracker.

acapet avatar acapet commented on July 18, 2024

I'm using Tracking files, ie. result files from the tracking script, containing eddies for an entire year.

  • I don't get what you mean by "did you take care at time axis?", could you be a bit more specific ?
  • I have tested both with (VIRTUAL_LENGTH_MAX: 2, in the .yml file) and without (VIRTUAL_LENGTH_MAX: 0) virtual. Same result.

from py-eddy-tracker.

acapet avatar acapet commented on July 18, 2024

Sorry, there's a mistake in my previous comment.
Not considering virtual eddies, ie. tracking with without (VIRTUAL_LENGTH_MAX: 0), prevents the error.

from py-eddy-tracker.

AntSimi avatar AntSimi commented on July 18, 2024

Axis time
I you use match function between your year datasets, it will search match without take care of time, so you could associate eddy from t0 with t100, ...

In order to compare only eddies from same day you could use :

for index_1, index_2, t0, t1 in dataset_1.align_on(dataset_2):
    local_d1 = dataset_1.index(index_1)
    local_d2 = dataset_2.index(index_2)

Virtual and match function
match function use contour to find overlap, in case of virtual , you have no defined contour(or more accurate : a contour with an area of 0), you could put a contour deduced from interpolated radius to avoid this problem.

from py-eddy-tracker.

AntSimi avatar AntSimi commented on July 18, 2024

You could now use circle_contour method with option only_virtual=True to set circle contour only for virtual

from py-eddy-tracker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.