Skip to content
Snippets Groups Projects
Commit 3b05e02e authored by (no author)'s avatar (no author)
Browse files

a little bit of clean up

git-svn-id: https://svn.ssec.wisc.edu/repos/glance/trunk@99 8a9318a1-56ba-4d59-b755-99d26321be01
parent ce19fceb
No related branches found
No related tags found
No related merge requests found
......@@ -902,11 +902,8 @@ def colocateToFile_library_call(a_path, b_path, var_list=[ ],
variableBasedFilter = varRunInfo['variable_based_filter_b'] if 'variable_based_filter_b' in varRunInfo else None,
fileDescriptionForDisplay = "file B")
# pre-check if this data should be compared to the longitude and latitude
do_not_test_with_lon_lat = (len(lon_lat_data.keys()) <= 0)
# colocate the data for this variable
if (not do_not_test_with_lon_lat) and runInfo['doColocate'] :
# colocate the data for this variable if we have longitude/latitude data
if (len(lon_lat_data.keys()) > 0) and runInfo['doColocate'] :
# match up our points in A and B
(aData, bData, (numberOfMultipleMatchesInA, numberOfMultipleMatchesInB)), \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment