Page 1 of 1

Data Not Assigned a Project Name - ASF Data search

Posted: Mon Jun 24, 2024 5:58 am America/New_York
by inojosavinicius27
Hi,

I have encountered regarding my datasets submitted through ASF Data Search Vertex. After submitting the products on demand, my datasets have not been assigned a project name.


Thank you for your attention to this matter. I look forward to your response.

Re: Data Not Assigned a Project Name - ASF Data search

Posted: Mon Jun 24, 2024 1:43 pm America/New_York
by ASFx - bhauer
This is an issue that is currently being worked on. Thanks for reporting it and I'll let you know when this has been resolved.

Re: Data Not Assigned a Project Name - ASF Data search

Posted: Mon Jun 24, 2024 2:39 pm America/New_York
by jhkennedy
inojosavinicius27, as a workaround, it is possible to search for jobs via request time with the HyP3 SDK, and add those jobs to an existing project if needed. That would look something like:

[code]python import hyp3_sdk as sdk

hyp3 = sdk.HyP3()

noname_jobs = hyp3.find_jobs(start='2024-06-18T12:00:00Z', stop='2024-06-18T13:00:00Z')

project_jobs = hyp3.find_jobs(name='my-project-name')

all_project_jobs = project_jobs + noname_jobs[/code]

Re: Data Not Assigned a Project Name - ASF Data search

Posted: Mon Jun 24, 2024 7:04 pm America/New_York
by jhkennedy
inojosavinicius27, project names added with Vertex should be working again.

Re: Data Not Assigned a Project Name - ASF Data search

Posted: Tue Jun 25, 2024 3:33 am America/New_York
by inojosavinicius27
Hi,

Thank you for your help in solving the problem, I really appreciated

Best regards,
Vinicius